@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
|
@@ -11,7 +11,7 @@ import { SwitchFocusEvent } from './events/focus-event';
|
|
|
11
11
|
import { SwitchBlurEvent } from './events/blur-event';
|
|
12
12
|
import * as i0 from "@angular/core";
|
|
13
13
|
/**
|
|
14
|
-
* Represents the [Kendo UI Switch component for Angular](
|
|
14
|
+
* Represents the [Kendo UI Switch component for Angular](https://www.telerik.com/kendo-angular-ui/components/inputs/switch).
|
|
15
15
|
*
|
|
16
16
|
* @example
|
|
17
17
|
* ```html
|
|
@@ -34,14 +34,14 @@ export declare class SwitchComponent implements ControlValueAccessor, OnInit, On
|
|
|
34
34
|
get focusableId(): string;
|
|
35
35
|
/**
|
|
36
36
|
* Set the **On** label.
|
|
37
|
-
* This label takes precedence over the [custom messages component](
|
|
38
|
-
* [See example](
|
|
37
|
+
* This label takes precedence over the [custom messages component](https://www.telerik.com/kendo-angular-ui/components/inputs/api/switchcustommessagescomponent).
|
|
38
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/inputs/switch/labels).
|
|
39
39
|
*/
|
|
40
40
|
onLabel: string;
|
|
41
41
|
/**
|
|
42
42
|
* Set the **Off** label.
|
|
43
|
-
* This label takes precedence over the [custom messages component](
|
|
44
|
-
* [See example](
|
|
43
|
+
* This label takes precedence over the [custom messages component](https://www.telerik.com/kendo-angular-ui/components/inputs/api/switchcustommessagescomponent).
|
|
44
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/inputs/switch/labels).
|
|
45
45
|
*/
|
|
46
46
|
offLabel: string;
|
|
47
47
|
/**
|
|
@@ -51,14 +51,14 @@ export declare class SwitchComponent implements ControlValueAccessor, OnInit, On
|
|
|
51
51
|
get checked(): boolean;
|
|
52
52
|
/**
|
|
53
53
|
* When `true`, disables the Switch.
|
|
54
|
-
* [See example](
|
|
55
|
-
* To disable the component in reactive forms, see [Forms Support](
|
|
54
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/inputs/switch/disabled-state).
|
|
55
|
+
* To disable the component in reactive forms, see [Forms Support](https://www.telerik.com/kendo-angular-ui/components/inputs/switch/forms#managing-the-switch-disabled-state-in-reactive-forms).
|
|
56
56
|
* @default false
|
|
57
57
|
*/
|
|
58
58
|
disabled: boolean;
|
|
59
59
|
/**
|
|
60
60
|
* When `true`, sets the Switch to read-only.
|
|
61
|
-
* [See example](
|
|
61
|
+
* [See example](https://www.telerik.com/kendo-angular-ui/components/inputs/switch/readonly-state).
|
|
62
62
|
* @default false
|
|
63
63
|
*/
|
|
64
64
|
readonly: boolean;
|
|
@@ -68,23 +68,17 @@ export declare class SwitchComponent implements ControlValueAccessor, OnInit, On
|
|
|
68
68
|
*/
|
|
69
69
|
tabindex: number;
|
|
70
70
|
/**
|
|
71
|
-
* Sets the size of the Switch.
|
|
72
|
-
*
|
|
73
|
-
* @default "medium"
|
|
71
|
+
* Sets the size of the Switch. The default value is set by the Kendo theme.
|
|
74
72
|
*/
|
|
75
73
|
set size(size: InputSize);
|
|
76
74
|
get size(): InputSize;
|
|
77
75
|
/**
|
|
78
|
-
* Sets the border radius of the Switch.
|
|
79
|
-
*
|
|
80
|
-
* @default "full"
|
|
76
|
+
* Sets the border radius of the Switch. The default value is set by the Kendo theme.
|
|
81
77
|
*/
|
|
82
78
|
set thumbRounded(thumbRounded: InputRounded);
|
|
83
79
|
get thumbRounded(): InputRounded;
|
|
84
80
|
/**
|
|
85
|
-
* Sets the border radius of the Switch track.
|
|
86
|
-
*
|
|
87
|
-
* @default "full"
|
|
81
|
+
* Sets the border radius of the Switch track. The default value is set by the Kendo theme.
|
|
88
82
|
*/
|
|
89
83
|
set trackRounded(trackRounded: InputRounded);
|
|
90
84
|
get trackRounded(): InputRounded;
|
|
@@ -22,7 +22,7 @@ export declare abstract class TextFieldsBase {
|
|
|
22
22
|
*/
|
|
23
23
|
title: string | undefined;
|
|
24
24
|
/**
|
|
25
|
-
* Sets the disabled state of the TextArea component. To learn how to disable the component in reactive forms, refer to the article on [Forms Support](
|
|
25
|
+
* Sets the disabled state of the TextArea component. To learn how to disable the component in reactive forms, refer to the article on [Forms Support](https://www.telerik.com/kendo-angular-ui/components/inputs/textarea/forms#managing-the-textarea-disabled-state-in-reactive-forms).
|
|
26
26
|
*
|
|
27
27
|
* @default false
|
|
28
28
|
*/
|
|
@@ -7,7 +7,7 @@ import { TextAreaAdornmentsOrientation } from "./adornments-orientation";
|
|
|
7
7
|
import { TextAreaFlow } from "./flow";
|
|
8
8
|
import { TextAreaResize } from "./resize";
|
|
9
9
|
/**
|
|
10
|
-
* Defines the settings interface for the text area functionality used in components that integrate the TextArea component, such as the AIPrompt ([see example](
|
|
10
|
+
* Defines the settings interface for the text area functionality used in components that integrate the TextArea component, such as the AIPrompt ([see example](https://www.telerik.com/kendo-angular-ui/components/conversational-ui/aiprompt/configuration#configuring-the-prompt-text-area)).
|
|
11
11
|
*
|
|
12
12
|
* @example
|
|
13
13
|
* ```typescript
|
|
@@ -96,20 +96,17 @@ export declare class TextAreaComponent extends TextFieldsBase implements Control
|
|
|
96
96
|
*/
|
|
97
97
|
resizable: TextAreaResize;
|
|
98
98
|
/**
|
|
99
|
-
* Sets the size of the TextArea. Controls the padding of the text area element ([see example](
|
|
100
|
-
* @default 'medium'
|
|
99
|
+
* Sets the size of the TextArea. Controls the padding of the text area element ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textarea/appearance#size)). The default value is set by the Kendo theme.
|
|
101
100
|
*/
|
|
102
101
|
set size(size: InputSize);
|
|
103
102
|
get size(): InputSize;
|
|
104
103
|
/**
|
|
105
|
-
* Sets the border radius of the TextArea ([see example](
|
|
106
|
-
* @default 'medium'
|
|
104
|
+
* Sets the border radius of the TextArea ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textarea/appearance#roundness)). The default value is set by the Kendo theme.
|
|
107
105
|
*/
|
|
108
106
|
set rounded(rounded: InputRounded);
|
|
109
107
|
get rounded(): InputRounded;
|
|
110
108
|
/**
|
|
111
|
-
* Sets the background and border styles of the TextArea ([see example](
|
|
112
|
-
* @default 'solid'
|
|
109
|
+
* Sets the background and border styles of the TextArea ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textarea/appearance#fill-mode)). The default value is set by the Kendo theme.
|
|
113
110
|
*/
|
|
114
111
|
set fillMode(fillMode: InputFillMode);
|
|
115
112
|
get fillMode(): InputFillMode;
|
|
@@ -140,7 +137,7 @@ export declare class TextAreaComponent extends TextFieldsBase implements Control
|
|
|
140
137
|
*/
|
|
141
138
|
onBlur: EventEmitter<any>;
|
|
142
139
|
/**
|
|
143
|
-
* Fires when the value changes or the TextArea is blurred ([see example](
|
|
140
|
+
* Fires when the value changes or the TextArea is blurred ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textarea/events)).
|
|
144
141
|
*
|
|
145
142
|
* The event does not fire when the value changes programmatically or through form control binding.
|
|
146
143
|
*/
|
|
@@ -28,7 +28,7 @@ export declare class TextAreaDirective implements OnInit, OnDestroy, OnChanges,
|
|
|
28
28
|
valueChange: EventEmitter<any>;
|
|
29
29
|
/**
|
|
30
30
|
* Sets whether the `textarea` element resizes its height automatically
|
|
31
|
-
* ([see example](
|
|
31
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textarea/sizing#auto-resizing)).
|
|
32
32
|
*
|
|
33
33
|
* @default false
|
|
34
34
|
*/
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/**
|
|
6
|
-
* Specifies whether the Success or Error icons will be shown ([see examples](
|
|
6
|
+
* Specifies whether the Success or Error icons will be shown ([see examples](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/validation-icons)).
|
|
7
7
|
*
|
|
8
8
|
* The possible values are:
|
|
9
9
|
*
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { TemplateRef } from '@angular/core';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
|
-
* Represents a template for prefix adornments in the TextBox component ([see examples](
|
|
8
|
+
* Represents a template for prefix adornments in the TextBox component ([see examples](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/adornments#prefix-adornments)).
|
|
9
9
|
*
|
|
10
10
|
* @example
|
|
11
11
|
* ```html
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { TemplateRef } from '@angular/core';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
|
-
* Represents a template for suffix adornments in the TextBox component ([see examples](
|
|
8
|
+
* Represents a template for suffix adornments in the TextBox component ([see examples](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/adornments#suffix-adornments)).
|
|
9
9
|
*
|
|
10
10
|
* @example
|
|
11
11
|
* ```html
|
|
@@ -46,7 +46,7 @@ export declare class TextBoxComponent implements ControlValueAccessor {
|
|
|
46
46
|
*/
|
|
47
47
|
type: InputType;
|
|
48
48
|
/**
|
|
49
|
-
* Sets the disabled state of the TextBox. To disable the component in reactive forms, see [Forms Support](
|
|
49
|
+
* Sets the disabled state of the TextBox. To disable the component in reactive forms, see [Forms Support](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/forms#managing-the-textbox-disabled-state-in-reactive-forms).
|
|
50
50
|
* @default false
|
|
51
51
|
*/
|
|
52
52
|
disabled: boolean;
|
|
@@ -70,13 +70,13 @@ export declare class TextBoxComponent implements ControlValueAccessor {
|
|
|
70
70
|
*/
|
|
71
71
|
selectOnFocus: boolean;
|
|
72
72
|
/**
|
|
73
|
-
* Specifies when to show the Success icon ([see example](
|
|
73
|
+
* Specifies when to show the Success icon ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/validation-icons)).
|
|
74
74
|
*
|
|
75
75
|
* @default false
|
|
76
76
|
*/
|
|
77
77
|
showSuccessIcon: IconShowOptions;
|
|
78
78
|
/**
|
|
79
|
-
* Specifies when to show the Error icon ([see example](
|
|
79
|
+
* Specifies when to show the Error icon ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/validation-icons)).
|
|
80
80
|
*
|
|
81
81
|
* @default false
|
|
82
82
|
*/
|
|
@@ -111,20 +111,17 @@ export declare class TextBoxComponent implements ControlValueAccessor {
|
|
|
111
111
|
*/
|
|
112
112
|
clearButtonSvgIcon: SVGIcon;
|
|
113
113
|
/**
|
|
114
|
-
* Sets the padding of the TextBox internal input element ([see example](
|
|
115
|
-
* @default 'medium'
|
|
114
|
+
* Sets the padding of the TextBox internal input element ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/appearance#size)). The default value is set by the Kendo theme.
|
|
116
115
|
*/
|
|
117
116
|
set size(size: InputSize);
|
|
118
117
|
get size(): InputSize;
|
|
119
118
|
/**
|
|
120
|
-
* Sets the border radius of the TextBox ([see example](
|
|
121
|
-
* @default 'medium'
|
|
119
|
+
* Sets the border radius of the TextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/appearance#roundness)). The default value is set by the Kendo theme.
|
|
122
120
|
*/
|
|
123
121
|
set rounded(rounded: InputRounded);
|
|
124
122
|
get rounded(): InputRounded;
|
|
125
123
|
/**
|
|
126
|
-
* Sets the background and border styles of the TextBox ([see example](
|
|
127
|
-
* @default 'solid'
|
|
124
|
+
* Sets the background and border styles of the TextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/appearance#fill-mode)). The default value is set by the Kendo theme.
|
|
128
125
|
*/
|
|
129
126
|
set fillMode(fillMode: InputFillMode);
|
|
130
127
|
get fillMode(): InputFillMode;
|
|
@@ -151,7 +148,7 @@ export declare class TextBoxComponent implements ControlValueAccessor {
|
|
|
151
148
|
[key: string]: string;
|
|
152
149
|
};
|
|
153
150
|
/**
|
|
154
|
-
* Fires when the value changes—when the component is blurred or the value is cleared through the **Clear** button ([see example](
|
|
151
|
+
* Fires when the value changes—when the component is blurred or the value is cleared through the **Clear** button ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/events)).
|
|
155
152
|
* Does not fire when you change the value programmatically through `ngModel` or `formControl`.
|
|
156
153
|
*/
|
|
157
154
|
valueChange: EventEmitter<any>;
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { AfterViewInit, ElementRef, EventEmitter, OnDestroy, Renderer2, NgZone } from '@angular/core';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
|
-
* Represents the [Kendo UI TextBox directive](
|
|
8
|
+
* Represents the [Kendo UI TextBox directive](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox) for the Inputs components for Angular.
|
|
9
9
|
* Use this directive to style the textbox of any `input` element.
|
|
10
10
|
*
|
|
11
11
|
* @example
|