@db-ux/v-core-components 5.3.0 → 5.5.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/CHANGELOG.md +35 -12
- package/dist/components/footer/footer.vue.d.ts +20 -0
- package/dist/components/footer/index.d.ts +1 -0
- package/dist/components/footer/model.d.ts +5 -0
- package/dist/components/footer-content/footer-content.vue.d.ts +18 -0
- package/dist/components/footer-content/index.d.ts +1 -0
- package/dist/components/footer-content/model.d.ts +5 -0
- package/dist/components/footer-meta/footer-meta.vue.d.ts +20 -0
- package/dist/components/footer-meta/index.d.ts +1 -0
- package/dist/components/footer-meta/model.d.ts +12 -0
- package/dist/db-ux.es.js +258 -192
- package/dist/db-ux.umd.js +1 -1
- package/dist/index.d.ts +6 -0
- package/package.json +10 -10
package/dist/index.d.ts
CHANGED
|
@@ -52,6 +52,12 @@ export * from './components/drawer-footer/model.js';
|
|
|
52
52
|
export * from './components/drawer-header/index.js';
|
|
53
53
|
export * from './components/drawer-header/model.js';
|
|
54
54
|
export * from './components/drawer/model.js';
|
|
55
|
+
export * from './components/footer/index.js';
|
|
56
|
+
export * from './components/footer-content/index.js';
|
|
57
|
+
export * from './components/footer-content/model.js';
|
|
58
|
+
export * from './components/footer-meta/index.js';
|
|
59
|
+
export * from './components/footer-meta/model.js';
|
|
60
|
+
export * from './components/footer/model.js';
|
|
55
61
|
export * from './components/header/index.js';
|
|
56
62
|
export * from './components/header/model.js';
|
|
57
63
|
export * from './components/heading/index.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@db-ux/v-core-components",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.5.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Vue components for @db-ux/core-components",
|
|
6
6
|
"repository": {
|
|
@@ -28,19 +28,19 @@
|
|
|
28
28
|
"dist/"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@db-ux/core-components": "5.
|
|
32
|
-
"@db-ux/core-foundations": "5.
|
|
31
|
+
"@db-ux/core-components": "5.5.0",
|
|
32
|
+
"@db-ux/core-foundations": "5.5.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@playwright/experimental-ct-vue": "1.62.1",
|
|
36
36
|
"@vitejs/plugin-vue": "6.0.8",
|
|
37
37
|
"@vue/compiler-dom": "3.5.42",
|
|
38
|
-
"
|
|
38
|
+
"cpy-cli": "7.0.0",
|
|
39
39
|
"npm-run-all2": "9.0.3",
|
|
40
40
|
"replace-in-file": "9.0.0",
|
|
41
41
|
"tsx": "4.23.13",
|
|
42
42
|
"typescript": "5.9.3",
|
|
43
|
-
"vite": "8.
|
|
43
|
+
"vite": "8.3.0",
|
|
44
44
|
"vue": "3.5.42",
|
|
45
45
|
"vue-tsc": "3.3.11"
|
|
46
46
|
},
|
|
@@ -54,11 +54,11 @@
|
|
|
54
54
|
"build": "npm-run-all --parallel build:* --parallel mv:*",
|
|
55
55
|
"build:01_vite": "vite build",
|
|
56
56
|
"build:02_types": "vue-tsc --declaration --emitDeclarationOnly",
|
|
57
|
-
"mv:agent": "
|
|
58
|
-
"mv:changelog": "
|
|
59
|
-
"mv:dist": "
|
|
60
|
-
"mv:package.json": "
|
|
61
|
-
"mv:readme": "
|
|
57
|
+
"mv:agent": "cpy agent ../../build-outputs/vue --dot",
|
|
58
|
+
"mv:changelog": "cpy CHANGELOG.md ../../build-outputs/vue/CHANGELOG.md",
|
|
59
|
+
"mv:dist": "cpy dist ../../build-outputs/vue --dot",
|
|
60
|
+
"mv:package.json": "cpy package.json ../../build-outputs/vue/package.json",
|
|
61
|
+
"mv:readme": "cpy README.md ../../build-outputs/vue/README.md",
|
|
62
62
|
"test:components": "playwright test --config playwright.config.ts",
|
|
63
63
|
"test:components:ui": "playwright test --config playwright.config.ts --ui"
|
|
64
64
|
}
|