vue-data-ui-cli 1.1.0 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/datasets.js +7 -0
- package/index.js +10 -2
- package/package.json +2 -2
package/datasets.js
CHANGED
|
@@ -8,6 +8,13 @@ export default (componentName) => {
|
|
|
8
8
|
dataLabels: true,
|
|
9
9
|
},
|
|
10
10
|
],
|
|
11
|
+
VueUiCirclePack: [
|
|
12
|
+
{ name: 'Datapoint A', value: 200 },
|
|
13
|
+
{ name: 'Datapoint B', value: 150 },
|
|
14
|
+
{ name: 'Datapoint C', value: 100 },
|
|
15
|
+
{ name: 'Datapoint D', value: 50 },
|
|
16
|
+
{ name: 'Datapoint E', value: 25 },
|
|
17
|
+
],
|
|
11
18
|
VueUiDonut: [
|
|
12
19
|
{
|
|
13
20
|
name: 'Series 1',
|
package/index.js
CHANGED
|
@@ -430,7 +430,15 @@ const supportedComponents = {
|
|
|
430
430
|
isDatasetArray: false,
|
|
431
431
|
configType: 'VueUiSkeletonConfig',
|
|
432
432
|
slots: []
|
|
433
|
-
}
|
|
433
|
+
},
|
|
434
|
+
VueUiCirclePack: {
|
|
435
|
+
key: 'vue_ui_circle_pack',
|
|
436
|
+
link: 'vue-ui-circle-pack',
|
|
437
|
+
datasetType: 'VueUiCirclePackDatasetItem',
|
|
438
|
+
isDatasetArray: true,
|
|
439
|
+
configType: 'VueUiCirclePackConfig',
|
|
440
|
+
slots: ['source']
|
|
441
|
+
},
|
|
434
442
|
};
|
|
435
443
|
|
|
436
444
|
(function displayBanner() {
|
|
@@ -444,7 +452,7 @@ const supportedComponents = {
|
|
|
444
452
|
})()
|
|
445
453
|
|
|
446
454
|
program
|
|
447
|
-
.version('1.
|
|
455
|
+
.version('1.1.2')
|
|
448
456
|
.description('CLI to generate Vue Data UI component boilerplates')
|
|
449
457
|
.action(async () => {
|
|
450
458
|
const answers = await inquirer.prompt([
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vue-data-ui-cli",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A CLI tool to generate Vue Data UI chart component boilerplates",
|
|
6
6
|
"main": "index.js",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"prettier": "^3.4.2",
|
|
37
|
-
"vue-data-ui": "^2.5.
|
|
37
|
+
"vue-data-ui": "^2.5.4",
|
|
38
38
|
"vue": "^3.5.13"
|
|
39
39
|
}
|
|
40
40
|
}
|