@cobre-npm/ds-v3 0.2.13 → 0.2.15
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.
|
@@ -620,6 +620,7 @@
|
|
|
620
620
|
--cobre-checkbox-radius-small: 6px;
|
|
621
621
|
--cobre-checkbox-radius-medium: 8px;
|
|
622
622
|
--cobre-checkbox-bg: var(--cobre-primary-10);
|
|
623
|
+
--cobre-checkbox-border: none;
|
|
623
624
|
--cobre-checkbox-icon-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
|
|
624
625
|
|
|
625
626
|
--cobre-checkbox-input-checked-bg: var(--cobre-secondary-50);
|
|
@@ -27,8 +27,8 @@ interface Props {
|
|
|
27
27
|
hideHeaders?: boolean;
|
|
28
28
|
fixedHeaders?: boolean;
|
|
29
29
|
tableError?: boolean;
|
|
30
|
-
|
|
31
|
-
|
|
30
|
+
isColumnCheckboxEnabled: boolean;
|
|
31
|
+
isMultipleCheckEnabled: boolean;
|
|
32
32
|
}
|
|
33
33
|
declare let __VLS_typeProps: Props;
|
|
34
34
|
type __VLS_PublicProps = {
|
|
@@ -46,7 +46,8 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
46
46
|
isResponsive: boolean;
|
|
47
47
|
allowNavigation: boolean;
|
|
48
48
|
showCheckboxes: boolean;
|
|
49
|
-
|
|
49
|
+
isColumnCheckboxEnabled: boolean;
|
|
50
|
+
isMultipleCheckEnabled: boolean;
|
|
50
51
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
51
52
|
"update:selectedRows": (selectedRows: any) => void;
|
|
52
53
|
selectItem: (...args: any[]) => void;
|
|
@@ -58,7 +59,8 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
58
59
|
isResponsive: boolean;
|
|
59
60
|
allowNavigation: boolean;
|
|
60
61
|
showCheckboxes: boolean;
|
|
61
|
-
|
|
62
|
+
isColumnCheckboxEnabled: boolean;
|
|
63
|
+
isMultipleCheckEnabled: boolean;
|
|
62
64
|
}>>> & {
|
|
63
65
|
onSelectItem?: ((...args: any[]) => any) | undefined;
|
|
64
66
|
"onUpdate:selectedRows"?: ((selectedRows: any) => any) | undefined;
|
|
@@ -69,8 +71,8 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
69
71
|
height: string;
|
|
70
72
|
isResponsive: boolean;
|
|
71
73
|
allowNavigation: boolean;
|
|
72
|
-
|
|
73
|
-
|
|
74
|
+
isColumnCheckboxEnabled: boolean;
|
|
75
|
+
isMultipleCheckEnabled: boolean;
|
|
74
76
|
}, {}>;
|
|
75
77
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
76
78
|
export default _default;
|