@cobre-npm/ds-v3 0.3.11 → 0.3.13
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/dist/cobre-ds-v3-lib.es.js +3439 -3599
- package/dist/style.css +1 -1
- package/dist/tokens/_components.scss +1 -1
- package/dist/types/components/CobreBankLogo/CobreBankLogo.vue.d.ts +1 -1
- package/dist/types/components/CobreRowTable/CobreRowTable.vue.d.ts +3 -0
- package/dist/types/components/CobreSideMenu/components/SubItems.vue.d.ts +1 -1
- package/dist/types/components/CobreTabMenu/CobreTabMenu.vue.d.ts +0 -2
- package/dist/types/types/button.types.d.ts +1 -1
- package/package.json +1 -1
|
@@ -400,7 +400,7 @@
|
|
|
400
400
|
|
|
401
401
|
:root {
|
|
402
402
|
--cobre-tabs-bg: transparent !important;
|
|
403
|
-
--cobre-tabs-border: var(--cobre-border-stroke-L) !important;
|
|
403
|
+
--cobre-tabs-border: var(--cobre-border-stroke-L) solid transparent !important;
|
|
404
404
|
--cobre-tabs-color: var(--cobre-primary-80) !important;
|
|
405
405
|
--cobre-tabs-font-weight: 400 !important;
|
|
406
406
|
--cobre-tabs-font-size: var(--cobre-label-medium-fs) !important;
|
|
@@ -51,6 +51,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
51
51
|
isColumnCheckboxEnabled: boolean;
|
|
52
52
|
isMultipleCheckEnabled: boolean;
|
|
53
53
|
haveToolbar: boolean;
|
|
54
|
+
isToolbarOpen: boolean;
|
|
54
55
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
55
56
|
"update:selectedRows": (selectedRows: any) => void;
|
|
56
57
|
selectItem: (...args: any[]) => void;
|
|
@@ -65,6 +66,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
65
66
|
isColumnCheckboxEnabled: boolean;
|
|
66
67
|
isMultipleCheckEnabled: boolean;
|
|
67
68
|
haveToolbar: boolean;
|
|
69
|
+
isToolbarOpen: boolean;
|
|
68
70
|
}>>> & {
|
|
69
71
|
onSelectItem?: ((...args: any[]) => any) | undefined;
|
|
70
72
|
"onUpdate:selectedRows"?: ((selectedRows: any) => any) | undefined;
|
|
@@ -78,6 +80,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
78
80
|
isColumnCheckboxEnabled: boolean;
|
|
79
81
|
isMultipleCheckEnabled: boolean;
|
|
80
82
|
haveToolbar: boolean;
|
|
83
|
+
isToolbarOpen: boolean;
|
|
81
84
|
}, {}>;
|
|
82
85
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
83
86
|
export default _default;
|
|
@@ -21,7 +21,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
21
21
|
};
|
|
22
22
|
hasBorder: {
|
|
23
23
|
type: BooleanConstructor;
|
|
24
|
-
default: boolean;
|
|
25
24
|
};
|
|
26
25
|
}, {
|
|
27
26
|
onSelectTab: (tab: Tab) => void;
|
|
@@ -44,7 +43,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
44
43
|
};
|
|
45
44
|
hasBorder: {
|
|
46
45
|
type: BooleanConstructor;
|
|
47
|
-
default: boolean;
|
|
48
46
|
};
|
|
49
47
|
}>>, {
|
|
50
48
|
modelValue: Tab;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type ButtonThemes = 'primary' | 'secondary' | 'ghost' | 'ghost-small' | 'ghost-teal' | 'link' | '
|
|
1
|
+
export type ButtonThemes = 'primary' | 'secondary' | 'ghost' | 'ghost-small' | 'ghost-teal' | 'link' | 'single' | 'filter' | 'secondary-cloudy' | 'icon' | 'icon-cloudy' | 'toolbar' | 'primary-warning' | 'chip';
|