pax_global_header 0000666 0000000 0000000 00000000064 14464242247 0014523 g ustar 00root root 0000000 0000000 52 comment=fc93da1bf7d77817230e6d2f41812e6d4506616a
vega-tooltip-0.33.0/ 0000775 0000000 0000000 00000000000 14464242247 0014220 5 ustar 00root root 0000000 0000000 vega-tooltip-0.33.0/.eslintignore 0000664 0000000 0000000 00000000163 14464242247 0016723 0 ustar 00root root 0000000 0000000 .eslintrc.js
babel.config.js
prettier.config.js
jest.config.js
rollup.config.js
build
build-es5
dist
coverage
types vega-tooltip-0.33.0/.eslintrc.js 0000664 0000000 0000000 00000003757 14464242247 0016473 0 ustar 00root root 0000000 0000000 module.exports = {
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'prettier', 'jest'],
extends: [
'eslint:recommended',
'plugin:jest/recommended',
'plugin:jest/style',
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended'
],
env: {
browser: true,
node: true
},
parserOptions: {
project: 'tsconfig.json',
ecmaVersion: 2020,
sourceType: 'module'
},
overrides: [
{
files: ['*.ts']
}
],
rules: {
'prettier/prettier': 'warn',
// https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/eslint-plugin#supported-rules
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/ban-types': 'warn',
'@typescript-eslint/no-explicit-any': 'warn',
'@typescript-eslint/prefer-for-of': 'error',
'@typescript-eslint/no-for-in-array': 'error',
'@typescript-eslint/no-require-imports': 'error',
'@typescript-eslint/no-parameter-properties': 'off',
'@typescript-eslint/explicit-member-accessibility': 'off',
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': [
'error',
{
vars: 'all',
args: 'after-used',
ignoreRestSiblings: true
}
],
'no-shadow': 'off',
'@typescript-eslint/no-shadow': 'error',
'@typescript-eslint/no-object-literal-type-assertion': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-namespace': 'error',
'jest/no-conditional-expect': 'off',
// https://eslint.org/docs/rules/
'linebreak-style': ['error', 'unix'],
'no-irregular-whitespace': ['error', {skipComments: true}],
'no-alert': 'error',
'prefer-const': 'error',
'no-return-assign': 'error',
'no-useless-call': 'error',
'no-useless-concat': 'error',
"prefer-template": "error",
'no-undef': 'off', // typescript takes care of this for us
'no-unreachable': 'off' // typescript takes care of this for us
}
};
vega-tooltip-0.33.0/.github/ 0000775 0000000 0000000 00000000000 14464242247 0015560 5 ustar 00root root 0000000 0000000 vega-tooltip-0.33.0/.github/dependabot.yml 0000664 0000000 0000000 00000000525 14464242247 0020412 0 ustar 00root root 0000000 0000000 version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: monthly
day: sunday
time: "23:00"
timezone: PST8PDT
open-pull-requests-limit: 10
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: monthly
time: "23:00"
timezone: PST8PDT
open-pull-requests-limit: 10
vega-tooltip-0.33.0/.github/workflows/ 0000775 0000000 0000000 00000000000 14464242247 0017615 5 ustar 00root root 0000000 0000000 vega-tooltip-0.33.0/.github/workflows/merge-dependabot.yml 0000664 0000000 0000000 00000000522 14464242247 0023541 0 ustar 00root root 0000000 0000000 name: Auto-merge Dependabot PRs
on:
schedule:
- cron: '0 * * * *'
jobs:
auto_merge:
name: Auto-merge Dependabot PRs
runs-on: ubuntu-latest
steps:
- uses: akheron/dependabot-cron-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
auto-merge: 'minor'
merge-method: 'squash'
vega-tooltip-0.33.0/.github/workflows/test.yml 0000664 0000000 0000000 00000001061 14464242247 0021315 0 ustar 00root root 0000000 0000000 name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
name: Test
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: 'yarn'
- name: Install Node dependencies
run: yarn --frozen-lockfile
- run: yarn lint
- run: yarn build
- name: Test coverage
run: yarn jest test/ --collectCoverage=true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3.1.4
vega-tooltip-0.33.0/.gitignore 0000664 0000000 0000000 00000000147 14464242247 0016212 0 ustar 00root root 0000000 0000000 build
coverage/
examples/data
node_modules
npm-debug.log*
src/style.ts
yarn-debug.log*
yarn-error.log*
vega-tooltip-0.33.0/.prettierignore 0000664 0000000 0000000 00000000114 14464242247 0017257 0 ustar 00root root 0000000 0000000 .eslintrc.js
babel.config.js
jest.config.js
prettier.config.js
tsconfig.json vega-tooltip-0.33.0/.release-it.json 0000664 0000000 0000000 00000000435 14464242247 0017225 0 ustar 00root root 0000000 0000000 {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"hooks": {
"after:bump": "yarn build"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
}
}
vega-tooltip-0.33.0/.vscode/ 0000775 0000000 0000000 00000000000 14464242247 0015561 5 ustar 00root root 0000000 0000000 vega-tooltip-0.33.0/.vscode/settings.json 0000664 0000000 0000000 00000000070 14464242247 0020311 0 ustar 00root root 0000000 0000000 {
"typescript.tsdk": "node_modules/typescript/lib"
} vega-tooltip-0.33.0/CHANGELOG.md 0000664 0000000 0000000 00000307656 14464242247 0016052 0 ustar 00root root 0000000 0000000
# [0.33.0](https://github.com/vega/vega-tooltip/compare/v0.32.0...v0.33.0) (2023-08-07)
### Features
* remove : from default format string to enable easier customization and localization ([bab8e2a](https://github.com/vega/vega-tooltip/commit/bab8e2abe549b7e8d092d031f1e25baf512230af)), closes [#785](https://github.com/vega/vega-tooltip/issues/785)
# [0.32.0](https://github.com/vega/vega-tooltip/compare/v0.31.0...v0.32.0) (2023-04-20)
### Features
* remove beemo ([#759](https://github.com/vega/vega-tooltip/issues/759)) ([1dadf6a](https://github.com/vega/vega-tooltip/commit/1dadf6a384e90085e6247efe771d65e345e25375))
# [0.31.0](https://github.com/vega/vega-tooltip/compare/v0.30.1...v0.31.0) (2023-02-22)
### Features
* remove limit on image size in tooltips ([#740](https://github.com/vega/vega-tooltip/issues/740)) ([ca90788](https://github.com/vega/vega-tooltip/commit/ca907884a0b1b329a4cb1de146b602877b209a17))
## 0.30.1 (2023-02-13)
* chore: switch to release-it ([45e1520](https://github.com/vega/vega-tooltip/commit/45e1520))
* chore: update lockfile ([778a85d](https://github.com/vega/vega-tooltip/commit/778a85d))
* chore: upgrade deps ([e756faf](https://github.com/vega/vega-tooltip/commit/e756faf))
* chore(deps-dev): bump @rollup/plugin-json from 5.0.1 to 5.0.2 (#721) ([3610e13](https://github.com/vega/vega-tooltip/commit/3610e13)), closes [#721](https://github.com/vega/vega-tooltip/issues/721)
* chore(deps-dev): bump @rollup/plugin-json from 5.0.2 to 6.0.0 ([2cae3b7](https://github.com/vega/vega-tooltip/commit/2cae3b7))
* chore(deps-dev): bump browser-sync from 2.27.10 to 2.27.11 (#727) ([f58fbdb](https://github.com/vega/vega-tooltip/commit/f58fbdb)), closes [#727](https://github.com/vega/vega-tooltip/issues/727)
* chore(deps-dev): bump concurrently from 7.5.0 to 7.6.0 (#722) ([14d5d94](https://github.com/vega/vega-tooltip/commit/14d5d94)), closes [#722](https://github.com/vega/vega-tooltip/issues/722)
* chore(deps-dev): bump gh-pages from 4.0.0 to 5.0.0 ([26545d9](https://github.com/vega/vega-tooltip/commit/26545d9))
* chore(deps-dev): bump jest-environment-jsdom from 29.3.1 to 29.4.1 (#732) ([07651aa](https://github.com/vega/vega-tooltip/commit/07651aa)), closes [#732](https://github.com/vega/vega-tooltip/issues/732)
* chore(deps-dev): bump rollup from 3.3.0 to 3.5.1 (#720) ([b80e8ab](https://github.com/vega/vega-tooltip/commit/b80e8ab)), closes [#720](https://github.com/vega/vega-tooltip/issues/720)
* chore(deps-dev): bump rollup from 3.5.1 to 3.9.0 (#725) ([c6f4a02](https://github.com/vega/vega-tooltip/commit/c6f4a02)), closes [#725](https://github.com/vega/vega-tooltip/issues/725)
* chore(deps-dev): bump rollup from 3.9.0 to 3.12.1 (#733) ([92d6691](https://github.com/vega/vega-tooltip/commit/92d6691)), closes [#733](https://github.com/vega/vega-tooltip/issues/733)
* chore(deps-dev): bump sass from 1.56.1 to 1.57.1 (#726) ([97fdb99](https://github.com/vega/vega-tooltip/commit/97fdb99)), closes [#726](https://github.com/vega/vega-tooltip/issues/726)
* chore(deps-dev): bump sass from 1.57.1 to 1.58.0 (#730) ([b50d170](https://github.com/vega/vega-tooltip/commit/b50d170)), closes [#730](https://github.com/vega/vega-tooltip/issues/730)
* chore(deps-dev): bump typescript from 4.9.3 to 4.9.4 (#724) ([7f0376e](https://github.com/vega/vega-tooltip/commit/7f0376e)), closes [#724](https://github.com/vega/vega-tooltip/issues/724)
* chore(deps-dev): bump typescript from 4.9.4 to 4.9.5 (#729) ([41fcca9](https://github.com/vega/vega-tooltip/commit/41fcca9)), closes [#729](https://github.com/vega/vega-tooltip/issues/729)
* chore(deps): bump engine.io from 6.2.0 to 6.2.1 (#719) ([e55c3a9](https://github.com/vega/vega-tooltip/commit/e55c3a9)), closes [#719](https://github.com/vega/vega-tooltip/issues/719)
* chore(deps): bump json5 from 2.2.1 to 2.2.3 (#728) ([6d94b88](https://github.com/vega/vega-tooltip/commit/6d94b88)), closes [#728](https://github.com/vega/vega-tooltip/issues/728)
# v0.29.0 (Fri Nov 18 2022)
:tada: This release contains work from new contributors! :tada:
Thanks for all your work!
:heart: Maya Barnes ([@mayagbarnes](https://github.com/mayagbarnes))
:heart: Stefan van der Meer ([@svdm](https://github.com/svdm))
#### π Enhancement
- feat: update deps and use esm rollup [#717](https://github.com/vega/vega-tooltip/pull/717) ([@domoritz](https://github.com/domoritz))
- Release [#715](https://github.com/vega/vega-tooltip/pull/715) ([@domoritz](https://github.com/domoritz))
- feat: add sourcemaps [#707](https://github.com/vega/vega-tooltip/pull/707) ([@domoritz](https://github.com/domoritz))
- feat: switch to sass [#614](https://github.com/vega/vega-tooltip/pull/614) ([@domoritz](https://github.com/domoritz))
#### π Bug Fix
- Revert "Release" [#716](https://github.com/vega/vega-tooltip/pull/716) ([@domoritz](https://github.com/domoritz))
- fix: update tooltip positioning for CSP [#714](https://github.com/vega/vega-tooltip/pull/714) ([@mayagbarnes](https://github.com/mayagbarnes) [@domoritz](https://github.com/domoritz))
- chore: upgrade deps [#705](https://github.com/vega/vega-tooltip/pull/705) ([@domoritz](https://github.com/domoritz))
- chore: improve caching and token handling [#688](https://github.com/vega/vega-tooltip/pull/688) ([@domoritz](https://github.com/domoritz))
- chore: remove `NODE_AUTH_TOKEN` [#687](https://github.com/vega/vega-tooltip/pull/687) ([@domoritz](https://github.com/domoritz))
- fix: only append tooltip element to container once [#626](https://github.com/vega/vega-tooltip/pull/626) ([@svdm](https://github.com/svdm))
- chore: upgrade deps [#588](https://github.com/vega/vega-tooltip/pull/588) ([@domoritz](https://github.com/domoritz))
#### π© Dependency Updates
- chore(deps-dev): bump @rollup/plugin-json from 4.1.0 to 5.0.1 [#711](https://github.com/vega/vega-tooltip/pull/711) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 14.1.0 to 15.0.1 [#709](https://github.com/vega/vega-tooltip/pull/709) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump jest-environment-jsdom from 29.1.2 to 29.2.2 [#710](https://github.com/vega/vega-tooltip/pull/710) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump concurrently from 7.4.0 to 7.5.0 [#712](https://github.com/vega/vega-tooltip/pull/712) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump vega-datasets from 2.5.1 to 2.5.3 [#713](https://github.com/vega/vega-tooltip/pull/713) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 13.3.0 to 14.1.0 [#702](https://github.com/vega/vega-tooltip/pull/702) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/first-time-contributor from 10.37.4 to 10.37.6 [#701](https://github.com/vega/vega-tooltip/pull/701) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/conventional-commits from 10.37.4 to 10.37.6 [#699](https://github.com/vega/vega-tooltip/pull/699) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump typescript from 4.8.2 to 4.8.4 [#700](https://github.com/vega/vega-tooltip/pull/700) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump vega-datasets from 2.4.0 to 2.5.1 [#703](https://github.com/vega/vega-tooltip/pull/703) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump auto from 10.37.4 to 10.37.6 [#704](https://github.com/vega/vega-tooltip/pull/704) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump codecov/codecov-action from 3.1.0 to 3.1.1 [#695](https://github.com/vega/vega-tooltip/pull/695) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump concurrently from 7.3.0 to 7.4.0 [#696](https://github.com/vega/vega-tooltip/pull/696) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.54.8 to 1.55.0 [#697](https://github.com/vega/vega-tooltip/pull/697) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.79.0 to 2.79.1 [#698](https://github.com/vega/vega-tooltip/pull/698) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.77.2 to 2.79.0 [#691](https://github.com/vega/vega-tooltip/pull/691) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump typescript from 4.7.4 to 4.8.2 [#692](https://github.com/vega/vega-tooltip/pull/692) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.54.0 to 1.54.8 [#693](https://github.com/vega/vega-tooltip/pull/693) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump vega-datasets from 2.3.0 to 2.4.0 [#680](https://github.com/vega/vega-tooltip/pull/680) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump concurrently from 7.2.2 to 7.3.0 [#681](https://github.com/vega/vega-tooltip/pull/681) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/conventional-commits from 10.37.1 to 10.37.4 [#682](https://github.com/vega/vega-tooltip/pull/682) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/first-time-contributor from 10.37.1 to 10.37.4 [#683](https://github.com/vega/vega-tooltip/pull/683) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.53.0 to 1.54.0 [#684](https://github.com/vega/vega-tooltip/pull/684) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.75.7 to 2.77.2 [#685](https://github.com/vega/vega-tooltip/pull/685) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump auto from 10.37.1 to 10.37.4 [#686](https://github.com/vega/vega-tooltip/pull/686) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump terser from 5.14.0 to 5.14.2 [#679](https://github.com/vega/vega-tooltip/pull/679) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump typescript from 4.7.2 to 4.7.4 [#674](https://github.com/vega/vega-tooltip/pull/674) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump concurrently from 7.2.1 to 7.2.2 [#675](https://github.com/vega/vega-tooltip/pull/675) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup-plugin-ts from 3.0.1 to 3.0.2 [#676](https://github.com/vega/vega-tooltip/pull/676) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.52.1 to 1.53.0 [#677](https://github.com/vega/vega-tooltip/pull/677) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.75.5 to 2.75.7 [#678](https://github.com/vega/vega-tooltip/pull/678) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump typescript from 4.6.4 to 4.7.2 [#663](https://github.com/vega/vega-tooltip/pull/663) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump async from 2.6.3 to 2.6.4 [#673](https://github.com/vega/vega-tooltip/pull/673) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump gh-pages from 3.2.3 to 4.0.0 [#669](https://github.com/vega/vega-tooltip/pull/669) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/first-time-contributor from 10.36.5 to 10.37.1 [#664](https://github.com/vega/vega-tooltip/pull/664) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump browser-sync from 2.27.9 to 2.27.10 [#665](https://github.com/vega/vega-tooltip/pull/665) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 13.2.1 to 13.3.0 [#666](https://github.com/vega/vega-tooltip/pull/666) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.71.1 to 2.75.5 [#667](https://github.com/vega/vega-tooltip/pull/667) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump auto from 10.36.5 to 10.37.1 [#668](https://github.com/vega/vega-tooltip/pull/668) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.51.0 to 1.52.1 [#670](https://github.com/vega/vega-tooltip/pull/670) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/conventional-commits from 10.36.5 to 10.37.1 [#671](https://github.com/vega/vega-tooltip/pull/671) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump concurrently from 7.1.0 to 7.2.1 [#672](https://github.com/vega/vega-tooltip/pull/672) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump codecov/codecov-action from 2.1.0 to 3.1.0 [#654](https://github.com/vega/vega-tooltip/pull/654) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump ejs from 3.1.6 to 3.1.7 [#662](https://github.com/vega/vega-tooltip/pull/662) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump vega-typings from 0.22.2 to 0.22.3 [#655](https://github.com/vega/vega-tooltip/pull/655) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.70.1 to 2.71.1 [#656](https://github.com/vega/vega-tooltip/pull/656) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 13.1.3 to 13.2.1 [#657](https://github.com/vega/vega-tooltip/pull/657) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup-plugin-ts from 2.0.5 to 2.0.7 [#658](https://github.com/vega/vega-tooltip/pull/658) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump concurrently from 7.0.0 to 7.1.0 [#659](https://github.com/vega/vega-tooltip/pull/659) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump typescript from 4.6.3 to 4.6.4 [#660](https://github.com/vega/vega-tooltip/pull/660) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.49.11 to 1.51.0 [#661](https://github.com/vega/vega-tooltip/pull/661) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump node-fetch from 2.6.1 to 2.6.7 [#653](https://github.com/vega/vega-tooltip/pull/653) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump minimist from 1.2.5 to 1.2.6 [#652](https://github.com/vega/vega-tooltip/pull/652) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/first-time-contributor from 10.32.6 to 10.36.5 [#644](https://github.com/vega/vega-tooltip/pull/644) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump typescript from 4.6.2 to 4.6.3 [#645](https://github.com/vega/vega-tooltip/pull/645) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump auto from 10.32.6 to 10.36.5 [#646](https://github.com/vega/vega-tooltip/pull/646) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump vega-datasets from 2.2.0 to 2.3.0 [#647](https://github.com/vega/vega-tooltip/pull/647) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.49.9 to 1.49.11 [#648](https://github.com/vega/vega-tooltip/pull/648) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/conventional-commits from 10.32.6 to 10.36.5 [#649](https://github.com/vega/vega-tooltip/pull/649) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.68.0 to 2.70.1 [#650](https://github.com/vega/vega-tooltip/pull/650) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump browser-sync from 2.27.7 to 2.27.9 [#651](https://github.com/vega/vega-tooltip/pull/651) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump typescript from 4.5.5 to 4.6.2 [#639](https://github.com/vega/vega-tooltip/pull/639) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.67.0 to 2.68.0 [#640](https://github.com/vega/vega-tooltip/pull/640) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.49.7 to 1.49.9 [#641](https://github.com/vega/vega-tooltip/pull/641) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump actions/setup-node from 2.5.1 to 3 [#642](https://github.com/vega/vega-tooltip/pull/642) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump actions/checkout from 2 to 3 [#643](https://github.com/vega/vega-tooltip/pull/643) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump follow-redirects from 1.14.7 to 1.14.8 [#638](https://github.com/vega/vega-tooltip/pull/638) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump concurrently from 6.5.1 to 7.0.0 [#637](https://github.com/vega/vega-tooltip/pull/637) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 13.1.2 to 13.1.3 [#628](https://github.com/vega/vega-tooltip/pull/628) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump auto from 10.32.5 to 10.32.6 [#629](https://github.com/vega/vega-tooltip/pull/629) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup-plugin-ts from 2.0.4 to 2.0.5 [#630](https://github.com/vega/vega-tooltip/pull/630) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.62.0 to 2.67.0 [#631](https://github.com/vega/vega-tooltip/pull/631) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.45.2 to 1.49.7 [#632](https://github.com/vega/vega-tooltip/pull/632) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump typescript from 4.5.4 to 4.5.5 [#633](https://github.com/vega/vega-tooltip/pull/633) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump vega-typings from 0.22.1 to 0.22.2 [#634](https://github.com/vega/vega-tooltip/pull/634) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/conventional-commits from 10.32.5 to 10.32.6 [#635](https://github.com/vega/vega-tooltip/pull/635) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/first-time-contributor from 10.32.5 to 10.32.6 [#636](https://github.com/vega/vega-tooltip/pull/636) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump follow-redirects from 1.14.5 to 1.14.7 [#624](https://github.com/vega/vega-tooltip/pull/624) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump concurrently from 6.4.0 to 6.5.1 [#616](https://github.com/vega/vega-tooltip/pull/616) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump typescript from 4.5.2 to 4.5.4 [#617](https://github.com/vega/vega-tooltip/pull/617) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.60.2 to 2.62.0 [#618](https://github.com/vega/vega-tooltip/pull/618) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 13.0.6 to 13.1.2 [#619](https://github.com/vega/vega-tooltip/pull/619) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/first-time-contributor from 10.32.3 to 10.32.5 [#620](https://github.com/vega/vega-tooltip/pull/620) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.44.0 to 1.45.2 [#621](https://github.com/vega/vega-tooltip/pull/621) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/conventional-commits from 10.32.3 to 10.32.5 [#622](https://github.com/vega/vega-tooltip/pull/622) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump auto from 10.32.3 to 10.32.5 [#623](https://github.com/vega/vega-tooltip/pull/623) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump actions/setup-node from 2.5.0 to 2.5.1 [#615](https://github.com/vega/vega-tooltip/pull/615) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump actions/setup-node from 2.4.1 to 2.5.0 [#605](https://github.com/vega/vega-tooltip/pull/605) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump concurrently from 6.3.0 to 6.4.0 [#606](https://github.com/vega/vega-tooltip/pull/606) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump auto from 10.32.2 to 10.32.3 [#607](https://github.com/vega/vega-tooltip/pull/607) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/conventional-commits from 10.32.2 to 10.32.3 [#608](https://github.com/vega/vega-tooltip/pull/608) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.59.0 to 2.60.2 [#609](https://github.com/vega/vega-tooltip/pull/609) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump vega-lite-dev-config from 0.19.0 to 0.20.0 [#611](https://github.com/vega/vega-tooltip/pull/611) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/first-time-contributor from 10.32.2 to 10.32.3 [#612](https://github.com/vega/vega-tooltip/pull/612) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump auto from 10.32.1 to 10.32.2 [#598](https://github.com/vega/vega-tooltip/pull/598) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/first-time-contributor from 10.32.1 to 10.32.2 [#600](https://github.com/vega/vega-tooltip/pull/600) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/conventional-commits from 10.32.1 to 10.32.2 [#602](https://github.com/vega/vega-tooltip/pull/602) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump vega-lite-dev-config from 0.18.0 to 0.19.0 [#597](https://github.com/vega/vega-tooltip/pull/597) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.58.0 to 2.59.0 [#599](https://github.com/vega/vega-tooltip/pull/599) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump vega-typings from 0.22.0 to 0.22.1 [#601](https://github.com/vega/vega-tooltip/pull/601) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump browser-sync from 2.27.5 to 2.27.7 [#603](https://github.com/vega/vega-tooltip/pull/603) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 13.0.5 to 13.0.6 [#604](https://github.com/vega/vega-tooltip/pull/604) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump actions/setup-node from 2.4.0 to 2.4.1 [#589](https://github.com/vega/vega-tooltip/pull/589) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump codecov/codecov-action from 2.0.3 to 2.1.0 [#590](https://github.com/vega/vega-tooltip/pull/590) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/conventional-commits from 10.32.0 to 10.32.1 [#591](https://github.com/vega/vega-tooltip/pull/591) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump concurrently from 6.2.1 to 6.3.0 [#592](https://github.com/vega/vega-tooltip/pull/592) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.56.3 to 2.58.0 [#593](https://github.com/vega/vega-tooltip/pull/593) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump auto from 10.32.0 to 10.32.1 [#594](https://github.com/vega/vega-tooltip/pull/594) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/first-time-contributor from 10.32.0 to 10.32.1 [#595](https://github.com/vega/vega-tooltip/pull/595) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump tmpl from 1.0.4 to 1.0.5 [#587](https://github.com/vega/vega-tooltip/pull/587) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump object-path from 0.11.7 to 0.11.8 [#586](https://github.com/vega/vega-tooltip/pull/586) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump codecov/codecov-action from 2.0.2 to 2.0.3 [#582](https://github.com/vega/vega-tooltip/pull/582) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump actions/setup-node from 2.3.0 to 2.4.0 [#583](https://github.com/vega/vega-tooltip/pull/583) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump typescript from 4.3.5 to 4.4.2 [#584](https://github.com/vega/vega-tooltip/pull/584) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.56.2 to 2.56.3 [#585](https://github.com/vega/vega-tooltip/pull/585) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump object-path from 0.11.5 to 0.11.7 [#581](https://github.com/vega/vega-tooltip/pull/581) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump tar from 6.1.8 to 6.1.11 [#580](https://github.com/vega/vega-tooltip/pull/580) ([@dependabot[bot]](https://github.com/dependabot[bot]))
#### Authors: 4
- [@dependabot[bot]](https://github.com/dependabot[bot])
- Dominik Moritz ([@domoritz](https://github.com/domoritz))
- Maya Barnes ([@mayagbarnes](https://github.com/mayagbarnes))
- Stefan van der Meer ([@svdm](https://github.com/svdm))
---
# v0.28.0 (Fri Jan 28 2022)
:tada: This release contains work from new contributors! :tada:
Thanks for all your work!
:heart: Stefan van der Meer ([@svdm](https://github.com/svdm))
:heart: Cameron Yick ([@hydrosquall](https://github.com/hydrosquall))
#### π Enhancement
- Release [#627](https://github.com/vega/vega-tooltip/pull/627) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@domoritz](https://github.com/domoritz) [@svdm](https://github.com/svdm))
#### π Bug Fix
- chore: upgrade deps [#578](https://github.com/vega/vega-tooltip/pull/578) ([@domoritz](https://github.com/domoritz))
- chore: sync prerelease branch version with stable [#575](https://github.com/vega/vega-tooltip/pull/575) ([@hydrosquall](https://github.com/hydrosquall))
#### π© Dependency Updates
- chore(deps): bump tar from 6.1.0 to 6.1.3 [#576](https://github.com/vega/vega-tooltip/pull/576) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.55.0 to 2.55.1 [#574](https://github.com/vega/vega-tooltip/pull/574) ([@dependabot[bot]](https://github.com/dependabot[bot]))
#### Authors: 4
- [@dependabot[bot]](https://github.com/dependabot[bot])
- Cameron Yick ([@hydrosquall](https://github.com/hydrosquall))
- Dominik Moritz ([@domoritz](https://github.com/domoritz))
- Stefan van der Meer ([@svdm](https://github.com/svdm))
---
# v0.4.0 (Wed Jul 28 2021)
:tada: This release contains work from new contributors! :tada:
Thanks for all your work!
:heart: Cameron Yick ([@hydrosquall](https://github.com/hydrosquall))
:heart: Abe Rubenstein ([@sighrobot](https://github.com/sighrobot))
:heart: siddhant ([@siddhant1](https://github.com/siddhant1))
:heart: null[@melissachang](https://github.com/melissachang)
:heart: Noon van der Silk ([@silky](https://github.com/silky))
:heart: Ken Lin ([@kenklin](https://github.com/kenklin))
:heart: Yash Dev Lamba ([@ydlamba](https://github.com/ydlamba))
:heart: Yuri Astrakhan ([@nyurik](https://github.com/nyurik))
:heart: Jeffrey Heer ([@jheer](https://github.com/jheer))
:heart: Eric Socolofsky ([@ericsoco](https://github.com/ericsoco))
:heart: Robin Millette ([@millette](https://github.com/millette))
#### π Enhancement
- feat: add option formatTooltip and use formatValue as default [#557](https://github.com/vega/vega-tooltip/pull/557) ([@sighrobot](https://github.com/sighrobot))
- feat: externalize vega util for smaller builds ([@domoritz](https://github.com/domoritz))
- feat: support images in tooltips [#389](https://github.com/vega/vega-tooltip/pull/389) ([@domoritz](https://github.com/domoritz))
#### π Bug Fix
- chore(deps-dev): bump vega-lite-dev-config from 0.17.3 to 0.18.0 [#570](https://github.com/vega/vega-tooltip/pull/570) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@domoritz](https://github.com/domoritz))
- ci: test next branch [#573](https://github.com/vega/vega-tooltip/pull/573) ([@domoritz](https://github.com/domoritz))
- chore: set up auto for versioning/release management [#566](https://github.com/vega/vega-tooltip/pull/566) ([@hydrosquall](https://github.com/hydrosquall))
- v0.26.0 [#566](https://github.com/vega/vega-tooltip/pull/566) ([@domoritz](https://github.com/domoritz))
- test: add test suite for Handler [#558](https://github.com/vega/vega-tooltip/pull/558) ([@sighrobot](https://github.com/sighrobot))
- chore: upgrade deps and use new dev config [#521](https://github.com/vega/vega-tooltip/pull/521) ([@domoritz](https://github.com/domoritz))
- fix: support tooltips in fullscreen [#508](https://github.com/vega/vega-tooltip/pull/508) ([@domoritz](https://github.com/domoritz))
- ci: run on pr and push to master ([@domoritz](https://github.com/domoritz))
- fix: copy data after prepare so that developers have it ([@domoritz](https://github.com/domoritz))
- fix: switch to umd ([@domoritz](https://github.com/domoritz))
- v0.24.0 ([@domoritz](https://github.com/domoritz))
- fix: produce umd bundle for main ([@domoritz](https://github.com/domoritz))
- fix: output declarations ([@domoritz](https://github.com/domoritz))
- fix: correct types reference ([@domoritz](https://github.com/domoritz))
- Revert "refactor: simplify version import" ([@domoritz](https://github.com/domoritz))
- chore: upgrade codecov [#395](https://github.com/vega/vega-tooltip/pull/395) ([@domoritz](https://github.com/domoritz))
- chore: upgrade deps [#394](https://github.com/vega/vega-tooltip/pull/394) ([@domoritz](https://github.com/domoritz))
- ci: switch to github actions [#393](https://github.com/vega/vega-tooltip/pull/393) ([@domoritz](https://github.com/domoritz))
- Test on node 14 [#378](https://github.com/vega/vega-tooltip/pull/378) ([@domoritz](https://github.com/domoritz))
- chore(package): update rollup to version 1.19.2 [#258](https://github.com/vega/vega-tooltip/pull/258) ([@greenkeeper[bot]](https://github.com/greenkeeper[bot]) [@domoritz](https://github.com/domoritz))
- Add version [#256](https://github.com/vega/vega-tooltip/pull/256) ([@siddhant1](https://github.com/siddhant1) [@domoritz](https://github.com/domoritz))
- chore(package): update terser to version 4.1.0 [#254](https://github.com/vega/vega-tooltip/pull/254) ([@greenkeeper[bot]](https://github.com/greenkeeper[bot]) [@domoritz](https://github.com/domoritz))
- Fix CSS in customization documentation [#239](https://github.com/vega/vega-tooltip/pull/239) ([@melissachang](https://github.com/melissachang))
- Delete unused css [#221](https://github.com/vega/vega-tooltip/pull/221) ([@kanitw](https://github.com/kanitw))
- formatValue tests [#198](https://github.com/vega/vega-tooltip/pull/198) ([@nyurik](https://github.com/nyurik))
- Readme [#183](https://github.com/vega/vega-tooltip/pull/183) ([@domoritz](https://github.com/domoritz))
- Sanitize html [#183](https://github.com/vega/vega-tooltip/pull/183) ([@domoritz](https://github.com/domoritz))
- No need to set charset again [#183](https://github.com/vega/vega-tooltip/pull/183) ([@domoritz](https://github.com/domoritz))
- Refactor the code to split initialization from registering the handler. [#183](https://github.com/vega/vega-tooltip/pull/183) ([@domoritz](https://github.com/domoritz))
- Address comments from @jheer and @nyurik except for separating initialization and handler registration. [#183](https://github.com/vega/vega-tooltip/pull/183) ([@domoritz](https://github.com/domoritz))
- Rewrite tooltip to use tooltip handler. Fixes #151, fixes #177, fixes #170, fixes #171, fixes #148, fixes #168, fixes #97, fixes #49 [#183](https://github.com/vega/vega-tooltip/pull/183) ([@domoritz](https://github.com/domoritz))
- minor perf optimization [#182](https://github.com/vega/vega-tooltip/pull/182) ([@nyurik](https://github.com/nyurik))
- added LICENSE file [#180](https://github.com/vega/vega-tooltip/pull/180) ([@nyurik](https://github.com/nyurik))
- remove vega production dependency [#174](https://github.com/vega/vega-tooltip/pull/174) ([@nyurik](https://github.com/nyurik))
- Update APIs.md [#175](https://github.com/vega/vega-tooltip/pull/175) ([@nyurik](https://github.com/nyurik))
- remove error log [#169](https://github.com/vega/vega-tooltip/pull/169) ([@sirahd](https://github.com/sirahd))
- update package.json [#169](https://github.com/vega/vega-tooltip/pull/169) ([@sirahd](https://github.com/sirahd))
- rename TopLevelExtendedSpec to TopLevelSpec and add normalized spec [#169](https://github.com/vega/vega-tooltip/pull/169) ([@sirahd](https://github.com/sirahd))
- Upgrade dependencies [#161](https://github.com/vega/vega-tooltip/pull/161) ([@domoritz](https://github.com/domoritz))
- Bad pipe again, missed in the rebases [#159](https://github.com/vega/vega-tooltip/pull/159) ([@ericsoco](https://github.com/ericsoco))
- fix lint issue [#158](https://github.com/vega/vega-tooltip/pull/158) ([@sirahd](https://github.com/sirahd))
- update package.json [#158](https://github.com/vega/vega-tooltip/pull/158) ([@sirahd](https://github.com/sirahd))
- fix import style issue [#158](https://github.com/vega/vega-tooltip/pull/158) ([@sirahd](https://github.com/sirahd))
- add .travis.yml config for travis CI [#158](https://github.com/vega/vega-tooltip/pull/158) ([@sirahd](https://github.com/sirahd))
- Better type name per @sirah [#157](https://github.com/vega/vega-tooltip/pull/157) ([@ericsoco](https://github.com/ericsoco))
- Add `render` property to `fields` option to allow custom rendering of each row [#157](https://github.com/vega/vega-tooltip/pull/157) ([@ericsoco](https://github.com/ericsoco))
- Clear up type checks with vega-util functions per @sirah [#156](https://github.com/vega/vega-tooltip/pull/156) ([@ericsoco](https://github.com/ericsoco))
- Fix format/type undefined behavior post-#155 [#156](https://github.com/vega/vega-tooltip/pull/156) ([@ericsoco](https://github.com/ericsoco))
- Fix docs (bad pipes) [#156](https://github.com/vega/vega-tooltip/pull/156) ([@ericsoco](https://github.com/ericsoco))
- Sort on raw value instead of formatted value [#156](https://github.com/vega/vega-tooltip/pull/156) ([@ericsoco](https://github.com/ericsoco))
- Update docs per comments [#156](https://github.com/vega/vega-tooltip/pull/156) ([@ericsoco](https://github.com/ericsoco))
- Add `sort` option [#156](https://github.com/vega/vega-tooltip/pull/156) ([@ericsoco](https://github.com/ericsoco))
- Address @sirahd's comments. Remove overloading of `field` and move into `valueAccessor`. [#155](https://github.com/vega/vega-tooltip/pull/155) ([@ericsoco](https://github.com/ericsoco))
- Address @kanitw's comments [#155](https://github.com/vega/vega-tooltip/pull/155) ([@ericsoco](https://github.com/ericsoco))
- Add accessors for `title` and `field`, and custom `format` function [#155](https://github.com/vega/vega-tooltip/pull/155) ([@ericsoco](https://github.com/ericsoco))
- check if the spec is composite to suppress warnings [#154](https://github.com/vega/vega-tooltip/pull/154) ([@sirahd](https://github.com/sirahd))
- Donβt require latest vl and vg [#153](https://github.com/vega/vega-tooltip/pull/153) ([@domoritz](https://github.com/domoritz))
- Upgrade deps [#153](https://github.com/vega/vega-tooltip/pull/153) ([@domoritz](https://github.com/domoritz))
- remove literal key type [#152](https://github.com/vega/vega-tooltip/pull/152) ([@sirahd](https://github.com/sirahd))
- fixes style [#143](https://github.com/vega/vega-tooltip/pull/143) ([@sirahd](https://github.com/sirahd))
- uses vgField instead of field to get field string and include maxbins in field [#143](https://github.com/vega/vega-tooltip/pull/143) ([@sirahd](https://github.com/sirahd))
- uses vl-generated field name in tooltip and updates bin key to match new vega-lite convention [#143](https://github.com/vega/vega-tooltip/pull/143) ([@sirahd](https://github.com/sirahd))
- fixes typo [#144](https://github.com/vega/vega-tooltip/pull/144) ([@sirahd](https://github.com/sirahd))
- add typeguard for FieldDef and correct FieldDef generic type [#144](https://github.com/vega/vega-tooltip/pull/144) ([@sirahd](https://github.com/sirahd))
- add schema back [#144](https://github.com/vega/vega-tooltip/pull/144) ([@sirahd](https://github.com/sirahd))
- field title now uses custom axis title as default [#144](https://github.com/vega/vega-tooltip/pull/144) ([@sirahd](https://github.com/sirahd))
- remove deprecated keys [#141](https://github.com/vega/vega-tooltip/pull/141) ([@sirahd](https://github.com/sirahd))
- Update embed call, update dependencies ([@domoritz](https://github.com/domoritz))
- Update parseOption.ts [#136](https://github.com/vega/vega-tooltip/pull/136) ([@domoritz](https://github.com/domoritz))
- Fix compile error [#135](https://github.com/vega/vega-tooltip/pull/135) ([@domoritz](https://github.com/domoritz))
- Update doc links to d3 v4 [#139](https://github.com/vega/vega-tooltip/pull/139) ([@ericsoco](https://github.com/ericsoco))
- Fix typo in CSS classname [#137](https://github.com/vega/vega-tooltip/pull/137) ([@ericsoco](https://github.com/ericsoco))
- Embed returns a promise, fix 2nd example. [#132](https://github.com/vega/vega-tooltip/pull/132) ([@millette](https://github.com/millette))
- vega-embed returns a promise (no more callback) [#131](https://github.com/vega/vega-tooltip/pull/131) ([@millette](https://github.com/millette))
- edit docs to remove requirement for placeholder [#130](https://github.com/vega/vega-tooltip/pull/130) (horradarn@yahoo-inc.com)
- Update dependencies and bump version [#128](https://github.com/vega/vega-tooltip/pull/128) ([@kanitw](https://github.com/kanitw))
- Note tooltip appears only for interactive=true marks [#126](https://github.com/vega/vega-tooltip/pull/126) ([@kenklin](https://github.com/kenklin))
- Update parseOption.ts [#124](https://github.com/vega/vega-tooltip/pull/124) ([@kanitw](https://github.com/kanitw))
- Do not show tooltip for group marks [#124](https://github.com/vega/vega-tooltip/pull/124) ([@kanitw](https://github.com/kanitw))
- fix space in import [#114](https://github.com/vega/vega-tooltip/pull/114) ([@sirahd](https://github.com/sirahd))
- add more types to disable noImplicitAny [#114](https://github.com/vega/vega-tooltip/pull/114) ([@sirahd](https://github.com/sirahd))
- Build individual javascript files. Fixes #110 [#112](https://github.com/vega/vega-tooltip/pull/112) ([@domoritz](https://github.com/domoritz))
- update scatterplot and use capitalized name [#109](https://github.com/vega/vega-tooltip/pull/109) ([@sirahd](https://github.com/sirahd))
- more edits [#109](https://github.com/vega/vega-tooltip/pull/109) ([@sirahd](https://github.com/sirahd))
- add installing instruction in main page and correct dependencies [#109](https://github.com/vega/vega-tooltip/pull/109) ([@sirahd](https://github.com/sirahd))
- Remove d3 map [#102](https://github.com/vega/vega-tooltip/pull/102) ([@sirahd](https://github.com/sirahd))
- minify css [#105](https://github.com/vega/vega-tooltip/pull/105) (soren@yieldbot.com)
#### β οΈ Pushed to `stable`
- refactor: simplify code with nullish coalescing ([@domoritz](https://github.com/domoritz))
- ci: set akheron/dependabot-cron-action to use v0.2 ([@domoritz](https://github.com/domoritz))
- ci: auto merge dependabot PRs ([@domoritz](https://github.com/domoritz))
- ci: monthly updates ([@domoritz](https://github.com/domoritz))
- v0.25.1 ([@domoritz](https://github.com/domoritz))
- chore(deps-dev): bump rollup from 2.38.3 to 2.38.5 ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- v0.25.0 ([@domoritz](https://github.com/domoritz))
- ci: remove caching ([@domoritz](https://github.com/domoritz))
- v0.24.2 ([@domoritz](https://github.com/domoritz))
- chore: upgrade deps ([@domoritz](https://github.com/domoritz))
- v0.24.1 ([@domoritz](https://github.com/domoritz))
- chore: remove commonjs plugin ([@domoritz](https://github.com/domoritz))
- style: fix broken lint ([@domoritz](https://github.com/domoritz))
- refactor: use pkg refs ([@domoritz](https://github.com/domoritz))
- refactor: simplify tsconfig override ([@domoritz](https://github.com/domoritz))
- chore: modernize build system ([@domoritz](https://github.com/domoritz))
- ci: simplify coverage reporting ([@domoritz](https://github.com/domoritz))
- v0.23.2 ([@domoritz](https://github.com/domoritz))
- v0.23.1 ([@domoritz](https://github.com/domoritz))
- refactor: simplify version import ([@domoritz](https://github.com/domoritz))
- chore; upgrade deps ([@domoritz](https://github.com/domoritz))
- chore: upgrade deps and specs ([@domoritz](https://github.com/domoritz))
- chore: don't publish git workflows ([@domoritz](https://github.com/domoritz))
- chore: ignore coverage on npm ([@domoritz](https://github.com/domoritz))
- v0.23.0 ([@domoritz](https://github.com/domoritz))
- Update README.md ([@domoritz](https://github.com/domoritz))
- v0.22.1 ([@domoritz](https://github.com/domoritz))
- Upgrade deps ([@domoritz](https://github.com/domoritz))
- v0.22.0 ([@domoritz](https://github.com/domoritz))
- Allow partial tooltip options ([@domoritz](https://github.com/domoritz))
- v0.21.0 ([@domoritz](https://github.com/domoritz))
- Add declaration maps ([@domoritz](https://github.com/domoritz))
- v0.20.1 ([@domoritz](https://github.com/domoritz))
- v0.20.0 ([@domoritz](https://github.com/domoritz))
- Fix test ([@domoritz](https://github.com/domoritz))
- npm ignore ([@domoritz](https://github.com/domoritz))
- v0.19.1 ([@domoritz](https://github.com/domoritz))
- Deps ([@domoritz](https://github.com/domoritz))
- v0.19.0 ([@domoritz](https://github.com/domoritz))
- clean up dev scripts ([@domoritz](https://github.com/domoritz))
- Upgrade dev config ([@domoritz](https://github.com/domoritz))
- Remove greenkeeper badge ([@domoritz](https://github.com/domoritz))
- Update deps, remove node typigs ([@domoritz](https://github.com/domoritz))
- v0.18.1 ([@domoritz](https://github.com/domoritz))
- Fix package.json ([@domoritz](https://github.com/domoritz))
- v0.18.0 ([@domoritz](https://github.com/domoritz))
- merge branch 'master' of github.com:vega/vega-tooltip ([@domoritz](https://github.com/domoritz))
- Ignore build files in npm packages ([@domoritz](https://github.com/domoritz))
- Generate style file that satisfies linting ([@domoritz](https://github.com/domoritz))
- v0.17.2 ([@domoritz](https://github.com/domoritz))
- delete eslintignore ([@domoritz](https://github.com/domoritz))
- Update author ([@domoritz](https://github.com/domoritz))
- v0.17.1 ([@domoritz](https://github.com/domoritz))
- Improve linting setup ([@domoritz](https://github.com/domoritz))
- Switch to dev config, format ([@domoritz](https://github.com/domoritz))
- Ignore undefined properties. Fixes #251 ([@domoritz](https://github.com/domoritz))
- Refactor name of handler ([@domoritz](https://github.com/domoritz))
- Clean up readme ([@domoritz](https://github.com/domoritz))
- Update dependencies ([@domoritz](https://github.com/domoritz))
- v0.17.0 ([@domoritz](https://github.com/domoritz))
- Clean up lint ([@domoritz](https://github.com/domoritz))
- Clean up ([@domoritz](https://github.com/domoritz))
- v0.16.0 ([@domoritz](https://github.com/domoritz))
- Upgrade yarn deps ([@domoritz](https://github.com/domoritz))
- Test more examples, fix table style on observable ([@domoritz](https://github.com/domoritz))
- v0.15.0 ([@domoritz](https://github.com/domoritz))
- Remove ! ([@domoritz](https://github.com/domoritz))
- Format everything, use sass ([@domoritz](https://github.com/domoritz))
- v0.14.0 ([@domoritz](https://github.com/domoritz))
- Lint ([@domoritz](https://github.com/domoritz))
- Test on node 11 ([@domoritz](https://github.com/domoritz))
- Upgrade deps, use es6 ([@domoritz](https://github.com/domoritz))
- Upgrade dependencies, use terser, fix typescript ([@domoritz](https://github.com/domoritz))
- Fixes #212 ([@domoritz](https://github.com/domoritz))
- v0.13.0 ([@domoritz](https://github.com/domoritz))
- Renew npm key ([@domoritz](https://github.com/domoritz))
- Use Vega 4 ([@domoritz](https://github.com/domoritz))
- v0.12.0 ([@domoritz](https://github.com/domoritz))
- Use provided sanitize method ([@silky](https://github.com/silky))
- v0.11.0 ([@domoritz](https://github.com/domoritz))
- Clean up rollup, fix prettier ([@domoritz](https://github.com/domoritz))
- Make scripts more robust, remove styling ([@domoritz](https://github.com/domoritz))
- Generate js file with style. See vega/vega-embed#83 ([@domoritz](https://github.com/domoritz))
- Remove obsoleted signal_highligtedpoint ([@kenklin](https://github.com/kenklin))
- Fix choropleth.json link ([@kenklin](https://github.com/kenklin))
- Release instructions ([@domoritz](https://github.com/domoritz))
- v0.10.4 ([@domoritz](https://github.com/domoritz))
- Auto deploy ([@domoritz](https://github.com/domoritz))
- v0.10.3 ([@domoritz](https://github.com/domoritz))
- v0.10.2 ([@domoritz](https://github.com/domoritz))
- Append toString to defaultStyle ([@ydlamba](https://github.com/ydlamba))
- No need for rollup config on npm ([@domoritz](https://github.com/domoritz))
- v0.10.1 ([@domoritz](https://github.com/domoritz))
- Smaller npm bundle ([@domoritz](https://github.com/domoritz))
- v0.10.0 ([@domoritz](https://github.com/domoritz))
- Keep style in css file and import it into bundle ([@domoritz](https://github.com/domoritz))
- Use Vega 4, show line example ([@domoritz](https://github.com/domoritz))
- Update .npmignore ([@domoritz](https://github.com/domoritz))
- v0.9.16 ([@domoritz](https://github.com/domoritz))
- Fix build by adding node types for 9 ([@domoritz](https://github.com/domoritz))
- v0.9.15 ([@domoritz](https://github.com/domoritz))
- Format ([@domoritz](https://github.com/domoritz))
- Bump deps ([@domoritz](https://github.com/domoritz))
- Use our own stringify. Fixes vega/vega#1266 ([@domoritz](https://github.com/domoritz))
- Upgrade rollup ([@domoritz](https://github.com/domoritz))
- Fix typo ([@domoritz](https://github.com/domoritz))
- Deploy examples ([@domoritz](https://github.com/domoritz))
- Cleaner deployment ([@domoritz](https://github.com/domoritz))
- Deploy from examples folder ([@domoritz](https://github.com/domoritz))
- Add tests ([@domoritz](https://github.com/domoritz))
- v0.9.14 ([@domoritz](https://github.com/domoritz))
- security bug, redundant String ([@nyurik](https://github.com/nyurik))
- v0.9.13 ([@domoritz](https://github.com/domoritz))
- Only apply prettier to src ([@domoritz](https://github.com/domoritz))
- Fix examples. Fixes #196 ([@domoritz](https://github.com/domoritz))
- Auto format with tslint as well ([@domoritz](https://github.com/domoritz))
- Apply prettier ([@domoritz](https://github.com/domoritz))
- minor cleanups ([@nyurik](https://github.com/nyurik))
- refactored into testable modules ([@nyurik](https://github.com/nyurik))
- Prettier ([@domoritz](https://github.com/domoritz))
- es2015, not esnext ([@domoritz](https://github.com/domoritz))
- v0.9.12 ([@domoritz](https://github.com/domoritz))
- Upgrade to customize style and work with new embed ([@domoritz](https://github.com/domoritz))
- No need for hover ([@domoritz](https://github.com/domoritz))
- v0.9.11 ([@domoritz](https://github.com/domoritz))
- Donβt add `hover` in the convenience wrapper. Fixes #192 ([@domoritz](https://github.com/domoritz))
- Simplify code, fix comment. ([@jheer](https://github.com/jheer))
- v0.9.10 ([@domoritz](https://github.com/domoritz))
- restoring console.log statement ([@nyurik](https://github.com/nyurik))
- hide tooltip on empty string ([@nyurik](https://github.com/nyurik))
- v0.9.7 ([@domoritz](https://github.com/domoritz))
- Use null to detect when to hide the tooltip ([@domoritz](https://github.com/domoritz))
- Use ts helper lib ([@domoritz](https://github.com/domoritz))
- Add browser sync ([@domoritz](https://github.com/domoritz))
- Reorder ([@domoritz](https://github.com/domoritz))
- v0.9.6 ([@domoritz](https://github.com/domoritz))
- Use safe stringify. Fixes #187 ([@domoritz](https://github.com/domoritz))
- Docs for title, link to editor ([@domoritz](https://github.com/domoritz))
- v0.9.5 ([@domoritz](https://github.com/domoritz))
- Merge branch 'master' of github.com:vega/vega-tooltip ([@domoritz](https://github.com/domoritz))
- Update APIs.md ([@domoritz](https://github.com/domoritz))
- updated API.md ([@nyurik](https://github.com/nyurik))
- handle non-string simple values in escaping ([@nyurik](https://github.com/nyurik))
- Require hover processing ([@domoritz](https://github.com/domoritz))
- Improve examples ([@domoritz](https://github.com/domoritz))
- v0.9.4 ([@domoritz](https://github.com/domoritz))
- Run after adding the tooltip handler ([@domoritz](https://github.com/domoritz))
- v0.9.3 ([@domoritz](https://github.com/domoritz))
- Fix package.json file refs ([@domoritz](https://github.com/domoritz))
- moved formatValue into handler, doc fix ([@nyurik](https://github.com/nyurik))
- v0.9.2 ([@domoritz](https://github.com/domoritz))
- Update typings dependency ([@domoritz](https://github.com/domoritz))
- v0.9.1 ([@domoritz](https://github.com/domoritz))
- Link back to gh ([@domoritz](https://github.com/domoritz))
- Push data to github pages ([@domoritz](https://github.com/domoritz))
- Deploy gh pages ([@domoritz](https://github.com/domoritz))
- Remove support for bower ([@domoritz](https://github.com/domoritz))
- Readme ([@domoritz](https://github.com/domoritz))
- Add badges ([@domoritz](https://github.com/domoritz))
- Bump ([@domoritz](https://github.com/domoritz))
- Remove vega dependency. ([@domoritz](https://github.com/domoritz))
- Bump version ([@domoritz](https://github.com/domoritz))
- Bump to 0.6.1 ([@domoritz](https://github.com/domoritz))
- Bump to 0.6 ([@domoritz](https://github.com/domoritz))
- Fix weather spec ([@domoritz](https://github.com/domoritz))
- Rerun yarn ([@domoritz](https://github.com/domoritz))
- Udpate docs to jsdelivr ([@domoritz](https://github.com/domoritz))
- Bump top v0.5 ([@domoritz](https://github.com/domoritz))
- Update examples to use Vega-Embed ([@domoritz](https://github.com/domoritz))
- Do not use `extend` in vega-tooltip and bump to 0.4.4 ([@kanitw](https://github.com/kanitw))
- Delete options from tutorial. Fixes #125 ([@domoritz](https://github.com/domoritz))
- Bump to 0.4.2 ([@kanitw](https://github.com/kanitw))
- Bump to 0.4.1 ([@kanitw](https://github.com/kanitw))
- Add missing `typings` in package.json cc:@sirahd @domoritz ([@kanitw](https://github.com/kanitw))
- add properties in customizing docs ([@sirahd](https://github.com/sirahd))
- fix bad format ([@sirahd](https://github.com/sirahd))
- add links to github ([@sirahd](https://github.com/sirahd))
- Upgrade deps and fix build ([@domoritz](https://github.com/domoritz))
- Document how to use tooltip with old vg and vl ([@domoritz](https://github.com/domoritz))
- Bump again to fix deployment ([@domoritz](https://github.com/domoritz))
- Bump for cleanup ([@domoritz](https://github.com/domoritz))
- Ignore example css and demo screenshot ([@domoritz](https://github.com/domoritz))
#### π© Dependency Updates
- chore(deps-dev): bump @rollup/plugin-node-resolve from 13.0.0 to 13.0.4 [#572](https://github.com/vega/vega-tooltip/pull/572) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.52.7 to 2.55.0 [#571](https://github.com/vega/vega-tooltip/pull/571) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump browser-sync from 2.27.4 to 2.27.5 [#569](https://github.com/vega/vega-tooltip/pull/569) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump codecov/codecov-action from 1 to 2.0.2 [#567](https://github.com/vega/vega-tooltip/pull/567) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump actions/setup-node from 2.2.0 to 2.3.0 [#568](https://github.com/vega/vega-tooltip/pull/568) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump gh-pages from 3.2.0 to 3.2.3 [#561](https://github.com/vega/vega-tooltip/pull/561) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump akheron/dependabot-cron-action from 0.2 to 1 [#559](https://github.com/vega/vega-tooltip/pull/559) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump actions/setup-node from 2.1.5 to 2.2.0 [#560](https://github.com/vega/vega-tooltip/pull/560) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.50.5 to 2.52.7 [#562](https://github.com/vega/vega-tooltip/pull/562) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump browser-sync from 2.26.14 to 2.27.4 [#563](https://github.com/vega/vega-tooltip/pull/563) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump node-sass from 6.0.0 to 6.0.1 [#564](https://github.com/vega/vega-tooltip/pull/564) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump typescript from 4.3.2 to 4.3.5 [#565](https://github.com/vega/vega-tooltip/pull/565) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump glob-parent from 5.1.1 to 5.1.2 [#556](https://github.com/vega/vega-tooltip/pull/556) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.46.0 to 2.50.5 [#555](https://github.com/vega/vega-tooltip/pull/555) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump concurrently from 6.0.2 to 6.2.0 [#553](https://github.com/vega/vega-tooltip/pull/553) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump typescript from 4.2.4 to 4.3.2 [#550](https://github.com/vega/vega-tooltip/pull/550) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 11.2.1 to 13.0.0 [#552](https://github.com/vega/vega-tooltip/pull/552) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump node-sass from 5.0.0 to 6.0.0 [#551](https://github.com/vega/vega-tooltip/pull/551) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump gh-pages from 3.1.0 to 3.2.0 [#554](https://github.com/vega/vega-tooltip/pull/554) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump ws from 7.4.3 to 7.4.6 [#549](https://github.com/vega/vega-tooltip/pull/549) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump hosted-git-info from 2.8.8 to 2.8.9 [#547](https://github.com/vega/vega-tooltip/pull/547) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.45.2 to 2.46.0 [#546](https://github.com/vega/vega-tooltip/pull/546) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump actions/setup-node from v1 to v2.1.5 [#545](https://github.com/vega/vega-tooltip/pull/545) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- ci: upgrade to GitHub-native Dependabot [#544](https://github.com/vega/vega-tooltip/pull/544) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump vega-lite-dev-config from 0.17.2 to 0.17.3 [#543](https://github.com/vega/vega-tooltip/pull/543) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @wessberg/rollup-plugin-ts from 1.3.11 to 1.3.14 [#542](https://github.com/vega/vega-tooltip/pull/542) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.45.1 to 2.45.2 [#540](https://github.com/vega/vega-tooltip/pull/540) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump concurrently from 6.0.1 to 6.0.2 [#541](https://github.com/vega/vega-tooltip/pull/541) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump vega-lite-dev-config from 0.17.0 to 0.17.2 [#537](https://github.com/vega/vega-tooltip/pull/537) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump concurrently from 6.0.0 to 6.0.1 [#539](https://github.com/vega/vega-tooltip/pull/539) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.44.0 to 2.45.1 [#538](https://github.com/vega/vega-tooltip/pull/538) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump typescript from 4.2.3 to 4.2.4 [#536](https://github.com/vega/vega-tooltip/pull/536) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump vega-typings from 0.20.0 to 0.21.0 [#534](https://github.com/vega/vega-tooltip/pull/534) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.43.1 to 2.44.0 [#535](https://github.com/vega/vega-tooltip/pull/535) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 11.2.0 to 11.2.1 [#532](https://github.com/vega/vega-tooltip/pull/532) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.42.2 to 2.43.1 [#533](https://github.com/vega/vega-tooltip/pull/533) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @wessberg/rollup-plugin-ts from 1.3.10 to 1.3.11 [#531](https://github.com/vega/vega-tooltip/pull/531) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump vega-typings from 0.19.2 to 0.20.0 [#527](https://github.com/vega/vega-tooltip/pull/527) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.41.2 to 2.42.2 [#529](https://github.com/vega/vega-tooltip/pull/529) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps): bump vega-util from 1.16.0 to 1.16.1 [#530](https://github.com/vega/vega-tooltip/pull/530) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @wessberg/rollup-plugin-ts from 1.3.8 to 1.3.10 [#528](https://github.com/vega/vega-tooltip/pull/528) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.40.0 to 2.41.2 [#526](https://github.com/vega/vega-tooltip/pull/526) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump vega-lite-dev-config from 0.16.6 to 0.17.0 [#524](https://github.com/vega/vega-tooltip/pull/524) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump typescript from 4.2.2 to 4.2.3 [#525](https://github.com/vega/vega-tooltip/pull/525) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump vega-lite-dev-config from 0.16.1 to 0.16.6 [#522](https://github.com/vega/vega-tooltip/pull/522) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.39.1 to 2.40.0 [#523](https://github.com/vega/vega-tooltip/pull/523) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump concurrently from 5.3.0 to 6.0.0 [#520](https://github.com/vega/vega-tooltip/pull/520) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 11.1.1 to 11.2.0 [#519](https://github.com/vega/vega-tooltip/pull/519) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump typescript from 4.1.3 to 4.1.5 [#518](https://github.com/vega/vega-tooltip/pull/518) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.38.5 to 2.39.0 [#517](https://github.com/vega/vega-tooltip/pull/517) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.38.0 to 2.38.3 [#514](https://github.com/vega/vega-tooltip/pull/514) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 11.1.0 to 11.1.1 [#515](https://github.com/vega/vega-tooltip/pull/515) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump browser-sync from 2.26.13 to 2.26.14 [#513](https://github.com/vega/vega-tooltip/pull/513) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.36.2 to 2.38.0 [#512](https://github.com/vega/vega-tooltip/pull/512) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.36.1 to 2.36.2 [#511](https://github.com/vega/vega-tooltip/pull/511) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 11.0.1 to 11.1.0 [#510](https://github.com/vega/vega-tooltip/pull/510) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.35.1 to 2.36.1 [#509](https://github.com/vega/vega-tooltip/pull/509) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump vega-typings from 0.19.1 to 0.19.2 [#505](https://github.com/vega/vega-tooltip/pull/505) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps): [security] bump node-notifier from 8.0.0 to 8.0.1 [#504](https://github.com/vega/vega-tooltip/pull/504) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 11.0.0 to 11.0.1 [#503](https://github.com/vega/vega-tooltip/pull/503) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.35.0 to 2.35.1 [#502](https://github.com/vega/vega-tooltip/pull/502) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump typescript from 4.0.5 to 4.1.3 [#500](https://github.com/vega/vega-tooltip/pull/500) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.34.2 to 2.35.0 [#501](https://github.com/vega/vega-tooltip/pull/501) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 10.0.0 to 11.0.0 [#498](https://github.com/vega/vega-tooltip/pull/498) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.34.0 to 2.34.2 [#497](https://github.com/vega/vega-tooltip/pull/497) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.33.3 to 2.34.0 [#496](https://github.com/vega/vega-tooltip/pull/496) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.33.2 to 2.33.3 [#495](https://github.com/vega/vega-tooltip/pull/495) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.33.1 to 2.33.2 [#494](https://github.com/vega/vega-tooltip/pull/494) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @wessberg/rollup-plugin-ts from 1.3.7 to 1.3.8 [#493](https://github.com/vega/vega-tooltip/pull/493) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump node-sass from 4.14.1 to 5.0.0 [#491](https://github.com/vega/vega-tooltip/pull/491) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.32.1 to 2.33.1 [#492](https://github.com/vega/vega-tooltip/pull/492) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 9.0.0 to 10.0.0 [#489](https://github.com/vega/vega-tooltip/pull/489) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.32.0 to 2.32.1 [#488](https://github.com/vega/vega-tooltip/pull/488) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @wessberg/rollup-plugin-ts from 1.3.5 to 1.3.7 [#487](https://github.com/vega/vega-tooltip/pull/487) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump typescript from 4.0.3 to 4.0.5 [#486](https://github.com/vega/vega-tooltip/pull/486) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps): [security] bump object-path from 0.11.4 to 0.11.5 [#485](https://github.com/vega/vega-tooltip/pull/485) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump browser-sync from 2.26.12 to 2.26.13 [#484](https://github.com/vega/vega-tooltip/pull/484) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.29.0 to 2.32.0 [#483](https://github.com/vega/vega-tooltip/pull/483) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.28.2 to 2.29.0 [#482](https://github.com/vega/vega-tooltip/pull/482) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps): bump vega-util from 1.15.3 to 1.16.0 [#480](https://github.com/vega/vega-tooltip/pull/480) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump vega-lite-dev-config from 0.14.6 to 0.14.7 [#479](https://github.com/vega/vega-tooltip/pull/479) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @wessberg/rollup-plugin-ts from 1.3.4 to 1.3.5 [#481](https://github.com/vega/vega-tooltip/pull/481) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump vega-datasets from 2.1.0 to 2.2.0 [#478](https://github.com/vega/vega-tooltip/pull/478) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump vega-typings from 0.19.0 to 0.19.1 [#477](https://github.com/vega/vega-tooltip/pull/477) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.28.1 to 2.28.2 [#476](https://github.com/vega/vega-tooltip/pull/476) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps): bump vega-util from 1.15.2 to 1.15.3 [#475](https://github.com/vega/vega-tooltip/pull/475) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump typescript from 4.0.2 to 4.0.3 [#474](https://github.com/vega/vega-tooltip/pull/474) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.26.11 to 2.28.1 [#473](https://github.com/vega/vega-tooltip/pull/473) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump vega-lite-dev-config from 0.14.2 to 0.14.5 [#471](https://github.com/vega/vega-tooltip/pull/471) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump vega-typings from 0.18.1 to 0.18.2 [#469](https://github.com/vega/vega-tooltip/pull/469) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump ts-jest from 26.2.0 to 26.3.0 [#470](https://github.com/vega/vega-tooltip/pull/470) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @types/jest from 26.0.10 to 26.0.12 [#468](https://github.com/vega/vega-tooltip/pull/468) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.26.5 to 2.26.8 [#467](https://github.com/vega/vega-tooltip/pull/467) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps): bump vega-util from 1.15.0 to 1.15.1 [#466](https://github.com/vega/vega-tooltip/pull/466) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.26.3 to 2.26.5 [#465](https://github.com/vega/vega-tooltip/pull/465) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump vega-typings from 0.18.0 to 0.18.1 [#464](https://github.com/vega/vega-tooltip/pull/464) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump terser from 5.1.0 to 5.2.1 [#462](https://github.com/vega/vega-tooltip/pull/462) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump jest from 26.4.0 to 26.4.2 [#461](https://github.com/vega/vega-tooltip/pull/461) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @rollup/plugin-commonjs from 14.0.0 to 15.0.0 [#458](https://github.com/vega/vega-tooltip/pull/458) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 8.4.0 to 9.0.0 [#457](https://github.com/vega/vega-tooltip/pull/457) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump ts-jest from 26.1.4 to 26.2.0 [#460](https://github.com/vega/vega-tooltip/pull/460) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.23.1 to 2.26.3 [#459](https://github.com/vega/vega-tooltip/pull/459) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @types/jest from 26.0.9 to 26.0.10 [#454](https://github.com/vega/vega-tooltip/pull/454) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump terser from 5.0.0 to 5.1.0 [#456](https://github.com/vega/vega-tooltip/pull/456) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump jest from 26.3.0 to 26.4.0 [#455](https://github.com/vega/vega-tooltip/pull/455) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.23.0 to 2.23.1 [#452](https://github.com/vega/vega-tooltip/pull/452) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump concurrently from 5.2.0 to 5.3.0 [#451](https://github.com/vega/vega-tooltip/pull/451) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @types/jest from 26.0.8 to 26.0.9 [#450](https://github.com/vega/vega-tooltip/pull/450) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump jest from 26.2.2 to 26.3.0 [#449](https://github.com/vega/vega-tooltip/pull/449) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump terser from 4.8.0 to 5.0.0 [#444](https://github.com/vega/vega-tooltip/pull/444) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump vega-lite-dev-config from 0.11.8 to 0.11.9 [#447](https://github.com/vega/vega-tooltip/pull/447) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump jest from 26.1.0 to 26.2.2 [#446](https://github.com/vega/vega-tooltip/pull/446) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump ts-jest from 26.1.3 to 26.1.4 [#448](https://github.com/vega/vega-tooltip/pull/448) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @types/jest from 26.0.7 to 26.0.8 [#445](https://github.com/vega/vega-tooltip/pull/445) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @types/jest from 26.0.5 to 26.0.7 [#442](https://github.com/vega/vega-tooltip/pull/442) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump codecov from 3.7.1 to 3.7.2 [#443](https://github.com/vega/vega-tooltip/pull/443) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.22.1 to 2.23.0 [#440](https://github.com/vega/vega-tooltip/pull/440) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump browser-sync from 2.26.10 to 2.26.12 [#441](https://github.com/vega/vega-tooltip/pull/441) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @rollup/plugin-commonjs from 13.0.1 to 14.0.0 [#433](https://github.com/vega/vega-tooltip/pull/433) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump codecov from 3.7.0 to 3.7.1 [#437](https://github.com/vega/vega-tooltip/pull/437) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.21.0 to 2.22.1 [#439](https://github.com/vega/vega-tooltip/pull/439) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump browser-sync from 2.26.7 to 2.26.10 [#438](https://github.com/vega/vega-tooltip/pull/438) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @types/jest from 26.0.4 to 26.0.5 [#436](https://github.com/vega/vega-tooltip/pull/436) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump ts-jest from 26.1.2 to 26.1.3 [#434](https://github.com/vega/vega-tooltip/pull/434) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump typescript from 3.9.6 to 3.9.7 [#435](https://github.com/vega/vega-tooltip/pull/435) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps): bump lodash from 4.17.18 to 4.17.19 [#432](https://github.com/vega/vega-tooltip/pull/432) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @rollup/plugin-commonjs from 13.0.0 to 13.0.1 [#430](https://github.com/vega/vega-tooltip/pull/430) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump ts-jest from 26.1.1 to 26.1.2 [#431](https://github.com/vega/vega-tooltip/pull/431) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 8.1.0 to 8.4.0 [#429](https://github.com/vega/vega-tooltip/pull/429) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.18.0 to 2.19.0 [#427](https://github.com/vega/vega-tooltip/pull/427) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump typescript from 3.9.5 to 3.9.6 [#426](https://github.com/vega/vega-tooltip/pull/426) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump vega-lite-dev-config from 0.11.5 to 0.11.7 [#424](https://github.com/vega/vega-tooltip/pull/424) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump terser from 4.7.0 to 4.8.0 [#420](https://github.com/vega/vega-tooltip/pull/420) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.16.1 to 2.18.0 [#422](https://github.com/vega/vega-tooltip/pull/422) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump ts-jest from 26.1.0 to 26.1.1 [#423](https://github.com/vega/vega-tooltip/pull/423) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump gh-pages from 3.0.0 to 3.1.0 [#421](https://github.com/vega/vega-tooltip/pull/421) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @types/jest from 25.2.3 to 26.0.0 [#419](https://github.com/vega/vega-tooltip/pull/419) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.15.0 to 2.16.1 [#418](https://github.com/vega/vega-tooltip/pull/418) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump vega-typings from 0.17.2 to 0.18.0 [#411](https://github.com/vega/vega-tooltip/pull/411) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @rollup/plugin-commonjs from 12.0.0 to 13.0.0 [#414](https://github.com/vega/vega-tooltip/pull/414) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.12.0 to 2.15.0 [#417](https://github.com/vega/vega-tooltip/pull/417) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 8.0.0 to 8.0.1 [#416](https://github.com/vega/vega-tooltip/pull/416) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps): bump vega-util from 1.14.0 to 1.14.1 [#415](https://github.com/vega/vega-tooltip/pull/415) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump typescript from 3.9.3 to 3.9.5 [#413](https://github.com/vega/vega-tooltip/pull/413) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump @rollup/plugin-json from 4.0.3 to 4.1.0 [#412](https://github.com/vega/vega-tooltip/pull/412) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump vega-datasets from 1.30.4 to 1.31.1 [#410](https://github.com/vega/vega-tooltip/pull/410) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump gh-pages from 2.2.0 to 3.0.0 [#408](https://github.com/vega/vega-tooltip/pull/408) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.11.2 to 2.12.0 [#405](https://github.com/vega/vega-tooltip/pull/405) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump ts-jest from 26.0.0 to 26.1.0 [#407](https://github.com/vega/vega-tooltip/pull/407) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump vega-datasets from 1.30.3 to 1.30.4 [#406](https://github.com/vega/vega-tooltip/pull/406) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump rollup from 2.10.5 to 2.10.9 [#404](https://github.com/vega/vega-tooltip/pull/404) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- chore(deps-dev): bump vega-typings from 0.17.1 to 0.17.2 [#403](https://github.com/vega/vega-tooltip/pull/403) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump @rollup/plugin-node-resolve from 7.1.3 to 8.0.0 [#396](https://github.com/vega/vega-tooltip/pull/396) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump @rollup/plugin-commonjs from 11.1.0 to 12.0.0 [#402](https://github.com/vega/vega-tooltip/pull/402) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-typings from 0.17.0 to 0.17.1 [#399](https://github.com/vega/vega-tooltip/pull/399) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump typescript from 3.9.2 to 3.9.3 [#401](https://github.com/vega/vega-tooltip/pull/401) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 2.10.2 to 2.10.5 [#400](https://github.com/vega/vega-tooltip/pull/400) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump @types/jest from 25.2.2 to 25.2.3 [#397](https://github.com/vega/vega-tooltip/pull/397) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump terser from 4.6.13 to 4.7.0 [#398](https://github.com/vega/vega-tooltip/pull/398) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump ts-jest from 25.5.0 to 25.5.1 [#392](https://github.com/vega/vega-tooltip/pull/392) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 2.8.2 to 2.9.1 [#391](https://github.com/vega/vega-tooltip/pull/391) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-lite-dev-config from 0.10.0 to 0.10.3 [#390](https://github.com/vega/vega-tooltip/pull/390) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 2.7.2 to 2.7.6 [#388](https://github.com/vega/vega-tooltip/pull/388) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump jest from 25.4.0 to 25.5.4 [#386](https://github.com/vega/vega-tooltip/pull/386) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump terser from 4.6.12 to 4.6.13 [#387](https://github.com/vega/vega-tooltip/pull/387) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-typings from 0.15.4 to 0.16.0 [#381](https://github.com/vega/vega-tooltip/pull/381) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump terser from 4.6.11 to 4.6.12 [#383](https://github.com/vega/vega-tooltip/pull/383) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 2.6.1 to 2.7.2 [#384](https://github.com/vega/vega-tooltip/pull/384) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump node-sass from 4.13.1 to 4.14.0 [#382](https://github.com/vega/vega-tooltip/pull/382) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump concurrently from 5.1.0 to 5.2.0 [#380](https://github.com/vega/vega-tooltip/pull/380) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-util from 1.13.1 to 1.13.2 [#379](https://github.com/vega/vega-tooltip/pull/379) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-lite-dev-config from 0.5.1 to 0.7.1 [#375](https://github.com/vega/vega-tooltip/pull/375) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump jest from 25.3.0 to 25.4.0 [#374](https://github.com/vega/vega-tooltip/pull/374) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump @rollup/plugin-json from 4.0.2 to 4.0.3 [#377](https://github.com/vega/vega-tooltip/pull/377) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-typings from 0.15.3 to 0.15.4 [#376](https://github.com/vega/vega-tooltip/pull/376) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump ts-jest from 25.3.1 to 25.4.0 [#373](https://github.com/vega/vega-tooltip/pull/373) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump @rollup/plugin-commonjs from 11.0.2 to 11.1.0 [#369](https://github.com/vega/vega-tooltip/pull/369) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 2.3.3 to 2.6.1 [#370](https://github.com/vega/vega-tooltip/pull/370) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump terser from 4.6.10 to 4.6.11 [#372](https://github.com/vega/vega-tooltip/pull/372) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-typings from 0.15.2 to 0.15.3 [#371](https://github.com/vega/vega-tooltip/pull/371) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump jest from 25.2.7 to 25.3.0 [#368](https://github.com/vega/vega-tooltip/pull/368) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump @rollup/plugin-node-resolve from 7.1.1 to 7.1.3 [#367](https://github.com/vega/vega-tooltip/pull/367) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-typings from 0.14.2 to 0.15.2 [#360](https://github.com/vega/vega-tooltip/pull/360) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 2.3.0 to 2.3.3 [#364](https://github.com/vega/vega-tooltip/pull/364) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-lite-dev-config from 0.5.0 to 0.5.1 [#362](https://github.com/vega/vega-tooltip/pull/362) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump jest from 25.2.4 to 25.2.7 [#366](https://github.com/vega/vega-tooltip/pull/366) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump ts-jest from 25.3.0 to 25.3.1 [#365](https://github.com/vega/vega-tooltip/pull/365) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump terser from 4.6.7 to 4.6.10 [#363](https://github.com/vega/vega-tooltip/pull/363) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump @types/jest from 25.1.4 to 25.2.1 [#361](https://github.com/vega/vega-tooltip/pull/361) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump jest from 25.1.0 to 25.2.4 [#359](https://github.com/vega/vega-tooltip/pull/359) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 2.1.0 to 2.3.0 [#358](https://github.com/vega/vega-tooltip/pull/358) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump ts-jest from 25.2.1 to 25.3.0 [#357](https://github.com/vega/vega-tooltip/pull/357) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump terser from 4.6.6 to 4.6.7 [#356](https://github.com/vega/vega-tooltip/pull/356) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-typings from 0.14.0 to 0.14.2 [#355](https://github.com/vega/vega-tooltip/pull/355) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- [Security] Bump acorn from 6.4.0 to 6.4.1 [#354](https://github.com/vega/vega-tooltip/pull/354) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-typings from 0.13.0 to 0.14.0 [#352](https://github.com/vega/vega-tooltip/pull/352) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump terser from 4.6.4 to 4.6.6 [#353](https://github.com/vega/vega-tooltip/pull/353) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-util from 1.13.0 to 1.13.1 [#351](https://github.com/vega/vega-tooltip/pull/351) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 1.32.0 to 1.32.1 [#350](https://github.com/vega/vega-tooltip/pull/350) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump @types/jest from 25.1.3 to 25.1.4 [#349](https://github.com/vega/vega-tooltip/pull/349) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump typescript from 3.8.2 to 3.8.3 [#348](https://github.com/vega/vega-tooltip/pull/348) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-datasets from 1.29.0 to 1.30.2 [#346](https://github.com/vega/vega-tooltip/pull/346) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-lite-dev-config from 0.3.1 to 0.4.3 [#344](https://github.com/vega/vega-tooltip/pull/344) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 1.31.0 to 1.31.1 [#345](https://github.com/vega/vega-tooltip/pull/345) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-typings from 0.12.1 to 0.12.3 [#343](https://github.com/vega/vega-tooltip/pull/343) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump ts-jest from 25.1.0 to 25.2.0 [#342](https://github.com/vega/vega-tooltip/pull/342) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump @types/jest from 25.1.1 to 25.1.2 [#341](https://github.com/vega/vega-tooltip/pull/341) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump @rollup/plugin-node-resolve from 7.0.0 to 7.1.1 [#339](https://github.com/vega/vega-tooltip/pull/339) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump @rollup/plugin-commonjs from 11.0.1 to 11.0.2 [#334](https://github.com/vega/vega-tooltip/pull/334) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump ts-jest from 25.0.0 to 25.1.0 [#338](https://github.com/vega/vega-tooltip/pull/338) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 1.30.1 to 1.31.0 [#337](https://github.com/vega/vega-tooltip/pull/337) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-typings from 0.12.0 to 0.12.1 [#335](https://github.com/vega/vega-tooltip/pull/335) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump @rollup/plugin-json from 4.0.1 to 4.0.2 [#333](https://github.com/vega/vega-tooltip/pull/333) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump concurrently from 5.0.2 to 5.1.0 [#332](https://github.com/vega/vega-tooltip/pull/332) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 1.29.1 to 1.30.0 [#331](https://github.com/vega/vega-tooltip/pull/331) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump node-sass from 4.13.0 to 4.13.1 [#329](https://github.com/vega/vega-tooltip/pull/329) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump typescript from 3.7.4 to 3.7.5 [#330](https://github.com/vega/vega-tooltip/pull/330) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump terser from 4.6.2 to 4.6.3 [#328](https://github.com/vega/vega-tooltip/pull/328) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump @types/jest from 24.0.25 to 24.9.0 [#326](https://github.com/vega/vega-tooltip/pull/326) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-util from 1.12.1 to 1.12.2 [#327](https://github.com/vega/vega-tooltip/pull/327) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump gh-pages from 2.1.1 to 2.2.0 [#325](https://github.com/vega/vega-tooltip/pull/325) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 1.28.0 to 1.29.0 [#324](https://github.com/vega/vega-tooltip/pull/324) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump terser from 4.5.1 to 4.6.2 [#323](https://github.com/vega/vega-tooltip/pull/323) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump ts-jest from 24.2.0 to 24.3.0 [#322](https://github.com/vega/vega-tooltip/pull/322) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump terser from 4.4.3 to 4.5.1 [#321](https://github.com/vega/vega-tooltip/pull/321) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 1.27.14 to 1.28.0 [#320](https://github.com/vega/vega-tooltip/pull/320) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump @types/jest from 24.0.24 to 24.0.25 [#319](https://github.com/vega/vega-tooltip/pull/319) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump concurrently from 5.0.1 to 5.0.2 [#318](https://github.com/vega/vega-tooltip/pull/318) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump terser from 4.4.2 to 4.4.3 [#317](https://github.com/vega/vega-tooltip/pull/317) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump @types/jest from 24.0.23 to 24.0.24 [#316](https://github.com/vega/vega-tooltip/pull/316) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 1.27.13 to 1.27.14 [#315](https://github.com/vega/vega-tooltip/pull/315) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump typescript from 3.7.3 to 3.7.4 [#314](https://github.com/vega/vega-tooltip/pull/314) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-datasets from 1.28.0 to 1.29.0 [#311](https://github.com/vega/vega-tooltip/pull/311) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-util from 1.12.0 to 1.12.1 [#309](https://github.com/vega/vega-tooltip/pull/309) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 1.27.8 to 1.27.9 [#307](https://github.com/vega/vega-tooltip/pull/307) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 1.27.5 to 1.27.8 [#306](https://github.com/vega/vega-tooltip/pull/306) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump terser from 4.4.0 to 4.4.1 [#304](https://github.com/vega/vega-tooltip/pull/304) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-datasets from 1.27.0 to 1.28.0 [#305](https://github.com/vega/vega-tooltip/pull/305) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump ts-jest from 24.1.0 to 24.2.0 [#303](https://github.com/vega/vega-tooltip/pull/303) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 1.27.0 to 1.27.5 [#302](https://github.com/vega/vega-tooltip/pull/302) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-typings from 0.10.2 to 0.11.1 [#301](https://github.com/vega/vega-tooltip/pull/301) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-datasets from 1.26.0 to 1.27.0 [#299](https://github.com/vega/vega-tooltip/pull/299) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 1.26.5 to 1.27.0 [#298](https://github.com/vega/vega-tooltip/pull/298) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump @types/jest from 24.0.22 to 24.0.23 [#297](https://github.com/vega/vega-tooltip/pull/297) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump @types/jest from 24.0.20 to 24.0.22 [#296](https://github.com/vega/vega-tooltip/pull/296) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 1.26.0 to 1.26.5 [#295](https://github.com/vega/vega-tooltip/pull/295) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump typescript from 3.6.4 to 3.7.2 [#294](https://github.com/vega/vega-tooltip/pull/294) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump terser from 4.3.9 to 4.4.0 [#293](https://github.com/vega/vega-tooltip/pull/293) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump node-sass from 4.12.0 to 4.13.0 [#292](https://github.com/vega/vega-tooltip/pull/292) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 1.25.1 to 1.26.0 [#291](https://github.com/vega/vega-tooltip/pull/291) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump @types/jest from 24.0.19 to 24.0.20 [#290](https://github.com/vega/vega-tooltip/pull/290) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 1.23.1 to 1.25.1 [#288](https://github.com/vega/vega-tooltip/pull/288) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump terser from 4.3.8 to 4.3.9 [#289](https://github.com/vega/vega-tooltip/pull/289) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-util from 1.11.2 to 1.12.0 [#286](https://github.com/vega/vega-tooltip/pull/286) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-typings from 0.10.0 to 0.10.2 [#287](https://github.com/vega/vega-tooltip/pull/287) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump @types/jest from 24.0.18 to 24.0.19 [#285](https://github.com/vega/vega-tooltip/pull/285) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump typescript from 3.6.3 to 3.6.4 [#284](https://github.com/vega/vega-tooltip/pull/284) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-typings from 0.9.0 to 0.10.0 [#282](https://github.com/vega/vega-tooltip/pull/282) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump concurrently from 4.1.2 to 5.0.0 [#278](https://github.com/vega/vega-tooltip/pull/278) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-lite-dev-config from 0.2.5 to 0.3.0 [#280](https://github.com/vega/vega-tooltip/pull/280) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump terser from 4.3.4 to 4.3.8 [#283](https://github.com/vega/vega-tooltip/pull/283) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 1.22.0 to 1.23.1 [#281](https://github.com/vega/vega-tooltip/pull/281) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-datasets from 1.25.0 to 1.26.0 [#279](https://github.com/vega/vega-tooltip/pull/279) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump terser from 4.3.1 to 4.3.4 [#277](https://github.com/vega/vega-tooltip/pull/277) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 1.21.4 to 1.22.0 [#276](https://github.com/vega/vega-tooltip/pull/276) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 1.21.3 to 1.21.4 [#275](https://github.com/vega/vega-tooltip/pull/275) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-typings from 0.8.1 to 0.9.0 [#271](https://github.com/vega/vega-tooltip/pull/271) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump typescript from 3.6.2 to 3.6.3 [#274](https://github.com/vega/vega-tooltip/pull/274) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 1.21.1 to 1.21.3 [#273](https://github.com/vega/vega-tooltip/pull/273) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump ts-jest from 24.0.2 to 24.1.0 [#272](https://github.com/vega/vega-tooltip/pull/272) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump vega-util from 1.11.1 to 1.11.2 [#270](https://github.com/vega/vega-tooltip/pull/270) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump terser from 4.3.0 to 4.3.1 [#269](https://github.com/vega/vega-tooltip/pull/269) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump terser from 4.2.1 to 4.3.0 [#268](https://github.com/vega/vega-tooltip/pull/268) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 1.20.3 to 1.21.1 [#267](https://github.com/vega/vega-tooltip/pull/267) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump rollup from 1.20.1 to 1.20.2 [#266](https://github.com/vega/vega-tooltip/pull/266) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump @types/jest from 24.0.17 to 24.0.18 [#265](https://github.com/vega/vega-tooltip/pull/265) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump terser from 4.1.4 to 4.2.0 [#264](https://github.com/vega/vega-tooltip/pull/264) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump concurrently from 4.1.1 to 4.1.2 [#263](https://github.com/vega/vega-tooltip/pull/263) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump jest from 24.8.0 to 24.9.0 [#262](https://github.com/vega/vega-tooltip/pull/262) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump gh-pages from 2.1.0 to 2.1.1 [#261](https://github.com/vega/vega-tooltip/pull/261) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
- Bump terser from 4.1.3 to 4.1.4 [#260](https://github.com/vega/vega-tooltip/pull/260) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]))
#### Authors: 19
- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])
- [@dependabot[bot]](https://github.com/dependabot[bot])
- [@greenkeeper[bot]](https://github.com/greenkeeper[bot])
- [@melissachang](https://github.com/melissachang)
- Abe Rubenstein ([@sighrobot](https://github.com/sighrobot))
- Cameron Yick ([@hydrosquall](https://github.com/hydrosquall))
- Dominik Moritz ([@domoritz](https://github.com/domoritz))
- Eric Socolofsky ([@ericsoco](https://github.com/ericsoco))
- Jeffrey Heer ([@jheer](https://github.com/jheer))
- Kanit Wongsuphasawat ([@kanitw](https://github.com/kanitw))
- Ken Lin ([@kenklin](https://github.com/kenklin))
- Noon van der Silk ([@silky](https://github.com/silky))
- Robin Millette ([@millette](https://github.com/millette))
- Sam Horradarn (horradarn@yahoo-inc.com)
- siddhant ([@siddhant1](https://github.com/siddhant1))
- Sira (Sam) Horradarn ([@sirahd](https://github.com/sirahd))
- Soren Macbeth (soren@yieldbot.com)
- Yash Dev Lamba ([@ydlamba](https://github.com/ydlamba))
- Yuri Astrakhan ([@nyurik](https://github.com/nyurik)) vega-tooltip-0.33.0/LICENSE 0000664 0000000 0000000 00000002712 14464242247 0015227 0 ustar 00root root 0000000 0000000 Copyright 2016 Interactive Data Lab and contributors
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
vega-tooltip-0.33.0/README.md 0000664 0000000 0000000 00000006710 14464242247 0015503 0 ustar 00root root 0000000 0000000 # Tooltip for Vega & Vega-Lite
[](https://www.npmjs.com/package/vega-tooltip)
[](https://github.com/vega/vega-tooltip/actions)
[](https://codecov.io/gh/vega/vega-tooltip)
[](https://www.jsdelivr.com/package/npm/vega-tooltip)
[](https://github.com/prettier/prettier)
A tooltip plugin for [Vega](http://vega.github.io/vega/) and [Vega-Lite](https://vega.github.io/vega-lite/) visualizations. This plugin implements a [custom tooltip handler](https://vega.github.io/vega/docs/api/view/#view_tooltip) for Vega that uses custom HTML tooltips instead of the HTML [`title` attribute](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/title). Vega Tooltip is installed in the [Vega Editor](https://vega.github.io/editor/).

**Features**
* Renders nice tooltips for Vega and Vega-Lite charts
* Supports dark and light theme
* Renders object-valued tooltips as a table
* Supports special keys `title` (becomes the title of the tooltip) and `image` (used as the url for an embedded image)
## Demo
http://vega.github.io/vega-tooltip/
## Installing
We recommend using [Vega-Embed](https://github.com/vega/vega-embed), which already comes with this tooltip plugin.
### NPM or Yarn
Use `npm install vega-tooltip` or `yarn add vega-tooltip`.
### Using Vega-tooltip with a CDN
You can import `vega-tooltip` directly from [`jsDelivr`](https://www.jsdelivr.com/package/npm/vega-tooltip). Replace `[VERSION]` with the version that you want to use.
```html
```
## Usage and APIs
If you use [Vega-Embed](https://github.com/vega/vega-embed), you **don't need to install Vega Tooltip**! Vega Embed already comes with Vega Tooltip. You can however pass tooltip customizations.
```js
vegaEmbed("#vis", spec, {tooltip: {theme: 'dark'}})
.then(function(result) {
// result.view contains the Vega view
})
.catch(console.error);
```
If you want to use a different version of the tooltip handler, you can override the default handler with the handler from Vega Tooltip (and you need to install it separately).
```js
var handler = new vegaTooltip.Handler();
vegaEmbed("#vis", spec, {tooltip: handler.call})
.then(function(result) {
// result.view contains the Vega view
})
.catch(console.error);
```
See the [API documentation](docs/APIs.md) for details.
## Tutorials
1. [Creating Your Tooltip](docs/creating_your_tooltip.md)
2. [Customizing Your Tooltip](docs/customizing_your_tooltip.md)
## Run Instructions
1. In the project folder `vega-tooltip`, type command `yarn` to install dependencies.
2. Then, type `yarn start`. This will build the library and start a web server.
3. In your browser, navigate to `http://localhost:8000/`, where you can see various Vega-Lite and Vega visualizations with tooltip interaction.
## Publishing
To make a release, run `npm run release`.
vega-tooltip-0.33.0/babel.config.js 0000664 0000000 0000000 00000000254 14464242247 0017070 0 ustar 00root root 0000000 0000000 module.exports = {
"presets": [
[
"@babel/env",
{
"targets": {
"node": "current"
}
}
],
"@babel/typescript"
]
}; vega-tooltip-0.33.0/build-style.sh 0000775 0000000 0000000 00000000253 14464242247 0017014 0 ustar 00root root 0000000 0000000 #!/usr/bin/env bash
printf "// generated with build-style.sh\nexport default \`" > src/style.ts
yarn -s sass vega-tooltip.scss >> src/style.ts
echo "\`;" >> src/style.ts
vega-tooltip-0.33.0/demo.png 0000664 0000000 0000000 00000075077 14464242247 0015672 0 ustar 00root root 0000000 0000000 PNG
IHDR & $ίD
4iCCPICC Profile hνΫ
XSυΗρίΘ@ήLPyQ&Θά0
oHΎgΖl844υ¦’eeV€©iejifhv»έ΄2σzΜn!Χλ%Λϋ;g£ΦdΥσψxέΗgξΟΩa;;lίs ο₯/),νΛΜYεcΗ»Όα?ι
₯%ύ33ΐ‘@"\ξΛρz-ςΞΝ+5 9ΗOJΜeοζΈ[EY0>Ε±ΏΕq£0ΞΗR0Ξ±CΔuFf₯p¬δΨ'Η2ξ'σ-γLa\nΘη}J³―ΫRS\Χ§Μ:VAΈΞώ)\ΜυC?΅l(`|±Π/ͺ7$LEςL³)RΥό$0y0’|Θ1zρλL9κχΤzeyΣΚλSΙtsa~AΌ?χ~<έhPτ«ͺ@ψYZΦn¨F~YVΤΡqΌρΛ²ΒX`W5ΠcΨ/ΛΒΚίξΐέSΝεΦH5ΐ΅ΎΆμo+WXΆ€δBδFmΘέέ]&σπππ€ΆδEήδCΎδGνθ6jOώ@¨#u’@
’ΰΰΰΞ;w‘PSW
£nΤΒ©υ€^t;υ¦κC€ Ύ€T*U*΅Z‘(¦R,ΕΡO H:J’~Τ)
Ri ₯Ρ@DιιιBCi
§LAYt'€Q4ΖΠX'OwΡΊ&=Χηδδ(ςhεS½TD©d’Bf*₯2JεεεΣ¦MNχQ%Ν t?Ν’Ω4ώBsιGσιAZ@iΡ’EUU/^BKι!zΡ#τ(-§ΗθqzVΠ΄’§ιͺ¦gi^½ϊΉηΦ¬Y³ΦΡσ΄6Πτ"½DιeΪDi½B―
Ά6zΆΣzv.zvΣTC{h/½EoΣ>zφΣzώJοΡίθ ½O΅t> ΏΣtΠGτ1}BG>₯cτ§Π ϊ'€STG[}A§ι}Igι+:gυ5ύΎ‘o©ήκ;:OίS]°j€ΣE«Π%ϊ―Uύ@~€θΚ+ΏύώΙdbvΰw΄@"&‘UMΈ.T*1κΓυ6Β
_΅βͺX\+ΏΡ^/fγw£
v0b>ώ¬~0 bBώτaEΔό‘X;"Fδ6DΘuφCG+Ί!Fγ½CaΫ »FqhnmΔ$\Ύl}Ϋ6ΐΆZΠRμ
μ`ίϋ6Ψφ‘Ή
φ}h©φΗ-u’₯V4χΒΆ-υΒΡ1EKΝhξΖ―Βαΰ #½₯x8:Ψh©RG[bίZβ¨'ΧΣG]qΤίκKscFζzBs,mVμUΔΘΨ4FM_ΔΈΨ΅EKSΔ 9ωΨKK"DΘ₯B8hΝ!ΔΒ9'pΞ sηΐ9'pΞ sηΐ9'pΞ s[}NΠ|.#!iZρdyyΉ΄ΠdLS)aς<£Α[hΜO52-26,I0Μζ