├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── auto-release.yml │ ├── automerge.yml │ ├── build.yml │ ├── codeql-analysis.yml │ └── npm-publish-github-packages.yml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg ├── post-merge └── pre-commit ├── .npmrc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __tests__ ├── index.spec.tsx ├── plots │ ├── area.spec.tsx │ ├── bar.spec.tsx │ ├── bidirectional-bar.spec.tsx │ ├── box.spec.tsx │ ├── bullet.spec.tsx │ ├── chord.spec.tsx │ ├── circle-packing-data.json │ ├── circle-packing.spec.tsx │ ├── column.spec.tsx │ ├── dual-axes.spec.tsx │ ├── facet.spec.tsx │ ├── funnel.spec.tsx │ ├── guage.spec.tsx │ ├── heatmap.spec.tsx │ ├── histogram.spec.tsx │ ├── line.spec.tsx │ ├── liquid.spec.tsx │ ├── mix.spec.tsx │ ├── multi-view.spec.tsx │ ├── pie.spec.tsx │ ├── progress.spec.tsx │ ├── radar.spec.tsx │ ├── radial-bar.spec.tsx │ ├── ring-progress.spec.tsx │ ├── rose.spec.tsx │ ├── sankey.spec.tsx │ ├── scatter.spec.tsx │ ├── stock.spec.tsx │ ├── sunburst-data.json │ ├── sunburst.spec.tsx │ ├── tiny-area.spec.tsx │ ├── tiny-column.spec.tsx │ ├── tiny-line.spec.tsx │ ├── treemap.spec.tsx │ ├── venn.spec.tsx │ ├── violin.spec.tsx │ ├── waterfall.spec.tsx │ └── word-cloud.spec.tsx └── setups │ ├── url.js │ └── worker.js ├── assets └── logo.svg ├── babel.config.js ├── commitlint.config.js ├── docs ├── .vitepress │ └── config.mts ├── demo │ └── index.md ├── guide │ └── index.md ├── index.md └── public │ └── logo.svg ├── jest.config.js ├── package-lock.json ├── package.json ├── scripts └── sync.js ├── src ├── components │ └── base.tsx ├── index.ts ├── plots │ ├── area │ │ └── index.tsx │ ├── bar │ │ └── index.tsx │ ├── bidirectional-bar │ │ └── index.tsx │ ├── box │ │ └── index.tsx │ ├── bullet │ │ └── index.tsx │ ├── chord │ │ └── index.tsx │ ├── circle-packing │ │ └── index.tsx │ ├── column │ │ └── index.tsx │ ├── dual-axes │ │ └── index.tsx │ ├── facet │ │ └── index.tsx │ ├── funnel │ │ └── index.tsx │ ├── gauge │ │ └── index.tsx │ ├── heatmap │ │ └── index.tsx │ ├── histogram │ │ └── index.tsx │ ├── line │ │ └── index.tsx │ ├── liquid │ │ └── index.tsx │ ├── mix │ │ └── index.tsx │ ├── multi-view │ │ └── index.tsx │ ├── pie │ │ └── index.tsx │ ├── progress │ │ └── index.tsx │ ├── radar │ │ └── index.tsx │ ├── radial-bar │ │ └── index.tsx │ ├── ring-progress │ │ └── index.tsx │ ├── rose │ │ └── index.tsx │ ├── sankey │ │ └── index.tsx │ ├── scatter │ │ └── index.tsx │ ├── stock │ │ └── index.tsx │ ├── sunburst │ │ └── index.tsx │ ├── tiny-area │ │ └── index.tsx │ ├── tiny-column │ │ └── index.tsx │ ├── tiny-line │ │ └── index.tsx │ ├── treemap │ │ └── index.tsx │ ├── venn │ │ └── index.tsx │ ├── violin │ │ └── index.tsx │ ├── waterfall │ │ └── index.tsx │ └── word-cloud │ │ └── index.tsx ├── types.ts └── utils.ts ├── tsconfig.json └── tsconfig.sync.json /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | charset = utf-8 7 | trim_trailing_whitespace = true 8 | insert_final_newline = true 9 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | # output 2 | es/ 3 | lib/ 4 | es2/ 5 | lib2/ 6 | es3/ 7 | lib3/ 8 | *.d.ts 9 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | env: { 4 | node: true, 5 | }, 6 | extends: [ 7 | 'plugin:vue/vue3-strongly-recommended', 8 | 'standard', 9 | 'prettier', 10 | 'plugin:prettier/recommended', 11 | 'plugin:@typescript-eslint/recommended', 12 | ], 13 | plugins: ['prettier', '@typescript-eslint'], 14 | parser: 'vue-eslint-parser', 15 | parserOptions: { 16 | parser: '@typescript-eslint/parser', 17 | sourceType: 'module', 18 | extraFileExtensions: ['.vue'], 19 | ecmaVersion: 2020, 20 | ecmaFeatures: { 21 | jsx: true, 22 | }, 23 | warnOnUnsupportedTypeScriptVersion: true, 24 | }, 25 | rules: { 26 | // TypeScript's `noFallthroughCasesInSwitch` option is more robust (#6906) 27 | 'default-case': 'off', 28 | // 'tsc' already handles this (https://github.com/typescript-eslint/typescript-eslint/issues/291) 29 | 'no-dupe-class-members': 'off', 30 | // 'tsc' already handles this (https://github.com/typescript-eslint/typescript-eslint/issues/477) 31 | 'no-undef': 'off', 32 | 33 | // Add TypeScript specific rules (and turn off ESLint equivalents) 34 | '@typescript-eslint/consistent-type-assertions': 'warn', 35 | 'no-array-constructor': 'off', 36 | '@typescript-eslint/no-array-constructor': 'warn', 37 | '@typescript-eslint/no-namespace': 'error', 38 | 'no-use-before-define': 'off', 39 | '@typescript-eslint/no-use-before-define': [ 40 | 'error', 41 | { 42 | functions: false, 43 | classes: false, 44 | variables: false, 45 | typedefs: false, 46 | }, 47 | ], 48 | 'no-unused-vars': 'off', 49 | '@typescript-eslint/no-unused-vars': [ 50 | 'error', 51 | { 52 | args: 'none', 53 | ignoreRestSiblings: true, 54 | }, 55 | ], 56 | 'no-useless-constructor': 'off', 57 | '@typescript-eslint/no-useless-constructor': 'warn', 58 | 'prettier/prettier': 'error', 59 | 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off', 60 | 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off', 61 | '@typescript-eslint/explicit-function-return-type': 'off', 62 | '@typescript-eslint/explicit-module-boundary-types': 'off', 63 | '@typescript-eslint/member-delimiter-style': 'off', 64 | '@typescript-eslint/no-explicit-any': 'off', 65 | 'standard/no-callback-literal': 'off', 66 | }, 67 | overrides: [ 68 | { 69 | files: [ 70 | '**/__tests__/*.{j,t}s?(x)', 71 | '**/tests/unit/**/*.spec.{j,t}s?(x)', 72 | ], 73 | env: { 74 | jest: true, 75 | }, 76 | }, 77 | { 78 | files: ['shims-tsx.d.ts'], 79 | rules: { 80 | '@typescript-eslint/no-empty-interface': 'off', 81 | '@typescript-eslint/no-explicit-any': 'off', 82 | '@typescript-eslint/no-unused-vars': 'off', 83 | }, 84 | }, 85 | ], 86 | } 87 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '[Bug]' 5 | labels: bug 6 | assignees: kagawagao 7 | --- 8 | 9 | **Describe the bug** 10 | A clear and concise description of what the bug is. 11 | 12 | **To Reproduce** 13 | Steps to reproduce the behavior: 14 | 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem or a mini showcase. 25 | 26 | **Desktop (please complete the following information):** 27 | 28 | - OS: [e.g. iOS] 29 | - Browser [e.g. chrome, safari] 30 | - `@antv/g2plot` Version [e.g. v2.3.12] 31 | - `@opd/g2plot-vue` Version [e.g. v3.0.0] 32 | - `vue` Version [e.g. v3.0.0] 33 | 34 | **Additional context** 35 | Add any other context about the problem here. 36 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '[Feature]' 5 | labels: feature 6 | assignees: kagawagao 7 | --- 8 | 9 | **Is your feature request related to a problem? Please describe.** 10 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 11 | 12 | **Describe the solution you'd like** 13 | A clear and concise description of what you want to happen. 14 | 15 | **Describe alternatives you've considered** 16 | A clear and concise description of any alternative solutions or features you've considered. 17 | 18 | **Additional context** 19 | Add any other context or screenshots about the feature request here. 20 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: npm 4 | directory: "/" 5 | schedule: 6 | interval: weekly 7 | open-pull-requests-limit: 10 8 | ignore: 9 | - dependency-name: "eslint" 10 | -------------------------------------------------------------------------------- /.github/workflows/auto-release.yml: -------------------------------------------------------------------------------- 1 | name: "auto-release" 2 | 3 | on: 4 | push: 5 | tags: 6 | - "v*" 7 | 8 | jobs: 9 | tagged-release: 10 | name: "Tagged Release" 11 | runs-on: "ubuntu-latest" 12 | 13 | steps: 14 | - uses: "marvinpinto/action-automatic-releases@latest" 15 | with: 16 | repo_token: "${{ secrets.GITHUB_TOKEN }}" 17 | prerelease: false 18 | -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- 1 | name: automerge 2 | on: 3 | pull_request: 4 | types: 5 | - labeled 6 | - unlabeled 7 | - synchronize 8 | - opened 9 | - edited 10 | - ready_for_review 11 | - reopened 12 | - unlocked 13 | pull_request_review: 14 | types: 15 | - submitted 16 | check_suite: 17 | types: 18 | - completed 19 | status: {} 20 | jobs: 21 | automerge: 22 | runs-on: ubuntu-latest 23 | steps: 24 | - name: automerge 25 | uses: "pascalgn/automerge-action@v0.16.2" 26 | env: 27 | GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" 28 | MERGE_LABELS: "dependencies,!wip" 29 | MERGE_METHOD: "squash" 30 | UPDATE_METHOD: "rebase" 31 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | name: build 2 | 3 | on: [push, pull_request] 4 | 5 | jobs: 6 | build: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - uses: actions/checkout@v4.1.7 10 | - name: Setup Node.js environment 11 | uses: actions/setup-node@v4.0.3 12 | with: 13 | check-latest: true 14 | - name: npm install, test and build 15 | run: | 16 | npm ci 17 | npm run build 18 | - name: Codecov 19 | uses: codecov/codecov-action@v1.5.0 20 | env: 21 | CI: true 22 | -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- 1 | # For most projects, this workflow file will not need changing; you simply need 2 | # to commit it to your repository. 3 | # 4 | # You may wish to alter this file to override the set of languages analyzed, 5 | # or to provide custom queries or build logic. 6 | # 7 | # ******** NOTE ******** 8 | # We have attempted to detect the languages in your repository. Please check 9 | # the `language` matrix defined below to confirm you have the correct set of 10 | # supported CodeQL languages. 11 | # 12 | name: "CodeQL" 13 | 14 | on: 15 | push: 16 | branches: [ master ] 17 | pull_request: 18 | # The branches below must be a subset of the branches above 19 | branches: [ master ] 20 | schedule: 21 | - cron: '16 5 * * 3' 22 | 23 | jobs: 24 | analyze: 25 | name: Analyze 26 | runs-on: ubuntu-latest 27 | permissions: 28 | actions: read 29 | contents: read 30 | security-events: write 31 | 32 | strategy: 33 | fail-fast: false 34 | matrix: 35 | language: [ 'javascript' ] 36 | # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ] 37 | # Learn more: 38 | # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed 39 | 40 | steps: 41 | - name: Checkout repository 42 | uses: actions/checkout@v2 43 | 44 | # Initializes the CodeQL tools for scanning. 45 | - name: Initialize CodeQL 46 | uses: github/codeql-action/init@v1 47 | with: 48 | languages: ${{ matrix.language }} 49 | # If you wish to specify custom queries, you can do so here or in a config file. 50 | # By default, queries listed here will override any specified in a config file. 51 | # Prefix the list here with "+" to use these queries and those in the config file. 52 | # queries: ./path/to/local/query, your-org/your-repo/queries@main 53 | 54 | # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). 55 | # If this step fails, then you should remove it and run the build manually (see below) 56 | - name: Autobuild 57 | uses: github/codeql-action/autobuild@v1 58 | 59 | # ℹ️ Command-line programs to run using the OS shell. 60 | # 📚 https://git.io/JvXDl 61 | 62 | # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines 63 | # and modify them (or add more) to build your code if your project 64 | # uses a compiled language 65 | 66 | #- run: | 67 | # make bootstrap 68 | # make release 69 | 70 | - name: Perform CodeQL Analysis 71 | uses: github/codeql-action/analyze@v1 72 | -------------------------------------------------------------------------------- /.github/workflows/npm-publish-github-packages.yml: -------------------------------------------------------------------------------- 1 | # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created 2 | # For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages 3 | 4 | name: Node.js Package 5 | 6 | on: 7 | release: 8 | types: [published] 9 | 10 | jobs: 11 | build: 12 | runs-on: ubuntu-latest 13 | steps: 14 | - uses: actions/checkout@v3 15 | - uses: actions/setup-node@v3 16 | - run: npm ci 17 | - run: npm run build 18 | 19 | publish-gpr: 20 | needs: build 21 | runs-on: ubuntu-latest 22 | permissions: 23 | contents: read 24 | packages: write 25 | steps: 26 | - uses: actions/checkout@v3 27 | - uses: actions/setup-node@v3 28 | with: 29 | registry-url: https://npm.pkg.github.com/ 30 | - run: npm ci 31 | - run: npm publish 32 | env: 33 | NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} 34 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | 9 | # Diagnostic reports (https://nodejs.org/api/report.html) 10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | *.lcov 24 | 25 | # nyc test coverage 26 | .nyc_output 27 | 28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 29 | .grunt 30 | 31 | # Bower dependency directory (https://bower.io/) 32 | bower_components 33 | 34 | # node-waf configuration 35 | .lock-wscript 36 | 37 | # Compiled binary addons (https://nodejs.org/api/addons.html) 38 | build/Release 39 | 40 | # Dependency directories 41 | node_modules/ 42 | jspm_packages/ 43 | 44 | # TypeScript v1 declaration files 45 | typings/ 46 | 47 | # TypeScript cache 48 | *.tsbuildinfo 49 | 50 | # Optional npm cache directory 51 | .npm 52 | 53 | # Optional eslint cache 54 | .eslintcache 55 | 56 | # Microbundle cache 57 | .rpt2_cache/ 58 | .rts2_cache_cjs/ 59 | .rts2_cache_es/ 60 | .rts2_cache_umd/ 61 | 62 | # Optional REPL history 63 | .node_repl_history 64 | 65 | # Output of 'npm pack' 66 | *.tgz 67 | 68 | # Yarn Integrity file 69 | .yarn-integrity 70 | 71 | # dotenv environment variables file 72 | .env 73 | .env.test 74 | 75 | # parcel-bundler cache (https://parceljs.org/) 76 | .cache 77 | 78 | # Next.js build output 79 | .next 80 | 81 | # Nuxt.js build / generate output 82 | .nuxt 83 | dist 84 | 85 | # Gatsby files 86 | .cache/ 87 | # Comment in the public line in if your project uses Gatsby and *not* Next.js 88 | # https://nextjs.org/blog/next-9-1#public-directory-support 89 | # public 90 | 91 | # vuepress build output 92 | .vuepress/dist 93 | # vitepress build output 94 | docs/.vitepress/dist 95 | docs/.vitepress/cache 96 | 97 | # Serverless directories 98 | .serverless/ 99 | 100 | # FuseBox cache 101 | .fusebox/ 102 | 103 | # DynamoDB Local files 104 | .dynamodb/ 105 | 106 | # TernJS port file 107 | .tern-port 108 | 109 | # build output 110 | es/ 111 | lib/ 112 | es2/ 113 | lib2/ 114 | es3/ 115 | lib3/ 116 | -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | npx commitlint --edit $1 2 | -------------------------------------------------------------------------------- /.husky/post-merge: -------------------------------------------------------------------------------- 1 | npx diff-run 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 4.0.1 (2025-02-08) 2 | 3 | - fix: remove vue-demi ([da0857c](https://github.com/open-data-plan/g2plot-vue/commit/da0857c)) 4 | - chore(deps-dev): bump @commitlint/cli from 19.6.1 to 19.7.1 (#1743) ([d31069b](https://github.com/open-data-plan/g2plot-vue/commit/d31069b)), closes [#1743](https://github.com/open-data-plan/g2plot-vue/issues/1743) 5 | - chore(deps-dev): bump @commitlint/config-conventional from 19.6.0 to 19.7.1 (#1741) ([4edb413](https://github.com/open-data-plan/g2plot-vue/commit/4edb413)), closes [#1741](https://github.com/open-data-plan/g2plot-vue/issues/1741) 6 | - chore(deps-dev): bump @types/lodash from 4.17.14 to 4.17.15 (#1740) ([47aed55](https://github.com/open-data-plan/g2plot-vue/commit/47aed55)), closes [#1740](https://github.com/open-data-plan/g2plot-vue/issues/1740) 7 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.19.0 to 8.19.1 (#1728) ([a4a5ab8](https://github.com/open-data-plan/g2plot-vue/commit/a4a5ab8)), closes [#1728](https://github.com/open-data-plan/g2plot-vue/issues/1728) 8 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.19.1 to 8.20.0 (#1731) ([38d3053](https://github.com/open-data-plan/g2plot-vue/commit/38d3053)), closes [#1731](https://github.com/open-data-plan/g2plot-vue/issues/1731) 9 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.20.0 to 8.21.0 (#1736) ([77e3d54](https://github.com/open-data-plan/g2plot-vue/commit/77e3d54)), closes [#1736](https://github.com/open-data-plan/g2plot-vue/issues/1736) 10 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.21.0 to 8.22.0 (#1742) ([1d0a5fd](https://github.com/open-data-plan/g2plot-vue/commit/1d0a5fd)), closes [#1742](https://github.com/open-data-plan/g2plot-vue/issues/1742) 11 | - chore(deps-dev): bump @typescript-eslint/parser from 8.19.0 to 8.19.1 (#1727) ([dd9cc7c](https://github.com/open-data-plan/g2plot-vue/commit/dd9cc7c)), closes [#1727](https://github.com/open-data-plan/g2plot-vue/issues/1727) 12 | - chore(deps-dev): bump @typescript-eslint/parser from 8.19.1 to 8.20.0 (#1729) ([0095217](https://github.com/open-data-plan/g2plot-vue/commit/0095217)), closes [#1729](https://github.com/open-data-plan/g2plot-vue/issues/1729) 13 | - chore(deps-dev): bump @typescript-eslint/parser from 8.20.0 to 8.21.0 (#1734) ([72bc4de](https://github.com/open-data-plan/g2plot-vue/commit/72bc4de)), closes [#1734](https://github.com/open-data-plan/g2plot-vue/issues/1734) 14 | - chore(deps-dev): bump @typescript-eslint/parser from 8.21.0 to 8.22.0 (#1739) ([e170f11](https://github.com/open-data-plan/g2plot-vue/commit/e170f11)), closes [#1739](https://github.com/open-data-plan/g2plot-vue/issues/1739) 15 | - chore(deps-dev): bump canvas from 3.0.1 to 3.1.0 (#1738) ([82081a6](https://github.com/open-data-plan/g2plot-vue/commit/82081a6)), closes [#1738](https://github.com/open-data-plan/g2plot-vue/issues/1738) 16 | - chore(deps-dev): bump eslint-config-prettier from 9.1.0 to 10.0.1 (#1725) ([791cb08](https://github.com/open-data-plan/g2plot-vue/commit/791cb08)), closes [#1725](https://github.com/open-data-plan/g2plot-vue/issues/1725) 17 | - chore(deps-dev): bump eslint-plugin-prettier from 5.2.1 to 5.2.3 (#1730) ([9c6272c](https://github.com/open-data-plan/g2plot-vue/commit/9c6272c)), closes [#1730](https://github.com/open-data-plan/g2plot-vue/issues/1730) 18 | - chore(deps-dev): bump lint-staged from 15.3.0 to 15.4.1 (#1733) ([c353fab](https://github.com/open-data-plan/g2plot-vue/commit/c353fab)), closes [#1733](https://github.com/open-data-plan/g2plot-vue/issues/1733) 19 | - chore(deps-dev): bump lint-staged from 15.4.1 to 15.4.3 (#1735) ([d72e37b](https://github.com/open-data-plan/g2plot-vue/commit/d72e37b)), closes [#1735](https://github.com/open-data-plan/g2plot-vue/issues/1735) 20 | - chore(deps-dev): bump typescript from 5.7.2 to 5.7.3 (#1726) ([20de1eb](https://github.com/open-data-plan/g2plot-vue/commit/20de1eb)), closes [#1726](https://github.com/open-data-plan/g2plot-vue/issues/1726) 21 | - chore(deps-dev): bump vitepress from 1.5.0 to 1.6.0 (#1732) ([6a632d9](https://github.com/open-data-plan/g2plot-vue/commit/6a632d9)), closes [#1732](https://github.com/open-data-plan/g2plot-vue/issues/1732) 22 | - chore(deps-dev): bump vitepress from 1.6.0 to 1.6.3 (#1737) ([1719a30](https://github.com/open-data-plan/g2plot-vue/commit/1719a30)), closes [#1737](https://github.com/open-data-plan/g2plot-vue/issues/1737) 23 | 24 | ## 4.0.0 (2025-01-08) 25 | 26 | - feat: drop vue v2 support ([45c3076](https://github.com/open-data-plan/g2plot-vue/commit/45c3076)) 27 | - chore(deps-dev): bump @antv/g2plot from 2.4.31 to 2.4.32 (#1613) ([89eaf5e](https://github.com/open-data-plan/g2plot-vue/commit/89eaf5e)), closes [#1613](https://github.com/open-data-plan/g2plot-vue/issues/1613) 28 | - chore(deps-dev): bump @babel/cli from 7.24.8 to 7.25.6 (#1630) ([660884c](https://github.com/open-data-plan/g2plot-vue/commit/660884c)), closes [#1630](https://github.com/open-data-plan/g2plot-vue/issues/1630) 29 | - chore(deps-dev): bump @babel/cli from 7.25.6 to 7.25.7 (#1658) ([9f552f4](https://github.com/open-data-plan/g2plot-vue/commit/9f552f4)), closes [#1658](https://github.com/open-data-plan/g2plot-vue/issues/1658) 30 | - chore(deps-dev): bump @babel/cli from 7.25.7 to 7.25.9 (#1679) ([108e34c](https://github.com/open-data-plan/g2plot-vue/commit/108e34c)), closes [#1679](https://github.com/open-data-plan/g2plot-vue/issues/1679) 31 | - chore(deps-dev): bump @babel/cli from 7.25.9 to 7.26.4 (#1706) ([d4b1a80](https://github.com/open-data-plan/g2plot-vue/commit/d4b1a80)), closes [#1706](https://github.com/open-data-plan/g2plot-vue/issues/1706) 32 | - chore(deps-dev): bump @babel/preset-typescript from 7.24.7 to 7.25.7 (#1656) ([b9773f0](https://github.com/open-data-plan/g2plot-vue/commit/b9773f0)), closes [#1656](https://github.com/open-data-plan/g2plot-vue/issues/1656) 33 | - chore(deps-dev): bump @babel/preset-typescript from 7.25.7 to 7.26.0 (#1675) ([0533b69](https://github.com/open-data-plan/g2plot-vue/commit/0533b69)), closes [#1675](https://github.com/open-data-plan/g2plot-vue/issues/1675) 34 | - chore(deps-dev): bump @commitlint/cli from 19.3.0 to 19.4.0 (#1616) ([0168965](https://github.com/open-data-plan/g2plot-vue/commit/0168965)), closes [#1616](https://github.com/open-data-plan/g2plot-vue/issues/1616) 35 | - chore(deps-dev): bump @commitlint/cli from 19.4.0 to 19.4.1 (#1631) ([e4254ee](https://github.com/open-data-plan/g2plot-vue/commit/e4254ee)), closes [#1631](https://github.com/open-data-plan/g2plot-vue/issues/1631) 36 | - chore(deps-dev): bump @commitlint/cli from 19.4.1 to 19.5.0 (#1646) ([0b7d23e](https://github.com/open-data-plan/g2plot-vue/commit/0b7d23e)), closes [#1646](https://github.com/open-data-plan/g2plot-vue/issues/1646) 37 | - chore(deps-dev): bump @commitlint/cli from 19.5.0 to 19.6.0 (#1702) ([095eefb](https://github.com/open-data-plan/g2plot-vue/commit/095eefb)), closes [#1702](https://github.com/open-data-plan/g2plot-vue/issues/1702) 38 | - chore(deps-dev): bump @commitlint/cli from 19.6.0 to 19.6.1 (#1709) ([710f2e7](https://github.com/open-data-plan/g2plot-vue/commit/710f2e7)), closes [#1709](https://github.com/open-data-plan/g2plot-vue/issues/1709) 39 | - chore(deps-dev): bump @commitlint/config-conventional from 19.2.2 to 19.4.1 (#1629) ([9121265](https://github.com/open-data-plan/g2plot-vue/commit/9121265)), closes [#1629](https://github.com/open-data-plan/g2plot-vue/issues/1629) 40 | - chore(deps-dev): bump @commitlint/config-conventional from 19.4.1 to 19.5.0 (#1640) ([aa29f72](https://github.com/open-data-plan/g2plot-vue/commit/aa29f72)), closes [#1640](https://github.com/open-data-plan/g2plot-vue/issues/1640) 41 | - chore(deps-dev): bump @commitlint/config-conventional from 19.5.0 to 19.6.0 (#1700) ([c60b83b](https://github.com/open-data-plan/g2plot-vue/commit/c60b83b)), closes [#1700](https://github.com/open-data-plan/g2plot-vue/issues/1700) 42 | - chore(deps-dev): bump @types/lodash from 4.17.10 to 4.17.12 (#1674) ([632173a](https://github.com/open-data-plan/g2plot-vue/commit/632173a)), closes [#1674](https://github.com/open-data-plan/g2plot-vue/issues/1674) 43 | - chore(deps-dev): bump @types/lodash from 4.17.12 to 4.17.13 (#1684) ([bf18a76](https://github.com/open-data-plan/g2plot-vue/commit/bf18a76)), closes [#1684](https://github.com/open-data-plan/g2plot-vue/issues/1684) 44 | - chore(deps-dev): bump @types/lodash from 4.17.13 to 4.17.14 (#1724) ([dd62411](https://github.com/open-data-plan/g2plot-vue/commit/dd62411)), closes [#1724](https://github.com/open-data-plan/g2plot-vue/issues/1724) 45 | - chore(deps-dev): bump @types/lodash from 4.17.7 to 4.17.9 (#1655) ([6beb4b2](https://github.com/open-data-plan/g2plot-vue/commit/6beb4b2)), closes [#1655](https://github.com/open-data-plan/g2plot-vue/issues/1655) 46 | - chore(deps-dev): bump @types/lodash from 4.17.9 to 4.17.10 (#1659) ([7833627](https://github.com/open-data-plan/g2plot-vue/commit/7833627)), closes [#1659](https://github.com/open-data-plan/g2plot-vue/issues/1659) 47 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.17.0 to 8.0.0 (#1612) ([19d1546](https://github.com/open-data-plan/g2plot-vue/commit/19d1546)), closes [#1612](https://github.com/open-data-plan/g2plot-vue/issues/1612) 48 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.0.0 to 8.0.1 (#1614) ([1b86b39](https://github.com/open-data-plan/g2plot-vue/commit/1b86b39)), closes [#1614](https://github.com/open-data-plan/g2plot-vue/issues/1614) 49 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.0.1 to 8.1.0 (#1621) ([9841a99](https://github.com/open-data-plan/g2plot-vue/commit/9841a99)), closes [#1621](https://github.com/open-data-plan/g2plot-vue/issues/1621) 50 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.1.0 to 8.2.0 (#1627) ([aa2d88e](https://github.com/open-data-plan/g2plot-vue/commit/aa2d88e)), closes [#1627](https://github.com/open-data-plan/g2plot-vue/issues/1627) 51 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.10.0 to 8.11.0 (#1676) ([1d3f7bc](https://github.com/open-data-plan/g2plot-vue/commit/1d3f7bc)), closes [#1676](https://github.com/open-data-plan/g2plot-vue/issues/1676) 52 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.11.0 to 8.12.2 (#1682) ([62374bc](https://github.com/open-data-plan/g2plot-vue/commit/62374bc)), closes [#1682](https://github.com/open-data-plan/g2plot-vue/issues/1682) 53 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.12.2 to 8.13.0 (#1688) ([fb9ca8a](https://github.com/open-data-plan/g2plot-vue/commit/fb9ca8a)), closes [#1688](https://github.com/open-data-plan/g2plot-vue/issues/1688) 54 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.13.0 to 8.14.0 (#1692) ([5cccba0](https://github.com/open-data-plan/g2plot-vue/commit/5cccba0)), closes [#1692](https://github.com/open-data-plan/g2plot-vue/issues/1692) 55 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.14.0 to 8.15.0 (#1697) ([b574727](https://github.com/open-data-plan/g2plot-vue/commit/b574727)), closes [#1697](https://github.com/open-data-plan/g2plot-vue/issues/1697) 56 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.15.0 to 8.17.0 (#1708) ([0731d35](https://github.com/open-data-plan/g2plot-vue/commit/0731d35)), closes [#1708](https://github.com/open-data-plan/g2plot-vue/issues/1708) 57 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.17.0 to 8.18.0 (#1711) ([3ccad62](https://github.com/open-data-plan/g2plot-vue/commit/3ccad62)), closes [#1711](https://github.com/open-data-plan/g2plot-vue/issues/1711) 58 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.18.0 to 8.18.1 (#1716) ([c86316f](https://github.com/open-data-plan/g2plot-vue/commit/c86316f)), closes [#1716](https://github.com/open-data-plan/g2plot-vue/issues/1716) 59 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.18.1 to 8.18.2 (#1720) ([a5bf075](https://github.com/open-data-plan/g2plot-vue/commit/a5bf075)), closes [#1720](https://github.com/open-data-plan/g2plot-vue/issues/1720) 60 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.18.2 to 8.19.0 (#1723) ([06b61a4](https://github.com/open-data-plan/g2plot-vue/commit/06b61a4)), closes [#1723](https://github.com/open-data-plan/g2plot-vue/issues/1723) 61 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.2.0 to 8.3.0 (#1632) ([2393a7d](https://github.com/open-data-plan/g2plot-vue/commit/2393a7d)), closes [#1632](https://github.com/open-data-plan/g2plot-vue/issues/1632) 62 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.3.0 to 8.4.0 (#1636) ([36bf7ce](https://github.com/open-data-plan/g2plot-vue/commit/36bf7ce)), closes [#1636](https://github.com/open-data-plan/g2plot-vue/issues/1636) 63 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.4.0 to 8.5.0 (#1645) ([163b724](https://github.com/open-data-plan/g2plot-vue/commit/163b724)), closes [#1645](https://github.com/open-data-plan/g2plot-vue/issues/1645) 64 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.5.0 to 8.6.0 (#1650) ([929414d](https://github.com/open-data-plan/g2plot-vue/commit/929414d)), closes [#1650](https://github.com/open-data-plan/g2plot-vue/issues/1650) 65 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.6.0 to 8.8.0 (#1661) ([a5eca7b](https://github.com/open-data-plan/g2plot-vue/commit/a5eca7b)), closes [#1661](https://github.com/open-data-plan/g2plot-vue/issues/1661) 66 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.8.0 to 8.8.1 (#1670) ([2ca6f40](https://github.com/open-data-plan/g2plot-vue/commit/2ca6f40)), closes [#1670](https://github.com/open-data-plan/g2plot-vue/issues/1670) 67 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 8.8.1 to 8.10.0 (#1673) ([2316362](https://github.com/open-data-plan/g2plot-vue/commit/2316362)), closes [#1673](https://github.com/open-data-plan/g2plot-vue/issues/1673) 68 | - chore(deps-dev): bump @typescript-eslint/parser from 7.17.0 to 8.0.0 (#1608) ([c57d932](https://github.com/open-data-plan/g2plot-vue/commit/c57d932)), closes [#1608](https://github.com/open-data-plan/g2plot-vue/issues/1608) 69 | - chore(deps-dev): bump @typescript-eslint/parser from 8.0.0 to 8.0.1 (#1615) ([a71b519](https://github.com/open-data-plan/g2plot-vue/commit/a71b519)), closes [#1615](https://github.com/open-data-plan/g2plot-vue/issues/1615) 70 | - chore(deps-dev): bump @typescript-eslint/parser from 8.0.1 to 8.1.0 (#1623) ([9ad9c1b](https://github.com/open-data-plan/g2plot-vue/commit/9ad9c1b)), closes [#1623](https://github.com/open-data-plan/g2plot-vue/issues/1623) 71 | - chore(deps-dev): bump @typescript-eslint/parser from 8.1.0 to 8.2.0 (#1625) ([2eb7f94](https://github.com/open-data-plan/g2plot-vue/commit/2eb7f94)), closes [#1625](https://github.com/open-data-plan/g2plot-vue/issues/1625) 72 | - chore(deps-dev): bump @typescript-eslint/parser from 8.10.0 to 8.11.0 (#1678) ([cc16144](https://github.com/open-data-plan/g2plot-vue/commit/cc16144)), closes [#1678](https://github.com/open-data-plan/g2plot-vue/issues/1678) 73 | - chore(deps-dev): bump @typescript-eslint/parser from 8.11.0 to 8.12.2 (#1683) ([2828b96](https://github.com/open-data-plan/g2plot-vue/commit/2828b96)), closes [#1683](https://github.com/open-data-plan/g2plot-vue/issues/1683) 74 | - chore(deps-dev): bump @typescript-eslint/parser from 8.12.2 to 8.13.0 (#1687) ([3e074c1](https://github.com/open-data-plan/g2plot-vue/commit/3e074c1)), closes [#1687](https://github.com/open-data-plan/g2plot-vue/issues/1687) 75 | - chore(deps-dev): bump @typescript-eslint/parser from 8.13.0 to 8.14.0 (#1691) ([7ce9ac7](https://github.com/open-data-plan/g2plot-vue/commit/7ce9ac7)), closes [#1691](https://github.com/open-data-plan/g2plot-vue/issues/1691) 76 | - chore(deps-dev): bump @typescript-eslint/parser from 8.14.0 to 8.15.0 (#1698) ([2a36d78](https://github.com/open-data-plan/g2plot-vue/commit/2a36d78)), closes [#1698](https://github.com/open-data-plan/g2plot-vue/issues/1698) 77 | - chore(deps-dev): bump @typescript-eslint/parser from 8.15.0 to 8.17.0 (#1707) ([6386080](https://github.com/open-data-plan/g2plot-vue/commit/6386080)), closes [#1707](https://github.com/open-data-plan/g2plot-vue/issues/1707) 78 | - chore(deps-dev): bump @typescript-eslint/parser from 8.17.0 to 8.18.0 (#1713) ([d723786](https://github.com/open-data-plan/g2plot-vue/commit/d723786)), closes [#1713](https://github.com/open-data-plan/g2plot-vue/issues/1713) 79 | - chore(deps-dev): bump @typescript-eslint/parser from 8.18.0 to 8.18.1 (#1714) ([8c7ae00](https://github.com/open-data-plan/g2plot-vue/commit/8c7ae00)), closes [#1714](https://github.com/open-data-plan/g2plot-vue/issues/1714) 80 | - chore(deps-dev): bump @typescript-eslint/parser from 8.18.1 to 8.18.2 (#1717) ([bb130d2](https://github.com/open-data-plan/g2plot-vue/commit/bb130d2)), closes [#1717](https://github.com/open-data-plan/g2plot-vue/issues/1717) 81 | - chore(deps-dev): bump @typescript-eslint/parser from 8.18.2 to 8.19.0 (#1722) ([5b65c05](https://github.com/open-data-plan/g2plot-vue/commit/5b65c05)), closes [#1722](https://github.com/open-data-plan/g2plot-vue/issues/1722) 82 | - chore(deps-dev): bump @typescript-eslint/parser from 8.2.0 to 8.3.0 (#1633) ([730f42b](https://github.com/open-data-plan/g2plot-vue/commit/730f42b)), closes [#1633](https://github.com/open-data-plan/g2plot-vue/issues/1633) 83 | - chore(deps-dev): bump @typescript-eslint/parser from 8.3.0 to 8.4.0 (#1639) ([dcf2dad](https://github.com/open-data-plan/g2plot-vue/commit/dcf2dad)), closes [#1639](https://github.com/open-data-plan/g2plot-vue/issues/1639) 84 | - chore(deps-dev): bump @typescript-eslint/parser from 8.4.0 to 8.5.0 (#1644) ([1b290f2](https://github.com/open-data-plan/g2plot-vue/commit/1b290f2)), closes [#1644](https://github.com/open-data-plan/g2plot-vue/issues/1644) 85 | - chore(deps-dev): bump @typescript-eslint/parser from 8.5.0 to 8.6.0 (#1648) ([e52a945](https://github.com/open-data-plan/g2plot-vue/commit/e52a945)), closes [#1648](https://github.com/open-data-plan/g2plot-vue/issues/1648) 86 | - chore(deps-dev): bump @typescript-eslint/parser from 8.6.0 to 8.7.0 (#1654) ([4a971f4](https://github.com/open-data-plan/g2plot-vue/commit/4a971f4)), closes [#1654](https://github.com/open-data-plan/g2plot-vue/issues/1654) 87 | - chore(deps-dev): bump @typescript-eslint/parser from 8.7.0 to 8.8.0 (#1663) ([4fc58ef](https://github.com/open-data-plan/g2plot-vue/commit/4fc58ef)), closes [#1663](https://github.com/open-data-plan/g2plot-vue/issues/1663) 88 | - chore(deps-dev): bump @typescript-eslint/parser from 8.8.0 to 8.8.1 (#1665) ([66770f2](https://github.com/open-data-plan/g2plot-vue/commit/66770f2)), closes [#1665](https://github.com/open-data-plan/g2plot-vue/issues/1665) 89 | - chore(deps-dev): bump @typescript-eslint/parser from 8.8.1 to 8.10.0 (#1671) ([d1a4388](https://github.com/open-data-plan/g2plot-vue/commit/d1a4388)), closes [#1671](https://github.com/open-data-plan/g2plot-vue/issues/1671) 90 | - chore(deps-dev): bump @vue/tsconfig from 0.5.1 to 0.6.0 (#1686) ([8eec752](https://github.com/open-data-plan/g2plot-vue/commit/8eec752)), closes [#1686](https://github.com/open-data-plan/g2plot-vue/issues/1686) 91 | - chore(deps-dev): bump @vue/tsconfig from 0.6.0 to 0.7.0 (#1704) ([16602b4](https://github.com/open-data-plan/g2plot-vue/commit/16602b4)), closes [#1704](https://github.com/open-data-plan/g2plot-vue/issues/1704) 92 | - chore(deps-dev): bump canvas from 2.11.2 to 3.0.0 (#1718) ([5cdaab0](https://github.com/open-data-plan/g2plot-vue/commit/5cdaab0)), closes [#1718](https://github.com/open-data-plan/g2plot-vue/issues/1718) 93 | - chore(deps-dev): bump canvas from 3.0.0 to 3.0.1 (#1721) ([e545144](https://github.com/open-data-plan/g2plot-vue/commit/e545144)), closes [#1721](https://github.com/open-data-plan/g2plot-vue/issues/1721) 94 | - chore(deps-dev): bump eslint-plugin-import from 2.29.1 to 2.30.0 (#1638) ([e98c994](https://github.com/open-data-plan/g2plot-vue/commit/e98c994)), closes [#1638](https://github.com/open-data-plan/g2plot-vue/issues/1638) 95 | - chore(deps-dev): bump eslint-plugin-import from 2.30.0 to 2.31.0 (#1660) ([e04f027](https://github.com/open-data-plan/g2plot-vue/commit/e04f027)), closes [#1660](https://github.com/open-data-plan/g2plot-vue/issues/1660) 96 | - chore(deps-dev): bump eslint-plugin-n from 17.10.1 to 17.10.2 (#1610) ([3551838](https://github.com/open-data-plan/g2plot-vue/commit/3551838)), closes [#1610](https://github.com/open-data-plan/g2plot-vue/issues/1610) 97 | - chore(deps-dev): bump eslint-plugin-n from 17.10.2 to 17.10.3 (#1649) ([fb7f0aa](https://github.com/open-data-plan/g2plot-vue/commit/fb7f0aa)), closes [#1649](https://github.com/open-data-plan/g2plot-vue/issues/1649) 98 | - chore(deps-dev): bump eslint-plugin-n from 17.10.3 to 17.11.1 (#1669) ([16f1082](https://github.com/open-data-plan/g2plot-vue/commit/16f1082)), closes [#1669](https://github.com/open-data-plan/g2plot-vue/issues/1669) 99 | - chore(deps-dev): bump eslint-plugin-n from 17.11.1 to 17.12.0 (#1680) ([e52c4fd](https://github.com/open-data-plan/g2plot-vue/commit/e52c4fd)), closes [#1680](https://github.com/open-data-plan/g2plot-vue/issues/1680) 100 | - chore(deps-dev): bump eslint-plugin-n from 17.12.0 to 17.13.1 (#1685) ([c27bcd7](https://github.com/open-data-plan/g2plot-vue/commit/c27bcd7)), closes [#1685](https://github.com/open-data-plan/g2plot-vue/issues/1685) 101 | - chore(deps-dev): bump eslint-plugin-n from 17.13.1 to 17.13.2 (#1695) ([8fd277a](https://github.com/open-data-plan/g2plot-vue/commit/8fd277a)), closes [#1695](https://github.com/open-data-plan/g2plot-vue/issues/1695) 102 | - chore(deps-dev): bump eslint-plugin-n from 17.13.2 to 17.14.0 (#1701) ([4b78354](https://github.com/open-data-plan/g2plot-vue/commit/4b78354)), closes [#1701](https://github.com/open-data-plan/g2plot-vue/issues/1701) 103 | - chore(deps-dev): bump eslint-plugin-n from 17.14.0 to 17.15.0 (#1712) ([2cf721a](https://github.com/open-data-plan/g2plot-vue/commit/2cf721a)), closes [#1712](https://github.com/open-data-plan/g2plot-vue/issues/1712) 104 | - chore(deps-dev): bump eslint-plugin-n from 17.15.0 to 17.15.1 (#1715) ([fa09c59](https://github.com/open-data-plan/g2plot-vue/commit/fa09c59)), closes [#1715](https://github.com/open-data-plan/g2plot-vue/issues/1715) 105 | - chore(deps-dev): bump eslint-plugin-n from 17.9.0 to 17.10.1 (#1607) ([0b7e875](https://github.com/open-data-plan/g2plot-vue/commit/0b7e875)), closes [#1607](https://github.com/open-data-plan/g2plot-vue/issues/1607) 106 | - chore(deps-dev): bump eslint-plugin-promise from 6.6.0 to 7.0.0 (#1603) ([a640b9c](https://github.com/open-data-plan/g2plot-vue/commit/a640b9c)), closes [#1603](https://github.com/open-data-plan/g2plot-vue/issues/1603) 107 | - chore(deps-dev): bump eslint-plugin-promise from 7.0.0 to 7.1.0 (#1618) ([cc6fbda](https://github.com/open-data-plan/g2plot-vue/commit/cc6fbda)), closes [#1618](https://github.com/open-data-plan/g2plot-vue/issues/1618) 108 | - chore(deps-dev): bump eslint-plugin-promise from 7.1.0 to 7.2.0 (#1696) ([07e75b8](https://github.com/open-data-plan/g2plot-vue/commit/07e75b8)), closes [#1696](https://github.com/open-data-plan/g2plot-vue/issues/1696) 109 | - chore(deps-dev): bump eslint-plugin-promise from 7.2.0 to 7.2.1 (#1703) ([1417525](https://github.com/open-data-plan/g2plot-vue/commit/1417525)), closes [#1703](https://github.com/open-data-plan/g2plot-vue/issues/1703) 110 | - chore(deps-dev): bump eslint-plugin-vue from 9.27.0 to 9.28.0 (#1637) ([c08e666](https://github.com/open-data-plan/g2plot-vue/commit/c08e666)), closes [#1637](https://github.com/open-data-plan/g2plot-vue/issues/1637) 111 | - chore(deps-dev): bump eslint-plugin-vue from 9.28.0 to 9.29.0 (#1666) ([ad87865](https://github.com/open-data-plan/g2plot-vue/commit/ad87865)), closes [#1666](https://github.com/open-data-plan/g2plot-vue/issues/1666) 112 | - chore(deps-dev): bump eslint-plugin-vue from 9.29.0 to 9.29.1 (#1672) ([09fc5ac](https://github.com/open-data-plan/g2plot-vue/commit/09fc5ac)), closes [#1672](https://github.com/open-data-plan/g2plot-vue/issues/1672) 113 | - chore(deps-dev): bump eslint-plugin-vue from 9.29.1 to 9.30.0 (#1677) ([a3a0eba](https://github.com/open-data-plan/g2plot-vue/commit/a3a0eba)), closes [#1677](https://github.com/open-data-plan/g2plot-vue/issues/1677) 114 | - chore(deps-dev): bump eslint-plugin-vue from 9.30.0 to 9.31.0 (#1693) ([401a8f1](https://github.com/open-data-plan/g2plot-vue/commit/401a8f1)), closes [#1693](https://github.com/open-data-plan/g2plot-vue/issues/1693) 115 | - chore(deps-dev): bump eslint-plugin-vue from 9.31.0 to 9.32.0 (#1705) ([fb7afa2](https://github.com/open-data-plan/g2plot-vue/commit/fb7afa2)), closes [#1705](https://github.com/open-data-plan/g2plot-vue/issues/1705) 116 | - chore(deps-dev): bump husky from 9.1.1 to 9.1.4 (#1605) ([d5f4fe9](https://github.com/open-data-plan/g2plot-vue/commit/d5f4fe9)), closes [#1605](https://github.com/open-data-plan/g2plot-vue/issues/1605) 117 | - chore(deps-dev): bump husky from 9.1.4 to 9.1.5 (#1628) ([086ad89](https://github.com/open-data-plan/g2plot-vue/commit/086ad89)), closes [#1628](https://github.com/open-data-plan/g2plot-vue/issues/1628) 118 | - chore(deps-dev): bump husky from 9.1.5 to 9.1.6 (#1642) ([5a3f297](https://github.com/open-data-plan/g2plot-vue/commit/5a3f297)), closes [#1642](https://github.com/open-data-plan/g2plot-vue/issues/1642) 119 | - chore(deps-dev): bump husky from 9.1.6 to 9.1.7 (#1694) ([b335684](https://github.com/open-data-plan/g2plot-vue/commit/b335684)), closes [#1694](https://github.com/open-data-plan/g2plot-vue/issues/1694) 120 | - chore(deps-dev): bump lint-staged from 15.2.10 to 15.2.11 (#1710) ([aaa87cb](https://github.com/open-data-plan/g2plot-vue/commit/aaa87cb)), closes [#1710](https://github.com/open-data-plan/g2plot-vue/issues/1710) 121 | - chore(deps-dev): bump lint-staged from 15.2.11 to 15.3.0 (#1719) ([7ee950d](https://github.com/open-data-plan/g2plot-vue/commit/7ee950d)), closes [#1719](https://github.com/open-data-plan/g2plot-vue/issues/1719) 122 | - chore(deps-dev): bump lint-staged from 15.2.7 to 15.2.8 (#1609) ([2eaa214](https://github.com/open-data-plan/g2plot-vue/commit/2eaa214)), closes [#1609](https://github.com/open-data-plan/g2plot-vue/issues/1609) 123 | - chore(deps-dev): bump lint-staged from 15.2.8 to 15.2.9 (#1624) ([3581c55](https://github.com/open-data-plan/g2plot-vue/commit/3581c55)), closes [#1624](https://github.com/open-data-plan/g2plot-vue/issues/1624) 124 | - chore(deps-dev): bump lint-staged from 15.2.9 to 15.2.10 (#1634) ([da3766b](https://github.com/open-data-plan/g2plot-vue/commit/da3766b)), closes [#1634](https://github.com/open-data-plan/g2plot-vue/issues/1634) 125 | - chore(deps-dev): bump typescript from 5.5.4 to 5.6.2 (#1643) ([1f538d9](https://github.com/open-data-plan/g2plot-vue/commit/1f538d9)), closes [#1643](https://github.com/open-data-plan/g2plot-vue/issues/1643) 126 | - chore(deps-dev): bump typescript from 5.6.2 to 5.6.3 (#1667) ([2e61da4](https://github.com/open-data-plan/g2plot-vue/commit/2e61da4)), closes [#1667](https://github.com/open-data-plan/g2plot-vue/issues/1667) 127 | - chore(deps-dev): bump typescript from 5.6.3 to 5.7.2 (#1699) ([21d5cf2](https://github.com/open-data-plan/g2plot-vue/commit/21d5cf2)), closes [#1699](https://github.com/open-data-plan/g2plot-vue/issues/1699) 128 | - chore(deps-dev): bump vite from 5.4.1 to 5.4.6 (#1647) ([94f1aa2](https://github.com/open-data-plan/g2plot-vue/commit/94f1aa2)), closes [#1647](https://github.com/open-data-plan/g2plot-vue/issues/1647) 129 | - chore(deps-dev): bump vitepress from 1.3.1 to 1.3.2 (#1619) ([a382b7f](https://github.com/open-data-plan/g2plot-vue/commit/a382b7f)), closes [#1619](https://github.com/open-data-plan/g2plot-vue/issues/1619) 130 | - chore(deps-dev): bump vitepress from 1.3.2 to 1.3.3 (#1620) ([d5db475](https://github.com/open-data-plan/g2plot-vue/commit/d5db475)), closes [#1620](https://github.com/open-data-plan/g2plot-vue/issues/1620) 131 | - chore(deps-dev): bump vitepress from 1.3.3 to 1.3.4 (#1626) ([a4e4e23](https://github.com/open-data-plan/g2plot-vue/commit/a4e4e23)), closes [#1626](https://github.com/open-data-plan/g2plot-vue/issues/1626) 132 | - chore(deps-dev): bump vitepress from 1.3.4 to 1.4.0 (#1662) ([98fe3d2](https://github.com/open-data-plan/g2plot-vue/commit/98fe3d2)), closes [#1662](https://github.com/open-data-plan/g2plot-vue/issues/1662) 133 | - chore(deps-dev): bump vitepress from 1.4.0 to 1.4.1 (#1664) ([871e02a](https://github.com/open-data-plan/g2plot-vue/commit/871e02a)), closes [#1664](https://github.com/open-data-plan/g2plot-vue/issues/1664) 134 | - chore(deps-dev): bump vitepress from 1.4.1 to 1.4.5 (#1681) ([90d4da4](https://github.com/open-data-plan/g2plot-vue/commit/90d4da4)), closes [#1681](https://github.com/open-data-plan/g2plot-vue/issues/1681) 135 | - chore(deps-dev): bump vitepress from 1.4.5 to 1.5.0 (#1689) ([8321098](https://github.com/open-data-plan/g2plot-vue/commit/8321098)), closes [#1689](https://github.com/open-data-plan/g2plot-vue/issues/1689) 136 | - chore(deps-dev): bump vue from 3.4.33 to 3.4.34 (#1604) ([1975fa1](https://github.com/open-data-plan/g2plot-vue/commit/1975fa1)), closes [#1604](https://github.com/open-data-plan/g2plot-vue/issues/1604) 137 | - chore(deps-dev): bump vue from 3.4.34 to 3.4.35 (#1611) ([4ab15e2](https://github.com/open-data-plan/g2plot-vue/commit/4ab15e2)), closes [#1611](https://github.com/open-data-plan/g2plot-vue/issues/1611) 138 | - chore(deps-dev): bump vue from 3.4.35 to 3.4.37 (#1617) ([d0eb896](https://github.com/open-data-plan/g2plot-vue/commit/d0eb896)), closes [#1617](https://github.com/open-data-plan/g2plot-vue/issues/1617) 139 | - chore(deps-dev): bump vue from 3.4.37 to 3.4.38 (#1622) ([36b2e10](https://github.com/open-data-plan/g2plot-vue/commit/36b2e10)), closes [#1622](https://github.com/open-data-plan/g2plot-vue/issues/1622) 140 | - chore(deps-dev): bump vue from 3.4.38 to 3.5.3 (#1635) ([71d62b5](https://github.com/open-data-plan/g2plot-vue/commit/71d62b5)), closes [#1635](https://github.com/open-data-plan/g2plot-vue/issues/1635) 141 | - chore(deps-dev): bump vue from 3.5.10 to 3.5.11 (#1657) ([6700788](https://github.com/open-data-plan/g2plot-vue/commit/6700788)), closes [#1657](https://github.com/open-data-plan/g2plot-vue/issues/1657) 142 | - chore(deps-dev): bump vue from 3.5.11 to 3.5.12 (#1668) ([cdf342f](https://github.com/open-data-plan/g2plot-vue/commit/cdf342f)), closes [#1668](https://github.com/open-data-plan/g2plot-vue/issues/1668) 143 | - chore(deps-dev): bump vue from 3.5.12 to 3.5.13 (#1690) ([0514427](https://github.com/open-data-plan/g2plot-vue/commit/0514427)), closes [#1690](https://github.com/open-data-plan/g2plot-vue/issues/1690) 144 | - chore(deps-dev): bump vue from 3.5.3 to 3.5.6 (#1641) ([cd0d31a](https://github.com/open-data-plan/g2plot-vue/commit/cd0d31a)), closes [#1641](https://github.com/open-data-plan/g2plot-vue/issues/1641) 145 | - chore(deps-dev): bump vue from 3.5.6 to 3.5.8 (#1651) ([43f5790](https://github.com/open-data-plan/g2plot-vue/commit/43f5790)), closes [#1651](https://github.com/open-data-plan/g2plot-vue/issues/1651) 146 | - chore(deps-dev): bump vue from 3.5.8 to 3.5.10 (#1652) ([444027f](https://github.com/open-data-plan/g2plot-vue/commit/444027f)), closes [#1652](https://github.com/open-data-plan/g2plot-vue/issues/1652) 147 | - chore(deps): bump vue-demi from 0.14.8 to 0.14.10 (#1606) ([46d59d0](https://github.com/open-data-plan/g2plot-vue/commit/46d59d0)), closes [#1606](https://github.com/open-data-plan/g2plot-vue/issues/1606) 148 | 149 | ## 3.6.10 (2024-07-23) 150 | 151 | - chore: downgrade eslint ([b4b4b8d](https://github.com/open-data-plan/g2plot-vue/commit/b4b4b8d)) 152 | - chore: reset tsconfig ([60e823b](https://github.com/open-data-plan/g2plot-vue/commit/60e823b)) 153 | - chore: update build config ([91c10c8](https://github.com/open-data-plan/g2plot-vue/commit/91c10c8)) 154 | - chore: update husky config ([883815b](https://github.com/open-data-plan/g2plot-vue/commit/883815b)) 155 | - chore(deps-dev): bump @babel/cli from 7.23.9 to 7.24.1 (#1475) ([cdf4334](https://github.com/open-data-plan/g2plot-vue/commit/cdf4334)), closes [#1475](https://github.com/open-data-plan/g2plot-vue/issues/1475) 156 | - chore(deps-dev): bump @babel/cli from 7.24.1 to 7.24.5 (#1526) ([a2b5795](https://github.com/open-data-plan/g2plot-vue/commit/a2b5795)), closes [#1526](https://github.com/open-data-plan/g2plot-vue/issues/1526) 157 | - chore(deps-dev): bump @babel/cli from 7.24.5 to 7.24.6 (#1549) ([ad742b3](https://github.com/open-data-plan/g2plot-vue/commit/ad742b3)), closes [#1549](https://github.com/open-data-plan/g2plot-vue/issues/1549) 158 | - chore(deps-dev): bump @babel/cli from 7.24.6 to 7.24.7 (#1561) ([b7d0f87](https://github.com/open-data-plan/g2plot-vue/commit/b7d0f87)), closes [#1561](https://github.com/open-data-plan/g2plot-vue/issues/1561) 159 | - chore(deps-dev): bump @babel/cli from 7.24.7 to 7.24.8 (#1589) ([fb9efc0](https://github.com/open-data-plan/g2plot-vue/commit/fb9efc0)), closes [#1589](https://github.com/open-data-plan/g2plot-vue/issues/1589) 160 | - chore(deps-dev): bump @babel/preset-typescript from 7.23.3 to 7.24.1 (#1480) ([af42964](https://github.com/open-data-plan/g2plot-vue/commit/af42964)), closes [#1480](https://github.com/open-data-plan/g2plot-vue/issues/1480) 161 | - chore(deps-dev): bump @babel/preset-typescript from 7.24.1 to 7.24.6 (#1548) ([024f4df](https://github.com/open-data-plan/g2plot-vue/commit/024f4df)), closes [#1548](https://github.com/open-data-plan/g2plot-vue/issues/1548) 162 | - chore(deps-dev): bump @babel/preset-typescript from 7.24.6 to 7.24.7 (#1559) ([1cfa06d](https://github.com/open-data-plan/g2plot-vue/commit/1cfa06d)), closes [#1559](https://github.com/open-data-plan/g2plot-vue/issues/1559) 163 | - chore(deps-dev): bump @commitlint/cli from 19.1.0 to 19.2.1 (#1476) ([c9570b4](https://github.com/open-data-plan/g2plot-vue/commit/c9570b4)), closes [#1476](https://github.com/open-data-plan/g2plot-vue/issues/1476) 164 | - chore(deps-dev): bump @commitlint/cli from 19.2.1 to 19.2.2 (#1505) ([61f9a51](https://github.com/open-data-plan/g2plot-vue/commit/61f9a51)), closes [#1505](https://github.com/open-data-plan/g2plot-vue/issues/1505) 165 | - chore(deps-dev): bump @commitlint/cli from 19.2.2 to 19.3.0 (#1514) ([4041fa1](https://github.com/open-data-plan/g2plot-vue/commit/4041fa1)), closes [#1514](https://github.com/open-data-plan/g2plot-vue/issues/1514) 166 | - chore(deps-dev): bump @commitlint/config-conventional from 19.1.0 to 19.2.2 (#1502) ([fc7c520](https://github.com/open-data-plan/g2plot-vue/commit/fc7c520)), closes [#1502](https://github.com/open-data-plan/g2plot-vue/issues/1502) 167 | - chore(deps-dev): bump @types/eslint from 8.56.5 to 8.56.7 (#1487) ([e738b9f](https://github.com/open-data-plan/g2plot-vue/commit/e738b9f)), closes [#1487](https://github.com/open-data-plan/g2plot-vue/issues/1487) 168 | - chore(deps-dev): bump @types/eslint from 8.56.7 to 8.56.8 (#1500) ([e6b3203](https://github.com/open-data-plan/g2plot-vue/commit/e6b3203)), closes [#1500](https://github.com/open-data-plan/g2plot-vue/issues/1500) 169 | - chore(deps-dev): bump @types/eslint from 8.56.8 to 8.56.9 (#1501) ([52a2e19](https://github.com/open-data-plan/g2plot-vue/commit/52a2e19)), closes [#1501](https://github.com/open-data-plan/g2plot-vue/issues/1501) 170 | - chore(deps-dev): bump @types/eslint from 8.56.9 to 8.56.10 (#1512) ([32fd487](https://github.com/open-data-plan/g2plot-vue/commit/32fd487)), closes [#1512](https://github.com/open-data-plan/g2plot-vue/issues/1512) 171 | - chore(deps-dev): bump @types/lodash from 4.17.0 to 4.17.1 (#1528) ([dd2ae2e](https://github.com/open-data-plan/g2plot-vue/commit/dd2ae2e)), closes [#1528](https://github.com/open-data-plan/g2plot-vue/issues/1528) 172 | - chore(deps-dev): bump @types/lodash from 4.17.1 to 4.17.4 (#1539) ([4749b21](https://github.com/open-data-plan/g2plot-vue/commit/4749b21)), closes [#1539](https://github.com/open-data-plan/g2plot-vue/issues/1539) 173 | - chore(deps-dev): bump @types/lodash from 4.17.4 to 4.17.5 (#1562) ([cd55e8f](https://github.com/open-data-plan/g2plot-vue/commit/cd55e8f)), closes [#1562](https://github.com/open-data-plan/g2plot-vue/issues/1562) 174 | - chore(deps-dev): bump @types/lodash from 4.17.5 to 4.17.6 (#1578) ([514bf7b](https://github.com/open-data-plan/g2plot-vue/commit/514bf7b)), closes [#1578](https://github.com/open-data-plan/g2plot-vue/issues/1578) 175 | - chore(deps-dev): bump @types/lodash from 4.17.6 to 4.17.7 (#1592) ([9973f8e](https://github.com/open-data-plan/g2plot-vue/commit/9973f8e)), closes [#1592](https://github.com/open-data-plan/g2plot-vue/issues/1592) 176 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.10.0 to 7.11.0 (#1550) ([bc67173](https://github.com/open-data-plan/g2plot-vue/commit/bc67173)), closes [#1550](https://github.com/open-data-plan/g2plot-vue/issues/1550) 177 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.11.0 to 7.12.0 (#1555) ([ce789fc](https://github.com/open-data-plan/g2plot-vue/commit/ce789fc)), closes [#1555](https://github.com/open-data-plan/g2plot-vue/issues/1555) 178 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.12.0 to 7.13.0 (#1563) ([39e0a5f](https://github.com/open-data-plan/g2plot-vue/commit/39e0a5f)), closes [#1563](https://github.com/open-data-plan/g2plot-vue/issues/1563) 179 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.13.0 to 7.13.1 (#1572) ([16c3c43](https://github.com/open-data-plan/g2plot-vue/commit/16c3c43)), closes [#1572](https://github.com/open-data-plan/g2plot-vue/issues/1572) 180 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.13.1 to 7.14.1 (#1576) ([2650aec](https://github.com/open-data-plan/g2plot-vue/commit/2650aec)), closes [#1576](https://github.com/open-data-plan/g2plot-vue/issues/1576) 181 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.14.1 to 7.15.0 (#1585) ([ec6936d](https://github.com/open-data-plan/g2plot-vue/commit/ec6936d)), closes [#1585](https://github.com/open-data-plan/g2plot-vue/issues/1585) 182 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.15.0 to 7.16.0 (#1587) ([c7f5b09](https://github.com/open-data-plan/g2plot-vue/commit/c7f5b09)), closes [#1587](https://github.com/open-data-plan/g2plot-vue/issues/1587) 183 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.16.0 to 7.16.1 (#1593) ([efc32c7](https://github.com/open-data-plan/g2plot-vue/commit/efc32c7)), closes [#1593](https://github.com/open-data-plan/g2plot-vue/issues/1593) 184 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.16.1 to 7.17.0 (#1602) ([f76d262](https://github.com/open-data-plan/g2plot-vue/commit/f76d262)), closes [#1602](https://github.com/open-data-plan/g2plot-vue/issues/1602) 185 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.2.0 to 7.4.0 (#1484) ([9bdb878](https://github.com/open-data-plan/g2plot-vue/commit/9bdb878)), closes [#1484](https://github.com/open-data-plan/g2plot-vue/issues/1484) 186 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.4.0 to 7.5.0 (#1489) ([142b6cb](https://github.com/open-data-plan/g2plot-vue/commit/142b6cb)), closes [#1489](https://github.com/open-data-plan/g2plot-vue/issues/1489) 187 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.5.0 to 7.6.0 (#1494) ([23f989c](https://github.com/open-data-plan/g2plot-vue/commit/23f989c)), closes [#1494](https://github.com/open-data-plan/g2plot-vue/issues/1494) 188 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.6.0 to 7.7.0 (#1508) ([b32f012](https://github.com/open-data-plan/g2plot-vue/commit/b32f012)), closes [#1508](https://github.com/open-data-plan/g2plot-vue/issues/1508) 189 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.7.0 to 7.7.1 (#1517) ([4cb5e95](https://github.com/open-data-plan/g2plot-vue/commit/4cb5e95)), closes [#1517](https://github.com/open-data-plan/g2plot-vue/issues/1517) 190 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.7.1 to 7.8.0 (#1524) ([870e930](https://github.com/open-data-plan/g2plot-vue/commit/870e930)), closes [#1524](https://github.com/open-data-plan/g2plot-vue/issues/1524) 191 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.8.0 to 7.9.0 (#1536) ([57f471b](https://github.com/open-data-plan/g2plot-vue/commit/57f471b)), closes [#1536](https://github.com/open-data-plan/g2plot-vue/issues/1536) 192 | - chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.9.0 to 7.10.0 (#1543) ([10b4b60](https://github.com/open-data-plan/g2plot-vue/commit/10b4b60)), closes [#1543](https://github.com/open-data-plan/g2plot-vue/issues/1543) 193 | - chore(deps-dev): bump @typescript-eslint/parser from 7.10.0 to 7.11.0 (#1551) ([107e38c](https://github.com/open-data-plan/g2plot-vue/commit/107e38c)), closes [#1551](https://github.com/open-data-plan/g2plot-vue/issues/1551) 194 | - chore(deps-dev): bump @typescript-eslint/parser from 7.11.0 to 7.12.0 (#1554) ([023a0c5](https://github.com/open-data-plan/g2plot-vue/commit/023a0c5)), closes [#1554](https://github.com/open-data-plan/g2plot-vue/issues/1554) 195 | - chore(deps-dev): bump @typescript-eslint/parser from 7.12.0 to 7.13.0 (#1564) ([af8dc30](https://github.com/open-data-plan/g2plot-vue/commit/af8dc30)), closes [#1564](https://github.com/open-data-plan/g2plot-vue/issues/1564) 196 | - chore(deps-dev): bump @typescript-eslint/parser from 7.13.0 to 7.13.1 (#1571) ([84bed07](https://github.com/open-data-plan/g2plot-vue/commit/84bed07)), closes [#1571](https://github.com/open-data-plan/g2plot-vue/issues/1571) 197 | - chore(deps-dev): bump @typescript-eslint/parser from 7.13.1 to 7.14.1 (#1577) ([22b2bcb](https://github.com/open-data-plan/g2plot-vue/commit/22b2bcb)), closes [#1577](https://github.com/open-data-plan/g2plot-vue/issues/1577) 198 | - chore(deps-dev): bump @typescript-eslint/parser from 7.14.1 to 7.15.0 (#1582) ([b75fc3d](https://github.com/open-data-plan/g2plot-vue/commit/b75fc3d)), closes [#1582](https://github.com/open-data-plan/g2plot-vue/issues/1582) 199 | - chore(deps-dev): bump @typescript-eslint/parser from 7.15.0 to 7.16.0 (#1588) ([8a06470](https://github.com/open-data-plan/g2plot-vue/commit/8a06470)), closes [#1588](https://github.com/open-data-plan/g2plot-vue/issues/1588) 200 | - chore(deps-dev): bump @typescript-eslint/parser from 7.16.0 to 7.16.1 (#1594) ([857ab61](https://github.com/open-data-plan/g2plot-vue/commit/857ab61)), closes [#1594](https://github.com/open-data-plan/g2plot-vue/issues/1594) 201 | - chore(deps-dev): bump @typescript-eslint/parser from 7.16.1 to 7.17.0 (#1601) ([595f7df](https://github.com/open-data-plan/g2plot-vue/commit/595f7df)), closes [#1601](https://github.com/open-data-plan/g2plot-vue/issues/1601) 202 | - chore(deps-dev): bump @typescript-eslint/parser from 7.2.0 to 7.4.0 (#1485) ([197f98c](https://github.com/open-data-plan/g2plot-vue/commit/197f98c)), closes [#1485](https://github.com/open-data-plan/g2plot-vue/issues/1485) 203 | - chore(deps-dev): bump @typescript-eslint/parser from 7.4.0 to 7.5.0 (#1488) ([3415621](https://github.com/open-data-plan/g2plot-vue/commit/3415621)), closes [#1488](https://github.com/open-data-plan/g2plot-vue/issues/1488) 204 | - chore(deps-dev): bump @typescript-eslint/parser from 7.5.0 to 7.6.0 (#1497) ([db6405d](https://github.com/open-data-plan/g2plot-vue/commit/db6405d)), closes [#1497](https://github.com/open-data-plan/g2plot-vue/issues/1497) 205 | - chore(deps-dev): bump @typescript-eslint/parser from 7.6.0 to 7.7.0 (#1507) ([7f61422](https://github.com/open-data-plan/g2plot-vue/commit/7f61422)), closes [#1507](https://github.com/open-data-plan/g2plot-vue/issues/1507) 206 | - chore(deps-dev): bump @typescript-eslint/parser from 7.7.0 to 7.7.1 (#1515) ([460ebab](https://github.com/open-data-plan/g2plot-vue/commit/460ebab)), closes [#1515](https://github.com/open-data-plan/g2plot-vue/issues/1515) 207 | - chore(deps-dev): bump @typescript-eslint/parser from 7.7.1 to 7.8.0 (#1525) ([0b9419d](https://github.com/open-data-plan/g2plot-vue/commit/0b9419d)), closes [#1525](https://github.com/open-data-plan/g2plot-vue/issues/1525) 208 | - chore(deps-dev): bump @typescript-eslint/parser from 7.8.0 to 7.9.0 (#1537) ([5725cbf](https://github.com/open-data-plan/g2plot-vue/commit/5725cbf)), closes [#1537](https://github.com/open-data-plan/g2plot-vue/issues/1537) 209 | - chore(deps-dev): bump @typescript-eslint/parser from 7.9.0 to 7.10.0 (#1542) ([2ed40b6](https://github.com/open-data-plan/g2plot-vue/commit/2ed40b6)), closes [#1542](https://github.com/open-data-plan/g2plot-vue/issues/1542) 210 | - chore(deps-dev): bump @vue/test-utils from 2.4.4 to 2.4.5 (#1473) ([576d4ea](https://github.com/open-data-plan/g2plot-vue/commit/576d4ea)), closes [#1473](https://github.com/open-data-plan/g2plot-vue/issues/1473) 211 | - chore(deps-dev): bump @vue/test-utils from 2.4.5 to 2.4.6 (#1531) ([7a3fa9f](https://github.com/open-data-plan/g2plot-vue/commit/7a3fa9f)), closes [#1531](https://github.com/open-data-plan/g2plot-vue/issues/1531) 212 | - chore(deps-dev): bump conventional-changelog-cli from 4.1.0 to 5.0.0 (#1529) ([41cbcce](https://github.com/open-data-plan/g2plot-vue/commit/41cbcce)), closes [#1529](https://github.com/open-data-plan/g2plot-vue/issues/1529) 213 | - chore(deps-dev): bump eslint from 8.57.0 to 9.0.0 (#1492) ([db3c77b](https://github.com/open-data-plan/g2plot-vue/commit/db3c77b)), closes [#1492](https://github.com/open-data-plan/g2plot-vue/issues/1492) 214 | - chore(deps-dev): bump eslint from 9.0.0 to 9.1.0 (#1513) ([be911a0](https://github.com/open-data-plan/g2plot-vue/commit/be911a0)), closes [#1513](https://github.com/open-data-plan/g2plot-vue/issues/1513) 215 | - chore(deps-dev): bump eslint from 9.1.0 to 9.1.1 (#1518) ([1b578ef](https://github.com/open-data-plan/g2plot-vue/commit/1b578ef)), closes [#1518](https://github.com/open-data-plan/g2plot-vue/issues/1518) 216 | - chore(deps-dev): bump eslint from 9.1.1 to 9.2.0 (#1530) ([d8f991d](https://github.com/open-data-plan/g2plot-vue/commit/d8f991d)), closes [#1530](https://github.com/open-data-plan/g2plot-vue/issues/1530) 217 | - chore(deps-dev): bump eslint from 9.2.0 to 9.3.0 (#1540) ([e78a6f0](https://github.com/open-data-plan/g2plot-vue/commit/e78a6f0)), closes [#1540](https://github.com/open-data-plan/g2plot-vue/issues/1540) 218 | - chore(deps-dev): bump eslint from 9.3.0 to 9.4.0 (#1553) ([0c82b66](https://github.com/open-data-plan/g2plot-vue/commit/0c82b66)), closes [#1553](https://github.com/open-data-plan/g2plot-vue/issues/1553) 219 | - chore(deps-dev): bump eslint from 9.4.0 to 9.5.0 (#1569) ([bb82752](https://github.com/open-data-plan/g2plot-vue/commit/bb82752)), closes [#1569](https://github.com/open-data-plan/g2plot-vue/issues/1569) 220 | - chore(deps-dev): bump eslint from 9.5.0 to 9.6.0 (#1581) ([60989ad](https://github.com/open-data-plan/g2plot-vue/commit/60989ad)), closes [#1581](https://github.com/open-data-plan/g2plot-vue/issues/1581) 221 | - chore(deps-dev): bump eslint from 9.6.0 to 9.7.0 (#1591) ([fc9efb9](https://github.com/open-data-plan/g2plot-vue/commit/fc9efb9)), closes [#1591](https://github.com/open-data-plan/g2plot-vue/issues/1591) 222 | - chore(deps-dev): bump eslint-plugin-n from 16.6.2 to 17.0.0 (#1491) ([4f9cb6a](https://github.com/open-data-plan/g2plot-vue/commit/4f9cb6a)), closes [#1491](https://github.com/open-data-plan/g2plot-vue/issues/1491) 223 | - chore(deps-dev): bump eslint-plugin-n from 17.0.0 to 17.1.0 (#1496) ([2d15327](https://github.com/open-data-plan/g2plot-vue/commit/2d15327)), closes [#1496](https://github.com/open-data-plan/g2plot-vue/issues/1496) 224 | - chore(deps-dev): bump eslint-plugin-n from 17.1.0 to 17.2.0 (#1498) ([e4e9e8e](https://github.com/open-data-plan/g2plot-vue/commit/e4e9e8e)), closes [#1498](https://github.com/open-data-plan/g2plot-vue/issues/1498) 225 | - chore(deps-dev): bump eslint-plugin-n from 17.2.0 to 17.2.1 (#1503) ([4a94fc8](https://github.com/open-data-plan/g2plot-vue/commit/4a94fc8)), closes [#1503](https://github.com/open-data-plan/g2plot-vue/issues/1503) 226 | - chore(deps-dev): bump eslint-plugin-n from 17.2.1 to 17.3.0 (#1520) ([e87cd78](https://github.com/open-data-plan/g2plot-vue/commit/e87cd78)), closes [#1520](https://github.com/open-data-plan/g2plot-vue/issues/1520) 227 | - chore(deps-dev): bump eslint-plugin-n from 17.3.0 to 17.3.1 (#1521) ([98d6641](https://github.com/open-data-plan/g2plot-vue/commit/98d6641)), closes [#1521](https://github.com/open-data-plan/g2plot-vue/issues/1521) 228 | - chore(deps-dev): bump eslint-plugin-n from 17.3.1 to 17.4.0 (#1527) ([10eea25](https://github.com/open-data-plan/g2plot-vue/commit/10eea25)), closes [#1527](https://github.com/open-data-plan/g2plot-vue/issues/1527) 229 | - chore(deps-dev): bump eslint-plugin-n from 17.4.0 to 17.5.1 (#1532) ([2acde56](https://github.com/open-data-plan/g2plot-vue/commit/2acde56)), closes [#1532](https://github.com/open-data-plan/g2plot-vue/issues/1532) 230 | - chore(deps-dev): bump eslint-plugin-n from 17.5.1 to 17.6.0 (#1535) ([7e2f99d](https://github.com/open-data-plan/g2plot-vue/commit/7e2f99d)), closes [#1535](https://github.com/open-data-plan/g2plot-vue/issues/1535) 231 | - chore(deps-dev): bump eslint-plugin-n from 17.6.0 to 17.7.0 (#1538) ([e9c93f1](https://github.com/open-data-plan/g2plot-vue/commit/e9c93f1)), closes [#1538](https://github.com/open-data-plan/g2plot-vue/issues/1538) 232 | - chore(deps-dev): bump eslint-plugin-n from 17.7.0 to 17.8.0 (#1558) ([680add8](https://github.com/open-data-plan/g2plot-vue/commit/680add8)), closes [#1558](https://github.com/open-data-plan/g2plot-vue/issues/1558) 233 | - chore(deps-dev): bump eslint-plugin-n from 17.8.0 to 17.8.1 (#1560) ([84a5458](https://github.com/open-data-plan/g2plot-vue/commit/84a5458)), closes [#1560](https://github.com/open-data-plan/g2plot-vue/issues/1560) 234 | - chore(deps-dev): bump eslint-plugin-n from 17.8.1 to 17.9.0 (#1568) ([f458785](https://github.com/open-data-plan/g2plot-vue/commit/f458785)), closes [#1568](https://github.com/open-data-plan/g2plot-vue/issues/1568) 235 | - chore(deps-dev): bump eslint-plugin-prettier from 5.1.3 to 5.2.1 (#1596) ([d8f290f](https://github.com/open-data-plan/g2plot-vue/commit/d8f290f)), closes [#1596](https://github.com/open-data-plan/g2plot-vue/issues/1596) 236 | - chore(deps-dev): bump eslint-plugin-promise from 6.1.1 to 6.2.0 (#1547) ([89de156](https://github.com/open-data-plan/g2plot-vue/commit/89de156)), closes [#1547](https://github.com/open-data-plan/g2plot-vue/issues/1547) 237 | - chore(deps-dev): bump eslint-plugin-promise from 6.2.0 to 6.4.0 (#1580) ([e70e67c](https://github.com/open-data-plan/g2plot-vue/commit/e70e67c)), closes [#1580](https://github.com/open-data-plan/g2plot-vue/issues/1580) 238 | - chore(deps-dev): bump eslint-plugin-promise from 6.4.0 to 6.6.0 (#1599) ([2ee30d2](https://github.com/open-data-plan/g2plot-vue/commit/2ee30d2)), closes [#1599](https://github.com/open-data-plan/g2plot-vue/issues/1599) 239 | - chore(deps-dev): bump eslint-plugin-vue from 9.23.0 to 9.24.0 (#1483) ([7f1615e](https://github.com/open-data-plan/g2plot-vue/commit/7f1615e)), closes [#1483](https://github.com/open-data-plan/g2plot-vue/issues/1483) 240 | - chore(deps-dev): bump eslint-plugin-vue from 9.24.0 to 9.24.1 (#1493) ([a8c3909](https://github.com/open-data-plan/g2plot-vue/commit/a8c3909)), closes [#1493](https://github.com/open-data-plan/g2plot-vue/issues/1493) 241 | - chore(deps-dev): bump eslint-plugin-vue from 9.24.1 to 9.25.0 (#1504) ([e8fb34f](https://github.com/open-data-plan/g2plot-vue/commit/e8fb34f)), closes [#1504](https://github.com/open-data-plan/g2plot-vue/issues/1504) 242 | - chore(deps-dev): bump eslint-plugin-vue from 9.25.0 to 9.26.0 (#1534) ([f0bacfa](https://github.com/open-data-plan/g2plot-vue/commit/f0bacfa)), closes [#1534](https://github.com/open-data-plan/g2plot-vue/issues/1534) 243 | - chore(deps-dev): bump eslint-plugin-vue from 9.26.0 to 9.27.0 (#1583) ([38adc86](https://github.com/open-data-plan/g2plot-vue/commit/38adc86)), closes [#1583](https://github.com/open-data-plan/g2plot-vue/issues/1583) 244 | - chore(deps-dev): bump husky from 9.0.11 to 9.1.1 (#1597) ([e8268fd](https://github.com/open-data-plan/g2plot-vue/commit/e8268fd)), closes [#1597](https://github.com/open-data-plan/g2plot-vue/issues/1597) 245 | - chore(deps-dev): bump lint-staged from 15.2.2 to 15.2.4 (#1545) ([ad8f6db](https://github.com/open-data-plan/g2plot-vue/commit/ad8f6db)), closes [#1545](https://github.com/open-data-plan/g2plot-vue/issues/1545) 246 | - chore(deps-dev): bump lint-staged from 15.2.4 to 15.2.5 (#1546) ([92257aa](https://github.com/open-data-plan/g2plot-vue/commit/92257aa)), closes [#1546](https://github.com/open-data-plan/g2plot-vue/issues/1546) 247 | - chore(deps-dev): bump lint-staged from 15.2.5 to 15.2.6 (#1565) ([680c9b8](https://github.com/open-data-plan/g2plot-vue/commit/680c9b8)), closes [#1565](https://github.com/open-data-plan/g2plot-vue/issues/1565) 248 | - chore(deps-dev): bump lint-staged from 15.2.6 to 15.2.7 (#1566) ([f2855b4](https://github.com/open-data-plan/g2plot-vue/commit/f2855b4)), closes [#1566](https://github.com/open-data-plan/g2plot-vue/issues/1566) 249 | - chore(deps-dev): bump typescript from 5.4.2 to 5.4.3 (#1481) ([26db3ce](https://github.com/open-data-plan/g2plot-vue/commit/26db3ce)), closes [#1481](https://github.com/open-data-plan/g2plot-vue/issues/1481) 250 | - chore(deps-dev): bump typescript from 5.4.3 to 5.4.4 (#1490) ([9068252](https://github.com/open-data-plan/g2plot-vue/commit/9068252)), closes [#1490](https://github.com/open-data-plan/g2plot-vue/issues/1490) 251 | - chore(deps-dev): bump typescript from 5.4.4 to 5.4.5 (#1499) ([327614f](https://github.com/open-data-plan/g2plot-vue/commit/327614f)), closes [#1499](https://github.com/open-data-plan/g2plot-vue/issues/1499) 252 | - chore(deps-dev): bump typescript from 5.4.5 to 5.5.2 (#1574) ([732f1a8](https://github.com/open-data-plan/g2plot-vue/commit/732f1a8)), closes [#1574](https://github.com/open-data-plan/g2plot-vue/issues/1574) 253 | - chore(deps-dev): bump typescript from 5.5.2 to 5.5.3 (#1584) ([cac8d2e](https://github.com/open-data-plan/g2plot-vue/commit/cac8d2e)), closes [#1584](https://github.com/open-data-plan/g2plot-vue/issues/1584) 254 | - chore(deps-dev): bump typescript from 5.5.3 to 5.5.4 (#1600) ([9b28ad9](https://github.com/open-data-plan/g2plot-vue/commit/9b28ad9)), closes [#1600](https://github.com/open-data-plan/g2plot-vue/issues/1600) 255 | - chore(deps-dev): bump vitepress from 1.0.0-rc.45 to 1.0.2 (#1486) ([346bef2](https://github.com/open-data-plan/g2plot-vue/commit/346bef2)), closes [#1486](https://github.com/open-data-plan/g2plot-vue/issues/1486) 256 | - chore(deps-dev): bump vitepress from 1.0.2 to 1.1.0 (#1495) ([61adc22](https://github.com/open-data-plan/g2plot-vue/commit/61adc22)), closes [#1495](https://github.com/open-data-plan/g2plot-vue/issues/1495) 257 | - chore(deps-dev): bump vitepress from 1.1.0 to 1.1.1 (#1510) ([a25138b](https://github.com/open-data-plan/g2plot-vue/commit/a25138b)), closes [#1510](https://github.com/open-data-plan/g2plot-vue/issues/1510) 258 | - chore(deps-dev): bump vitepress from 1.1.1 to 1.1.3 (#1511) ([43efbc0](https://github.com/open-data-plan/g2plot-vue/commit/43efbc0)), closes [#1511](https://github.com/open-data-plan/g2plot-vue/issues/1511) 259 | - chore(deps-dev): bump vitepress from 1.1.3 to 1.1.4 (#1523) ([5e284e5](https://github.com/open-data-plan/g2plot-vue/commit/5e284e5)), closes [#1523](https://github.com/open-data-plan/g2plot-vue/issues/1523) 260 | - chore(deps-dev): bump vitepress from 1.1.4 to 1.2.0 (#1541) ([52cee8a](https://github.com/open-data-plan/g2plot-vue/commit/52cee8a)), closes [#1541](https://github.com/open-data-plan/g2plot-vue/issues/1541) 261 | - chore(deps-dev): bump vitepress from 1.2.0 to 1.2.2 (#1544) ([4e7a3f0](https://github.com/open-data-plan/g2plot-vue/commit/4e7a3f0)), closes [#1544](https://github.com/open-data-plan/g2plot-vue/issues/1544) 262 | - chore(deps-dev): bump vitepress from 1.2.2 to 1.2.3 (#1556) ([8dbe409](https://github.com/open-data-plan/g2plot-vue/commit/8dbe409)), closes [#1556](https://github.com/open-data-plan/g2plot-vue/issues/1556) 263 | - chore(deps-dev): bump vitepress from 1.2.3 to 1.3.0 (#1586) ([e6a0b3e](https://github.com/open-data-plan/g2plot-vue/commit/e6a0b3e)), closes [#1586](https://github.com/open-data-plan/g2plot-vue/issues/1586) 264 | - chore(deps-dev): bump vitepress from 1.3.0 to 1.3.1 (#1590) ([d656a59](https://github.com/open-data-plan/g2plot-vue/commit/d656a59)), closes [#1590](https://github.com/open-data-plan/g2plot-vue/issues/1590) 265 | - chore(deps-dev): bump vue from 3.4.21 to 3.4.22 (#1506) ([021eb55](https://github.com/open-data-plan/g2plot-vue/commit/021eb55)), closes [#1506](https://github.com/open-data-plan/g2plot-vue/issues/1506) 266 | - chore(deps-dev): bump vue from 3.4.22 to 3.4.23 (#1509) ([9669383](https://github.com/open-data-plan/g2plot-vue/commit/9669383)), closes [#1509](https://github.com/open-data-plan/g2plot-vue/issues/1509) 267 | - chore(deps-dev): bump vue from 3.4.23 to 3.4.24 (#1516) ([699d65c](https://github.com/open-data-plan/g2plot-vue/commit/699d65c)), closes [#1516](https://github.com/open-data-plan/g2plot-vue/issues/1516) 268 | - chore(deps-dev): bump vue from 3.4.24 to 3.4.25 (#1519) ([d66955c](https://github.com/open-data-plan/g2plot-vue/commit/d66955c)), closes [#1519](https://github.com/open-data-plan/g2plot-vue/issues/1519) 269 | - chore(deps-dev): bump vue from 3.4.25 to 3.4.26 (#1522) ([3cbf5e7](https://github.com/open-data-plan/g2plot-vue/commit/3cbf5e7)), closes [#1522](https://github.com/open-data-plan/g2plot-vue/issues/1522) 270 | - chore(deps-dev): bump vue from 3.4.26 to 3.4.27 (#1533) ([91b194d](https://github.com/open-data-plan/g2plot-vue/commit/91b194d)), closes [#1533](https://github.com/open-data-plan/g2plot-vue/issues/1533) 271 | - chore(deps-dev): bump vue from 3.4.27 to 3.4.28 (#1567) ([7f1154a](https://github.com/open-data-plan/g2plot-vue/commit/7f1154a)), closes [#1567](https://github.com/open-data-plan/g2plot-vue/issues/1567) 272 | - chore(deps-dev): bump vue from 3.4.28 to 3.4.29 (#1570) ([3972065](https://github.com/open-data-plan/g2plot-vue/commit/3972065)), closes [#1570](https://github.com/open-data-plan/g2plot-vue/issues/1570) 273 | - chore(deps-dev): bump vue from 3.4.29 to 3.4.30 (#1575) ([82c7ecc](https://github.com/open-data-plan/g2plot-vue/commit/82c7ecc)), closes [#1575](https://github.com/open-data-plan/g2plot-vue/issues/1575) 274 | - chore(deps-dev): bump vue from 3.4.30 to 3.4.31 (#1579) ([f52536e](https://github.com/open-data-plan/g2plot-vue/commit/f52536e)), closes [#1579](https://github.com/open-data-plan/g2plot-vue/issues/1579) 275 | - chore(deps-dev): bump vue from 3.4.31 to 3.4.32 (#1595) ([0e785c5](https://github.com/open-data-plan/g2plot-vue/commit/0e785c5)), closes [#1595](https://github.com/open-data-plan/g2plot-vue/issues/1595) 276 | - chore(deps-dev): bump vue from 3.4.32 to 3.4.33 (#1598) ([c415061](https://github.com/open-data-plan/g2plot-vue/commit/c415061)), closes [#1598](https://github.com/open-data-plan/g2plot-vue/issues/1598) 277 | - chore(deps-dev): bump ws from 7.5.9 to 7.5.10 (#1573) ([f2ef00f](https://github.com/open-data-plan/g2plot-vue/commit/f2ef00f)), closes [#1573](https://github.com/open-data-plan/g2plot-vue/issues/1573) 278 | - chore(deps): bump vue-demi from 0.14.7 to 0.14.8 (#1552) ([312475f](https://github.com/open-data-plan/g2plot-vue/commit/312475f)), closes [#1552](https://github.com/open-data-plan/g2plot-vue/issues/1552) 279 | - ci: update automerge.yml ([b8824fa](https://github.com/open-data-plan/g2plot-vue/commit/b8824fa)) 280 | 281 | ## [3.6.9](https://github.com/open-data-plan/g2plot-vue/compare/v3.6.8...v3.6.9) (2024-03-14) 282 | 283 | ### Bug Fixes 284 | 285 | - fix ts type error ([063d91b](https://github.com/open-data-plan/g2plot-vue/commit/063d91b38314adb0a1d080138b93c36c56a81c28)) 286 | 287 | ## [3.6.8](https://github.com/open-data-plan/g2plot-vue/compare/v3.6.7...v3.6.8) (2024-01-05) 288 | 289 | ### Bug Fixes 290 | 291 | - attrs update ([bb28e15](https://github.com/open-data-plan/g2plot-vue/commit/bb28e15d2b31db56f2c9aa02c0c958bc848f53c2)), closes [#1392](https://github.com/open-data-plan/g2plot-vue/issues/1392) 292 | 293 | ## [3.6.7](https://github.com/open-data-plan/g2plot-vue/compare/v3.6.6...v3.6.7) (2023-07-01) 294 | 295 | ## [3.6.6](https://github.com/open-data-plan/g2plot-vue/compare/v3.6.5...v3.6.6) (2023-04-06) 296 | 297 | ## [3.6.5](https://github.com/open-data-plan/g2plot-vue/compare/v3.6.4...v3.6.5) (2023-01-29) 298 | 299 | ## [3.6.4](https://github.com/open-data-plan/g2plot-vue/compare/v3.6.3...v3.6.4) (2022-07-27) 300 | 301 | ## [3.6.3](https://github.com/open-data-plan/g2plot-vue/compare/v3.6.2...v3.6.3) (2022-01-17) 302 | 303 | ### Bug Fixes 304 | 305 | - **types:** fix type error ([3d9e6c6](https://github.com/open-data-plan/g2plot-vue/commit/3d9e6c6f92dc5668f0ed10f7d30fd56a749f7ac2)) 306 | 307 | ## [3.6.2](https://github.com/open-data-plan/g2plot-vue/compare/v3.6.1...v3.6.2) (2021-11-08) 308 | 309 | ## [3.6.1](https://github.com/open-data-plan/g2plot-vue/compare/v3.6.0...v3.6.1) (2021-10-28) 310 | 311 | # [3.6.0](https://github.com/open-data-plan/g2plot-vue/compare/v3.5.0...v3.6.0) (2021-09-24) 312 | 313 | ### Features 314 | 315 | - add onReady callback support ([a45c27f](https://github.com/open-data-plan/g2plot-vue/commit/a45c27ff06e9e5d26c2263f4bf8e1ee30ee5091a)) 316 | 317 | # [3.5.0](https://github.com/open-data-plan/g2plot-vue/compare/v3.4.1...v3.5.0) (2021-09-18) 318 | 319 | ### Bug Fixes 320 | 321 | - fix vue peer version for v3 ([5adeca8](https://github.com/open-data-plan/g2plot-vue/commit/5adeca87ca2ec5baf773520c10893edac3d3a217)) 322 | 323 | ### Features 324 | 325 | - introduce VennChart ([bdd9208](https://github.com/open-data-plan/g2plot-vue/commit/bdd9208a82be61bb1b358bd936d2de3820c20d3f)) 326 | 327 | ## [3.4.1](https://github.com/open-data-plan/g2plot-vue/compare/v3.4.0...v3.4.1) (2021-07-22) 328 | 329 | # [3.4.0](https://github.com/open-data-plan/g2plot-vue/compare/v3.3.2...v3.4.0) (2021-07-13) 330 | 331 | ### Features 332 | 333 | - introduce CirclePackingChart ([30014a6](https://github.com/open-data-plan/g2plot-vue/commit/30014a6c3ffea03ebaee54146d6a3155410739c7)) 334 | 335 | ## [3.3.2](https://github.com/open-data-plan/g2plot-vue/compare/v3.3.1...v3.3.2) (2021-07-08) 336 | 337 | ### Bug Fixes 338 | 339 | - fix build output ([e4fdf20](https://github.com/open-data-plan/g2plot-vue/commit/e4fdf205447663c4710c446a78d4826bffce7ed8)), closes [#334](https://github.com/open-data-plan/g2plot-vue/issues/334) 340 | 341 | ## [3.3.1](https://github.com/open-data-plan/g2plot-vue/compare/v3.3.0...v3.3.1) (2021-06-29) 342 | 343 | ### Bug Fixes 344 | 345 | - add sideEffects ([3812d05](https://github.com/open-data-plan/g2plot-vue/commit/3812d05c4774ca6d53c51bcf14be174bd496c43b)) 346 | 347 | # [3.3.0](https://github.com/open-data-plan/g2plot-vue/compare/v3.2.1...v3.3.0) (2021-06-16) 348 | 349 | ### Bug Fixes 350 | 351 | - add @babel/runtime to peer deps, closes: [#293](https://github.com/open-data-plan/g2plot-vue/issues/293) ([fab140e](https://github.com/open-data-plan/g2plot-vue/commit/fab140ecaa376a65c9496ee43070cbc1b6858999)) 352 | 353 | ### Features 354 | 355 | - introduce new charts ([fc7f0f3](https://github.com/open-data-plan/g2plot-vue/commit/fc7f0f3bf3f5ac5c0c8886cd8fde3800a3f57ad6)), closes [#299](https://github.com/open-data-plan/g2plot-vue/issues/299) 356 | 357 | ## [3.2.1](https://github.com/open-data-plan/g2plot-vue/compare/v3.2.0...v3.2.1) (2021-05-19) 358 | 359 | ### Bug Fixes 360 | 361 | - fix MixChart and MultiViewChart ([#256](https://github.com/open-data-plan/g2plot-vue/issues/256)) ([98fee07](https://github.com/open-data-plan/g2plot-vue/commit/98fee07704a71b16df535fd6e202f8c8ae94084c)) 362 | 363 | # [3.2.0](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.13...v3.2.0) (2021-05-14) 364 | 365 | ### Features 366 | 367 | - add MixChart and deprecate MultiViewChart ([81020bf](https://github.com/open-data-plan/g2plot-vue/commit/81020bf0c7aa4e2c69307cbdcc92407d5c9242b1)) 368 | 369 | ## [3.1.13](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.12...v3.1.13) (2021-04-23) 370 | 371 | ### Bug Fixes 372 | 373 | - fix ref ([f99bd4e](https://github.com/open-data-plan/g2plot-vue/commit/f99bd4ec1a09bb2c494b03eb2fc90c33f336b858)) 374 | - fix types definitions ([2652624](https://github.com/open-data-plan/g2plot-vue/commit/2652624d24d24efec83ae49bc2aaa79e75de1a8d)) 375 | 376 | ## [3.1.12](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.11...v3.1.12) (2021-04-07) 377 | 378 | ### Bug Fixes 379 | 380 | - fix chartRef ([ab4c947](https://github.com/open-data-plan/g2plot-vue/commit/ab4c947c5f0564317f98dbdfec40b91698adb214)) 381 | 382 | ## [3.1.11](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.10...v3.1.11) (2021-04-07) 383 | 384 | ## [3.1.10](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.9...v3.1.10) (2021-04-07) 385 | 386 | ### Bug Fixes 387 | 388 | - fix postinstall script ([17ec50f](https://github.com/open-data-plan/g2plot-vue/commit/17ec50fad6d670c79e3f37ca5b2646d4394d2627)) 389 | 390 | ## [3.1.9](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.8...v3.1.9) (2021-04-07) 391 | 392 | ### Bug Fixes 393 | 394 | - fix attrs chang not trigger re-render in vue 2 ([58f3bad](https://github.com/open-data-plan/g2plot-vue/commit/58f3bad0de5fce86a08606bbf530ded4b32d0426)), closes [#203](https://github.com/open-data-plan/g2plot-vue/issues/203) 395 | 396 | ## [3.1.8](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.7...v3.1.8) (2021-03-29) 397 | 398 | ### Bug Fixes 399 | 400 | - add core-js to deps ([64b3333](https://github.com/open-data-plan/g2plot-vue/commit/64b33335a18b4e00c7ea084d894eee3e5fdafc9a)) 401 | 402 | ## [3.1.7](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.6...v3.1.7) (2021-03-29) 403 | 404 | ### Features 405 | 406 | - bump vue-demi ([25b5757](https://github.com/open-data-plan/g2plot-vue/commit/25b5757fcf74857b9407b63168c45ceb70b851ce)) 407 | 408 | ## [3.1.6](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.5...v3.1.6) (2021-03-19) 409 | 410 | ## [3.1.5](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.4...v3.1.5) (2021-03-03) 411 | 412 | ### Bug Fixes 413 | 414 | - compatible with vue 2 ([bf772c1](https://github.com/open-data-plan/g2plot-vue/commit/bf772c19000a90b80dfaeff0c6e13b981924fbdf)) 415 | 416 | ## [3.1.4](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.3...v3.1.4) (2021-03-03) 417 | 418 | ### Bug Fixes 419 | 420 | - fix vue 2 jsx transform error ([f503530](https://github.com/open-data-plan/g2plot-vue/commit/f503530aba2dd907527c7969d4b0b45a7f1d9d68)) 421 | 422 | ## [3.1.3](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.2...v3.1.3) (2021-03-03) 423 | 424 | ### Bug Fixes 425 | 426 | - fix render error in vue 2 ([63d9901](https://github.com/open-data-plan/g2plot-vue/commit/63d99016d27f414bbd1ccdb8c0928f5e7ebe74d9)) 427 | 428 | ## [3.1.2](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.1...v3.1.2) (2021-03-03) 429 | 430 | ### Bug Fixes 431 | 432 | - fix missed postinstall scripts ([3090f9a](https://github.com/open-data-plan/g2plot-vue/commit/3090f9afee68cc327e639ca3f515b706b4966976)) 433 | 434 | ## [3.1.1](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.0...v3.1.1) (2021-03-03) 435 | 436 | ### Bug Fixes 437 | 438 | - fix output version ([407ef56](https://github.com/open-data-plan/g2plot-vue/commit/407ef562d8433266b07694af559530beeefa8416)) 439 | 440 | # [3.1.0](https://github.com/open-data-plan/g2plot-vue/compare/v3.0.1...v3.1.0) (2021-03-03) 441 | 442 | ### Features 443 | 444 | - add MultiViewChart ([c7adfc1](https://github.com/open-data-plan/g2plot-vue/commit/c7adfc16cd911daab89d4511ca4705a8c61409f3)) 445 | 446 | ## [3.0.1](https://github.com/open-data-plan/g2plot-vue/compare/v3.0.0...v3.0.1) (2021-03-03) 447 | 448 | ### Bug Fixes 449 | 450 | - add g2plot to peer ([30f8ab3](https://github.com/open-data-plan/g2plot-vue/commit/30f8ab37517698148fb6dd6793b7af69a7ce4191)) 451 | 452 | # [3.0.0](https://github.com/open-data-plan/g2plot-vue/compare/v2.4.2...v3.0.0) (2021-03-03) 453 | 454 | ### Features 455 | 456 | - support vue 2 ([67a657b](https://github.com/open-data-plan/g2plot-vue/commit/67a657bc61f3f13b2f05c3014371518128cbc035)) 457 | 458 | ## [2.4.2](https://github.com/open-data-plan/g2plot-vue/compare/v2.4.0...v2.4.2) (2021-02-22) 459 | 460 | ### Bug Fixes 461 | 462 | - fix types definitions ([39badf2](https://github.com/open-data-plan/g2plot-vue/commit/39badf2ea51a833185a915af29baf152f30dd939)), closes [#141](https://github.com/open-data-plan/g2plot-vue/issues/141) 463 | - mark props as writeable ([ae73878](https://github.com/open-data-plan/g2plot-vue/commit/ae738782b5b43c9ec75a35fd6e566367bf007481)), closes [#138](https://github.com/open-data-plan/g2plot-vue/issues/138) 464 | 465 | # [2.4.0](https://github.com/open-data-plan/g2plot-vue/compare/v2.3.1...v2.4.0) (2021-01-15) 466 | 467 | ### Features 468 | 469 | - introduce new charts ([dba197a](https://github.com/open-data-plan/g2plot-vue/commit/dba197a48ec3b8f70699045081b1e91797447348)) 470 | 471 | ## [2.3.1](https://github.com/open-data-plan/g2plot-vue/compare/v2.3.0...v2.3.1) (2020-11-24) 472 | 473 | # [2.3.0](https://github.com/open-data-plan/g2plot-vue/compare/v2.2.0...v2.3.0) (2020-11-10) 474 | 475 | ### Features 476 | 477 | - add new chart ([2262259](https://github.com/open-data-plan/g2plot-vue/commit/2262259be07e415ab0142c851b225c5403657d71)) 478 | 479 | # [2.2.0](https://github.com/open-data-plan/g2plot-vue/compare/v2.1.0...v2.2.0) (2020-10-23) 480 | 481 | ### Features 482 | 483 | - add new chart ([43c0882](https://github.com/open-data-plan/g2plot-vue/commit/43c08825b4cfa4134eca425a5507b3dfed474c5f)) 484 | 485 | # [2.1.0](https://github.com/open-data-plan/g2plot-vue/compare/v2.0.0...v2.1.0) (2020-10-16) 486 | 487 | ### Features 488 | 489 | - add waterfall chart suport ([902ccd1](https://github.com/open-data-plan/g2plot-vue/commit/902ccd1c8d2344871335c888b20192eae6cda057)) 490 | 491 | # [2.0.0](https://github.com/open-data-plan/g2plot-vue/compare/v1.0.0...v2.0.0) (2020-10-13) 492 | 493 | ### Features 494 | 495 | - compatible with g2plot v2 ([e71643c](https://github.com/open-data-plan/g2plot-vue/commit/e71643c8aaa9d037a8291d99a3e27bb02875e518)) 496 | 497 | # [1.0.0](https://github.com/open-data-plan/g2plot-vue/compare/c9116e3280cd5c18241cd101aa787063806fe19f...v1.0.0) (2020-09-01) 498 | 499 | ### Bug Fixes 500 | 501 | - fix vue waring ([6cc5441](https://github.com/open-data-plan/g2plot-vue/commit/6cc54414038b93f2eb64098348333de365e65591)) 502 | 503 | ### Features 504 | 505 | - support g2plot chart ([c9116e3](https://github.com/open-data-plan/g2plot-vue/commit/c9116e3280cd5c18241cd101aa787063806fe19f)) 506 | 507 | ## [3.6.6](https://github.com/open-data-plan/g2plot-vue/compare/v3.6.5...v3.6.6) (2023-04-06) 508 | 509 | ## [3.6.5](https://github.com/open-data-plan/g2plot-vue/compare/v3.6.4...v3.6.5) (2023-01-29) 510 | 511 | ## [3.6.4](https://github.com/open-data-plan/g2plot-vue/compare/v3.6.3...v3.6.4) (2022-07-27) 512 | 513 | ## [3.6.3](https://github.com/open-data-plan/g2plot-vue/compare/v3.6.2...v3.6.3) (2022-01-17) 514 | 515 | ### Bug Fixes 516 | 517 | - **types:** fix type error ([3d9e6c6](https://github.com/open-data-plan/g2plot-vue/commit/3d9e6c6f92dc5668f0ed10f7d30fd56a749f7ac2)) 518 | 519 | ## [3.6.2](https://github.com/open-data-plan/g2plot-vue/compare/v3.6.1...v3.6.2) (2021-11-08) 520 | 521 | ## [3.6.1](https://github.com/open-data-plan/g2plot-vue/compare/v3.6.0...v3.6.1) (2021-10-28) 522 | 523 | # [3.6.0](https://github.com/open-data-plan/g2plot-vue/compare/v3.5.0...v3.6.0) (2021-09-24) 524 | 525 | ### Features 526 | 527 | - add onReady callback support ([a45c27f](https://github.com/open-data-plan/g2plot-vue/commit/a45c27ff06e9e5d26c2263f4bf8e1ee30ee5091a)) 528 | 529 | # [3.5.0](https://github.com/open-data-plan/g2plot-vue/compare/v3.4.1...v3.5.0) (2021-09-18) 530 | 531 | ### Bug Fixes 532 | 533 | - fix vue peer version for v3 ([5adeca8](https://github.com/open-data-plan/g2plot-vue/commit/5adeca87ca2ec5baf773520c10893edac3d3a217)) 534 | 535 | ### Features 536 | 537 | - introduce VennChart ([bdd9208](https://github.com/open-data-plan/g2plot-vue/commit/bdd9208a82be61bb1b358bd936d2de3820c20d3f)) 538 | 539 | ## [3.4.1](https://github.com/open-data-plan/g2plot-vue/compare/v3.4.0...v3.4.1) (2021-07-22) 540 | 541 | # [3.4.0](https://github.com/open-data-plan/g2plot-vue/compare/v3.3.2...v3.4.0) (2021-07-13) 542 | 543 | ### Features 544 | 545 | - introduce CirclePackingChart ([30014a6](https://github.com/open-data-plan/g2plot-vue/commit/30014a6c3ffea03ebaee54146d6a3155410739c7)) 546 | 547 | ## [3.3.2](https://github.com/open-data-plan/g2plot-vue/compare/v3.3.1...v3.3.2) (2021-07-08) 548 | 549 | ### Bug Fixes 550 | 551 | - fix build output ([e4fdf20](https://github.com/open-data-plan/g2plot-vue/commit/e4fdf205447663c4710c446a78d4826bffce7ed8)), closes [#334](https://github.com/open-data-plan/g2plot-vue/issues/334) 552 | 553 | ## [3.3.1](https://github.com/open-data-plan/g2plot-vue/compare/v3.3.0...v3.3.1) (2021-06-29) 554 | 555 | ### Bug Fixes 556 | 557 | - add sideEffects ([3812d05](https://github.com/open-data-plan/g2plot-vue/commit/3812d05c4774ca6d53c51bcf14be174bd496c43b)) 558 | 559 | # [3.3.0](https://github.com/open-data-plan/g2plot-vue/compare/v3.2.1...v3.3.0) (2021-06-16) 560 | 561 | ### Bug Fixes 562 | 563 | - add @babel/runtime to peer deps, closes: [#293](https://github.com/open-data-plan/g2plot-vue/issues/293) ([fab140e](https://github.com/open-data-plan/g2plot-vue/commit/fab140ecaa376a65c9496ee43070cbc1b6858999)) 564 | 565 | ### Features 566 | 567 | - introduce new charts ([fc7f0f3](https://github.com/open-data-plan/g2plot-vue/commit/fc7f0f3bf3f5ac5c0c8886cd8fde3800a3f57ad6)), closes [#299](https://github.com/open-data-plan/g2plot-vue/issues/299) 568 | 569 | ## [3.2.1](https://github.com/open-data-plan/g2plot-vue/compare/v3.2.0...v3.2.1) (2021-05-19) 570 | 571 | ### Bug Fixes 572 | 573 | - fix MixChart and MultiViewChart ([#256](https://github.com/open-data-plan/g2plot-vue/issues/256)) ([98fee07](https://github.com/open-data-plan/g2plot-vue/commit/98fee07704a71b16df535fd6e202f8c8ae94084c)) 574 | 575 | # [3.2.0](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.13...v3.2.0) (2021-05-14) 576 | 577 | ### Features 578 | 579 | - add MixChart and deprecate MultiViewChart ([81020bf](https://github.com/open-data-plan/g2plot-vue/commit/81020bf0c7aa4e2c69307cbdcc92407d5c9242b1)) 580 | 581 | ## [3.1.13](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.12...v3.1.13) (2021-04-23) 582 | 583 | ### Bug Fixes 584 | 585 | - fix ref ([f99bd4e](https://github.com/open-data-plan/g2plot-vue/commit/f99bd4ec1a09bb2c494b03eb2fc90c33f336b858)) 586 | - fix types definitions ([2652624](https://github.com/open-data-plan/g2plot-vue/commit/2652624d24d24efec83ae49bc2aaa79e75de1a8d)) 587 | 588 | ## [3.1.12](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.11...v3.1.12) (2021-04-07) 589 | 590 | ### Bug Fixes 591 | 592 | - fix chartRef ([ab4c947](https://github.com/open-data-plan/g2plot-vue/commit/ab4c947c5f0564317f98dbdfec40b91698adb214)) 593 | 594 | ## [3.1.11](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.10...v3.1.11) (2021-04-07) 595 | 596 | ## [3.1.10](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.9...v3.1.10) (2021-04-07) 597 | 598 | ### Bug Fixes 599 | 600 | - fix postinstall script ([17ec50f](https://github.com/open-data-plan/g2plot-vue/commit/17ec50fad6d670c79e3f37ca5b2646d4394d2627)) 601 | 602 | ## [3.1.9](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.8...v3.1.9) (2021-04-07) 603 | 604 | ### Bug Fixes 605 | 606 | - fix attrs chang not trigger re-render in vue 2 ([58f3bad](https://github.com/open-data-plan/g2plot-vue/commit/58f3bad0de5fce86a08606bbf530ded4b32d0426)), closes [#203](https://github.com/open-data-plan/g2plot-vue/issues/203) 607 | 608 | ## [3.1.8](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.7...v3.1.8) (2021-03-29) 609 | 610 | ### Bug Fixes 611 | 612 | - add core-js to deps ([64b3333](https://github.com/open-data-plan/g2plot-vue/commit/64b33335a18b4e00c7ea084d894eee3e5fdafc9a)) 613 | 614 | ## [3.1.7](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.6...v3.1.7) (2021-03-29) 615 | 616 | ### Features 617 | 618 | - bump vue-demi ([25b5757](https://github.com/open-data-plan/g2plot-vue/commit/25b5757fcf74857b9407b63168c45ceb70b851ce)) 619 | 620 | ## [3.1.6](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.5...v3.1.6) (2021-03-19) 621 | 622 | ## [3.1.5](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.4...v3.1.5) (2021-03-03) 623 | 624 | ### Bug Fixes 625 | 626 | - compatible with vue 2 ([bf772c1](https://github.com/open-data-plan/g2plot-vue/commit/bf772c19000a90b80dfaeff0c6e13b981924fbdf)) 627 | 628 | ## [3.1.4](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.3...v3.1.4) (2021-03-03) 629 | 630 | ### Bug Fixes 631 | 632 | - fix vue 2 jsx transform error ([f503530](https://github.com/open-data-plan/g2plot-vue/commit/f503530aba2dd907527c7969d4b0b45a7f1d9d68)) 633 | 634 | ## [3.1.3](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.2...v3.1.3) (2021-03-03) 635 | 636 | ### Bug Fixes 637 | 638 | - fix render error in vue 2 ([63d9901](https://github.com/open-data-plan/g2plot-vue/commit/63d99016d27f414bbd1ccdb8c0928f5e7ebe74d9)) 639 | 640 | ## [3.1.2](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.1...v3.1.2) (2021-03-03) 641 | 642 | ### Bug Fixes 643 | 644 | - fix missed postinstall scripts ([3090f9a](https://github.com/open-data-plan/g2plot-vue/commit/3090f9afee68cc327e639ca3f515b706b4966976)) 645 | 646 | ## [3.1.1](https://github.com/open-data-plan/g2plot-vue/compare/v3.1.0...v3.1.1) (2021-03-03) 647 | 648 | ### Bug Fixes 649 | 650 | - fix output version ([407ef56](https://github.com/open-data-plan/g2plot-vue/commit/407ef562d8433266b07694af559530beeefa8416)) 651 | 652 | # [3.1.0](https://github.com/open-data-plan/g2plot-vue/compare/v3.0.1...v3.1.0) (2021-03-03) 653 | 654 | ### Features 655 | 656 | - add MultiViewChart ([c7adfc1](https://github.com/open-data-plan/g2plot-vue/commit/c7adfc16cd911daab89d4511ca4705a8c61409f3)) 657 | 658 | ## [3.0.1](https://github.com/open-data-plan/g2plot-vue/compare/v3.0.0...v3.0.1) (2021-03-03) 659 | 660 | ### Bug Fixes 661 | 662 | - add g2plot to peer ([30f8ab3](https://github.com/open-data-plan/g2plot-vue/commit/30f8ab37517698148fb6dd6793b7af69a7ce4191)) 663 | 664 | # [3.0.0](https://github.com/open-data-plan/g2plot-vue/compare/v2.4.2...v3.0.0) (2021-03-03) 665 | 666 | ### Features 667 | 668 | - support vue 2 ([67a657b](https://github.com/open-data-plan/g2plot-vue/commit/67a657bc61f3f13b2f05c3014371518128cbc035)) 669 | 670 | ## [2.4.2](https://github.com/open-data-plan/g2plot-vue/compare/v2.4.0...v2.4.2) (2021-02-22) 671 | 672 | ### Bug Fixes 673 | 674 | - fix types definitions ([39badf2](https://github.com/open-data-plan/g2plot-vue/commit/39badf2ea51a833185a915af29baf152f30dd939)), closes [#141](https://github.com/open-data-plan/g2plot-vue/issues/141) 675 | - mark props as writeable ([ae73878](https://github.com/open-data-plan/g2plot-vue/commit/ae738782b5b43c9ec75a35fd6e566367bf007481)), closes [#138](https://github.com/open-data-plan/g2plot-vue/issues/138) 676 | 677 | ## [2.4.1](https://github.com/open-data-plan/g2plot-vue/compare/v2.4.0...v2.4.1) (2021-02-19) 678 | 679 | ### Bug Fixes 680 | 681 | - mark props as writeable ([ae73878](https://github.com/open-data-plan/g2plot-vue/commit/ae738782b5b43c9ec75a35fd6e566367bf007481)), closes [#138](https://github.com/open-data-plan/g2plot-vue/issues/138) 682 | 683 | # [2.4.0](https://github.com/open-data-plan/g2plot-vue/compare/v2.3.1...v2.4.0) (2021-01-15) 684 | 685 | ### Features 686 | 687 | - introduce new charts ([dba197a](https://github.com/open-data-plan/g2plot-vue/commit/dba197a48ec3b8f70699045081b1e91797447348)) 688 | 689 | ## [2.3.1](https://github.com/open-data-plan/g2plot-vue/compare/v2.3.0...v2.3.1) (2020-11-24) 690 | 691 | # [2.3.0](https://github.com/open-data-plan/g2plot-vue/compare/v2.2.0...v2.3.0) (2020-11-10) 692 | 693 | ### Features 694 | 695 | - add new chart ([2262259](https://github.com/open-data-plan/g2plot-vue/commit/2262259be07e415ab0142c851b225c5403657d71)) 696 | 697 | # [2.2.0](https://github.com/open-data-plan/g2plot-vue/compare/v2.1.0...v2.2.0) (2020-10-23) 698 | 699 | ### Features 700 | 701 | - add new chart ([43c0882](https://github.com/open-data-plan/g2plot-vue/commit/43c08825b4cfa4134eca425a5507b3dfed474c5f)) 702 | 703 | # [2.1.0](https://github.com/open-data-plan/g2plot-vue/compare/v2.0.0...v2.1.0) (2020-10-16) 704 | 705 | ### Features 706 | 707 | - add waterfall chart suport ([902ccd1](https://github.com/open-data-plan/g2plot-vue/commit/902ccd1c8d2344871335c888b20192eae6cda057)) 708 | 709 | # [2.0.0](https://github.com/open-data-plan/g2plot-vue/compare/v1.0.0...v2.0.0) (2020-10-13) 710 | 711 | ### Features 712 | 713 | - compatible with g2plot v2 ([e71643c](https://github.com/open-data-plan/g2plot-vue/commit/e71643c8aaa9d037a8291d99a3e27bb02875e518)) 714 | 715 | # [1.0.0](https://github.com/open-data-plan/g2plot-vue/compare/c9116e3280cd5c18241cd101aa787063806fe19f...v1.0.0) (2020-09-01) 716 | 717 | ### Bug Fixes 718 | 719 | - fix vue waring ([6cc5441](https://github.com/open-data-plan/g2plot-vue/commit/6cc54414038b93f2eb64098348333de365e65591)) 720 | 721 | ### Features 722 | 723 | - support g2plot chart ([c9116e3](https://github.com/open-data-plan/g2plot-vue/commit/c9116e3280cd5c18241cd101aa787063806fe19f)) 724 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, sex characteristics, gender identity and expression, 9 | level of experience, education, socio-economic status, nationality, personal 10 | appearance, race, religion, or sexual identity and orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | - Using welcoming and inclusive language 18 | - Being respectful of differing viewpoints and experiences 19 | - Gracefully accepting constructive criticism 20 | - Focusing on what is best for the community 21 | - Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | - The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | - Trolling, insulting/derogatory comments, and personal or political attacks 28 | - Public or private harassment 29 | - Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | - Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at kingsongao1221@gmail.com. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html 72 | 73 | [homepage]: https://www.contributor-covenant.org 74 | 75 | For answers to common questions about this code of conduct, see 76 | https://www.contributor-covenant.org/faq 77 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # CONTRIBUTING 2 | 3 | ## Process 4 | 5 | 1. Fork repository 6 | 1. Create a branch based on `master` 7 | 1. Do what you want 8 | 1. Pull request 9 | 1. Review 10 | 1. Merge or Block 11 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Open Data Plan 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 |
3 |