vue-data-ui-cli 3.7.16 → 3.8.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.
Files changed (2) hide show
  1. package/index.js +9 -1
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -471,6 +471,14 @@ const supportedComponents = {
471
471
  configType: 'VueUiCirclePackConfig',
472
472
  slots: ['source']
473
473
  },
474
+ VueUiDag: {
475
+ key: 'vue_ui_dag',
476
+ link: 'vue-ui-dag',
477
+ datasetType: 'VueUiDagDataset',
478
+ isDatasetArray: false,
479
+ configType: 'VueUiDagConfig',
480
+ slots: ['source']
481
+ }
474
482
  };
475
483
 
476
484
  (function displayBanner() {
@@ -484,7 +492,7 @@ const supportedComponents = {
484
492
  })()
485
493
 
486
494
  program
487
- .version('3.7.16')
495
+ .version('3.8.0')
488
496
  .description('CLI to generate Vue Data UI component boilerplates')
489
497
  .action(async () => {
490
498
  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.7.16",
3
+ "version": "3.8.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.7.16",
37
+ "vue-data-ui": "^3.8.0",
38
38
  "vue": "^3.5.14"
39
39
  }
40
40
  }