pax_global_header 0000666 0000000 0000000 00000000064 14505372053 0014516 g ustar 00root root 0000000 0000000 52 comment=7cf97549941f3003b962ee340ba5b4ea25dc5cbc
vega-embed-6.23.0/ 0000775 0000000 0000000 00000000000 14505372053 0013602 5 ustar 00root root 0000000 0000000 vega-embed-6.23.0/.eslintignore 0000664 0000000 0000000 00000000144 14505372053 0016304 0 ustar 00root root 0000000 0000000 .eslintrc.js
babel.config.js
prettier.config.js
jest.config.js
rollup.config.js
build
dist
coverage
vega-embed-6.23.0/.eslintrc.js 0000664 0000000 0000000 00000003757 14505372053 0016055 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-embed-6.23.0/.github/ 0000775 0000000 0000000 00000000000 14505372053 0015142 5 ustar 00root root 0000000 0000000 vega-embed-6.23.0/.github/dependabot.yml 0000664 0000000 0000000 00000000501 14505372053 0017766 0 ustar 00root root 0000000 0000000 version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: weekly
day: sunday
time: "23:00"
timezone: PST8PDT
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
day: sunday
time: "23:00"
timezone: PST8PDT
vega-embed-6.23.0/.github/workflows/ 0000775 0000000 0000000 00000000000 14505372053 0017177 5 ustar 00root root 0000000 0000000 vega-embed-6.23.0/.github/workflows/check-pr.yml 0000664 0000000 0000000 00000000524 14505372053 0021417 0 ustar 00root root 0000000 0000000 name: "Lint PR"
on:
pull_request_target:
types:
- opened
- edited
- synchronize
permissions:
pull-requests: read
jobs:
main:
name: Validate PR title
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
vega-embed-6.23.0/.github/workflows/merge-dependabot.yml 0000664 0000000 0000000 00000000522 14505372053 0023123 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-embed-6.23.0/.github/workflows/test.yml 0000664 0000000 0000000 00000001165 14505372053 0020704 0 ustar 00root root 0000000 0000000 name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
test:
name: Test on Node
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
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-embed-6.23.0/.gitignore 0000664 0000000 0000000 00000000143 14505372053 0015570 0 ustar 00root root 0000000 0000000 .DS_Store
build
coverage/
node_modules
npm-debug.log*
src/style.ts
yarn-debug.log*
yarn-error.log*
vega-embed-6.23.0/.prettierignore 0000664 0000000 0000000 00000000114 14505372053 0016641 0 ustar 00root root 0000000 0000000 .eslintrc.js
babel.config.js
jest.config.js
prettier.config.js
tsconfig.json vega-embed-6.23.0/.release-it.json 0000664 0000000 0000000 00000000435 14505372053 0016607 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-embed-6.23.0/.vscode/ 0000775 0000000 0000000 00000000000 14505372053 0015143 5 ustar 00root root 0000000 0000000 vega-embed-6.23.0/.vscode/launch.json 0000664 0000000 0000000 00000000273 14505372053 0017312 0 ustar 00root root 0000000 0000000 {
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Attach",
"port": 9229,
"protocol": "inspector"
}
]
}
vega-embed-6.23.0/.vscode/settings.json 0000664 0000000 0000000 00000000611 14505372053 0017674 0 ustar 00root root 0000000 0000000 {
"editor.formatOnSave": true,
"[markdown]": {
"editor.formatOnSave": false
},
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"typescript.referencesCodeLens.enabled": true,
"eslint.validate": ["typescript", "typescriptreact"],
"typescript.tsdk": "node_modules/typescript/lib",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
vega-embed-6.23.0/CHANGELOG.md 0000664 0000000 0000000 00000120133 14505372053 0015413 0 ustar 00root root 0000000 0000000
# [6.23.0](https://github.com/vega/vega-embed/compare/v6.22.2...v6.23.0) (2023-09-28)
### Features
* Add new forceActionsMenu embed option ([#1242](https://github.com/vega/vega-embed/issues/1242)) ([fbbcd9e](https://github.com/vega/vega-embed/commit/fbbcd9e96881374c39674c2db586944c08ca71c8))
## [6.22.2](https://github.com/vega/vega-embed/compare/v6.22.1...v6.22.2) (2023-07-31)
## [6.22.1](https://github.com/vega/vega-embed/compare/v6.22.0...v6.22.1) (2023-04-21)
### Bug Fixes
* fix issue with broken semver version ([ac5b84c](https://github.com/vega/vega-embed/commit/ac5b84c81d02a0cdbd2a9c40a6ab7c660e6cb15a))
# [6.22.0](https://github.com/vega/vega-embed/compare/v6.21.3...v6.22.0) (2023-04-20)
### Features
* remove beemo and old IE compatibility ([#1116](https://github.com/vega/vega-embed/issues/1116)) ([c344c90](https://github.com/vega/vega-embed/commit/c344c903d63b28a3f2240b455cfe5374576709b6))
* smaller bundle and remove es5 builds since they are not really es5 builds anyway ([#1114](https://github.com/vega/vega-embed/issues/1114)) ([d4133c6](https://github.com/vega/vega-embed/commit/d4133c6500359f23a42d158283381d302d7ecd44))
* update tooltip and themes dependencies ([e1a2ae1](https://github.com/vega/vega-embed/commit/e1a2ae16b2aa9c003f574b96d0859db269d4a50c))
## [6.21.3](https://github.com/vega/vega-embed/compare/v6.21.2...v6.21.3) (2023-02-16)
## 6.21.2 (2023-02-13)
* fix: upgrade deps including themes and tooltips, fixes version issues ([ba8ba18](https://github.com/vega/vega-embed/commit/ba8ba18))
## 6.21.1 (2023-02-13)
* chore: switch to release-it ([062b8df](https://github.com/vega/vega-embed/commit/062b8df))
* chore: update release command ([4317570](https://github.com/vega/vega-embed/commit/4317570))
* chore: update release script ([d95c801](https://github.com/vega/vega-embed/commit/d95c801))
* chore(deps-dev): bump @auto-it/conventional-commits from 10.37.6 to 10.38.5 (#1062) ([e6ba266](https://github.com/vega/vega-embed/commit/e6ba266)), closes [#1062](https://github.com/vega/vega-embed/issues/1062)
* chore(deps-dev): bump @auto-it/first-time-contributor from 10.37.6 to 10.38.5 (#1060) ([64580fb](https://github.com/vega/vega-embed/commit/64580fb)), closes [#1060](https://github.com/vega/vega-embed/issues/1060)
* chore(deps-dev): bump auto from 10.37.6 to 10.38.5 (#1059) ([d66c0e0](https://github.com/vega/vega-embed/commit/d66c0e0)), closes [#1059](https://github.com/vega/vega-embed/issues/1059)
* chore(deps-dev): bump jest-environment-jsdom from 29.3.1 to 29.4.1 (#1057) ([f3773f9](https://github.com/vega/vega-embed/commit/f3773f9)), closes [#1057](https://github.com/vega/vega-embed/issues/1057)
* chore(deps-dev): bump rollup from 3.10.1 to 3.12.0 (#1054) ([0694d2d](https://github.com/vega/vega-embed/commit/0694d2d)), closes [#1054](https://github.com/vega/vega-embed/issues/1054)
* chore(deps-dev): bump rollup-plugin-ts from 3.1.1 to 3.2.0 (#1056) ([5fa509d](https://github.com/vega/vega-embed/commit/5fa509d)), closes [#1056](https://github.com/vega/vega-embed/issues/1056)
* chore(deps-dev): bump sass from 1.57.1 to 1.58.0 (#1058) ([c4d7afc](https://github.com/vega/vega-embed/commit/c4d7afc)), closes [#1058](https://github.com/vega/vega-embed/issues/1058)
* chore(deps-dev): bump typescript from 4.9.4 to 4.9.5 (#1061) ([a3df837](https://github.com/vega/vega-embed/commit/a3df837)), closes [#1061](https://github.com/vega/vega-embed/issues/1061)
* chore(deps): bump tslib from 2.4.1 to 2.5.0 (#1055) ([e0b050a](https://github.com/vega/vega-embed/commit/e0b050a)), closes [#1055](https://github.com/vega/vega-embed/issues/1055)
## 6.21.0 (2022-06-13)
* Bump version to: 6.21.0 [skip ci] ([7e7a0df](https://github.com/vega/vega-embed/commit/7e7a0df))
* Update CHANGELOG.md [skip ci] ([a897233](https://github.com/vega/vega-embed/commit/a897233))
## 6.20.8 (2022-02-14)
* "Bump version to: 6.20.8 [skip ci]" ([71dccd9](https://github.com/vega/vega-embed/commit/71dccd9))
* Update CHANGELOG.md [skip ci] ([83cacf6](https://github.com/vega/vega-embed/commit/83cacf6))
## 6.20.7 (2022-02-10)
* "Bump version to: 6.20.7 [skip ci]" ([05b5337](https://github.com/vega/vega-embed/commit/05b5337))
* Update CHANGELOG.md [skip ci] ([2f9bf76](https://github.com/vega/vega-embed/commit/2f9bf76))
## 6.20.6 (2022-02-09)
* "Bump version to: 6.20.6 [skip ci]" ([cd5bb74](https://github.com/vega/vega-embed/commit/cd5bb74))
* Update CHANGELOG.md [skip ci] ([9737085](https://github.com/vega/vega-embed/commit/9737085))
## 6.20.5 (2021-11-30)
* "Bump version to: 6.20.5 [skip ci]" ([1f5d676](https://github.com/vega/vega-embed/commit/1f5d676))
* Update CHANGELOG.md [skip ci] ([45df6b1](https://github.com/vega/vega-embed/commit/45df6b1))
## 6.20.4 (2021-11-26)
* "Bump version to: 6.20.4 [skip ci]" ([c43f95f](https://github.com/vega/vega-embed/commit/c43f95f))
* Update CHANGELOG.md [skip ci] ([c0bacb9](https://github.com/vega/vega-embed/commit/c0bacb9))
## 6.20.3 (2021-11-26)
* "Bump version to: 6.20.3 [skip ci]" ([f01f30c](https://github.com/vega/vega-embed/commit/f01f30c))
* Update CHANGELOG.md [skip ci] ([90e748a](https://github.com/vega/vega-embed/commit/90e748a))
## 6.20.2 (2021-11-16)
* "Bump version to: 6.20.2 [skip ci]" ([607c2de](https://github.com/vega/vega-embed/commit/607c2de))
* Update CHANGELOG.md [skip ci] ([9946498](https://github.com/vega/vega-embed/commit/9946498))
## 6.20.1 (2021-11-15)
* "Bump version to: 6.20.1 [skip ci]" ([c914d08](https://github.com/vega/vega-embed/commit/c914d08))
* Update CHANGELOG.md [skip ci] ([a8e1bb5](https://github.com/vega/vega-embed/commit/a8e1bb5))
## 6.20.0 (2021-10-27)
* "Bump version to: 6.20.0 [skip ci]" ([52c4895](https://github.com/vega/vega-embed/commit/52c4895))
* Update CHANGELOG.md [skip ci] ([6541e8f](https://github.com/vega/vega-embed/commit/6541e8f))
## 6.19.1 (2021-09-21)
* "Bump version to: 6.19.1 [skip ci]" ([b8135e2](https://github.com/vega/vega-embed/commit/b8135e2))
* Update CHANGELOG.md [skip ci] ([622fc8b](https://github.com/vega/vega-embed/commit/622fc8b))
## 6.19.0 (2021-09-17)
* "Bump version to: 6.19.0 [skip ci]" ([b074b2e](https://github.com/vega/vega-embed/commit/b074b2e))
* Update CHANGELOG.md [skip ci] ([4d6475c](https://github.com/vega/vega-embed/commit/4d6475c))
# v6.21.0 (Mon Jun 13 2022)
:tada: This release contains work from a new contributor! :tada:
Thank you, Zachary Bys ([@ZacharyBys](https://github.com/ZacharyBys)), for all your work!
#### 🚀 Enhancement
- feat: Expose expression functions [#935](https://github.com/vega/vega-embed/pull/935) ([@ZacharyBys](https://github.com/ZacharyBys) [@kanitw](https://github.com/kanitw))
#### 🐛 Bug Fix
- chore: upgrade TypeScript to 4.7 [#929](https://github.com/vega/vega-embed/pull/929) ([@domoritz](https://github.com/domoritz))
- chore: upgrade deps [#871](https://github.com/vega/vega-embed/pull/871) ([@domoritz](https://github.com/domoritz))
#### 🔩 Dependency Updates
- chore(deps-dev): bump sass from 1.52.2 to 1.52.3 [#937](https://github.com/vega/vega-embed/pull/937) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.75.5 to 2.75.6 [#938](https://github.com/vega/vega-embed/pull/938) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup-plugin-ts from 3.0.1 to 3.0.2 [#939](https://github.com/vega/vega-embed/pull/939) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.75.4 to 2.75.5 [#930](https://github.com/vega/vega-embed/pull/930) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump typescript from 4.7.2 to 4.7.3 [#931](https://github.com/vega/vega-embed/pull/931) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.52.1 to 1.52.2 [#932](https://github.com/vega/vega-embed/pull/932) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup-plugin-ts from 3.0.0 to 3.0.1 [#933](https://github.com/vega/vega-embed/pull/933) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.74.1 to 2.75.3 [#924](https://github.com/vega/vega-embed/pull/924) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/first-time-contributor from 10.37.0 to 10.37.1 [#923](https://github.com/vega/vega-embed/pull/923) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump auto from 10.37.0 to 10.37.1 [#926](https://github.com/vega/vega-embed/pull/926) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/conventional-commits from 10.37.0 to 10.37.1 [#927](https://github.com/vega/vega-embed/pull/927) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.73.0 to 2.74.1 [#920](https://github.com/vega/vega-embed/pull/920) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump browser-sync from 2.27.9 to 2.27.10 [#921](https://github.com/vega/vega-embed/pull/921) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/conventional-commits from 10.36.5 to 10.37.0 [#922](https://github.com/vega/vega-embed/pull/922) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump concurrently from 7.2.0 to 7.2.1 [#915](https://github.com/vega/vega-embed/pull/915) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.51.0 to 1.52.1 [#916](https://github.com/vega/vega-embed/pull/916) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @babel/plugin-transform-runtime from 7.17.10 to 7.18.0 [#917](https://github.com/vega/vega-embed/pull/917) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/first-time-contributor from 10.36.5 to 10.37.0 [#918](https://github.com/vega/vega-embed/pull/918) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump auto from 10.36.5 to 10.37.0 [#919](https://github.com/vega/vega-embed/pull/919) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.72.1 to 2.73.0 [#914](https://github.com/vega/vega-embed/pull/914) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump concurrently from 7.1.0 to 7.2.0 [#912](https://github.com/vega/vega-embed/pull/912) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.71.1 to 2.72.1 [#911](https://github.com/vega/vega-embed/pull/911) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 13.2.1 to 13.3.0 [#910](https://github.com/vega/vega-embed/pull/910) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.70.2 to 2.71.1 [#904](https://github.com/vega/vega-embed/pull/904) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.50.1 to 1.51.0 [#906](https://github.com/vega/vega-embed/pull/906) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump typescript from 4.6.3 to 4.6.4 [#907](https://github.com/vega/vega-embed/pull/907) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump jest-canvas-mock from 2.3.1 to 2.4.0 [#908](https://github.com/vega/vega-embed/pull/908) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump ejs from 3.1.6 to 3.1.7 [#909](https://github.com/vega/vega-embed/pull/909) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @babel/plugin-transform-runtime from 7.17.0 to 7.17.10 [#905](https://github.com/vega/vega-embed/pull/905) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @rollup/plugin-commonjs from 21.1.0 to 22.0.0 [#900](https://github.com/vega/vega-embed/pull/900) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.50.0 to 1.50.1 [#901](https://github.com/vega/vega-embed/pull/901) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump codecov/codecov-action from 3.0.0 to 3.1.0 [#902](https://github.com/vega/vega-embed/pull/902) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump tslib from 2.3.1 to 2.4.0 [#903](https://github.com/vega/vega-embed/pull/903) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.70.1 to 2.70.2 [#898](https://github.com/vega/vega-embed/pull/898) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @rollup/plugin-commonjs from 21.0.3 to 21.1.0 [#895](https://github.com/vega/vega-embed/pull/895) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump semver from 7.3.6 to 7.3.7 [#896](https://github.com/vega/vega-embed/pull/896) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 13.1.3 to 13.2.1 [#897](https://github.com/vega/vega-embed/pull/897) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup-plugin-ts from 2.0.5 to 2.0.7 [#899](https://github.com/vega/vega-embed/pull/899) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump codecov/codecov-action from 2.1.0 to 3.0.0 [#894](https://github.com/vega/vega-embed/pull/894) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump semver from 7.3.5 to 7.3.6 [#892](https://github.com/vega/vega-embed/pull/892) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.49.11 to 1.50.0 [#893](https://github.com/vega/vega-embed/pull/893) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.49.9 to 1.49.11 [#890](https://github.com/vega/vega-embed/pull/890) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump concurrently from 7.0.0 to 7.1.0 [#891](https://github.com/vega/vega-embed/pull/891) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump minimist from 1.2.5 to 1.2.6 [#889](https://github.com/vega/vega-embed/pull/889) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump fast-json-patch from 3.1.0 to 3.1.1 [#885](https://github.com/vega/vega-embed/pull/885) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @rollup/plugin-commonjs from 21.0.2 to 21.0.3 [#886](https://github.com/vega/vega-embed/pull/886) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump typescript from 4.6.2 to 4.6.3 [#887](https://github.com/vega/vega-embed/pull/887) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump vega from 5.22.0 to 5.22.1 [#888](https://github.com/vega/vega-embed/pull/888) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/first-time-contributor from 10.34.1 to 10.36.5 [#881](https://github.com/vega/vega-embed/pull/881) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump auto from 10.34.1 to 10.36.5 [#882](https://github.com/vega/vega-embed/pull/882) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/conventional-commits from 10.34.1 to 10.36.5 [#883](https://github.com/vega/vega-embed/pull/883) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump browser-sync from 2.27.8 to 2.27.9 [#884](https://github.com/vega/vega-embed/pull/884) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump vega from 5.21.0 to 5.22.0 [#878](https://github.com/vega/vega-embed/pull/878) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.70.0 to 2.70.1 [#880](https://github.com/vega/vega-embed/pull/880) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump browser-sync from 2.27.7 to 2.27.8 [#879](https://github.com/vega/vega-embed/pull/879) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.69.1 to 2.70.0 [#875](https://github.com/vega/vega-embed/pull/875) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump node-fetch from 2.6.1 to 2.6.7 [#877](https://github.com/vega/vega-embed/pull/877) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump auto from 10.32.6 to 10.34.1 [#872](https://github.com/vega/vega-embed/pull/872) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/first-time-contributor from 10.32.6 to 10.34.1 [#873](https://github.com/vega/vega-embed/pull/873) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/conventional-commits from 10.32.6 to 10.34.1 [#874](https://github.com/vega/vega-embed/pull/874) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump actions/checkout from 2 to 3 [#876](https://github.com/vega/vega-embed/pull/876) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.49.8 to 1.49.9 [#866](https://github.com/vega/vega-embed/pull/866) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @rollup/plugin-commonjs from 21.0.1 to 21.0.2 [#867](https://github.com/vega/vega-embed/pull/867) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.67.3 to 2.68.0 [#868](https://github.com/vega/vega-embed/pull/868) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump actions/setup-node from 2.5.1 to 3 [#869](https://github.com/vega/vega-embed/pull/869) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.67.2 to 2.67.3 [#864](https://github.com/vega/vega-embed/pull/864) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.49.7 to 1.49.8 [#865](https://github.com/vega/vega-embed/pull/865) ([@dependabot[bot]](https://github.com/dependabot[bot]))
#### Authors: 4
- [@dependabot[bot]](https://github.com/dependabot[bot])
- Dominik Moritz ([@domoritz](https://github.com/domoritz))
- Kanit Wongsuphasawat ([@kanitw](https://github.com/kanitw))
- Zachary Bys ([@ZacharyBys](https://github.com/ZacharyBys))
---
# v6.20.8 (Mon Feb 14 2022)
#### 🐛 Bug Fix
- fix: don't allow defaultStyle in usermeta [#861](https://github.com/vega/vega-embed/pull/861) ([@domoritz](https://github.com/domoritz))
#### 🔩 Dependency Updates
- chore(deps-dev): bump rollup from 2.67.1 to 2.67.2 [#862](https://github.com/vega/vega-embed/pull/862) ([@dependabot[bot]](https://github.com/dependabot[bot]))
#### Authors: 2
- [@dependabot[bot]](https://github.com/dependabot[bot])
- Dominik Moritz ([@domoritz](https://github.com/domoritz))
---
# v6.20.7 (Thu Feb 10 2022)
#### 🐛 Bug Fix
- fix: use innerHTML to set style to avoid
[#858](https://github.com/vega/vega-embed/pull/858) ([@domoritz](https://github.com/domoritz))
#### Authors: 1
- Dominik Moritz ([@domoritz](https://github.com/domoritz))
---
# v6.20.6 (Wed Feb 09 2022)
#### 🐛 Bug Fix
- fix: add visible focus state to actions menu for A11y [#841](https://github.com/vega/vega-embed/pull/841) ([@domoritz](https://github.com/domoritz))
#### 🔩 Dependency Updates
- chore(deps-dev): bump rollup from 2.66.1 to 2.67.1 [#853](https://github.com/vega/vega-embed/pull/853) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @babel/plugin-transform-runtime from 7.16.10 to 7.17.0 [#854](https://github.com/vega/vega-embed/pull/854) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.49.0 to 1.49.7 [#855](https://github.com/vega/vega-embed/pull/855) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.66.0 to 2.66.1 [#851](https://github.com/vega/vega-embed/pull/851) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump vega-tooltip from 0.27.0 to 0.28.0 [#852](https://github.com/vega/vega-embed/pull/852) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.64.0 to 2.66.0 [#849](https://github.com/vega/vega-embed/pull/849) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/conventional-commits from 10.32.5 to 10.32.6 [#850](https://github.com/vega/vega-embed/pull/850) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump auto from 10.32.5 to 10.32.6 [#844](https://github.com/vega/vega-embed/pull/844) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.48.0 to 1.49.0 [#845](https://github.com/vega/vega-embed/pull/845) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @babel/plugin-transform-runtime from 7.16.8 to 7.16.10 [#846](https://github.com/vega/vega-embed/pull/846) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump typescript from 4.5.4 to 4.5.5 [#847](https://github.com/vega/vega-embed/pull/847) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/first-time-contributor from 10.32.5 to 10.32.6 [#848](https://github.com/vega/vega-embed/pull/848) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.63.0 to 2.64.0 [#836](https://github.com/vega/vega-embed/pull/836) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.47.0 to 1.48.0 [#837](https://github.com/vega/vega-embed/pull/837) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @babel/plugin-transform-runtime from 7.16.7 to 7.16.8 [#838](https://github.com/vega/vega-embed/pull/838) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump follow-redirects from 1.14.5 to 1.14.7 [#835](https://github.com/vega/vega-embed/pull/835) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 13.1.2 to 13.1.3 [#831](https://github.com/vega/vega-embed/pull/831) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.45.2 to 1.47.0 [#832](https://github.com/vega/vega-embed/pull/832) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup-plugin-ts from 2.0.4 to 2.0.5 [#833](https://github.com/vega/vega-embed/pull/833) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.62.0 to 2.63.0 [#834](https://github.com/vega/vega-embed/pull/834) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump concurrently from 6.5.1 to 7.0.0 [#827](https://github.com/vega/vega-embed/pull/827) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @babel/plugin-transform-runtime from 7.16.5 to 7.16.7 [#826](https://github.com/vega/vega-embed/pull/826) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.45.1 to 1.45.2 [#828](https://github.com/vega/vega-embed/pull/828) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump actions/setup-node from 2.5.0 to 2.5.1 [#829](https://github.com/vega/vega-embed/pull/829) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 13.1.1 to 13.1.2 [#830](https://github.com/vega/vega-embed/pull/830) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.45.0 to 1.45.1 [#823](https://github.com/vega/vega-embed/pull/823) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.61.1 to 2.62.0 [#824](https://github.com/vega/vega-embed/pull/824) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @babel/plugin-transform-runtime from 7.16.4 to 7.16.5 [#818](https://github.com/vega/vega-embed/pull/818) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump typescript from 4.5.3 to 4.5.4 [#819](https://github.com/vega/vega-embed/pull/819) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 13.0.6 to 13.1.1 [#820](https://github.com/vega/vega-embed/pull/820) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.60.2 to 2.61.1 [#821](https://github.com/vega/vega-embed/pull/821) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump concurrently from 6.4.0 to 6.5.1 [#822](https://github.com/vega/vega-embed/pull/822) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump auto from 10.32.3 to 10.32.5 [#812](https://github.com/vega/vega-embed/pull/812) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/first-time-contributor from 10.32.3 to 10.32.5 [#813](https://github.com/vega/vega-embed/pull/813) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/conventional-commits from 10.32.3 to 10.32.5 [#814](https://github.com/vega/vega-embed/pull/814) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.44.0 to 1.45.0 [#815](https://github.com/vega/vega-embed/pull/815) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump typescript from 4.5.2 to 4.5.3 [#816](https://github.com/vega/vega-embed/pull/816) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.43.5 to 1.44.0 [#809](https://github.com/vega/vega-embed/pull/809) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.60.1 to 2.60.2 [#810](https://github.com/vega/vega-embed/pull/810) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump actions/setup-node from 2.4.1 to 2.5.0 [#811](https://github.com/vega/vega-embed/pull/811) ([@dependabot[bot]](https://github.com/dependabot[bot]))
#### Authors: 2
- [@dependabot[bot]](https://github.com/dependabot[bot])
- Dominik Moritz ([@domoritz](https://github.com/domoritz))
---
# v6.20.5 (Tue Nov 30 2021)
#### 🐛 Bug Fix
- fix: try bundledDependencies [#807](https://github.com/vega/vega-embed/pull/807) ([@domoritz](https://github.com/domoritz))
#### 🔩 Dependency Updates
- chore(deps-dev): bump vega-lite from 5.1.1 to 5.2.0 [#804](https://github.com/vega/vega-embed/pull/804) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump sass from 1.43.4 to 1.43.5 [#805](https://github.com/vega/vega-embed/pull/805) ([@dependabot[bot]](https://github.com/dependabot[bot]))
#### Authors: 2
- [@dependabot[bot]](https://github.com/dependabot[bot])
- Dominik Moritz ([@domoritz](https://github.com/domoritz))
---
# v6.20.4 (Fri Nov 26 2021)
#### 🐛 Bug Fix
- fix: use npm for postinstall [#802](https://github.com/vega/vega-embed/pull/802) ([@domoritz](https://github.com/domoritz))
#### Authors: 1
- Dominik Moritz ([@domoritz](https://github.com/domoritz))
---
# v6.20.3 (Fri Nov 26 2021)
#### 🐛 Bug Fix
- fix: inline yallist iterator patch [#800](https://github.com/vega/vega-embed/pull/800) ([@domoritz](https://github.com/domoritz))
- chore: upgrade deps [#798](https://github.com/vega/vega-embed/pull/798) ([@domoritz](https://github.com/domoritz))
- ci: simplify publishing [#795](https://github.com/vega/vega-embed/pull/795) ([@domoritz](https://github.com/domoritz))
#### Authors: 1
- Dominik Moritz ([@domoritz](https://github.com/domoritz))
---
# v6.20.2 (Tue Nov 16 2021)
#### 🐛 Bug Fix
- fix: update style generation script [#793](https://github.com/vega/vega-embed/pull/793) ([@domoritz](https://github.com/domoritz))
#### Authors: 1
- Dominik Moritz ([@domoritz](https://github.com/domoritz))
---
# v6.20.1 (Mon Nov 15 2021)
#### 🐛 Bug Fix
- fix: fix build with semver [#790](https://github.com/vega/vega-embed/pull/790) ([@domoritz](https://github.com/domoritz))
- test: no warnings when versions are compatible [#789](https://github.com/vega/vega-embed/pull/789) ([@domoritz](https://github.com/domoritz))
- chore: upgrade deps [#788](https://github.com/vega/vega-embed/pull/788) ([@domoritz](https://github.com/domoritz))
- chore: upgrade deps [#785](https://github.com/vega/vega-embed/pull/785) ([@domoritz](https://github.com/domoritz))
- chore: switch to new sass version [#784](https://github.com/vega/vega-embed/pull/784) ([@domoritz](https://github.com/domoritz))
- style: apply some code style improvements [#783](https://github.com/vega/vega-embed/pull/783) ([@domoritz](https://github.com/domoritz))
- ci: use node 16 [#781](https://github.com/vega/vega-embed/pull/781) ([@domoritz](https://github.com/domoritz))
#### 🔩 Dependency Updates
- chore(deps-dev): bump concurrently from 6.3.0 to 6.4.0 [#786](https://github.com/vega/vega-embed/pull/786) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.59.0 to 2.60.0 [#787](https://github.com/vega/vega-embed/pull/787) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.58.3 to 2.59.0 [#782](https://github.com/vega/vega-embed/pull/782) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump vega-lite-dev-config from 0.18.1 to 0.19.0 [#779](https://github.com/vega/vega-embed/pull/779) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.58.1 to 2.58.3 [#778](https://github.com/vega/vega-embed/pull/778) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/conventional-commits from 10.32.1 to 10.32.2 [#774](https://github.com/vega/vega-embed/pull/774) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump auto from 10.32.1 to 10.32.2 [#775](https://github.com/vega/vega-embed/pull/775) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/first-time-contributor from 10.32.1 to 10.32.2 [#776](https://github.com/vega/vega-embed/pull/776) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump browser-sync from 2.27.5 to 2.27.7 [#777](https://github.com/vega/vega-embed/pull/777) ([@dependabot[bot]](https://github.com/dependabot[bot]))
#### Authors: 2
- [@dependabot[bot]](https://github.com/dependabot[bot])
- Dominik Moritz ([@domoritz](https://github.com/domoritz))
---
# v6.20.0 (Wed Oct 27 2021)
#### 🚀 Enhancement
- feat: export version [#772](https://github.com/vega/vega-embed/pull/772) ([@domoritz](https://github.com/domoritz))
#### 🔩 Dependency Updates
- chore(deps-dev): bump @rollup/plugin-commonjs from 21.0.0 to 21.0.1 [#768](https://github.com/vega/vega-embed/pull/768) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.58.0 to 2.58.1 [#769](https://github.com/vega/vega-embed/pull/769) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @types/semver from 7.3.8 to 7.3.9 [#770](https://github.com/vega/vega-embed/pull/770) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 13.0.5 to 13.0.6 [#771](https://github.com/vega/vega-embed/pull/771) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump typescript from 4.4.3 to 4.4.4 [#766](https://github.com/vega/vega-embed/pull/766) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @rollup/plugin-commonjs from 20.0.0 to 21.0.0 [#757](https://github.com/vega/vega-embed/pull/757) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump actions/setup-node from 2.4.0 to 2.4.1 [#756](https://github.com/vega/vega-embed/pull/756) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump auto from 10.32.0 to 10.32.1 [#758](https://github.com/vega/vega-embed/pull/758) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump concurrently from 6.2.1 to 6.3.0 [#759](https://github.com/vega/vega-embed/pull/759) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump vega-lite-dev-config from 0.18.0 to 0.18.1 [#760](https://github.com/vega/vega-embed/pull/760) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/conventional-commits from 10.32.0 to 10.32.1 [#761](https://github.com/vega/vega-embed/pull/761) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.57.0 to 2.58.0 [#762](https://github.com/vega/vega-embed/pull/762) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @auto-it/first-time-contributor from 10.32.0 to 10.32.1 [#763](https://github.com/vega/vega-embed/pull/763) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 13.0.4 to 13.0.5 [#753](https://github.com/vega/vega-embed/pull/753) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump vega from 5.20.2 to 5.21.0 [#754](https://github.com/vega/vega-embed/pull/754) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.56.3 to 2.57.0 [#755](https://github.com/vega/vega-embed/pull/755) ([@dependabot[bot]](https://github.com/dependabot[bot]))
#### Authors: 2
- [@dependabot[bot]](https://github.com/dependabot[bot])
- Dominik Moritz ([@domoritz](https://github.com/domoritz))
---
# v6.19.1 (Tue Sep 21 2021)
#### 🐛 Bug Fix
- fix: add missing interpreter dependency [#751](https://github.com/vega/vega-embed/pull/751) ([@domoritz](https://github.com/domoritz))
#### Authors: 1
- Dominik Moritz ([@domoritz](https://github.com/domoritz))
---
# v6.19.0 (Fri Sep 17 2021)
:tada: This release contains work from a new contributor! :tada:
Thank you, Cameron Yick ([@hydrosquall](https://github.com/hydrosquall)), for all your work!
#### 🚀 Enhancement
- feat: add vega interpreter as dependency and support custom interpreter [#747](https://github.com/vega/vega-embed/pull/747) ([@domoritz](https://github.com/domoritz))
#### 🐛 Bug Fix
- chore: set up auto for versioning/release management [#749](https://github.com/vega/vega-embed/pull/749) ([@hydrosquall](https://github.com/hydrosquall))
#### 🔩 Dependency Updates
- chore(deps): bump codecov/codecov-action from 2.0.3 to 2.1.0 [#748](https://github.com/vega/vega-embed/pull/748) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump typescript from 4.4.2 to 4.4.3 [#745](https://github.com/vega/vega-embed/pull/745) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump vega-lite from 5.1.0 to 5.1.1 [#746](https://github.com/vega/vega-embed/pull/746) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump object-path from 0.11.5 to 0.11.7 [#744](https://github.com/vega/vega-embed/pull/744) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump tar from 6.1.3 to 6.1.11 [#743](https://github.com/vega/vega-embed/pull/743) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump codecov/codecov-action from 2.0.2 to 2.0.3 [#741](https://github.com/vega/vega-embed/pull/741) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump typescript from 4.3.5 to 4.4.2 [#742](https://github.com/vega/vega-embed/pull/742) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.56.2 to 2.56.3 [#740](https://github.com/vega/vega-embed/pull/740) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump tslib from 2.3.0 to 2.3.1 [#737](https://github.com/vega/vega-embed/pull/737) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.56.1 to 2.56.2 [#738](https://github.com/vega/vega-embed/pull/738) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump fast-json-patch from 3.0.0-1 to 3.1.0 [#739](https://github.com/vega/vega-embed/pull/739) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump actions/setup-node from 2.3.0 to 2.4.0 [#734](https://github.com/vega/vega-embed/pull/734) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.55.1 to 2.56.1 [#735](https://github.com/vega/vega-embed/pull/735) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump concurrently from 6.2.0 to 6.2.1 [#736](https://github.com/vega/vega-embed/pull/736) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump tar from 6.1.0 to 6.1.3 [#731](https://github.com/vega/vega-embed/pull/731) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @rollup/plugin-commonjs from 19.0.1 to 20.0.0 [#729](https://github.com/vega/vega-embed/pull/729) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.54.0 to 2.55.1 [#727](https://github.com/vega/vega-embed/pull/727) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump browser-sync from 2.27.4 to 2.27.5 [#728](https://github.com/vega/vega-embed/pull/728) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump vega-tooltip from 0.26.0 to 0.27.0 [#730](https://github.com/vega/vega-embed/pull/730) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.53.2 to 2.54.0 [#721](https://github.com/vega/vega-embed/pull/721) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @types/semver from 7.3.7 to 7.3.8 [#722](https://github.com/vega/vega-embed/pull/722) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 13.0.2 to 13.0.4 [#723](https://github.com/vega/vega-embed/pull/723) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump codecov/codecov-action from 1 to 2.0.2 [#724](https://github.com/vega/vega-embed/pull/724) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump actions/setup-node from 2.2.0 to 2.3.0 [#725](https://github.com/vega/vega-embed/pull/725) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @rollup/plugin-node-resolve from 13.0.0 to 13.0.2 [#716](https://github.com/vega/vega-embed/pull/716) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @rollup/plugin-commonjs from 19.0.0 to 19.0.1 [#717](https://github.com/vega/vega-embed/pull/717) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump del-cli from 4.0.0 to 4.0.1 [#718](https://github.com/vega/vega-embed/pull/718) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump del-cli from 3.0.1 to 4.0.0 [#701](https://github.com/vega/vega-embed/pull/701) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.50.5 to 2.51.0 [#697](https://github.com/vega/vega-embed/pull/697) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump typescript from 4.2.4 to 4.3.2 [#694](https://github.com/vega/vega-embed/pull/694) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump concurrently from 6.1.0 to 6.2.0 [#696](https://github.com/vega/vega-embed/pull/696) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.49.0 to 2.50.5 [#695](https://github.com/vega/vega-embed/pull/695) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps): bump ws from 7.4.5 to 7.4.6 [#693](https://github.com/vega/vega-embed/pull/693) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.48.0 to 2.49.0 [#692](https://github.com/vega/vega-embed/pull/692) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump rollup from 2.46.0 to 2.48.0 [#690](https://github.com/vega/vega-embed/pull/690) ([@dependabot[bot]](https://github.com/dependabot[bot]))
- chore(deps-dev): bump @types/semver from 7.3.5 to 7.3.6 [#691](https://github.com/vega/vega-embed/pull/691) ([@dependabot[bot]](https://github.com/dependabot[bot]))
#### Authors: 3
- [@dependabot[bot]](https://github.com/dependabot[bot])
- Cameron Yick ([@hydrosquall](https://github.com/hydrosquall))
- Dominik Moritz ([@domoritz](https://github.com/domoritz)) vega-embed-6.23.0/LICENSE 0000664 0000000 0000000 00000002770 14505372053 0014615 0 ustar 00root root 0000000 0000000 Copyright (c) 2015, University of Washington Interactive Data Lab
All rights reserved.
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 OWNER 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-embed-6.23.0/README.md 0000664 0000000 0000000 00000041050 14505372053 0015061 0 ustar 00root root 0000000 0000000 # Vega-Embed
[](https://www.npmjs.com/package/vega-embed)
[](https://www.jsdelivr.com/package/npm/vega-embed)
[](https://github.com/vega/vega-embed/actions)
[](https://codecov.io/gh/vega/vega-embed)
[](https://github.com/prettier/prettier)
[Vega-Embed](http://github.com/vega/vega-embed) makes it easy to embed interactive [Vega](https://vega.github.io/vega) and [Vega-Lite](https://vega.github.io/vega-lite) views into web pages. With Vega Embed, you can:
- Load Vega/Vega-Lite specs from source text, parsed JSON, or URLs.
- Patch Vega specs (even ones generated from Vega-Lite) to add additional functionality; for example, see [Rotating Earth](https://observablehq.com/@domoritz/rotating-earth).
- Add action links such as "View Source" and "Open in Vega Editor".
- Includes [Vega Tooltip](https://github.com/vega/vega-tooltip).
- Includes [Vega Themes](https://github.com/vega/vega-themes). **Experimental: themes are not stable yet**
**Vega-Lite works well with [Observable](https://beta.observablehq.com/). Learn how to use it in [our example notebook](https://beta.observablehq.com/@domoritz/hello-vega-embed).**
## Basic Examples
### Directly in the Browser
You can import Vega-Embed from a local copy or (as shown below) [from jsDelivr](https://www.jsdelivr.com/package/npm/vega-embed). Please replace `[VERSION]` with the correct [Vega](https://www.jsdelivr.com/package/npm/vega), [Vega-Lite](https://www.jsdelivr.com/package/npm/vega-lite), and [Vega-Embed](https://www.jsdelivr.com/package/npm/vega-embed) versions. We recommend that you specify the major versions (`vega@5`, `vega-lite@5`, `vega-embed@6`).
```html