vue-data-ui-cli 1.0.37 → 1.1.1

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.
Files changed (3) hide show
  1. package/datasets.js +7 -0
  2. package/index.js +9 -1
  3. 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() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue-data-ui-cli",
3
- "version": "1.0.37",
3
+ "version": "1.1.1",
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.4.90",
37
+ "vue-data-ui": "^2.5.2",
38
38
  "vue": "^3.5.13"
39
39
  }
40
40
  }