vue-data-ui-cli 3.8.5 → 3.9.0
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/index.js +10 -2
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -478,7 +478,15 @@ const supportedComponents = {
|
|
|
478
478
|
isDatasetArray: false,
|
|
479
479
|
configType: 'VueUiDagConfig',
|
|
480
480
|
slots: ['source']
|
|
481
|
-
}
|
|
481
|
+
},
|
|
482
|
+
VueUiGeo: {
|
|
483
|
+
key: 'vue_ui_geo',
|
|
484
|
+
link: 'vue-ui-geo',
|
|
485
|
+
datasetType: 'VueUiGeoDatasetItem',
|
|
486
|
+
isDatasetArray: true,
|
|
487
|
+
configType: 'VueUiGeoConfig',
|
|
488
|
+
slots: ['source']
|
|
489
|
+
},
|
|
482
490
|
};
|
|
483
491
|
|
|
484
492
|
(function displayBanner() {
|
|
@@ -492,7 +500,7 @@ const supportedComponents = {
|
|
|
492
500
|
})()
|
|
493
501
|
|
|
494
502
|
program
|
|
495
|
-
.version('3.
|
|
503
|
+
.version('3.9.0')
|
|
496
504
|
.description('CLI to generate Vue Data UI component boilerplates')
|
|
497
505
|
.action(async () => {
|
|
498
506
|
const answers = await inquirer.prompt([
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vue-data-ui-cli",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.9.0",
|
|
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": "^3.
|
|
37
|
+
"vue-data-ui": "^3.9.0",
|
|
38
38
|
"vue": "^3.5.14"
|
|
39
39
|
}
|
|
40
40
|
}
|