@cobre-npm/ds-v3 0.43.0 → 0.44.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.
|
@@ -345,6 +345,11 @@
|
|
|
345
345
|
--cobre-radio-input-hover-border: 1px solid var(--cobre-secondary-10);
|
|
346
346
|
|
|
347
347
|
--cobre-radio-input-disabled-bg: var(--cobre-primary-5);
|
|
348
|
+
|
|
349
|
+
--cobre-radio-box-padding: 12px;
|
|
350
|
+
--cobre-radio-box-radius: var(--cobre-radius-XS);
|
|
351
|
+
--cobre-radio-box-border: var(--cobre-border-stroke-M) solid var(--cobre-primary-20);
|
|
352
|
+
--cobre-radio-box-border-active: var(--cobre-border-stroke-M) solid var(--cobre-secondary-50);
|
|
348
353
|
}
|
|
349
354
|
|
|
350
355
|
|
|
@@ -7,20 +7,24 @@ interface Props {
|
|
|
7
7
|
name?: string;
|
|
8
8
|
id?: string;
|
|
9
9
|
description?: string;
|
|
10
|
+
type: "single" | "box";
|
|
10
11
|
}
|
|
11
12
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
12
13
|
modelValue: boolean;
|
|
13
14
|
value: string;
|
|
14
15
|
checked: boolean;
|
|
16
|
+
type: string;
|
|
15
17
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
16
18
|
"update:modelValue": (...args: any[]) => void;
|
|
17
19
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
18
20
|
modelValue: boolean;
|
|
19
21
|
value: string;
|
|
20
22
|
checked: boolean;
|
|
23
|
+
type: string;
|
|
21
24
|
}>>> & {
|
|
22
25
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
23
26
|
}, {
|
|
27
|
+
type: "single" | "box";
|
|
24
28
|
modelValue: string | boolean;
|
|
25
29
|
value: string | number | string[];
|
|
26
30
|
checked: boolean;
|