@davincihealthcare/elty-design-system-vue 1.0.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/README.md +40 -0
- package/dist/ElAccordion.vue.d.ts +140 -0
- package/dist/ElAvatar.vue.d.ts +33 -0
- package/dist/ElBadge.vue.d.ts +34 -0
- package/dist/ElButton.vue.d.ts +77 -0
- package/dist/ElCalendarCard.vue.d.ts +65 -0
- package/dist/ElCalendarCell.vue.d.ts +48 -0
- package/dist/ElDrawer.vue.d.ts +38 -0
- package/dist/ElDropdown.vue.d.ts +309 -0
- package/dist/ElFile.vue.d.ts +25 -0
- package/dist/ElFooter.vue.d.ts +2 -0
- package/dist/ElIcon.vue.d.ts +29 -0
- package/dist/ElIconButton.vue.d.ts +56 -0
- package/dist/ElItem.vue.d.ts +46 -0
- package/dist/ElLogo.vue.d.ts +38 -0
- package/dist/ElSortingHeader.vue.d.ts +31 -0
- package/dist/ElSuggestionChip.vue.d.ts +17 -0
- package/dist/ElTab.vue.d.ts +23 -0
- package/dist/ElTabGroup.vue.d.ts +25 -0
- package/dist/ElTableHead.vue.d.ts +54 -0
- package/dist/ElTabs.vue.d.ts +27 -0
- package/dist/ElTag.vue.d.ts +56 -0
- package/dist/ElTest.vue.d.ts +2 -0
- package/dist/ElTextCell.vue.d.ts +36 -0
- package/dist/ElToast.vue.d.ts +11 -0
- package/dist/_ClipToAnchor.vue.d.ts +27 -0
- package/dist/_CustomTransition.vue.d.ts +30 -0
- package/dist/_SimpleTooltip.vue.d.ts +25 -0
- package/dist/forms/ElInputCheckbox.vue.d.ts +120 -0
- package/dist/forms/ElInputContainer.vue.d.ts +71 -0
- package/dist/forms/ElInputDate.vue.d.ts +107 -0
- package/dist/forms/ElInputFile.vue.d.ts +104 -0
- package/dist/forms/ElInputMeasureUnit.vue.d.ts +132 -0
- package/dist/forms/ElInputNumber.vue.d.ts +106 -0
- package/dist/forms/ElInputPhone.vue.d.ts +85 -0
- package/dist/forms/ElInputSelect.vue.d.ts +130 -0
- package/dist/forms/ElInputText.vue.d.ts +120 -0
- package/dist/forms/ElInputTextarea.vue.d.ts +103 -0
- package/dist/forms/input.d.ts +245 -0
- package/dist/forms/utils.d.ts +24 -0
- package/dist/forms/validation-rules.d.ts +1 -0
- package/dist/index.d.ts +70 -0
- package/dist/index.mjs +22989 -0
- package/dist/index.mjs.map +1 -0
- package/dist/routes.d.ts +10 -0
- package/dist/style.css +1 -0
- package/dist/types.d.ts +83 -0
- package/dist/utils.d.ts +2 -0
- package/package.json +78 -0
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
import { NumberValueType } from './input';
|
|
2
|
+
import { PropType } from 'vue';
|
|
3
|
+
interface MeasureUnitTypes {
|
|
4
|
+
weight: string[];
|
|
5
|
+
height: string[];
|
|
6
|
+
drugUnitMeasure: string[];
|
|
7
|
+
drugTimeMeasure: string[];
|
|
8
|
+
drugDurationMeasure: string[];
|
|
9
|
+
}
|
|
10
|
+
declare const _default: import("vue").DefineComponent<{
|
|
11
|
+
availableUnitCategory: {
|
|
12
|
+
type: PropType<keyof MeasureUnitTypes>;
|
|
13
|
+
default: () => string;
|
|
14
|
+
};
|
|
15
|
+
defaultUnit: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
default: null;
|
|
18
|
+
};
|
|
19
|
+
disableUnitChange: {
|
|
20
|
+
type: BooleanConstructor;
|
|
21
|
+
default: boolean;
|
|
22
|
+
};
|
|
23
|
+
modelValue: {
|
|
24
|
+
type: PropType<NumberValueType>;
|
|
25
|
+
};
|
|
26
|
+
placeholder: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
required: boolean;
|
|
30
|
+
};
|
|
31
|
+
step: {
|
|
32
|
+
type: NumberConstructor;
|
|
33
|
+
default: number;
|
|
34
|
+
required: boolean;
|
|
35
|
+
};
|
|
36
|
+
label: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
required: boolean;
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
41
|
+
validation: {
|
|
42
|
+
type: StringConstructor;
|
|
43
|
+
default: string;
|
|
44
|
+
required: boolean;
|
|
45
|
+
};
|
|
46
|
+
disabled: {
|
|
47
|
+
type: BooleanConstructor;
|
|
48
|
+
required: boolean;
|
|
49
|
+
default: boolean;
|
|
50
|
+
};
|
|
51
|
+
errorMessage: {
|
|
52
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
53
|
+
required: boolean;
|
|
54
|
+
default: undefined;
|
|
55
|
+
};
|
|
56
|
+
hiddenErrorMessage: {
|
|
57
|
+
type: BooleanConstructor;
|
|
58
|
+
required: boolean;
|
|
59
|
+
default: boolean;
|
|
60
|
+
};
|
|
61
|
+
}, {
|
|
62
|
+
changeUnit: (value: string) => string;
|
|
63
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
64
|
+
"update:modelValue": (value: NumberValueType) => void;
|
|
65
|
+
changeUnit: (value: string) => void;
|
|
66
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
67
|
+
availableUnitCategory: {
|
|
68
|
+
type: PropType<keyof MeasureUnitTypes>;
|
|
69
|
+
default: () => string;
|
|
70
|
+
};
|
|
71
|
+
defaultUnit: {
|
|
72
|
+
type: StringConstructor;
|
|
73
|
+
default: null;
|
|
74
|
+
};
|
|
75
|
+
disableUnitChange: {
|
|
76
|
+
type: BooleanConstructor;
|
|
77
|
+
default: boolean;
|
|
78
|
+
};
|
|
79
|
+
modelValue: {
|
|
80
|
+
type: PropType<NumberValueType>;
|
|
81
|
+
};
|
|
82
|
+
placeholder: {
|
|
83
|
+
type: StringConstructor;
|
|
84
|
+
default: string;
|
|
85
|
+
required: boolean;
|
|
86
|
+
};
|
|
87
|
+
step: {
|
|
88
|
+
type: NumberConstructor;
|
|
89
|
+
default: number;
|
|
90
|
+
required: boolean;
|
|
91
|
+
};
|
|
92
|
+
label: {
|
|
93
|
+
type: StringConstructor;
|
|
94
|
+
required: boolean;
|
|
95
|
+
default: string;
|
|
96
|
+
};
|
|
97
|
+
validation: {
|
|
98
|
+
type: StringConstructor;
|
|
99
|
+
default: string;
|
|
100
|
+
required: boolean;
|
|
101
|
+
};
|
|
102
|
+
disabled: {
|
|
103
|
+
type: BooleanConstructor;
|
|
104
|
+
required: boolean;
|
|
105
|
+
default: boolean;
|
|
106
|
+
};
|
|
107
|
+
errorMessage: {
|
|
108
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
109
|
+
required: boolean;
|
|
110
|
+
default: undefined;
|
|
111
|
+
};
|
|
112
|
+
hiddenErrorMessage: {
|
|
113
|
+
type: BooleanConstructor;
|
|
114
|
+
required: boolean;
|
|
115
|
+
default: boolean;
|
|
116
|
+
};
|
|
117
|
+
}>> & {
|
|
118
|
+
"onUpdate:modelValue"?: ((value: NumberValueType) => any) | undefined;
|
|
119
|
+
onChangeUnit?: ((value: string) => any) | undefined;
|
|
120
|
+
}, {
|
|
121
|
+
disabled: boolean;
|
|
122
|
+
label: string;
|
|
123
|
+
placeholder: string;
|
|
124
|
+
step: number;
|
|
125
|
+
errorMessage: string | boolean;
|
|
126
|
+
hiddenErrorMessage: boolean;
|
|
127
|
+
validation: string;
|
|
128
|
+
availableUnitCategory: keyof MeasureUnitTypes;
|
|
129
|
+
defaultUnit: string;
|
|
130
|
+
disableUnitChange: boolean;
|
|
131
|
+
}, {}>;
|
|
132
|
+
export default _default;
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import { NumberValueType } from './input';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
isTwoDecimals: {
|
|
4
|
+
type: BooleanConstructor;
|
|
5
|
+
default: boolean;
|
|
6
|
+
};
|
|
7
|
+
modelValue: {
|
|
8
|
+
type: import("vue").PropType<NumberValueType>;
|
|
9
|
+
};
|
|
10
|
+
placeholder: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
required: boolean;
|
|
14
|
+
};
|
|
15
|
+
step: {
|
|
16
|
+
type: NumberConstructor;
|
|
17
|
+
default: number;
|
|
18
|
+
required: boolean;
|
|
19
|
+
};
|
|
20
|
+
label: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
required: boolean;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
validation: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
default: string;
|
|
28
|
+
required: boolean;
|
|
29
|
+
};
|
|
30
|
+
disabled: {
|
|
31
|
+
type: BooleanConstructor;
|
|
32
|
+
required: boolean;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
errorMessage: {
|
|
36
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
37
|
+
required: boolean;
|
|
38
|
+
default: undefined;
|
|
39
|
+
};
|
|
40
|
+
hiddenErrorMessage: {
|
|
41
|
+
type: BooleanConstructor;
|
|
42
|
+
required: boolean;
|
|
43
|
+
default: boolean;
|
|
44
|
+
};
|
|
45
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
46
|
+
"update:modelValue": (value: NumberValueType) => void;
|
|
47
|
+
overlayedBtnClicked: () => void;
|
|
48
|
+
"update:formattedAmount": (value: NumberValueType) => void;
|
|
49
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
50
|
+
isTwoDecimals: {
|
|
51
|
+
type: BooleanConstructor;
|
|
52
|
+
default: boolean;
|
|
53
|
+
};
|
|
54
|
+
modelValue: {
|
|
55
|
+
type: import("vue").PropType<NumberValueType>;
|
|
56
|
+
};
|
|
57
|
+
placeholder: {
|
|
58
|
+
type: StringConstructor;
|
|
59
|
+
default: string;
|
|
60
|
+
required: boolean;
|
|
61
|
+
};
|
|
62
|
+
step: {
|
|
63
|
+
type: NumberConstructor;
|
|
64
|
+
default: number;
|
|
65
|
+
required: boolean;
|
|
66
|
+
};
|
|
67
|
+
label: {
|
|
68
|
+
type: StringConstructor;
|
|
69
|
+
required: boolean;
|
|
70
|
+
default: string;
|
|
71
|
+
};
|
|
72
|
+
validation: {
|
|
73
|
+
type: StringConstructor;
|
|
74
|
+
default: string;
|
|
75
|
+
required: boolean;
|
|
76
|
+
};
|
|
77
|
+
disabled: {
|
|
78
|
+
type: BooleanConstructor;
|
|
79
|
+
required: boolean;
|
|
80
|
+
default: boolean;
|
|
81
|
+
};
|
|
82
|
+
errorMessage: {
|
|
83
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
84
|
+
required: boolean;
|
|
85
|
+
default: undefined;
|
|
86
|
+
};
|
|
87
|
+
hiddenErrorMessage: {
|
|
88
|
+
type: BooleanConstructor;
|
|
89
|
+
required: boolean;
|
|
90
|
+
default: boolean;
|
|
91
|
+
};
|
|
92
|
+
}>> & {
|
|
93
|
+
"onUpdate:modelValue"?: ((value: NumberValueType) => any) | undefined;
|
|
94
|
+
onOverlayedBtnClicked?: (() => any) | undefined;
|
|
95
|
+
"onUpdate:formattedAmount"?: ((value: NumberValueType) => any) | undefined;
|
|
96
|
+
}, {
|
|
97
|
+
disabled: boolean;
|
|
98
|
+
label: string;
|
|
99
|
+
placeholder: string;
|
|
100
|
+
step: number;
|
|
101
|
+
errorMessage: string | boolean;
|
|
102
|
+
hiddenErrorMessage: boolean;
|
|
103
|
+
validation: string;
|
|
104
|
+
isTwoDecimals: boolean;
|
|
105
|
+
}, {}>;
|
|
106
|
+
export default _default;
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { TextualValueType } from './input';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
modelValue: {
|
|
4
|
+
type: import("vue").PropType<TextualValueType>;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
placeholder: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
required: boolean;
|
|
11
|
+
};
|
|
12
|
+
label: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
required: boolean;
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
validation: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: string;
|
|
20
|
+
required: boolean;
|
|
21
|
+
};
|
|
22
|
+
disabled: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
required: boolean;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
27
|
+
errorMessage: {
|
|
28
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
29
|
+
required: boolean;
|
|
30
|
+
default: undefined;
|
|
31
|
+
};
|
|
32
|
+
hiddenErrorMessage: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
required: boolean;
|
|
35
|
+
default: boolean;
|
|
36
|
+
};
|
|
37
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
38
|
+
"update:modelValue": (value: TextualValueType) => void;
|
|
39
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
40
|
+
modelValue: {
|
|
41
|
+
type: import("vue").PropType<TextualValueType>;
|
|
42
|
+
default: string;
|
|
43
|
+
};
|
|
44
|
+
placeholder: {
|
|
45
|
+
type: StringConstructor;
|
|
46
|
+
default: string;
|
|
47
|
+
required: boolean;
|
|
48
|
+
};
|
|
49
|
+
label: {
|
|
50
|
+
type: StringConstructor;
|
|
51
|
+
required: boolean;
|
|
52
|
+
default: string;
|
|
53
|
+
};
|
|
54
|
+
validation: {
|
|
55
|
+
type: StringConstructor;
|
|
56
|
+
default: string;
|
|
57
|
+
required: boolean;
|
|
58
|
+
};
|
|
59
|
+
disabled: {
|
|
60
|
+
type: BooleanConstructor;
|
|
61
|
+
required: boolean;
|
|
62
|
+
default: boolean;
|
|
63
|
+
};
|
|
64
|
+
errorMessage: {
|
|
65
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
66
|
+
required: boolean;
|
|
67
|
+
default: undefined;
|
|
68
|
+
};
|
|
69
|
+
hiddenErrorMessage: {
|
|
70
|
+
type: BooleanConstructor;
|
|
71
|
+
required: boolean;
|
|
72
|
+
default: boolean;
|
|
73
|
+
};
|
|
74
|
+
}>> & {
|
|
75
|
+
"onUpdate:modelValue"?: ((value: TextualValueType) => any) | undefined;
|
|
76
|
+
}, {
|
|
77
|
+
disabled: boolean;
|
|
78
|
+
label: string;
|
|
79
|
+
placeholder: string;
|
|
80
|
+
modelValue: TextualValueType;
|
|
81
|
+
errorMessage: string | boolean;
|
|
82
|
+
hiddenErrorMessage: boolean;
|
|
83
|
+
validation: string;
|
|
84
|
+
}, {}>;
|
|
85
|
+
export default _default;
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { OptionType } from '../types';
|
|
3
|
+
import { PositionToAnchor } from '../_ClipToAnchor.vue';
|
|
4
|
+
import { AutocompleteOptionType } from './utils';
|
|
5
|
+
type ValueType = string | string[] | null | undefined;
|
|
6
|
+
declare const _default: import("vue").DefineComponent<{
|
|
7
|
+
modelValue: {
|
|
8
|
+
type: PropType<ValueType>;
|
|
9
|
+
required: false;
|
|
10
|
+
default: undefined;
|
|
11
|
+
};
|
|
12
|
+
placeholder: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: string;
|
|
15
|
+
required: false;
|
|
16
|
+
};
|
|
17
|
+
options: {
|
|
18
|
+
type: PropType<(OptionType | AutocompleteOptionType)[]>;
|
|
19
|
+
required: true;
|
|
20
|
+
};
|
|
21
|
+
multiple: {
|
|
22
|
+
type: BooleanConstructor;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
noRemoveValue: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
positionToAnchor: {
|
|
30
|
+
type: PropType<PositionToAnchor>;
|
|
31
|
+
required: false;
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
34
|
+
label: {
|
|
35
|
+
type: StringConstructor;
|
|
36
|
+
required: boolean;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
validation: {
|
|
40
|
+
type: StringConstructor;
|
|
41
|
+
default: string;
|
|
42
|
+
required: boolean;
|
|
43
|
+
};
|
|
44
|
+
disabled: {
|
|
45
|
+
type: BooleanConstructor;
|
|
46
|
+
required: boolean;
|
|
47
|
+
default: boolean;
|
|
48
|
+
};
|
|
49
|
+
errorMessage: {
|
|
50
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
51
|
+
required: boolean;
|
|
52
|
+
default: undefined;
|
|
53
|
+
};
|
|
54
|
+
hiddenErrorMessage: {
|
|
55
|
+
type: BooleanConstructor;
|
|
56
|
+
required: boolean;
|
|
57
|
+
default: boolean;
|
|
58
|
+
};
|
|
59
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
60
|
+
"update:modelValue": (newValue: ValueType) => void;
|
|
61
|
+
"update:modelLabel": (newValue: ValueType) => void;
|
|
62
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
63
|
+
modelValue: {
|
|
64
|
+
type: PropType<ValueType>;
|
|
65
|
+
required: false;
|
|
66
|
+
default: undefined;
|
|
67
|
+
};
|
|
68
|
+
placeholder: {
|
|
69
|
+
type: StringConstructor;
|
|
70
|
+
default: string;
|
|
71
|
+
required: false;
|
|
72
|
+
};
|
|
73
|
+
options: {
|
|
74
|
+
type: PropType<(OptionType | AutocompleteOptionType)[]>;
|
|
75
|
+
required: true;
|
|
76
|
+
};
|
|
77
|
+
multiple: {
|
|
78
|
+
type: BooleanConstructor;
|
|
79
|
+
default: boolean;
|
|
80
|
+
};
|
|
81
|
+
noRemoveValue: {
|
|
82
|
+
type: BooleanConstructor;
|
|
83
|
+
default: boolean;
|
|
84
|
+
};
|
|
85
|
+
positionToAnchor: {
|
|
86
|
+
type: PropType<PositionToAnchor>;
|
|
87
|
+
required: false;
|
|
88
|
+
default: string;
|
|
89
|
+
};
|
|
90
|
+
label: {
|
|
91
|
+
type: StringConstructor;
|
|
92
|
+
required: boolean;
|
|
93
|
+
default: string;
|
|
94
|
+
};
|
|
95
|
+
validation: {
|
|
96
|
+
type: StringConstructor;
|
|
97
|
+
default: string;
|
|
98
|
+
required: boolean;
|
|
99
|
+
};
|
|
100
|
+
disabled: {
|
|
101
|
+
type: BooleanConstructor;
|
|
102
|
+
required: boolean;
|
|
103
|
+
default: boolean;
|
|
104
|
+
};
|
|
105
|
+
errorMessage: {
|
|
106
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
107
|
+
required: boolean;
|
|
108
|
+
default: undefined;
|
|
109
|
+
};
|
|
110
|
+
hiddenErrorMessage: {
|
|
111
|
+
type: BooleanConstructor;
|
|
112
|
+
required: boolean;
|
|
113
|
+
default: boolean;
|
|
114
|
+
};
|
|
115
|
+
}>> & {
|
|
116
|
+
"onUpdate:modelValue"?: ((newValue: ValueType) => any) | undefined;
|
|
117
|
+
"onUpdate:modelLabel"?: ((newValue: ValueType) => any) | undefined;
|
|
118
|
+
}, {
|
|
119
|
+
disabled: boolean;
|
|
120
|
+
label: string;
|
|
121
|
+
placeholder: string;
|
|
122
|
+
positionToAnchor: PositionToAnchor;
|
|
123
|
+
modelValue: ValueType;
|
|
124
|
+
errorMessage: string | boolean;
|
|
125
|
+
hiddenErrorMessage: boolean;
|
|
126
|
+
validation: string;
|
|
127
|
+
multiple: boolean;
|
|
128
|
+
noRemoveValue: boolean;
|
|
129
|
+
}, {}>;
|
|
130
|
+
export default _default;
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import { TextualValueType } from './input';
|
|
2
|
+
import { PropType } from 'vue';
|
|
3
|
+
import { ElIconProps } from '../ElIcon.vue';
|
|
4
|
+
export declare const elInputTextTypes: readonly ["text", "password"];
|
|
5
|
+
export type ElInputTextType = (typeof elInputTextTypes)[number];
|
|
6
|
+
declare const _default: import("vue").DefineComponent<{
|
|
7
|
+
type: {
|
|
8
|
+
type: PropType<"text" | "password">;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
leadingIcon: {
|
|
12
|
+
type: PropType<ElIconProps>;
|
|
13
|
+
default: undefined;
|
|
14
|
+
required: false;
|
|
15
|
+
};
|
|
16
|
+
trailingIcon: {
|
|
17
|
+
type: PropType<ElIconProps>;
|
|
18
|
+
default: undefined;
|
|
19
|
+
required: false;
|
|
20
|
+
};
|
|
21
|
+
modelValue: {
|
|
22
|
+
type: PropType<TextualValueType>;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
placeholder: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
default: string;
|
|
28
|
+
required: boolean;
|
|
29
|
+
};
|
|
30
|
+
label: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
required: boolean;
|
|
33
|
+
default: string;
|
|
34
|
+
};
|
|
35
|
+
validation: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
default: string;
|
|
38
|
+
required: boolean;
|
|
39
|
+
};
|
|
40
|
+
disabled: {
|
|
41
|
+
type: BooleanConstructor;
|
|
42
|
+
required: boolean;
|
|
43
|
+
default: boolean;
|
|
44
|
+
};
|
|
45
|
+
errorMessage: {
|
|
46
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
47
|
+
required: boolean;
|
|
48
|
+
default: undefined;
|
|
49
|
+
};
|
|
50
|
+
hiddenErrorMessage: {
|
|
51
|
+
type: BooleanConstructor;
|
|
52
|
+
required: boolean;
|
|
53
|
+
default: boolean;
|
|
54
|
+
};
|
|
55
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
56
|
+
"update:modelValue": (value: TextualValueType) => void;
|
|
57
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
58
|
+
type: {
|
|
59
|
+
type: PropType<"text" | "password">;
|
|
60
|
+
default: string;
|
|
61
|
+
};
|
|
62
|
+
leadingIcon: {
|
|
63
|
+
type: PropType<ElIconProps>;
|
|
64
|
+
default: undefined;
|
|
65
|
+
required: false;
|
|
66
|
+
};
|
|
67
|
+
trailingIcon: {
|
|
68
|
+
type: PropType<ElIconProps>;
|
|
69
|
+
default: undefined;
|
|
70
|
+
required: false;
|
|
71
|
+
};
|
|
72
|
+
modelValue: {
|
|
73
|
+
type: PropType<TextualValueType>;
|
|
74
|
+
default: string;
|
|
75
|
+
};
|
|
76
|
+
placeholder: {
|
|
77
|
+
type: StringConstructor;
|
|
78
|
+
default: string;
|
|
79
|
+
required: boolean;
|
|
80
|
+
};
|
|
81
|
+
label: {
|
|
82
|
+
type: StringConstructor;
|
|
83
|
+
required: boolean;
|
|
84
|
+
default: string;
|
|
85
|
+
};
|
|
86
|
+
validation: {
|
|
87
|
+
type: StringConstructor;
|
|
88
|
+
default: string;
|
|
89
|
+
required: boolean;
|
|
90
|
+
};
|
|
91
|
+
disabled: {
|
|
92
|
+
type: BooleanConstructor;
|
|
93
|
+
required: boolean;
|
|
94
|
+
default: boolean;
|
|
95
|
+
};
|
|
96
|
+
errorMessage: {
|
|
97
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
98
|
+
required: boolean;
|
|
99
|
+
default: undefined;
|
|
100
|
+
};
|
|
101
|
+
hiddenErrorMessage: {
|
|
102
|
+
type: BooleanConstructor;
|
|
103
|
+
required: boolean;
|
|
104
|
+
default: boolean;
|
|
105
|
+
};
|
|
106
|
+
}>> & {
|
|
107
|
+
"onUpdate:modelValue"?: ((value: TextualValueType) => any) | undefined;
|
|
108
|
+
}, {
|
|
109
|
+
disabled: boolean;
|
|
110
|
+
type: "text" | "password";
|
|
111
|
+
label: string;
|
|
112
|
+
placeholder: string;
|
|
113
|
+
leadingIcon: ElIconProps;
|
|
114
|
+
modelValue: TextualValueType;
|
|
115
|
+
errorMessage: string | boolean;
|
|
116
|
+
hiddenErrorMessage: boolean;
|
|
117
|
+
trailingIcon: ElIconProps;
|
|
118
|
+
validation: string;
|
|
119
|
+
}, {}>;
|
|
120
|
+
export default _default;
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import { TextualValueType } from './input';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
resizable: {
|
|
4
|
+
type: BooleanConstructor;
|
|
5
|
+
default: boolean;
|
|
6
|
+
};
|
|
7
|
+
maxCharacters: {
|
|
8
|
+
type: NumberConstructor;
|
|
9
|
+
default: number;
|
|
10
|
+
};
|
|
11
|
+
modelValue: {
|
|
12
|
+
type: import("vue").PropType<TextualValueType>;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
placeholder: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
default: string;
|
|
18
|
+
required: boolean;
|
|
19
|
+
};
|
|
20
|
+
label: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
required: boolean;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
validation: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
default: string;
|
|
28
|
+
required: boolean;
|
|
29
|
+
};
|
|
30
|
+
disabled: {
|
|
31
|
+
type: BooleanConstructor;
|
|
32
|
+
required: boolean;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
errorMessage: {
|
|
36
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
37
|
+
required: boolean;
|
|
38
|
+
default: undefined;
|
|
39
|
+
};
|
|
40
|
+
hiddenErrorMessage: {
|
|
41
|
+
type: BooleanConstructor;
|
|
42
|
+
required: boolean;
|
|
43
|
+
default: boolean;
|
|
44
|
+
};
|
|
45
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
46
|
+
"update:modelValue": (value: TextualValueType) => void;
|
|
47
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
48
|
+
resizable: {
|
|
49
|
+
type: BooleanConstructor;
|
|
50
|
+
default: boolean;
|
|
51
|
+
};
|
|
52
|
+
maxCharacters: {
|
|
53
|
+
type: NumberConstructor;
|
|
54
|
+
default: number;
|
|
55
|
+
};
|
|
56
|
+
modelValue: {
|
|
57
|
+
type: import("vue").PropType<TextualValueType>;
|
|
58
|
+
default: string;
|
|
59
|
+
};
|
|
60
|
+
placeholder: {
|
|
61
|
+
type: StringConstructor;
|
|
62
|
+
default: string;
|
|
63
|
+
required: boolean;
|
|
64
|
+
};
|
|
65
|
+
label: {
|
|
66
|
+
type: StringConstructor;
|
|
67
|
+
required: boolean;
|
|
68
|
+
default: string;
|
|
69
|
+
};
|
|
70
|
+
validation: {
|
|
71
|
+
type: StringConstructor;
|
|
72
|
+
default: string;
|
|
73
|
+
required: boolean;
|
|
74
|
+
};
|
|
75
|
+
disabled: {
|
|
76
|
+
type: BooleanConstructor;
|
|
77
|
+
required: boolean;
|
|
78
|
+
default: boolean;
|
|
79
|
+
};
|
|
80
|
+
errorMessage: {
|
|
81
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
82
|
+
required: boolean;
|
|
83
|
+
default: undefined;
|
|
84
|
+
};
|
|
85
|
+
hiddenErrorMessage: {
|
|
86
|
+
type: BooleanConstructor;
|
|
87
|
+
required: boolean;
|
|
88
|
+
default: boolean;
|
|
89
|
+
};
|
|
90
|
+
}>> & {
|
|
91
|
+
"onUpdate:modelValue"?: ((value: TextualValueType) => any) | undefined;
|
|
92
|
+
}, {
|
|
93
|
+
disabled: boolean;
|
|
94
|
+
label: string;
|
|
95
|
+
placeholder: string;
|
|
96
|
+
modelValue: TextualValueType;
|
|
97
|
+
errorMessage: string | boolean;
|
|
98
|
+
hiddenErrorMessage: boolean;
|
|
99
|
+
validation: string;
|
|
100
|
+
resizable: boolean;
|
|
101
|
+
maxCharacters: number;
|
|
102
|
+
}, {}>;
|
|
103
|
+
export default _default;
|