@db-ux/v-core-components 3.0.0 → 3.0.2-copilot-66b0168

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/dist/index.d.ts CHANGED
@@ -1,40 +1,79 @@
1
1
  export * from './components/accordion';
2
2
  export * from './components/accordion-item';
3
+ export * from './components/accordion-item/model';
4
+ export * from './components/accordion/model';
3
5
  export * from './components/badge';
6
+ export * from './components/badge/model';
4
7
  export * from './components/brand';
8
+ export * from './components/brand/model';
5
9
  export * from './components/button';
10
+ export * from './components/button/model';
6
11
  export * from './components/card';
12
+ export * from './components/card/model';
7
13
  export * from './components/checkbox';
14
+ export * from './components/checkbox/model';
8
15
  export * from './components/custom-select';
9
16
  export * from './components/custom-select-dropdown';
17
+ export * from './components/custom-select-dropdown/model';
10
18
  export * from './components/custom-select-form-field';
19
+ export * from './components/custom-select-form-field/model';
11
20
  export * from './components/custom-select-list';
12
21
  export * from './components/custom-select-list-item';
22
+ export * from './components/custom-select-list-item/model';
23
+ export * from './components/custom-select-list/model';
24
+ export * from './components/custom-select/model';
13
25
  export * from './components/divider';
26
+ export * from './components/divider/model';
14
27
  export * from './components/drawer';
28
+ export * from './components/drawer/model';
15
29
  export * from './components/header';
30
+ export * from './components/header/model';
16
31
  export * from './components/icon';
32
+ export * from './components/icon/model';
17
33
  export * from './components/infotext';
34
+ export * from './components/infotext/model';
18
35
  export * from './components/input';
36
+ export * from './components/input/model';
19
37
  export * from './components/link';
38
+ export * from './components/link/model';
20
39
  export * from './components/navigation';
21
40
  export * from './components/navigation-item';
41
+ export * from './components/navigation-item/model';
42
+ export * from './components/navigation/model';
22
43
  export * from './components/notification';
44
+ export * from './components/notification/model';
23
45
  export * from './components/page';
46
+ export * from './components/page/model';
24
47
  export * from './components/popover';
48
+ export * from './components/popover/model';
25
49
  export * from './components/radio';
50
+ export * from './components/radio/model';
26
51
  export * from './components/section';
52
+ export * from './components/section/model';
27
53
  export * from './components/select';
54
+ export * from './components/select/model';
28
55
  export * from './components/stack';
56
+ export * from './components/stack/model';
29
57
  export * from './components/switch';
58
+ export * from './components/switch/model';
30
59
  export * from './components/tab-item';
60
+ export * from './components/tab-item/model';
31
61
  export * from './components/tab-list';
62
+ export * from './components/tab-list/model';
32
63
  export * from './components/tab-panel';
64
+ export * from './components/tab-panel/model';
33
65
  export * from './components/tabs';
66
+ export * from './components/tabs/model';
34
67
  export * from './components/tag';
68
+ export * from './components/tag/model';
35
69
  export * from './components/textarea';
70
+ export * from './components/textarea/model';
36
71
  export * from './components/tooltip';
72
+ export * from './components/tooltip/model';
37
73
  export * from './shared/constants';
38
74
  export * from './shared/model';
75
+ export * from './utils/document-click-listener';
76
+ export * from './utils/document-scroll-listener';
77
+ export * from './utils/floating-components';
39
78
  export * from './utils/index';
40
79
  export * from './utils/navigation';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@db-ux/v-core-components",
3
- "version": "3.0.0",
3
+ "version": "3.0.2-copilot-66b0168",
4
4
  "type": "module",
5
5
  "description": "Vue components for @db-ux/core-components",
6
6
  "repository": {
@@ -23,28 +23,30 @@
23
23
  }
24
24
  },
25
25
  "files": [
26
- "dist/"
26
+ "dist/",
27
+ "agent"
27
28
  ],
28
29
  "scripts": {
29
30
  "build": "npm-run-all build:*",
30
31
  "build:01_vite": "vite build",
31
32
  "build:02_types": "vue-tsc --declaration --emitDeclarationOnly",
32
- "mv:dist": "cpr dist ../../build-outputs/vue/dist -o",
33
- "mv:package.json": "cpr package.json ../../build-outputs/vue/package.json -o",
34
- "mv:readme": "cpr README.md ../../build-outputs/vue/README.md -o",
33
+ "mv:dist": "cpr dist ../../build-outputs/vue/dist --overwrite",
34
+ "mv:agent": "cpr agent ../../build-outputs/vue/agent -o",
35
+ "mv:package.json": "cpr package.json ../../build-outputs/vue/package.json --overwrite",
36
+ "mv:readme": "cpr README.md ../../build-outputs/vue/README.md --overwrite",
35
37
  "postbuild": "npm-run-all --parallel mv:*",
36
- "test:components": "playwright test -c playwright.config.ts",
37
- "test:components:ui": "playwright test -c playwright.config.ts --ui"
38
+ "test:components": "playwright test --config playwright.config.ts",
39
+ "test:components:ui": "playwright test --config playwright.config.ts --ui"
38
40
  },
39
41
  "devDependencies": {
40
42
  "@playwright/experimental-ct-vue": "1.54.1",
41
- "@vitejs/plugin-vue": "^6.0.0",
42
- "replace-in-file": "^8.3.0",
43
- "tsx": "^4.20.3",
44
- "typescript": "^5.8.3",
45
- "vite": "^6.3.5",
46
- "vue": "^3.5.17",
47
- "vue-tsc": "^3.0.3"
43
+ "@vitejs/plugin-vue": "6.0.0",
44
+ "replace-in-file": "8.3.0",
45
+ "tsx": "4.20.3",
46
+ "typescript": "5.8.3",
47
+ "vite": "6.3.5",
48
+ "vue": "3.5.18",
49
+ "vue-tsc": "3.0.3"
48
50
  },
49
51
  "publishConfig": {
50
52
  "registry": "https://registry.npmjs.org/",
@@ -53,7 +55,7 @@
53
55
  "sideEffects": false,
54
56
  "source": "src/index.ts",
55
57
  "dependencies": {
56
- "@db-ux/core-components": "3.0.0",
57
- "@db-ux/core-foundations": "3.0.0"
58
+ "@db-ux/core-components": "3.0.2-copilot-66b0168",
59
+ "@db-ux/core-foundations": "3.0.2-copilot-66b0168"
58
60
  }
59
61
  }