@cobre-npm/ds-v3 0.124.2 → 0.126.0-test1

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.
@@ -217,6 +217,7 @@
217
217
  --cobre-tabs-color: var(--cobre-primary-80);
218
218
  --cobre-tabs-font-weight: 400;
219
219
  --cobre-tabs-font-size: var(--cobre-label-medium-fs);
220
+ --cobre-tabs-sm-font-size: var(--cobre-label-small-fs);
220
221
  --cobre-tabs-radius: 0px;
221
222
  --cobre-tabs-padding: 8px 0px;
222
223
  --cobre-tabs-margin: 8px;
@@ -7,11 +7,13 @@ interface Tab {
7
7
  disabled?: boolean;
8
8
  }
9
9
  type Direction = 'row' | 'column';
10
+ type Size = 'sm' | 'md';
10
11
  type __VLS_Props = {
11
12
  tabs: Tab[];
12
13
  modelValue?: Tab;
13
14
  direction?: Direction;
14
15
  hasBorder?: boolean;
16
+ size?: Size;
15
17
  };
16
18
  declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
17
19
  select: (tab: Tab) => any;
@@ -8,6 +8,7 @@ interface Props {
8
8
  btnChevronHide?: boolean;
9
9
  closeOnClickOutside?: boolean;
10
10
  lockScreen?: boolean;
11
+ transitionDuration?: string;
11
12
  }
12
13
  declare var __VLS_16: {}, __VLS_18: {}, __VLS_20: {};
13
14
  type __VLS_Slots = {} & {
@@ -11,6 +11,7 @@ interface Props {
11
11
  prevLabel?: string;
12
12
  nextLabel?: string;
13
13
  finishLabel?: string;
14
+ initialDelay?: number;
14
15
  }
15
16
  declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
16
17
  navigate: (from: number, to: number) => any;
@@ -24,5 +25,6 @@ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, imp
24
25
  prevLabel: string;
25
26
  nextLabel: string;
26
27
  finishLabel: string;
28
+ initialDelay: number;
27
29
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
28
30
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cobre-npm/ds-v3",
3
- "version": "0.124.2",
3
+ "version": "0.126.0-test1",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"
@@ -66,4 +66,4 @@
66
66
  "date-fns": "^2.30.0",
67
67
  "date-fns-tz": "^2.0.1"
68
68
  }
69
- }
69
+ }