@cobre-npm/ds-v3 0.59.1 → 0.60.0
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 +2032 -2027
- package/dist/style.css +1 -1
- package/dist/tokens/_components.scss +1 -1
- package/dist/types/components/atoms/CobreAlert/CobreAlert.vue.d.ts +6 -2
- package/dist/types/components/molecules/CobreRowTable/CobreRowTable.vue.d.ts +4 -0
- package/dist/types/components/organisms/CobreSideMenu/CobreSideMenu.vue.d.ts +1 -0
- package/package.json +1 -1
|
@@ -776,7 +776,7 @@
|
|
|
776
776
|
*/
|
|
777
777
|
|
|
778
778
|
:root {
|
|
779
|
-
--cobre-uploader-v3-bg: var(--cobre-
|
|
779
|
+
--cobre-uploader-v3-bg: var(--cobre-primary-5);
|
|
780
780
|
--cobre-uploader-v3-color: var(--cobre-primary-80);
|
|
781
781
|
--cobre-uploader-v3-border: var(--cobre-border-stroke-L) dashed var(--cobre-primary-20);
|
|
782
782
|
--cobre-uploader-v3-height: 108px;
|
|
@@ -4,23 +4,27 @@ interface Props {
|
|
|
4
4
|
content: string;
|
|
5
5
|
title: string;
|
|
6
6
|
src?: string;
|
|
7
|
+
hasCloseButton?: boolean;
|
|
7
8
|
}
|
|
8
9
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
9
10
|
type: string;
|
|
10
11
|
title: string;
|
|
11
12
|
content: string;
|
|
13
|
+
hasCloseButton: boolean;
|
|
12
14
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
|
-
|
|
15
|
+
close: (...args: any[]) => void;
|
|
14
16
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
15
17
|
type: string;
|
|
16
18
|
title: string;
|
|
17
19
|
content: string;
|
|
20
|
+
hasCloseButton: boolean;
|
|
18
21
|
}>>> & {
|
|
19
|
-
|
|
22
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
20
23
|
}, {
|
|
21
24
|
type: IconType;
|
|
22
25
|
title: string;
|
|
23
26
|
content: string;
|
|
27
|
+
hasCloseButton: boolean;
|
|
24
28
|
}, {}>;
|
|
25
29
|
export default _default;
|
|
26
30
|
type __VLS_WithDefaults<P, D> = {
|
|
@@ -34,6 +34,7 @@ interface Props {
|
|
|
34
34
|
haveToolbar?: boolean;
|
|
35
35
|
isToolbarOpen?: boolean;
|
|
36
36
|
kebabMenuOptions?: Option[];
|
|
37
|
+
tableWrap?: boolean;
|
|
37
38
|
}
|
|
38
39
|
declare let __VLS_typeProps: Props;
|
|
39
40
|
declare const selectedRows: Ref<Item[]>;
|
|
@@ -56,6 +57,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
56
57
|
isMultipleCheckEnabled: boolean;
|
|
57
58
|
haveToolbar: boolean;
|
|
58
59
|
isToolbarOpen: boolean;
|
|
60
|
+
tableWrap: boolean;
|
|
59
61
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
60
62
|
"update:selectedRows": (selectedRows: Item[]) => void;
|
|
61
63
|
selectItem: (...args: any[]) => void;
|
|
@@ -72,6 +74,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
72
74
|
isMultipleCheckEnabled: boolean;
|
|
73
75
|
haveToolbar: boolean;
|
|
74
76
|
isToolbarOpen: boolean;
|
|
77
|
+
tableWrap: boolean;
|
|
75
78
|
}>>> & {
|
|
76
79
|
onSelectItem?: ((...args: any[]) => any) | undefined;
|
|
77
80
|
onClickKebabOption?: ((...args: any[]) => any) | undefined;
|
|
@@ -87,6 +90,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
87
90
|
isMultipleCheckEnabled: boolean;
|
|
88
91
|
haveToolbar: boolean;
|
|
89
92
|
isToolbarOpen: boolean;
|
|
93
|
+
tableWrap: boolean;
|
|
90
94
|
}, {}>;
|
|
91
95
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
92
96
|
export default _default;
|
|
@@ -16,6 +16,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
16
16
|
navigateSubPage: boolean;
|
|
17
17
|
}>, {
|
|
18
18
|
preLoadSubPages: (path?: string) => void;
|
|
19
|
+
closeSubPage: () => Promise<void>;
|
|
19
20
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
20
21
|
selectOption: (...args: any[]) => void;
|
|
21
22
|
collapseMenu: (...args: any[]) => void;
|