@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,318 @@
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, FormComponentValidity } from '@progress/kendo-vue-common';
9
+ import { ToggleBaseProps } from '../interfaces/ToggleBaseProps';
10
+ import { SwitchFocusEvent } from './interfaces/SwitchFocusEvent';
11
+ import { SwitchBlurEvent } from './interfaces/SwitchBlurEvent';
12
+ /**
13
+ * The arguments for the `onChange` Switch event.
14
+ */
15
+ export interface SwitchChangeEvent {
16
+ /**
17
+ * The new value of the Switch.
18
+ */
19
+ value: boolean;
20
+ }
21
+ /**
22
+ * Represents the props of the [Kendo UI for Vue Switch component]({% slug overview_switch %}).
23
+ */
24
+ export interface SwitchProps extends ToggleBaseProps, FormComponentProps {
25
+ /**
26
+ * Specifies the `name` of the Switch.
27
+ */
28
+ name?: string;
29
+ /**
30
+ * Specifies the `accessKey` of the Switch.
31
+ */
32
+ accessKey?: string;
33
+ /**
34
+ * Sets the current value of the Switch ([see example]({% slug controlled_switch %})).
35
+ */
36
+ checked?: boolean;
37
+ /**
38
+ * Sets the `className` of the wrapping element of the Switch.
39
+ */
40
+ className?: string;
41
+ /**
42
+ * Sets the value of the Switch when it is initially displayed ([see example]({% slug default_state %})).
43
+ */
44
+ defaultChecked?: boolean;
45
+ /**
46
+ * Sets the default value of the Switch.
47
+ */
48
+ defaultValue?: any;
49
+ /**
50
+ * Disables the Switch when set to `true` ([see example]({% slug disabled_switch %})).
51
+ */
52
+ disabled?: boolean;
53
+ /**
54
+ * Sets the `dir` property of the wrapping element of the Switch.
55
+ */
56
+ dir?: string;
57
+ /**
58
+ * Sets the `id` of the Switch.
59
+ */
60
+ id?: string;
61
+ /**
62
+ * Configures the `size` of the Switch.
63
+ *
64
+ * The available options are:
65
+ * - small
66
+ * - medium
67
+ * - large
68
+ *
69
+ * @default undefined
70
+ */
71
+ size?: 'small' | 'medium' | 'large';
72
+ /**
73
+ * Configures the `trackRounded` of the Switch.
74
+ *
75
+ * The available options are:
76
+ * - none
77
+ * - small
78
+ * - medium
79
+ * - large
80
+ * - full
81
+ *
82
+ * @default undefined
83
+ */
84
+ trackRounded?: 'none' | 'small' | 'medium' | 'large' | 'full';
85
+ /**
86
+ * Configures the `thumbRounded` of the Switch.
87
+ *
88
+ * The available options are:
89
+ * - none
90
+ * - small
91
+ * - medium
92
+ * - large
93
+ * - full
94
+ *
95
+ * @default undefined
96
+ */
97
+ thumbRounded?: 'none' | 'small' | 'medium' | 'large' | 'full';
98
+ /**
99
+ * Identifies the element(s) which will describe the component, similar to [HTML aria-describedby attribute](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_aria-describedby_attribute).
100
+ * For example these elements could contain error or hint message.
101
+ */
102
+ ariaDescribedBy?: string;
103
+ /**
104
+ * Identifies the element(s) which will label the component.
105
+ */
106
+ ariaLabelledBy?: string;
107
+ /**
108
+ * Changes the **Off** label([see example]({% slug labels_switch %})).
109
+ */
110
+ offLabel?: string;
111
+ /**
112
+ * Fires each time the Switch gets blurred.
113
+ */
114
+ onBlur?: (event: any) => void;
115
+ /**
116
+ * Fires each time the user selects a new value ([see example]({% slug controlled_switch %})).
117
+ */
118
+ onChange?: (event: SwitchChangeEvent) => void;
119
+ /**
120
+ * Fires each time the Switch component gets focused.
121
+ */
122
+ onFocus?: (event: any) => void;
123
+ /**
124
+ * Changes the **On** label ([see example]({% slug labels_switch %})).
125
+ */
126
+ onLabel?: string;
127
+ /**
128
+ * Specifies the [`tabIndex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
129
+ */
130
+ tabIndex?: number;
131
+ /**
132
+ * Sets the value of the Switch. It can either be of the primitive (string, number, boolean) or of the complex (array) type.
133
+ */
134
+ value?: string | number | string[] | boolean | null;
135
+ modelValue?: string | number | string[] | boolean | null;
136
+ }
137
+ /**
138
+ * Represents the [Kendo UI for Vue Native Switch component]({% slug overview_switch %}).
139
+ * Accepts properties of type [SwitchProps]({% slug api_inputs_switchprops %}).
140
+ */
141
+ declare const Switch: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
142
+ name: StringConstructor;
143
+ accessKey: StringConstructor;
144
+ checked: {
145
+ type: BooleanConstructor;
146
+ default: any;
147
+ };
148
+ className: StringConstructor;
149
+ disabled: {
150
+ type: BooleanConstructor;
151
+ default: boolean;
152
+ };
153
+ defaultChecked: {
154
+ type: BooleanConstructor;
155
+ default: boolean;
156
+ };
157
+ size: {
158
+ type: StringConstructor;
159
+ validator: (value: string) => boolean;
160
+ };
161
+ trackRounded: {
162
+ type: StringConstructor;
163
+ validator: (value: string) => boolean;
164
+ };
165
+ thumbRounded: {
166
+ type: StringConstructor;
167
+ validator: (value: string) => boolean;
168
+ };
169
+ dir: StringConstructor;
170
+ id: StringConstructor;
171
+ ariaLabelledBy: StringConstructor;
172
+ ariaDescribedBy: StringConstructor;
173
+ offLabel: {
174
+ type: StringConstructor;
175
+ default: string;
176
+ };
177
+ onLabel: {
178
+ type: StringConstructor;
179
+ default: string;
180
+ };
181
+ required: {
182
+ type: BooleanConstructor;
183
+ default: boolean;
184
+ };
185
+ tabIndex: NumberConstructor;
186
+ valid: BooleanConstructor;
187
+ validityStyles: {
188
+ type: BooleanConstructor;
189
+ default: boolean;
190
+ };
191
+ validationMessage: StringConstructor;
192
+ value: {
193
+ type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
194
+ default: any;
195
+ };
196
+ modelValue: {
197
+ type: BooleanConstructor;
198
+ default: any;
199
+ };
200
+ }>, {}, {
201
+ currentChecked: boolean;
202
+ valueDuringOnChange: any;
203
+ focused: boolean;
204
+ currentDir: any;
205
+ }, {
206
+ computedValue(): any;
207
+ switchClassName(): {
208
+ [x: string]: any;
209
+ 'k-switch': boolean;
210
+ 'k-switch-on': any;
211
+ 'k-switch-off': boolean;
212
+ 'k-focus': any;
213
+ 'k-disabled': any;
214
+ 'k-invalid': boolean;
215
+ };
216
+ switchTrackClass(): {
217
+ [x: string]: any;
218
+ 'k-switch-track': boolean;
219
+ };
220
+ switchThumbClass(): {
221
+ [x: string]: any;
222
+ 'k-switch-thumb': boolean;
223
+ };
224
+ }, {
225
+ focus(): void;
226
+ element(): HTMLSpanElement | null;
227
+ validity(): FormComponentValidity;
228
+ setValidity(): void;
229
+ limit(offset: number, drag: HTMLSpanElement, wrapper: HTMLSpanElement): number;
230
+ toggle(value: boolean, event: any): void;
231
+ handleClick(event: any): void;
232
+ handleKeyDown(event: any): void;
233
+ handleWrapperFocus(event: any): void;
234
+ handleWrapperBlur(event: any): void;
235
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
236
+ change: (event: SwitchChangeEvent) => true;
237
+ changemodel: (value: boolean) => true;
238
+ 'update:modelValue': (value: boolean) => true;
239
+ focus: (event: SwitchFocusEvent) => true;
240
+ blur: (event: SwitchBlurEvent) => true;
241
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
242
+ name: StringConstructor;
243
+ accessKey: StringConstructor;
244
+ checked: {
245
+ type: BooleanConstructor;
246
+ default: any;
247
+ };
248
+ className: StringConstructor;
249
+ disabled: {
250
+ type: BooleanConstructor;
251
+ default: boolean;
252
+ };
253
+ defaultChecked: {
254
+ type: BooleanConstructor;
255
+ default: boolean;
256
+ };
257
+ size: {
258
+ type: StringConstructor;
259
+ validator: (value: string) => boolean;
260
+ };
261
+ trackRounded: {
262
+ type: StringConstructor;
263
+ validator: (value: string) => boolean;
264
+ };
265
+ thumbRounded: {
266
+ type: StringConstructor;
267
+ validator: (value: string) => boolean;
268
+ };
269
+ dir: StringConstructor;
270
+ id: StringConstructor;
271
+ ariaLabelledBy: StringConstructor;
272
+ ariaDescribedBy: StringConstructor;
273
+ offLabel: {
274
+ type: StringConstructor;
275
+ default: string;
276
+ };
277
+ onLabel: {
278
+ type: StringConstructor;
279
+ default: string;
280
+ };
281
+ required: {
282
+ type: BooleanConstructor;
283
+ default: boolean;
284
+ };
285
+ tabIndex: NumberConstructor;
286
+ valid: BooleanConstructor;
287
+ validityStyles: {
288
+ type: BooleanConstructor;
289
+ default: boolean;
290
+ };
291
+ validationMessage: StringConstructor;
292
+ value: {
293
+ type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
294
+ default: any;
295
+ };
296
+ modelValue: {
297
+ type: BooleanConstructor;
298
+ default: any;
299
+ };
300
+ }>> & Readonly<{
301
+ onBlur?: (event: SwitchBlurEvent) => any;
302
+ onChange?: (event: SwitchChangeEvent) => any;
303
+ onFocus?: (event: SwitchFocusEvent) => any;
304
+ onChangemodel?: (value: boolean) => any;
305
+ "onUpdate:modelValue"?: (value: boolean) => any;
306
+ }>, {
307
+ required: boolean;
308
+ value: string | number | boolean;
309
+ disabled: boolean;
310
+ checked: boolean;
311
+ modelValue: boolean;
312
+ valid: boolean;
313
+ validityStyles: boolean;
314
+ defaultChecked: boolean;
315
+ offLabel: string;
316
+ onLabel: string;
317
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
318
+ export { Switch };
@@ -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` Switch event.
10
+ */
11
+ export interface SwitchBlurEvent {
12
+ /**
13
+ * The native FocusEvent from the DOM.
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` Switch event.
10
+ */
11
+ export interface SwitchFocusEvent {
12
+ /**
13
+ * The native FocusEvent from the DOM.
14
+ */
15
+ event: FocusEvent;
16
+ }
@@ -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
+ * @hidden
10
+ */
11
+ export declare const FRAME_DURATION: number;
12
+ /**
13
+ * @hidden
14
+ */
15
+ export declare const throttle: (func: Function, wait: number, options?: any) => (this: any) => any;
@@ -0,0 +1,237 @@
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 { TextAreaBlurEvent } from './interfaces/TextAreaBlurEvent';
9
+ import { TextAreaChangeEvent } from './interfaces/TextAreaChangeEvent';
10
+ import { TextAreaFocusEvent } from './interfaces/TextAreaFocusEvent';
11
+ import { PropType } from 'vue';
12
+ /**
13
+ * Represents the [Kendo UI for Vue Native TextArea component]({% slug overview_textarea %}).
14
+ *
15
+ * Accepts properties of type [TextAreaProps]({% slug api_inputs_textareaprops %}).
16
+ *
17
+ *
18
+ * ```jsx
19
+ * <template>
20
+ * <k-form
21
+ * @submit="handleSubmit">
22
+ * <formcontent />
23
+ * </k-form>
24
+ * </template>
25
+ * <script>
26
+ * import { Form } from "@progress/kendo-vue-form";
27
+ * import FormContent from './FormContent.vue';
28
+ *
29
+ * export default {
30
+ * components: {
31
+ * 'k-form': Form,
32
+ * 'formcontent': FormContent
33
+ * },
34
+ * methods: {
35
+ * handleSubmit (dataItem) {
36
+ * alert(JSON.stringify(dataItem, null, 2));
37
+ * }
38
+ * }
39
+ * };
40
+ *
41
+ * </script>
42
+ * ```
43
+ */
44
+ declare const TextArea: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
45
+ title: PropType<string>;
46
+ ariaDescribedBy: PropType<string>;
47
+ ariaLabelledBy: PropType<string>;
48
+ autoSize: PropType<boolean>;
49
+ modelValue: {
50
+ type: PropType<string | number | string[]>;
51
+ default: any;
52
+ };
53
+ defaultValue: PropType<string | number | string[]>;
54
+ dir: PropType<string>;
55
+ disabled: PropType<boolean>;
56
+ readOnly: PropType<boolean>;
57
+ rows: PropType<number>;
58
+ id: PropType<string>;
59
+ name: PropType<string>;
60
+ validationMessage: PropType<string>;
61
+ size: {
62
+ type: PropType<"small" | "medium" | "large">;
63
+ validator: (value: string) => boolean;
64
+ };
65
+ rounded: {
66
+ type: PropType<"small" | "medium" | "large" | "full" | "none">;
67
+ validator: (value: string) => boolean;
68
+ };
69
+ fillMode: {
70
+ type: PropType<"flat" | "solid" | "outline">;
71
+ validator: (value: string) => boolean;
72
+ };
73
+ required: PropType<boolean>;
74
+ placeholder: PropType<string>;
75
+ tabIndex: PropType<number>;
76
+ valid: {
77
+ type: PropType<boolean>;
78
+ default: any;
79
+ };
80
+ value: PropType<string | number | string[]>;
81
+ validityStyles: {
82
+ type: PropType<boolean>;
83
+ default: boolean;
84
+ };
85
+ iconName: PropType<string>;
86
+ inputPrefix: PropType<string | boolean | Object | Function>;
87
+ inputSuffix: PropType<string | boolean | Object | Function>;
88
+ showValidationIcon: PropType<boolean>;
89
+ showLoadingIcon: PropType<boolean>;
90
+ showClearButton: PropType<boolean>;
91
+ inputClass: PropType<string>;
92
+ wrapperClass: PropType<string>;
93
+ flow: {
94
+ type: PropType<string>;
95
+ default: string;
96
+ validator: (value: any) => any;
97
+ };
98
+ resizable: {
99
+ type: PropType<string>;
100
+ default: string;
101
+ validator: (value: any) => any;
102
+ };
103
+ inputAttributes: PropType<Object>;
104
+ }>, {}, {
105
+ currentValue: string | number | string[];
106
+ textAreaHeight: string;
107
+ currentDir: string;
108
+ }, {
109
+ resizableClass(): "k-resize-none" | "k-resize-y" | "k-resize-x" | "k-resize";
110
+ rootClassName(): {
111
+ [x: string]: any;
112
+ [x: number]: any;
113
+ 'k-input': boolean;
114
+ 'k-textarea': boolean;
115
+ 'k-disabled': any;
116
+ 'k-invalid': boolean;
117
+ 'k-required': any;
118
+ 'k-loading': any;
119
+ '!k-flex-col': boolean;
120
+ '!k-flex-row': boolean;
121
+ };
122
+ inputInnerClass(): {
123
+ [x: number]: any;
124
+ 'k-input-inner': boolean;
125
+ '!k-resize-none': boolean;
126
+ '!k-overflow-auto': boolean;
127
+ 'k-flex': boolean;
128
+ };
129
+ prefixRenderClass(): {
130
+ 'k-input-prefix': boolean;
131
+ '!k-align-items-start': boolean;
132
+ 'k-input-prefix-horizontal': boolean;
133
+ 'k-input-prefix-vertical': boolean;
134
+ };
135
+ suffixRenderClass(): {
136
+ 'k-input-suffix': boolean;
137
+ '!k-align-items-start': boolean;
138
+ 'k-input-suffix-horizontal': boolean;
139
+ 'k-input-suffix-vertical': boolean;
140
+ };
141
+ suffixIconWrapClass(): {
142
+ 'k-flex-wrap': boolean;
143
+ '!k-align-items-start': boolean;
144
+ };
145
+ computedValue(): any;
146
+ isValid(): any;
147
+ }, {
148
+ setValidity(): void;
149
+ clearClick(event: any): void;
150
+ focus(): void;
151
+ emitUpdate(event: any, eventName: string, value: any): void;
152
+ handleChange(event: any): void;
153
+ handleInput(event: any): void;
154
+ handleFocus(event: any): void;
155
+ handleBlur(event: any): void;
156
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
157
+ input: (event: Event) => true;
158
+ change: (event: TextAreaChangeEvent) => true;
159
+ changemodel: (value: string | string[] | number) => true;
160
+ 'update:modelValue': (value: string | string[] | number) => true;
161
+ focus: (event: TextAreaFocusEvent) => true;
162
+ blur: (event: TextAreaBlurEvent) => true;
163
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
164
+ title: PropType<string>;
165
+ ariaDescribedBy: PropType<string>;
166
+ ariaLabelledBy: PropType<string>;
167
+ autoSize: PropType<boolean>;
168
+ modelValue: {
169
+ type: PropType<string | number | string[]>;
170
+ default: any;
171
+ };
172
+ defaultValue: PropType<string | number | string[]>;
173
+ dir: PropType<string>;
174
+ disabled: PropType<boolean>;
175
+ readOnly: PropType<boolean>;
176
+ rows: PropType<number>;
177
+ id: PropType<string>;
178
+ name: PropType<string>;
179
+ validationMessage: PropType<string>;
180
+ size: {
181
+ type: PropType<"small" | "medium" | "large">;
182
+ validator: (value: string) => boolean;
183
+ };
184
+ rounded: {
185
+ type: PropType<"small" | "medium" | "large" | "full" | "none">;
186
+ validator: (value: string) => boolean;
187
+ };
188
+ fillMode: {
189
+ type: PropType<"flat" | "solid" | "outline">;
190
+ validator: (value: string) => boolean;
191
+ };
192
+ required: PropType<boolean>;
193
+ placeholder: PropType<string>;
194
+ tabIndex: PropType<number>;
195
+ valid: {
196
+ type: PropType<boolean>;
197
+ default: any;
198
+ };
199
+ value: PropType<string | number | string[]>;
200
+ validityStyles: {
201
+ type: PropType<boolean>;
202
+ default: boolean;
203
+ };
204
+ iconName: PropType<string>;
205
+ inputPrefix: PropType<string | boolean | Object | Function>;
206
+ inputSuffix: PropType<string | boolean | Object | Function>;
207
+ showValidationIcon: PropType<boolean>;
208
+ showLoadingIcon: PropType<boolean>;
209
+ showClearButton: PropType<boolean>;
210
+ inputClass: PropType<string>;
211
+ wrapperClass: PropType<string>;
212
+ flow: {
213
+ type: PropType<string>;
214
+ default: string;
215
+ validator: (value: any) => any;
216
+ };
217
+ resizable: {
218
+ type: PropType<string>;
219
+ default: string;
220
+ validator: (value: any) => any;
221
+ };
222
+ inputAttributes: PropType<Object>;
223
+ }>> & Readonly<{
224
+ onInput?: (event: Event) => any;
225
+ onBlur?: (event: TextAreaBlurEvent) => any;
226
+ onChange?: (event: TextAreaChangeEvent) => any;
227
+ onFocus?: (event: TextAreaFocusEvent) => any;
228
+ onChangemodel?: (value: string | number | string[]) => any;
229
+ "onUpdate:modelValue"?: (value: string | number | string[]) => any;
230
+ }>, {
231
+ flow: string;
232
+ modelValue: string | number | string[];
233
+ valid: boolean;
234
+ validityStyles: boolean;
235
+ resizable: string;
236
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
237
+ export { TextArea };
@@ -0,0 +1,24 @@
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` TextArea event.
10
+ */
11
+ export interface TextAreaBlurEvent {
12
+ /**
13
+ * The native FocusEvent from the DOM.
14
+ */
15
+ event: FocusEvent;
16
+ /**
17
+ * The TextArea component instance.
18
+ */
19
+ component?: any;
20
+ /**
21
+ * The name attribute of the textarea element.
22
+ */
23
+ name?: string;
24
+ }
@@ -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 `onChange` TextArea event.
10
+ */
11
+ export interface TextAreaChangeEvent {
12
+ /**
13
+ * The new value of the TextArea.
14
+ */
15
+ value: string;
16
+ }
@@ -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 flow direction of the TextArea sections.
10
+ *
11
+ * The possible values are:
12
+ * * `vertical`(Default) &mdash;TextArea sections are placed from top to bottom.
13
+ * * `horizontal`&mdash;TextArea sections are placed from left to right in `ltr`, and from right to left in `rtl` mode.
14
+ */
15
+ export type TextAreaFlow = 'horizontal' | 'vertical';
@@ -0,0 +1,24 @@
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` TextArea event.
10
+ */
11
+ export interface TextAreaFocusEvent {
12
+ /**
13
+ * The native FocusEvent from the DOM.
14
+ */
15
+ event: FocusEvent;
16
+ /**
17
+ * The TextArea component instance.
18
+ */
19
+ component?: any;
20
+ /**
21
+ * The name attribute of the textarea element.
22
+ */
23
+ name?: string;
24
+ }