@progress/kendo-vue-inputs 8.0.3-develop.2 → 8.0.3-develop.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 (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,120 @@
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 { RadioButtonBlurEvent } from './RadioButtonBlurEvent';
9
+ import { RadioButtonChangeEvent } from './RadioButtonChangeEvent';
10
+ import { RadioButtonFocusEvent } from './RadioButtonFocusEvent';
11
+ /**
12
+ * Represents the props of the [Kendo UI for Vue RadioButton component]({% slug overview_radiobutton %}).
13
+ * Extends the [native input props](https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement).
14
+ */
15
+ export interface RadioButtonProps {
16
+ /**
17
+ * Identifies the element(s) which will describe the component, similar
18
+ * to [HTML aria-describedby attribute](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_aria-describedby_attribute).
19
+ * For example these elements could contain error or hint message.
20
+ */
21
+ ariaDescribedBy?: string;
22
+ /**
23
+ * Specifies if the Radio button is checked.
24
+ */
25
+ checked?: boolean;
26
+ /**
27
+ * Specifies the class applied to the input element.
28
+ */
29
+ className?: string;
30
+ /**
31
+ * Specifies if the Radio button is disabled.
32
+ */
33
+ disabled?: boolean;
34
+ /**
35
+ * @hidden
36
+ * Used in RadioGroup scenarios with a custom template to pass dataItem data to the template
37
+ */
38
+ dataItem?: object;
39
+ /**
40
+ * Specifies the current index of the Radio button.
41
+ */
42
+ index?: number;
43
+ /**
44
+ * Sets the `id` of the Radio button.
45
+ */
46
+ id?: string;
47
+ /**
48
+ * Sets the label of the Radio button ([see example]({% slug labels_radiobutton %})).
49
+ */
50
+ label?: string;
51
+ /**
52
+ * Sets the label render template of the Radio button component.
53
+ * Accepts a slot name, a `render` function, or a Vue component.
54
+ */
55
+ labelRender?: any;
56
+ /**
57
+ * Sets the item content template of the Radio button component.
58
+ * Accepts a slot name, a `render` function, or a Vue component.
59
+ */
60
+ content?: any;
61
+ /**
62
+ * Sets the item render template of the Radio button component.
63
+ * Accepts a slot name, a `render` function, or a Vue component.
64
+ */
65
+ item?: any;
66
+ /**
67
+ * Sets the label position of the Radio button ([see example]({% slug labels_radiobutton %})).
68
+ * Accepts two options: `before` or `after`. Defaults to `after`.
69
+ */
70
+ labelPlacement?: string;
71
+ /**
72
+ * Sets the `name` property of the Radio button.
73
+ */
74
+ name?: string;
75
+ /**
76
+ * Sets the `tag` property of the Radio button wrapping element.
77
+ */
78
+ tag?: string;
79
+ /**
80
+ * Configures the `size` of the RadioButton.
81
+ *
82
+ * The available options are:
83
+ * - small
84
+ * - medium
85
+ * - large
86
+ *
87
+ * @default undefined
88
+ */
89
+ size?: 'small' | 'medium' | 'large';
90
+ /**
91
+ * Sets the `tabIndex` property of the Radio button.
92
+ * Defaults to `0`.
93
+ */
94
+ tabIndex?: number;
95
+ /**
96
+ * Overrides the validity state of the component.
97
+ * If `valid` is set, the `required` property will be ignored.
98
+ */
99
+ valid?: boolean;
100
+ /**
101
+ * Sets the value to be submitted.
102
+ */
103
+ value?: any;
104
+ /**
105
+ * Represents the `role` HTML attribute.
106
+ */
107
+ role?: string;
108
+ /**
109
+ * The event handler that will be fired when the changes the selected value.
110
+ */
111
+ onChange?: (event: RadioButtonChangeEvent) => void;
112
+ /**
113
+ * The event handler that will be fired when RadioButton is focused.
114
+ */
115
+ onFocus?: (event: RadioButtonFocusEvent) => void;
116
+ /**
117
+ * The event handler that will be fired when RadioButton is blurred.
118
+ */
119
+ onBlur?: (event: RadioButtonBlurEvent) => void;
120
+ }
@@ -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 RadioGroup.
10
+ */
11
+ export interface RadioGroupBlurEvent {
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 `onChange` RadioGroup event.
10
+ */
11
+ export interface RadioGroupChangeEvent {
12
+ /**
13
+ * The value of the selected RadioButton.
14
+ */
15
+ value: any;
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` RadioGroup event.
10
+ */
11
+ export interface RadioGroupFocusEvent {
12
+ /**
13
+ * The native browser focus event.
14
+ */
15
+ event: FocusEvent;
16
+ }
@@ -0,0 +1,86 @@
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 { RadioButtonProps } from './RadioButtonProps';
9
+ import { RadioGroupFocusEvent } from './RadioGroupFocusEvent';
10
+ import { RadioGroupChangeEvent } from './RadioGroupChangeEvent';
11
+ /**
12
+ * Represents the props of the [Kendo UI for Vue RadioGroup component]({% slug overview_radiobutton %}).
13
+ */
14
+ export interface RadioGroupProps {
15
+ /**
16
+ * Identifies the element(s) which will describe the component, similar to HTML
17
+ * [aria-describedby](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_aria-describedby_attribute)
18
+ * attribute. For example these elements could contain error or hint message.
19
+ */
20
+ ariaDescribedBy?: string;
21
+ /**
22
+ * Identifies the element(s) which will label the component.
23
+ */
24
+ ariaLabelledBy?: string;
25
+ /**
26
+ * The collection of radio buttons that will
27
+ * be rendered in the RadioGroup ([see example]({% slug overview_radiobutton %})).
28
+ */
29
+ dataItems?: Array<RadioButtonProps>;
30
+ /**
31
+ * Sets the default checked state of a radio button when used in
32
+ * uncontrolled mode ([see example]({% slug overview_radiobutton %})).
33
+ * The `checked` property is passed to the underlying `input` element.
34
+ */
35
+ defaultValue?: any;
36
+ /**
37
+ * Represents the `dir` HTML attribute. This is used to switch from LTR to RTL.
38
+ */
39
+ dir?: string;
40
+ /**
41
+ * Disable all radio buttons ([see example]({% slug disabled_radiobutton %})).
42
+ */
43
+ disabled?: boolean;
44
+ /**
45
+ * Overrides the default component responsible for visualizing a single item.
46
+ *
47
+ * The default element is `li` with a [RadioButton]({% slug api_inputs_radiobuttonprops %}) as `children`.
48
+ */
49
+ item?: any;
50
+ /**
51
+ * Sets the label position of the radio buttons.
52
+ * Accepts two options: `before` or `after`. Defaults to `after`.
53
+ */
54
+ labelPlacement?: string;
55
+ /**
56
+ * Specifies the radio group layout 'horizontal' or 'vertical'. DEfault is 'horizontal'.
57
+ */
58
+ layout?: string;
59
+ /**
60
+ * Specifies the `name` property of the `input` DOM elements.
61
+ */
62
+ name?: string;
63
+ /**
64
+ * The event handler that will be fired when the changes the selected value.
65
+ */
66
+ onChange?: (event: RadioGroupChangeEvent) => void;
67
+ /**
68
+ * The event handler that will be fired when Radio button is focused.
69
+ */
70
+ onFocus?: (event: RadioGroupFocusEvent) => void;
71
+ /**
72
+ * @hidden
73
+ */
74
+ modelValue?: string | number | null;
75
+ /**
76
+ * Sets the default checked state of a radio
77
+ * button when used in controlled mode ([see example]({% slug controlled_radiogroup %})).
78
+ * The `checked` property is passed to the underlying `input` element.
79
+ */
80
+ value?: string | number | null;
81
+ /**
82
+ * Overrides the validity state of the component.
83
+ * If `valid` is set, the `required` property will be ignored.
84
+ */
85
+ valid?: boolean;
86
+ }
@@ -0,0 +1,256 @@
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, DraggableDragEvent } from '@progress/kendo-vue-common';
9
+ import { Direction } from '../interfaces/Direction';
10
+ /**
11
+ * The range object representing the value of the RangeSlider.
12
+ */
13
+ export type Range = {
14
+ /**
15
+ * The start of the range.
16
+ */
17
+ start: number;
18
+ /**
19
+ * The end of the range.
20
+ */
21
+ end: number;
22
+ };
23
+ /**
24
+ * Represents the properties of [RangeSlider](% slug api_inputs_rangeslider %) component.
25
+ */
26
+ export interface RangeSliderProps extends FormComponentProps {
27
+ /**
28
+ * Sets the `id` property of the top div element of the RangeSlider.
29
+ */
30
+ id?: string;
31
+ /**
32
+ * The flexible values of type Range - `start and `end`.
33
+ */
34
+ value?: Range;
35
+ /**
36
+ * The default set values of type Range - `start` and `end`.
37
+ */
38
+ defaultValue?: Range;
39
+ /**
40
+ * Triggered after value change - gets outside access to the element, new values and the event type.
41
+ */
42
+ onChange?: (event: RangeSliderChangeEvent) => void;
43
+ /**
44
+ * The step by which the value is increment/decrement.
45
+ */
46
+ step?: number;
47
+ /**
48
+ * The minimum possible value of the RangeSlider.
49
+ */
50
+ min: number;
51
+ /**
52
+ * The maximum possible value of the RangeSlider.
53
+ */
54
+ max: number;
55
+ /**
56
+ * The RangeSlider orientation if true - vertical, else - horizontal.
57
+ */
58
+ vertical?: boolean;
59
+ /**
60
+ * Determines the disabled mode of the RangeSlider, if true - disabled.
61
+ */
62
+ disabled?: boolean;
63
+ /**
64
+ * The RangeSlider direction `ltr` or `rtl`.
65
+ */
66
+ dir?: Direction | string;
67
+ /**
68
+ * Sets the `tabIndex` attribute to the `start` drag handle.
69
+ */
70
+ startTabIndex?: number;
71
+ /**
72
+ * Sets the `tabIndex` attribute to the `end` drag handle.
73
+ */
74
+ endTabIndex?: number;
75
+ /**
76
+ * 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).
77
+ * For example these elements could contain error or hint message.
78
+ */
79
+ ariaDescribedBy?: string;
80
+ /**
81
+ * Identifies the element(s) which will label the component.
82
+ */
83
+ ariaLabelledBy?: string;
84
+ }
85
+ /**
86
+ * Represents the target(element and props) of the RangeSliderChangeEvent.
87
+ */
88
+ export interface RangeSliderHandle {
89
+ /**
90
+ * The current element or `null` if there is no one.
91
+ */
92
+ element: HTMLDivElement | null;
93
+ /**
94
+ * The props values of the RangeSlider.
95
+ */
96
+ props: RangeSliderProps;
97
+ /**
98
+ * The focus event callback.
99
+ */
100
+ focus: () => void;
101
+ }
102
+ /**
103
+ * Represent the return type of RangeSliderChangeEvent.
104
+ */
105
+ export interface RangeSliderChangeEvent {
106
+ /**
107
+ * The value from type Range - `start` and `end`.
108
+ */
109
+ value: Range;
110
+ /**
111
+ * The target of the RangeSliderChangeEvent from RangeSliderHandle.
112
+ */
113
+ target: RangeSliderHandle;
114
+ /**
115
+ * The event of the RangeSliderChangeEvent.
116
+ */
117
+ event: any | DraggableDragEvent;
118
+ }
119
+ /**
120
+ * @hidden
121
+ */
122
+ export interface RangeSliderComputed {
123
+ [key: string]: any;
124
+ computedValue: any;
125
+ percentStart: number;
126
+ percentEnd: number;
127
+ sliderItemsStyle: object;
128
+ trackStyles: object;
129
+ }
130
+ /**
131
+ * Represents the [Kendo UI for Vue Native RangeSlider component]({% slug overview_rangeslider %}).
132
+ * Accepts properties of type [RangeSliderProps]({% slug api_inputs_rangesliderprops %}).
133
+ * Obtaining the `ref` returns an object of type [RangeSliderHandle]({% slug api_inputs_rangesliderhandle %}).
134
+ */
135
+ declare const RangeSlider: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
136
+ id: StringConstructor;
137
+ value: {
138
+ type: ObjectConstructor;
139
+ validator: (value: any) => boolean;
140
+ };
141
+ defaultValue: {
142
+ type: ObjectConstructor;
143
+ default: () => {
144
+ start: number;
145
+ end: number;
146
+ };
147
+ validator: (value: any) => boolean;
148
+ };
149
+ step: {
150
+ type: NumberConstructor;
151
+ default: number;
152
+ };
153
+ min: {
154
+ type: NumberConstructor;
155
+ required: true;
156
+ };
157
+ max: {
158
+ type: NumberConstructor;
159
+ required: true;
160
+ };
161
+ vertical: BooleanConstructor;
162
+ disabled: BooleanConstructor;
163
+ dir: {
164
+ type: StringConstructor;
165
+ default: string;
166
+ validator: (value: any) => any;
167
+ };
168
+ startTabIndex: NumberConstructor;
169
+ endTabIndex: NumberConstructor;
170
+ }>, {
171
+ inputRef: import('vue').Ref<any, any>;
172
+ kendoLocalizationService: {};
173
+ }, {
174
+ currentValue: Record<string, any>;
175
+ currentDrag: string;
176
+ currentDir: string;
177
+ }, {
178
+ computedValue(): any;
179
+ percentStart(): number;
180
+ percentEnd(): number;
181
+ sliderItemsStyle(): {
182
+ paddingTop: number;
183
+ height: string;
184
+ } | {
185
+ paddingTop?: undefined;
186
+ height?: undefined;
187
+ };
188
+ trackStyles(): {
189
+ marginTop: string;
190
+ marginBottom: string;
191
+ marginLeft?: undefined;
192
+ marginRight?: undefined;
193
+ } | {
194
+ marginLeft: string;
195
+ marginRight: string;
196
+ marginTop?: undefined;
197
+ marginBottom?: undefined;
198
+ };
199
+ }, {
200
+ dispatchStateValue(args: any): void;
201
+ focus(): void;
202
+ handleChange(newValue: any, event: any | DraggableDragEvent): void;
203
+ calcNewDistance(event: any): any;
204
+ calcKey(payload: any): "start" | "end";
205
+ handleStartKeyDown(event: any): void;
206
+ handleEndKeyDown(event: any): void;
207
+ handleTrackPress(event: any): void;
208
+ handleTrackDrag(event: any): void;
209
+ handleTrackRelease(event: any): void;
210
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
211
+ id: StringConstructor;
212
+ value: {
213
+ type: ObjectConstructor;
214
+ validator: (value: any) => boolean;
215
+ };
216
+ defaultValue: {
217
+ type: ObjectConstructor;
218
+ default: () => {
219
+ start: number;
220
+ end: number;
221
+ };
222
+ validator: (value: any) => boolean;
223
+ };
224
+ step: {
225
+ type: NumberConstructor;
226
+ default: number;
227
+ };
228
+ min: {
229
+ type: NumberConstructor;
230
+ required: true;
231
+ };
232
+ max: {
233
+ type: NumberConstructor;
234
+ required: true;
235
+ };
236
+ vertical: BooleanConstructor;
237
+ disabled: BooleanConstructor;
238
+ dir: {
239
+ type: StringConstructor;
240
+ default: string;
241
+ validator: (value: any) => any;
242
+ };
243
+ startTabIndex: NumberConstructor;
244
+ endTabIndex: NumberConstructor;
245
+ }>> & Readonly<{}>, {
246
+ vertical: boolean;
247
+ disabled: boolean;
248
+ defaultValue: Record<string, any>;
249
+ dir: string;
250
+ step: number;
251
+ }, {}, {}, {}, string, () => {
252
+ kendoMin: any;
253
+ kendoMax: any;
254
+ kendoVertical: any;
255
+ }, true, {}, any>;
256
+ export { RangeSlider };
@@ -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 { Range } from './RangeSlider';
9
+ import { DraggableDragEvent } from '@progress/kendo-vue-common';
10
+ /**
11
+ * @hidden
12
+ */
13
+ export declare enum RANGE_ACTION {
14
+ start = "start",
15
+ end = "end",
16
+ min = "min",
17
+ max = "max",
18
+ increase = "increase",
19
+ decrease = "decrease"
20
+ }
21
+ /**
22
+ * @hidden
23
+ */
24
+ export type RangeActionDispatch = {
25
+ type: RANGE_ACTION;
26
+ payload?: number;
27
+ key?: string;
28
+ event?: any | DraggableDragEvent;
29
+ state?: Range;
30
+ };
31
+ /**
32
+ * @hidden
33
+ */
34
+ export interface RangeAction extends RangeActionDispatch {
35
+ step: number;
36
+ min: number;
37
+ max: number;
38
+ }
39
+ /**
40
+ * @hidden
41
+ */
42
+ export declare const rangeReducer: (state: any, action: RangeAction) => any;
@@ -5,4 +5,4 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});let n=function(e){return e.start="start",e.end="end",e.min="min",e.max="max",e.increase="increase",e.decrease="decrease",e}({});const l=(e,r)=>{let d,m;switch(r.type){case n.start:if(r.payload===void 0)return e;d={start:r.payload>e.end?e.end:Math.max(r.payload,r.min),end:e.end};break;case n.end:if(r.payload===void 0)return e;d={start:e.start,end:r.payload<e.start?e.start:Math.min(r.payload,r.max)};break;case n.min:r.key==="start"?d={...e,start:r.min}:d={...e,end:Math.max(r.min,e.start)};break;case n.max:r.key==="start"?d={...e,start:Math.min(r.max,e.end)}:d={...e,end:r.max};break;case n.increase:if(r.step===void 0||r.key===void 0)return e;m=e[r.key]+r.step,r.key==="start"?m<r.min?d={...e,start:r.min}:d={...e,start:Math.min(m,e.end)}:m>r.max?d={...e,end:r.max}:d={...e,end:Math.max(m,e.start)};break;case n.decrease:if(r.step===void 0||r.key===void 0)return e;m=e[r.key]-r.step,r.key==="start"?m<r.min?d={...e,start:r.min}:d={...e,start:Math.min(m,e.end)}:m>r.max?d={...e,end:r.max}:d={...e,end:Math.max(m,e.start)};break;default:d=e;break}return d};exports.RANGE_ACTION=n;exports.rangeReducer=l;
8
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});let n=(function(e){return e.start="start",e.end="end",e.min="min",e.max="max",e.increase="increase",e.decrease="decrease",e})({});const l=(e,r)=>{let d,m;switch(r.type){case n.start:if(r.payload===void 0)return e;d={start:r.payload>e.end?e.end:Math.max(r.payload,r.min),end:e.end};break;case n.end:if(r.payload===void 0)return e;d={start:e.start,end:r.payload<e.start?e.start:Math.min(r.payload,r.max)};break;case n.min:r.key==="start"?d={...e,start:r.min}:d={...e,end:Math.max(r.min,e.start)};break;case n.max:r.key==="start"?d={...e,start:Math.min(r.max,e.end)}:d={...e,end:r.max};break;case n.increase:if(r.step===void 0||r.key===void 0)return e;m=e[r.key]+r.step,r.key==="start"?m<r.min?d={...e,start:r.min}:d={...e,start:Math.min(m,e.end)}:m>r.max?d={...e,end:r.max}:d={...e,end:Math.max(m,e.start)};break;case n.decrease:if(r.step===void 0||r.key===void 0)return e;m=e[r.key]-r.step,r.key==="start"?m<r.min?d={...e,start:r.min}:d={...e,start:Math.min(m,e.end)}:m>r.max?d={...e,end:r.max}:d={...e,end:Math.max(m,e.start)};break;default:d=e;break}return d};exports.RANGE_ACTION=n;exports.rangeReducer=l;
@@ -5,9 +5,9 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- let n = /* @__PURE__ */ function(e) {
8
+ let n = /* @__PURE__ */ (function(e) {
9
9
  return e.start = "start", e.end = "end", e.min = "min", e.max = "max", e.increase = "increase", e.decrease = "decrease", e;
10
- }({});
10
+ })({});
11
11
  const f = (e, r) => {
12
12
  let d, m;
13
13
  switch (r.type) {