@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,93 @@
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 { TileSize } from '../models/tile-size';
9
+ import { ColorPaletteChangeEvent } from './ColorPaletteChangeEvent';
10
+ /**
11
+ * Represents the props of the [KendoVue ColorPalette component]({% slug overview_colorpalette %}).
12
+ */
13
+ export interface ColorPaletteProps {
14
+ /**
15
+ * The color palette that will be displayed.
16
+ *
17
+ * The supported values are:
18
+ * * The name of the predefined palette preset (for example, `office`, `basic`, and `apex`).
19
+ * * A string array.
20
+ */
21
+ palette?: string[] | string;
22
+ /**
23
+ * Specifies the number of columns that will be displayed.
24
+ * Defaults to `10`.
25
+ */
26
+ columns?: number;
27
+ /**
28
+ * Specifies the size of a color cell in px.
29
+ * Defaults to `24`.
30
+ */
31
+ tileSize?: number | TileSize;
32
+ /**
33
+ * The default value of the ColorPalette.
34
+ */
35
+ defaultValue?: string;
36
+ /**
37
+ * The value of the ColorPalette.
38
+ */
39
+ value?: string;
40
+ /**
41
+ * The model value of the ColorPalette.
42
+ */
43
+ modelValue?: string;
44
+ /**
45
+ * The model rgba value of the ColorPalette.
46
+ */
47
+ modelRgbaValue?: string;
48
+ /**
49
+ * Determines whether the ColorPalette is disabled
50
+ * ([more information and example]({% slug disabled_colorpalette %})).
51
+ */
52
+ disabled?: boolean;
53
+ /**
54
+ * Sets the `tabIndex` property of the ColorPalette.
55
+ */
56
+ tabIndex?: number;
57
+ /**
58
+ * Specifies the id of the component.
59
+ */
60
+ id?: string;
61
+ /**
62
+ * Sets additional CSS classes to the ColorPalette.
63
+ */
64
+ class?: string;
65
+ /**
66
+ * 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).
67
+ * For example these elements could contain error or hint message.
68
+ */
69
+ ariaDescribedBy?: string;
70
+ /**
71
+ * Identifies the element(s) which will label the component.
72
+ */
73
+ ariaLabelledBy?: string;
74
+ /**
75
+ * Configures the `size` of the ColorPalette.
76
+ *
77
+ * The available options are:
78
+ * - `small`
79
+ * - `medium`
80
+ * - `large`
81
+ *
82
+ * @default undefined
83
+ */
84
+ size?: 'small' | 'medium' | 'large';
85
+ /**
86
+ * Determines the event handler that will be fired when the user edits the value.
87
+ */
88
+ onChange?: (event: ColorPaletteChangeEvent) => void;
89
+ /**
90
+ * Represent the focus event of the ColorPalette.
91
+ */
92
+ onFocus?: (event: FocusEvent) => void;
93
+ }
@@ -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 `onActiveColorClick` ColorPicker event.
10
+ */
11
+ export interface ColorPickerActiveColorClick {
12
+ /**
13
+ * The current value of the ColorPicker.
14
+ */
15
+ value: string;
16
+ /**
17
+ * The native Event from the DOM.
18
+ */
19
+ event: Event;
20
+ /**
21
+ * The ColorPicker component instance.
22
+ */
23
+ target?: any;
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 `onBlur` ColorPicker event.
10
+ */
11
+ export interface ColorPickerBlurEvent {
12
+ /**
13
+ * The native FocusEvent from the DOM.
14
+ */
15
+ event: FocusEvent;
16
+ }
@@ -0,0 +1,28 @@
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` ColorPicker event.
10
+ */
11
+ export interface ColorPickerChangeEvent {
12
+ /**
13
+ * The current value of the ColorPicker.
14
+ */
15
+ value: string;
16
+ /**
17
+ * The current value of the ColorPicker in RGBA format.
18
+ */
19
+ rgbaValue: string;
20
+ /**
21
+ * The event from the child component (ColorPalette or FlatColorPicker).
22
+ */
23
+ event: any;
24
+ /**
25
+ * The ColorPicker component instance.
26
+ */
27
+ target?: any;
28
+ }
@@ -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` ColorPicker event.
10
+ */
11
+ export interface ColorPickerFocusEvent {
12
+ /**
13
+ * The native FocusEvent from the DOM.
14
+ */
15
+ event: FocusEvent;
16
+ }
@@ -0,0 +1,39 @@
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 { TileSize } from '../models/tile-size';
9
+ /**
10
+ * The settings of the ColorPalette that is nested inside the popup of the ColorPicker
11
+ * ([see example]({% slug customizecolorpicker_colorpicker %}#toc-customizing-the-palette-popup)).
12
+ */
13
+ export interface ColorPickerPaletteSettings {
14
+ /**
15
+ * Specifies the set of colors.
16
+ * Provides a set of predefined palette presets (for example, `office`, `basic`, and `apex`)
17
+ * and enables you to implement a custom color palette.
18
+ * Defaults to the `office` preset.
19
+ *
20
+ * The supported values are:
21
+ * * The name of the predefined palette preset (for example, `office`, `basic`, and `apex`).
22
+ * * A string with comma-separated colors.
23
+ * * A string array.
24
+ */
25
+ palette?: string | Array<string>;
26
+ /**
27
+ * Specifies the number of columns that will be displayed.
28
+ * Defaults to `10`.
29
+ */
30
+ columns?: number;
31
+ /**
32
+ * Specifies the size of a color cell.
33
+ *
34
+ * The possible values are:
35
+ * * (Default) `24`
36
+ * * `{ width: number, height: number }`
37
+ */
38
+ tileSize?: number | TileSize;
39
+ }
@@ -0,0 +1,21 @@
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 { PopupAnimation } from '@progress/kendo-vue-popup';
9
+ /**
10
+ * The settings of the popup container of the ColorPicker.
11
+ */
12
+ export interface ColorPickerPopupSettings {
13
+ /**
14
+ * Controls the popup animation. By default, the open and close animations are enabled.
15
+ */
16
+ animate?: boolean | PopupAnimation;
17
+ /**
18
+ * Specifies a list of CSS classes that will be added to the Popup element.
19
+ */
20
+ className?: string | Array<string>;
21
+ }
@@ -0,0 +1,190 @@
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 { ColorPickerBlurEvent } from './ColorPickerBlurEvent';
9
+ import { ColorPickerFocusEvent } from './ColorPickerFocusEvent';
10
+ import { ColorPickerChangeEvent } from './ColorPickerChangeEvent';
11
+ import { ColorPickerActiveColorClick } from './ColorPickerActiveColorClick';
12
+ import { ColorPickerPopupSettings } from './ColorPickerPopupSettings';
13
+ import { ColorPickerPaletteSettings } from './ColorPickerPaletteSettings';
14
+ import { ColorPickerView } from './ColorPickerView';
15
+ import { ColorGradientProps } from './ColorGradientProps';
16
+ import { FlatColorPickerProps } from '../FlatColorPicker';
17
+ import { SVGIcon } from '@progress/kendo-vue-common';
18
+ /**
19
+ * Represents the props of the [Kendo UI for Vue ColorPicker component]({% slug overview_colorpicker %}).
20
+ */
21
+ export interface ColorPickerProps {
22
+ /**
23
+ * The default value of the ColorPicker
24
+ * ([see example]({% slug default_value_colorpicker %})).
25
+ */
26
+ defaultValue?: string;
27
+ /**
28
+ * Specifies the model value of the ColorPicker.
29
+ */
30
+ modelValue?: string;
31
+ /**
32
+ * The model rgba value of the ColorPicker.
33
+ */
34
+ modelRgbaValue?: string;
35
+ /**
36
+ * Specifies the value of the ColorPicker.
37
+ */
38
+ value?: string;
39
+ /**
40
+ * Overrides the validity state of the component.
41
+ * If `valid` is set, the `required` property will be ignored.
42
+ */
43
+ valid?: boolean;
44
+ /**
45
+ * Sets the disabled state of the ColorPicker
46
+ * ([see example]({% slug disabled_colorpicker %})).
47
+ */
48
+ disabled?: boolean;
49
+ /**
50
+ * Sets the `tabIndex` property of the ColorPicker.
51
+ * Defaults to `0`.
52
+ */
53
+ tabIndex?: number;
54
+ /**
55
+ * Sets the `title` property of the ColorPicker.
56
+ */
57
+ title?: string;
58
+ /**
59
+ * Sets the ColorPicker selected view index. The default is `0`.
60
+ */
61
+ selectedView?: number;
62
+ /**
63
+ * Sets the view which the ColorPicker will render in the popup
64
+ * ([see example]({% slug combinedview_colorpicker %})).
65
+ */
66
+ view?: ColorPickerView | string;
67
+ /**
68
+ * Represents the `dir` HTML attribute.
69
+ */
70
+ dir?: string;
71
+ /**
72
+ * Specifies whether clear button will be rendered in the header.
73
+ */
74
+ showClearButton?: boolean;
75
+ /**
76
+ * Specifies whether preview and revert color boxes will be rendered in the header.
77
+ */
78
+ showPreview?: boolean;
79
+ /**
80
+ * Specifies whether action buttons will be rendered in the footer.
81
+ */
82
+ showButtons?: boolean;
83
+ /**
84
+ * Defines the name of an [existing icon in the Kendo UI for Vue theme]({% slug icons %}).
85
+ * ([see example]({% slug customizecolorpicker_colorpicker %}#toc-displaying-kendo-ui-icons)).
86
+ */
87
+ icon?: string;
88
+ /**
89
+ * Defines an SVGIcon to be rendered within the ColorPicker button.
90
+ */
91
+ svgIcon?: SVGIcon;
92
+ /**
93
+ * The class name which displays an icon in the ColorPicker button
94
+ * ([see example]({% slug customizecolorpicker_colorpicker %}#toc-displaying-custom-icons)).
95
+ */
96
+ iconClassName?: string;
97
+ /**
98
+ * Configures the ColorPalette that is displayed in the ColorPicker popup
99
+ * ([see example]({% slug customizecolorpicker_colorpicker %}#toc-customizing-the-palette-popup)).
100
+ */
101
+ paletteSettings?: ColorPickerPaletteSettings;
102
+ /**
103
+ * Configures the ColorGradient that is displayed in the ColorPicker popup.
104
+ */
105
+ gradientSettings?: ColorGradientProps;
106
+ /**
107
+ * Configures the FlatColorPicker that is displayed in the ColorPicker popup.
108
+ */
109
+ flatColorPickerSettings?: FlatColorPickerProps;
110
+ /**
111
+ * Configures the popup of the ColorPicker.
112
+ */
113
+ popupSettings?: ColorPickerPopupSettings;
114
+ /**
115
+ * Sets the open and close state of the ColorPicker.
116
+ */
117
+ open?: boolean;
118
+ /**
119
+ * Specifies the id of the component.
120
+ */
121
+ id?: string;
122
+ /**
123
+ * 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).
124
+ * For example these elements could contain error or hint message.
125
+ */
126
+ ariaDescribedBy?: string;
127
+ /**
128
+ * Identifies the element(s) which will label the component.
129
+ */
130
+ ariaLabelledBy?: string;
131
+ /**
132
+ * The event handler that will be fired when the user edits the value.
133
+ */
134
+ onChange?: (event: ColorPickerChangeEvent) => void;
135
+ /**
136
+ * The event handler that will be fired when ColorPicker is focused.
137
+ */
138
+ onFocus?: (event: ColorPickerFocusEvent) => void;
139
+ /**
140
+ * The event handler that will be fired when ColorPicker is blurred.
141
+ */
142
+ onBlur?: (event: ColorPickerBlurEvent) => void;
143
+ /**
144
+ * The event handler that will be fired when the left side of the ColorPicker is clicked.
145
+ */
146
+ onActivecolorclick?: (event: ColorPickerActiveColorClick) => void;
147
+ /**
148
+ * Configures the `size` of the ColorPicker.
149
+ *
150
+ * The available options are:
151
+ * - small
152
+ * - medium
153
+ * - large
154
+ *
155
+ * @default undefined
156
+ */
157
+ size?: 'small' | 'medium' | 'large';
158
+ /**
159
+ * Configures the `roundness` of the ColorPicker.
160
+ *
161
+ * The available options are:
162
+ * - none
163
+ * - small
164
+ * - medium
165
+ * - large
166
+ * - full
167
+ *
168
+ * @default undefined
169
+ */
170
+ rounded?: 'none' | 'small' | 'medium' | 'large' | 'full';
171
+ /**
172
+ * Configures the `fillMode` of the ColorPicker.
173
+ *
174
+ * The available options are:
175
+ * - solid
176
+ * - outline
177
+ * - flat
178
+ *
179
+ * @default undefined
180
+ */
181
+ fillMode?: 'solid' | 'flat' | 'outline';
182
+ /**
183
+ * Providing different rendering of the popup element based on the screen dimensions.
184
+ */
185
+ adaptive?: boolean;
186
+ /**
187
+ * Specifies the text that is rendered as title in the adaptive popup.
188
+ */
189
+ adaptiveTitle?: string;
190
+ }
@@ -0,0 +1,17 @@
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 view which the ColorPicker will render in the popup
10
+ * ([see example]({% slug combinedview_colorpicker %})).
11
+ *
12
+ * The possible values are:
13
+ * * (Default) `palette`
14
+ * * `gradient`
15
+ * * `combo`
16
+ */
17
+ export type ColorPickerView = 'gradient' | 'palette' | 'combo';
@@ -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 FlatColorPicker.
10
+ */
11
+ export interface FlatColorPickerBlurEvent {
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 FlatColorPicker.
10
+ */
11
+ export interface FlatColorPickerFocusEvent {
12
+ /**
13
+ * The native browser focus 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 `onFocusout` event of the FlatColorPicker.
10
+ */
11
+ export interface FlatColorPickerFocusoutEvent {
12
+ /**
13
+ * The native browser focusout event.
14
+ */
15
+ event: FocusEvent;
16
+ }
@@ -0,0 +1,20 @@
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` ColorPicker event.
10
+ */
11
+ export interface FlatColorPickerViewChangeEvent {
12
+ /**
13
+ * The current value of the ColorPicker.
14
+ */
15
+ value: string;
16
+ /**
17
+ * The viewType of the selected view.
18
+ */
19
+ viewType: 'gradient' | 'palette';
20
+ }
@@ -0,0 +1,17 @@
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 HexInput.
10
+ * @hidden
11
+ */
12
+ export interface HexInputBlurEvent {
13
+ /**
14
+ * The native browser blur event.
15
+ */
16
+ event: FocusEvent;
17
+ }
@@ -0,0 +1,17 @@
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 HexInput.
10
+ * @hidden
11
+ */
12
+ export interface HexInputFocusEvent {
13
+ /**
14
+ * The native browser focus event.
15
+ */
16
+ event: FocusEvent;
17
+ }
@@ -0,0 +1,21 @@
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 { PopupAnimation } from '@progress/kendo-vue-popup';
9
+ /**
10
+ * @hidden
11
+ */
12
+ export interface PickerPopupSettings {
13
+ /**
14
+ * Controls the popup animation. By default, the open and close animations are enabled.
15
+ */
16
+ animate?: boolean | PopupAnimation;
17
+ /**
18
+ * Specifies a list of CSS classes that will be added to the Popup element.
19
+ */
20
+ className?: string | Array<string>;
21
+ }
@@ -0,0 +1,53 @@
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 { PickerPopupSettings } from './PickerPopupSettings';
9
+ /**
10
+ * @hidden
11
+ */
12
+ export interface PickerProps {
13
+ /**
14
+ * The popup settings.
15
+ */
16
+ popupSettings: PickerPopupSettings;
17
+ /**
18
+ * The rendered input element.
19
+ */
20
+ input?: any;
21
+ /**
22
+ * The rendered button element.
23
+ */
24
+ button?: any;
25
+ /**
26
+ * The content of the popup.
27
+ */
28
+ content?: any;
29
+ /**
30
+ * The `direction` CSS property of the popup content.
31
+ */
32
+ dir?: string;
33
+ /**
34
+ * The open state of the popup.
35
+ */
36
+ open: boolean;
37
+ /**
38
+ * Specifies the element which will be used as an anchor for the popup. The popup opens next to that element.
39
+ */
40
+ popupAnchor?: String;
41
+ /**
42
+ * Specifies the id for the popup.
43
+ */
44
+ id?: String;
45
+ /**
46
+ * @hidden
47
+ */
48
+ onOpen?: () => void;
49
+ /**
50
+ * @hidden
51
+ */
52
+ onClose?: () => void;
53
+ }
@@ -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
+ * @hidden
10
+ */
11
+ export interface HSVA {
12
+ h?: number;
13
+ s?: number;
14
+ v?: number;
15
+ a?: number;
16
+ }
@@ -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 type OutputFormat = 'hex' | 'rgba';