diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js
index 5ab3086..44b61ad 100644
--- a/docs/.vuepress/config.js
+++ b/docs/.vuepress/config.js
@@ -1,8 +1,8 @@
-const ChartEditorPlugin = require('./plugins/chart-editor');
-
module.exports = {
+ dest: 'dist/docs',
+ theme: 'chartjs',
title: 'chartjs-plugin-datalabels',
- description: 'Display labels on data for any type of charts.',
+ description: 'Display labels on data for any type of charts',
head: [
['link', {rel: 'icon', href: '/favicon.png'}],
],
@@ -16,13 +16,6 @@ module.exports = {
{base: '/samples', alternative: ['charts/line']},
],
}],
- [ChartEditorPlugin, {
- imports: [
- ['samples/register.js'],
- ['samples/defaults.js'],
- ['samples/utils.js', 'Utils'],
- ]
- }],
],
themeConfig: {
repo: 'chartjs/chartjs-plugin-datalabels',
@@ -32,7 +25,14 @@ module.exports = {
docsDir: 'docs',
algolia: {
apiKey: '7224f458f773f7cf4cbbc4c53621d30c',
- indexName: 'chartjs-plugin-datalabels'
+ indexName: 'chartjs-plugin-datalabels',
+ },
+ chart: {
+ imports: [
+ ['samples/register.js'],
+ ['samples/defaults.js'],
+ ['samples/utils.js', 'Utils'],
+ ]
},
nav: [
{text: 'Home', link: '/'},
@@ -54,7 +54,6 @@ module.exports = {
'/samples/': [
{
title: 'Charts',
- collapsable: false,
children: [
'charts/line',
'charts/bar',
@@ -66,7 +65,6 @@ module.exports = {
},
{
title: 'Scriptable',
- collapsable: false,
children: [
'scriptable/interactions',
'scriptable/data',
@@ -77,7 +75,6 @@ module.exports = {
},
{
title: 'Events',
- collapsable: false,
children: [
'events/listeners',
'events/highlight',
@@ -86,7 +83,6 @@ module.exports = {
},
{
title: 'Advanced',
- collapsable: false,
children: [
'advanced/multiple-labels',
'advanced/custom-labels',
diff --git a/docs/.vuepress/plugins/chart-editor/components/ChartActions.vue b/docs/.vuepress/plugins/chart-editor/components/ChartActions.vue
deleted file mode 100644
index cdc9834..0000000
--- a/docs/.vuepress/plugins/chart-editor/components/ChartActions.vue
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
-
-
-
diff --git a/docs/.vuepress/plugins/chart-editor/components/ChartEditor.vue b/docs/.vuepress/plugins/chart-editor/components/ChartEditor.vue
deleted file mode 100644
index 43794c1..0000000
--- a/docs/.vuepress/plugins/chart-editor/components/ChartEditor.vue
+++ /dev/null
@@ -1,120 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/docs/.vuepress/plugins/chart-editor/components/ChartView.vue b/docs/.vuepress/plugins/chart-editor/components/ChartView.vue
deleted file mode 100644
index 33d78f7..0000000
--- a/docs/.vuepress/plugins/chart-editor/components/ChartView.vue
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
-
-
-
diff --git a/docs/.vuepress/plugins/chart-editor/components/CodeEditor.vue b/docs/.vuepress/plugins/chart-editor/components/CodeEditor.vue
deleted file mode 100644
index 2a99f8b..0000000
--- a/docs/.vuepress/plugins/chart-editor/components/CodeEditor.vue
+++ /dev/null
@@ -1,283 +0,0 @@
-
-
-
-
-
-
-
diff --git a/docs/.vuepress/plugins/chart-editor/components/EditorOutput.vue b/docs/.vuepress/plugins/chart-editor/components/EditorOutput.vue
deleted file mode 100644
index 46d04ed..0000000
--- a/docs/.vuepress/plugins/chart-editor/components/EditorOutput.vue
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/docs/.vuepress/plugins/chart-editor/components/EditorTextarea.vue b/docs/.vuepress/plugins/chart-editor/components/EditorTextarea.vue
deleted file mode 100644
index e620592..0000000
--- a/docs/.vuepress/plugins/chart-editor/components/EditorTextarea.vue
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/docs/.vuepress/plugins/chart-editor/components/Tooltip.vue b/docs/.vuepress/plugins/chart-editor/components/Tooltip.vue
deleted file mode 100644
index 90cf104..0000000
--- a/docs/.vuepress/plugins/chart-editor/components/Tooltip.vue
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
diff --git a/docs/.vuepress/plugins/chart-editor/enhancer.js b/docs/.vuepress/plugins/chart-editor/enhancer.js
deleted file mode 100644
index 08f2f9b..0000000
--- a/docs/.vuepress/plugins/chart-editor/enhancer.js
+++ /dev/null
@@ -1,14 +0,0 @@
-import PerfectScrollbar from 'vue2-perfect-scrollbar';
-import ChartEditor from './components/ChartEditor.vue';
-import 'vue2-perfect-scrollbar/dist/vue2-perfect-scrollbar.css';
-import './styles/index.styl';
-
-export default ({Vue}) => {
- Vue.use(PerfectScrollbar, {
- options: {
- wheelPropagation: false,
- }
- });
-
- Vue.component('ChartEditor', ChartEditor);
-};
diff --git a/docs/.vuepress/plugins/chart-editor/global.js b/docs/.vuepress/plugins/chart-editor/global.js
deleted file mode 100644
index 164c716..0000000
--- a/docs/.vuepress/plugins/chart-editor/global.js
+++ /dev/null
@@ -1,4 +0,0 @@
-// This is required by vue-prism-editor/dist/prismeditor.esm.js
-if (typeof window !== 'undefined' && window.global === undefined) {
- window.global = window;
-}
diff --git a/docs/.vuepress/plugins/chart-editor/index.js b/docs/.vuepress/plugins/chart-editor/index.js
deleted file mode 100644
index 9c3d306..0000000
--- a/docs/.vuepress/plugins/chart-editor/index.js
+++ /dev/null
@@ -1,72 +0,0 @@
-const {resolve} = require('path');
-
-function render({renderer}) {
- const fence = renderer.rules.fence;
- renderer.rules.fence = (...args) => {
- const [tokens, idx] = args;
- const token = tokens[idx];
- const lang = token.info.trim();
-
- return (/ chart-editor( |$)/).test(lang) ?
- `` :
- fence(...args);
- };
-}
-
-function importsScripts(imports) {
- const names = imports.map(([, name]) => name).filter((name) => !!name);
- const lines = imports.map(([file, name]) => {
- const path = `@docs/${file}`;
- return name ?
- `import * as ${name} from '${path}'` :
- `import '${path}'`;
- });
-
- return `
- import Vue from 'vue';
- ${lines.join(';\n')};
-
- const imports = {
- ${names.join(',\n')}
- }
-
- Vue.mixin({
- created() {
- this.$chart = this.$chart || {};
- this.$chart.imports = imports;
- }
- })
- `;
-}
-
-module.exports = ({imports}) => {
- return {
- name: 'vuepress-plugin-chart-editor',
- enhanceAppFiles: [
- resolve(__dirname, 'global.js'),
- resolve(__dirname, 'enhancer.js'),
- {
- content: importsScripts(imports),
- name: 'chart-imports',
- }
- ],
- chainWebpack: (config) => {
- config.merge({
- externals: {
- moment: 'moment',
- },
- resolve: {
- alias: {
- '@docs': resolve(__dirname, '../../../'),
- }
- }
- });
- },
- chainMarkdown: (config) => {
- config
- .plugin('chart-editor')
- .use(render)
- .end();
- },
- };
-};
diff --git a/docs/.vuepress/plugins/chart-editor/styles/index.styl b/docs/.vuepress/plugins/chart-editor/styles/index.styl
deleted file mode 100644
index b50f7f1..0000000
--- a/docs/.vuepress/plugins/chart-editor/styles/index.styl
+++ /dev/null
@@ -1,18 +0,0 @@
-@import 'https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.15.1/css/all.min.css'
-
-@import 'palette.styl'
-
-.ps
- .ps__rail-x:hover, .ps__rail-y:hover,
- .ps__rail-x:focus, .ps__rail-y:focus,
- .ps__rail-x.ps--clicking, .ps__rail-y.ps--clicking
- background-color transparent
-
-.prism-editor__textarea:focus
- outline none
-
-.text-muted
- opacity 0.5 !important
-
-.text-error
- color $danger-color !important
diff --git a/docs/.vuepress/plugins/chart-editor/styles/palette.styl b/docs/.vuepress/plugins/chart-editor/styles/palette.styl
deleted file mode 100644
index 5f91385..0000000
--- a/docs/.vuepress/plugins/chart-editor/styles/palette.styl
+++ /dev/null
@@ -1,7 +0,0 @@
-$border-radius = 6px
-$box-shadow = 0 4px 8px 0px rgba(black, 0.15)
-$code-font-family = source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace
-$code-font-size = 0.85em
-$code-line-height = 1.5
-$code-text-color = #e0e0e0
-$danger-color = #e05025
diff --git a/docs/.vuepress/styles/index.styl b/docs/.vuepress/styles/index.styl
deleted file mode 100644
index 8d564ff..0000000
--- a/docs/.vuepress/styles/index.styl
+++ /dev/null
@@ -1,28 +0,0 @@
-@import 'palette.styl'
-
-a
- svg.icon.outbound
- margin-left 2px
-
- img + span > svg.icon.outbound
- display none
-
-sup
- font-size 0.75em !important
-
-.content a code
- color $accentColor
-
-.navbar
- -webkit-box-shadow 0 4px 4px -4px rgba(0,0,0,0.1)
- -moz-box-shadow 0 4px 4px -4px rgba(0,0,0,0.1)
- box-shadow 0 4px 4px -4px rgba(0,0,0,0.1)
-
- .logo
- margin-right: 0.5rem !important
-
- .site-name
- font-size 1.25rem !important
-
- .repo-link
- margin-left 1rem !important
diff --git a/docs/.vuepress/styles/palette.styl b/docs/.vuepress/styles/palette.styl
deleted file mode 100644
index c7651d3..0000000
--- a/docs/.vuepress/styles/palette.styl
+++ /dev/null
@@ -1,3 +0,0 @@
-$accentColor = #3080D0
-$contentWidth = 768px
-$textColor = #404244
diff --git a/package-lock.json b/package-lock.json
index c146a5c..b84adcd 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "chartjs-plugin-datalabels",
- "version": "0.7.0",
+ "version": "1.0.0-beta.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@@ -3714,9 +3714,9 @@
}
},
"acorn": {
- "version": "8.0.5",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.0.5.tgz",
- "integrity": "sha512-v+DieK/HJkJOpFBETDJioequtc3PfxsWMaxIdIwujtF7FEV/MAyDQLlm6/zPvr7Mix07mLh6ccVwIsloceodlg==",
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.1.0.tgz",
+ "integrity": "sha512-LWCF/Wn0nfHOmJ9rzQApGnxnvgfROzGilS8936rqN/lfcYkY9MYZzdMqN+2NJ4SlTc+m5HiSa+kNfDtI64dwUA==",
"dev": true
},
"acorn-jsx": {
@@ -7534,72 +7534,6 @@
"regexpp": "^3.0.0"
}
},
- "eslint-plugin-html": {
- "version": "6.1.1",
- "resolved": "https://registry.npmjs.org/eslint-plugin-html/-/eslint-plugin-html-6.1.1.tgz",
- "integrity": "sha512-JSe3ZDb7feKMnQM27XWGeoIjvP4oWQMJD9GZ6wW67J7/plVL87NK72RBwlvfc3tTZiYUchHhxAwtgEd1GdofDA==",
- "dev": true,
- "requires": {
- "htmlparser2": "^5.0.1"
- },
- "dependencies": {
- "dom-serializer": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.1.0.tgz",
- "integrity": "sha512-ox7bvGXt2n+uLWtCRLybYx60IrOlWL/aCebWJk1T0d4m3y2tzf4U3ij9wBMUb6YJZpz06HCCYuyCDveE2xXmzQ==",
- "dev": true,
- "requires": {
- "domelementtype": "^2.0.1",
- "domhandler": "^3.0.0",
- "entities": "^2.0.0"
- }
- },
- "domelementtype": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.0.2.tgz",
- "integrity": "sha512-wFwTwCVebUrMgGeAwRL/NhZtHAUyT9n9yg4IMDwf10+6iCMxSkVq9MGCVEH+QZWo1nNidy8kNvwmv4zWHDTqvA==",
- "dev": true
- },
- "domhandler": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-3.3.0.tgz",
- "integrity": "sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==",
- "dev": true,
- "requires": {
- "domelementtype": "^2.0.1"
- }
- },
- "domutils": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.4.2.tgz",
- "integrity": "sha512-NKbgaM8ZJOecTZsIzW5gSuplsX2IWW2mIK7xVr8hTQF2v1CJWTmLZ1HOCh5sH+IzVPAGE5IucooOkvwBRAdowA==",
- "dev": true,
- "requires": {
- "dom-serializer": "^1.0.1",
- "domelementtype": "^2.0.1",
- "domhandler": "^3.3.0"
- }
- },
- "entities": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz",
- "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==",
- "dev": true
- },
- "htmlparser2": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-5.0.1.tgz",
- "integrity": "sha512-vKZZra6CSe9qsJzh0BjBGXo8dvzNsq/oGvsjfRdOrrryfeD9UOBEEQdeoqCRmKZchF5h2zOBMQ6YuQ0uRUmdbQ==",
- "dev": true,
- "requires": {
- "domelementtype": "^2.0.1",
- "domhandler": "^3.3.0",
- "domutils": "^2.4.2",
- "entities": "^2.0.0"
- }
- }
- }
- },
"eslint-scope": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
@@ -15423,6 +15357,17 @@
"smoothscroll-polyfill": "^0.4.3"
}
},
+ "vuepress-theme-chartjs": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/vuepress-theme-chartjs/-/vuepress-theme-chartjs-0.1.0.tgz",
+ "integrity": "sha512-xOmMXTRk2z8jw/Qfl95iRwzIqkW5JWa0oUZ9EqgSseRcLmVgfrk6Wf1MaWSXY3ZwGBGMOCV5GQeaL+VtyEF+jQ==",
+ "dev": true,
+ "requires": {
+ "acorn": "^8.1.0",
+ "vue-prism-editor": "^1.2.2",
+ "vue2-perfect-scrollbar": "^1.5.0"
+ }
+ },
"watchpack": {
"version": "1.7.5",
"resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz",
diff --git a/package.json b/package.json
index 4178968..10dc9e3 100644
--- a/package.json
+++ b/package.json
@@ -24,9 +24,9 @@
"bower": "node scripts/create-bower-json",
"build": "rollup -c",
"build:dev": "rollup -c --watch",
- "docs": "npm run build && vuepress build docs --dest dist/docs",
- "docs:dev": "npm run build && vuepress dev docs",
- "lint": "eslint . --ext .js --ext .ts",
+ "docs": "npm run build && vuepress build docs --no-cache",
+ "docs:dev": "npm run build && vuepress dev docs --no-cache",
+ "lint": "eslint . --ext .js,.ts",
"package": "npm run build && node scripts/create-packages.js",
"test-unit": "karma start --single-run --coverage --grep",
"test-unit:dev": "karma start --auto-watch --grep",
@@ -39,14 +39,12 @@
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"@vuepress/plugin-google-analytics": "^1.8.2",
- "acorn": "^8.0.5",
"archiver": "^5.2.0",
"chart.js": "^2.9.4",
"chartjs-test-utils": "^0.2.2",
"eslint": "^7.21.0",
"eslint-config-chartjs": "^0.3.0",
"eslint-plugin-es": "^4.1.0",
- "eslint-plugin-html": "^6.1.1",
"jasmine-core": "^3.6.0",
"karma": "^6.1.1",
"karma-coverage": "^2.0.3",
@@ -61,10 +59,9 @@
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.2.3",
- "vue-prism-editor": "^1.2.2",
- "vue2-perfect-scrollbar": "^1.5.0",
"vuepress": "1.8.1",
"vuepress-plugin-redirect": "^1.2.5",
+ "vuepress-theme-chartjs": "^0.1.0",
"yargs": "^16.2.0"
},
"peerDependencies": {