@progress/kendo-vue-inputs 8.0.3-develop.1 → 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.
- package/checkbox/Checkbox.d.ts +193 -0
- package/checkbox/interfaces/CheckboxBlurEvent.d.ts +16 -0
- package/checkbox/interfaces/CheckboxChangeEvent.d.ts +16 -0
- package/checkbox/interfaces/CheckboxFocusEvent.d.ts +16 -0
- package/checkbox/interfaces/CheckboxProps.d.ts +120 -0
- package/colors/ColorContrastLabels.d.ts +27 -0
- package/colors/ColorContrastSvg.d.ts +30 -0
- package/colors/ColorGradient.d.ts +128 -0
- package/colors/ColorInput.d.ts +67 -0
- package/colors/ColorPalette.d.ts +112 -0
- package/colors/ColorPicker.d.ts +279 -0
- package/colors/ColorPicker.js +1 -1
- package/colors/ColorPicker.mjs +7 -6
- package/colors/FlatColorPicker.d.ts +286 -0
- package/colors/FlatColorPicker.mjs +3 -3
- package/colors/HexInput.d.ts +55 -0
- package/colors/Picker.d.ts +35 -0
- package/colors/common/ColorsAdaptiveMode.d.ts +47 -0
- package/colors/interfaces/ColorGradientBlurEvent.d.ts +16 -0
- package/colors/interfaces/ColorGradientChangeEvent.d.ts +28 -0
- package/colors/interfaces/ColorGradientFocusEvent.d.ts +16 -0
- package/colors/interfaces/ColorGradientProps.d.ts +95 -0
- package/colors/interfaces/ColorPaletteBlurEvent.d.ts +16 -0
- package/colors/interfaces/ColorPaletteChangeEvent.d.ts +28 -0
- package/colors/interfaces/ColorPaletteFocusEvent.d.ts +16 -0
- package/colors/interfaces/ColorPaletteProps.d.ts +93 -0
- package/colors/interfaces/ColorPickerActiveColorClick.d.ts +24 -0
- package/colors/interfaces/ColorPickerBlurEvent.d.ts +16 -0
- package/colors/interfaces/ColorPickerChangeEvent.d.ts +28 -0
- package/colors/interfaces/ColorPickerFocusEvent.d.ts +16 -0
- package/colors/interfaces/ColorPickerPaletteSettings.d.ts +39 -0
- package/colors/interfaces/ColorPickerPopupSettings.d.ts +21 -0
- package/colors/interfaces/ColorPickerProps.d.ts +190 -0
- package/colors/interfaces/ColorPickerView.d.ts +17 -0
- package/colors/interfaces/FlatColorPickerBlurEvent.d.ts +16 -0
- package/colors/interfaces/FlatColorPickerFocusEvent.d.ts +16 -0
- package/colors/interfaces/FlatColorPickerFocusoutEvent.d.ts +16 -0
- package/colors/interfaces/FlatColorPickerViewChangeEvent.d.ts +20 -0
- package/colors/interfaces/HexInputBlurEvent.d.ts +17 -0
- package/colors/interfaces/HexInputFocusEvent.d.ts +17 -0
- package/colors/interfaces/PickerPopupSettings.d.ts +21 -0
- package/colors/interfaces/PickerProps.d.ts +53 -0
- package/colors/models/hsva.d.ts +16 -0
- package/colors/models/output-format.d.ts +11 -0
- package/colors/models/palette-presets.d.ts +60 -0
- package/colors/models/rgb.d.ts +15 -0
- package/colors/models/rgba.d.ts +16 -0
- package/colors/models/table-cell.d.ts +14 -0
- package/colors/models/tile-size.d.ts +18 -0
- package/colors/utils/color-cache.d.ts +50 -0
- package/colors/utils/color-palette.service.d.ts +20 -0
- package/colors/utils/color-parser.d.ts +78 -0
- package/colors/utils/misc.d.ts +22 -0
- package/colors/utils/svg-calc.d.ts +69 -0
- package/dist/cdn/js/kendo-vue-inputs.js +1 -1
- package/index.d.mts +74 -5820
- package/index.d.ts +74 -5820
- package/input/Input.d.ts +378 -0
- package/input/InputBlurEvent.d.ts +16 -0
- package/input/InputFocusEvent.d.ts +16 -0
- package/input-separator/InputSeparator.d.ts +42 -0
- package/input-separator/interfaces/InputSeparatorOrientation.d.ts +15 -0
- package/interfaces/Direction.d.ts +8 -0
- package/interfaces/ToggleBaseProps.d.ts +15 -0
- package/maskedtextbox/MaskedTextBox.d.ts +269 -0
- package/maskedtextbox/MaskedTextBoxBlurEvent.d.ts +16 -0
- package/maskedtextbox/MaskedTextBoxFocusEvent.d.ts +16 -0
- package/maskedtextbox/MaskedTextBoxProps.d.ts +230 -0
- package/maskedtextbox/masking.service.d.ts +48 -0
- package/maskedtextbox/parsing/combinators.d.ts +16 -0
- package/maskedtextbox/parsing/parsers.d.ts +54 -0
- package/maskedtextbox/parsing/result.d.ts +30 -0
- package/maskedtextbox/parsing/stream.d.ts +29 -0
- package/maskedtextbox/utils.d.ts +23 -0
- package/messages/main.d.ts +212 -0
- package/numerictextbox/NumericTextBox.d.ts +264 -0
- package/numerictextbox/NumericTextBox.js +1 -1
- package/numerictextbox/NumericTextBox.mjs +2 -0
- package/numerictextbox/interfaces/NumericTextBoxBlurEvent.d.ts +16 -0
- package/numerictextbox/interfaces/NumericTextBoxData.d.ts +22 -0
- package/numerictextbox/interfaces/NumericTextBoxFocusEvent.d.ts +16 -0
- package/numerictextbox/interfaces/NumericTextBoxProps.d.ts +188 -0
- package/numerictextbox/utils/main.d.ts +126 -0
- package/package-metadata.d.ts +12 -0
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +17 -11
- package/radiobutton/RadioButton.d.ts +94 -0
- package/radiobutton/RadioGroup.d.ts +97 -0
- package/radiobutton/interfaces/RadioButtonBlurEvent.d.ts +16 -0
- package/radiobutton/interfaces/RadioButtonChangeEvent.d.ts +16 -0
- package/radiobutton/interfaces/RadioButtonFocusEvent.d.ts +16 -0
- package/radiobutton/interfaces/RadioButtonProps.d.ts +120 -0
- package/radiobutton/interfaces/RadioGroupBlurEvent.d.ts +16 -0
- package/radiobutton/interfaces/RadioGroupChangeEvent.d.ts +16 -0
- package/radiobutton/interfaces/RadioGroupFocusEvent.d.ts +16 -0
- package/radiobutton/interfaces/RadioGroupProps.d.ts +86 -0
- package/range-slider/RangeSlider.d.ts +256 -0
- package/range-slider/range-raducer.d.ts +42 -0
- package/range-slider/range-raducer.js +1 -1
- package/range-slider/range-raducer.mjs +2 -2
- package/rating/Rating.d.ts +132 -0
- package/rating/RatingItem.d.ts +98 -0
- package/rating/interfaces/RatingBlurEvent.d.ts +16 -0
- package/rating/interfaces/RatingEvents.d.ts +54 -0
- package/rating/interfaces/RatingFocusEvent.d.ts +16 -0
- package/rating/interfaces/RatingItemProps.d.ts +99 -0
- package/rating/interfaces/RatingProps.d.ts +123 -0
- package/rating/utils/main.d.ts +31 -0
- package/rating/utils/rating-reducer.d.ts +39 -0
- package/signature/Signature.d.ts +219 -0
- package/signature/SignatureBottomActions.d.ts +35 -0
- package/signature/SignatureCanvas.d.ts +66 -0
- package/signature/SignatureDialog.d.ts +90 -0
- package/signature/SignatureLine.d.ts +12 -0
- package/signature/interfaces/SignatureBlurEvent.d.ts +12 -0
- package/signature/interfaces/SignatureCanvasProps.d.ts +23 -0
- package/signature/interfaces/SignatureChangeEvent.d.ts +16 -0
- package/signature/interfaces/SignatureCloseEvent.d.ts +12 -0
- package/signature/interfaces/SignatureFocusEvent.d.ts +12 -0
- package/signature/interfaces/SignatureHandle.d.ts +49 -0
- package/signature/interfaces/SignatureOpenEvent.d.ts +12 -0
- package/signature/interfaces/SignatureProps.d.ts +197 -0
- package/signature/interfaces/main.d.ts +14 -0
- package/signature/utils/main.d.ts +11 -0
- package/slider/Slider.d.ts +201 -0
- package/slider/SliderLabel.d.ts +57 -0
- package/slider/interfaces/SliderBlurEvent.d.ts +16 -0
- package/slider/interfaces/SliderFocusEvent.d.ts +16 -0
- package/switch/Switch.d.ts +318 -0
- package/switch/interfaces/SwitchBlurEvent.d.ts +16 -0
- package/switch/interfaces/SwitchFocusEvent.d.ts +16 -0
- package/switch/util.d.ts +15 -0
- package/textarea/TextArea.d.ts +237 -0
- package/textarea/interfaces/TextAreaBlurEvent.d.ts +24 -0
- package/textarea/interfaces/TextAreaChangeEvent.d.ts +16 -0
- package/textarea/interfaces/TextAreaFlow.d.ts +15 -0
- package/textarea/interfaces/TextAreaFocusEvent.d.ts +24 -0
- package/textarea/interfaces/TextAreaProps.d.ts +191 -0
- package/textarea/interfaces/TextAreaResize.d.ts +38 -0
- package/textbox/TextBox.d.ts +422 -0
- package/textbox/interfaces/TextBoxBlurEvent.d.ts +16 -0
- package/textbox/interfaces/TextBoxFocusEvent.d.ts +16 -0
|
@@ -0,0 +1,197 @@
|
|
|
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 { SignatureChangeEvent } from './SignatureChangeEvent';
|
|
10
|
+
import { SignatureFocusEvent } from './SignatureFocusEvent';
|
|
11
|
+
import { SignatureBlurEvent } from './SignatureBlurEvent';
|
|
12
|
+
import { SignatureOpenEvent } from './SignatureOpenEvent';
|
|
13
|
+
import { SignatureCloseEvent } from './SignatureCloseEvent';
|
|
14
|
+
/**
|
|
15
|
+
* Represents the props of the [Kendo UI for Vue Signature component]({% slug overview_signature %}).
|
|
16
|
+
*/
|
|
17
|
+
export interface SignatureProps extends FormComponentProps {
|
|
18
|
+
/**
|
|
19
|
+
* Specifies the value of the Signature.
|
|
20
|
+
*
|
|
21
|
+
* The value is an image encoded as a [Data URL](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URLs).
|
|
22
|
+
*/
|
|
23
|
+
value?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Specifies the v-model.
|
|
26
|
+
*/
|
|
27
|
+
modelValue?: string;
|
|
28
|
+
/**
|
|
29
|
+
* Sets the `tabIndex` property of the Signature.
|
|
30
|
+
*/
|
|
31
|
+
tabIndex?: number;
|
|
32
|
+
/**
|
|
33
|
+
* Sets the `id` of the Signature DOM element.
|
|
34
|
+
*/
|
|
35
|
+
id?: string;
|
|
36
|
+
/**
|
|
37
|
+
* Represents the `dir` HTML attribute.
|
|
38
|
+
*/
|
|
39
|
+
dir?: string;
|
|
40
|
+
/**
|
|
41
|
+
* Specifies the name of the Signature input.
|
|
42
|
+
*/
|
|
43
|
+
name?: string;
|
|
44
|
+
/**
|
|
45
|
+
* 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).
|
|
46
|
+
* For example these elements could contain error or hint message.
|
|
47
|
+
*/
|
|
48
|
+
ariaDescribedBy?: string;
|
|
49
|
+
/**
|
|
50
|
+
* Identifies the element(s) which will label the component.
|
|
51
|
+
*/
|
|
52
|
+
ariaLabelledBy?: string;
|
|
53
|
+
/**
|
|
54
|
+
* The accessible label of the component.
|
|
55
|
+
*/
|
|
56
|
+
ariaLabel?: string;
|
|
57
|
+
/**
|
|
58
|
+
* Determines whether the Signature is in its read-only state.
|
|
59
|
+
*/
|
|
60
|
+
readOnly?: boolean;
|
|
61
|
+
/**
|
|
62
|
+
* Determines whether the Signature is in its disabled state.
|
|
63
|
+
*/
|
|
64
|
+
disabled?: boolean;
|
|
65
|
+
/**
|
|
66
|
+
* Configures the `size` of the Signature.
|
|
67
|
+
*
|
|
68
|
+
* The available options are:
|
|
69
|
+
* - small
|
|
70
|
+
* - medium
|
|
71
|
+
* - large
|
|
72
|
+
*
|
|
73
|
+
* @default undefined
|
|
74
|
+
*/
|
|
75
|
+
size?: 'small' | 'medium' | 'large';
|
|
76
|
+
/**
|
|
77
|
+
* Configures the `roundness` of the Signature.
|
|
78
|
+
*
|
|
79
|
+
* The available options are:
|
|
80
|
+
* - none
|
|
81
|
+
* - small
|
|
82
|
+
* - medium
|
|
83
|
+
* - large
|
|
84
|
+
*
|
|
85
|
+
* @default undefined
|
|
86
|
+
*/
|
|
87
|
+
rounded?: 'none' | 'small' | 'medium' | 'large' | 'full';
|
|
88
|
+
/**
|
|
89
|
+
* Configures the `fillMode` of the Signature.
|
|
90
|
+
*
|
|
91
|
+
* The available options are:
|
|
92
|
+
* - solid
|
|
93
|
+
* - outline
|
|
94
|
+
* - flat
|
|
95
|
+
*
|
|
96
|
+
* @default undefined
|
|
97
|
+
*/
|
|
98
|
+
fillMode?: 'solid' | 'flat' | 'outline';
|
|
99
|
+
/**
|
|
100
|
+
* The stroke color of the signature.
|
|
101
|
+
*
|
|
102
|
+
* Accepts CSS color names and hex values.
|
|
103
|
+
*
|
|
104
|
+
* The default value is determined by the theme `$kendo-input-text` variable.
|
|
105
|
+
*/
|
|
106
|
+
color?: string;
|
|
107
|
+
/**
|
|
108
|
+
* The background color of the signature.
|
|
109
|
+
*
|
|
110
|
+
* Accepts CSS color names and hex values.
|
|
111
|
+
*
|
|
112
|
+
* The default value is determined by the theme `$kendo-input-bg` variable.
|
|
113
|
+
*/
|
|
114
|
+
backgroundColor?: string;
|
|
115
|
+
/**
|
|
116
|
+
* The stroke width of the signature.
|
|
117
|
+
*
|
|
118
|
+
* @default 1
|
|
119
|
+
*/
|
|
120
|
+
strokeWidth?: number;
|
|
121
|
+
/**
|
|
122
|
+
* A flag indicating whether to smooth out signature lines.
|
|
123
|
+
*
|
|
124
|
+
* @default false
|
|
125
|
+
*/
|
|
126
|
+
smooth?: boolean;
|
|
127
|
+
/**
|
|
128
|
+
* A flag indicating if the signature can be maximized.
|
|
129
|
+
*
|
|
130
|
+
* @default true
|
|
131
|
+
*/
|
|
132
|
+
maximizable?: boolean;
|
|
133
|
+
/**
|
|
134
|
+
* Sets the open and close state of the Signature.
|
|
135
|
+
*/
|
|
136
|
+
open?: boolean;
|
|
137
|
+
/**
|
|
138
|
+
* The scale factor for the popup.
|
|
139
|
+
*
|
|
140
|
+
* The Signature width and height will be multiplied by the scale when showing the popup.
|
|
141
|
+
*
|
|
142
|
+
* @default 3
|
|
143
|
+
*/
|
|
144
|
+
popupScale?: number;
|
|
145
|
+
/**
|
|
146
|
+
* The scale factor for the exported image.
|
|
147
|
+
*
|
|
148
|
+
* The Signature width and height will be multiplied by the scale when converting the signature to an image.
|
|
149
|
+
*
|
|
150
|
+
* @default 2
|
|
151
|
+
*/
|
|
152
|
+
exportScale?: number;
|
|
153
|
+
/**
|
|
154
|
+
* A flag indicating whether the dotted line should be displayed in the background.
|
|
155
|
+
*
|
|
156
|
+
* @default false
|
|
157
|
+
*/
|
|
158
|
+
hideLine?: boolean;
|
|
159
|
+
/**
|
|
160
|
+
* Represents the input element `style` HTML attribute.
|
|
161
|
+
*/
|
|
162
|
+
inputStyle?: object;
|
|
163
|
+
/**
|
|
164
|
+
* Determines the event handler that will be fired when the user edits the value.
|
|
165
|
+
*/
|
|
166
|
+
onChange?: (event: SignatureChangeEvent) => void;
|
|
167
|
+
/**
|
|
168
|
+
* The event handler that will be fired when Signature is focused.
|
|
169
|
+
*/
|
|
170
|
+
onFocus?: (event: SignatureFocusEvent) => void;
|
|
171
|
+
/**
|
|
172
|
+
* The event handler that will be fired when Signature is blurred.
|
|
173
|
+
*/
|
|
174
|
+
onBlur?: (event: SignatureBlurEvent) => void;
|
|
175
|
+
/**
|
|
176
|
+
* The event handler that will be fired when Signature popup is open.
|
|
177
|
+
*/
|
|
178
|
+
onOpen?: (event: SignatureOpenEvent) => void;
|
|
179
|
+
/**
|
|
180
|
+
* The event handler that will be fired when Signature popup is closed.
|
|
181
|
+
*/
|
|
182
|
+
onClose?: (event: SignatureCloseEvent) => void;
|
|
183
|
+
/** @hidden */
|
|
184
|
+
maximized?: boolean;
|
|
185
|
+
/**
|
|
186
|
+
* The validation message of the component.
|
|
187
|
+
*/
|
|
188
|
+
validationMessage?: string;
|
|
189
|
+
/**
|
|
190
|
+
* The validity styles. Defaults to 'true'.
|
|
191
|
+
*/
|
|
192
|
+
validityStyles?: boolean;
|
|
193
|
+
/**
|
|
194
|
+
* The required state of the component.
|
|
195
|
+
*/
|
|
196
|
+
required?: boolean;
|
|
197
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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 { SignatureBlurEvent } from './SignatureBlurEvent';
|
|
9
|
+
export type { SignatureChangeEvent } from './SignatureChangeEvent';
|
|
10
|
+
export type { SignatureCloseEvent } from './SignatureCloseEvent';
|
|
11
|
+
export type { SignatureFocusEvent } from './SignatureFocusEvent';
|
|
12
|
+
export type { SignatureHandle } from './SignatureHandle';
|
|
13
|
+
export type { SignatureOpenEvent } from './SignatureOpenEvent';
|
|
14
|
+
export type { SignatureProps } from './SignatureProps';
|
|
@@ -0,0 +1,11 @@
|
|
|
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 function hasParent(element: any, parent: any): boolean;
|
|
@@ -0,0 +1,201 @@
|
|
|
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 { SliderFocusEvent } from './interfaces/SliderFocusEvent';
|
|
11
|
+
import { SliderBlurEvent } from './interfaces/SliderBlurEvent';
|
|
12
|
+
/**
|
|
13
|
+
* The arguments for the `change` Slider event.
|
|
14
|
+
*/
|
|
15
|
+
export interface SliderChangeEvent {
|
|
16
|
+
/**
|
|
17
|
+
* The current value of the Slider.
|
|
18
|
+
*/
|
|
19
|
+
value: number;
|
|
20
|
+
/**
|
|
21
|
+
* The native event.
|
|
22
|
+
*/
|
|
23
|
+
event: any;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Represents the props of the [Kendo UI for Vue Slider component]({% slug overview_slider %}).
|
|
27
|
+
*/
|
|
28
|
+
export interface SliderProps extends FormComponentProps {
|
|
29
|
+
/**
|
|
30
|
+
* The value of the Slider.
|
|
31
|
+
*/
|
|
32
|
+
value?: number;
|
|
33
|
+
/**
|
|
34
|
+
* @hidden
|
|
35
|
+
*/
|
|
36
|
+
modelValue?: number;
|
|
37
|
+
/**
|
|
38
|
+
* The default value of the Slider.
|
|
39
|
+
*/
|
|
40
|
+
defaultValue?: number;
|
|
41
|
+
/**
|
|
42
|
+
* The minimum value of the Slider.
|
|
43
|
+
*/
|
|
44
|
+
min: number;
|
|
45
|
+
/**
|
|
46
|
+
* The maximum value of the Slider.
|
|
47
|
+
*/
|
|
48
|
+
max: number;
|
|
49
|
+
/**
|
|
50
|
+
* Specifies the step of the value increase and decrease.
|
|
51
|
+
*/
|
|
52
|
+
step?: number;
|
|
53
|
+
/**
|
|
54
|
+
* Determines the event handler that will be fired when the user edits the value.
|
|
55
|
+
*/
|
|
56
|
+
onChange?: (event: SliderChangeEvent) => void;
|
|
57
|
+
/**
|
|
58
|
+
* Renders the arrow side buttons of the Slider if set to true.
|
|
59
|
+
*/
|
|
60
|
+
buttons?: boolean;
|
|
61
|
+
/**
|
|
62
|
+
* Specifies the [tabindex](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex)
|
|
63
|
+
* of the Slider.
|
|
64
|
+
*/
|
|
65
|
+
tabIndex?: number;
|
|
66
|
+
/**
|
|
67
|
+
* Determines whether the Slider is disabled.
|
|
68
|
+
*
|
|
69
|
+
*/
|
|
70
|
+
disabled?: boolean;
|
|
71
|
+
/**
|
|
72
|
+
* If `vertical` is set to `true`, the orientation of the Slider changes from horizontal to vertical
|
|
73
|
+
* ([see example]({% slug orientation_slider %})).
|
|
74
|
+
*/
|
|
75
|
+
vertical?: boolean;
|
|
76
|
+
/**
|
|
77
|
+
* Specifies the id of the component.
|
|
78
|
+
*/
|
|
79
|
+
id?: string;
|
|
80
|
+
/**
|
|
81
|
+
* 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).
|
|
82
|
+
* For example these elements could contain error or hint message.
|
|
83
|
+
*/
|
|
84
|
+
ariaDescribedBy?: string;
|
|
85
|
+
/**
|
|
86
|
+
* Identifies the element(s) which will label the component.
|
|
87
|
+
*/
|
|
88
|
+
ariaLabelledBy?: string;
|
|
89
|
+
/**
|
|
90
|
+
* Represents the `dir` HTML attribute.
|
|
91
|
+
*/
|
|
92
|
+
dir?: string;
|
|
93
|
+
/**
|
|
94
|
+
* Specifies the aria-label attribute of the Slider.
|
|
95
|
+
*/
|
|
96
|
+
ariaLabel?: string;
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* @hidden
|
|
100
|
+
*/
|
|
101
|
+
declare const Slider: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
102
|
+
modelValue: {
|
|
103
|
+
type: PropType<number>;
|
|
104
|
+
default: any;
|
|
105
|
+
};
|
|
106
|
+
defaultValue: {
|
|
107
|
+
type: PropType<number>;
|
|
108
|
+
default: any;
|
|
109
|
+
};
|
|
110
|
+
name: PropType<string>;
|
|
111
|
+
buttons: PropType<boolean>;
|
|
112
|
+
tabIndex: PropType<number>;
|
|
113
|
+
disabled: PropType<boolean>;
|
|
114
|
+
dir: PropType<string>;
|
|
115
|
+
step: PropType<number>;
|
|
116
|
+
min: {
|
|
117
|
+
type: PropType<number>;
|
|
118
|
+
required: true;
|
|
119
|
+
};
|
|
120
|
+
max: {
|
|
121
|
+
type: PropType<number>;
|
|
122
|
+
required: true;
|
|
123
|
+
};
|
|
124
|
+
value: PropType<number>;
|
|
125
|
+
vertical: PropType<boolean>;
|
|
126
|
+
id: PropType<string>;
|
|
127
|
+
ariaLabelledBy: PropType<string>;
|
|
128
|
+
ariaDescribedBy: PropType<string>;
|
|
129
|
+
ariaLabel: PropType<string>;
|
|
130
|
+
}>, {
|
|
131
|
+
inputRef: import('vue').Ref<any, any>;
|
|
132
|
+
kendoLocalizationService: {};
|
|
133
|
+
}, {
|
|
134
|
+
currentValue: any;
|
|
135
|
+
currentFocused: boolean;
|
|
136
|
+
currentDir: string;
|
|
137
|
+
}, {
|
|
138
|
+
computedValue(): number;
|
|
139
|
+
sliderTrack(): any;
|
|
140
|
+
}, {
|
|
141
|
+
focus(): void;
|
|
142
|
+
isLabel(target: any): boolean;
|
|
143
|
+
onFocus(event: any): void;
|
|
144
|
+
onBlur(event: any): void;
|
|
145
|
+
onKeyDown(e: any): void;
|
|
146
|
+
decrement(e: any): void;
|
|
147
|
+
increment(e: any): void;
|
|
148
|
+
dragStart(e: any): void;
|
|
149
|
+
dragOver(e: any): void;
|
|
150
|
+
drag(e: any): void;
|
|
151
|
+
change(e: any, value: number): void;
|
|
152
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
153
|
+
changemodel: (value: number) => true;
|
|
154
|
+
'update:modelValue': (value: number) => true;
|
|
155
|
+
change: (event: SliderChangeEvent) => true;
|
|
156
|
+
blur: (event: SliderBlurEvent) => true;
|
|
157
|
+
focus: (event: SliderFocusEvent) => true;
|
|
158
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
159
|
+
modelValue: {
|
|
160
|
+
type: PropType<number>;
|
|
161
|
+
default: any;
|
|
162
|
+
};
|
|
163
|
+
defaultValue: {
|
|
164
|
+
type: PropType<number>;
|
|
165
|
+
default: any;
|
|
166
|
+
};
|
|
167
|
+
name: PropType<string>;
|
|
168
|
+
buttons: PropType<boolean>;
|
|
169
|
+
tabIndex: PropType<number>;
|
|
170
|
+
disabled: PropType<boolean>;
|
|
171
|
+
dir: PropType<string>;
|
|
172
|
+
step: PropType<number>;
|
|
173
|
+
min: {
|
|
174
|
+
type: PropType<number>;
|
|
175
|
+
required: true;
|
|
176
|
+
};
|
|
177
|
+
max: {
|
|
178
|
+
type: PropType<number>;
|
|
179
|
+
required: true;
|
|
180
|
+
};
|
|
181
|
+
value: PropType<number>;
|
|
182
|
+
vertical: PropType<boolean>;
|
|
183
|
+
id: PropType<string>;
|
|
184
|
+
ariaLabelledBy: PropType<string>;
|
|
185
|
+
ariaDescribedBy: PropType<string>;
|
|
186
|
+
ariaLabel: PropType<string>;
|
|
187
|
+
}>> & Readonly<{
|
|
188
|
+
onBlur?: (event: SliderBlurEvent) => any;
|
|
189
|
+
onChange?: (event: SliderChangeEvent) => any;
|
|
190
|
+
onFocus?: (event: SliderFocusEvent) => any;
|
|
191
|
+
onChangemodel?: (value: number) => any;
|
|
192
|
+
"onUpdate:modelValue"?: (value: number) => any;
|
|
193
|
+
}>, {
|
|
194
|
+
modelValue: number;
|
|
195
|
+
defaultValue: number;
|
|
196
|
+
}, {}, {}, {}, string, () => {
|
|
197
|
+
kendoMin: any;
|
|
198
|
+
kendoMax: any;
|
|
199
|
+
kendoVertical: any;
|
|
200
|
+
}, true, {}, any>;
|
|
201
|
+
export { Slider };
|
|
@@ -0,0 +1,57 @@
|
|
|
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 SLIDER_LABEL_ATTRIBUTE = "data-slider-label";
|
|
12
|
+
/**
|
|
13
|
+
* Represents the props of the Kendo UI for Vue SliderLabel component.
|
|
14
|
+
*/
|
|
15
|
+
export interface SliderLabelProps {
|
|
16
|
+
/**
|
|
17
|
+
* The position in relative to the start of the SliderLabel component.
|
|
18
|
+
*/
|
|
19
|
+
position: number;
|
|
20
|
+
/**
|
|
21
|
+
* The onClick event of the SliderLabel component.
|
|
22
|
+
*/
|
|
23
|
+
onClick?: (event: any) => void;
|
|
24
|
+
/**
|
|
25
|
+
* The title of the SliderLabel component.
|
|
26
|
+
*/
|
|
27
|
+
title?: string;
|
|
28
|
+
/**
|
|
29
|
+
* @hidden
|
|
30
|
+
*/
|
|
31
|
+
vertical?: boolean;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Represents the Kendo UI for Vue Native SliderLabel component.
|
|
35
|
+
* ### props <span class='code'>[SliderLabelProps]({% slug api_inputs_sliderlabelprops %})</span>
|
|
36
|
+
* The props of the SliderLabel component.
|
|
37
|
+
*/
|
|
38
|
+
declare const SliderLabel: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
39
|
+
position: NumberConstructor;
|
|
40
|
+
title: StringConstructor;
|
|
41
|
+
vertical: BooleanConstructor;
|
|
42
|
+
}>, {}, {
|
|
43
|
+
currentDir: string;
|
|
44
|
+
}, {}, {
|
|
45
|
+
onClick(event: any): void;
|
|
46
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
47
|
+
click: any;
|
|
48
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
49
|
+
position: NumberConstructor;
|
|
50
|
+
title: StringConstructor;
|
|
51
|
+
vertical: BooleanConstructor;
|
|
52
|
+
}>> & Readonly<{
|
|
53
|
+
onClick?: (...args: any[] | unknown[]) => any;
|
|
54
|
+
}>, {
|
|
55
|
+
vertical: boolean;
|
|
56
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
57
|
+
export { SliderLabel };
|
|
@@ -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` Slider event.
|
|
10
|
+
*/
|
|
11
|
+
export interface SliderBlurEvent {
|
|
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` Slider event.
|
|
10
|
+
*/
|
|
11
|
+
export interface SliderFocusEvent {
|
|
12
|
+
/**
|
|
13
|
+
* The native FocusEvent from the DOM.
|
|
14
|
+
*/
|
|
15
|
+
event: FocusEvent;
|
|
16
|
+
}
|