@uzum-tech/ui 1.5.2 → 1.5.4

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.
Files changed (200) hide show
  1. package/README.md +0 -1
  2. package/dist/index.js +1147 -628
  3. package/dist/index.prod.js +3 -3
  4. package/es/_internal/checkbox/src/use-checkbox.js +3 -3
  5. package/es/_internal/radio/src/use-radio.js +3 -3
  6. package/es/_mixins/use-form-item.d.ts +4 -4
  7. package/es/_mixins/use-form-item.js +4 -4
  8. package/es/_styles/common/dark.js +1 -1
  9. package/es/_styles/common/light.d.ts +3 -0
  10. package/es/_styles/common/light.js +1 -1
  11. package/es/_utils/composable/composables.d.ts +11 -0
  12. package/es/_utils/composable/composables.js +40 -0
  13. package/es/_utils/index.d.ts +1 -1
  14. package/es/_utils/index.js +1 -1
  15. package/es/_utils/uzum/index.d.ts +1 -0
  16. package/es/_utils/uzum/index.js +1 -0
  17. package/es/_utils/uzum/value.d.ts +1 -0
  18. package/es/_utils/uzum/value.js +9 -0
  19. package/es/_utils/vue/resolve-slot.d.ts +1 -1
  20. package/es/alert/styles/light.js +6 -6
  21. package/es/auto-complete/src/AutoComplete.js +10 -10
  22. package/es/avatar/src/Avatar.d.ts +6 -0
  23. package/es/avatar/src/Avatar.js +9 -3
  24. package/es/card-list/src/CardList.js +1 -1
  25. package/es/card-list/src/CardListItem.d.ts +13 -0
  26. package/es/card-list/src/CardListItem.js +11 -4
  27. package/es/card-list/src/interface.d.ts +1 -0
  28. package/es/card-list/src/styles/index.cssr.js +6 -6
  29. package/es/card-list/styles/light.js +2 -2
  30. package/es/cascader/src/Cascader.js +7 -7
  31. package/es/checkbox/src/CheckboxGroup.js +9 -9
  32. package/es/collapse/src/Collapse.d.ts +47 -14
  33. package/es/collapse/src/Collapse.js +6 -3
  34. package/es/collapse/src/CollapseItem.js +3 -2
  35. package/es/collapse/src/styles/index.cssr.js +27 -7
  36. package/es/collapse/styles/light.d.ts +4 -1
  37. package/es/collapse/styles/light.js +6 -3
  38. package/es/color-picker/src/ColorPicker.js +6 -6
  39. package/es/components.d.ts +1 -0
  40. package/es/components.js +1 -0
  41. package/es/config-provider/src/internal-interface.d.ts +2 -0
  42. package/es/data-table/src/DataTable.d.ts +7 -0
  43. package/es/data-table/src/DataTable.js +21 -10
  44. package/es/data-table/src/TableParts/Body.d.ts +1 -0
  45. package/es/data-table/src/TableParts/Body.js +8 -6
  46. package/es/data-table/src/TableParts/Cell.js +85 -23
  47. package/es/data-table/src/interface.d.ts +14 -6
  48. package/es/data-table/src/interface.js +1 -1
  49. package/es/data-table/src/styles/index.cssr.js +5 -3
  50. package/es/data-table/src/use-mask.d.ts +3 -6
  51. package/es/data-table/src/utils.d.ts +2 -1
  52. package/es/data-table/src/utils.js +13 -0
  53. package/es/date-picker/src/DatePicker.js +7 -7
  54. package/es/dialog/src/DialogProvider.d.ts +6 -0
  55. package/es/dynamic-tags/src/DynamicTags.d.ts +10 -0
  56. package/es/dynamic-tags/src/DynamicTags.js +3 -3
  57. package/es/dynamic-tags/styles/light.d.ts +1 -0
  58. package/es/input/src/Input.js +8 -8
  59. package/es/input-number/src/InputNumber.js +7 -7
  60. package/es/input-otp/index.d.ts +3 -0
  61. package/es/input-otp/index.js +1 -0
  62. package/es/input-otp/src/InputOtp.d.ts +871 -0
  63. package/es/input-otp/src/InputOtp.js +250 -0
  64. package/es/input-otp/src/public-types.d.ts +25 -0
  65. package/es/input-otp/src/public-types.js +1 -0
  66. package/es/input-otp/src/styles/index.cssr.d.ts +2 -0
  67. package/es/input-otp/src/styles/index.cssr.js +20 -0
  68. package/es/input-otp/src/styles/input-otp-rtl.cssr.d.ts +2 -0
  69. package/es/input-otp/src/styles/input-otp-rtl.cssr.js +5 -0
  70. package/es/input-otp/styles/dark.d.ts +3 -0
  71. package/es/input-otp/styles/dark.js +12 -0
  72. package/es/input-otp/styles/index.d.ts +4 -0
  73. package/es/input-otp/styles/index.js +3 -0
  74. package/es/input-otp/styles/light.d.ts +83 -0
  75. package/es/input-otp/styles/light.js +22 -0
  76. package/es/input-otp/styles/rtl.d.ts +2 -0
  77. package/es/input-otp/styles/rtl.js +5 -0
  78. package/es/legacy-transfer/src/Transfer.js +3 -3
  79. package/es/list/src/ListItem.js +8 -4
  80. package/es/mention/src/Mention.js +7 -7
  81. package/es/radio/src/RadioGroup.js +5 -5
  82. package/es/rate/src/Rate.js +3 -3
  83. package/es/select/src/Select.js +7 -7
  84. package/es/slider/src/Slider.js +3 -3
  85. package/es/styles.d.ts +1 -0
  86. package/es/styles.js +1 -0
  87. package/es/switch/src/Switch.js +7 -7
  88. package/es/tag/src/Tag.d.ts +27 -13
  89. package/es/tag/src/Tag.js +7 -2
  90. package/es/tag/src/styles/index.cssr.js +13 -3
  91. package/es/tag/styles/light.d.ts +1 -0
  92. package/es/tag/styles/light.js +7 -6
  93. package/es/theme-editor/src/ThemeEditor.d.ts +3 -0
  94. package/es/themes/dark.js +2 -0
  95. package/es/themes/light.js +2 -0
  96. package/es/time-picker/src/TimePicker.js +7 -7
  97. package/es/transfer/src/Transfer.js +3 -3
  98. package/es/tree-select/src/TreeSelect.js +5 -5
  99. package/es/version.d.ts +1 -1
  100. package/es/version.js +1 -1
  101. package/lib/_internal/checkbox/src/use-checkbox.js +3 -3
  102. package/lib/_internal/radio/src/use-radio.js +3 -3
  103. package/lib/_mixins/use-form-item.d.ts +4 -4
  104. package/lib/_mixins/use-form-item.js +4 -4
  105. package/lib/_styles/common/dark.js +1 -1
  106. package/lib/_styles/common/light.d.ts +3 -0
  107. package/lib/_styles/common/light.js +1 -1
  108. package/lib/_utils/composable/composables.d.ts +11 -0
  109. package/lib/_utils/composable/composables.js +47 -0
  110. package/lib/_utils/index.d.ts +1 -1
  111. package/lib/_utils/index.js +2 -1
  112. package/lib/_utils/uzum/index.d.ts +1 -0
  113. package/lib/_utils/uzum/index.js +3 -1
  114. package/lib/_utils/uzum/value.d.ts +1 -0
  115. package/lib/_utils/uzum/value.js +12 -0
  116. package/lib/_utils/vue/resolve-slot.d.ts +1 -1
  117. package/lib/alert/styles/light.js +6 -6
  118. package/lib/auto-complete/src/AutoComplete.js +10 -10
  119. package/lib/avatar/src/Avatar.d.ts +6 -0
  120. package/lib/avatar/src/Avatar.js +9 -3
  121. package/lib/card-list/src/CardList.js +1 -1
  122. package/lib/card-list/src/CardListItem.d.ts +13 -0
  123. package/lib/card-list/src/CardListItem.js +11 -4
  124. package/lib/card-list/src/interface.d.ts +1 -0
  125. package/lib/card-list/src/styles/index.cssr.js +5 -5
  126. package/lib/card-list/styles/light.js +2 -2
  127. package/lib/cascader/src/Cascader.js +7 -7
  128. package/lib/checkbox/src/CheckboxGroup.js +9 -9
  129. package/lib/collapse/src/Collapse.d.ts +47 -14
  130. package/lib/collapse/src/Collapse.js +6 -3
  131. package/lib/collapse/src/CollapseItem.js +3 -2
  132. package/lib/collapse/src/styles/index.cssr.js +27 -7
  133. package/lib/collapse/styles/light.d.ts +4 -1
  134. package/lib/collapse/styles/light.js +6 -3
  135. package/lib/color-picker/src/ColorPicker.js +6 -6
  136. package/lib/components.d.ts +1 -0
  137. package/lib/components.js +1 -0
  138. package/lib/config-provider/src/internal-interface.d.ts +2 -0
  139. package/lib/data-table/src/DataTable.d.ts +7 -0
  140. package/lib/data-table/src/DataTable.js +21 -10
  141. package/lib/data-table/src/TableParts/Body.d.ts +1 -0
  142. package/lib/data-table/src/TableParts/Body.js +8 -6
  143. package/lib/data-table/src/TableParts/Cell.js +84 -22
  144. package/lib/data-table/src/interface.d.ts +14 -6
  145. package/lib/data-table/src/interface.js +1 -1
  146. package/lib/data-table/src/styles/index.cssr.js +5 -3
  147. package/lib/data-table/src/use-mask.d.ts +3 -6
  148. package/lib/data-table/src/utils.d.ts +2 -1
  149. package/lib/data-table/src/utils.js +14 -1
  150. package/lib/date-picker/src/DatePicker.js +7 -7
  151. package/lib/dialog/src/DialogProvider.d.ts +6 -0
  152. package/lib/dynamic-tags/src/DynamicTags.d.ts +10 -0
  153. package/lib/dynamic-tags/src/DynamicTags.js +3 -3
  154. package/lib/dynamic-tags/styles/light.d.ts +1 -0
  155. package/lib/input/src/Input.js +8 -8
  156. package/lib/input-number/src/InputNumber.js +7 -7
  157. package/lib/input-otp/index.d.ts +3 -0
  158. package/lib/input-otp/index.js +9 -0
  159. package/lib/input-otp/src/InputOtp.d.ts +871 -0
  160. package/lib/input-otp/src/InputOtp.js +256 -0
  161. package/lib/input-otp/src/public-types.d.ts +25 -0
  162. package/lib/input-otp/src/public-types.js +2 -0
  163. package/lib/input-otp/src/styles/index.cssr.d.ts +2 -0
  164. package/lib/input-otp/src/styles/index.cssr.js +25 -0
  165. package/lib/input-otp/src/styles/input-otp-rtl.cssr.d.ts +2 -0
  166. package/lib/input-otp/src/styles/input-otp-rtl.cssr.js +10 -0
  167. package/lib/input-otp/styles/dark.d.ts +3 -0
  168. package/lib/input-otp/styles/dark.js +14 -0
  169. package/lib/input-otp/styles/index.d.ts +4 -0
  170. package/lib/input-otp/styles/index.js +12 -0
  171. package/lib/input-otp/styles/light.d.ts +83 -0
  172. package/lib/input-otp/styles/light.js +25 -0
  173. package/lib/input-otp/styles/rtl.d.ts +2 -0
  174. package/lib/input-otp/styles/rtl.js +11 -0
  175. package/lib/legacy-transfer/src/Transfer.js +3 -3
  176. package/lib/list/src/ListItem.js +8 -4
  177. package/lib/mention/src/Mention.js +7 -7
  178. package/lib/radio/src/RadioGroup.js +5 -5
  179. package/lib/rate/src/Rate.js +3 -3
  180. package/lib/select/src/Select.js +7 -7
  181. package/lib/slider/src/Slider.js +3 -3
  182. package/lib/styles.d.ts +1 -0
  183. package/lib/styles.js +106 -103
  184. package/lib/switch/src/Switch.js +7 -7
  185. package/lib/tag/src/Tag.d.ts +27 -13
  186. package/lib/tag/src/Tag.js +7 -2
  187. package/lib/tag/src/styles/index.cssr.js +13 -3
  188. package/lib/tag/styles/light.d.ts +1 -0
  189. package/lib/tag/styles/light.js +7 -6
  190. package/lib/theme-editor/src/ThemeEditor.d.ts +3 -0
  191. package/lib/themes/dark.js +2 -0
  192. package/lib/themes/light.js +2 -0
  193. package/lib/time-picker/src/TimePicker.js +7 -7
  194. package/lib/transfer/src/Transfer.js +3 -3
  195. package/lib/tree-select/src/TreeSelect.js +5 -5
  196. package/lib/version.d.ts +1 -1
  197. package/lib/version.js +1 -1
  198. package/package.json +1 -1
  199. package/volar.d.ts +1 -0
  200. package/web-types.json +131 -4
@@ -0,0 +1,871 @@
1
+ import type { PropType, SlotsType } from 'vue';
2
+ import type { ExtractPublicPropTypes, MaybeArray } from '../../_utils';
3
+ import type { InputOtpAllowInput, InputOtpOnBlur, InputOtpOnFinish, InputOtpOnFocus, InputOtpOnUpdateValue, InputOtpSize, InputOtpSlots } from './public-types';
4
+ import { FormValidationStatus } from '../../form/src/interface';
5
+ export declare const inputOtpProps: {
6
+ defaultValue: {
7
+ type: PropType<string[]>;
8
+ default: never[];
9
+ };
10
+ value: PropType<null | string[]>;
11
+ length: {
12
+ type: NumberConstructor;
13
+ default: number;
14
+ };
15
+ block: BooleanConstructor;
16
+ size: PropType<InputOtpSize>;
17
+ disabled: BooleanConstructor;
18
+ mask: BooleanConstructor;
19
+ readonly: BooleanConstructor;
20
+ status: PropType<FormValidationStatus>;
21
+ gap: PropType<string | number>;
22
+ placeholder: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
26
+ allowInput: PropType<InputOtpAllowInput>;
27
+ onBlur: PropType<MaybeArray<InputOtpOnBlur>>;
28
+ onFocus: PropType<MaybeArray<InputOtpOnFocus>>;
29
+ 'onUpdate:value': PropType<MaybeArray<InputOtpOnUpdateValue>>;
30
+ onUpdateValue: PropType<MaybeArray<InputOtpOnUpdateValue>>;
31
+ onFinish: PropType<MaybeArray<InputOtpOnFinish>>;
32
+ theme: PropType<import("../../_mixins").Theme<"InputOtp", {
33
+ inputWidthSmall: string;
34
+ inputWidthMedium: string;
35
+ inputWidthLarge: string;
36
+ gapSmall: string;
37
+ gapMedium: string;
38
+ gapLarge: string;
39
+ }, {
40
+ Input: import("../../_mixins").Theme<"Input", {
41
+ paddingTiny: string;
42
+ paddingSmall: string;
43
+ paddingMedium: string;
44
+ paddingLarge: string;
45
+ paddingHuge: string;
46
+ clearSize: string;
47
+ countTextColorDisabled: string;
48
+ countTextColor: string;
49
+ heightTiny: string;
50
+ heightSmall: string;
51
+ heightMedium: string;
52
+ heightLarge: string;
53
+ heightHuge: string;
54
+ fontSizeTiny: string;
55
+ fontSizeSmall: string;
56
+ fontSizeMedium: string;
57
+ fontSizeLarge: string;
58
+ fontSizeHuge: string;
59
+ lineHeight: string;
60
+ lineHeightTextarea: string;
61
+ borderRadius: string;
62
+ iconSize: string;
63
+ groupLabelTextColor: string;
64
+ textColor: string;
65
+ textColorDisabled: string;
66
+ textDecorationColor: string;
67
+ caretColor: string;
68
+ placeholderColor: string;
69
+ placeholderColorDisabled: string;
70
+ color: string;
71
+ colorDisabled: string;
72
+ colorFocus: string;
73
+ groupLabelBorder: string;
74
+ border: string;
75
+ borderHover: string;
76
+ borderDisabled: string;
77
+ borderFocus: string;
78
+ boxShadowFocus: string;
79
+ loadingColor: string;
80
+ loadingColorWarning: string;
81
+ borderWarning: string;
82
+ borderHoverWarning: string;
83
+ colorFocusWarning: string;
84
+ borderFocusWarning: string;
85
+ boxShadowFocusWarning: string;
86
+ caretColorWarning: string;
87
+ loadingColorError: string;
88
+ borderError: string;
89
+ borderHoverError: string;
90
+ colorFocusError: string;
91
+ borderFocusError: string;
92
+ boxShadowFocusError: string;
93
+ caretColorError: string;
94
+ clearColor: string;
95
+ clearColorHover: string;
96
+ clearColorPressed: string;
97
+ iconColor: string;
98
+ iconColorDisabled: string;
99
+ iconColorHover: string;
100
+ iconColorPressed: string;
101
+ suffixTextColor: string;
102
+ selectionColor: string;
103
+ }, any>;
104
+ }>>;
105
+ themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"InputOtp", {
106
+ inputWidthSmall: string;
107
+ inputWidthMedium: string;
108
+ inputWidthLarge: string;
109
+ gapSmall: string;
110
+ gapMedium: string;
111
+ gapLarge: string;
112
+ }, {
113
+ Input: import("../../_mixins").Theme<"Input", {
114
+ paddingTiny: string;
115
+ paddingSmall: string;
116
+ paddingMedium: string;
117
+ paddingLarge: string;
118
+ paddingHuge: string;
119
+ clearSize: string;
120
+ countTextColorDisabled: string;
121
+ countTextColor: string;
122
+ heightTiny: string;
123
+ heightSmall: string;
124
+ heightMedium: string;
125
+ heightLarge: string;
126
+ heightHuge: string;
127
+ fontSizeTiny: string;
128
+ fontSizeSmall: string;
129
+ fontSizeMedium: string;
130
+ fontSizeLarge: string;
131
+ fontSizeHuge: string;
132
+ lineHeight: string;
133
+ lineHeightTextarea: string;
134
+ borderRadius: string;
135
+ iconSize: string;
136
+ groupLabelTextColor: string;
137
+ textColor: string;
138
+ textColorDisabled: string;
139
+ textDecorationColor: string;
140
+ caretColor: string;
141
+ placeholderColor: string;
142
+ placeholderColorDisabled: string;
143
+ color: string;
144
+ colorDisabled: string;
145
+ colorFocus: string;
146
+ groupLabelBorder: string;
147
+ border: string;
148
+ borderHover: string;
149
+ borderDisabled: string;
150
+ borderFocus: string;
151
+ boxShadowFocus: string;
152
+ loadingColor: string;
153
+ loadingColorWarning: string;
154
+ borderWarning: string;
155
+ borderHoverWarning: string;
156
+ colorFocusWarning: string;
157
+ borderFocusWarning: string;
158
+ boxShadowFocusWarning: string;
159
+ caretColorWarning: string;
160
+ loadingColorError: string;
161
+ borderError: string;
162
+ borderHoverError: string;
163
+ colorFocusError: string;
164
+ borderFocusError: string;
165
+ boxShadowFocusError: string;
166
+ caretColorError: string;
167
+ clearColor: string;
168
+ clearColorHover: string;
169
+ clearColorPressed: string;
170
+ iconColor: string;
171
+ iconColorDisabled: string;
172
+ iconColorHover: string;
173
+ iconColorPressed: string;
174
+ suffixTextColor: string;
175
+ selectionColor: string;
176
+ }, any>;
177
+ }>>>;
178
+ builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"InputOtp", {
179
+ inputWidthSmall: string;
180
+ inputWidthMedium: string;
181
+ inputWidthLarge: string;
182
+ gapSmall: string;
183
+ gapMedium: string;
184
+ gapLarge: string;
185
+ }, {
186
+ Input: import("../../_mixins").Theme<"Input", {
187
+ paddingTiny: string;
188
+ paddingSmall: string;
189
+ paddingMedium: string;
190
+ paddingLarge: string;
191
+ paddingHuge: string;
192
+ clearSize: string;
193
+ countTextColorDisabled: string;
194
+ countTextColor: string;
195
+ heightTiny: string;
196
+ heightSmall: string;
197
+ heightMedium: string;
198
+ heightLarge: string;
199
+ heightHuge: string;
200
+ fontSizeTiny: string;
201
+ fontSizeSmall: string;
202
+ fontSizeMedium: string;
203
+ fontSizeLarge: string;
204
+ fontSizeHuge: string;
205
+ lineHeight: string;
206
+ lineHeightTextarea: string;
207
+ borderRadius: string;
208
+ iconSize: string;
209
+ groupLabelTextColor: string;
210
+ textColor: string;
211
+ textColorDisabled: string;
212
+ textDecorationColor: string;
213
+ caretColor: string;
214
+ placeholderColor: string;
215
+ placeholderColorDisabled: string;
216
+ color: string;
217
+ colorDisabled: string;
218
+ colorFocus: string;
219
+ groupLabelBorder: string;
220
+ border: string;
221
+ borderHover: string;
222
+ borderDisabled: string;
223
+ borderFocus: string;
224
+ boxShadowFocus: string;
225
+ loadingColor: string;
226
+ loadingColorWarning: string;
227
+ borderWarning: string;
228
+ borderHoverWarning: string;
229
+ colorFocusWarning: string;
230
+ borderFocusWarning: string;
231
+ boxShadowFocusWarning: string;
232
+ caretColorWarning: string;
233
+ loadingColorError: string;
234
+ borderError: string;
235
+ borderHoverError: string;
236
+ colorFocusError: string;
237
+ borderFocusError: string;
238
+ boxShadowFocusError: string;
239
+ caretColorError: string;
240
+ clearColor: string;
241
+ clearColorHover: string;
242
+ clearColorPressed: string;
243
+ iconColor: string;
244
+ iconColorDisabled: string;
245
+ iconColorHover: string;
246
+ iconColorPressed: string;
247
+ suffixTextColor: string;
248
+ selectionColor: string;
249
+ }, any>;
250
+ }>>>;
251
+ };
252
+ export type InputOtpProps = ExtractPublicPropTypes<typeof inputOtpProps>;
253
+ declare const _default: import("vue").DefineComponent<{
254
+ defaultValue: {
255
+ type: PropType<string[]>;
256
+ default: never[];
257
+ };
258
+ value: PropType<null | string[]>;
259
+ length: {
260
+ type: NumberConstructor;
261
+ default: number;
262
+ };
263
+ block: BooleanConstructor;
264
+ size: PropType<InputOtpSize>;
265
+ disabled: BooleanConstructor;
266
+ mask: BooleanConstructor;
267
+ readonly: BooleanConstructor;
268
+ status: PropType<FormValidationStatus>;
269
+ gap: PropType<string | number>;
270
+ placeholder: {
271
+ type: StringConstructor;
272
+ default: string;
273
+ };
274
+ allowInput: PropType<InputOtpAllowInput>;
275
+ onBlur: PropType<MaybeArray<InputOtpOnBlur>>;
276
+ onFocus: PropType<MaybeArray<InputOtpOnFocus>>;
277
+ 'onUpdate:value': PropType<MaybeArray<InputOtpOnUpdateValue>>;
278
+ onUpdateValue: PropType<MaybeArray<InputOtpOnUpdateValue>>;
279
+ onFinish: PropType<MaybeArray<InputOtpOnFinish>>;
280
+ theme: PropType<import("../../_mixins").Theme<"InputOtp", {
281
+ inputWidthSmall: string;
282
+ inputWidthMedium: string;
283
+ inputWidthLarge: string;
284
+ gapSmall: string;
285
+ gapMedium: string;
286
+ gapLarge: string;
287
+ }, {
288
+ Input: import("../../_mixins").Theme<"Input", {
289
+ paddingTiny: string;
290
+ paddingSmall: string;
291
+ paddingMedium: string;
292
+ paddingLarge: string;
293
+ paddingHuge: string;
294
+ clearSize: string;
295
+ countTextColorDisabled: string;
296
+ countTextColor: string;
297
+ heightTiny: string;
298
+ heightSmall: string;
299
+ heightMedium: string;
300
+ heightLarge: string;
301
+ heightHuge: string;
302
+ fontSizeTiny: string;
303
+ fontSizeSmall: string;
304
+ fontSizeMedium: string;
305
+ fontSizeLarge: string;
306
+ fontSizeHuge: string;
307
+ lineHeight: string;
308
+ lineHeightTextarea: string;
309
+ borderRadius: string;
310
+ iconSize: string;
311
+ groupLabelTextColor: string;
312
+ textColor: string;
313
+ textColorDisabled: string;
314
+ textDecorationColor: string;
315
+ caretColor: string;
316
+ placeholderColor: string;
317
+ placeholderColorDisabled: string;
318
+ color: string;
319
+ colorDisabled: string;
320
+ colorFocus: string;
321
+ groupLabelBorder: string;
322
+ border: string;
323
+ borderHover: string;
324
+ borderDisabled: string;
325
+ borderFocus: string;
326
+ boxShadowFocus: string;
327
+ loadingColor: string;
328
+ loadingColorWarning: string;
329
+ borderWarning: string;
330
+ borderHoverWarning: string;
331
+ colorFocusWarning: string;
332
+ borderFocusWarning: string;
333
+ boxShadowFocusWarning: string;
334
+ caretColorWarning: string;
335
+ loadingColorError: string;
336
+ borderError: string;
337
+ borderHoverError: string;
338
+ colorFocusError: string;
339
+ borderFocusError: string;
340
+ boxShadowFocusError: string;
341
+ caretColorError: string;
342
+ clearColor: string;
343
+ clearColorHover: string;
344
+ clearColorPressed: string;
345
+ iconColor: string;
346
+ iconColorDisabled: string;
347
+ iconColorHover: string;
348
+ iconColorPressed: string;
349
+ suffixTextColor: string;
350
+ selectionColor: string;
351
+ }, any>;
352
+ }>>;
353
+ themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"InputOtp", {
354
+ inputWidthSmall: string;
355
+ inputWidthMedium: string;
356
+ inputWidthLarge: string;
357
+ gapSmall: string;
358
+ gapMedium: string;
359
+ gapLarge: string;
360
+ }, {
361
+ Input: import("../../_mixins").Theme<"Input", {
362
+ paddingTiny: string;
363
+ paddingSmall: string;
364
+ paddingMedium: string;
365
+ paddingLarge: string;
366
+ paddingHuge: string;
367
+ clearSize: string;
368
+ countTextColorDisabled: string;
369
+ countTextColor: string;
370
+ heightTiny: string;
371
+ heightSmall: string;
372
+ heightMedium: string;
373
+ heightLarge: string;
374
+ heightHuge: string;
375
+ fontSizeTiny: string;
376
+ fontSizeSmall: string;
377
+ fontSizeMedium: string;
378
+ fontSizeLarge: string;
379
+ fontSizeHuge: string;
380
+ lineHeight: string;
381
+ lineHeightTextarea: string;
382
+ borderRadius: string;
383
+ iconSize: string;
384
+ groupLabelTextColor: string;
385
+ textColor: string;
386
+ textColorDisabled: string;
387
+ textDecorationColor: string;
388
+ caretColor: string;
389
+ placeholderColor: string;
390
+ placeholderColorDisabled: string;
391
+ color: string;
392
+ colorDisabled: string;
393
+ colorFocus: string;
394
+ groupLabelBorder: string;
395
+ border: string;
396
+ borderHover: string;
397
+ borderDisabled: string;
398
+ borderFocus: string;
399
+ boxShadowFocus: string;
400
+ loadingColor: string;
401
+ loadingColorWarning: string;
402
+ borderWarning: string;
403
+ borderHoverWarning: string;
404
+ colorFocusWarning: string;
405
+ borderFocusWarning: string;
406
+ boxShadowFocusWarning: string;
407
+ caretColorWarning: string;
408
+ loadingColorError: string;
409
+ borderError: string;
410
+ borderHoverError: string;
411
+ colorFocusError: string;
412
+ borderFocusError: string;
413
+ boxShadowFocusError: string;
414
+ caretColorError: string;
415
+ clearColor: string;
416
+ clearColorHover: string;
417
+ clearColorPressed: string;
418
+ iconColor: string;
419
+ iconColorDisabled: string;
420
+ iconColorHover: string;
421
+ iconColorPressed: string;
422
+ suffixTextColor: string;
423
+ selectionColor: string;
424
+ }, any>;
425
+ }>>>;
426
+ builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"InputOtp", {
427
+ inputWidthSmall: string;
428
+ inputWidthMedium: string;
429
+ inputWidthLarge: string;
430
+ gapSmall: string;
431
+ gapMedium: string;
432
+ gapLarge: string;
433
+ }, {
434
+ Input: import("../../_mixins").Theme<"Input", {
435
+ paddingTiny: string;
436
+ paddingSmall: string;
437
+ paddingMedium: string;
438
+ paddingLarge: string;
439
+ paddingHuge: string;
440
+ clearSize: string;
441
+ countTextColorDisabled: string;
442
+ countTextColor: string;
443
+ heightTiny: string;
444
+ heightSmall: string;
445
+ heightMedium: string;
446
+ heightLarge: string;
447
+ heightHuge: string;
448
+ fontSizeTiny: string;
449
+ fontSizeSmall: string;
450
+ fontSizeMedium: string;
451
+ fontSizeLarge: string;
452
+ fontSizeHuge: string;
453
+ lineHeight: string;
454
+ lineHeightTextarea: string;
455
+ borderRadius: string;
456
+ iconSize: string;
457
+ groupLabelTextColor: string;
458
+ textColor: string;
459
+ textColorDisabled: string;
460
+ textDecorationColor: string;
461
+ caretColor: string;
462
+ placeholderColor: string;
463
+ placeholderColorDisabled: string;
464
+ color: string;
465
+ colorDisabled: string;
466
+ colorFocus: string;
467
+ groupLabelBorder: string;
468
+ border: string;
469
+ borderHover: string;
470
+ borderDisabled: string;
471
+ borderFocus: string;
472
+ boxShadowFocus: string;
473
+ loadingColor: string;
474
+ loadingColorWarning: string;
475
+ borderWarning: string;
476
+ borderHoverWarning: string;
477
+ colorFocusWarning: string;
478
+ borderFocusWarning: string;
479
+ boxShadowFocusWarning: string;
480
+ caretColorWarning: string;
481
+ loadingColorError: string;
482
+ borderError: string;
483
+ borderHoverError: string;
484
+ colorFocusError: string;
485
+ borderFocusError: string;
486
+ boxShadowFocusError: string;
487
+ caretColorError: string;
488
+ clearColor: string;
489
+ clearColorHover: string;
490
+ clearColorPressed: string;
491
+ iconColor: string;
492
+ iconColorDisabled: string;
493
+ iconColorHover: string;
494
+ iconColorPressed: string;
495
+ suffixTextColor: string;
496
+ selectionColor: string;
497
+ }, any>;
498
+ }>>>;
499
+ }, {
500
+ focusOnChar: (charIndex: number) => void;
501
+ mergedTheme: import("vue").ComputedRef<{
502
+ common: import("../..").ThemeCommonVars;
503
+ self: {
504
+ inputWidthSmall: string;
505
+ inputWidthMedium: string;
506
+ inputWidthLarge: string;
507
+ gapSmall: string;
508
+ gapMedium: string;
509
+ gapLarge: string;
510
+ };
511
+ peers: {
512
+ Input: import("../../_mixins").Theme<"Input", {
513
+ paddingTiny: string;
514
+ paddingSmall: string;
515
+ paddingMedium: string;
516
+ paddingLarge: string;
517
+ paddingHuge: string;
518
+ clearSize: string;
519
+ countTextColorDisabled: string;
520
+ countTextColor: string;
521
+ heightTiny: string;
522
+ heightSmall: string;
523
+ heightMedium: string;
524
+ heightLarge: string;
525
+ heightHuge: string;
526
+ fontSizeTiny: string;
527
+ fontSizeSmall: string;
528
+ fontSizeMedium: string;
529
+ fontSizeLarge: string;
530
+ fontSizeHuge: string;
531
+ lineHeight: string;
532
+ lineHeightTextarea: string;
533
+ borderRadius: string;
534
+ iconSize: string;
535
+ groupLabelTextColor: string;
536
+ textColor: string;
537
+ textColorDisabled: string;
538
+ textDecorationColor: string;
539
+ caretColor: string;
540
+ placeholderColor: string;
541
+ placeholderColorDisabled: string;
542
+ color: string;
543
+ colorDisabled: string;
544
+ colorFocus: string;
545
+ groupLabelBorder: string;
546
+ border: string;
547
+ borderHover: string;
548
+ borderDisabled: string;
549
+ borderFocus: string;
550
+ boxShadowFocus: string;
551
+ loadingColor: string;
552
+ loadingColorWarning: string;
553
+ borderWarning: string;
554
+ borderHoverWarning: string;
555
+ colorFocusWarning: string;
556
+ borderFocusWarning: string;
557
+ boxShadowFocusWarning: string;
558
+ caretColorWarning: string;
559
+ loadingColorError: string;
560
+ borderError: string;
561
+ borderHoverError: string;
562
+ colorFocusError: string;
563
+ borderFocusError: string;
564
+ boxShadowFocusError: string;
565
+ caretColorError: string;
566
+ clearColor: string;
567
+ clearColorHover: string;
568
+ clearColorPressed: string;
569
+ iconColor: string;
570
+ iconColorDisabled: string;
571
+ iconColorHover: string;
572
+ iconColorPressed: string;
573
+ suffixTextColor: string;
574
+ selectionColor: string;
575
+ }, any>;
576
+ };
577
+ peerOverrides: {
578
+ Input?: {
579
+ peers?: {
580
+ [x: string]: any;
581
+ } | undefined;
582
+ } | undefined;
583
+ };
584
+ }>;
585
+ perItemValueArray: import("vue").ComputedRef<string[]>;
586
+ mergedClsPrefix: import("vue").Ref<string>;
587
+ inputRefList: import("vue").Ref<{
588
+ wrapperElRef: HTMLElement | null;
589
+ textareaElRef: HTMLTextAreaElement | null;
590
+ inputElRef: HTMLInputElement | null;
591
+ isCompositing: boolean;
592
+ blur: () => void;
593
+ focus: () => void;
594
+ select: () => void;
595
+ activate: () => void;
596
+ deactivate: () => void;
597
+ scrollTo: (options: ScrollToOptions) => void;
598
+ }[]>;
599
+ inputType: import("vue").ComputedRef<"text" | "password">;
600
+ rtlEnabled: import("vue").Ref<import("../../config-provider/src/internal-interface").RtlItem | undefined> | undefined;
601
+ mergedStatus: import("vue").ComputedRef<FormValidationStatus | undefined>;
602
+ mergedDisabled: import("vue").ComputedRef<boolean>;
603
+ cssVars: import("vue").ComputedRef<{
604
+ '--u-gap': string;
605
+ '--u-input-width': string;
606
+ }> | undefined;
607
+ themeClass: import("vue").Ref<string> | undefined;
608
+ getTemplateEvents: (index: number) => {
609
+ onInput: (value: string) => void;
610
+ onPaste: (event: ClipboardEvent) => void;
611
+ onKeydown: (event: KeyboardEvent) => void;
612
+ onFocus: (event: FocusEvent) => void;
613
+ onBlur: (event: FocusEvent) => void;
614
+ };
615
+ onRender: (() => void) | undefined;
616
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
617
+ defaultValue: {
618
+ type: PropType<string[]>;
619
+ default: never[];
620
+ };
621
+ value: PropType<null | string[]>;
622
+ length: {
623
+ type: NumberConstructor;
624
+ default: number;
625
+ };
626
+ block: BooleanConstructor;
627
+ size: PropType<InputOtpSize>;
628
+ disabled: BooleanConstructor;
629
+ mask: BooleanConstructor;
630
+ readonly: BooleanConstructor;
631
+ status: PropType<FormValidationStatus>;
632
+ gap: PropType<string | number>;
633
+ placeholder: {
634
+ type: StringConstructor;
635
+ default: string;
636
+ };
637
+ allowInput: PropType<InputOtpAllowInput>;
638
+ onBlur: PropType<MaybeArray<InputOtpOnBlur>>;
639
+ onFocus: PropType<MaybeArray<InputOtpOnFocus>>;
640
+ 'onUpdate:value': PropType<MaybeArray<InputOtpOnUpdateValue>>;
641
+ onUpdateValue: PropType<MaybeArray<InputOtpOnUpdateValue>>;
642
+ onFinish: PropType<MaybeArray<InputOtpOnFinish>>;
643
+ theme: PropType<import("../../_mixins").Theme<"InputOtp", {
644
+ inputWidthSmall: string;
645
+ inputWidthMedium: string;
646
+ inputWidthLarge: string;
647
+ gapSmall: string;
648
+ gapMedium: string;
649
+ gapLarge: string;
650
+ }, {
651
+ Input: import("../../_mixins").Theme<"Input", {
652
+ paddingTiny: string;
653
+ paddingSmall: string;
654
+ paddingMedium: string;
655
+ paddingLarge: string;
656
+ paddingHuge: string;
657
+ clearSize: string;
658
+ countTextColorDisabled: string;
659
+ countTextColor: string;
660
+ heightTiny: string;
661
+ heightSmall: string;
662
+ heightMedium: string;
663
+ heightLarge: string;
664
+ heightHuge: string;
665
+ fontSizeTiny: string;
666
+ fontSizeSmall: string;
667
+ fontSizeMedium: string;
668
+ fontSizeLarge: string;
669
+ fontSizeHuge: string;
670
+ lineHeight: string;
671
+ lineHeightTextarea: string;
672
+ borderRadius: string;
673
+ iconSize: string;
674
+ groupLabelTextColor: string;
675
+ textColor: string;
676
+ textColorDisabled: string;
677
+ textDecorationColor: string;
678
+ caretColor: string;
679
+ placeholderColor: string;
680
+ placeholderColorDisabled: string;
681
+ color: string;
682
+ colorDisabled: string;
683
+ colorFocus: string;
684
+ groupLabelBorder: string;
685
+ border: string;
686
+ borderHover: string;
687
+ borderDisabled: string;
688
+ borderFocus: string;
689
+ boxShadowFocus: string;
690
+ loadingColor: string;
691
+ loadingColorWarning: string;
692
+ borderWarning: string;
693
+ borderHoverWarning: string;
694
+ colorFocusWarning: string;
695
+ borderFocusWarning: string;
696
+ boxShadowFocusWarning: string;
697
+ caretColorWarning: string;
698
+ loadingColorError: string;
699
+ borderError: string;
700
+ borderHoverError: string;
701
+ colorFocusError: string;
702
+ borderFocusError: string;
703
+ boxShadowFocusError: string;
704
+ caretColorError: string;
705
+ clearColor: string;
706
+ clearColorHover: string;
707
+ clearColorPressed: string;
708
+ iconColor: string;
709
+ iconColorDisabled: string;
710
+ iconColorHover: string;
711
+ iconColorPressed: string;
712
+ suffixTextColor: string;
713
+ selectionColor: string;
714
+ }, any>;
715
+ }>>;
716
+ themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"InputOtp", {
717
+ inputWidthSmall: string;
718
+ inputWidthMedium: string;
719
+ inputWidthLarge: string;
720
+ gapSmall: string;
721
+ gapMedium: string;
722
+ gapLarge: string;
723
+ }, {
724
+ Input: import("../../_mixins").Theme<"Input", {
725
+ paddingTiny: string;
726
+ paddingSmall: string;
727
+ paddingMedium: string;
728
+ paddingLarge: string;
729
+ paddingHuge: string;
730
+ clearSize: string;
731
+ countTextColorDisabled: string;
732
+ countTextColor: string;
733
+ heightTiny: string;
734
+ heightSmall: string;
735
+ heightMedium: string;
736
+ heightLarge: string;
737
+ heightHuge: string;
738
+ fontSizeTiny: string;
739
+ fontSizeSmall: string;
740
+ fontSizeMedium: string;
741
+ fontSizeLarge: string;
742
+ fontSizeHuge: string;
743
+ lineHeight: string;
744
+ lineHeightTextarea: string;
745
+ borderRadius: string;
746
+ iconSize: string;
747
+ groupLabelTextColor: string;
748
+ textColor: string;
749
+ textColorDisabled: string;
750
+ textDecorationColor: string;
751
+ caretColor: string;
752
+ placeholderColor: string;
753
+ placeholderColorDisabled: string;
754
+ color: string;
755
+ colorDisabled: string;
756
+ colorFocus: string;
757
+ groupLabelBorder: string;
758
+ border: string;
759
+ borderHover: string;
760
+ borderDisabled: string;
761
+ borderFocus: string;
762
+ boxShadowFocus: string;
763
+ loadingColor: string;
764
+ loadingColorWarning: string;
765
+ borderWarning: string;
766
+ borderHoverWarning: string;
767
+ colorFocusWarning: string;
768
+ borderFocusWarning: string;
769
+ boxShadowFocusWarning: string;
770
+ caretColorWarning: string;
771
+ loadingColorError: string;
772
+ borderError: string;
773
+ borderHoverError: string;
774
+ colorFocusError: string;
775
+ borderFocusError: string;
776
+ boxShadowFocusError: string;
777
+ caretColorError: string;
778
+ clearColor: string;
779
+ clearColorHover: string;
780
+ clearColorPressed: string;
781
+ iconColor: string;
782
+ iconColorDisabled: string;
783
+ iconColorHover: string;
784
+ iconColorPressed: string;
785
+ suffixTextColor: string;
786
+ selectionColor: string;
787
+ }, any>;
788
+ }>>>;
789
+ builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"InputOtp", {
790
+ inputWidthSmall: string;
791
+ inputWidthMedium: string;
792
+ inputWidthLarge: string;
793
+ gapSmall: string;
794
+ gapMedium: string;
795
+ gapLarge: string;
796
+ }, {
797
+ Input: import("../../_mixins").Theme<"Input", {
798
+ paddingTiny: string;
799
+ paddingSmall: string;
800
+ paddingMedium: string;
801
+ paddingLarge: string;
802
+ paddingHuge: string;
803
+ clearSize: string;
804
+ countTextColorDisabled: string;
805
+ countTextColor: string;
806
+ heightTiny: string;
807
+ heightSmall: string;
808
+ heightMedium: string;
809
+ heightLarge: string;
810
+ heightHuge: string;
811
+ fontSizeTiny: string;
812
+ fontSizeSmall: string;
813
+ fontSizeMedium: string;
814
+ fontSizeLarge: string;
815
+ fontSizeHuge: string;
816
+ lineHeight: string;
817
+ lineHeightTextarea: string;
818
+ borderRadius: string;
819
+ iconSize: string;
820
+ groupLabelTextColor: string;
821
+ textColor: string;
822
+ textColorDisabled: string;
823
+ textDecorationColor: string;
824
+ caretColor: string;
825
+ placeholderColor: string;
826
+ placeholderColorDisabled: string;
827
+ color: string;
828
+ colorDisabled: string;
829
+ colorFocus: string;
830
+ groupLabelBorder: string;
831
+ border: string;
832
+ borderHover: string;
833
+ borderDisabled: string;
834
+ borderFocus: string;
835
+ boxShadowFocus: string;
836
+ loadingColor: string;
837
+ loadingColorWarning: string;
838
+ borderWarning: string;
839
+ borderHoverWarning: string;
840
+ colorFocusWarning: string;
841
+ borderFocusWarning: string;
842
+ boxShadowFocusWarning: string;
843
+ caretColorWarning: string;
844
+ loadingColorError: string;
845
+ borderError: string;
846
+ borderHoverError: string;
847
+ colorFocusError: string;
848
+ borderFocusError: string;
849
+ boxShadowFocusError: string;
850
+ caretColorError: string;
851
+ clearColor: string;
852
+ clearColorHover: string;
853
+ clearColorPressed: string;
854
+ iconColor: string;
855
+ iconColorDisabled: string;
856
+ iconColorHover: string;
857
+ iconColorPressed: string;
858
+ suffixTextColor: string;
859
+ selectionColor: string;
860
+ }, any>;
861
+ }>>>;
862
+ }>>, {
863
+ length: number;
864
+ disabled: boolean;
865
+ placeholder: string;
866
+ mask: boolean;
867
+ block: boolean;
868
+ defaultValue: string[];
869
+ readonly: boolean;
870
+ }, SlotsType<InputOtpSlots>>;
871
+ export default _default;