@cobre-npm/ds-v3 0.3.0 → 0.3.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.
- package/dist/cobre-ds-v3-lib.es.js +3068 -3142
- package/dist/style.css +1 -1
- package/dist/tokens/_components.scss +0 -1
- package/dist/types/components/CobreActionList/CobreActionList.vue.d.ts +1 -0
- package/dist/types/components/CobreSideMenu/components/SideMenuItem.vue.d.ts +1 -1
- package/dist/types/components/CobreSnackBar/CobreSnackBar.vue.d.ts +5 -1
- package/dist/types/components/index.d.ts +1 -1
- package/dist/types/utils/index.d.ts +0 -2
- package/package.json +1 -1
- /package/dist/types/components/{CobreDrawer/CobreDrawer.vue.d.ts → CobreFloatModal/CobreFloatModal.vue.d.ts} +0 -0
|
@@ -620,7 +620,6 @@
|
|
|
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;
|
|
624
623
|
--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");
|
|
625
624
|
|
|
626
625
|
--cobre-checkbox-input-checked-bg: var(--cobre-secondary-50);
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
interface Props {
|
|
2
2
|
closeToast: (e?: MouseEvent) => void;
|
|
3
3
|
message?: string;
|
|
4
|
-
type?:
|
|
4
|
+
type?: "success" | "error";
|
|
5
|
+
showCloseButton?: boolean;
|
|
5
6
|
btnLabel?: string;
|
|
6
7
|
btnAction?: () => void | Promise<void>;
|
|
7
8
|
}
|
|
@@ -9,15 +10,18 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
9
10
|
message: string;
|
|
10
11
|
type: string;
|
|
11
12
|
btnLabel: string;
|
|
13
|
+
showCloseButton: boolean;
|
|
12
14
|
btnAction: () => void;
|
|
13
15
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
14
16
|
message: string;
|
|
15
17
|
type: string;
|
|
16
18
|
btnLabel: string;
|
|
19
|
+
showCloseButton: boolean;
|
|
17
20
|
btnAction: () => void;
|
|
18
21
|
}>>>, {
|
|
19
22
|
type: "success" | "error";
|
|
20
23
|
message: string;
|
|
24
|
+
showCloseButton: boolean;
|
|
21
25
|
btnLabel: string;
|
|
22
26
|
btnAction: () => void | Promise<void>;
|
|
23
27
|
}, {}>;
|
|
@@ -30,7 +30,7 @@ export { default as CobreEmptyState } from './CobreEmptyState/CobreEmptyState.vu
|
|
|
30
30
|
export { default as CobreLogoField } from './CobreLogoField/CobreLogoField.vue';
|
|
31
31
|
export { default as CobreTruncateTooltipText } from './CobreTruncateTooltipText/CobreTruncateTooltipText.vue';
|
|
32
32
|
export { default as CobreInput } from './CobreInput/CobreInput.vue';
|
|
33
|
-
export { default as
|
|
33
|
+
export { default as CobreFloatModal } from './CobreFloatModal/CobreFloatModal.vue';
|
|
34
34
|
export { default as CobreCountryFlag } from './CobreCountryFlag/CobreCountryFlag.vue';
|
|
35
35
|
export { default as CobreSelect } from './CobreSelect/CobreSelect.vue';
|
|
36
36
|
export { default as CobreInputUrl } from './CobreInputUrl/CobreInputUrl.vue';
|
package/package.json
CHANGED
|
File without changes
|