@db-ux/v-core-components 3.1.4 → 3.1.16
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/components/accordion/accordion.vue.d.ts +3 -2
- package/dist/components/accordion-item/accordion-item.vue.d.ts +3 -2
- package/dist/components/badge/badge.vue.d.ts +3 -2
- package/dist/components/brand/brand.vue.d.ts +3 -2
- package/dist/components/button/button.vue.d.ts +4 -3
- package/dist/components/card/card.vue.d.ts +3 -2
- package/dist/components/checkbox/checkbox.vue.d.ts +3 -2
- package/dist/components/custom-select/custom-select.vue.d.ts +3 -2
- package/dist/components/custom-select/model.d.ts +1 -1
- package/dist/components/custom-select-dropdown/custom-select-dropdown.vue.d.ts +3 -2
- package/dist/components/custom-select-form-field/custom-select-form-field.vue.d.ts +3 -2
- package/dist/components/custom-select-list/custom-select-list.vue.d.ts +3 -2
- package/dist/components/custom-select-list-item/custom-select-list-item.vue.d.ts +4 -3
- package/dist/components/divider/divider.vue.d.ts +2 -1
- package/dist/components/drawer/drawer.vue.d.ts +3 -2
- package/dist/components/header/header.vue.d.ts +3 -2
- package/dist/components/icon/icon.vue.d.ts +3 -2
- package/dist/components/infotext/infotext.vue.d.ts +3 -2
- package/dist/components/input/input.vue.d.ts +4 -3
- package/dist/components/link/link.vue.d.ts +3 -2
- package/dist/components/navigation/navigation.vue.d.ts +3 -2
- package/dist/components/navigation-item/navigation-item.vue.d.ts +3 -2
- package/dist/components/notification/notification.vue.d.ts +3 -2
- package/dist/components/page/page.vue.d.ts +3 -2
- package/dist/components/popover/popover.vue.d.ts +3 -2
- package/dist/components/radio/radio.vue.d.ts +3 -2
- package/dist/components/section/section.vue.d.ts +3 -2
- package/dist/components/select/select.vue.d.ts +3 -2
- package/dist/components/stack/stack.vue.d.ts +3 -2
- package/dist/components/switch/switch.vue.d.ts +4 -4
- package/dist/components/tab-item/tab-item.vue.d.ts +3 -2
- package/dist/components/tab-list/tab-list.vue.d.ts +3 -2
- package/dist/components/tab-panel/tab-panel.vue.d.ts +3 -2
- package/dist/components/tabs/tabs.vue.d.ts +3 -2
- package/dist/components/tag/tag.vue.d.ts +3 -2
- package/dist/components/textarea/textarea.vue.d.ts +3 -2
- package/dist/components/tooltip/tooltip.vue.d.ts +3 -2
- package/dist/db-ux.es.js +950 -918
- package/dist/db-ux.umd.js +1 -1
- package/package.json +9 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@db-ux/v-core-components",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.16",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Vue components for @db-ux/core-components",
|
|
6
6
|
"repository": {
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
"files": [
|
|
26
|
-
"dist/"
|
|
26
|
+
"dist/",
|
|
27
|
+
"CHANGELOG.md"
|
|
27
28
|
],
|
|
28
29
|
"scripts": {
|
|
29
30
|
"build": "npm-run-all build:*",
|
|
@@ -37,14 +38,14 @@
|
|
|
37
38
|
"test:components:ui": "playwright test --config playwright.config.ts --ui"
|
|
38
39
|
},
|
|
39
40
|
"devDependencies": {
|
|
40
|
-
"@playwright/experimental-ct-vue": "1.55.
|
|
41
|
+
"@playwright/experimental-ct-vue": "1.55.1",
|
|
41
42
|
"@vitejs/plugin-vue": "6.0.1",
|
|
42
43
|
"replace-in-file": "8.3.0",
|
|
43
|
-
"tsx": "4.20.
|
|
44
|
+
"tsx": "4.20.6",
|
|
44
45
|
"typescript": "5.8.3",
|
|
45
46
|
"vite": "7.1.7",
|
|
46
|
-
"vue": "3.5.
|
|
47
|
-
"vue-tsc": "3.0
|
|
47
|
+
"vue": "3.5.22",
|
|
48
|
+
"vue-tsc": "3.1.0"
|
|
48
49
|
},
|
|
49
50
|
"publishConfig": {
|
|
50
51
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -53,7 +54,7 @@
|
|
|
53
54
|
"sideEffects": false,
|
|
54
55
|
"source": "src/index.ts",
|
|
55
56
|
"dependencies": {
|
|
56
|
-
"@db-ux/core-components": "3.1.
|
|
57
|
-
"@db-ux/core-foundations": "3.1.
|
|
57
|
+
"@db-ux/core-components": "3.1.16",
|
|
58
|
+
"@db-ux/core-foundations": "3.1.16"
|
|
58
59
|
}
|
|
59
60
|
}
|