@velkymx/vibeui 0.5.4 → 0.6.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 +34 -744
- package/dist/components/VibeAccordion.vue.d.ts +36 -5
- package/dist/components/VibeAlert.vue.d.ts +19 -2
- package/dist/components/VibeCarousel.vue.d.ts +47 -6
- package/dist/components/VibeCollapse.vue.d.ts +9 -4
- package/dist/components/VibeDropdown.vue.d.ts +32 -5
- package/dist/components/VibeFormCheckbox.vue.d.ts +30 -22
- package/dist/components/VibeFormDatepicker.vue.d.ts +3 -2
- package/dist/components/VibeFormInput.vue.d.ts +4 -3
- package/dist/components/VibeFormRadio.vue.d.ts +33 -25
- package/dist/components/VibeFormSelect.vue.d.ts +46 -38
- package/dist/components/VibeFormSpinbutton.vue.d.ts +9 -8
- package/dist/components/VibeFormSwitch.vue.d.ts +16 -8
- package/dist/components/VibeFormTextarea.vue.d.ts +36 -28
- package/dist/components/VibeFormWysiwyg.vue.d.ts +3 -2
- package/dist/components/VibeModal.vue.d.ts +36 -5
- package/dist/components/VibeNav.vue.d.ts +39 -40
- package/dist/components/VibeOffcanvas.vue.d.ts +37 -6
- package/dist/components/VibePopover.vue.d.ts +31 -5
- package/dist/components/VibeScrollspy.vue.d.ts +9 -3
- package/dist/components/VibeTabContent.vue.d.ts +13 -3
- package/dist/components/VibeToast.vue.d.ts +41 -6
- package/dist/components/VibeTooltip.vue.d.ts +31 -5
- package/dist/composables/useId.d.ts +5 -0
- package/dist/index.d.ts +1 -0
- package/dist/vibeui.css +1 -1
- package/dist/vibeui.es.js +2045 -1594
- package/dist/vibeui.umd.js +1 -1
- package/package.json +4 -4
|
@@ -3,16 +3,7 @@ import { ValidationState, ValidationRule, ValidatorFunction } from '../types';
|
|
|
3
3
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
4
|
modelValue: {
|
|
5
5
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
6
|
-
default:
|
|
7
|
-
validator: (value: any) => boolean;
|
|
8
|
-
};
|
|
9
|
-
id: {
|
|
10
|
-
type: StringConstructor;
|
|
11
|
-
required: true;
|
|
12
|
-
};
|
|
13
|
-
label: {
|
|
14
|
-
type: StringConstructor;
|
|
15
|
-
default: undefined;
|
|
6
|
+
default: string;
|
|
16
7
|
};
|
|
17
8
|
value: {
|
|
18
9
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
@@ -22,6 +13,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
22
13
|
type: StringConstructor;
|
|
23
14
|
required: true;
|
|
24
15
|
};
|
|
16
|
+
id: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: undefined;
|
|
19
|
+
};
|
|
20
|
+
label: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: undefined;
|
|
23
|
+
};
|
|
25
24
|
disabled: {
|
|
26
25
|
type: BooleanConstructor;
|
|
27
26
|
default: boolean;
|
|
@@ -35,7 +34,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
35
34
|
default: boolean;
|
|
36
35
|
};
|
|
37
36
|
validationState: {
|
|
38
|
-
type:
|
|
37
|
+
type: PropType<ValidationState>;
|
|
39
38
|
default: null;
|
|
40
39
|
};
|
|
41
40
|
validationMessage: {
|
|
@@ -47,13 +46,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
47
46
|
default: undefined;
|
|
48
47
|
};
|
|
49
48
|
validateOn: {
|
|
50
|
-
type:
|
|
49
|
+
type: PropType<"change" | "blur">;
|
|
51
50
|
default: string;
|
|
52
51
|
};
|
|
53
52
|
helpText: {
|
|
54
53
|
type: StringConstructor;
|
|
55
54
|
default: undefined;
|
|
56
55
|
};
|
|
56
|
+
reverse: {
|
|
57
|
+
type: BooleanConstructor;
|
|
58
|
+
default: boolean;
|
|
59
|
+
};
|
|
57
60
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
58
61
|
"update:modelValue": (...args: any[]) => void;
|
|
59
62
|
blur: (...args: any[]) => void;
|
|
@@ -63,16 +66,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
63
66
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
64
67
|
modelValue: {
|
|
65
68
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
66
|
-
default:
|
|
67
|
-
validator: (value: any) => boolean;
|
|
68
|
-
};
|
|
69
|
-
id: {
|
|
70
|
-
type: StringConstructor;
|
|
71
|
-
required: true;
|
|
72
|
-
};
|
|
73
|
-
label: {
|
|
74
|
-
type: StringConstructor;
|
|
75
|
-
default: undefined;
|
|
69
|
+
default: string;
|
|
76
70
|
};
|
|
77
71
|
value: {
|
|
78
72
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
@@ -82,6 +76,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
82
76
|
type: StringConstructor;
|
|
83
77
|
required: true;
|
|
84
78
|
};
|
|
79
|
+
id: {
|
|
80
|
+
type: StringConstructor;
|
|
81
|
+
default: undefined;
|
|
82
|
+
};
|
|
83
|
+
label: {
|
|
84
|
+
type: StringConstructor;
|
|
85
|
+
default: undefined;
|
|
86
|
+
};
|
|
85
87
|
disabled: {
|
|
86
88
|
type: BooleanConstructor;
|
|
87
89
|
default: boolean;
|
|
@@ -95,7 +97,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
95
97
|
default: boolean;
|
|
96
98
|
};
|
|
97
99
|
validationState: {
|
|
98
|
-
type:
|
|
100
|
+
type: PropType<ValidationState>;
|
|
99
101
|
default: null;
|
|
100
102
|
};
|
|
101
103
|
validationMessage: {
|
|
@@ -107,13 +109,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
107
109
|
default: undefined;
|
|
108
110
|
};
|
|
109
111
|
validateOn: {
|
|
110
|
-
type:
|
|
112
|
+
type: PropType<"change" | "blur">;
|
|
111
113
|
default: string;
|
|
112
114
|
};
|
|
113
115
|
helpText: {
|
|
114
116
|
type: StringConstructor;
|
|
115
117
|
default: undefined;
|
|
116
118
|
};
|
|
119
|
+
reverse: {
|
|
120
|
+
type: BooleanConstructor;
|
|
121
|
+
default: boolean;
|
|
122
|
+
};
|
|
117
123
|
}>> & Readonly<{
|
|
118
124
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
119
125
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
@@ -123,13 +129,15 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
123
129
|
}>, {
|
|
124
130
|
modelValue: string | number | boolean;
|
|
125
131
|
required: boolean;
|
|
132
|
+
reverse: boolean;
|
|
126
133
|
label: string;
|
|
127
134
|
disabled: boolean;
|
|
128
|
-
|
|
135
|
+
id: string;
|
|
129
136
|
validationState: ValidationState;
|
|
130
137
|
validationMessage: string;
|
|
131
138
|
validationRules: ValidatorFunction | ValidationRule[];
|
|
132
139
|
validateOn: "blur" | "change";
|
|
133
140
|
helpText: string;
|
|
141
|
+
inline: boolean;
|
|
134
142
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
135
143
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
|
-
import { ValidationState, ValidationRule, ValidatorFunction, Size
|
|
2
|
+
import { FormSelectOption, ValidationState, ValidationRule, ValidatorFunction, Size } from '../types';
|
|
3
3
|
declare function __VLS_template(): {
|
|
4
4
|
attrs: Partial<{}>;
|
|
5
5
|
slots: {
|
|
@@ -11,44 +11,51 @@ declare function __VLS_template(): {
|
|
|
11
11
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
12
|
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
13
13
|
modelValue: {
|
|
14
|
-
type:
|
|
14
|
+
type: PropType<any>;
|
|
15
15
|
default: string;
|
|
16
|
-
validator: (value: any) => boolean;
|
|
17
16
|
};
|
|
18
17
|
id: {
|
|
19
18
|
type: StringConstructor;
|
|
20
|
-
|
|
19
|
+
default: undefined;
|
|
21
20
|
};
|
|
22
21
|
label: {
|
|
23
22
|
type: StringConstructor;
|
|
24
23
|
default: undefined;
|
|
25
24
|
};
|
|
26
25
|
options: {
|
|
27
|
-
type:
|
|
26
|
+
type: PropType<FormSelectOption[]>;
|
|
28
27
|
default: () => never[];
|
|
29
28
|
};
|
|
30
|
-
|
|
29
|
+
multiple: {
|
|
31
30
|
type: BooleanConstructor;
|
|
32
31
|
default: boolean;
|
|
33
32
|
};
|
|
34
|
-
|
|
33
|
+
selectSize: {
|
|
34
|
+
type: NumberConstructor;
|
|
35
|
+
default: undefined;
|
|
36
|
+
};
|
|
37
|
+
htmlSize: {
|
|
38
|
+
type: NumberConstructor;
|
|
39
|
+
default: undefined;
|
|
40
|
+
};
|
|
41
|
+
placeholder: {
|
|
42
|
+
type: StringConstructor;
|
|
43
|
+
default: undefined;
|
|
44
|
+
};
|
|
45
|
+
disabled: {
|
|
35
46
|
type: BooleanConstructor;
|
|
36
47
|
default: boolean;
|
|
37
48
|
};
|
|
38
|
-
|
|
49
|
+
required: {
|
|
39
50
|
type: BooleanConstructor;
|
|
40
51
|
default: boolean;
|
|
41
52
|
};
|
|
42
53
|
size: {
|
|
43
|
-
type:
|
|
44
|
-
default: undefined;
|
|
45
|
-
};
|
|
46
|
-
htmlSize: {
|
|
47
|
-
type: NumberConstructor;
|
|
54
|
+
type: PropType<Size>;
|
|
48
55
|
default: undefined;
|
|
49
56
|
};
|
|
50
57
|
validationState: {
|
|
51
|
-
type:
|
|
58
|
+
type: PropType<ValidationState>;
|
|
52
59
|
default: null;
|
|
53
60
|
};
|
|
54
61
|
validationMessage: {
|
|
@@ -60,17 +67,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
60
67
|
default: undefined;
|
|
61
68
|
};
|
|
62
69
|
validateOn: {
|
|
63
|
-
type:
|
|
70
|
+
type: PropType<"change" | "blur">;
|
|
64
71
|
default: string;
|
|
65
72
|
};
|
|
66
73
|
helpText: {
|
|
67
74
|
type: StringConstructor;
|
|
68
75
|
default: undefined;
|
|
69
76
|
};
|
|
70
|
-
placeholder: {
|
|
71
|
-
type: StringConstructor;
|
|
72
|
-
default: undefined;
|
|
73
|
-
};
|
|
74
77
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
75
78
|
"update:modelValue": (...args: any[]) => void;
|
|
76
79
|
blur: (...args: any[]) => void;
|
|
@@ -79,44 +82,51 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
79
82
|
validate: (...args: any[]) => void;
|
|
80
83
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
81
84
|
modelValue: {
|
|
82
|
-
type:
|
|
85
|
+
type: PropType<any>;
|
|
83
86
|
default: string;
|
|
84
|
-
validator: (value: any) => boolean;
|
|
85
87
|
};
|
|
86
88
|
id: {
|
|
87
89
|
type: StringConstructor;
|
|
88
|
-
|
|
90
|
+
default: undefined;
|
|
89
91
|
};
|
|
90
92
|
label: {
|
|
91
93
|
type: StringConstructor;
|
|
92
94
|
default: undefined;
|
|
93
95
|
};
|
|
94
96
|
options: {
|
|
95
|
-
type:
|
|
97
|
+
type: PropType<FormSelectOption[]>;
|
|
96
98
|
default: () => never[];
|
|
97
99
|
};
|
|
98
|
-
|
|
100
|
+
multiple: {
|
|
99
101
|
type: BooleanConstructor;
|
|
100
102
|
default: boolean;
|
|
101
103
|
};
|
|
102
|
-
|
|
104
|
+
selectSize: {
|
|
105
|
+
type: NumberConstructor;
|
|
106
|
+
default: undefined;
|
|
107
|
+
};
|
|
108
|
+
htmlSize: {
|
|
109
|
+
type: NumberConstructor;
|
|
110
|
+
default: undefined;
|
|
111
|
+
};
|
|
112
|
+
placeholder: {
|
|
113
|
+
type: StringConstructor;
|
|
114
|
+
default: undefined;
|
|
115
|
+
};
|
|
116
|
+
disabled: {
|
|
103
117
|
type: BooleanConstructor;
|
|
104
118
|
default: boolean;
|
|
105
119
|
};
|
|
106
|
-
|
|
120
|
+
required: {
|
|
107
121
|
type: BooleanConstructor;
|
|
108
122
|
default: boolean;
|
|
109
123
|
};
|
|
110
124
|
size: {
|
|
111
|
-
type:
|
|
112
|
-
default: undefined;
|
|
113
|
-
};
|
|
114
|
-
htmlSize: {
|
|
115
|
-
type: NumberConstructor;
|
|
125
|
+
type: PropType<Size>;
|
|
116
126
|
default: undefined;
|
|
117
127
|
};
|
|
118
128
|
validationState: {
|
|
119
|
-
type:
|
|
129
|
+
type: PropType<ValidationState>;
|
|
120
130
|
default: null;
|
|
121
131
|
};
|
|
122
132
|
validationMessage: {
|
|
@@ -128,17 +138,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
128
138
|
default: undefined;
|
|
129
139
|
};
|
|
130
140
|
validateOn: {
|
|
131
|
-
type:
|
|
141
|
+
type: PropType<"change" | "blur">;
|
|
132
142
|
default: string;
|
|
133
143
|
};
|
|
134
144
|
helpText: {
|
|
135
145
|
type: StringConstructor;
|
|
136
146
|
default: undefined;
|
|
137
147
|
};
|
|
138
|
-
placeholder: {
|
|
139
|
-
type: StringConstructor;
|
|
140
|
-
default: undefined;
|
|
141
|
-
};
|
|
142
148
|
}>> & Readonly<{
|
|
143
149
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
144
150
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
@@ -146,12 +152,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
146
152
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
147
153
|
onValidate?: ((...args: any[]) => any) | undefined;
|
|
148
154
|
}>, {
|
|
149
|
-
modelValue:
|
|
155
|
+
modelValue: any;
|
|
150
156
|
required: boolean;
|
|
151
157
|
label: string;
|
|
152
158
|
size: Size;
|
|
153
159
|
disabled: boolean;
|
|
154
160
|
placeholder: string;
|
|
161
|
+
id: string;
|
|
155
162
|
validationState: ValidationState;
|
|
156
163
|
validationMessage: string;
|
|
157
164
|
validationRules: ValidatorFunction | ValidationRule[];
|
|
@@ -159,6 +166,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
159
166
|
helpText: string;
|
|
160
167
|
options: FormSelectOption[];
|
|
161
168
|
multiple: boolean;
|
|
169
|
+
selectSize: number;
|
|
162
170
|
htmlSize: number;
|
|
163
171
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
164
172
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -8,7 +8,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
8
8
|
};
|
|
9
9
|
id: {
|
|
10
10
|
type: StringConstructor;
|
|
11
|
-
|
|
11
|
+
default: undefined;
|
|
12
12
|
};
|
|
13
13
|
label: {
|
|
14
14
|
type: StringConstructor;
|
|
@@ -39,11 +39,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
39
39
|
default: number;
|
|
40
40
|
};
|
|
41
41
|
size: {
|
|
42
|
-
type:
|
|
42
|
+
type: PropType<Size>;
|
|
43
43
|
default: undefined;
|
|
44
44
|
};
|
|
45
45
|
validationState: {
|
|
46
|
-
type:
|
|
46
|
+
type: PropType<ValidationState>;
|
|
47
47
|
default: null;
|
|
48
48
|
};
|
|
49
49
|
validationMessage: {
|
|
@@ -55,7 +55,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
55
55
|
default: undefined;
|
|
56
56
|
};
|
|
57
57
|
validateOn: {
|
|
58
|
-
type:
|
|
58
|
+
type: PropType<"input" | "blur" | "change">;
|
|
59
59
|
default: string;
|
|
60
60
|
};
|
|
61
61
|
helpText: {
|
|
@@ -87,7 +87,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
87
87
|
};
|
|
88
88
|
id: {
|
|
89
89
|
type: StringConstructor;
|
|
90
|
-
|
|
90
|
+
default: undefined;
|
|
91
91
|
};
|
|
92
92
|
label: {
|
|
93
93
|
type: StringConstructor;
|
|
@@ -118,11 +118,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
118
118
|
default: number;
|
|
119
119
|
};
|
|
120
120
|
size: {
|
|
121
|
-
type:
|
|
121
|
+
type: PropType<Size>;
|
|
122
122
|
default: undefined;
|
|
123
123
|
};
|
|
124
124
|
validationState: {
|
|
125
|
-
type:
|
|
125
|
+
type: PropType<ValidationState>;
|
|
126
126
|
default: null;
|
|
127
127
|
};
|
|
128
128
|
validationMessage: {
|
|
@@ -134,7 +134,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
134
134
|
default: undefined;
|
|
135
135
|
};
|
|
136
136
|
validateOn: {
|
|
137
|
-
type:
|
|
137
|
+
type: PropType<"input" | "blur" | "change">;
|
|
138
138
|
default: string;
|
|
139
139
|
};
|
|
140
140
|
helpText: {
|
|
@@ -166,6 +166,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
166
166
|
disabled: boolean;
|
|
167
167
|
vertical: boolean;
|
|
168
168
|
step: number;
|
|
169
|
+
id: string;
|
|
169
170
|
wrap: boolean;
|
|
170
171
|
readonly: boolean;
|
|
171
172
|
validationState: ValidationState;
|
|
@@ -4,11 +4,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
4
4
|
modelValue: {
|
|
5
5
|
type: BooleanConstructor;
|
|
6
6
|
default: boolean;
|
|
7
|
-
validator: (value: any) => boolean;
|
|
8
7
|
};
|
|
9
8
|
id: {
|
|
10
9
|
type: StringConstructor;
|
|
11
|
-
|
|
10
|
+
default: undefined;
|
|
12
11
|
};
|
|
13
12
|
label: {
|
|
14
13
|
type: StringConstructor;
|
|
@@ -22,8 +21,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
22
21
|
type: BooleanConstructor;
|
|
23
22
|
default: boolean;
|
|
24
23
|
};
|
|
24
|
+
inline: {
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
default: boolean;
|
|
27
|
+
};
|
|
25
28
|
validationState: {
|
|
26
|
-
type:
|
|
29
|
+
type: PropType<ValidationState>;
|
|
27
30
|
default: null;
|
|
28
31
|
};
|
|
29
32
|
validationMessage: {
|
|
@@ -35,7 +38,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
35
38
|
default: undefined;
|
|
36
39
|
};
|
|
37
40
|
validateOn: {
|
|
38
|
-
type:
|
|
41
|
+
type: PropType<"change" | "blur">;
|
|
39
42
|
default: string;
|
|
40
43
|
};
|
|
41
44
|
helpText: {
|
|
@@ -52,11 +55,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
52
55
|
modelValue: {
|
|
53
56
|
type: BooleanConstructor;
|
|
54
57
|
default: boolean;
|
|
55
|
-
validator: (value: any) => boolean;
|
|
56
58
|
};
|
|
57
59
|
id: {
|
|
58
60
|
type: StringConstructor;
|
|
59
|
-
|
|
61
|
+
default: undefined;
|
|
60
62
|
};
|
|
61
63
|
label: {
|
|
62
64
|
type: StringConstructor;
|
|
@@ -70,8 +72,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
70
72
|
type: BooleanConstructor;
|
|
71
73
|
default: boolean;
|
|
72
74
|
};
|
|
75
|
+
inline: {
|
|
76
|
+
type: BooleanConstructor;
|
|
77
|
+
default: boolean;
|
|
78
|
+
};
|
|
73
79
|
validationState: {
|
|
74
|
-
type:
|
|
80
|
+
type: PropType<ValidationState>;
|
|
75
81
|
default: null;
|
|
76
82
|
};
|
|
77
83
|
validationMessage: {
|
|
@@ -83,7 +89,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
83
89
|
default: undefined;
|
|
84
90
|
};
|
|
85
91
|
validateOn: {
|
|
86
|
-
type:
|
|
92
|
+
type: PropType<"change" | "blur">;
|
|
87
93
|
default: string;
|
|
88
94
|
};
|
|
89
95
|
helpText: {
|
|
@@ -101,10 +107,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
101
107
|
required: boolean;
|
|
102
108
|
label: string;
|
|
103
109
|
disabled: boolean;
|
|
110
|
+
id: string;
|
|
104
111
|
validationState: ValidationState;
|
|
105
112
|
validationMessage: string;
|
|
106
113
|
validationRules: ValidatorFunction | ValidationRule[];
|
|
107
114
|
validateOn: "blur" | "change";
|
|
108
115
|
helpText: string;
|
|
116
|
+
inline: boolean;
|
|
109
117
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
110
118
|
export default _default;
|
|
@@ -4,11 +4,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
4
4
|
modelValue: {
|
|
5
5
|
type: StringConstructor;
|
|
6
6
|
default: string;
|
|
7
|
-
validator: (value: any) => boolean;
|
|
8
7
|
};
|
|
9
8
|
id: {
|
|
10
9
|
type: StringConstructor;
|
|
11
|
-
|
|
10
|
+
default: undefined;
|
|
12
11
|
};
|
|
13
12
|
label: {
|
|
14
13
|
type: StringConstructor;
|
|
@@ -18,6 +17,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
18
17
|
type: StringConstructor;
|
|
19
18
|
default: undefined;
|
|
20
19
|
};
|
|
20
|
+
rows: {
|
|
21
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
22
|
+
default: number;
|
|
23
|
+
};
|
|
24
|
+
maxlength: {
|
|
25
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
26
|
+
default: undefined;
|
|
27
|
+
};
|
|
21
28
|
disabled: {
|
|
22
29
|
type: BooleanConstructor;
|
|
23
30
|
default: boolean;
|
|
@@ -30,20 +37,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
30
37
|
type: BooleanConstructor;
|
|
31
38
|
default: boolean;
|
|
32
39
|
};
|
|
33
|
-
rows: {
|
|
34
|
-
type: NumberConstructor;
|
|
35
|
-
default: number;
|
|
36
|
-
};
|
|
37
|
-
maxlength: {
|
|
38
|
-
type: NumberConstructor;
|
|
39
|
-
default: undefined;
|
|
40
|
-
};
|
|
41
40
|
size: {
|
|
42
|
-
type:
|
|
41
|
+
type: PropType<Size>;
|
|
43
42
|
default: undefined;
|
|
44
43
|
};
|
|
45
44
|
validationState: {
|
|
46
|
-
type:
|
|
45
|
+
type: PropType<ValidationState>;
|
|
47
46
|
default: null;
|
|
48
47
|
};
|
|
49
48
|
validationMessage: {
|
|
@@ -55,13 +54,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
55
54
|
default: undefined;
|
|
56
55
|
};
|
|
57
56
|
validateOn: {
|
|
58
|
-
type:
|
|
57
|
+
type: PropType<"input" | "blur" | "change">;
|
|
59
58
|
default: string;
|
|
60
59
|
};
|
|
61
60
|
helpText: {
|
|
62
61
|
type: StringConstructor;
|
|
63
62
|
default: undefined;
|
|
64
63
|
};
|
|
64
|
+
noResize: {
|
|
65
|
+
type: BooleanConstructor;
|
|
66
|
+
default: boolean;
|
|
67
|
+
};
|
|
65
68
|
showCharCount: {
|
|
66
69
|
type: BooleanConstructor;
|
|
67
70
|
default: boolean;
|
|
@@ -77,11 +80,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
77
80
|
modelValue: {
|
|
78
81
|
type: StringConstructor;
|
|
79
82
|
default: string;
|
|
80
|
-
validator: (value: any) => boolean;
|
|
81
83
|
};
|
|
82
84
|
id: {
|
|
83
85
|
type: StringConstructor;
|
|
84
|
-
|
|
86
|
+
default: undefined;
|
|
85
87
|
};
|
|
86
88
|
label: {
|
|
87
89
|
type: StringConstructor;
|
|
@@ -91,6 +93,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
91
93
|
type: StringConstructor;
|
|
92
94
|
default: undefined;
|
|
93
95
|
};
|
|
96
|
+
rows: {
|
|
97
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
98
|
+
default: number;
|
|
99
|
+
};
|
|
100
|
+
maxlength: {
|
|
101
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
102
|
+
default: undefined;
|
|
103
|
+
};
|
|
94
104
|
disabled: {
|
|
95
105
|
type: BooleanConstructor;
|
|
96
106
|
default: boolean;
|
|
@@ -103,20 +113,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
103
113
|
type: BooleanConstructor;
|
|
104
114
|
default: boolean;
|
|
105
115
|
};
|
|
106
|
-
rows: {
|
|
107
|
-
type: NumberConstructor;
|
|
108
|
-
default: number;
|
|
109
|
-
};
|
|
110
|
-
maxlength: {
|
|
111
|
-
type: NumberConstructor;
|
|
112
|
-
default: undefined;
|
|
113
|
-
};
|
|
114
116
|
size: {
|
|
115
|
-
type:
|
|
117
|
+
type: PropType<Size>;
|
|
116
118
|
default: undefined;
|
|
117
119
|
};
|
|
118
120
|
validationState: {
|
|
119
|
-
type:
|
|
121
|
+
type: PropType<ValidationState>;
|
|
120
122
|
default: null;
|
|
121
123
|
};
|
|
122
124
|
validationMessage: {
|
|
@@ -128,13 +130,17 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
128
130
|
default: undefined;
|
|
129
131
|
};
|
|
130
132
|
validateOn: {
|
|
131
|
-
type:
|
|
133
|
+
type: PropType<"input" | "blur" | "change">;
|
|
132
134
|
default: string;
|
|
133
135
|
};
|
|
134
136
|
helpText: {
|
|
135
137
|
type: StringConstructor;
|
|
136
138
|
default: undefined;
|
|
137
139
|
};
|
|
140
|
+
noResize: {
|
|
141
|
+
type: BooleanConstructor;
|
|
142
|
+
default: boolean;
|
|
143
|
+
};
|
|
138
144
|
showCharCount: {
|
|
139
145
|
type: BooleanConstructor;
|
|
140
146
|
default: boolean;
|
|
@@ -153,14 +159,16 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
153
159
|
size: Size;
|
|
154
160
|
disabled: boolean;
|
|
155
161
|
placeholder: string;
|
|
162
|
+
id: string;
|
|
156
163
|
readonly: boolean;
|
|
157
164
|
validationState: ValidationState;
|
|
158
165
|
validationMessage: string;
|
|
159
166
|
validationRules: ValidatorFunction | ValidationRule[];
|
|
160
167
|
validateOn: "blur" | "change" | "input";
|
|
161
168
|
helpText: string;
|
|
162
|
-
rows: number;
|
|
163
|
-
maxlength: number;
|
|
169
|
+
rows: string | number;
|
|
170
|
+
maxlength: string | number;
|
|
171
|
+
noResize: boolean;
|
|
164
172
|
showCharCount: boolean;
|
|
165
173
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
166
174
|
export default _default;
|
|
@@ -7,7 +7,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
7
7
|
};
|
|
8
8
|
id: {
|
|
9
9
|
type: StringConstructor;
|
|
10
|
-
|
|
10
|
+
default: () => string;
|
|
11
11
|
};
|
|
12
12
|
label: {
|
|
13
13
|
type: StringConstructor;
|
|
@@ -75,7 +75,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
75
75
|
};
|
|
76
76
|
id: {
|
|
77
77
|
type: StringConstructor;
|
|
78
|
-
|
|
78
|
+
default: () => string;
|
|
79
79
|
};
|
|
80
80
|
label: {
|
|
81
81
|
type: StringConstructor;
|
|
@@ -143,6 +143,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
143
143
|
disabled: boolean;
|
|
144
144
|
placeholder: string;
|
|
145
145
|
theme: "snow" | "bubble";
|
|
146
|
+
id: string;
|
|
146
147
|
height: string;
|
|
147
148
|
readonly: boolean;
|
|
148
149
|
validationState: ValidationState;
|