@progress/kendo-angular-inputs 22.1.0-develop.9 → 23.0.0-develop.1
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 -1
- package/checkbox/checkbox.directive.d.ts +3 -3
- package/colorpicker/color-gradient.component.d.ts +2 -2
- package/colorpicker/color-palette.component.d.ts +1 -1
- package/colorpicker/colorpicker.component.d.ts +5 -5
- package/colorpicker/flatcolorpicker.component.d.ts +1 -1
- package/common/models/fillmode.d.ts +1 -1
- package/common/models/size.d.ts +1 -1
- package/common/utils.d.ts +1 -0
- package/fesm2022/progress-kendo-angular-inputs.mjs +526 -576
- package/formfield/models/show-options.d.ts +1 -1
- package/maskedtextbox/maskedtextbox.component.d.ts +12 -12
- package/numerictextbox/constants.d.ts +2 -2
- package/numerictextbox/numerictextbox.component.d.ts +16 -16
- package/otpinput/otpinput.component.d.ts +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +13 -13
- package/radiobutton/radiobutton.directive.d.ts +1 -1
- 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 +8 -8
- 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 -11
- 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 -4
- 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 -7
- package/textbox/textbox.directive.d.ts +1 -1
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* Use this type to set the `showHints` or `showErrors` property.
|
|
9
9
|
*
|
|
10
10
|
* * `initial` (default)—Displays messages based on the form-bound component state.
|
|
11
|
-
* See [Hint `initial` configuration](
|
|
11
|
+
* See [Hint `initial` configuration](https://www.telerik.com/kendo-angular-ui/components/inputs/api/formfieldcomponent#showHints) and [Error `initial` configuration](https://www.telerik.com/kendo-angular-ui/components/inputs/api/formfieldcomponent#showErrors).
|
|
12
12
|
* * `always`—Always displays the messages.
|
|
13
13
|
*/
|
|
14
14
|
export type ShowOptions = 'initial' | 'always';
|
|
@@ -11,7 +11,7 @@ import { InputRounded } from '../common/models/rounded';
|
|
|
11
11
|
import { InputFillMode } from '../common/models/fillmode';
|
|
12
12
|
import * as i0 from "@angular/core";
|
|
13
13
|
/**
|
|
14
|
-
* Represents the [Kendo UI MaskedTextBox component for Angular](
|
|
14
|
+
* Represents the [Kendo UI MaskedTextBox component for Angular](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox).
|
|
15
15
|
*
|
|
16
16
|
* @example
|
|
17
17
|
* ```typescript
|
|
@@ -44,13 +44,13 @@ export declare class MaskedTextBoxComponent implements ControlValueAccessor, OnC
|
|
|
44
44
|
*/
|
|
45
45
|
focusableId: string;
|
|
46
46
|
/**
|
|
47
|
-
* Disables the MaskedTextBox when you set it to `true` ([see example](
|
|
48
|
-
* To disable the component in reactive forms, see [Forms Support](
|
|
47
|
+
* Disables the MaskedTextBox when you set it to `true` ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox/disabled-state)).
|
|
48
|
+
* To disable the component in reactive forms, see [Forms Support](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox/forms#managing-the-maskedtextbox-disabled-state-in-reactive-forms).
|
|
49
49
|
* @default false
|
|
50
50
|
*/
|
|
51
51
|
disabled: boolean;
|
|
52
52
|
/**
|
|
53
|
-
* When `true`, sets the MaskedTextBox to read-only mode ([see example](
|
|
53
|
+
* When `true`, sets the MaskedTextBox to read-only mode ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox/readonly-state)).
|
|
54
54
|
* @default false
|
|
55
55
|
*/
|
|
56
56
|
readonly: boolean;
|
|
@@ -59,28 +59,28 @@ export declare class MaskedTextBoxComponent implements ControlValueAccessor, OnC
|
|
|
59
59
|
*/
|
|
60
60
|
title: string;
|
|
61
61
|
/**
|
|
62
|
-
* Sets the padding size of the MaskedTextBox input element ([see example](
|
|
62
|
+
* Sets the padding size of the MaskedTextBox input element ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox/appearance#size)).
|
|
63
63
|
* @default 'medium'
|
|
64
64
|
*/
|
|
65
65
|
set size(size: InputSize);
|
|
66
66
|
get size(): InputSize;
|
|
67
67
|
/**
|
|
68
|
-
* Sets the border radius of the MaskedTextBox ([see example](
|
|
68
|
+
* Sets the border radius of the MaskedTextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox/appearance#roundness)).
|
|
69
69
|
* @default 'medium'
|
|
70
70
|
*/
|
|
71
71
|
set rounded(rounded: InputRounded);
|
|
72
72
|
get rounded(): InputRounded;
|
|
73
73
|
/**
|
|
74
|
-
* Sets the background and border style of the MaskedTextBox ([see example](
|
|
74
|
+
* Sets the background and border style of the MaskedTextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox/appearance#fill-mode)).
|
|
75
75
|
* @default 'solid'
|
|
76
76
|
*/
|
|
77
77
|
set fillMode(fillMode: InputFillMode);
|
|
78
78
|
get fillMode(): InputFillMode;
|
|
79
79
|
/**
|
|
80
|
-
* Sets the mask pattern for the MaskedTextBox ([see example](
|
|
80
|
+
* Sets the mask pattern for the MaskedTextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox/value)).
|
|
81
81
|
* If you do not set a mask, the component acts as a standard `type="text"` input.
|
|
82
82
|
*
|
|
83
|
-
* If the mask allows spaces, set the [`promptPlaceholder`](
|
|
83
|
+
* If the mask allows spaces, set the [`promptPlaceholder`](https://www.telerik.com/kendo-angular-ui/components/inputs/api/maskedtextboxcomponent#promptplaceholder)
|
|
84
84
|
* to a character that the mask does not accept.
|
|
85
85
|
*/
|
|
86
86
|
mask: string;
|
|
@@ -89,7 +89,7 @@ export declare class MaskedTextBoxComponent implements ControlValueAccessor, OnC
|
|
|
89
89
|
*/
|
|
90
90
|
value: string;
|
|
91
91
|
/**
|
|
92
|
-
* Sets the RegExp-based mask validation rules ([see example](
|
|
92
|
+
* Sets the RegExp-based mask validation rules ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox/masks)).
|
|
93
93
|
*/
|
|
94
94
|
set rules(value: {
|
|
95
95
|
[key: string]: RegExp;
|
|
@@ -108,7 +108,7 @@ export declare class MaskedTextBoxComponent implements ControlValueAccessor, OnC
|
|
|
108
108
|
*/
|
|
109
109
|
promptPlaceholder: string;
|
|
110
110
|
/**
|
|
111
|
-
* When `true` includes literals in the raw value ([see example](
|
|
111
|
+
* When `true` includes literals in the raw value ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox/value)).
|
|
112
112
|
* @default false
|
|
113
113
|
*/
|
|
114
114
|
includeLiterals: boolean;
|
|
@@ -117,7 +117,7 @@ export declare class MaskedTextBoxComponent implements ControlValueAccessor, OnC
|
|
|
117
117
|
*/
|
|
118
118
|
maskOnFocus: boolean;
|
|
119
119
|
/**
|
|
120
|
-
* Enables the built-in mask validator when you set it to `true` ([see example](
|
|
120
|
+
* Enables the built-in mask validator when you set it to `true` ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox/validation)).
|
|
121
121
|
* @default true
|
|
122
122
|
*/
|
|
123
123
|
maskValidation: boolean;
|
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @hidden
|
|
7
7
|
*/
|
|
8
|
-
export declare const MIN_DOC_LINK = "https://www.telerik.com/kendo-angular-ui/components/inputs/api/NumericTextBoxComponent
|
|
8
|
+
export declare const MIN_DOC_LINK = "https://www.telerik.com/kendo-angular-ui/components/inputs/api/NumericTextBoxComponent#min";
|
|
9
9
|
/**
|
|
10
10
|
* @hidden
|
|
11
11
|
*/
|
|
12
|
-
export declare const MAX_DOC_LINK = "https://www.telerik.com/kendo-angular-ui/components/inputs/api/NumericTextBoxComponent
|
|
12
|
+
export declare const MAX_DOC_LINK = "https://www.telerik.com/kendo-angular-ui/components/inputs/api/NumericTextBoxComponent#max";
|
|
13
13
|
/**
|
|
14
14
|
* @hidden
|
|
15
15
|
*/
|
|
@@ -13,7 +13,7 @@ import { InputSize, InputRounded, InputFillMode } from '../common/models';
|
|
|
13
13
|
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
/**
|
|
16
|
-
* Represents the [Kendo UI NumericTextBox component for Angular](
|
|
16
|
+
* Represents the [Kendo UI NumericTextBox component for Angular](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox).
|
|
17
17
|
*
|
|
18
18
|
* Use this component to allow users to input numeric values.
|
|
19
19
|
*
|
|
@@ -39,7 +39,7 @@ export declare class NumericTextBoxComponent implements ControlValueAccessor, On
|
|
|
39
39
|
focusableId: string;
|
|
40
40
|
/**
|
|
41
41
|
* When `true`, disables the `NumericTextBox`.
|
|
42
|
-
* To disable the component in reactive forms, see [Forms Support](
|
|
42
|
+
* To disable the component in reactive forms, see [Forms Support](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/forms#managing-the-numerictextbox-disabled-state-in-reactive-forms).
|
|
43
43
|
*
|
|
44
44
|
* @default false
|
|
45
45
|
*/
|
|
@@ -55,25 +55,25 @@ export declare class NumericTextBoxComponent implements ControlValueAccessor, On
|
|
|
55
55
|
*/
|
|
56
56
|
title: string;
|
|
57
57
|
/**
|
|
58
|
-
* When `true`, the value is automatically corrected based on the minimum and maximum values ([see example](
|
|
58
|
+
* When `true`, the value is automatically corrected based on the minimum and maximum values ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/precision)).
|
|
59
59
|
*/
|
|
60
60
|
autoCorrect: boolean;
|
|
61
61
|
/**
|
|
62
|
-
* Specifies the number format used when the NumericTextBox is not focused ([see example](
|
|
62
|
+
* Specifies the number format used when the NumericTextBox is not focused ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/formats)).
|
|
63
63
|
* If `format` is `null` or `undefined`, the default format is used.
|
|
64
64
|
*/
|
|
65
65
|
get format(): string | NumberFormatOptions | null | undefined;
|
|
66
66
|
set format(value: string | NumberFormatOptions | null | undefined);
|
|
67
67
|
/**
|
|
68
|
-
* Sets the maximum valid value ([see example](
|
|
68
|
+
* Sets the maximum valid value ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/precision#value-ranges)).
|
|
69
69
|
*/
|
|
70
70
|
max: number;
|
|
71
71
|
/**
|
|
72
|
-
* Sets the minimum valid value ([see example](
|
|
72
|
+
* Sets the minimum valid value ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/precision#value-ranges)).
|
|
73
73
|
*/
|
|
74
74
|
min: number;
|
|
75
75
|
/**
|
|
76
|
-
* Specifies the number of decimals the user can enter when the input is focused ([see example](
|
|
76
|
+
* Specifies the number of decimals the user can enter when the input is focused ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/precision)).
|
|
77
77
|
*/
|
|
78
78
|
decimals: number;
|
|
79
79
|
/**
|
|
@@ -81,13 +81,13 @@ export declare class NumericTextBoxComponent implements ControlValueAccessor, On
|
|
|
81
81
|
*/
|
|
82
82
|
placeholder: string;
|
|
83
83
|
/**
|
|
84
|
-
* Specifies the value used to increment or decrement the component value ([see example](
|
|
84
|
+
* Specifies the value used to increment or decrement the component value ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/predefined-step)).
|
|
85
85
|
*
|
|
86
86
|
* @default 1
|
|
87
87
|
*/
|
|
88
88
|
step: number;
|
|
89
89
|
/**
|
|
90
|
-
* When `true`, renders the **Up** and **Down** spin buttons ([see example](
|
|
90
|
+
* When `true`, renders the **Up** and **Down** spin buttons ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/spin-buttons)).
|
|
91
91
|
*
|
|
92
92
|
* @default true
|
|
93
93
|
*/
|
|
@@ -120,7 +120,7 @@ export declare class NumericTextBoxComponent implements ControlValueAccessor, On
|
|
|
120
120
|
*/
|
|
121
121
|
selectOnFocus: boolean;
|
|
122
122
|
/**
|
|
123
|
-
* Sets the value of the NumericTextBox ([see example](
|
|
123
|
+
* Sets the value of the NumericTextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/formats)).
|
|
124
124
|
*/
|
|
125
125
|
value: number;
|
|
126
126
|
/**
|
|
@@ -130,21 +130,21 @@ export declare class NumericTextBoxComponent implements ControlValueAccessor, On
|
|
|
130
130
|
*/
|
|
131
131
|
maxlength: number;
|
|
132
132
|
/**
|
|
133
|
-
* Sets the padding of the internal input element ([see example](
|
|
133
|
+
* Sets the padding of the internal input element ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/appearance#size)).
|
|
134
134
|
*
|
|
135
135
|
* @default 'medium'
|
|
136
136
|
*/
|
|
137
137
|
set size(size: InputSize);
|
|
138
138
|
get size(): InputSize;
|
|
139
139
|
/**
|
|
140
|
-
* Sets the border radius of the NumericTextBox ([see example](
|
|
140
|
+
* Sets the border radius of the NumericTextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/appearance#roundness)).
|
|
141
141
|
*
|
|
142
142
|
* @default 'medium'
|
|
143
143
|
*/
|
|
144
144
|
set rounded(rounded: InputRounded);
|
|
145
145
|
get rounded(): InputRounded;
|
|
146
146
|
/**
|
|
147
|
-
* Sets the background and border styles of the NumericTextBox ([see example](
|
|
147
|
+
* Sets the background and border styles of the NumericTextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/appearance#fill-mode)).
|
|
148
148
|
*
|
|
149
149
|
* @default 'solid'
|
|
150
150
|
*/
|
|
@@ -161,15 +161,15 @@ export declare class NumericTextBoxComponent implements ControlValueAccessor, On
|
|
|
161
161
|
[key: string]: string;
|
|
162
162
|
};
|
|
163
163
|
/**
|
|
164
|
-
* Fires when the user selects a new value ([see example](
|
|
164
|
+
* Fires when the user selects a new value ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/events)).
|
|
165
165
|
*/
|
|
166
166
|
valueChange: EventEmitter<any>;
|
|
167
167
|
/**
|
|
168
|
-
* Fires when the NumericTextBox element is focused ([see example](
|
|
168
|
+
* Fires when the NumericTextBox element is focused ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/events)).
|
|
169
169
|
*/
|
|
170
170
|
onFocus: EventEmitter<any>;
|
|
171
171
|
/**
|
|
172
|
-
* Fires when the `NumericTextBox` component gets blurred ([see example](
|
|
172
|
+
* Fires when the `NumericTextBox` component gets blurred ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/events)).
|
|
173
173
|
*/
|
|
174
174
|
onBlur: EventEmitter<any>;
|
|
175
175
|
/**
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "
|
|
10
|
+
"publishDate": 1770286905,
|
|
11
|
+
"version": "23.0.0-develop.1",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-inputs",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "23.0.0-develop.1",
|
|
4
4
|
"description": "Kendo UI for Angular Inputs Package - Everything you need to build professional form functionality (Checkbox, ColorGradient, ColorPalette, ColorPicker, FlatColorPicker, FormField, MaskedTextBox, NumericTextBox, RadioButton, RangeSlider, Slider, Switch, TextArea, and TextBox Components)",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"package": {
|
|
29
29
|
"productName": "Kendo UI for Angular",
|
|
30
30
|
"productCode": "KENDOUIANGULAR",
|
|
31
|
-
"publishDate":
|
|
31
|
+
"publishDate": 1770286905,
|
|
32
32
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
33
33
|
}
|
|
34
34
|
},
|
|
@@ -38,22 +38,22 @@
|
|
|
38
38
|
"@angular/core": "19 - 21",
|
|
39
39
|
"@angular/forms": "19 - 21",
|
|
40
40
|
"@angular/platform-browser": "19 - 21",
|
|
41
|
-
"@progress/kendo-drawing": "^1.
|
|
41
|
+
"@progress/kendo-drawing": "^1.24.0",
|
|
42
42
|
"@progress/kendo-licensing": "^1.10.0",
|
|
43
|
-
"@progress/kendo-angular-buttons": "
|
|
44
|
-
"@progress/kendo-angular-common": "
|
|
45
|
-
"@progress/kendo-angular-utils": "
|
|
46
|
-
"@progress/kendo-angular-navigation": "
|
|
47
|
-
"@progress/kendo-angular-dialog": "
|
|
48
|
-
"@progress/kendo-angular-intl": "
|
|
49
|
-
"@progress/kendo-angular-l10n": "
|
|
50
|
-
"@progress/kendo-angular-popup": "
|
|
51
|
-
"@progress/kendo-angular-icons": "
|
|
43
|
+
"@progress/kendo-angular-buttons": "23.0.0-develop.1",
|
|
44
|
+
"@progress/kendo-angular-common": "23.0.0-develop.1",
|
|
45
|
+
"@progress/kendo-angular-utils": "23.0.0-develop.1",
|
|
46
|
+
"@progress/kendo-angular-navigation": "23.0.0-develop.1",
|
|
47
|
+
"@progress/kendo-angular-dialog": "23.0.0-develop.1",
|
|
48
|
+
"@progress/kendo-angular-intl": "23.0.0-develop.1",
|
|
49
|
+
"@progress/kendo-angular-l10n": "23.0.0-develop.1",
|
|
50
|
+
"@progress/kendo-angular-popup": "23.0.0-develop.1",
|
|
51
|
+
"@progress/kendo-angular-icons": "23.0.0-develop.1",
|
|
52
52
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"tslib": "^2.3.1",
|
|
56
|
-
"@progress/kendo-angular-schematics": "
|
|
56
|
+
"@progress/kendo-angular-schematics": "23.0.0-develop.1",
|
|
57
57
|
"@progress/kendo-common": "^1.0.1",
|
|
58
58
|
"@progress/kendo-draggable": "^3.0.0",
|
|
59
59
|
"@progress/kendo-inputs-common": "^3.1.0"
|
|
@@ -20,7 +20,7 @@ export declare class RadioButtonDirective {
|
|
|
20
20
|
kendoClass: boolean;
|
|
21
21
|
get isDisabled(): boolean;
|
|
22
22
|
/**
|
|
23
|
-
* Specifies the `size` of the RadioButton. The `size` property changes the width and height of the RadioButton ([see example](
|
|
23
|
+
* Specifies the `size` of the RadioButton. The `size` property changes the width and height of the RadioButton ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/radiobutton/appearance#size)).
|
|
24
24
|
*
|
|
25
25
|
* @default "medium"
|
|
26
26
|
*/
|
|
@@ -6,7 +6,7 @@ import { TemplateRef } from '@angular/core';
|
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
8
|
* Renders the hovered rating item content.
|
|
9
|
-
* To define an item template, nest an `<ng-template>` tag with the `kendoRatingHoveredItemTemplate` directive inside the `<kendo-rating>` tag ([see example](
|
|
9
|
+
* To define an item template, nest an `<ng-template>` tag with the `kendoRatingHoveredItemTemplate` directive inside the `<kendo-rating>` tag ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/rating/templates)).
|
|
10
10
|
*
|
|
11
11
|
* The index of the currently hovered item is available as an implicit context using the `let-index="index"` syntax.
|
|
12
12
|
* @example
|
|
@@ -6,7 +6,7 @@ import { TemplateRef } from '@angular/core';
|
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
8
|
* Renders the rating item content.
|
|
9
|
-
* To define an item template, nest an `<ng-template>` tag with the `kendoRatingItemTemplate` directive inside the `<kendo-rating>` tag ([see example](
|
|
9
|
+
* To define an item template, nest an `<ng-template>` tag with the `kendoRatingItemTemplate` directive inside the `<kendo-rating>` tag ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/rating/templates)).
|
|
10
10
|
* The index of the current item is available as an implicit context using the `let-index="index"` syntax.
|
|
11
11
|
* * @example
|
|
12
12
|
* ```html
|
|
@@ -6,7 +6,7 @@ import { TemplateRef } from '@angular/core';
|
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
8
|
* Renders the selected rating item content.
|
|
9
|
-
* To define an item template, nest an `<ng-template>` tag with the `kendoRatingSelectedItemTemplate` directive inside the `<kendo-rating>` tag ([see example](
|
|
9
|
+
* To define an item template, nest an `<ng-template>` tag with the `kendoRatingSelectedItemTemplate` directive inside the `<kendo-rating>` tag ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/rating/templates)).
|
|
10
10
|
*
|
|
11
11
|
* The index of the currently selected item is available as an implicit context using the `let-index="index"` syntax.
|
|
12
12
|
*
|
|
@@ -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
|
-
* Sets the `selection` mode of the Rating ([see example](
|
|
6
|
+
* Sets the `selection` mode of the Rating ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/rating/selection)).
|
|
7
7
|
*
|
|
8
8
|
* The available values are:
|
|
9
9
|
* * `continuous` (default)
|
|
@@ -32,15 +32,15 @@ export declare class RatingComponent implements OnInit, AfterViewInit, OnDestroy
|
|
|
32
32
|
hoveredItemTemplate: RatingHoveredItemTemplateDirective;
|
|
33
33
|
selectedItemTemplate: RatingSelectedItemTemplateDirective;
|
|
34
34
|
/**
|
|
35
|
-
* When `true`, disables the Rating ([see example](
|
|
35
|
+
* When `true`, disables the Rating ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/rating/disabled)).
|
|
36
36
|
|
|
37
|
-
* To disable the component in reactive forms, see [Forms Support](
|
|
37
|
+
* To disable the component in reactive forms, see [Forms Support](https://www.telerik.com/kendo-angular-ui/components/inputs/rating/forms#managing-the-rating-disabled-state-in-reactive-forms).
|
|
38
38
|
*
|
|
39
39
|
* @default false
|
|
40
40
|
*/
|
|
41
41
|
disabled: boolean;
|
|
42
42
|
/**
|
|
43
|
-
* When `true`, sets the Rating to read-only ([see example](
|
|
43
|
+
* When `true`, sets the Rating to read-only ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/rating/readonly)).
|
|
44
44
|
|
|
45
45
|
*
|
|
46
46
|
* @default false
|
|
@@ -54,7 +54,7 @@ export declare class RatingComponent implements OnInit, AfterViewInit, OnDestroy
|
|
|
54
54
|
*/
|
|
55
55
|
tabindex: number;
|
|
56
56
|
/**
|
|
57
|
-
* Sets the number of Rating items ([see example](
|
|
57
|
+
* Sets the number of Rating items ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/rating/items)).
|
|
58
58
|
*
|
|
59
59
|
* @default 5
|
|
60
60
|
*/
|
|
@@ -66,33 +66,33 @@ export declare class RatingComponent implements OnInit, AfterViewInit, OnDestroy
|
|
|
66
66
|
set value(value: number);
|
|
67
67
|
get value(): number;
|
|
68
68
|
/**
|
|
69
|
-
* Sets the selection mode of the Rating ([see example](
|
|
69
|
+
* Sets the selection mode of the Rating ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/rating/selection)).
|
|
70
70
|
*
|
|
71
71
|
* @default 'continuous'
|
|
72
72
|
*/
|
|
73
73
|
set selection(selection: RatingSelectionMode);
|
|
74
74
|
get selection(): RatingSelectionMode;
|
|
75
75
|
/**
|
|
76
|
-
* Sets the precision of the Rating ([see example](
|
|
76
|
+
* Sets the precision of the Rating ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/rating/precision)).
|
|
77
77
|
*
|
|
78
78
|
* @default 'item'
|
|
79
79
|
*/
|
|
80
80
|
set precision(precision: RatingPrecision);
|
|
81
81
|
get precision(): RatingPrecision;
|
|
82
82
|
/**
|
|
83
|
-
* Sets the label text for the Rating. The text renders in a `<span>` element ([see example](
|
|
83
|
+
* Sets the label text for the Rating. The text renders in a `<span>` element ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/rating/label)).
|
|
84
84
|
*/
|
|
85
85
|
label: string;
|
|
86
86
|
/**
|
|
87
|
-
* Sets a custom font icon for the Rating items ([see example](
|
|
87
|
+
* Sets a custom font icon for the Rating items ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/rating/icon)).
|
|
88
88
|
*/
|
|
89
89
|
icon: string;
|
|
90
90
|
/**
|
|
91
|
-
* Sets a custom SVG icon for the selected or hovered state of the Rating items ([see example](
|
|
91
|
+
* Sets a custom SVG icon for the selected or hovered state of the Rating items ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/rating/icon)).
|
|
92
92
|
*/
|
|
93
93
|
svgIcon: SVGIcon;
|
|
94
94
|
/**
|
|
95
|
-
* Sets a custom SVG icon for the default state of the Rating items when not hovered or selected ([see example](
|
|
95
|
+
* Sets a custom SVG icon for the default state of the Rating items when not hovered or selected ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/rating/icon)).
|
|
96
96
|
*/
|
|
97
97
|
svgIconOutline: SVGIcon;
|
|
98
98
|
/**
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { SeparatorOrientation } from '@progress/kendo-angular-common';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
|
-
* Represents a separator in the content of components like TextArea and TextBox. ([see examples](
|
|
8
|
+
* Represents a separator in the content of components like TextArea and TextBox. ([see examples](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/adornments#separator)).
|
|
9
9
|
*
|
|
10
10
|
* @example
|
|
11
11
|
* ```html
|
|
@@ -19,7 +19,7 @@ import * as i0 from "@angular/core";
|
|
|
19
19
|
*/
|
|
20
20
|
export declare class InputSeparatorComponent {
|
|
21
21
|
/**
|
|
22
|
-
* Sets the orientation of the separator. Use this for the adornments of the [`TextAreaComponent`](
|
|
22
|
+
* Sets the orientation of the separator. Use this for the adornments of the [`TextAreaComponent`](https://www.telerik.com/kendo-angular-ui/components/inputs/api/textareacomponent).
|
|
23
23
|
*
|
|
24
24
|
* @default 'vertical'
|
|
25
25
|
*/
|
|
@@ -10,7 +10,7 @@ import { SignatureCloseEvent, SignatureOpenEvent } from './events';
|
|
|
10
10
|
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
/**
|
|
13
|
-
* Represents the [Kendo UI Signature component for Angular](
|
|
13
|
+
* Represents the [Kendo UI Signature component for Angular](https://www.telerik.com/kendo-angular-ui/components/inputs/signature).
|
|
14
14
|
*
|
|
15
15
|
* Use the Signature to let users add a hand-drawn signature to forms.
|
|
16
16
|
*
|
|
@@ -47,7 +47,7 @@ export declare class SignatureComponent implements ControlValueAccessor {
|
|
|
47
47
|
* Sets the disabled state of the Signature.
|
|
48
48
|
*
|
|
49
49
|
* Set to `true` to disable the component and prevent any user interaction.
|
|
50
|
-
* To disable the component in reactive forms, see [Managing the Signature Disabled State in Reactive Forms](
|
|
50
|
+
* To disable the component in reactive forms, see [Managing the Signature Disabled State in Reactive Forms](https://www.telerik.com/kendo-angular-ui/components/inputs/signature/forms#managing-the-signature-disabled-state-in-reactive-forms).
|
|
51
51
|
*
|
|
52
52
|
* @default false
|
|
53
53
|
*/
|
|
@@ -84,23 +84,23 @@ export declare class SignatureComponent implements ControlValueAccessor {
|
|
|
84
84
|
get tabindex(): number;
|
|
85
85
|
/**
|
|
86
86
|
* Sets the padding of the Signature internal controls
|
|
87
|
-
* ([ee example](
|
|
87
|
+
* ([ee example](https://www.telerik.com/kendo-angular-ui/components/inputs/signature/appearance#size)).
|
|
88
88
|
*
|
|
89
|
-
* @default
|
|
89
|
+
* @default undefined
|
|
90
90
|
*/
|
|
91
91
|
size: InputSize;
|
|
92
92
|
/**
|
|
93
93
|
* Sets the border radius of the Signature
|
|
94
|
-
* ([see example](
|
|
94
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/signature/appearance#rounded-corners)).
|
|
95
95
|
*
|
|
96
|
-
* @default
|
|
96
|
+
* @default undefined
|
|
97
97
|
*/
|
|
98
98
|
rounded: InputRounded;
|
|
99
99
|
/**
|
|
100
100
|
* Sets the background and border styles of the Signature
|
|
101
|
-
* ([see example](
|
|
101
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/signature/appearance#fill-mode)).
|
|
102
102
|
*
|
|
103
|
-
* @default
|
|
103
|
+
* @default undefined
|
|
104
104
|
*/
|
|
105
105
|
fillMode: InputFillMode;
|
|
106
106
|
/**
|
|
@@ -9,7 +9,7 @@ import { SliderBase } from '../sliders-common/slider-base';
|
|
|
9
9
|
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
/**
|
|
12
|
-
* Represents the [Kendo UI Slider component for Angular](
|
|
12
|
+
* Represents the [Kendo UI Slider component for Angular](https://www.telerik.com/kendo-angular-ui/components/inputs/slider).
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
15
15
|
* ```html
|
|
@@ -35,7 +35,7 @@ export declare class SliderComponent extends SliderBase implements AfterViewInit
|
|
|
35
35
|
*/
|
|
36
36
|
dragHandleTitle: string;
|
|
37
37
|
/**
|
|
38
|
-
* Sets the title of the **Increase** button of the Slider ([see example](
|
|
38
|
+
* Sets the title of the **Increase** button of the Slider ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/slider/side-buttons#titles)).
|
|
39
39
|
*/
|
|
40
40
|
incrementTitle: string;
|
|
41
41
|
/**
|
|
@@ -45,11 +45,11 @@ export declare class SliderComponent extends SliderBase implements AfterViewInit
|
|
|
45
45
|
*/
|
|
46
46
|
animate: boolean;
|
|
47
47
|
/**
|
|
48
|
-
* Sets the title of the **Decrease** button of the Slider ([see example](
|
|
48
|
+
* Sets the title of the **Decrease** button of the Slider ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/slider/side-buttons#titles)).
|
|
49
49
|
*/
|
|
50
50
|
decrementTitle: string;
|
|
51
51
|
/**
|
|
52
|
-
* Shows or hides the arrow side buttons of the Slider ([see example](
|
|
52
|
+
* Shows or hides the arrow side buttons of the Slider ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/slider/side-buttons#hidden-state)).
|
|
53
53
|
* When you set `showButtons` to `false`, the component does not display the buttons.
|
|
54
54
|
* @default true
|
|
55
55
|
*/
|
|
@@ -22,11 +22,11 @@ export declare abstract class SliderBase {
|
|
|
22
22
|
/**
|
|
23
23
|
* Sets the title for the ticks.
|
|
24
24
|
* The default title for each tick is its Slider value.
|
|
25
|
-
* If you use a callback function, the function receives the component value and returns a string for the new title [see example](
|
|
25
|
+
* If you use a callback function, the function receives the component value and returns a string for the new title [see example](https://www.telerik.com/kendo-angular-ui/components/inputs/slider/ticks#titles).
|
|
26
26
|
*/
|
|
27
27
|
title: SliderTickTitleCallback;
|
|
28
28
|
/**
|
|
29
|
-
* Sets the location of the tick marks in the Slider [see example](
|
|
29
|
+
* Sets the location of the tick marks in the Slider [see example](https://www.telerik.com/kendo-angular-ui/components/inputs/slider/ticks#placement).
|
|
30
30
|
*
|
|
31
31
|
* The options are:
|
|
32
32
|
* - `before` – Shows tick marks above a horizontal track or left of a vertical track.
|
|
@@ -38,21 +38,21 @@ export declare abstract class SliderBase {
|
|
|
38
38
|
*/
|
|
39
39
|
tickPlacement: string;
|
|
40
40
|
/**
|
|
41
|
-
* When `true`. renders a vertical Slider [see example](
|
|
41
|
+
* When `true`. renders a vertical Slider [see example](https://www.telerik.com/kendo-angular-ui/components/inputs/slider/orientation).
|
|
42
42
|
*
|
|
43
43
|
* @default false
|
|
44
44
|
*/
|
|
45
45
|
vertical: boolean;
|
|
46
46
|
/**
|
|
47
47
|
* Sets the minimum value of the Slider.
|
|
48
|
-
* Accepts integers and floating-point numbers [see example](
|
|
48
|
+
* Accepts integers and floating-point numbers [see example](https://www.telerik.com/kendo-angular-ui/components/inputs/slider/predefined-steps#small-steps).
|
|
49
49
|
*
|
|
50
50
|
* @default 0
|
|
51
51
|
*/
|
|
52
52
|
min: number;
|
|
53
53
|
/**
|
|
54
54
|
* Sets the maximum value of the Slider.
|
|
55
|
-
* Accepts integers and floating-point numbers [see example](
|
|
55
|
+
* Accepts integers and floating-point numbers [see example](https://www.telerik.com/kendo-angular-ui/components/inputs/slider/predefined-steps#small-steps).
|
|
56
56
|
*
|
|
57
57
|
* @default 10
|
|
58
58
|
*/
|
|
@@ -60,32 +60,32 @@ export declare abstract class SliderBase {
|
|
|
60
60
|
/**
|
|
61
61
|
* Sets the step value of the Slider.
|
|
62
62
|
* Accepts only positive values.
|
|
63
|
-
* Can be an integer or a floating-point number [see example](
|
|
63
|
+
* Can be an integer or a floating-point number [see example](https://www.telerik.com/kendo-angular-ui/components/inputs/slider/predefined-steps#small-steps).
|
|
64
64
|
*
|
|
65
65
|
* @default 1
|
|
66
66
|
*/
|
|
67
67
|
smallStep: number;
|
|
68
68
|
/**
|
|
69
|
-
* Sets every n<sup>th</sup> tick as large and shows a label for it [see example](
|
|
69
|
+
* Sets every n<sup>th</sup> tick as large and shows a label for it [see example](https://www.telerik.com/kendo-angular-ui/components/inputs/slider/predefined-steps#large-steps).
|
|
70
70
|
*
|
|
71
71
|
* @default null
|
|
72
72
|
*/
|
|
73
73
|
largeStep: number;
|
|
74
74
|
/**
|
|
75
75
|
* Sets the width between two ticks along the track, in pixels.
|
|
76
|
-
* If you do not set `fixedTickWidth`, the Slider adjusts the tick width automatically [see example](
|
|
76
|
+
* If you do not set `fixedTickWidth`, the Slider adjusts the tick width automatically [see example](https://www.telerik.com/kendo-angular-ui/components/inputs/slider/ticks#width).
|
|
77
77
|
*
|
|
78
78
|
*/
|
|
79
79
|
fixedTickWidth: number;
|
|
80
80
|
/**
|
|
81
81
|
* When `true`, disables the Slider.
|
|
82
|
-
* To disable the component in reactive forms, see [Forms Support](
|
|
82
|
+
* To disable the component in reactive forms, see [Forms Support](https://www.telerik.com/kendo-angular-ui/components/inputs/slider/forms#managing-the-slider-disabled-state-in-reactive-forms) [see example](https://www.telerik.com/kendo-angular-ui/components/inputs/slider/disabled-state).
|
|
83
83
|
*
|
|
84
84
|
* @default false
|
|
85
85
|
*/
|
|
86
86
|
disabled: boolean;
|
|
87
87
|
/**
|
|
88
|
-
* When `true`, sets the Slider to read-only [see example](
|
|
88
|
+
* When `true`, sets the Slider to read-only [see example](https://www.telerik.com/kendo-angular-ui/components/inputs/slider/readonly-state).
|
|
89
89
|
*
|
|
90
90
|
* @default false
|
|
91
91
|
*/
|
|
@@ -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
|
-
* Sets the title for the ticks ([see example](
|
|
6
|
+
* Sets the title for the ticks ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/slider/ticks#titles)).
|
|
7
7
|
* By default, each tick uses its Slider value as the title.
|
|
8
8
|
* If you use a callback function, it receives the component value and returns a string for the title.
|
|
9
9
|
*
|