@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.
@@ -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 TabItemAlignmentList: readonly ["start", "center", "end"];
464
- export type TabItemAlignmentType = (typeof TabItemAlignmentList)[number];
465
- export type TabItemAlignmentProps = {
463
+ export declare const AlignmentList: readonly ["start", "center"];
464
+ export type AlignmentType = (typeof AlignmentList)[number];
465
+ export type AlignmentProps = {
466
466
  /**
467
- * Define the tab-item alignment in full width
467
+ * Define the content alignment in full width
468
468
  */
469
- tabItemAlignment?: TabItemAlignmentType | string;
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.0-tabs-34782eb",
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.0-tabs-34782eb",
60
- "@db-ux/core-foundations": "4.7.0-tabs-34782eb"
59
+ "@db-ux/core-components": "4.7.1",
60
+ "@db-ux/core-foundations": "4.7.1"
61
61
  }
62
62
  }