@vonage/vivid-vue 3.49.0 → 3.50.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/generated/components/VTimePicker.d.ts +10 -0
- package/generated/components/VTimePicker.vue2.d.ts +248 -0
- package/generated/components/VTimePicker.vue3.d.ts +257 -0
- package/generated/components/index.d.ts +1 -0
- package/index.cjs +215 -5
- package/index.js +216 -7
- package/package.json +2 -2
- package/web-types.json +163 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { VNode } from 'vue';
|
|
2
|
+
import VTimePickerVue2 from './VTimePicker.vue2';
|
|
3
|
+
import VTimePickerVue3 from './VTimePicker.vue3';
|
|
4
|
+
|
|
5
|
+
// @ts-ignore
|
|
6
|
+
type VNodeData = VNode["data"];
|
|
7
|
+
type IsAny<T> = 0 extends (1 & T) ? true : false;
|
|
8
|
+
type VueVersion = IsAny<VNodeData> extends true ? 'v3' : 'v2';
|
|
9
|
+
declare const _default: VueVersion extends 'v2' ? typeof VTimePickerVue2 : typeof VTimePickerVue3;
|
|
10
|
+
export default _default;
|
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import type { TimePicker } from '@vonage/vivid/lib/time-picker/time-picker';
|
|
3
|
+
/**
|
|
4
|
+
* Base class for time-picker
|
|
5
|
+
*/
|
|
6
|
+
declare const _default: import("vue/types/v3-define-component").DefineComponent<{
|
|
7
|
+
/**
|
|
8
|
+
* The helper text for the form element.
|
|
9
|
+
*/
|
|
10
|
+
helperText: {
|
|
11
|
+
type: PropType<string>;
|
|
12
|
+
default: undefined;
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* The label for the form element.
|
|
16
|
+
*/
|
|
17
|
+
label: {
|
|
18
|
+
type: PropType<string>;
|
|
19
|
+
default: undefined;
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* The error text for the form element.
|
|
23
|
+
*/
|
|
24
|
+
errorText: {
|
|
25
|
+
type: PropType<string>;
|
|
26
|
+
default: undefined;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* Indicates the element that represents the current item within a container or set of related elements.
|
|
30
|
+
*/
|
|
31
|
+
ariaCurrent: {
|
|
32
|
+
type: PropType<"page" | "step" | "location" | "date" | "time" | "true" | "false">;
|
|
33
|
+
default: undefined;
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Sets the element's disabled state. A disabled element will not be included during form submission.
|
|
37
|
+
*/
|
|
38
|
+
disabled: {
|
|
39
|
+
type: PropType<boolean>;
|
|
40
|
+
default: undefined;
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* The initial value of the form. This value sets the `value` property
|
|
44
|
+
* only when the `value` property has not been explicitly set.
|
|
45
|
+
*/
|
|
46
|
+
value: {
|
|
47
|
+
type: PropType<string>;
|
|
48
|
+
default: undefined;
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* The current value of the element. This property serves as a mechanism
|
|
52
|
+
* to set the `value` property through both property assignment and the
|
|
53
|
+
* .setAttribute() method. This is useful for setting the field's value
|
|
54
|
+
* in UI libraries that bind data through the .setAttribute() API
|
|
55
|
+
* and don't support IDL attribute binding.
|
|
56
|
+
*/
|
|
57
|
+
modelValue: {
|
|
58
|
+
type: PropType<string>;
|
|
59
|
+
default: undefined;
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* The name of the element. This element's value will be surfaced during form submission under the provided name.
|
|
63
|
+
*/
|
|
64
|
+
name: {
|
|
65
|
+
type: PropType<string>;
|
|
66
|
+
default: undefined;
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* Require the field to be completed prior to form submission.
|
|
70
|
+
*/
|
|
71
|
+
required: {
|
|
72
|
+
type: PropType<boolean>;
|
|
73
|
+
default: undefined;
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* Whether the time-picker is readonly.
|
|
77
|
+
*/
|
|
78
|
+
readonly: {
|
|
79
|
+
type: PropType<boolean>;
|
|
80
|
+
default: undefined;
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* Distance between presented minute options.
|
|
84
|
+
*/
|
|
85
|
+
minutesStep: {
|
|
86
|
+
type: PropType<number>;
|
|
87
|
+
default: undefined;
|
|
88
|
+
};
|
|
89
|
+
/**
|
|
90
|
+
* Distance between presented seconds options. If null, seconds are not presented.
|
|
91
|
+
*/
|
|
92
|
+
secondsStep: {
|
|
93
|
+
type: PropType<number>;
|
|
94
|
+
default: undefined;
|
|
95
|
+
};
|
|
96
|
+
/**
|
|
97
|
+
* Forces the time-picker to use a 12h or 24h clock.
|
|
98
|
+
*/
|
|
99
|
+
clock: {
|
|
100
|
+
type: PropType<"12h" | "24h">;
|
|
101
|
+
default: undefined;
|
|
102
|
+
};
|
|
103
|
+
/**
|
|
104
|
+
* The earliest accepted time of the time-picker.
|
|
105
|
+
*/
|
|
106
|
+
min: {
|
|
107
|
+
type: PropType<string>;
|
|
108
|
+
default: undefined;
|
|
109
|
+
};
|
|
110
|
+
/**
|
|
111
|
+
* The latest accepted time of the time-picker.
|
|
112
|
+
*/
|
|
113
|
+
max: {
|
|
114
|
+
type: PropType<string>;
|
|
115
|
+
default: undefined;
|
|
116
|
+
};
|
|
117
|
+
}, {
|
|
118
|
+
componentName: import("vue").Ref<string>;
|
|
119
|
+
element: import("vue").Ref<TimePicker | null>;
|
|
120
|
+
}, import("vue").Data, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, ("click" | "focus" | "blur" | "keydown" | "keyup" | "input" | "change" | "update:modelValue")[], string, Readonly<import("vue").ExtractPropTypes<{
|
|
121
|
+
/**
|
|
122
|
+
* The helper text for the form element.
|
|
123
|
+
*/
|
|
124
|
+
helperText: {
|
|
125
|
+
type: PropType<string>;
|
|
126
|
+
default: undefined;
|
|
127
|
+
};
|
|
128
|
+
/**
|
|
129
|
+
* The label for the form element.
|
|
130
|
+
*/
|
|
131
|
+
label: {
|
|
132
|
+
type: PropType<string>;
|
|
133
|
+
default: undefined;
|
|
134
|
+
};
|
|
135
|
+
/**
|
|
136
|
+
* The error text for the form element.
|
|
137
|
+
*/
|
|
138
|
+
errorText: {
|
|
139
|
+
type: PropType<string>;
|
|
140
|
+
default: undefined;
|
|
141
|
+
};
|
|
142
|
+
/**
|
|
143
|
+
* Indicates the element that represents the current item within a container or set of related elements.
|
|
144
|
+
*/
|
|
145
|
+
ariaCurrent: {
|
|
146
|
+
type: PropType<"page" | "step" | "location" | "date" | "time" | "true" | "false">;
|
|
147
|
+
default: undefined;
|
|
148
|
+
};
|
|
149
|
+
/**
|
|
150
|
+
* Sets the element's disabled state. A disabled element will not be included during form submission.
|
|
151
|
+
*/
|
|
152
|
+
disabled: {
|
|
153
|
+
type: PropType<boolean>;
|
|
154
|
+
default: undefined;
|
|
155
|
+
};
|
|
156
|
+
/**
|
|
157
|
+
* The initial value of the form. This value sets the `value` property
|
|
158
|
+
* only when the `value` property has not been explicitly set.
|
|
159
|
+
*/
|
|
160
|
+
value: {
|
|
161
|
+
type: PropType<string>;
|
|
162
|
+
default: undefined;
|
|
163
|
+
};
|
|
164
|
+
/**
|
|
165
|
+
* The current value of the element. This property serves as a mechanism
|
|
166
|
+
* to set the `value` property through both property assignment and the
|
|
167
|
+
* .setAttribute() method. This is useful for setting the field's value
|
|
168
|
+
* in UI libraries that bind data through the .setAttribute() API
|
|
169
|
+
* and don't support IDL attribute binding.
|
|
170
|
+
*/
|
|
171
|
+
modelValue: {
|
|
172
|
+
type: PropType<string>;
|
|
173
|
+
default: undefined;
|
|
174
|
+
};
|
|
175
|
+
/**
|
|
176
|
+
* The name of the element. This element's value will be surfaced during form submission under the provided name.
|
|
177
|
+
*/
|
|
178
|
+
name: {
|
|
179
|
+
type: PropType<string>;
|
|
180
|
+
default: undefined;
|
|
181
|
+
};
|
|
182
|
+
/**
|
|
183
|
+
* Require the field to be completed prior to form submission.
|
|
184
|
+
*/
|
|
185
|
+
required: {
|
|
186
|
+
type: PropType<boolean>;
|
|
187
|
+
default: undefined;
|
|
188
|
+
};
|
|
189
|
+
/**
|
|
190
|
+
* Whether the time-picker is readonly.
|
|
191
|
+
*/
|
|
192
|
+
readonly: {
|
|
193
|
+
type: PropType<boolean>;
|
|
194
|
+
default: undefined;
|
|
195
|
+
};
|
|
196
|
+
/**
|
|
197
|
+
* Distance between presented minute options.
|
|
198
|
+
*/
|
|
199
|
+
minutesStep: {
|
|
200
|
+
type: PropType<number>;
|
|
201
|
+
default: undefined;
|
|
202
|
+
};
|
|
203
|
+
/**
|
|
204
|
+
* Distance between presented seconds options. If null, seconds are not presented.
|
|
205
|
+
*/
|
|
206
|
+
secondsStep: {
|
|
207
|
+
type: PropType<number>;
|
|
208
|
+
default: undefined;
|
|
209
|
+
};
|
|
210
|
+
/**
|
|
211
|
+
* Forces the time-picker to use a 12h or 24h clock.
|
|
212
|
+
*/
|
|
213
|
+
clock: {
|
|
214
|
+
type: PropType<"12h" | "24h">;
|
|
215
|
+
default: undefined;
|
|
216
|
+
};
|
|
217
|
+
/**
|
|
218
|
+
* The earliest accepted time of the time-picker.
|
|
219
|
+
*/
|
|
220
|
+
min: {
|
|
221
|
+
type: PropType<string>;
|
|
222
|
+
default: undefined;
|
|
223
|
+
};
|
|
224
|
+
/**
|
|
225
|
+
* The latest accepted time of the time-picker.
|
|
226
|
+
*/
|
|
227
|
+
max: {
|
|
228
|
+
type: PropType<string>;
|
|
229
|
+
default: undefined;
|
|
230
|
+
};
|
|
231
|
+
}>>, {
|
|
232
|
+
name: string;
|
|
233
|
+
ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
|
|
234
|
+
value: string;
|
|
235
|
+
disabled: boolean;
|
|
236
|
+
required: boolean;
|
|
237
|
+
label: string;
|
|
238
|
+
modelValue: string;
|
|
239
|
+
errorText: string;
|
|
240
|
+
helperText: string;
|
|
241
|
+
readonly: boolean;
|
|
242
|
+
max: string;
|
|
243
|
+
min: string;
|
|
244
|
+
minutesStep: number;
|
|
245
|
+
secondsStep: number;
|
|
246
|
+
clock: "12h" | "24h";
|
|
247
|
+
}>;
|
|
248
|
+
export default _default;
|
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import type { TimePicker } from '@vonage/vivid/lib/time-picker/time-picker';
|
|
3
|
+
/**
|
|
4
|
+
* Base class for time-picker
|
|
5
|
+
*/
|
|
6
|
+
declare const _default: import("vue").DefineComponent<{
|
|
7
|
+
/**
|
|
8
|
+
* The helper text for the form element.
|
|
9
|
+
*/
|
|
10
|
+
helperText: {
|
|
11
|
+
type: PropType<string>;
|
|
12
|
+
default: undefined;
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* The label for the form element.
|
|
16
|
+
*/
|
|
17
|
+
label: {
|
|
18
|
+
type: PropType<string>;
|
|
19
|
+
default: undefined;
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* The error text for the form element.
|
|
23
|
+
*/
|
|
24
|
+
errorText: {
|
|
25
|
+
type: PropType<string>;
|
|
26
|
+
default: undefined;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* Indicates the element that represents the current item within a container or set of related elements.
|
|
30
|
+
*/
|
|
31
|
+
ariaCurrent: {
|
|
32
|
+
type: PropType<"page" | "step" | "location" | "date" | "time" | "true" | "false">;
|
|
33
|
+
default: undefined;
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Sets the element's disabled state. A disabled element will not be included during form submission.
|
|
37
|
+
*/
|
|
38
|
+
disabled: {
|
|
39
|
+
type: PropType<boolean>;
|
|
40
|
+
default: undefined;
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* The initial value of the form. This value sets the `value` property
|
|
44
|
+
* only when the `value` property has not been explicitly set.
|
|
45
|
+
*/
|
|
46
|
+
value: {
|
|
47
|
+
type: PropType<string>;
|
|
48
|
+
default: undefined;
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* The current value of the element. This property serves as a mechanism
|
|
52
|
+
* to set the `value` property through both property assignment and the
|
|
53
|
+
* .setAttribute() method. This is useful for setting the field's value
|
|
54
|
+
* in UI libraries that bind data through the .setAttribute() API
|
|
55
|
+
* and don't support IDL attribute binding.
|
|
56
|
+
*/
|
|
57
|
+
modelValue: {
|
|
58
|
+
type: PropType<string>;
|
|
59
|
+
default: undefined;
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* The name of the element. This element's value will be surfaced during form submission under the provided name.
|
|
63
|
+
*/
|
|
64
|
+
name: {
|
|
65
|
+
type: PropType<string>;
|
|
66
|
+
default: undefined;
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* Require the field to be completed prior to form submission.
|
|
70
|
+
*/
|
|
71
|
+
required: {
|
|
72
|
+
type: PropType<boolean>;
|
|
73
|
+
default: undefined;
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* Whether the time-picker is readonly.
|
|
77
|
+
*/
|
|
78
|
+
readonly: {
|
|
79
|
+
type: PropType<boolean>;
|
|
80
|
+
default: undefined;
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* Distance between presented minute options.
|
|
84
|
+
*/
|
|
85
|
+
minutesStep: {
|
|
86
|
+
type: PropType<number>;
|
|
87
|
+
default: undefined;
|
|
88
|
+
};
|
|
89
|
+
/**
|
|
90
|
+
* Distance between presented seconds options. If null, seconds are not presented.
|
|
91
|
+
*/
|
|
92
|
+
secondsStep: {
|
|
93
|
+
type: PropType<number>;
|
|
94
|
+
default: undefined;
|
|
95
|
+
};
|
|
96
|
+
/**
|
|
97
|
+
* Forces the time-picker to use a 12h or 24h clock.
|
|
98
|
+
*/
|
|
99
|
+
clock: {
|
|
100
|
+
type: PropType<"12h" | "24h">;
|
|
101
|
+
default: undefined;
|
|
102
|
+
};
|
|
103
|
+
/**
|
|
104
|
+
* The earliest accepted time of the time-picker.
|
|
105
|
+
*/
|
|
106
|
+
min: {
|
|
107
|
+
type: PropType<string>;
|
|
108
|
+
default: undefined;
|
|
109
|
+
};
|
|
110
|
+
/**
|
|
111
|
+
* The latest accepted time of the time-picker.
|
|
112
|
+
*/
|
|
113
|
+
max: {
|
|
114
|
+
type: PropType<string>;
|
|
115
|
+
default: undefined;
|
|
116
|
+
};
|
|
117
|
+
}, {
|
|
118
|
+
componentName: import("vue").Ref<string>;
|
|
119
|
+
element: import("vue").Ref<TimePicker | null>;
|
|
120
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "focus" | "blur" | "keydown" | "keyup" | "input" | "change" | "update:modelValue")[], "click" | "focus" | "blur" | "keydown" | "keyup" | "input" | "change" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
121
|
+
/**
|
|
122
|
+
* The helper text for the form element.
|
|
123
|
+
*/
|
|
124
|
+
helperText: {
|
|
125
|
+
type: PropType<string>;
|
|
126
|
+
default: undefined;
|
|
127
|
+
};
|
|
128
|
+
/**
|
|
129
|
+
* The label for the form element.
|
|
130
|
+
*/
|
|
131
|
+
label: {
|
|
132
|
+
type: PropType<string>;
|
|
133
|
+
default: undefined;
|
|
134
|
+
};
|
|
135
|
+
/**
|
|
136
|
+
* The error text for the form element.
|
|
137
|
+
*/
|
|
138
|
+
errorText: {
|
|
139
|
+
type: PropType<string>;
|
|
140
|
+
default: undefined;
|
|
141
|
+
};
|
|
142
|
+
/**
|
|
143
|
+
* Indicates the element that represents the current item within a container or set of related elements.
|
|
144
|
+
*/
|
|
145
|
+
ariaCurrent: {
|
|
146
|
+
type: PropType<"page" | "step" | "location" | "date" | "time" | "true" | "false">;
|
|
147
|
+
default: undefined;
|
|
148
|
+
};
|
|
149
|
+
/**
|
|
150
|
+
* Sets the element's disabled state. A disabled element will not be included during form submission.
|
|
151
|
+
*/
|
|
152
|
+
disabled: {
|
|
153
|
+
type: PropType<boolean>;
|
|
154
|
+
default: undefined;
|
|
155
|
+
};
|
|
156
|
+
/**
|
|
157
|
+
* The initial value of the form. This value sets the `value` property
|
|
158
|
+
* only when the `value` property has not been explicitly set.
|
|
159
|
+
*/
|
|
160
|
+
value: {
|
|
161
|
+
type: PropType<string>;
|
|
162
|
+
default: undefined;
|
|
163
|
+
};
|
|
164
|
+
/**
|
|
165
|
+
* The current value of the element. This property serves as a mechanism
|
|
166
|
+
* to set the `value` property through both property assignment and the
|
|
167
|
+
* .setAttribute() method. This is useful for setting the field's value
|
|
168
|
+
* in UI libraries that bind data through the .setAttribute() API
|
|
169
|
+
* and don't support IDL attribute binding.
|
|
170
|
+
*/
|
|
171
|
+
modelValue: {
|
|
172
|
+
type: PropType<string>;
|
|
173
|
+
default: undefined;
|
|
174
|
+
};
|
|
175
|
+
/**
|
|
176
|
+
* The name of the element. This element's value will be surfaced during form submission under the provided name.
|
|
177
|
+
*/
|
|
178
|
+
name: {
|
|
179
|
+
type: PropType<string>;
|
|
180
|
+
default: undefined;
|
|
181
|
+
};
|
|
182
|
+
/**
|
|
183
|
+
* Require the field to be completed prior to form submission.
|
|
184
|
+
*/
|
|
185
|
+
required: {
|
|
186
|
+
type: PropType<boolean>;
|
|
187
|
+
default: undefined;
|
|
188
|
+
};
|
|
189
|
+
/**
|
|
190
|
+
* Whether the time-picker is readonly.
|
|
191
|
+
*/
|
|
192
|
+
readonly: {
|
|
193
|
+
type: PropType<boolean>;
|
|
194
|
+
default: undefined;
|
|
195
|
+
};
|
|
196
|
+
/**
|
|
197
|
+
* Distance between presented minute options.
|
|
198
|
+
*/
|
|
199
|
+
minutesStep: {
|
|
200
|
+
type: PropType<number>;
|
|
201
|
+
default: undefined;
|
|
202
|
+
};
|
|
203
|
+
/**
|
|
204
|
+
* Distance between presented seconds options. If null, seconds are not presented.
|
|
205
|
+
*/
|
|
206
|
+
secondsStep: {
|
|
207
|
+
type: PropType<number>;
|
|
208
|
+
default: undefined;
|
|
209
|
+
};
|
|
210
|
+
/**
|
|
211
|
+
* Forces the time-picker to use a 12h or 24h clock.
|
|
212
|
+
*/
|
|
213
|
+
clock: {
|
|
214
|
+
type: PropType<"12h" | "24h">;
|
|
215
|
+
default: undefined;
|
|
216
|
+
};
|
|
217
|
+
/**
|
|
218
|
+
* The earliest accepted time of the time-picker.
|
|
219
|
+
*/
|
|
220
|
+
min: {
|
|
221
|
+
type: PropType<string>;
|
|
222
|
+
default: undefined;
|
|
223
|
+
};
|
|
224
|
+
/**
|
|
225
|
+
* The latest accepted time of the time-picker.
|
|
226
|
+
*/
|
|
227
|
+
max: {
|
|
228
|
+
type: PropType<string>;
|
|
229
|
+
default: undefined;
|
|
230
|
+
};
|
|
231
|
+
}>> & {
|
|
232
|
+
onKeydown?: ((...args: any[]) => any) | undefined;
|
|
233
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
234
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
235
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
236
|
+
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
237
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
238
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
239
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
240
|
+
}, {
|
|
241
|
+
name: string;
|
|
242
|
+
ariaCurrent: "page" | "step" | "location" | "date" | "time" | "true" | "false";
|
|
243
|
+
value: string;
|
|
244
|
+
disabled: boolean;
|
|
245
|
+
required: boolean;
|
|
246
|
+
label: string;
|
|
247
|
+
modelValue: string;
|
|
248
|
+
errorText: string;
|
|
249
|
+
helperText: string;
|
|
250
|
+
readonly: boolean;
|
|
251
|
+
max: string;
|
|
252
|
+
min: string;
|
|
253
|
+
minutesStep: number;
|
|
254
|
+
secondsStep: number;
|
|
255
|
+
clock: "12h" | "24h";
|
|
256
|
+
}, {}>;
|
|
257
|
+
export default _default;
|
|
@@ -49,6 +49,7 @@ export { default as VTabs } from './VTabs';
|
|
|
49
49
|
export { default as VTabPanel } from './VTabPanel';
|
|
50
50
|
export { default as VTextArea } from './VTextArea';
|
|
51
51
|
export { default as VTextField } from './VTextField';
|
|
52
|
+
export { default as VTimePicker } from './VTimePicker';
|
|
52
53
|
export { default as VToggletip } from './VToggletip';
|
|
53
54
|
export { default as VTooltip } from './VTooltip';
|
|
54
55
|
export { default as VTreeItem } from './VTreeItem';
|