@progress/kendo-vue-inputs 8.0.3-develop.2 → 8.0.3-develop.3

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 (143) hide show
  1. package/checkbox/Checkbox.d.ts +193 -0
  2. package/checkbox/interfaces/CheckboxBlurEvent.d.ts +16 -0
  3. package/checkbox/interfaces/CheckboxChangeEvent.d.ts +16 -0
  4. package/checkbox/interfaces/CheckboxFocusEvent.d.ts +16 -0
  5. package/checkbox/interfaces/CheckboxProps.d.ts +120 -0
  6. package/colors/ColorContrastLabels.d.ts +27 -0
  7. package/colors/ColorContrastSvg.d.ts +30 -0
  8. package/colors/ColorGradient.d.ts +128 -0
  9. package/colors/ColorInput.d.ts +67 -0
  10. package/colors/ColorPalette.d.ts +112 -0
  11. package/colors/ColorPicker.d.ts +279 -0
  12. package/colors/ColorPicker.js +1 -1
  13. package/colors/ColorPicker.mjs +7 -6
  14. package/colors/FlatColorPicker.d.ts +286 -0
  15. package/colors/FlatColorPicker.mjs +3 -3
  16. package/colors/HexInput.d.ts +55 -0
  17. package/colors/Picker.d.ts +35 -0
  18. package/colors/common/ColorsAdaptiveMode.d.ts +47 -0
  19. package/colors/interfaces/ColorGradientBlurEvent.d.ts +16 -0
  20. package/colors/interfaces/ColorGradientChangeEvent.d.ts +28 -0
  21. package/colors/interfaces/ColorGradientFocusEvent.d.ts +16 -0
  22. package/colors/interfaces/ColorGradientProps.d.ts +95 -0
  23. package/colors/interfaces/ColorPaletteBlurEvent.d.ts +16 -0
  24. package/colors/interfaces/ColorPaletteChangeEvent.d.ts +28 -0
  25. package/colors/interfaces/ColorPaletteFocusEvent.d.ts +16 -0
  26. package/colors/interfaces/ColorPaletteProps.d.ts +93 -0
  27. package/colors/interfaces/ColorPickerActiveColorClick.d.ts +24 -0
  28. package/colors/interfaces/ColorPickerBlurEvent.d.ts +16 -0
  29. package/colors/interfaces/ColorPickerChangeEvent.d.ts +28 -0
  30. package/colors/interfaces/ColorPickerFocusEvent.d.ts +16 -0
  31. package/colors/interfaces/ColorPickerPaletteSettings.d.ts +39 -0
  32. package/colors/interfaces/ColorPickerPopupSettings.d.ts +21 -0
  33. package/colors/interfaces/ColorPickerProps.d.ts +190 -0
  34. package/colors/interfaces/ColorPickerView.d.ts +17 -0
  35. package/colors/interfaces/FlatColorPickerBlurEvent.d.ts +16 -0
  36. package/colors/interfaces/FlatColorPickerFocusEvent.d.ts +16 -0
  37. package/colors/interfaces/FlatColorPickerFocusoutEvent.d.ts +16 -0
  38. package/colors/interfaces/FlatColorPickerViewChangeEvent.d.ts +20 -0
  39. package/colors/interfaces/HexInputBlurEvent.d.ts +17 -0
  40. package/colors/interfaces/HexInputFocusEvent.d.ts +17 -0
  41. package/colors/interfaces/PickerPopupSettings.d.ts +21 -0
  42. package/colors/interfaces/PickerProps.d.ts +53 -0
  43. package/colors/models/hsva.d.ts +16 -0
  44. package/colors/models/output-format.d.ts +11 -0
  45. package/colors/models/palette-presets.d.ts +60 -0
  46. package/colors/models/rgb.d.ts +15 -0
  47. package/colors/models/rgba.d.ts +16 -0
  48. package/colors/models/table-cell.d.ts +14 -0
  49. package/colors/models/tile-size.d.ts +18 -0
  50. package/colors/utils/color-cache.d.ts +50 -0
  51. package/colors/utils/color-palette.service.d.ts +20 -0
  52. package/colors/utils/color-parser.d.ts +78 -0
  53. package/colors/utils/misc.d.ts +22 -0
  54. package/colors/utils/svg-calc.d.ts +69 -0
  55. package/dist/cdn/js/kendo-vue-inputs.js +1 -1
  56. package/index.d.mts +74 -5820
  57. package/index.d.ts +74 -5820
  58. package/input/Input.d.ts +378 -0
  59. package/input/InputBlurEvent.d.ts +16 -0
  60. package/input/InputFocusEvent.d.ts +16 -0
  61. package/input-separator/InputSeparator.d.ts +42 -0
  62. package/input-separator/interfaces/InputSeparatorOrientation.d.ts +15 -0
  63. package/interfaces/Direction.d.ts +8 -0
  64. package/interfaces/ToggleBaseProps.d.ts +15 -0
  65. package/maskedtextbox/MaskedTextBox.d.ts +269 -0
  66. package/maskedtextbox/MaskedTextBoxBlurEvent.d.ts +16 -0
  67. package/maskedtextbox/MaskedTextBoxFocusEvent.d.ts +16 -0
  68. package/maskedtextbox/MaskedTextBoxProps.d.ts +230 -0
  69. package/maskedtextbox/masking.service.d.ts +48 -0
  70. package/maskedtextbox/parsing/combinators.d.ts +16 -0
  71. package/maskedtextbox/parsing/parsers.d.ts +54 -0
  72. package/maskedtextbox/parsing/result.d.ts +30 -0
  73. package/maskedtextbox/parsing/stream.d.ts +29 -0
  74. package/maskedtextbox/utils.d.ts +23 -0
  75. package/messages/main.d.ts +212 -0
  76. package/numerictextbox/NumericTextBox.d.ts +264 -0
  77. package/numerictextbox/NumericTextBox.js +1 -1
  78. package/numerictextbox/NumericTextBox.mjs +2 -0
  79. package/numerictextbox/interfaces/NumericTextBoxBlurEvent.d.ts +16 -0
  80. package/numerictextbox/interfaces/NumericTextBoxData.d.ts +22 -0
  81. package/numerictextbox/interfaces/NumericTextBoxFocusEvent.d.ts +16 -0
  82. package/numerictextbox/interfaces/NumericTextBoxProps.d.ts +188 -0
  83. package/numerictextbox/utils/main.d.ts +126 -0
  84. package/package-metadata.d.ts +12 -0
  85. package/package-metadata.js +1 -1
  86. package/package-metadata.mjs +2 -2
  87. package/package.json +17 -11
  88. package/radiobutton/RadioButton.d.ts +94 -0
  89. package/radiobutton/RadioGroup.d.ts +97 -0
  90. package/radiobutton/interfaces/RadioButtonBlurEvent.d.ts +16 -0
  91. package/radiobutton/interfaces/RadioButtonChangeEvent.d.ts +16 -0
  92. package/radiobutton/interfaces/RadioButtonFocusEvent.d.ts +16 -0
  93. package/radiobutton/interfaces/RadioButtonProps.d.ts +120 -0
  94. package/radiobutton/interfaces/RadioGroupBlurEvent.d.ts +16 -0
  95. package/radiobutton/interfaces/RadioGroupChangeEvent.d.ts +16 -0
  96. package/radiobutton/interfaces/RadioGroupFocusEvent.d.ts +16 -0
  97. package/radiobutton/interfaces/RadioGroupProps.d.ts +86 -0
  98. package/range-slider/RangeSlider.d.ts +256 -0
  99. package/range-slider/range-raducer.d.ts +42 -0
  100. package/range-slider/range-raducer.js +1 -1
  101. package/range-slider/range-raducer.mjs +2 -2
  102. package/rating/Rating.d.ts +132 -0
  103. package/rating/RatingItem.d.ts +98 -0
  104. package/rating/interfaces/RatingBlurEvent.d.ts +16 -0
  105. package/rating/interfaces/RatingEvents.d.ts +54 -0
  106. package/rating/interfaces/RatingFocusEvent.d.ts +16 -0
  107. package/rating/interfaces/RatingItemProps.d.ts +99 -0
  108. package/rating/interfaces/RatingProps.d.ts +123 -0
  109. package/rating/utils/main.d.ts +31 -0
  110. package/rating/utils/rating-reducer.d.ts +39 -0
  111. package/signature/Signature.d.ts +219 -0
  112. package/signature/SignatureBottomActions.d.ts +35 -0
  113. package/signature/SignatureCanvas.d.ts +66 -0
  114. package/signature/SignatureDialog.d.ts +90 -0
  115. package/signature/SignatureLine.d.ts +12 -0
  116. package/signature/interfaces/SignatureBlurEvent.d.ts +12 -0
  117. package/signature/interfaces/SignatureCanvasProps.d.ts +23 -0
  118. package/signature/interfaces/SignatureChangeEvent.d.ts +16 -0
  119. package/signature/interfaces/SignatureCloseEvent.d.ts +12 -0
  120. package/signature/interfaces/SignatureFocusEvent.d.ts +12 -0
  121. package/signature/interfaces/SignatureHandle.d.ts +49 -0
  122. package/signature/interfaces/SignatureOpenEvent.d.ts +12 -0
  123. package/signature/interfaces/SignatureProps.d.ts +197 -0
  124. package/signature/interfaces/main.d.ts +14 -0
  125. package/signature/utils/main.d.ts +11 -0
  126. package/slider/Slider.d.ts +201 -0
  127. package/slider/SliderLabel.d.ts +57 -0
  128. package/slider/interfaces/SliderBlurEvent.d.ts +16 -0
  129. package/slider/interfaces/SliderFocusEvent.d.ts +16 -0
  130. package/switch/Switch.d.ts +318 -0
  131. package/switch/interfaces/SwitchBlurEvent.d.ts +16 -0
  132. package/switch/interfaces/SwitchFocusEvent.d.ts +16 -0
  133. package/switch/util.d.ts +15 -0
  134. package/textarea/TextArea.d.ts +237 -0
  135. package/textarea/interfaces/TextAreaBlurEvent.d.ts +24 -0
  136. package/textarea/interfaces/TextAreaChangeEvent.d.ts +16 -0
  137. package/textarea/interfaces/TextAreaFlow.d.ts +15 -0
  138. package/textarea/interfaces/TextAreaFocusEvent.d.ts +24 -0
  139. package/textarea/interfaces/TextAreaProps.d.ts +191 -0
  140. package/textarea/interfaces/TextAreaResize.d.ts +38 -0
  141. package/textbox/TextBox.d.ts +422 -0
  142. package/textbox/interfaces/TextBoxBlurEvent.d.ts +16 -0
  143. package/textbox/interfaces/TextBoxFocusEvent.d.ts +16 -0
@@ -0,0 +1,378 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { FormComponentProps } from '@progress/kendo-vue-common';
9
+ import { PropType } from 'vue';
10
+ import { InputFocusEvent } from './InputFocusEvent';
11
+ import { InputBlurEvent } from './InputBlurEvent';
12
+ /**
13
+ * Represents the props of the [KendoVue Input component]({% slug overview_textbox %}).
14
+ * Extends the [native input props](https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement).
15
+ */
16
+ export interface InputProps extends FormComponentProps {
17
+ /**
18
+ * Renders a floating label for the Input component.
19
+ */
20
+ id?: string;
21
+ label?: string;
22
+ value?: string | string[] | number;
23
+ modelValue?: string | number;
24
+ defaultValue?: string | string[] | number | undefined;
25
+ disabled?: boolean;
26
+ validate?: boolean;
27
+ /**
28
+ * Configures the `size` of the Input.
29
+ *
30
+ * The available options are:
31
+ * - small
32
+ * - medium
33
+ * - large
34
+ *
35
+ * @default undefined
36
+ */
37
+ size?: 'small' | 'medium' | 'large';
38
+ /**
39
+ * Configures the `roundness` of the Input.
40
+ *
41
+ * The available options are:
42
+ * - none
43
+ * - small
44
+ * - medium
45
+ * - large
46
+ * - full
47
+ *
48
+ * @default undefined
49
+ */
50
+ rounded?: 'none' | 'small' | 'medium' | 'large' | 'full';
51
+ /**
52
+ * Configures the `fillMode` of the Input.
53
+ *
54
+ * The available options are:
55
+ * - solid
56
+ * - outline
57
+ * - flat
58
+ *
59
+ * @default undefined
60
+ */
61
+ fillMode?: 'solid' | 'flat' | 'outline';
62
+ dir?: string;
63
+ /**
64
+ * Fires when the `change` event of the input is triggered.
65
+ */
66
+ onChange?: (event: any) => void;
67
+ /**
68
+ * Fires when the `input` event of the input is triggered.
69
+ */
70
+ onInput?: (event: any) => void;
71
+ /**
72
+ * Fires when the input is focused.
73
+ */
74
+ onFocus?: (event: any) => void;
75
+ /**
76
+ * Fires when the input is blurred.
77
+ */
78
+ onBlur?: (event: any) => void;
79
+ /**
80
+ * Fires when the 'keyup' input event is triggered.
81
+ */
82
+ onKeyup?: (event: any) => void;
83
+ /**
84
+ * Fires when the 'keydown' input event is triggered.
85
+ */
86
+ onKeydown?: (event: any) => void;
87
+ /**
88
+ * Fires when the 'keypress' input event is triggered.
89
+ */
90
+ onKeypress?: (event: any) => void;
91
+ /**
92
+ * Specifies the placeholder of an `input` element. Used to define if the input is empty.
93
+ */
94
+ placeholder?: string;
95
+ /**
96
+ * Defines a string prop that controls the input icon.
97
+ *
98
+ * @deprecated - From version 4.0.0 this functionality is moved in the Textbox component.
99
+ */
100
+ iconName?: string;
101
+ /**
102
+ * Defines if the inputPrefix will be shown. Accepts a slot name, a `render` function, or a Vue component.
103
+ *
104
+ * @deprecated - From version 4.0.0 this functionality is moved in the Textbox component.
105
+ */
106
+ inputPrefix?: boolean | string | object | Function;
107
+ /**
108
+ * Defines if the inputSuffix will be shown. Accepts a slot name, a `render` function, or a Vue component.
109
+ *
110
+ * @deprecated - From version 4.0.0 this functionality is moved in the Textbox component.
111
+ */
112
+ inputSuffix?: boolean | string | object | Function;
113
+ /**
114
+ * Defines a boolean prop that controls whether to show the validation icon. Defaults to 'false'.
115
+ *
116
+ * @deprecated - From version 4.0.0 this functionality is moved in the Textbox component.
117
+ */
118
+ showValidationIcon?: boolean;
119
+ /**
120
+ * Defines a boolean prop that controls whether to show the loading icon. Defaults to 'false'.
121
+ *
122
+ * @deprecated - From version 4.0.0 this functionality is moved in the Textbox component.
123
+ */
124
+ showLoadingIcon?: boolean;
125
+ /**
126
+ *
127
+ * Defines a boolean prop that controls whether to show the clear icon. Defaults to 'false'.
128
+ *
129
+ * @deprecated - From version 4.0.0 this functionality is moved in the Textbox component.
130
+ */
131
+ showClearButton?: boolean;
132
+ /**
133
+ * Defines additional class to the wrapper element.
134
+ *
135
+ * @deprecated - From version 4.0.0 this functionality is moved in the Textbox component.
136
+ */
137
+ wrapperClass?: string;
138
+ /**
139
+ * Defines tabindex to the input element.
140
+ */
141
+ tabIndex?: number;
142
+ /**
143
+ * Defines additional class to the input element.
144
+ */
145
+ inputClass?: string;
146
+ /**
147
+ * Defines a string value that labels an interactive element.
148
+ */
149
+ ariaLabel?: string;
150
+ /**
151
+ * Identifies the element(s) which will label the component.
152
+ */
153
+ ariaDescribedBy?: string;
154
+ /**
155
+ * Defines a string value that labels an interactive element.
156
+ */
157
+ ariaLabelledBy?: string;
158
+ /**
159
+ * Defines the built-in [minlength](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/minlength) property of the text inputs.
160
+ * * As the property is directly passed to the internal [input](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input) element, when defining it, it should be written as it is - `minlength`. Camel-case and kebap-case won't work in this scenario.
161
+ */
162
+ minlength?: string;
163
+ /**
164
+ * Defines the built-in [maxlength](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/maxlength) property of the text inputs.
165
+ * * As the property is directly passed to the internal [input](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input) element, when defining it, it should be written as it is - `maxlength`. Camel-case and kebap-case won't work in this scenario.
166
+ */
167
+ maxlength?: string;
168
+ }
169
+ /**
170
+ * @hidden
171
+ */
172
+ declare const Input: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
173
+ modelValue: {
174
+ type: PropType<string | number>;
175
+ default: any;
176
+ };
177
+ disabled: {
178
+ type: PropType<boolean>;
179
+ default: any;
180
+ };
181
+ defaultValue: {
182
+ type: PropType<string | number | string[]>;
183
+ default: string;
184
+ };
185
+ value: {
186
+ type: PropType<string | number | string[]>;
187
+ };
188
+ label: {
189
+ type: PropType<string>;
190
+ };
191
+ placeholder: {
192
+ type: PropType<string>;
193
+ };
194
+ required: {
195
+ type: PropType<boolean>;
196
+ default: boolean;
197
+ };
198
+ size: {
199
+ type: PropType<"small" | "medium" | "large">;
200
+ validator: (value: string) => boolean;
201
+ };
202
+ rounded: {
203
+ type: PropType<"small" | "medium" | "large" | "full" | "none">;
204
+ validator: (value: string) => boolean;
205
+ };
206
+ fillMode: {
207
+ type: PropType<"flat" | "solid" | "outline">;
208
+ validator: (value: string) => boolean;
209
+ };
210
+ dir: {
211
+ type: PropType<string>;
212
+ };
213
+ id: PropType<string>;
214
+ valid: {
215
+ type: PropType<boolean>;
216
+ default: any;
217
+ };
218
+ validate: {
219
+ type: PropType<boolean>;
220
+ };
221
+ validationMessage: {
222
+ type: PropType<string>;
223
+ };
224
+ validityStyles: {
225
+ type: PropType<boolean>;
226
+ default: boolean;
227
+ };
228
+ inputClass: PropType<string>;
229
+ tabIndex: PropType<number>;
230
+ ariaLabel: PropType<string>;
231
+ ariaLabelledBy: PropType<string>;
232
+ ariaDescribedBy: PropType<string>;
233
+ }>, {
234
+ inputRef: import('vue').Ref<any, any>;
235
+ }, {
236
+ hasMounted: boolean;
237
+ autofill: boolean;
238
+ currentValue: string | number | string[];
239
+ valueDuringOnChange: string;
240
+ focused: boolean;
241
+ }, {
242
+ spanClassNames(): {
243
+ 'k-floating-label-container': boolean;
244
+ 'k-focus': any;
245
+ 'k-empty': boolean;
246
+ 'k-autofill': any;
247
+ 'k-invalid': boolean;
248
+ 'k-rtl': boolean;
249
+ };
250
+ inputInnerClass(): {
251
+ [x: string]: any;
252
+ [x: number]: any;
253
+ 'k-input': boolean;
254
+ 'k-invalid': boolean;
255
+ 'k-required': any;
256
+ 'k-disabled': any;
257
+ };
258
+ computedValue(): any;
259
+ }, {
260
+ updateValidClass(): void;
261
+ emitFocus(e: FocusEvent): void;
262
+ emitBlur(e: FocusEvent): void;
263
+ handleKeydown(e: any): void;
264
+ handleKeyup(e: any): void;
265
+ handleKeypress(e: any): void;
266
+ clearClick(event: any): void;
267
+ focus(): void;
268
+ validity(): {
269
+ customError: boolean;
270
+ valid: any;
271
+ badInput: any;
272
+ patternMismatch: any;
273
+ rangeOverflow: any;
274
+ rangeUnderflow: any;
275
+ stepMismatch: any;
276
+ tooLong: any;
277
+ tooShort: any;
278
+ typeMismatch: any;
279
+ valueMissing: any;
280
+ };
281
+ isInvalid(state: Object): boolean;
282
+ setValidity(): void;
283
+ handleInput(event: any): void;
284
+ handleChange(event: any): void;
285
+ emitUpdate(event: any, eventName: string, value: any): void;
286
+ handleAutoFill(e: any): void;
287
+ handleAutoFillEnd(e: any): void;
288
+ name: () => any;
289
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
290
+ input: (event: any) => true;
291
+ change: (event: any) => true;
292
+ changemodel: (value: string | number) => true;
293
+ 'update:modelValue': (value: string | number) => true;
294
+ focus: (event: InputFocusEvent) => true;
295
+ blur: (event: InputBlurEvent) => true;
296
+ keyup: (event: KeyboardEvent) => true;
297
+ keydown: (event: KeyboardEvent) => true;
298
+ keypress: (event: KeyboardEvent) => true;
299
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
300
+ modelValue: {
301
+ type: PropType<string | number>;
302
+ default: any;
303
+ };
304
+ disabled: {
305
+ type: PropType<boolean>;
306
+ default: any;
307
+ };
308
+ defaultValue: {
309
+ type: PropType<string | number | string[]>;
310
+ default: string;
311
+ };
312
+ value: {
313
+ type: PropType<string | number | string[]>;
314
+ };
315
+ label: {
316
+ type: PropType<string>;
317
+ };
318
+ placeholder: {
319
+ type: PropType<string>;
320
+ };
321
+ required: {
322
+ type: PropType<boolean>;
323
+ default: boolean;
324
+ };
325
+ size: {
326
+ type: PropType<"small" | "medium" | "large">;
327
+ validator: (value: string) => boolean;
328
+ };
329
+ rounded: {
330
+ type: PropType<"small" | "medium" | "large" | "full" | "none">;
331
+ validator: (value: string) => boolean;
332
+ };
333
+ fillMode: {
334
+ type: PropType<"flat" | "solid" | "outline">;
335
+ validator: (value: string) => boolean;
336
+ };
337
+ dir: {
338
+ type: PropType<string>;
339
+ };
340
+ id: PropType<string>;
341
+ valid: {
342
+ type: PropType<boolean>;
343
+ default: any;
344
+ };
345
+ validate: {
346
+ type: PropType<boolean>;
347
+ };
348
+ validationMessage: {
349
+ type: PropType<string>;
350
+ };
351
+ validityStyles: {
352
+ type: PropType<boolean>;
353
+ default: boolean;
354
+ };
355
+ inputClass: PropType<string>;
356
+ tabIndex: PropType<number>;
357
+ ariaLabel: PropType<string>;
358
+ ariaLabelledBy: PropType<string>;
359
+ ariaDescribedBy: PropType<string>;
360
+ }>> & Readonly<{
361
+ onInput?: (event: any) => any;
362
+ onBlur?: (event: InputBlurEvent) => any;
363
+ onChange?: (event: any) => any;
364
+ onFocus?: (event: InputFocusEvent) => any;
365
+ onKeydown?: (event: KeyboardEvent) => any;
366
+ onKeypress?: (event: KeyboardEvent) => any;
367
+ onKeyup?: (event: KeyboardEvent) => any;
368
+ onChangemodel?: (value: string | number) => any;
369
+ "onUpdate:modelValue"?: (value: string | number) => any;
370
+ }>, {
371
+ required: boolean;
372
+ disabled: boolean;
373
+ modelValue: string | number;
374
+ defaultValue: string | number | string[];
375
+ valid: boolean;
376
+ validityStyles: boolean;
377
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
378
+ export { Input };
@@ -0,0 +1,16 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * The arguments for the `onBlur` event of the Input.
10
+ */
11
+ export interface InputBlurEvent {
12
+ /**
13
+ * The native browser blur event.
14
+ */
15
+ event: FocusEvent;
16
+ }
@@ -0,0 +1,16 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * The arguments for the `onFocus` event of the Input.
10
+ */
11
+ export interface InputFocusEvent {
12
+ /**
13
+ * The native browser focus event.
14
+ */
15
+ event: FocusEvent;
16
+ }
@@ -0,0 +1,42 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { InputSeparatorOrientation } from './interfaces/InputSeparatorOrientation';
9
+ /**
10
+ * Represents the Kendo UI for Vue InputSeparator component. It can be used as a separator
11
+ * between horizontal icons in prefix and suffix templates.
12
+ *
13
+ * ```jsx
14
+ * <template>
15
+ * <InputSeparator orientation="vertical" />
16
+ * </template>
17
+ * ```
18
+ */
19
+ declare const InputSeparator: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
20
+ /**
21
+ * Specifies the orientation of the InputSeparator.
22
+ *
23
+ * @default `vertical`
24
+ */
25
+ orientation: {
26
+ type: () => InputSeparatorOrientation;
27
+ default: InputSeparatorOrientation;
28
+ };
29
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
30
+ /**
31
+ * Specifies the orientation of the InputSeparator.
32
+ *
33
+ * @default `vertical`
34
+ */
35
+ orientation: {
36
+ type: () => InputSeparatorOrientation;
37
+ default: InputSeparatorOrientation;
38
+ };
39
+ }>> & Readonly<{}>, {
40
+ orientation: InputSeparatorOrientation;
41
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
42
+ export { InputSeparator };
@@ -0,0 +1,15 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * Specifies the orientation direction of the InputSeparator.
10
+ *
11
+ * The possible values are:
12
+ * * `vertical` (Default) &mdash; InputSeparator is displayed vertically.
13
+ * * `horizontal` &mdash; InputSeparator is displayed horizontally.
14
+ */
15
+ export type InputSeparatorOrientation = 'horizontal' | 'vertical';
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ export type Direction = 'ltr' | 'rtl';
@@ -0,0 +1,15 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * The props passed to the Checkbox and Switch components.
10
+ */
11
+ export interface ToggleBaseProps {
12
+ value?: any;
13
+ checked?: any;
14
+ defaultChecked?: any;
15
+ }