@davincihealthcare/elty-design-system-vue 1.32.1 → 1.33.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/forms/ElInputRadioButton.vue.d.ts +103 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +4341 -4241
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +11 -11
- package/dist/index.umd.cjs.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
|
|
3
|
+
export declare const elRadioButtonSizes: readonly ["xs", "xxs"];
|
|
4
|
+
export declare const elRadioButtonColors: readonly ["primary", "secondary", "inactive"];
|
|
5
|
+
declare const _default: import('vue').DefineComponent<{
|
|
6
|
+
id: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
required: boolean;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
disabled: {
|
|
12
|
+
type: BooleanConstructor;
|
|
13
|
+
required: boolean;
|
|
14
|
+
default: boolean;
|
|
15
|
+
};
|
|
16
|
+
label: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
required: boolean;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
validation: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
required: boolean;
|
|
25
|
+
};
|
|
26
|
+
modelValue: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
required: true;
|
|
29
|
+
};
|
|
30
|
+
size: {
|
|
31
|
+
type: PropType<"xxs" | "xs">;
|
|
32
|
+
default: string;
|
|
33
|
+
required: false;
|
|
34
|
+
};
|
|
35
|
+
name: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
required: true;
|
|
38
|
+
};
|
|
39
|
+
value: {
|
|
40
|
+
type: StringConstructor;
|
|
41
|
+
required: true;
|
|
42
|
+
};
|
|
43
|
+
color: {
|
|
44
|
+
type: PropType<"primary" | "secondary" | "inactive">;
|
|
45
|
+
required: false;
|
|
46
|
+
default: string;
|
|
47
|
+
};
|
|
48
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
49
|
+
"update:modelValue": (val: String) => void;
|
|
50
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
51
|
+
id: {
|
|
52
|
+
type: StringConstructor;
|
|
53
|
+
required: boolean;
|
|
54
|
+
default: string;
|
|
55
|
+
};
|
|
56
|
+
disabled: {
|
|
57
|
+
type: BooleanConstructor;
|
|
58
|
+
required: boolean;
|
|
59
|
+
default: boolean;
|
|
60
|
+
};
|
|
61
|
+
label: {
|
|
62
|
+
type: StringConstructor;
|
|
63
|
+
required: boolean;
|
|
64
|
+
default: string;
|
|
65
|
+
};
|
|
66
|
+
validation: {
|
|
67
|
+
type: StringConstructor;
|
|
68
|
+
default: string;
|
|
69
|
+
required: boolean;
|
|
70
|
+
};
|
|
71
|
+
modelValue: {
|
|
72
|
+
type: StringConstructor;
|
|
73
|
+
required: true;
|
|
74
|
+
};
|
|
75
|
+
size: {
|
|
76
|
+
type: PropType<"xxs" | "xs">;
|
|
77
|
+
default: string;
|
|
78
|
+
required: false;
|
|
79
|
+
};
|
|
80
|
+
name: {
|
|
81
|
+
type: StringConstructor;
|
|
82
|
+
required: true;
|
|
83
|
+
};
|
|
84
|
+
value: {
|
|
85
|
+
type: StringConstructor;
|
|
86
|
+
required: true;
|
|
87
|
+
};
|
|
88
|
+
color: {
|
|
89
|
+
type: PropType<"primary" | "secondary" | "inactive">;
|
|
90
|
+
required: false;
|
|
91
|
+
default: string;
|
|
92
|
+
};
|
|
93
|
+
}>> & {
|
|
94
|
+
"onUpdate:modelValue"?: ((val: String) => any) | undefined;
|
|
95
|
+
}, {
|
|
96
|
+
disabled: boolean;
|
|
97
|
+
label: string;
|
|
98
|
+
id: string;
|
|
99
|
+
color: "primary" | "secondary" | "inactive";
|
|
100
|
+
size: "xxs" | "xs";
|
|
101
|
+
validation: string;
|
|
102
|
+
}, {}>;
|
|
103
|
+
export default _default;
|
package/dist/index.d.ts
CHANGED
|
@@ -70,6 +70,8 @@ export * from './ElToast.vue';
|
|
|
70
70
|
export { default as ElToast } from './ElToast.vue';
|
|
71
71
|
export * from './ElInlineBanner.vue';
|
|
72
72
|
export { default as ElInlineBanner } from './ElInlineBanner.vue';
|
|
73
|
+
export * from './forms/ElInputRadioButton.vue';
|
|
74
|
+
export { default as ElInputRadioButton } from './forms/ElInputRadioButton.vue';
|
|
73
75
|
export * from './ElClipToAnchor.vue';
|
|
74
76
|
export { default as ElClipToAnchor } from './ElClipToAnchor.vue';
|
|
75
77
|
export * from './ElTable.vue';
|