@davincihealthcare/elty-design-system-vue 1.11.4 → 1.12.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/forms/ElInputCheckbox.vue.d.ts +9 -0
- package/dist/forms/ElInputTextarea.vue.d.ts +9 -0
- package/dist/index.js +1514 -1494
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +5 -5
- package/dist/index.umd.cjs.map +1 -1
- package/package.json +1 -1
|
@@ -14,6 +14,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
14
14
|
default: string;
|
|
15
15
|
required: false;
|
|
16
16
|
};
|
|
17
|
+
inputClass: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
17
21
|
placeholder: {
|
|
18
22
|
type: StringConstructor;
|
|
19
23
|
default: string;
|
|
@@ -62,6 +66,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
62
66
|
default: string;
|
|
63
67
|
required: false;
|
|
64
68
|
};
|
|
69
|
+
inputClass: {
|
|
70
|
+
type: StringConstructor;
|
|
71
|
+
default: string;
|
|
72
|
+
};
|
|
65
73
|
placeholder: {
|
|
66
74
|
type: StringConstructor;
|
|
67
75
|
default: string;
|
|
@@ -109,6 +117,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
109
117
|
errorMessage: string | boolean;
|
|
110
118
|
hiddenErrorMessage: boolean;
|
|
111
119
|
validation: string;
|
|
120
|
+
inputClass: string;
|
|
112
121
|
}, {}>, {
|
|
113
122
|
default?(_: {}): any;
|
|
114
123
|
}>;
|
|
@@ -8,6 +8,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8
8
|
type: NumberConstructor;
|
|
9
9
|
default: number;
|
|
10
10
|
};
|
|
11
|
+
textareaClass: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
11
15
|
modelValue: {
|
|
12
16
|
type: import("vue").PropType<TextualValueType>;
|
|
13
17
|
default: string;
|
|
@@ -53,6 +57,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
53
57
|
type: NumberConstructor;
|
|
54
58
|
default: number;
|
|
55
59
|
};
|
|
60
|
+
textareaClass: {
|
|
61
|
+
type: StringConstructor;
|
|
62
|
+
default: string;
|
|
63
|
+
};
|
|
56
64
|
modelValue: {
|
|
57
65
|
type: import("vue").PropType<TextualValueType>;
|
|
58
66
|
default: string;
|
|
@@ -99,5 +107,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
99
107
|
validation: string;
|
|
100
108
|
resizable: boolean;
|
|
101
109
|
maxCharacters: number;
|
|
110
|
+
textareaClass: string;
|
|
102
111
|
}, {}>;
|
|
103
112
|
export default _default;
|