@db-ux/v-core-components 4.7.0-tabs-34782eb → 4.7.1
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 +5 -0
- package/agent/Tabs.md +20 -23
- package/dist/components/tab-item/model.d.ts +11 -28
- package/dist/components/tab-item/tab-item.vue.d.ts +10 -5
- package/dist/components/tab-list/model.d.ts +5 -15
- package/dist/components/tab-list/tab-list.vue.d.ts +2 -5
- package/dist/components/tab-panel/model.d.ts +3 -13
- package/dist/components/tab-panel/tab-panel.vue.d.ts +7 -1
- package/dist/components/tabs/model.d.ts +17 -51
- package/dist/components/tabs/tabs.vue.d.ts +8 -10
- package/dist/db-ux.es.js +1150 -1346
- package/dist/db-ux.umd.js +1 -1
- package/dist/shared/model.d.ts +5 -5
- package/package.json +3 -3
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 AlignmentList: readonly ["start", "center"];
|
|
464
|
+
export type AlignmentType = (typeof AlignmentList)[number];
|
|
465
|
+
export type AlignmentProps = {
|
|
466
466
|
/**
|
|
467
|
-
* Define the
|
|
467
|
+
* Define the content alignment in full width
|
|
468
468
|
*/
|
|
469
|
-
|
|
469
|
+
alignment?: AlignmentType | 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.7.
|
|
3
|
+
"version": "4.7.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Vue components for @db-ux/core-components",
|
|
6
6
|
"repository": {
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"sideEffects": false,
|
|
57
57
|
"source": "src/index.ts",
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@db-ux/core-components": "4.7.
|
|
60
|
-
"@db-ux/core-foundations": "4.7.
|
|
59
|
+
"@db-ux/core-components": "4.7.1",
|
|
60
|
+
"@db-ux/core-foundations": "4.7.1"
|
|
61
61
|
}
|
|
62
62
|
}
|