@progress/kendo-angular-inputs 22.1.0-develop.9 → 23.0.0-develop.10
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.component.d.ts +1 -3
- package/checkbox/checkbox.directive.d.ts +3 -7
- package/colorpicker/color-gradient.component.d.ts +3 -4
- package/colorpicker/color-input.component.d.ts +1 -2
- package/colorpicker/color-palette.component.d.ts +2 -3
- package/colorpicker/colorpicker.component.d.ts +5 -11
- package/colorpicker/flatcolorpicker.component.d.ts +2 -3
- package/common/models/fillmode.d.ts +1 -2
- package/common/models/rounded.d.ts +0 -2
- package/common/models/size.d.ts +1 -2
- package/common/radio-checkbox.base.d.ts +1 -2
- package/common/utils.d.ts +1 -0
- package/fesm2022/progress-kendo-angular-inputs.mjs +530 -632
- package/formfield/models/show-options.d.ts +1 -1
- package/maskedtextbox/maskedtextbox.component.d.ts +12 -15
- package/numerictextbox/constants.d.ts +2 -2
- package/numerictextbox/numerictextbox.component.d.ts +16 -22
- package/otpinput/otpinput.component.d.ts +3 -9
- package/package-metadata.mjs +2 -2
- package/package.json +13 -13
- package/radiobutton/radiobutton.directive.d.ts +1 -3
- package/rating/directives/rating-hovered-item.directive.d.ts +1 -1
- package/rating/directives/rating-item.directive.d.ts +1 -1
- package/rating/directives/rating-selected-item.directive.d.ts +1 -1
- package/rating/models/selection.d.ts +1 -1
- package/rating/rating.component.d.ts +10 -10
- package/shared/input-separator.component.d.ts +2 -2
- package/signature/signature.component.d.ts +5 -11
- package/slider/slider.component.d.ts +4 -4
- package/sliders-common/slider-base.d.ts +10 -10
- package/sliders-common/title-callback.d.ts +1 -1
- package/switch/switch.component.d.ts +11 -17
- package/text-fields-common/text-fields-base.d.ts +1 -1
- package/textarea/models/textarea-settings.d.ts +1 -1
- package/textarea/textarea.component.d.ts +4 -7
- package/textarea/textarea.directive.d.ts +1 -1
- package/textbox/models/icon-show-options.d.ts +1 -1
- package/textbox/textbox-prefix.directive.d.ts +1 -1
- package/textbox/textbox-suffix.directive.d.ts +1 -1
- package/textbox/textbox.component.d.ts +7 -10
- package/textbox/textbox.directive.d.ts +1 -1
|
@@ -35,9 +35,7 @@ export declare class CheckBoxComponent extends RadioCheckBoxBase implements Cont
|
|
|
35
35
|
get checkedState(): CheckBoxState;
|
|
36
36
|
/**
|
|
37
37
|
* Sets the `rounded` property to specify the border radius of the CheckBox
|
|
38
|
-
* ([see example](
|
|
39
|
-
*
|
|
40
|
-
* @default 'medium'
|
|
38
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/checkbox/appearance#roundness)). The default value is set by the Kendo theme.
|
|
41
39
|
*/
|
|
42
40
|
set rounded(rounded: CheckBoxRounded);
|
|
43
41
|
get rounded(): CheckBoxRounded;
|
|
@@ -6,7 +6,7 @@ import { ElementRef, Renderer2 } from '@angular/core';
|
|
|
6
6
|
import { CheckBoxRounded, InputSize } from '../common/models';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
|
-
* Renders the [Kendo UI CheckBox](
|
|
9
|
+
* Renders the [Kendo UI CheckBox](https://www.telerik.com/kendo-angular-ui/components/inputs/checkbox) input component.
|
|
10
10
|
* Apply this directive to `input type="checkbox"` HTML elements.
|
|
11
11
|
*
|
|
12
12
|
* @example
|
|
@@ -21,17 +21,13 @@ export declare class CheckBoxDirective {
|
|
|
21
21
|
get isDisabled(): boolean;
|
|
22
22
|
/**
|
|
23
23
|
* Sets the `size` property to specify the width and height of the CheckBox
|
|
24
|
-
* ([see example](
|
|
25
|
-
*
|
|
26
|
-
* @default 'medium'
|
|
24
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/checkbox/appearance#size)). The default value is set by the Kendo theme.
|
|
27
25
|
*/
|
|
28
26
|
set size(size: InputSize);
|
|
29
27
|
get size(): InputSize;
|
|
30
28
|
/**
|
|
31
29
|
* Sets the `rounded` property to specify the border radius of the CheckBox
|
|
32
|
-
* ([see example](
|
|
33
|
-
*
|
|
34
|
-
* @default 'medium'
|
|
30
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/checkbox/appearance#roundness)). The default value is set by the Kendo theme.
|
|
35
31
|
*
|
|
36
32
|
*/
|
|
37
33
|
set rounded(rounded: CheckBoxRounded);
|
|
@@ -68,14 +68,13 @@ export declare class ColorGradientComponent implements OnInit, OnChanges, OnDest
|
|
|
68
68
|
*/
|
|
69
69
|
opacity: boolean;
|
|
70
70
|
/**
|
|
71
|
-
* Sets the size of the ColorGradient internal elements.
|
|
71
|
+
* Sets the size of the ColorGradient internal elements. The default value is set by the Kendo theme.
|
|
72
72
|
*
|
|
73
|
-
* @default 'medium'
|
|
74
73
|
*/
|
|
75
74
|
set size(size: InputSize);
|
|
76
75
|
get size(): InputSize;
|
|
77
76
|
/**
|
|
78
|
-
* Disables the ColorGradient. To disable it in reactive forms, see [Forms Support](
|
|
77
|
+
* Disables the ColorGradient. To disable it in reactive forms, see [Forms Support](https://www.telerik.com/kendo-angular-ui/components/inputs/colorgradient/forms#managing-the-colorgradient-disabled-state-in-reactive-forms).
|
|
79
78
|
*
|
|
80
79
|
* @default false
|
|
81
80
|
*/
|
|
@@ -104,7 +103,7 @@ export declare class ColorGradientComponent implements OnInit, OnChanges, OnDest
|
|
|
104
103
|
set value(value: string);
|
|
105
104
|
get value(): string;
|
|
106
105
|
/**
|
|
107
|
-
* Enables the color contrast tool that checks the contrast ratio of the selected color against a predefined background color. [See example](
|
|
106
|
+
* Enables the color contrast tool that checks the contrast ratio of the selected color against a predefined background color. [See example](https://www.telerik.com/kendo-angular-ui/components/inputs/colorgradient/contrast-tool).
|
|
108
107
|
*/
|
|
109
108
|
set contrastTool(value: string);
|
|
110
109
|
get contrastTool(): string;
|
|
@@ -26,9 +26,8 @@ export declare class ColorInputComponent implements AfterViewInit, OnChanges {
|
|
|
26
26
|
*/
|
|
27
27
|
formatView: string;
|
|
28
28
|
/**
|
|
29
|
-
* Sets the size of the ColorInput.
|
|
29
|
+
* Sets the size of the ColorInput. The default value is set by the Kendo theme.
|
|
30
30
|
*
|
|
31
|
-
* @default 'medium'
|
|
32
31
|
*/
|
|
33
32
|
size: InputSize;
|
|
34
33
|
/**
|
|
@@ -74,9 +74,8 @@ export declare class ColorPaletteComponent implements OnInit, AfterViewInit, OnD
|
|
|
74
74
|
set palette(value: string | Array<string>);
|
|
75
75
|
get palette(): string | Array<string>;
|
|
76
76
|
/**
|
|
77
|
-
* Sets the size of the ColorPalette internal elements.
|
|
77
|
+
* Sets the size of the ColorPalette internal elements. The default value is set by the Kendo theme.
|
|
78
78
|
*
|
|
79
|
-
* @default 'medium'
|
|
80
79
|
*/
|
|
81
80
|
set size(size: InputSize);
|
|
82
81
|
get size(): InputSize;
|
|
@@ -88,7 +87,7 @@ export declare class ColorPaletteComponent implements OnInit, AfterViewInit, OnD
|
|
|
88
87
|
set tabindex(value: number);
|
|
89
88
|
get tabindex(): number;
|
|
90
89
|
/**
|
|
91
|
-
* Disables the ColorPalette. To disable it in reactive forms, see [Forms Support](
|
|
90
|
+
* Disables the ColorPalette. To disable it in reactive forms, see [Forms Support](https://www.telerik.com/kendo-angular-ui/components/inputs/colorpalette/forms#managing-the-colorpalette-disabled-state-in-reactive-forms).
|
|
92
91
|
*/
|
|
93
92
|
disabled: boolean;
|
|
94
93
|
/**
|
|
@@ -78,7 +78,7 @@ export declare class ColorPickerComponent implements OnInit, AfterViewInit, OnCh
|
|
|
78
78
|
*/
|
|
79
79
|
readonly: boolean;
|
|
80
80
|
/**
|
|
81
|
-
* Sets the disabled state of the ColorPicker. To disable it in reactive forms, see [Forms Support](
|
|
81
|
+
* Sets the disabled state of the ColorPicker. To disable it in reactive forms, see [Forms Support](https://www.telerik.com/kendo-angular-ui/components/inputs/colorpicker/forms#managing-the-colorpicker-disabled-state-in-reactive-forms).
|
|
82
82
|
*
|
|
83
83
|
* @default false
|
|
84
84
|
*/
|
|
@@ -173,25 +173,19 @@ export declare class ColorPickerComponent implements OnInit, AfterViewInit, OnCh
|
|
|
173
173
|
actionsLayout: ColorPickerActionsLayout;
|
|
174
174
|
/**
|
|
175
175
|
* The size property specifies the padding of the ColorPicker internal elements
|
|
176
|
-
* ([see example](
|
|
177
|
-
*
|
|
178
|
-
* @default 'medium'
|
|
176
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/colorpicker/appearance#size)). The default value is set by the Kendo theme.
|
|
179
177
|
*/
|
|
180
178
|
set size(size: InputSize);
|
|
181
179
|
get size(): InputSize;
|
|
182
180
|
/**
|
|
183
181
|
* The rounded property specifies the border radius of the ColorPicker
|
|
184
|
-
* ([see example](
|
|
185
|
-
*
|
|
186
|
-
* @default 'medium'
|
|
182
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/colorpicker/appearance#roundness)). The default value is set by the Kendo theme.
|
|
187
183
|
*/
|
|
188
184
|
set rounded(rounded: InputRounded);
|
|
189
185
|
get rounded(): InputRounded;
|
|
190
186
|
/**
|
|
191
187
|
* The fillMode property specifies the background and border styles of the ColorPicker
|
|
192
|
-
* ([see example](
|
|
193
|
-
*
|
|
194
|
-
* @default 'solid'
|
|
188
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/colorpicker/appearance#fill-mode)). The default value is set by the Kendo theme.
|
|
195
189
|
*/
|
|
196
190
|
set fillMode(fillMode: InputFillMode);
|
|
197
191
|
get fillMode(): InputFillMode;
|
|
@@ -227,7 +221,7 @@ export declare class ColorPickerComponent implements OnInit, AfterViewInit, OnCh
|
|
|
227
221
|
* Fires when the left side of the ColorPicker wrapper is clicked.
|
|
228
222
|
* The event is triggered regardless of whether a ColorPicker icon is set or not.
|
|
229
223
|
*
|
|
230
|
-
* The [`ActiveColorClickEvent`](
|
|
224
|
+
* The [`ActiveColorClickEvent`](https://www.telerik.com/kendo-angular-ui/components/inputs/api/activecolorclickevent) event provides the option to prevent the popup opening.
|
|
231
225
|
*/
|
|
232
226
|
activeColorClick: EventEmitter<ActiveColorClickEvent>;
|
|
233
227
|
/**
|
|
@@ -62,7 +62,7 @@ export declare class FlatColorPickerComponent implements OnInit, AfterViewInit,
|
|
|
62
62
|
*/
|
|
63
63
|
readonly: boolean;
|
|
64
64
|
/**
|
|
65
|
-
* Sets the disabled state of the FlatColorPicker. To disable it in reactive forms, see [Forms Support](
|
|
65
|
+
* Sets the disabled state of the FlatColorPicker. To disable it in reactive forms, see [Forms Support](https://www.telerik.com/kendo-angular-ui/components/inputs/flatcolorpicker/forms#managing-the-flatcolorpicker-disabled-state-in-reactive-forms).
|
|
66
66
|
*
|
|
67
67
|
* @default false
|
|
68
68
|
*/
|
|
@@ -134,9 +134,8 @@ export declare class FlatColorPickerComponent implements OnInit, AfterViewInit,
|
|
|
134
134
|
set paletteSettings(value: PaletteSettings);
|
|
135
135
|
get paletteSettings(): PaletteSettings;
|
|
136
136
|
/**
|
|
137
|
-
* Sets the size of the FlatColorPicker internal elements.
|
|
137
|
+
* Sets the size of the FlatColorPicker internal elements. The default value is set by the Kendo theme.
|
|
138
138
|
*
|
|
139
|
-
* @default 'medium'
|
|
140
139
|
*/
|
|
141
140
|
set size(size: InputSize);
|
|
142
141
|
get size(): InputSize;
|
|
@@ -7,7 +7,6 @@
|
|
|
7
7
|
*
|
|
8
8
|
* Use this type to set the `rounded` property.
|
|
9
9
|
*
|
|
10
|
-
* @default `medium`
|
|
11
10
|
*/
|
|
12
11
|
export type InputRounded = 'small' | 'medium' | 'large' | 'full' | 'none';
|
|
13
12
|
/**
|
|
@@ -15,6 +14,5 @@ export type InputRounded = 'small' | 'medium' | 'large' | 'full' | 'none';
|
|
|
15
14
|
*
|
|
16
15
|
* Use this type to set the `rounded` property of the CheckBox.
|
|
17
16
|
*
|
|
18
|
-
* @default `medium`
|
|
19
17
|
*/
|
|
20
18
|
export type CheckBoxRounded = 'small' | 'medium' | 'large' | 'none';
|
package/common/models/size.d.ts
CHANGED
|
@@ -51,9 +51,8 @@ export declare class RadioCheckBoxBase implements ControlValueAccessor {
|
|
|
51
51
|
*/
|
|
52
52
|
value: string;
|
|
53
53
|
/**
|
|
54
|
-
* The size property specifies the width and height of the component.
|
|
54
|
+
* The size property specifies the width and height of the component. The default value is set by the Kendo theme.
|
|
55
55
|
*
|
|
56
|
-
* @default 'medium'
|
|
57
56
|
*
|
|
58
57
|
*/
|
|
59
58
|
set size(size: InputSize);
|