@db-ux/v-core-components 4.6.1 → 4.7.0-tabs-34782eb
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 +8 -0
- package/agent/Tabs.md +23 -20
- package/dist/components/tab-item/model.d.ts +28 -11
- package/dist/components/tab-item/tab-item.vue.d.ts +5 -10
- package/dist/components/tab-list/model.d.ts +15 -5
- package/dist/components/tab-list/tab-list.vue.d.ts +5 -2
- package/dist/components/tab-panel/model.d.ts +13 -3
- package/dist/components/tab-panel/tab-panel.vue.d.ts +1 -7
- package/dist/components/tabs/model.d.ts +51 -17
- package/dist/components/tabs/tabs.vue.d.ts +10 -8
- package/dist/db-ux.es.js +1346 -1150
- package/dist/db-ux.umd.js +1 -1
- package/dist/shared/model.d.ts +5 -5
- package/package.json +6 -6
package/dist/shared/model.d.ts
CHANGED
|
@@ -460,13 +460,13 @@ export type CloseEventProps<T> = {
|
|
|
460
460
|
export type CloseEventState<T> = {
|
|
461
461
|
handleClose: (event?: T | void, forceClose?: boolean) => void;
|
|
462
462
|
};
|
|
463
|
-
export declare const
|
|
464
|
-
export type
|
|
465
|
-
export type
|
|
463
|
+
export declare const TabItemAlignmentList: readonly ["start", "center", "end"];
|
|
464
|
+
export type TabItemAlignmentType = (typeof TabItemAlignmentList)[number];
|
|
465
|
+
export type TabItemAlignmentProps = {
|
|
466
466
|
/**
|
|
467
|
-
* Define the
|
|
467
|
+
* Define the tab-item alignment in full width
|
|
468
468
|
*/
|
|
469
|
-
|
|
469
|
+
tabItemAlignment?: TabItemAlignmentType | string;
|
|
470
470
|
};
|
|
471
471
|
export type ActiveProps = {
|
|
472
472
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@db-ux/v-core-components",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.7.0-tabs-34782eb",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Vue components for @db-ux/core-components",
|
|
6
6
|
"repository": {
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"replace-in-file": "8.4.0",
|
|
46
46
|
"tsx": "4.21.0",
|
|
47
47
|
"typescript": "5.9.3",
|
|
48
|
-
"vite": "8.0.
|
|
49
|
-
"vue": "3.5.
|
|
50
|
-
"vue-tsc": "3.2.
|
|
48
|
+
"vite": "8.0.10",
|
|
49
|
+
"vue": "3.5.33",
|
|
50
|
+
"vue-tsc": "3.2.7"
|
|
51
51
|
},
|
|
52
52
|
"publishConfig": {
|
|
53
53
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"sideEffects": false,
|
|
57
57
|
"source": "src/index.ts",
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@db-ux/core-components": "4.
|
|
60
|
-
"@db-ux/core-foundations": "4.
|
|
59
|
+
"@db-ux/core-components": "4.7.0-tabs-34782eb",
|
|
60
|
+
"@db-ux/core-foundations": "4.7.0-tabs-34782eb"
|
|
61
61
|
}
|
|
62
62
|
}
|