@progress/kendo-angular-inputs 25.1.0-develop.2 → 25.1.0-develop.4
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/fesm2022/progress-kendo-angular-inputs.mjs +2269 -777
- package/index.d.ts +748 -290
- package/package-metadata.mjs +2 -2
- package/package.json +12 -12
package/index.d.ts
CHANGED
|
@@ -78,7 +78,8 @@ declare abstract class SliderBase {
|
|
|
78
78
|
* The default title for each tick is its Slider value.
|
|
79
79
|
* 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).
|
|
80
80
|
*/
|
|
81
|
-
title: SliderTickTitleCallback;
|
|
81
|
+
set title(value: SliderTickTitleCallback);
|
|
82
|
+
get title(): SliderTickTitleCallback;
|
|
82
83
|
/**
|
|
83
84
|
* Sets the location of the tick marks in the Slider [see example](https://www.telerik.com/kendo-angular-ui/components/inputs/slider/ticks#placement).
|
|
84
85
|
*
|
|
@@ -90,27 +91,31 @@ declare abstract class SliderBase {
|
|
|
90
91
|
*
|
|
91
92
|
* @default 'both'
|
|
92
93
|
*/
|
|
93
|
-
tickPlacement: string;
|
|
94
|
+
set tickPlacement(value: string);
|
|
95
|
+
get tickPlacement(): string;
|
|
94
96
|
/**
|
|
95
97
|
* When `true`. renders a vertical Slider [see example](https://www.telerik.com/kendo-angular-ui/components/inputs/slider/orientation).
|
|
96
98
|
*
|
|
97
99
|
* @default false
|
|
98
100
|
*/
|
|
99
|
-
vertical: boolean;
|
|
101
|
+
set vertical(value: boolean);
|
|
102
|
+
get vertical(): boolean;
|
|
100
103
|
/**
|
|
101
104
|
* Sets the minimum value of the Slider.
|
|
102
105
|
* Accepts integers and floating-point numbers [see example](https://www.telerik.com/kendo-angular-ui/components/inputs/slider/predefined-steps#small-steps).
|
|
103
106
|
*
|
|
104
107
|
* @default 0
|
|
105
108
|
*/
|
|
106
|
-
min: number;
|
|
109
|
+
set min(value: number);
|
|
110
|
+
get min(): number;
|
|
107
111
|
/**
|
|
108
112
|
* Sets the maximum value of the Slider.
|
|
109
113
|
* Accepts integers and floating-point numbers [see example](https://www.telerik.com/kendo-angular-ui/components/inputs/slider/predefined-steps#small-steps).
|
|
110
114
|
*
|
|
111
115
|
* @default 10
|
|
112
116
|
*/
|
|
113
|
-
max: number;
|
|
117
|
+
set max(value: number);
|
|
118
|
+
get max(): number;
|
|
114
119
|
/**
|
|
115
120
|
* Sets the step value of the Slider.
|
|
116
121
|
* Accepts only positive values.
|
|
@@ -118,38 +123,44 @@ declare abstract class SliderBase {
|
|
|
118
123
|
*
|
|
119
124
|
* @default 1
|
|
120
125
|
*/
|
|
121
|
-
smallStep: number;
|
|
126
|
+
set smallStep(value: number);
|
|
127
|
+
get smallStep(): number;
|
|
122
128
|
/**
|
|
123
129
|
* 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).
|
|
124
130
|
*
|
|
125
131
|
* @default null
|
|
126
132
|
*/
|
|
127
|
-
largeStep: number;
|
|
133
|
+
set largeStep(value: number);
|
|
134
|
+
get largeStep(): number;
|
|
128
135
|
/**
|
|
129
136
|
* Sets the width between two ticks along the track, in pixels.
|
|
130
137
|
* 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).
|
|
131
138
|
*
|
|
132
139
|
*/
|
|
133
|
-
fixedTickWidth: number;
|
|
140
|
+
set fixedTickWidth(value: number);
|
|
141
|
+
get fixedTickWidth(): number;
|
|
134
142
|
/**
|
|
135
143
|
* When `true`, disables the Slider.
|
|
136
144
|
* 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).
|
|
137
145
|
*
|
|
138
146
|
* @default false
|
|
139
147
|
*/
|
|
140
|
-
disabled: boolean;
|
|
148
|
+
set disabled(value: boolean);
|
|
149
|
+
get disabled(): boolean;
|
|
141
150
|
/**
|
|
142
151
|
* When `true`, sets the Slider to read-only [see example](https://www.telerik.com/kendo-angular-ui/components/inputs/slider/readonly-state).
|
|
143
152
|
*
|
|
144
153
|
* @default false
|
|
145
154
|
*/
|
|
146
|
-
readonly: boolean;
|
|
155
|
+
set readonly(value: boolean);
|
|
156
|
+
get readonly(): boolean;
|
|
147
157
|
/**
|
|
148
158
|
* Sets the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the Slider.
|
|
149
159
|
*
|
|
150
160
|
* @default 0
|
|
151
161
|
*/
|
|
152
|
-
tabindex: number;
|
|
162
|
+
set tabindex(value: number);
|
|
163
|
+
get tabindex(): number;
|
|
153
164
|
/**
|
|
154
165
|
* Fires when the user focuses the component.
|
|
155
166
|
*
|
|
@@ -180,6 +191,17 @@ declare abstract class SliderBase {
|
|
|
180
191
|
protected isFocused: boolean;
|
|
181
192
|
protected isDragged: boolean;
|
|
182
193
|
protected control: NgControl;
|
|
194
|
+
private _title;
|
|
195
|
+
private _tickPlacement;
|
|
196
|
+
private _vertical;
|
|
197
|
+
private _min;
|
|
198
|
+
private _max;
|
|
199
|
+
private _smallStep;
|
|
200
|
+
private _largeStep;
|
|
201
|
+
private _fixedTickWidth;
|
|
202
|
+
private _disabled;
|
|
203
|
+
private _readonly;
|
|
204
|
+
private _tabindex;
|
|
183
205
|
constructor(localizationService: LocalizationService, injector: Injector, renderer: Renderer2, ngZone: NgZone, changeDetector: ChangeDetectorRef, hostElement: ElementRef);
|
|
184
206
|
/**
|
|
185
207
|
* @hidden
|
|
@@ -235,37 +257,44 @@ declare class SliderComponent extends SliderBase implements AfterViewInit, Contr
|
|
|
235
257
|
/**
|
|
236
258
|
* @hidden
|
|
237
259
|
*/
|
|
238
|
-
focusableId: string;
|
|
260
|
+
set focusableId(value: string);
|
|
261
|
+
get focusableId(): string;
|
|
239
262
|
/**
|
|
240
263
|
* Changes the `title` attribute of the drag handle. Use this property to localize the drag handle title.
|
|
241
264
|
*/
|
|
242
|
-
dragHandleTitle: string;
|
|
265
|
+
set dragHandleTitle(value: string);
|
|
266
|
+
get dragHandleTitle(): string;
|
|
243
267
|
/**
|
|
244
268
|
* 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)).
|
|
245
269
|
*/
|
|
246
|
-
incrementTitle: string;
|
|
270
|
+
set incrementTitle(value: string);
|
|
271
|
+
get incrementTitle(): string;
|
|
247
272
|
/**
|
|
248
273
|
* Determines if the component animates when the value changes.
|
|
249
274
|
* The component does not animate during initial rendering.
|
|
250
275
|
* @default true
|
|
251
276
|
*/
|
|
252
|
-
animate: boolean;
|
|
277
|
+
set animate(value: boolean);
|
|
278
|
+
get animate(): boolean;
|
|
253
279
|
/**
|
|
254
280
|
* 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)).
|
|
255
281
|
*/
|
|
256
|
-
decrementTitle: string;
|
|
282
|
+
set decrementTitle(value: string);
|
|
283
|
+
get decrementTitle(): string;
|
|
257
284
|
/**
|
|
258
285
|
* 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)).
|
|
259
286
|
* When you set `showButtons` to `false`, the component does not display the buttons.
|
|
260
287
|
* @default true
|
|
261
288
|
*/
|
|
262
|
-
showButtons: boolean;
|
|
289
|
+
set showButtons(value: boolean);
|
|
290
|
+
get showButtons(): boolean;
|
|
263
291
|
/**
|
|
264
292
|
* Sets the current value of the Slider when it first appears.
|
|
265
293
|
* Use either `ngModel` or the `value` binding, but not both at the same time.
|
|
266
294
|
* @default 0
|
|
267
295
|
*/
|
|
268
|
-
value: number;
|
|
296
|
+
set value(value: number);
|
|
297
|
+
get value(): number;
|
|
269
298
|
/**
|
|
270
299
|
* @hidden
|
|
271
300
|
*/
|
|
@@ -300,6 +329,13 @@ declare class SliderComponent extends SliderBase implements AfterViewInit, Contr
|
|
|
300
329
|
increaseButton: ElementRef;
|
|
301
330
|
private focusChangedProgrammatically;
|
|
302
331
|
private isInvalid;
|
|
332
|
+
private _focusableId;
|
|
333
|
+
private _dragHandleTitle;
|
|
334
|
+
private _incrementTitle;
|
|
335
|
+
private _decrementTitle;
|
|
336
|
+
private _animate;
|
|
337
|
+
private _showButtons;
|
|
338
|
+
private _value;
|
|
303
339
|
constructor(localization: LocalizationService, injector: Injector, renderer: Renderer2, ngZone: NgZone, changeDetector: ChangeDetectorRef, hostElement: ElementRef);
|
|
304
340
|
/**
|
|
305
341
|
* Focuses the Slider.
|
|
@@ -412,7 +448,8 @@ declare class RangeSliderComponent extends SliderBase implements AfterViewInit,
|
|
|
412
448
|
* Sets the range value of the RangeSlider.
|
|
413
449
|
* Use either `ngModel` or the `value` binding, but not both at the same time.
|
|
414
450
|
*/
|
|
415
|
-
value: RangeSliderValue;
|
|
451
|
+
set value(value: RangeSliderValue);
|
|
452
|
+
get value(): RangeSliderValue;
|
|
416
453
|
draghandleStart: ElementRef;
|
|
417
454
|
draghandleEnd: ElementRef;
|
|
418
455
|
/**
|
|
@@ -432,6 +469,7 @@ declare class RangeSliderComponent extends SliderBase implements AfterViewInit,
|
|
|
432
469
|
private activeHandle;
|
|
433
470
|
private focusChangedProgrammatically;
|
|
434
471
|
private isInvalid;
|
|
472
|
+
private _value;
|
|
435
473
|
/**
|
|
436
474
|
* @hidden
|
|
437
475
|
*/
|
|
@@ -611,13 +649,15 @@ declare class SwitchComponent implements ControlValueAccessor, OnInit, OnDestroy
|
|
|
611
649
|
* This label takes precedence over the [custom messages component](https://www.telerik.com/kendo-angular-ui/components/inputs/api/switchcustommessagescomponent).
|
|
612
650
|
* [See example](https://www.telerik.com/kendo-angular-ui/components/inputs/switch/labels).
|
|
613
651
|
*/
|
|
614
|
-
onLabel: string;
|
|
652
|
+
set onLabel(value: string);
|
|
653
|
+
get onLabel(): string;
|
|
615
654
|
/**
|
|
616
655
|
* Set the **Off** label.
|
|
617
656
|
* This label takes precedence over the [custom messages component](https://www.telerik.com/kendo-angular-ui/components/inputs/api/switchcustommessagescomponent).
|
|
618
657
|
* [See example](https://www.telerik.com/kendo-angular-ui/components/inputs/switch/labels).
|
|
619
658
|
*/
|
|
620
|
-
offLabel: string;
|
|
659
|
+
set offLabel(value: string);
|
|
660
|
+
get offLabel(): string;
|
|
621
661
|
/**
|
|
622
662
|
* Sets the value of the Switch when it first appears.
|
|
623
663
|
*/
|
|
@@ -629,18 +669,21 @@ declare class SwitchComponent implements ControlValueAccessor, OnInit, OnDestroy
|
|
|
629
669
|
* 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).
|
|
630
670
|
* @default false
|
|
631
671
|
*/
|
|
632
|
-
disabled: boolean;
|
|
672
|
+
set disabled(value: boolean);
|
|
673
|
+
get disabled(): boolean;
|
|
633
674
|
/**
|
|
634
675
|
* When `true`, sets the Switch to read-only.
|
|
635
676
|
* [See example](https://www.telerik.com/kendo-angular-ui/components/inputs/switch/readonly-state).
|
|
636
677
|
* @default false
|
|
637
678
|
*/
|
|
638
|
-
readonly: boolean;
|
|
679
|
+
set readonly(value: boolean);
|
|
680
|
+
get readonly(): boolean;
|
|
639
681
|
/**
|
|
640
682
|
* Set the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the Switch.
|
|
641
683
|
* @default 0
|
|
642
684
|
*/
|
|
643
|
-
tabindex: number;
|
|
685
|
+
set tabindex(value: number);
|
|
686
|
+
get tabindex(): number;
|
|
644
687
|
/**
|
|
645
688
|
* Sets the size of the Switch. The default value is set by the Kendo theme.
|
|
646
689
|
*/
|
|
@@ -692,8 +735,14 @@ declare class SwitchComponent implements ControlValueAccessor, OnInit, OnDestroy
|
|
|
692
735
|
protected localizationChangeSubscription: Subscription;
|
|
693
736
|
protected isFocused: boolean;
|
|
694
737
|
protected control: NgControl;
|
|
738
|
+
private subscriptions;
|
|
695
739
|
private domSubscriptions;
|
|
696
740
|
private _checked;
|
|
741
|
+
private _disabled;
|
|
742
|
+
private _readonly;
|
|
743
|
+
private _tabindex;
|
|
744
|
+
private _onLabel;
|
|
745
|
+
private _offLabel;
|
|
697
746
|
private _focusableId;
|
|
698
747
|
private _size;
|
|
699
748
|
private _trackRounded;
|
|
@@ -855,11 +904,13 @@ declare class TextAreaDirective implements OnInit, OnDestroy, OnChanges, Control
|
|
|
855
904
|
*
|
|
856
905
|
* @default false
|
|
857
906
|
*/
|
|
858
|
-
autoSize: boolean;
|
|
907
|
+
set autoSize(autoSize: boolean);
|
|
908
|
+
get autoSize(): boolean;
|
|
859
909
|
/**
|
|
860
910
|
* Sets the textarea value.
|
|
861
911
|
*/
|
|
862
|
-
value: string;
|
|
912
|
+
set value(value: string);
|
|
913
|
+
get value(): string;
|
|
863
914
|
/**
|
|
864
915
|
* @hidden
|
|
865
916
|
*/
|
|
@@ -882,6 +933,8 @@ declare class TextAreaDirective implements OnInit, OnDestroy, OnChanges, Control
|
|
|
882
933
|
autoFillEnd: EventEmitter<any>;
|
|
883
934
|
get id(): string;
|
|
884
935
|
set id(id: string);
|
|
936
|
+
private _autoSize;
|
|
937
|
+
private _value;
|
|
885
938
|
private listeners;
|
|
886
939
|
private inputSubscription;
|
|
887
940
|
private initialHeight;
|
|
@@ -955,31 +1008,36 @@ declare class NumericTextBoxComponent implements ControlValueAccessor, OnChanges
|
|
|
955
1008
|
/**
|
|
956
1009
|
* @hidden
|
|
957
1010
|
*/
|
|
958
|
-
focusableId: string;
|
|
1011
|
+
set focusableId(value: string);
|
|
1012
|
+
get focusableId(): string;
|
|
959
1013
|
/**
|
|
960
1014
|
* When `true`, disables the `NumericTextBox`.
|
|
961
1015
|
* 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).
|
|
962
1016
|
*
|
|
963
1017
|
* @default false
|
|
964
1018
|
*/
|
|
965
|
-
disabled: boolean;
|
|
1019
|
+
set disabled(value: boolean);
|
|
1020
|
+
get disabled(): boolean;
|
|
966
1021
|
/**
|
|
967
1022
|
* When `true`, makes the NumericTextBox read-only.
|
|
968
1023
|
*
|
|
969
1024
|
* @default false
|
|
970
1025
|
*/
|
|
971
|
-
readonly: boolean;
|
|
1026
|
+
set readonly(value: boolean);
|
|
1027
|
+
get readonly(): boolean;
|
|
972
1028
|
/**
|
|
973
1029
|
* Sets the `title` attribute of the input element.
|
|
974
1030
|
*
|
|
975
1031
|
* @remarks
|
|
976
1032
|
* This property is related to accessibility.
|
|
977
1033
|
*/
|
|
978
|
-
title: string;
|
|
1034
|
+
set title(value: string);
|
|
1035
|
+
get title(): string;
|
|
979
1036
|
/**
|
|
980
1037
|
* 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)).
|
|
981
1038
|
*/
|
|
982
|
-
autoCorrect: boolean;
|
|
1039
|
+
set autoCorrect(value: boolean);
|
|
1040
|
+
get autoCorrect(): boolean;
|
|
983
1041
|
/**
|
|
984
1042
|
* Specifies the number format used when the NumericTextBox is not focused ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/formats)).
|
|
985
1043
|
* If `format` is `null` or `undefined`, the default format is used.
|
|
@@ -989,43 +1047,51 @@ declare class NumericTextBoxComponent implements ControlValueAccessor, OnChanges
|
|
|
989
1047
|
/**
|
|
990
1048
|
* Sets the maximum valid value ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/precision#value-ranges)).
|
|
991
1049
|
*/
|
|
992
|
-
max: number;
|
|
1050
|
+
set max(value: number);
|
|
1051
|
+
get max(): number;
|
|
993
1052
|
/**
|
|
994
1053
|
* Sets the minimum valid value ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/precision#value-ranges)).
|
|
995
1054
|
*/
|
|
996
|
-
min: number;
|
|
1055
|
+
set min(value: number);
|
|
1056
|
+
get min(): number;
|
|
997
1057
|
/**
|
|
998
1058
|
* 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)).
|
|
999
1059
|
*/
|
|
1000
|
-
decimals: number;
|
|
1060
|
+
set decimals(value: number);
|
|
1061
|
+
get decimals(): number;
|
|
1001
1062
|
/**
|
|
1002
1063
|
* Sets the input placeholder.
|
|
1003
1064
|
*/
|
|
1004
|
-
placeholder: string;
|
|
1065
|
+
set placeholder(value: string);
|
|
1066
|
+
get placeholder(): string;
|
|
1005
1067
|
/**
|
|
1006
1068
|
* 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)).
|
|
1007
1069
|
*
|
|
1008
1070
|
* @default 1
|
|
1009
1071
|
*/
|
|
1010
|
-
step: number;
|
|
1072
|
+
set step(value: number);
|
|
1073
|
+
get step(): number;
|
|
1011
1074
|
/**
|
|
1012
1075
|
* When `true`, renders the **Up** and **Down** spin buttons ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/spin-buttons)).
|
|
1013
1076
|
*
|
|
1014
1077
|
* @default true
|
|
1015
1078
|
*/
|
|
1016
|
-
spinners: boolean;
|
|
1079
|
+
set spinners(value: boolean);
|
|
1080
|
+
get spinners(): boolean;
|
|
1017
1081
|
/**
|
|
1018
1082
|
* Enforces the built-in minimum and maximum validators during form validation.
|
|
1019
1083
|
*
|
|
1020
1084
|
* @default true
|
|
1021
1085
|
*/
|
|
1022
|
-
rangeValidation: boolean;
|
|
1086
|
+
set rangeValidation(value: boolean);
|
|
1087
|
+
get rangeValidation(): boolean;
|
|
1023
1088
|
/**
|
|
1024
1089
|
* Sets the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
|
|
1025
1090
|
*
|
|
1026
1091
|
* @default 0
|
|
1027
1092
|
*/
|
|
1028
|
-
tabindex: number;
|
|
1093
|
+
set tabindex(value: number);
|
|
1094
|
+
get tabindex(): number;
|
|
1029
1095
|
/**
|
|
1030
1096
|
* @hidden
|
|
1031
1097
|
*/
|
|
@@ -1036,23 +1102,27 @@ declare class NumericTextBoxComponent implements ControlValueAccessor, OnChanges
|
|
|
1036
1102
|
*
|
|
1037
1103
|
* @default true
|
|
1038
1104
|
*/
|
|
1039
|
-
changeValueOnScroll: boolean;
|
|
1105
|
+
set changeValueOnScroll(value: boolean);
|
|
1106
|
+
get changeValueOnScroll(): boolean;
|
|
1040
1107
|
/**
|
|
1041
1108
|
* When `true`, enables selecting the entire value on click.
|
|
1042
1109
|
*
|
|
1043
1110
|
* @default true
|
|
1044
1111
|
*/
|
|
1045
|
-
selectOnFocus: boolean;
|
|
1112
|
+
set selectOnFocus(value: boolean);
|
|
1113
|
+
get selectOnFocus(): boolean;
|
|
1046
1114
|
/**
|
|
1047
1115
|
* Sets the value of the NumericTextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/formats)).
|
|
1048
1116
|
*/
|
|
1049
|
-
value: number;
|
|
1117
|
+
set value(value: number);
|
|
1118
|
+
get value(): number;
|
|
1050
1119
|
/**
|
|
1051
1120
|
* Sets the maximum number of characters the user can type or paste in the input.
|
|
1052
1121
|
* The locale-specific decimal separator and negative sign (`-`) count toward the length.
|
|
1053
1122
|
* The `maxlength` does not apply to the formatted value when the component is not focused.
|
|
1054
1123
|
*/
|
|
1055
|
-
maxlength: number;
|
|
1124
|
+
set maxlength(value: number);
|
|
1125
|
+
get maxlength(): number;
|
|
1056
1126
|
/**
|
|
1057
1127
|
* Sets the padding of the internal input element ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/appearance#size)). The default value is set by the Kendo theme.
|
|
1058
1128
|
*/
|
|
@@ -1118,7 +1188,7 @@ declare class NumericTextBoxComponent implements ControlValueAccessor, OnChanges
|
|
|
1118
1188
|
/**
|
|
1119
1189
|
* @hidden
|
|
1120
1190
|
*/
|
|
1121
|
-
arrowDirection: ArrowDirection
|
|
1191
|
+
arrowDirection: i0.WritableSignal<ArrowDirection>;
|
|
1122
1192
|
get disableClass(): boolean;
|
|
1123
1193
|
/**
|
|
1124
1194
|
* @hidden
|
|
@@ -1131,11 +1201,11 @@ declare class NumericTextBoxComponent implements ControlValueAccessor, OnChanges
|
|
|
1131
1201
|
protected subscriptions: Subscription;
|
|
1132
1202
|
protected inputValue: string;
|
|
1133
1203
|
protected spinTimeout: number;
|
|
1134
|
-
protected
|
|
1204
|
+
protected _isFocused: i0.WritableSignal<boolean>;
|
|
1135
1205
|
protected minValidateFn: any;
|
|
1136
1206
|
protected maxValidateFn: any;
|
|
1137
1207
|
protected numericRegex: RegExp;
|
|
1138
|
-
protected _format: string | NumberFormatOptions
|
|
1208
|
+
protected _format: i0.WritableSignal<string | NumberFormatOptions>;
|
|
1139
1209
|
protected previousSelection: any;
|
|
1140
1210
|
protected pressedKey: any;
|
|
1141
1211
|
protected control: NgControl;
|
|
@@ -1150,6 +1220,23 @@ declare class NumericTextBoxComponent implements ControlValueAccessor, OnChanges
|
|
|
1150
1220
|
private domEvents;
|
|
1151
1221
|
private _inputAttributes;
|
|
1152
1222
|
private parsedAttributes;
|
|
1223
|
+
private _focusableId;
|
|
1224
|
+
private _disabled;
|
|
1225
|
+
private _readonly;
|
|
1226
|
+
private _title;
|
|
1227
|
+
private _autoCorrect;
|
|
1228
|
+
private _min;
|
|
1229
|
+
private _max;
|
|
1230
|
+
private _decimals;
|
|
1231
|
+
private _placeholder;
|
|
1232
|
+
private _step;
|
|
1233
|
+
private _spinners;
|
|
1234
|
+
private _rangeValidation;
|
|
1235
|
+
private _tabindex;
|
|
1236
|
+
private _selectOnFocus;
|
|
1237
|
+
private _changeValueOnScroll;
|
|
1238
|
+
private _valueSignal;
|
|
1239
|
+
private _maxlength;
|
|
1153
1240
|
private get defaultAttributes();
|
|
1154
1241
|
private get mutableAttributes();
|
|
1155
1242
|
constructor(intl: IntlService, renderer: Renderer2, localizationService: LocalizationService, injector: Injector, ngZone: NgZone, changeDetector: ChangeDetectorRef, hostElement: ElementRef);
|
|
@@ -1325,11 +1412,15 @@ declare class NumericTextBoxMessages extends ComponentMessages {
|
|
|
1325
1412
|
/**
|
|
1326
1413
|
* Sets the title of the **Decrement** button in the NumericTextBox.
|
|
1327
1414
|
*/
|
|
1328
|
-
decrement: string;
|
|
1415
|
+
set decrement(value: string);
|
|
1416
|
+
get decrement(): string;
|
|
1329
1417
|
/**
|
|
1330
1418
|
* Sets the title of the **Increment** button in the NumericTextBox.
|
|
1331
1419
|
*/
|
|
1332
|
-
increment: string;
|
|
1420
|
+
set increment(value: string);
|
|
1421
|
+
get increment(): string;
|
|
1422
|
+
private _decrement;
|
|
1423
|
+
private _increment;
|
|
1333
1424
|
static ɵfac: i0.ɵɵFactoryDeclaration<NumericTextBoxMessages, never>;
|
|
1334
1425
|
static ɵdir: i0.ɵɵDirectiveDeclaration<NumericTextBoxMessages, "kendo-numerictextbox-messages-base", never, { "decrement": { "alias": "decrement"; "required": false; }; "increment": { "alias": "increment"; "required": false; }; }, {}, never, never, true, never>;
|
|
1335
1426
|
}
|
|
@@ -1423,7 +1514,7 @@ declare class MaskingService {
|
|
|
1423
1514
|
* }
|
|
1424
1515
|
* ```
|
|
1425
1516
|
*/
|
|
1426
|
-
declare class MaskedTextBoxComponent implements ControlValueAccessor,
|
|
1517
|
+
declare class MaskedTextBoxComponent implements ControlValueAccessor, Validator, OnDestroy, OnChanges {
|
|
1427
1518
|
private service;
|
|
1428
1519
|
private renderer;
|
|
1429
1520
|
hostElement: ElementRef;
|
|
@@ -1433,25 +1524,29 @@ declare class MaskedTextBoxComponent implements ControlValueAccessor, OnChanges,
|
|
|
1433
1524
|
/**
|
|
1434
1525
|
* @hidden
|
|
1435
1526
|
*/
|
|
1436
|
-
focusableId: string;
|
|
1527
|
+
set focusableId(value: string);
|
|
1528
|
+
get focusableId(): string;
|
|
1437
1529
|
/**
|
|
1438
1530
|
* Disables the MaskedTextBox when you set it to `true` ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox/disabled-state)).
|
|
1439
1531
|
* 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).
|
|
1440
1532
|
* @default false
|
|
1441
1533
|
*/
|
|
1442
|
-
disabled: boolean;
|
|
1534
|
+
set disabled(value: boolean);
|
|
1535
|
+
get disabled(): boolean;
|
|
1443
1536
|
/**
|
|
1444
1537
|
* When `true`, sets the MaskedTextBox to read-only mode ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox/readonly-state)).
|
|
1445
1538
|
* @default false
|
|
1446
1539
|
*/
|
|
1447
|
-
readonly: boolean;
|
|
1540
|
+
set readonly(value: boolean);
|
|
1541
|
+
get readonly(): boolean;
|
|
1448
1542
|
/**
|
|
1449
1543
|
* Sets the `title` attribute of the input element.
|
|
1450
1544
|
*
|
|
1451
1545
|
* @remarks
|
|
1452
1546
|
* This property is related to accessibility.
|
|
1453
1547
|
*/
|
|
1454
|
-
title: string;
|
|
1548
|
+
set title(value: string);
|
|
1549
|
+
get title(): string;
|
|
1455
1550
|
/**
|
|
1456
1551
|
* Sets the padding size of the MaskedTextBox input element ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox/appearance#size)). The default value is set by the Kendo theme.
|
|
1457
1552
|
*/
|
|
@@ -1474,11 +1569,13 @@ declare class MaskedTextBoxComponent implements ControlValueAccessor, OnChanges,
|
|
|
1474
1569
|
* If the mask allows spaces, set the [`promptPlaceholder`](https://www.telerik.com/kendo-angular-ui/components/inputs/api/maskedtextboxcomponent#promptplaceholder)
|
|
1475
1570
|
* to a character that the mask does not accept.
|
|
1476
1571
|
*/
|
|
1477
|
-
mask: string;
|
|
1572
|
+
set mask(value: string);
|
|
1573
|
+
get mask(): string;
|
|
1478
1574
|
/**
|
|
1479
1575
|
* Sets the value of the MaskedTextBox.
|
|
1480
1576
|
*/
|
|
1481
|
-
value: string;
|
|
1577
|
+
set value(value: string);
|
|
1578
|
+
get value(): string;
|
|
1482
1579
|
/**
|
|
1483
1580
|
* Sets the RegExp-based mask validation rules ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox/masks)).
|
|
1484
1581
|
*/
|
|
@@ -1488,36 +1585,38 @@ declare class MaskedTextBoxComponent implements ControlValueAccessor, OnChanges,
|
|
|
1488
1585
|
get rules(): {
|
|
1489
1586
|
[key: string]: RegExp;
|
|
1490
1587
|
};
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
* @default `_`
|
|
1494
|
-
*/
|
|
1495
|
-
prompt: string;
|
|
1588
|
+
set prompt(value: string);
|
|
1589
|
+
get prompt(): string;
|
|
1496
1590
|
/**
|
|
1497
1591
|
* Sets the character that represents an empty position in the raw value.
|
|
1498
1592
|
* @default ' '
|
|
1499
1593
|
*/
|
|
1500
|
-
promptPlaceholder: string;
|
|
1594
|
+
set promptPlaceholder(value: string);
|
|
1595
|
+
get promptPlaceholder(): string;
|
|
1501
1596
|
/**
|
|
1502
1597
|
* When `true` includes literals in the raw value ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox/value)).
|
|
1503
1598
|
* @default false
|
|
1504
1599
|
*/
|
|
1505
|
-
includeLiterals: boolean;
|
|
1600
|
+
set includeLiterals(value: boolean);
|
|
1601
|
+
get includeLiterals(): boolean;
|
|
1506
1602
|
/**
|
|
1507
1603
|
* Shows the mask on focus when the value is empty.
|
|
1508
1604
|
*/
|
|
1509
|
-
maskOnFocus: boolean;
|
|
1605
|
+
set maskOnFocus(value: boolean);
|
|
1606
|
+
get maskOnFocus(): boolean;
|
|
1510
1607
|
/**
|
|
1511
1608
|
* 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)).
|
|
1512
1609
|
* @default true
|
|
1513
1610
|
*/
|
|
1514
|
-
maskValidation: boolean;
|
|
1611
|
+
set maskValidation(value: boolean);
|
|
1612
|
+
get maskValidation(): boolean;
|
|
1515
1613
|
/**
|
|
1516
1614
|
* Sets the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) attribute of the component.
|
|
1517
1615
|
*
|
|
1518
1616
|
* @default 0
|
|
1519
1617
|
*/
|
|
1520
|
-
tabindex: number;
|
|
1618
|
+
set tabindex(value: number);
|
|
1619
|
+
get tabindex(): number;
|
|
1521
1620
|
/**
|
|
1522
1621
|
* @hidden
|
|
1523
1622
|
*/
|
|
@@ -1576,23 +1675,37 @@ declare class MaskedTextBoxComponent implements ControlValueAccessor, OnChanges,
|
|
|
1576
1675
|
* @hidden
|
|
1577
1676
|
*/
|
|
1578
1677
|
prefixTemplate: PrefixTemplateDirective;
|
|
1579
|
-
|
|
1580
|
-
private
|
|
1678
|
+
private _isFocused;
|
|
1679
|
+
private _maskedValue;
|
|
1581
1680
|
private focusClick;
|
|
1582
1681
|
private defaultRules;
|
|
1682
|
+
private _focusableId;
|
|
1683
|
+
private _disabled;
|
|
1684
|
+
private _readonly;
|
|
1685
|
+
private _title;
|
|
1686
|
+
private _size;
|
|
1687
|
+
private _rounded;
|
|
1688
|
+
private _fillMode;
|
|
1689
|
+
private _mask;
|
|
1690
|
+
private _value;
|
|
1691
|
+
private _prompt;
|
|
1692
|
+
private _promptPlaceholder;
|
|
1693
|
+
private _includeLiterals;
|
|
1694
|
+
private _maskOnFocus;
|
|
1695
|
+
private _maskValidation;
|
|
1696
|
+
private _tabindex;
|
|
1583
1697
|
private _rules;
|
|
1584
1698
|
private isPasted;
|
|
1585
1699
|
private selection;
|
|
1586
1700
|
private control;
|
|
1587
|
-
private _size;
|
|
1588
|
-
private _rounded;
|
|
1589
|
-
private _fillMode;
|
|
1590
1701
|
private _inputAttributes;
|
|
1591
1702
|
private parsedAttributes;
|
|
1592
1703
|
private pendingValueUpdate;
|
|
1704
|
+
private subscriptions;
|
|
1593
1705
|
constructor(service: MaskingService, renderer: Renderer2, hostElement: ElementRef, ngZone: NgZone, injector: Injector, changeDetector: ChangeDetectorRef, rtl: boolean);
|
|
1594
1706
|
ngOnInit(): void;
|
|
1595
1707
|
ngAfterViewInit(): void;
|
|
1708
|
+
ngOnDestroy(): void;
|
|
1596
1709
|
/**
|
|
1597
1710
|
* @hidden
|
|
1598
1711
|
* Used by the FloatingLabel to determine if the MaskedTextBox is empty.
|
|
@@ -1804,34 +1917,40 @@ declare class TextBoxComponent implements ControlValueAccessor {
|
|
|
1804
1917
|
/**
|
|
1805
1918
|
* @hidden
|
|
1806
1919
|
*/
|
|
1807
|
-
focusableId: string;
|
|
1920
|
+
set focusableId(value: string);
|
|
1921
|
+
get focusableId(): string;
|
|
1808
1922
|
/**
|
|
1809
1923
|
* Sets the `title` attribute of the `input` element of the TextBox.
|
|
1810
1924
|
*
|
|
1811
1925
|
* @remarks
|
|
1812
1926
|
* This property is related to accessibility.
|
|
1813
1927
|
*/
|
|
1814
|
-
title: string;
|
|
1928
|
+
set title(value: string);
|
|
1929
|
+
get title(): string;
|
|
1815
1930
|
/**
|
|
1816
1931
|
* Sets the `type` attribute of the `input` element of the TextBox.
|
|
1817
1932
|
* @default 'text'
|
|
1818
1933
|
*/
|
|
1819
|
-
type: InputType;
|
|
1934
|
+
set type(value: InputType);
|
|
1935
|
+
get type(): InputType;
|
|
1820
1936
|
/**
|
|
1821
1937
|
* 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).
|
|
1822
1938
|
* @default false
|
|
1823
1939
|
*/
|
|
1824
|
-
disabled: boolean;
|
|
1940
|
+
set disabled(value: boolean);
|
|
1941
|
+
get disabled(): boolean;
|
|
1825
1942
|
/**
|
|
1826
1943
|
* Sets the read-only state of the component.
|
|
1827
1944
|
* @default false
|
|
1828
1945
|
*/
|
|
1829
|
-
readonly: boolean;
|
|
1946
|
+
set readonly(value: boolean);
|
|
1947
|
+
get readonly(): boolean;
|
|
1830
1948
|
/**
|
|
1831
1949
|
* Specifies the `tabindex` of the TextBox.
|
|
1832
1950
|
* @default 0
|
|
1833
1951
|
*/
|
|
1834
|
-
tabindex: number;
|
|
1952
|
+
set tabindex(value: number);
|
|
1953
|
+
get tabindex(): number;
|
|
1835
1954
|
/**
|
|
1836
1955
|
* Provides a value for the TextBox.
|
|
1837
1956
|
*/
|
|
@@ -1841,48 +1960,58 @@ declare class TextBoxComponent implements ControlValueAccessor {
|
|
|
1841
1960
|
* Highlights the whole value when you click the TextBox.
|
|
1842
1961
|
* @default false
|
|
1843
1962
|
*/
|
|
1844
|
-
selectOnFocus: boolean;
|
|
1963
|
+
set selectOnFocus(value: boolean);
|
|
1964
|
+
get selectOnFocus(): boolean;
|
|
1845
1965
|
/**
|
|
1846
1966
|
* Specifies when to show the Success icon ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/validation-icons)).
|
|
1847
1967
|
*
|
|
1848
1968
|
* @default false
|
|
1849
1969
|
*/
|
|
1850
|
-
showSuccessIcon: IconShowOptions;
|
|
1970
|
+
set showSuccessIcon(value: IconShowOptions);
|
|
1971
|
+
get showSuccessIcon(): IconShowOptions;
|
|
1851
1972
|
/**
|
|
1852
1973
|
* Specifies when to show the Error icon ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/validation-icons)).
|
|
1853
1974
|
*
|
|
1854
1975
|
* @default false
|
|
1855
1976
|
*/
|
|
1856
|
-
showErrorIcon: IconShowOptions;
|
|
1977
|
+
set showErrorIcon(value: IconShowOptions);
|
|
1978
|
+
get showErrorIcon(): IconShowOptions;
|
|
1857
1979
|
/**
|
|
1858
1980
|
* Shows a **Clear** button in the TextBox.
|
|
1859
1981
|
* @default false
|
|
1860
1982
|
*/
|
|
1861
|
-
clearButton: boolean;
|
|
1983
|
+
set clearButton(value: boolean);
|
|
1984
|
+
get clearButton(): boolean;
|
|
1862
1985
|
/**
|
|
1863
1986
|
* Sets a custom icon for valid user input.
|
|
1864
1987
|
*/
|
|
1865
|
-
successIcon: string;
|
|
1988
|
+
set successIcon(value: string);
|
|
1989
|
+
get successIcon(): string;
|
|
1866
1990
|
/**
|
|
1867
1991
|
* Sets a custom SVG icon for valid user input.
|
|
1868
1992
|
*/
|
|
1869
|
-
successSvgIcon: SVGIcon$1;
|
|
1993
|
+
set successSvgIcon(value: SVGIcon$1);
|
|
1994
|
+
get successSvgIcon(): SVGIcon$1;
|
|
1870
1995
|
/**
|
|
1871
1996
|
* Sets a custom icon for invalid user input.
|
|
1872
1997
|
*/
|
|
1873
|
-
errorIcon: string;
|
|
1998
|
+
set errorIcon(value: string);
|
|
1999
|
+
get errorIcon(): string;
|
|
1874
2000
|
/**
|
|
1875
2001
|
* Sets a custom SVG icon for invalid user input.
|
|
1876
2002
|
*/
|
|
1877
|
-
errorSvgIcon: SVGIcon$1;
|
|
2003
|
+
set errorSvgIcon(value: SVGIcon$1);
|
|
2004
|
+
get errorSvgIcon(): SVGIcon$1;
|
|
1878
2005
|
/**
|
|
1879
2006
|
* Sets a custom icon for the **Clear** button.
|
|
1880
2007
|
*/
|
|
1881
|
-
clearButtonIcon: string;
|
|
2008
|
+
set clearButtonIcon(value: string);
|
|
2009
|
+
get clearButtonIcon(): string;
|
|
1882
2010
|
/**
|
|
1883
2011
|
* Sets a custom SVG icon for the **Clear** button.
|
|
1884
2012
|
*/
|
|
1885
|
-
clearButtonSvgIcon: SVGIcon$1;
|
|
2013
|
+
set clearButtonSvgIcon(value: SVGIcon$1);
|
|
2014
|
+
get clearButtonSvgIcon(): SVGIcon$1;
|
|
1886
2015
|
/**
|
|
1887
2016
|
* 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.
|
|
1888
2017
|
*/
|
|
@@ -1901,16 +2030,18 @@ declare class TextBoxComponent implements ControlValueAccessor {
|
|
|
1901
2030
|
/**
|
|
1902
2031
|
* @hidden
|
|
1903
2032
|
*/
|
|
1904
|
-
set tabIndex(
|
|
2033
|
+
set tabIndex(value: number);
|
|
1905
2034
|
get tabIndex(): number;
|
|
1906
2035
|
/**
|
|
1907
2036
|
* Sets the placeholder text displayed when the component is empty.
|
|
1908
2037
|
*/
|
|
1909
|
-
placeholder: string;
|
|
2038
|
+
set placeholder(value: string);
|
|
2039
|
+
get placeholder(): string;
|
|
1910
2040
|
/**
|
|
1911
2041
|
* Sets the maximum length of the TextBox value.
|
|
1912
2042
|
*/
|
|
1913
|
-
maxlength: number;
|
|
2043
|
+
set maxlength(value: number);
|
|
2044
|
+
get maxlength(): number;
|
|
1914
2045
|
/**
|
|
1915
2046
|
* Sets the HTML attributes of the inner focusable input element. You cannot change attributes that are essential for component functionality.
|
|
1916
2047
|
*/
|
|
@@ -1968,7 +2099,7 @@ declare class TextBoxComponent implements ControlValueAccessor {
|
|
|
1968
2099
|
/**
|
|
1969
2100
|
* @hidden
|
|
1970
2101
|
*/
|
|
1971
|
-
showClearButton: boolean
|
|
2102
|
+
showClearButton: i0.Signal<boolean>;
|
|
1972
2103
|
/**
|
|
1973
2104
|
* @hidden
|
|
1974
2105
|
*/
|
|
@@ -1983,20 +2114,37 @@ declare class TextBoxComponent implements ControlValueAccessor {
|
|
|
1983
2114
|
prefix: TextBoxPrefixTemplateDirective | PrefixTemplateDirective;
|
|
1984
2115
|
protected control: NgControl;
|
|
1985
2116
|
protected subscriptions: Subscription;
|
|
2117
|
+
private _focusableId;
|
|
2118
|
+
private _title;
|
|
2119
|
+
private _type;
|
|
2120
|
+
private _disabled;
|
|
2121
|
+
private _readonly;
|
|
2122
|
+
private _tabindex;
|
|
1986
2123
|
private _value;
|
|
1987
|
-
private
|
|
1988
|
-
private
|
|
1989
|
-
private
|
|
2124
|
+
private _selectOnFocus;
|
|
2125
|
+
private _showSuccessIcon;
|
|
2126
|
+
private _showErrorIcon;
|
|
2127
|
+
private _clearButton;
|
|
2128
|
+
private _successIcon;
|
|
2129
|
+
private _successSvgIcon;
|
|
2130
|
+
private _errorIcon;
|
|
2131
|
+
private _errorSvgIcon;
|
|
2132
|
+
private _clearButtonIcon;
|
|
2133
|
+
private _clearButtonSvgIcon;
|
|
1990
2134
|
private _size;
|
|
1991
2135
|
private _rounded;
|
|
1992
2136
|
private _fillMode;
|
|
2137
|
+
private _placeholder;
|
|
2138
|
+
private _maxlength;
|
|
2139
|
+
private _inputAttributes;
|
|
2140
|
+
private _isFocused;
|
|
2141
|
+
private focusChangedProgrammatically;
|
|
1993
2142
|
private parsedAttributes;
|
|
1994
2143
|
private get defaultAttributes();
|
|
1995
2144
|
constructor(localizationService: LocalizationService, ngZone: NgZone, changeDetector: ChangeDetectorRef, renderer: Renderer2, injector: Injector, hostElement: ElementRef);
|
|
1996
2145
|
ngOnInit(): void;
|
|
1997
2146
|
ngAfterViewInit(): void;
|
|
1998
2147
|
ngAfterContentInit(): void;
|
|
1999
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
2000
2148
|
ngOnDestroy(): void;
|
|
2001
2149
|
/**
|
|
2002
2150
|
* @hidden
|
|
@@ -2026,10 +2174,6 @@ declare class TextBoxComponent implements ControlValueAccessor {
|
|
|
2026
2174
|
* @hidden
|
|
2027
2175
|
*/
|
|
2028
2176
|
clearTitle(): string;
|
|
2029
|
-
/**
|
|
2030
|
-
* @hidden
|
|
2031
|
-
*/
|
|
2032
|
-
checkClearButton(): void;
|
|
2033
2177
|
/**
|
|
2034
2178
|
* @hidden
|
|
2035
2179
|
*/
|
|
@@ -2191,7 +2335,9 @@ declare class TextBoxMessages extends ComponentMessages {
|
|
|
2191
2335
|
/**
|
|
2192
2336
|
* The title of the **Clear** button of the TextBox.
|
|
2193
2337
|
*/
|
|
2194
|
-
clear: string;
|
|
2338
|
+
set clear(value: string);
|
|
2339
|
+
get clear(): string;
|
|
2340
|
+
private _clear;
|
|
2195
2341
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextBoxMessages, never>;
|
|
2196
2342
|
static ɵdir: i0.ɵɵDirectiveDeclaration<TextBoxMessages, "kendo-textbox-messages-base", never, { "clear": { "alias": "clear"; "required": false; }; }, {}, never, never, true, never>;
|
|
2197
2343
|
}
|
|
@@ -2343,11 +2489,15 @@ declare class TextAreaPrefixComponent {
|
|
|
2343
2489
|
/**
|
|
2344
2490
|
* @hidden
|
|
2345
2491
|
*/
|
|
2346
|
-
flow:
|
|
2492
|
+
set flow(flow: TextAreaFlow);
|
|
2493
|
+
get flow(): TextAreaFlow;
|
|
2347
2494
|
/**
|
|
2348
2495
|
* @hidden
|
|
2349
2496
|
*/
|
|
2350
|
-
orientation:
|
|
2497
|
+
set orientation(orientation: TextAreaAdornmentsOrientation);
|
|
2498
|
+
get orientation(): TextAreaAdornmentsOrientation;
|
|
2499
|
+
private _flow;
|
|
2500
|
+
private _orientation;
|
|
2351
2501
|
hostClass: boolean;
|
|
2352
2502
|
get verticalOrientation(): boolean;
|
|
2353
2503
|
get horizontalOrientation(): boolean;
|
|
@@ -2372,13 +2522,17 @@ declare class TextAreaPrefixComponent {
|
|
|
2372
2522
|
*/
|
|
2373
2523
|
declare class TextAreaSuffixComponent {
|
|
2374
2524
|
/**
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
flow:
|
|
2525
|
+
* @hidden
|
|
2526
|
+
*/
|
|
2527
|
+
set flow(flow: TextAreaFlow);
|
|
2528
|
+
get flow(): TextAreaFlow;
|
|
2378
2529
|
/**
|
|
2379
2530
|
* @hidden
|
|
2380
2531
|
*/
|
|
2381
|
-
orientation:
|
|
2532
|
+
set orientation(orientation: TextAreaAdornmentsOrientation);
|
|
2533
|
+
get orientation(): TextAreaAdornmentsOrientation;
|
|
2534
|
+
private _flow;
|
|
2535
|
+
private _orientation;
|
|
2382
2536
|
hostClass: boolean;
|
|
2383
2537
|
get verticalOrientation(): boolean;
|
|
2384
2538
|
get horizontalOrientation(): boolean;
|
|
@@ -2400,7 +2554,7 @@ declare class TextAreaSuffixComponent {
|
|
|
2400
2554
|
* @remarks
|
|
2401
2555
|
* Supported children components are: {@link TextAreaPrefixComponent}, {@link TextAreaSuffixComponent}.
|
|
2402
2556
|
*/
|
|
2403
|
-
declare class TextAreaComponent extends TextFieldsBase implements ControlValueAccessor, OnInit,
|
|
2557
|
+
declare class TextAreaComponent extends TextFieldsBase implements ControlValueAccessor, OnInit, AfterViewInit, AfterContentInit, OnDestroy {
|
|
2404
2558
|
protected localizationService: LocalizationService;
|
|
2405
2559
|
protected ngZone: NgZone;
|
|
2406
2560
|
protected changeDetector: ChangeDetectorRef;
|
|
@@ -2410,10 +2564,10 @@ declare class TextAreaComponent extends TextFieldsBase implements ControlValueAc
|
|
|
2410
2564
|
/**
|
|
2411
2565
|
* @hidden
|
|
2412
2566
|
*/
|
|
2413
|
-
focusableId: string;
|
|
2567
|
+
set focusableId(value: string);
|
|
2568
|
+
get focusableId(): string;
|
|
2414
2569
|
get flowCol(): boolean;
|
|
2415
2570
|
get flowRow(): boolean;
|
|
2416
|
-
private _flow;
|
|
2417
2571
|
/**
|
|
2418
2572
|
* Specifies the flow direction of the TextArea sections. Use this property to set the position of adornments relative to the text area.
|
|
2419
2573
|
*/
|
|
@@ -2437,24 +2591,29 @@ declare class TextAreaComponent extends TextFieldsBase implements ControlValueAc
|
|
|
2437
2591
|
/**
|
|
2438
2592
|
* Sets the visible height of the text area in lines.
|
|
2439
2593
|
*/
|
|
2440
|
-
rows: number;
|
|
2594
|
+
set rows(value: number);
|
|
2595
|
+
get rows(): number;
|
|
2441
2596
|
/**
|
|
2442
2597
|
* Sets the visible width of the text area in average character width.
|
|
2443
2598
|
*/
|
|
2444
|
-
cols: number;
|
|
2599
|
+
set cols(value: number);
|
|
2600
|
+
get cols(): number;
|
|
2445
2601
|
/**
|
|
2446
2602
|
* Sets the maximum number of characters allowed in the text area.
|
|
2447
2603
|
*/
|
|
2448
|
-
maxlength: number;
|
|
2604
|
+
set maxlength(value: number);
|
|
2605
|
+
get maxlength(): number;
|
|
2449
2606
|
/**
|
|
2450
2607
|
* @hidden
|
|
2451
2608
|
*/
|
|
2452
|
-
maxResizableRows: number;
|
|
2609
|
+
set maxResizableRows(value: number);
|
|
2610
|
+
get maxResizableRows(): number;
|
|
2453
2611
|
/**
|
|
2454
2612
|
* Sets the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
|
|
2455
2613
|
* @default 0
|
|
2456
2614
|
*/
|
|
2457
|
-
tabindex: number;
|
|
2615
|
+
set tabindex(value: number);
|
|
2616
|
+
get tabindex(): number;
|
|
2458
2617
|
/**
|
|
2459
2618
|
* @hidden
|
|
2460
2619
|
*/
|
|
@@ -2466,7 +2625,8 @@ declare class TextAreaComponent extends TextFieldsBase implements ControlValueAc
|
|
|
2466
2625
|
*
|
|
2467
2626
|
* @default 'vertical'
|
|
2468
2627
|
*/
|
|
2469
|
-
resizable: TextAreaResize;
|
|
2628
|
+
set resizable(value: TextAreaResize);
|
|
2629
|
+
get resizable(): TextAreaResize;
|
|
2470
2630
|
/**
|
|
2471
2631
|
* 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.
|
|
2472
2632
|
*/
|
|
@@ -2488,14 +2648,21 @@ declare class TextAreaComponent extends TextFieldsBase implements ControlValueAc
|
|
|
2488
2648
|
*
|
|
2489
2649
|
* @default false
|
|
2490
2650
|
*/
|
|
2491
|
-
showPrefixSeparator: boolean;
|
|
2651
|
+
set showPrefixSeparator(value: boolean);
|
|
2652
|
+
get showPrefixSeparator(): boolean;
|
|
2492
2653
|
/**
|
|
2493
2654
|
* Shows the suffix separator in the TextArea.
|
|
2494
2655
|
* The separator is rendered only if a suffix template is declared.
|
|
2495
2656
|
*
|
|
2496
2657
|
* @default false
|
|
2497
2658
|
*/
|
|
2498
|
-
showSuffixSeparator: boolean;
|
|
2659
|
+
set showSuffixSeparator(value: boolean);
|
|
2660
|
+
get showSuffixSeparator(): boolean;
|
|
2661
|
+
/**
|
|
2662
|
+
* Provides a value for the TextArea component.
|
|
2663
|
+
*/
|
|
2664
|
+
set value(value: string);
|
|
2665
|
+
get value(): string;
|
|
2499
2666
|
/**
|
|
2500
2667
|
* Fires when the TextArea is focused.
|
|
2501
2668
|
*
|
|
@@ -2518,11 +2685,22 @@ declare class TextAreaComponent extends TextFieldsBase implements ControlValueAc
|
|
|
2518
2685
|
private maxResizableHeight;
|
|
2519
2686
|
private resizeSubscription;
|
|
2520
2687
|
private resizeObserver;
|
|
2688
|
+
private _focusableId;
|
|
2689
|
+
private _flow;
|
|
2690
|
+
private _adornmentsOrientation;
|
|
2691
|
+
private _inputAttributes;
|
|
2692
|
+
private _rows;
|
|
2693
|
+
private _cols;
|
|
2694
|
+
private _maxlength;
|
|
2695
|
+
private _maxResizableRows;
|
|
2696
|
+
private _tabindex;
|
|
2697
|
+
private _resizable;
|
|
2521
2698
|
private _size;
|
|
2522
2699
|
private _rounded;
|
|
2523
2700
|
private _fillMode;
|
|
2524
|
-
private
|
|
2525
|
-
private
|
|
2701
|
+
private _showPrefixSeparator;
|
|
2702
|
+
private _showSuffixSeparator;
|
|
2703
|
+
private _valueState;
|
|
2526
2704
|
private parsedAttributes;
|
|
2527
2705
|
private get defaultAttributes();
|
|
2528
2706
|
constructor(localizationService: LocalizationService, ngZone: NgZone, changeDetector: ChangeDetectorRef, renderer: Renderer2, injector: Injector, hostElement: ElementRef);
|
|
@@ -2608,7 +2786,7 @@ declare class TextAreaComponent extends TextFieldsBase implements ControlValueAc
|
|
|
2608
2786
|
private handleFlow;
|
|
2609
2787
|
private setInputAttributes;
|
|
2610
2788
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaComponent, never>;
|
|
2611
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "kendo-textarea", ["kendoTextArea"], { "focusableId": { "alias": "focusableId"; "required": false; }; "flow": { "alias": "flow"; "required": false; }; "inputAttributes": { "alias": "inputAttributes"; "required": false; }; "adornmentsOrientation": { "alias": "adornmentsOrientation"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "maxResizableRows": { "alias": "maxResizableRows"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "showPrefixSeparator": { "alias": "showPrefixSeparator"; "required": false; }; "showSuffixSeparator": { "alias": "showSuffixSeparator"; "required": false; }; }, { "onFocus": "focus"; "onBlur": "blur"; "valueChange": "valueChange"; }, ["prefix", "suffix"], ["kendo-textarea-prefix", "kendo-textarea-suffix"], true, never>;
|
|
2789
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "kendo-textarea", ["kendoTextArea"], { "focusableId": { "alias": "focusableId"; "required": false; }; "flow": { "alias": "flow"; "required": false; }; "inputAttributes": { "alias": "inputAttributes"; "required": false; }; "adornmentsOrientation": { "alias": "adornmentsOrientation"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "maxResizableRows": { "alias": "maxResizableRows"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "showPrefixSeparator": { "alias": "showPrefixSeparator"; "required": false; }; "showSuffixSeparator": { "alias": "showSuffixSeparator"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "onFocus": "focus"; "onBlur": "blur"; "valueChange": "valueChange"; }, ["prefix", "suffix"], ["kendo-textarea-prefix", "kendo-textarea-suffix"], true, never>;
|
|
2612
2790
|
}
|
|
2613
2791
|
|
|
2614
2792
|
/**
|
|
@@ -2643,30 +2821,35 @@ declare class RadioCheckBoxBase implements ControlValueAccessor {
|
|
|
2643
2821
|
/**
|
|
2644
2822
|
* @hidden
|
|
2645
2823
|
*/
|
|
2646
|
-
focusableId: string;
|
|
2824
|
+
set focusableId(value: string);
|
|
2825
|
+
get focusableId(): string;
|
|
2647
2826
|
/**
|
|
2648
2827
|
* Sets the `title` attribute of the `input` element of the component.
|
|
2649
2828
|
*
|
|
2650
2829
|
* @remarks
|
|
2651
2830
|
* This property is related to accessibility.
|
|
2652
2831
|
*/
|
|
2653
|
-
title: string;
|
|
2832
|
+
set title(value: string);
|
|
2833
|
+
get title(): string;
|
|
2654
2834
|
/**
|
|
2655
2835
|
* Sets the `name` attribute for the component.
|
|
2656
2836
|
*/
|
|
2657
|
-
name: string;
|
|
2837
|
+
set name(value: string);
|
|
2838
|
+
get name(): string;
|
|
2658
2839
|
/**
|
|
2659
2840
|
* Sets the disabled state of the component.
|
|
2660
2841
|
*
|
|
2661
2842
|
* @default false
|
|
2662
2843
|
*/
|
|
2663
|
-
disabled: boolean;
|
|
2844
|
+
set disabled(value: boolean);
|
|
2845
|
+
get disabled(): boolean;
|
|
2664
2846
|
/**
|
|
2665
2847
|
* Specifies the `tabindex` of the component.
|
|
2666
2848
|
*
|
|
2667
2849
|
* @default 0
|
|
2668
2850
|
*/
|
|
2669
|
-
tabindex: number;
|
|
2851
|
+
set tabindex(value: number);
|
|
2852
|
+
get tabindex(): number;
|
|
2670
2853
|
/**
|
|
2671
2854
|
* @hidden
|
|
2672
2855
|
*/
|
|
@@ -2675,7 +2858,8 @@ declare class RadioCheckBoxBase implements ControlValueAccessor {
|
|
|
2675
2858
|
/**
|
|
2676
2859
|
* Provides a value for the component.
|
|
2677
2860
|
*/
|
|
2678
|
-
value: string;
|
|
2861
|
+
set value(val: string);
|
|
2862
|
+
get value(): string;
|
|
2679
2863
|
/**
|
|
2680
2864
|
* The size property specifies the width and height of the component. The default value is set by the Kendo theme.
|
|
2681
2865
|
*
|
|
@@ -2768,13 +2952,17 @@ declare class RadioCheckBoxBase implements ControlValueAccessor {
|
|
|
2768
2952
|
protected parsedAttributes: {
|
|
2769
2953
|
[key: string]: string;
|
|
2770
2954
|
};
|
|
2771
|
-
protected _inputAttributes: {
|
|
2772
|
-
[key: string]: string;
|
|
2773
|
-
};
|
|
2774
2955
|
protected ngChange: Function;
|
|
2775
2956
|
protected ngTouched: Function;
|
|
2776
2957
|
private _isFocused;
|
|
2958
|
+
private _focusableId;
|
|
2959
|
+
private _title;
|
|
2960
|
+
private _name;
|
|
2961
|
+
private _disabled;
|
|
2962
|
+
private _tabindex;
|
|
2963
|
+
private _value;
|
|
2777
2964
|
private _size;
|
|
2965
|
+
private _inputAttributes;
|
|
2778
2966
|
constructor(componentType: ComponentType, hostElement: ElementRef, renderer: Renderer2, cdr: ChangeDetectorRef, ngZone: NgZone, injector: Injector);
|
|
2779
2967
|
/**
|
|
2780
2968
|
* @hidden
|
|
@@ -2795,7 +2983,7 @@ declare class RadioCheckBoxBase implements ControlValueAccessor {
|
|
|
2795
2983
|
* <kendo-checkbox [(checkedState)]="value"></kendo-checkbox>
|
|
2796
2984
|
* ```
|
|
2797
2985
|
*/
|
|
2798
|
-
declare class CheckBoxComponent extends RadioCheckBoxBase implements ControlValueAccessor, OnInit, AfterViewInit {
|
|
2986
|
+
declare class CheckBoxComponent extends RadioCheckBoxBase implements ControlValueAccessor, OnInit, AfterViewInit, OnDestroy {
|
|
2799
2987
|
protected renderer: Renderer2;
|
|
2800
2988
|
hostElement: ElementRef;
|
|
2801
2989
|
protected cdr: ChangeDetectorRef;
|
|
@@ -2832,9 +3020,11 @@ declare class CheckBoxComponent extends RadioCheckBoxBase implements ControlValu
|
|
|
2832
3020
|
*/
|
|
2833
3021
|
get isIndeterminate(): boolean;
|
|
2834
3022
|
protected get defaultAttributes(): any;
|
|
3023
|
+
private subs;
|
|
2835
3024
|
private _rounded;
|
|
2836
3025
|
private _checkedState;
|
|
2837
3026
|
constructor(renderer: Renderer2, hostElement: ElementRef, cdr: ChangeDetectorRef, ngZone: NgZone, injector: Injector);
|
|
3027
|
+
ngOnDestroy(): void;
|
|
2838
3028
|
ngAfterViewInit(): void;
|
|
2839
3029
|
/**
|
|
2840
3030
|
* @hidden
|
|
@@ -2909,7 +3099,8 @@ declare class RadioButtonComponent extends RadioCheckBoxBase implements ControlV
|
|
|
2909
3099
|
*
|
|
2910
3100
|
* @default false
|
|
2911
3101
|
*/
|
|
2912
|
-
checked: boolean;
|
|
3102
|
+
set checked(value: boolean);
|
|
3103
|
+
get checked(): boolean;
|
|
2913
3104
|
/**
|
|
2914
3105
|
* Fires when the checked state changes.
|
|
2915
3106
|
* The event does not fire when you change the state through `ngModel` or `formControl` bindings.
|
|
@@ -2917,6 +3108,7 @@ declare class RadioButtonComponent extends RadioCheckBoxBase implements ControlV
|
|
|
2917
3108
|
*/
|
|
2918
3109
|
checkedChange: EventEmitter<boolean>;
|
|
2919
3110
|
private subs;
|
|
3111
|
+
private _checked;
|
|
2920
3112
|
protected get defaultAttributes(): any;
|
|
2921
3113
|
constructor(renderer: Renderer2, hostElement: ElementRef, cdr: ChangeDetectorRef, ngZone: NgZone, injector: Injector, localizationService: LocalizationService);
|
|
2922
3114
|
ngOnInit(): void;
|
|
@@ -2968,11 +3160,15 @@ declare class Messages extends ComponentMessages {
|
|
|
2968
3160
|
/**
|
|
2969
3161
|
* The title of the **On** button of the Switch.
|
|
2970
3162
|
*/
|
|
2971
|
-
on: string;
|
|
3163
|
+
set on(value: string);
|
|
3164
|
+
get on(): string;
|
|
2972
3165
|
/**
|
|
2973
3166
|
* The title of the **Off** button of the Switch.
|
|
2974
3167
|
*/
|
|
2975
|
-
off: string;
|
|
3168
|
+
set off(value: string);
|
|
3169
|
+
get off(): string;
|
|
3170
|
+
private _on;
|
|
3171
|
+
private _off;
|
|
2976
3172
|
static ɵfac: i0.ɵɵFactoryDeclaration<Messages, never>;
|
|
2977
3173
|
static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, "kendo-switch-messages-base", never, { "on": { "alias": "on"; "required": false; }; "off": { "alias": "off"; "required": false; }; }, {}, never, never, true, never>;
|
|
2978
3174
|
}
|
|
@@ -3077,17 +3273,20 @@ declare class FormComponent implements AfterContentInit, OnChanges, OnDestroy {
|
|
|
3077
3273
|
*
|
|
3078
3274
|
* @default 'vertical'
|
|
3079
3275
|
*/
|
|
3080
|
-
orientation: Orientation;
|
|
3276
|
+
set orientation(orientation: Orientation);
|
|
3277
|
+
get orientation(): Orientation;
|
|
3081
3278
|
/**
|
|
3082
3279
|
* Defines the number of columns in the form.
|
|
3083
3280
|
* Can be a number or an array of responsive breakpoints.
|
|
3084
3281
|
*/
|
|
3085
|
-
cols: number | ResponsiveFormBreakPoint[];
|
|
3282
|
+
set cols(cols: number | ResponsiveFormBreakPoint[]);
|
|
3283
|
+
get cols(): number | ResponsiveFormBreakPoint[];
|
|
3086
3284
|
/**
|
|
3087
3285
|
* Defines the gutters for the form.
|
|
3088
3286
|
* You can specify gutters for rows and columns.
|
|
3089
3287
|
*/
|
|
3090
|
-
gutters: number | string | ResponsiveFormBreakPoint[] | Gutters;
|
|
3288
|
+
set gutters(gutters: number | string | ResponsiveFormBreakPoint[] | Gutters);
|
|
3289
|
+
get gutters(): number | string | ResponsiveFormBreakPoint[] | Gutters;
|
|
3091
3290
|
/**
|
|
3092
3291
|
* @hidden
|
|
3093
3292
|
*/
|
|
@@ -3107,6 +3306,9 @@ declare class FormComponent implements AfterContentInit, OnChanges, OnDestroy {
|
|
|
3107
3306
|
get formClass(): string;
|
|
3108
3307
|
get horizontalClass(): boolean;
|
|
3109
3308
|
direction: string;
|
|
3309
|
+
private _orientation;
|
|
3310
|
+
private _cols;
|
|
3311
|
+
private _gutters;
|
|
3110
3312
|
private _formColumnsNumber;
|
|
3111
3313
|
private _formGutters;
|
|
3112
3314
|
private subscriptions;
|
|
@@ -3138,7 +3340,9 @@ declare class FormSeparatorComponent implements OnChanges, OnDestroy {
|
|
|
3138
3340
|
* Defines the colspan for the separator element related to the parent Form component columns.
|
|
3139
3341
|
* Can be a number or an array of responsive breakpoints.
|
|
3140
3342
|
*/
|
|
3141
|
-
colSpan: number | ResponsiveFormBreakPoint[];
|
|
3343
|
+
set colSpan(colSpan: number | ResponsiveFormBreakPoint[]);
|
|
3344
|
+
get colSpan(): number | ResponsiveFormBreakPoint[];
|
|
3345
|
+
private _colSpan;
|
|
3142
3346
|
private _formWidth;
|
|
3143
3347
|
private _colSpanClass;
|
|
3144
3348
|
private _previousColSpan;
|
|
@@ -3168,22 +3372,26 @@ declare class FormFieldSetComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
3168
3372
|
/**
|
|
3169
3373
|
* Defines the legend for the fieldset.
|
|
3170
3374
|
*/
|
|
3171
|
-
legend: string;
|
|
3375
|
+
set legend(legend: string);
|
|
3376
|
+
get legend(): string;
|
|
3172
3377
|
/**
|
|
3173
3378
|
* Defines the number of columns of the fieldset.
|
|
3174
3379
|
* Can be a number or an array of responsive breakpoints.
|
|
3175
3380
|
*/
|
|
3176
|
-
cols: number | ResponsiveFormBreakPoint[];
|
|
3381
|
+
set cols(cols: number | ResponsiveFormBreakPoint[]);
|
|
3382
|
+
get cols(): number | ResponsiveFormBreakPoint[];
|
|
3177
3383
|
/**
|
|
3178
3384
|
* Defines the gutters for the fieldset.
|
|
3179
3385
|
* You can specify gutters for rows and columns.
|
|
3180
3386
|
*/
|
|
3181
|
-
gutters: number | string | ResponsiveFormBreakPoint[] | Gutters;
|
|
3387
|
+
set gutters(gutters: number | string | ResponsiveFormBreakPoint[] | Gutters);
|
|
3388
|
+
get gutters(): number | string | ResponsiveFormBreakPoint[] | Gutters;
|
|
3182
3389
|
/**
|
|
3183
3390
|
* Defines the colspan for the fieldset related to the parent Form component columns.
|
|
3184
3391
|
* Can be a number or an array of responsive breakpoints.
|
|
3185
3392
|
*/
|
|
3186
|
-
colSpan: number | ResponsiveFormBreakPoint[];
|
|
3393
|
+
set colSpan(colSpan: number | ResponsiveFormBreakPoint[]);
|
|
3394
|
+
get colSpan(): number | ResponsiveFormBreakPoint[];
|
|
3187
3395
|
/**
|
|
3188
3396
|
* @hidden
|
|
3189
3397
|
*/
|
|
@@ -3192,6 +3400,10 @@ declare class FormFieldSetComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
3192
3400
|
* @hidden
|
|
3193
3401
|
*/
|
|
3194
3402
|
guttersStyle: string;
|
|
3403
|
+
private _legend;
|
|
3404
|
+
private _cols;
|
|
3405
|
+
private _gutters;
|
|
3406
|
+
private _colSpan;
|
|
3195
3407
|
private _formColumnsNumber;
|
|
3196
3408
|
private _colSpanClass;
|
|
3197
3409
|
private _formWidth;
|
|
@@ -3305,7 +3517,7 @@ declare class HintComponent {
|
|
|
3305
3517
|
* @remarks
|
|
3306
3518
|
* Supported children components are: {@link ErrorComponent}, {@link HintComponent}, {@link TextBoxComponent}, {@link NumericTextBoxComponent}, {@link MaskedTextBoxComponent}, {@link TextAreaComponent}, {@link DatePickerComponent}, {@link DateTimePickerComponent}, {@link DateInputComponent}, {@link OTPInputComponent}.
|
|
3307
3519
|
*/
|
|
3308
|
-
declare class FormFieldComponent implements AfterViewInit, AfterViewChecked,
|
|
3520
|
+
declare class FormFieldComponent implements AfterViewInit, AfterViewChecked, OnDestroy {
|
|
3309
3521
|
private renderer;
|
|
3310
3522
|
private localizationService;
|
|
3311
3523
|
private hostElement;
|
|
@@ -3329,7 +3541,8 @@ declare class FormFieldComponent implements AfterViewInit, AfterViewChecked, OnC
|
|
|
3329
3541
|
*
|
|
3330
3542
|
* @default 'initial'
|
|
3331
3543
|
*/
|
|
3332
|
-
showHints: ShowOptions;
|
|
3544
|
+
set showHints(showHints: ShowOptions);
|
|
3545
|
+
get showHints(): ShowOptions;
|
|
3333
3546
|
/**
|
|
3334
3547
|
* Specifies the layout orientation of the form field.
|
|
3335
3548
|
*
|
|
@@ -3337,7 +3550,8 @@ declare class FormFieldComponent implements AfterViewInit, AfterViewChecked, OnC
|
|
|
3337
3550
|
*
|
|
3338
3551
|
* @default 'vertical'
|
|
3339
3552
|
*/
|
|
3340
|
-
orientation: Orientation;
|
|
3553
|
+
set orientation(orientation: Orientation);
|
|
3554
|
+
get orientation(): Orientation;
|
|
3341
3555
|
/**
|
|
3342
3556
|
* Specifies when to show the error messages:
|
|
3343
3557
|
* * `initial`—Shows errors when the form control is `invalid` and `touched` or `dirty`.
|
|
@@ -3345,12 +3559,14 @@ declare class FormFieldComponent implements AfterViewInit, AfterViewChecked, OnC
|
|
|
3345
3559
|
*
|
|
3346
3560
|
* @default 'initial'
|
|
3347
3561
|
*/
|
|
3348
|
-
showErrors: ShowOptions;
|
|
3562
|
+
set showErrors(showErrors: ShowOptions);
|
|
3563
|
+
get showErrors(): ShowOptions;
|
|
3349
3564
|
/**
|
|
3350
3565
|
* Defines the colspan for the form field.
|
|
3351
3566
|
* Can be a number or an array of responsive breakpoints.
|
|
3352
3567
|
*/
|
|
3353
|
-
colSpan: number | ResponsiveFormBreakPoint[];
|
|
3568
|
+
set colSpan(colSpan: number | ResponsiveFormBreakPoint[]);
|
|
3569
|
+
get colSpan(): number | ResponsiveFormBreakPoint[];
|
|
3354
3570
|
/**
|
|
3355
3571
|
* @hidden
|
|
3356
3572
|
*/
|
|
@@ -3363,6 +3579,12 @@ declare class FormFieldComponent implements AfterViewInit, AfterViewChecked, OnC
|
|
|
3363
3579
|
* @hidden
|
|
3364
3580
|
*/
|
|
3365
3581
|
get hasErrors(): boolean;
|
|
3582
|
+
private _showHints;
|
|
3583
|
+
private _orientation;
|
|
3584
|
+
private _showErrors;
|
|
3585
|
+
private _colSpan;
|
|
3586
|
+
private _hasHintsSignal;
|
|
3587
|
+
private _hasErrorsSignal;
|
|
3366
3588
|
private control;
|
|
3367
3589
|
private subscriptions;
|
|
3368
3590
|
private rtl;
|
|
@@ -3372,7 +3594,6 @@ declare class FormFieldComponent implements AfterViewInit, AfterViewChecked, OnC
|
|
|
3372
3594
|
constructor(renderer: Renderer2, localizationService: LocalizationService, hostElement: ElementRef<HTMLElement>, formService: FormService);
|
|
3373
3595
|
ngAfterViewInit(): void;
|
|
3374
3596
|
ngAfterViewChecked(): void;
|
|
3375
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
3376
3597
|
ngOnDestroy(): void;
|
|
3377
3598
|
private disabledKendoInput;
|
|
3378
3599
|
private disabledControl;
|
|
@@ -3398,15 +3619,21 @@ declare class SliderMessages extends ComponentMessages {
|
|
|
3398
3619
|
/**
|
|
3399
3620
|
* The title of the **Decrease** button of the Slider.
|
|
3400
3621
|
*/
|
|
3401
|
-
decrement: string;
|
|
3622
|
+
set decrement(value: string);
|
|
3623
|
+
get decrement(): string;
|
|
3402
3624
|
/**
|
|
3403
3625
|
* The title of the **Increase** button of the Slider.
|
|
3404
3626
|
*/
|
|
3405
|
-
increment: string;
|
|
3627
|
+
set increment(value: string);
|
|
3628
|
+
get increment(): string;
|
|
3406
3629
|
/**
|
|
3407
3630
|
* The title of the drag handle of the Slider.
|
|
3408
3631
|
*/
|
|
3409
|
-
dragHandle: string;
|
|
3632
|
+
set dragHandle(value: string);
|
|
3633
|
+
get dragHandle(): string;
|
|
3634
|
+
private _decrement;
|
|
3635
|
+
private _increment;
|
|
3636
|
+
private _dragHandle;
|
|
3410
3637
|
static ɵfac: i0.ɵɵFactoryDeclaration<SliderMessages, never>;
|
|
3411
3638
|
static ɵdir: i0.ɵɵDirectiveDeclaration<SliderMessages, "kendo-slider-messages-base", never, { "decrement": { "alias": "decrement"; "required": false; }; "increment": { "alias": "increment"; "required": false; }; "dragHandle": { "alias": "dragHandle"; "required": false; }; }, {}, never, never, true, never>;
|
|
3412
3639
|
}
|
|
@@ -3429,11 +3656,15 @@ declare class RangeSliderMessages extends ComponentMessages {
|
|
|
3429
3656
|
/**
|
|
3430
3657
|
* The title of the range `start` drag handle.
|
|
3431
3658
|
*/
|
|
3432
|
-
dragHandleStart: string;
|
|
3659
|
+
set dragHandleStart(value: string);
|
|
3660
|
+
get dragHandleStart(): string;
|
|
3433
3661
|
/**
|
|
3434
3662
|
* The title of the range `end` drag handle.
|
|
3435
3663
|
*/
|
|
3436
|
-
dragHandleEnd: string;
|
|
3664
|
+
set dragHandleEnd(value: string);
|
|
3665
|
+
get dragHandleEnd(): string;
|
|
3666
|
+
private _dragHandleStart;
|
|
3667
|
+
private _dragHandleEnd;
|
|
3437
3668
|
static ɵfac: i0.ɵɵFactoryDeclaration<RangeSliderMessages, never>;
|
|
3438
3669
|
static ɵdir: i0.ɵɵDirectiveDeclaration<RangeSliderMessages, "kendo-rangeslider-messages-base", never, { "dragHandleStart": { "alias": "dragHandleStart"; "required": false; }; "dragHandleEnd": { "alias": "dragHandleEnd"; "required": false; }; }, {}, never, never, true, never>;
|
|
3439
3670
|
}
|
|
@@ -3584,6 +3815,7 @@ declare class RatingComponent implements OnInit, AfterViewInit, OnDestroy, Contr
|
|
|
3584
3815
|
private localizationService;
|
|
3585
3816
|
private cdr;
|
|
3586
3817
|
private zone;
|
|
3818
|
+
private injector;
|
|
3587
3819
|
itemTemplate: RatingItemTemplateDirective;
|
|
3588
3820
|
hoveredItemTemplate: RatingHoveredItemTemplateDirective;
|
|
3589
3821
|
selectedItemTemplate: RatingSelectedItemTemplateDirective;
|
|
@@ -3594,7 +3826,8 @@ declare class RatingComponent implements OnInit, AfterViewInit, OnDestroy, Contr
|
|
|
3594
3826
|
*
|
|
3595
3827
|
* @default false
|
|
3596
3828
|
*/
|
|
3597
|
-
disabled: boolean;
|
|
3829
|
+
set disabled(value: boolean);
|
|
3830
|
+
get disabled(): boolean;
|
|
3598
3831
|
get ariaDisabled(): true | undefined;
|
|
3599
3832
|
/**
|
|
3600
3833
|
* When `true`, sets the Rating to read-only ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/rating/readonly)).
|
|
@@ -3602,20 +3835,23 @@ declare class RatingComponent implements OnInit, AfterViewInit, OnDestroy, Contr
|
|
|
3602
3835
|
*
|
|
3603
3836
|
* @default false
|
|
3604
3837
|
*/
|
|
3605
|
-
readonly: boolean;
|
|
3838
|
+
set readonly(value: boolean);
|
|
3839
|
+
get readonly(): boolean;
|
|
3606
3840
|
get ariaReadonly(): true | undefined;
|
|
3607
3841
|
/**
|
|
3608
3842
|
* Sets the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the Rating.
|
|
3609
3843
|
*
|
|
3610
3844
|
* @default 0
|
|
3611
3845
|
*/
|
|
3612
|
-
tabindex: number;
|
|
3846
|
+
set tabindex(value: number);
|
|
3847
|
+
get tabindex(): number;
|
|
3613
3848
|
/**
|
|
3614
3849
|
* Sets the number of Rating items ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/rating/items)).
|
|
3615
3850
|
*
|
|
3616
3851
|
* @default 5
|
|
3617
3852
|
*/
|
|
3618
|
-
itemsCount: number;
|
|
3853
|
+
set itemsCount(value: number);
|
|
3854
|
+
get itemsCount(): number;
|
|
3619
3855
|
/**
|
|
3620
3856
|
* Sets the initial value of the Rating component.
|
|
3621
3857
|
* Use either `ngModel` or the `value` binding, but not both at the same time.
|
|
@@ -3639,19 +3875,23 @@ declare class RatingComponent implements OnInit, AfterViewInit, OnDestroy, Contr
|
|
|
3639
3875
|
/**
|
|
3640
3876
|
* 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)).
|
|
3641
3877
|
*/
|
|
3642
|
-
label: string;
|
|
3878
|
+
set label(value: string);
|
|
3879
|
+
get label(): string;
|
|
3643
3880
|
/**
|
|
3644
3881
|
* Sets a custom font icon for the Rating items ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/rating/icon)).
|
|
3645
3882
|
*/
|
|
3646
|
-
icon: string;
|
|
3883
|
+
set icon(value: string);
|
|
3884
|
+
get icon(): string;
|
|
3647
3885
|
/**
|
|
3648
3886
|
* 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)).
|
|
3649
3887
|
*/
|
|
3650
|
-
svgIcon: SVGIcon;
|
|
3888
|
+
set svgIcon(value: SVGIcon);
|
|
3889
|
+
get svgIcon(): SVGIcon;
|
|
3651
3890
|
/**
|
|
3652
3891
|
* 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)).
|
|
3653
3892
|
*/
|
|
3654
|
-
svgIconOutline: SVGIcon;
|
|
3893
|
+
set svgIconOutline(value: SVGIcon);
|
|
3894
|
+
get svgIconOutline(): SVGIcon;
|
|
3655
3895
|
/**
|
|
3656
3896
|
* Fires when the user selects a new value.
|
|
3657
3897
|
*/
|
|
@@ -3674,8 +3914,16 @@ declare class RatingComponent implements OnInit, AfterViewInit, OnDestroy, Contr
|
|
|
3674
3914
|
private _value;
|
|
3675
3915
|
private _selection;
|
|
3676
3916
|
private _precision;
|
|
3917
|
+
private _disabled;
|
|
3918
|
+
private _readonly;
|
|
3919
|
+
private _tabindex;
|
|
3920
|
+
private _itemsCount;
|
|
3921
|
+
private _label;
|
|
3922
|
+
private _icon;
|
|
3923
|
+
private _svgIcon;
|
|
3924
|
+
private _svgIconOutline;
|
|
3677
3925
|
private subscriptions;
|
|
3678
|
-
constructor(element: ElementRef, renderer: Renderer2, localizationService: LocalizationService, cdr: ChangeDetectorRef, zone: NgZone);
|
|
3926
|
+
constructor(element: ElementRef, renderer: Renderer2, localizationService: LocalizationService, cdr: ChangeDetectorRef, zone: NgZone, injector: Injector);
|
|
3679
3927
|
ngOnInit(): void;
|
|
3680
3928
|
ngAfterViewInit(): void;
|
|
3681
3929
|
ngOnDestroy(): void;
|
|
@@ -3768,9 +4016,9 @@ declare class SignatureComponent implements ControlValueAccessor {
|
|
|
3768
4016
|
private element;
|
|
3769
4017
|
private renderer;
|
|
3770
4018
|
private ngZone;
|
|
3771
|
-
private cd;
|
|
3772
4019
|
localization: LocalizationService;
|
|
3773
4020
|
private cdr;
|
|
4021
|
+
private injector;
|
|
3774
4022
|
/**
|
|
3775
4023
|
* @hidden
|
|
3776
4024
|
*/
|
|
@@ -3783,7 +4031,8 @@ declare class SignatureComponent implements ControlValueAccessor {
|
|
|
3783
4031
|
*
|
|
3784
4032
|
* @default false
|
|
3785
4033
|
*/
|
|
3786
|
-
readonly: boolean;
|
|
4034
|
+
set readonly(value: boolean);
|
|
4035
|
+
get readonly(): boolean;
|
|
3787
4036
|
/**
|
|
3788
4037
|
* Sets the disabled state of the Signature.
|
|
3789
4038
|
*
|
|
@@ -3792,19 +4041,22 @@ declare class SignatureComponent implements ControlValueAccessor {
|
|
|
3792
4041
|
*
|
|
3793
4042
|
* @default false
|
|
3794
4043
|
*/
|
|
3795
|
-
disabled: boolean;
|
|
4044
|
+
set disabled(value: boolean);
|
|
4045
|
+
get disabled(): boolean;
|
|
3796
4046
|
/**
|
|
3797
4047
|
* Sets the width of the Signature in pixels.
|
|
3798
4048
|
*
|
|
3799
4049
|
* You can also set the width using inline styles or CSS.
|
|
3800
4050
|
*/
|
|
3801
|
-
width: number;
|
|
4051
|
+
set width(value: number);
|
|
4052
|
+
get width(): number;
|
|
3802
4053
|
/**
|
|
3803
4054
|
* Sets the height of the Signature in pixels.
|
|
3804
4055
|
*
|
|
3805
4056
|
* You can also set the height using inline styles or CSS.
|
|
3806
4057
|
*/
|
|
3807
|
-
height: number;
|
|
4058
|
+
set height(value: number);
|
|
4059
|
+
get height(): number;
|
|
3808
4060
|
/**
|
|
3809
4061
|
* Gets or sets the value of the Signature.
|
|
3810
4062
|
*
|
|
@@ -3827,53 +4079,62 @@ declare class SignatureComponent implements ControlValueAccessor {
|
|
|
3827
4079
|
* Sets the padding of the Signature internal controls
|
|
3828
4080
|
* ([ee example](https://www.telerik.com/kendo-angular-ui/components/inputs/signature/appearance#size)). The default value is set by the Kendo theme.
|
|
3829
4081
|
*/
|
|
3830
|
-
size: InputSize;
|
|
4082
|
+
set size(value: InputSize);
|
|
4083
|
+
get size(): InputSize;
|
|
3831
4084
|
/**
|
|
3832
4085
|
* Sets the border radius of the Signature
|
|
3833
4086
|
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/signature/appearance#rounded-corners)). The default value is set by the Kendo theme.
|
|
3834
4087
|
*/
|
|
3835
|
-
rounded: InputRounded;
|
|
4088
|
+
set rounded(value: InputRounded);
|
|
4089
|
+
get rounded(): InputRounded;
|
|
3836
4090
|
/**
|
|
3837
4091
|
* Sets the background and border styles of the Signature
|
|
3838
4092
|
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/signature/appearance#fill-mode)). The default value is set by the Kendo theme.
|
|
3839
4093
|
*/
|
|
3840
|
-
fillMode: InputFillMode;
|
|
4094
|
+
set fillMode(value: InputFillMode);
|
|
4095
|
+
get fillMode(): InputFillMode;
|
|
3841
4096
|
/**
|
|
3842
4097
|
* Sets the stroke color of the Signature.
|
|
3843
4098
|
*
|
|
3844
4099
|
* Accepts CSS color names and hex values.
|
|
3845
4100
|
* The default value is determined by the theme `$kendo-input-text` variable.
|
|
3846
4101
|
*/
|
|
3847
|
-
color: any;
|
|
4102
|
+
set color(value: any);
|
|
4103
|
+
get color(): any;
|
|
3848
4104
|
/**
|
|
3849
4105
|
* Sets the background color of the Signature.
|
|
3850
4106
|
*
|
|
3851
4107
|
* Accepts CSS color names and hex values.
|
|
3852
4108
|
* The default value is determined by the theme `$kendo-input-bg` variable.
|
|
3853
4109
|
*/
|
|
3854
|
-
backgroundColor: any;
|
|
4110
|
+
set backgroundColor(value: any);
|
|
4111
|
+
get backgroundColor(): any;
|
|
3855
4112
|
/**
|
|
3856
4113
|
* Sets the stroke width of the Signature.
|
|
3857
4114
|
*
|
|
3858
4115
|
* @default 1
|
|
3859
4116
|
*/
|
|
3860
|
-
strokeWidth: number;
|
|
4117
|
+
set strokeWidth(value: number);
|
|
4118
|
+
get strokeWidth(): number;
|
|
3861
4119
|
/**
|
|
3862
4120
|
* When set to `true`, smooths out signature lines.
|
|
3863
4121
|
*
|
|
3864
4122
|
* @default false
|
|
3865
4123
|
*/
|
|
3866
|
-
smooth: boolean;
|
|
4124
|
+
set smooth(value: boolean);
|
|
4125
|
+
get smooth(): boolean;
|
|
3867
4126
|
/**
|
|
3868
4127
|
* When set to `true`, allows the Signature to be maximized.
|
|
3869
4128
|
*
|
|
3870
4129
|
* @default true
|
|
3871
4130
|
*/
|
|
3872
|
-
maximizable: boolean;
|
|
4131
|
+
set maximizable(value: boolean);
|
|
4132
|
+
get maximizable(): boolean;
|
|
3873
4133
|
/**
|
|
3874
4134
|
* @hidden
|
|
3875
4135
|
*/
|
|
3876
|
-
maximized: boolean;
|
|
4136
|
+
set maximized(value: boolean);
|
|
4137
|
+
get maximized(): boolean;
|
|
3877
4138
|
/**
|
|
3878
4139
|
* Sets the scale factor for the popup.
|
|
3879
4140
|
*
|
|
@@ -3881,7 +4142,8 @@ declare class SignatureComponent implements ControlValueAccessor {
|
|
|
3881
4142
|
*
|
|
3882
4143
|
* @default 3
|
|
3883
4144
|
*/
|
|
3884
|
-
popupScale: number;
|
|
4145
|
+
set popupScale(value: number);
|
|
4146
|
+
get popupScale(): number;
|
|
3885
4147
|
/**
|
|
3886
4148
|
* Sets the scale factor for the exported image.
|
|
3887
4149
|
*
|
|
@@ -3889,7 +4151,8 @@ declare class SignatureComponent implements ControlValueAccessor {
|
|
|
3889
4151
|
*
|
|
3890
4152
|
* @default 2
|
|
3891
4153
|
*/
|
|
3892
|
-
exportScale: number;
|
|
4154
|
+
set exportScale(value: number);
|
|
4155
|
+
get exportScale(): number;
|
|
3893
4156
|
/**
|
|
3894
4157
|
* @hidden
|
|
3895
4158
|
*/
|
|
@@ -3899,7 +4162,8 @@ declare class SignatureComponent implements ControlValueAccessor {
|
|
|
3899
4162
|
*
|
|
3900
4163
|
* @default false
|
|
3901
4164
|
*/
|
|
3902
|
-
hideLine: boolean;
|
|
4165
|
+
set hideLine(value: boolean);
|
|
4166
|
+
get hideLine(): boolean;
|
|
3903
4167
|
/**
|
|
3904
4168
|
* Fires when the signature value changes.
|
|
3905
4169
|
*/
|
|
@@ -3934,11 +4198,11 @@ declare class SignatureComponent implements ControlValueAccessor {
|
|
|
3934
4198
|
/**
|
|
3935
4199
|
* Indicates if the Signature wrapper is focused.
|
|
3936
4200
|
*/
|
|
3937
|
-
isFocused: boolean;
|
|
4201
|
+
get isFocused(): boolean;
|
|
3938
4202
|
/**
|
|
3939
4203
|
* Indicates if the Signature popup is open.
|
|
3940
4204
|
*/
|
|
3941
|
-
isOpen: boolean;
|
|
4205
|
+
get isOpen(): boolean;
|
|
3942
4206
|
/**
|
|
3943
4207
|
* @hidden
|
|
3944
4208
|
*/
|
|
@@ -3978,7 +4242,7 @@ declare class SignatureComponent implements ControlValueAccessor {
|
|
|
3978
4242
|
/**
|
|
3979
4243
|
* @hidden
|
|
3980
4244
|
*/
|
|
3981
|
-
isDrawing: boolean;
|
|
4245
|
+
get isDrawing(): boolean;
|
|
3982
4246
|
/**
|
|
3983
4247
|
* @hidden
|
|
3984
4248
|
*/
|
|
@@ -4000,12 +4264,31 @@ declare class SignatureComponent implements ControlValueAccessor {
|
|
|
4000
4264
|
private notifyNgTouched;
|
|
4001
4265
|
private notifyNgChanged;
|
|
4002
4266
|
private instance;
|
|
4003
|
-
private _value;
|
|
4004
|
-
private _tabindex;
|
|
4005
4267
|
private subscriptions;
|
|
4006
4268
|
private unsubscribe;
|
|
4007
4269
|
private hostClasses;
|
|
4008
|
-
|
|
4270
|
+
private _isFocusedSignal;
|
|
4271
|
+
private _isOpenSignal;
|
|
4272
|
+
private _isDrawingSignal;
|
|
4273
|
+
private _readonly;
|
|
4274
|
+
private _disabled;
|
|
4275
|
+
private _width;
|
|
4276
|
+
private _height;
|
|
4277
|
+
private _value;
|
|
4278
|
+
private _tabindexSignal;
|
|
4279
|
+
private _size;
|
|
4280
|
+
private _rounded;
|
|
4281
|
+
private _fillMode;
|
|
4282
|
+
private _color;
|
|
4283
|
+
private _backgroundColor;
|
|
4284
|
+
private _strokeWidth;
|
|
4285
|
+
private _smooth;
|
|
4286
|
+
private _maximizable;
|
|
4287
|
+
private _maximized;
|
|
4288
|
+
private _popupScale;
|
|
4289
|
+
private _exportScale;
|
|
4290
|
+
private _hideLine;
|
|
4291
|
+
constructor(element: ElementRef, renderer: Renderer2, ngZone: NgZone, localization: LocalizationService, cdr: ChangeDetectorRef, injector: Injector);
|
|
4009
4292
|
ngOnInit(): void;
|
|
4010
4293
|
ngAfterViewInit(): void;
|
|
4011
4294
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -4111,19 +4394,27 @@ declare class SignatureMessages extends ComponentMessages {
|
|
|
4111
4394
|
/**
|
|
4112
4395
|
* The title of the Clear button of the Signature.
|
|
4113
4396
|
*/
|
|
4114
|
-
clear: string;
|
|
4397
|
+
set clear(value: string);
|
|
4398
|
+
get clear(): string;
|
|
4115
4399
|
/**
|
|
4116
4400
|
* The title of the Minimize button of the Signature.
|
|
4117
4401
|
*/
|
|
4118
|
-
minimize: string;
|
|
4402
|
+
set minimize(value: string);
|
|
4403
|
+
get minimize(): string;
|
|
4119
4404
|
/**
|
|
4120
4405
|
* The title of the Maximize button of the Signature.
|
|
4121
4406
|
*/
|
|
4122
|
-
maximize: string;
|
|
4407
|
+
set maximize(value: string);
|
|
4408
|
+
get maximize(): string;
|
|
4123
4409
|
/**
|
|
4124
4410
|
* The value of the Signature canvas element aria-label attribute.
|
|
4125
4411
|
*/
|
|
4126
|
-
canvasLabel: string;
|
|
4412
|
+
set canvasLabel(value: string);
|
|
4413
|
+
get canvasLabel(): string;
|
|
4414
|
+
private _clear;
|
|
4415
|
+
private _minimize;
|
|
4416
|
+
private _maximize;
|
|
4417
|
+
private _canvasLabel;
|
|
4127
4418
|
static ɵfac: i0.ɵɵFactoryDeclaration<SignatureMessages, never>;
|
|
4128
4419
|
static ɵdir: i0.ɵɵDirectiveDeclaration<SignatureMessages, "kendo-signature-messages-base", never, { "clear": { "alias": "clear"; "required": false; }; "minimize": { "alias": "minimize"; "required": false; }; "maximize": { "alias": "maximize"; "required": false; }; "canvasLabel": { "alias": "canvasLabel"; "required": false; }; }, {}, never, never, true, never>;
|
|
4129
4420
|
}
|
|
@@ -4417,7 +4708,8 @@ declare class ColorPickerComponent implements OnInit, AfterViewInit, OnChanges,
|
|
|
4417
4708
|
* Specifies the views rendered in the popup.
|
|
4418
4709
|
* By default, both the gradient and palette views are rendered.
|
|
4419
4710
|
*/
|
|
4420
|
-
views: Array<ColorPickerView
|
|
4711
|
+
set views(views: Array<ColorPickerView>);
|
|
4712
|
+
get views(): Array<ColorPickerView>;
|
|
4421
4713
|
/**
|
|
4422
4714
|
* @hidden
|
|
4423
4715
|
*/
|
|
@@ -4427,23 +4719,27 @@ declare class ColorPickerComponent implements OnInit, AfterViewInit, OnChanges,
|
|
|
4427
4719
|
* Enables or disables the adaptive mode.
|
|
4428
4720
|
* By default, adaptive rendering is disabled.
|
|
4429
4721
|
*/
|
|
4430
|
-
adaptiveMode: AdaptiveMode;
|
|
4722
|
+
set adaptiveMode(adaptiveMode: AdaptiveMode);
|
|
4723
|
+
get adaptiveMode(): AdaptiveMode;
|
|
4431
4724
|
/**
|
|
4432
4725
|
* Sets the initially active view in the popup. Supports two-way binding.
|
|
4433
4726
|
*/
|
|
4434
|
-
activeView: ColorPickerView;
|
|
4727
|
+
set activeView(activeView: ColorPickerView);
|
|
4728
|
+
get activeView(): ColorPickerView;
|
|
4435
4729
|
/**
|
|
4436
4730
|
* Sets the read-only state of the ColorPicker.
|
|
4437
4731
|
*
|
|
4438
4732
|
* @default false
|
|
4439
4733
|
*/
|
|
4440
|
-
readonly: boolean;
|
|
4734
|
+
set readonly(readonly: boolean);
|
|
4735
|
+
get readonly(): boolean;
|
|
4441
4736
|
/**
|
|
4442
4737
|
* 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).
|
|
4443
4738
|
*
|
|
4444
4739
|
* @default false
|
|
4445
4740
|
*/
|
|
4446
|
-
disabled: boolean;
|
|
4741
|
+
set disabled(disabled: boolean);
|
|
4742
|
+
get disabled(): boolean;
|
|
4447
4743
|
/**
|
|
4448
4744
|
* Specifies the output format of the ColorPicker.
|
|
4449
4745
|
*
|
|
@@ -4451,7 +4747,8 @@ declare class ColorPickerComponent implements OnInit, AfterViewInit, OnChanges,
|
|
|
4451
4747
|
*
|
|
4452
4748
|
* @default 'rgba'
|
|
4453
4749
|
*/
|
|
4454
|
-
format: OutputFormat;
|
|
4750
|
+
set format(format: OutputFormat);
|
|
4751
|
+
get format(): OutputFormat;
|
|
4455
4752
|
/**
|
|
4456
4753
|
* Sets the value of the selected color.
|
|
4457
4754
|
*/
|
|
@@ -4476,14 +4773,18 @@ declare class ColorPickerComponent implements OnInit, AfterViewInit, OnChanges,
|
|
|
4476
4773
|
* Defines the name of an existing icon in the Kendo UI theme.
|
|
4477
4774
|
* Provide only the name of the icon without the `k-icon` or `k-i-` prefixes.
|
|
4478
4775
|
*/
|
|
4479
|
-
icon: string;
|
|
4776
|
+
set icon(icon: string);
|
|
4777
|
+
get icon(): string;
|
|
4480
4778
|
/**
|
|
4481
4779
|
* A CSS class name which displays an icon in the ColorPicker button.
|
|
4482
4780
|
* `iconClass` is compatible with the `ngClass` syntax.
|
|
4483
4781
|
*
|
|
4484
4782
|
* Takes precedence over `icon` if both are defined.
|
|
4485
4783
|
*/
|
|
4486
|
-
iconClass: string | Array<string> | {
|
|
4784
|
+
set iconClass(iconClass: string | Array<string> | {
|
|
4785
|
+
[key: string]: boolean;
|
|
4786
|
+
});
|
|
4787
|
+
get iconClass(): string | Array<string> | {
|
|
4487
4788
|
[key: string]: boolean;
|
|
4488
4789
|
};
|
|
4489
4790
|
/**
|
|
@@ -4495,18 +4796,21 @@ declare class ColorPickerComponent implements OnInit, AfterViewInit, OnChanges,
|
|
|
4495
4796
|
/**
|
|
4496
4797
|
* Sets the title of the ActionSheet rendered instead of the Popup on small screens.
|
|
4497
4798
|
*/
|
|
4498
|
-
adaptiveTitle: string;
|
|
4799
|
+
set adaptiveTitle(adaptiveTitle: string);
|
|
4800
|
+
get adaptiveTitle(): string;
|
|
4499
4801
|
/**
|
|
4500
4802
|
* Sets the subtitle of the ActionSheet rendered instead of the Popup on small screens.
|
|
4501
4803
|
* By default, the ActionSheet does not render a subtitle.
|
|
4502
4804
|
*/
|
|
4503
|
-
adaptiveSubtitle: any;
|
|
4805
|
+
set adaptiveSubtitle(adaptiveSubtitle: any);
|
|
4806
|
+
get adaptiveSubtitle(): any;
|
|
4504
4807
|
/**
|
|
4505
4808
|
* Specifies whether the ColorPicker displays a **Clear color** button.
|
|
4506
4809
|
*
|
|
4507
4810
|
* @default true
|
|
4508
4811
|
*/
|
|
4509
|
-
clearButton: boolean;
|
|
4812
|
+
set clearButton(clearButton: boolean);
|
|
4813
|
+
get clearButton(): boolean;
|
|
4510
4814
|
/**
|
|
4511
4815
|
* Sets the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
|
|
4512
4816
|
*
|
|
@@ -4525,13 +4829,15 @@ declare class ColorPickerComponent implements OnInit, AfterViewInit, OnChanges,
|
|
|
4525
4829
|
*
|
|
4526
4830
|
* @default false
|
|
4527
4831
|
*/
|
|
4528
|
-
preview: boolean;
|
|
4832
|
+
set preview(preview: boolean);
|
|
4833
|
+
get preview(): boolean;
|
|
4529
4834
|
/**
|
|
4530
4835
|
* Configures the layout of the **Apply** and **Cancel** action buttons.
|
|
4531
4836
|
*
|
|
4532
4837
|
* @default 'end'
|
|
4533
4838
|
*/
|
|
4534
|
-
actionsLayout: ColorPickerActionsLayout;
|
|
4839
|
+
set actionsLayout(actionsLayout: ColorPickerActionsLayout);
|
|
4840
|
+
get actionsLayout(): ColorPickerActionsLayout;
|
|
4535
4841
|
/**
|
|
4536
4842
|
* The size property specifies the padding of the ColorPicker internal elements
|
|
4537
4843
|
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/colorpicker/appearance#size)). The default value is set by the Kendo theme.
|
|
@@ -4598,7 +4904,9 @@ declare class ColorPickerComponent implements OnInit, AfterViewInit, OnChanges,
|
|
|
4598
4904
|
/**
|
|
4599
4905
|
* Indicates whether the ColorPicker wrapper is focused.
|
|
4600
4906
|
*/
|
|
4601
|
-
|
|
4907
|
+
private _isFocused;
|
|
4908
|
+
get isFocused(): boolean;
|
|
4909
|
+
set isFocused(value: boolean);
|
|
4602
4910
|
/**
|
|
4603
4911
|
* @hidden
|
|
4604
4912
|
*/
|
|
@@ -4649,20 +4957,34 @@ declare class ColorPickerComponent implements OnInit, AfterViewInit, OnChanges,
|
|
|
4649
4957
|
*/
|
|
4650
4958
|
arrowDownIcon: SVGIcon$1;
|
|
4651
4959
|
private popupRef;
|
|
4652
|
-
private _svgIcon;
|
|
4653
|
-
private _value;
|
|
4654
|
-
private _tabindex;
|
|
4655
|
-
private _popupSettings;
|
|
4656
|
-
private _paletteSettings;
|
|
4657
|
-
private _gradientSettings;
|
|
4658
|
-
private _size;
|
|
4659
|
-
private _rounded;
|
|
4660
|
-
private _fillMode;
|
|
4661
4960
|
private dynamicRTLSubscription;
|
|
4662
4961
|
private subscriptions;
|
|
4663
4962
|
private popupSubs;
|
|
4664
4963
|
private colorPickerId;
|
|
4665
4964
|
private control;
|
|
4965
|
+
private _views;
|
|
4966
|
+
private _adaptiveMode;
|
|
4967
|
+
private _activeView;
|
|
4968
|
+
private _readonly;
|
|
4969
|
+
private _disabled;
|
|
4970
|
+
private _format;
|
|
4971
|
+
private _value;
|
|
4972
|
+
private _popupSettingsSignal;
|
|
4973
|
+
private _paletteSettingsSignal;
|
|
4974
|
+
private _gradientSettingsSignal;
|
|
4975
|
+
private _icon;
|
|
4976
|
+
private _iconClass;
|
|
4977
|
+
private _svgIconSignal;
|
|
4978
|
+
private _adaptiveTitle;
|
|
4979
|
+
private _adaptiveSubtitle;
|
|
4980
|
+
private _clearButton;
|
|
4981
|
+
private _tabindexSignal;
|
|
4982
|
+
private _preview;
|
|
4983
|
+
private _actionsLayout;
|
|
4984
|
+
private _sizeSignal;
|
|
4985
|
+
private _roundedSignal;
|
|
4986
|
+
private _fillModeSignal;
|
|
4987
|
+
private _isOpen;
|
|
4666
4988
|
constructor(host: ElementRef, popupService: PopupService, cdr: ChangeDetectorRef, localizationService: LocalizationService, ngZone: NgZone, renderer: Renderer2, injector: Injector, adaptiveService: AdaptiveService);
|
|
4667
4989
|
ngOnInit(): void;
|
|
4668
4990
|
ngAfterViewInit(): void;
|
|
@@ -4792,123 +5114,183 @@ declare class ColorPickerMessages extends ComponentMessages {
|
|
|
4792
5114
|
/**
|
|
4793
5115
|
* Sets the `aria-label` for the ColorPalette component when the value is empty.
|
|
4794
5116
|
*/
|
|
4795
|
-
colorPaletteNoColor: string;
|
|
5117
|
+
set colorPaletteNoColor(value: string);
|
|
5118
|
+
get colorPaletteNoColor(): string;
|
|
4796
5119
|
/**
|
|
4797
5120
|
* Sets the `aria-label` for the ColorGradient component when the value is empty.
|
|
4798
5121
|
*/
|
|
4799
|
-
colorGradientNoColor: string;
|
|
5122
|
+
set colorGradientNoColor(value: string);
|
|
5123
|
+
get colorGradientNoColor(): string;
|
|
4800
5124
|
/**
|
|
4801
5125
|
* Sets the `aria-label` for the FlatColorPicker component when the value is empty.
|
|
4802
5126
|
*/
|
|
4803
|
-
flatColorPickerNoColor: string;
|
|
5127
|
+
set flatColorPickerNoColor(value: string);
|
|
5128
|
+
get flatColorPickerNoColor(): string;
|
|
4804
5129
|
/**
|
|
4805
5130
|
* Sets the `aria-label` for the ColorPicker component when the value is empty.
|
|
4806
5131
|
*/
|
|
4807
|
-
colorPickerNoColor: string;
|
|
5132
|
+
set colorPickerNoColor(value: string);
|
|
5133
|
+
get colorPickerNoColor(): string;
|
|
4808
5134
|
/**
|
|
4809
5135
|
* Sets the title for the gradient color drag handle chooser.
|
|
4810
5136
|
*/
|
|
4811
|
-
colorGradientHandle: string;
|
|
5137
|
+
set colorGradientHandle(value: string);
|
|
5138
|
+
get colorGradientHandle(): string;
|
|
4812
5139
|
/**
|
|
4813
5140
|
* Sets the title for the clear button.
|
|
4814
5141
|
*/
|
|
4815
|
-
clearButton: string;
|
|
5142
|
+
set clearButton(value: string);
|
|
5143
|
+
get clearButton(): string;
|
|
4816
5144
|
/**
|
|
4817
5145
|
* Sets the title for the hue slider handle.
|
|
4818
5146
|
*/
|
|
4819
|
-
hueSliderHandle: string;
|
|
5147
|
+
set hueSliderHandle(value: string);
|
|
5148
|
+
get hueSliderHandle(): string;
|
|
4820
5149
|
/**
|
|
4821
5150
|
* Sets the title for the opacity slider handle.
|
|
4822
5151
|
*/
|
|
4823
|
-
opacitySliderHandle: string;
|
|
5152
|
+
set opacitySliderHandle(value: string);
|
|
5153
|
+
get opacitySliderHandle(): string;
|
|
4824
5154
|
/**
|
|
4825
5155
|
* Sets the placeholder for the HEX color input.
|
|
4826
5156
|
*/
|
|
4827
|
-
hexInputPlaceholder: string;
|
|
5157
|
+
set hexInputPlaceholder(value: string);
|
|
5158
|
+
get hexInputPlaceholder(): string;
|
|
4828
5159
|
/**
|
|
4829
5160
|
* Sets the placeholder for the red color input.
|
|
4830
5161
|
*/
|
|
4831
|
-
redInputPlaceholder: string;
|
|
5162
|
+
set redInputPlaceholder(value: string);
|
|
5163
|
+
get redInputPlaceholder(): string;
|
|
4832
5164
|
/**
|
|
4833
5165
|
* Sets the placeholder for the green color input.
|
|
4834
5166
|
*/
|
|
4835
|
-
greenInputPlaceholder: string;
|
|
5167
|
+
set greenInputPlaceholder(value: string);
|
|
5168
|
+
get greenInputPlaceholder(): string;
|
|
4836
5169
|
/**
|
|
4837
5170
|
* Sets the placeholder for the blue color input.
|
|
4838
5171
|
*/
|
|
4839
|
-
blueInputPlaceholder: string;
|
|
5172
|
+
set blueInputPlaceholder(value: string);
|
|
5173
|
+
get blueInputPlaceholder(): string;
|
|
4840
5174
|
/**
|
|
4841
5175
|
* Sets the placeholder for the alpha input.
|
|
4842
5176
|
*/
|
|
4843
|
-
alphaInputPlaceholder: string;
|
|
5177
|
+
set alphaInputPlaceholder(value: string);
|
|
5178
|
+
get alphaInputPlaceholder(): string;
|
|
4844
5179
|
/**
|
|
4845
5180
|
* Sets the `aria-label` for the red color input.
|
|
4846
5181
|
*/
|
|
4847
|
-
redChannelLabel: string;
|
|
5182
|
+
set redChannelLabel(value: string);
|
|
5183
|
+
get redChannelLabel(): string;
|
|
4848
5184
|
/**
|
|
4849
5185
|
* Sets the `aria-label` for the green color input.
|
|
4850
5186
|
*/
|
|
4851
|
-
greenChannelLabel: string;
|
|
5187
|
+
set greenChannelLabel(value: string);
|
|
5188
|
+
get greenChannelLabel(): string;
|
|
4852
5189
|
/**
|
|
4853
5190
|
* Sets the `aria-label` for the blue color input.
|
|
4854
5191
|
*/
|
|
4855
|
-
blueChannelLabel: string;
|
|
5192
|
+
set blueChannelLabel(value: string);
|
|
5193
|
+
get blueChannelLabel(): string;
|
|
4856
5194
|
/**
|
|
4857
5195
|
* Sets the `aria-label` for the alpha color input.
|
|
4858
5196
|
*/
|
|
4859
|
-
alphaChannelLabel: string;
|
|
5197
|
+
set alphaChannelLabel(value: string);
|
|
5198
|
+
get alphaChannelLabel(): string;
|
|
4860
5199
|
/**
|
|
4861
5200
|
* Sets the "Pass" message for the contrast tool.
|
|
4862
5201
|
*/
|
|
4863
|
-
passContrast: string;
|
|
5202
|
+
set passContrast(value: string);
|
|
5203
|
+
get passContrast(): string;
|
|
4864
5204
|
/**
|
|
4865
5205
|
* Sets the "Fail" message for the contrast tool.
|
|
4866
5206
|
*/
|
|
4867
|
-
failContrast: string;
|
|
5207
|
+
set failContrast(value: string);
|
|
5208
|
+
get failContrast(): string;
|
|
4868
5209
|
/**
|
|
4869
5210
|
* Sets the "Contrast ratio" message for the contrast tool.
|
|
4870
5211
|
*/
|
|
4871
|
-
contrastRatio: string;
|
|
5212
|
+
set contrastRatio(value: string);
|
|
5213
|
+
get contrastRatio(): string;
|
|
4872
5214
|
/**
|
|
4873
5215
|
* Sets the message for the color preview pane.
|
|
4874
5216
|
*/
|
|
4875
|
-
previewColor: string;
|
|
5217
|
+
set previewColor(value: string);
|
|
5218
|
+
get previewColor(): string;
|
|
4876
5219
|
/**
|
|
4877
5220
|
* Sets the message for the selected color pane.
|
|
4878
5221
|
*/
|
|
4879
|
-
revertSelection: string;
|
|
5222
|
+
set revertSelection(value: string);
|
|
5223
|
+
get revertSelection(): string;
|
|
4880
5224
|
/**
|
|
4881
5225
|
* Sets the message for the gradient view button.
|
|
4882
5226
|
*/
|
|
4883
|
-
gradientView: string;
|
|
5227
|
+
set gradientView(value: string);
|
|
5228
|
+
get gradientView(): string;
|
|
4884
5229
|
/**
|
|
4885
5230
|
* Sets the message for the palette view button.
|
|
4886
5231
|
*/
|
|
4887
|
-
paletteView: string;
|
|
5232
|
+
set paletteView(value: string);
|
|
5233
|
+
get paletteView(): string;
|
|
4888
5234
|
/**
|
|
4889
5235
|
* Sets the message for the input format toggle button.
|
|
4890
5236
|
*/
|
|
4891
|
-
formatButton: string;
|
|
5237
|
+
set formatButton(value: string);
|
|
5238
|
+
get formatButton(): string;
|
|
4892
5239
|
/**
|
|
4893
5240
|
* Sets the message for the **Apply** action button.
|
|
4894
5241
|
*/
|
|
4895
|
-
applyButton: string;
|
|
5242
|
+
set applyButton(value: string);
|
|
5243
|
+
get applyButton(): string;
|
|
4896
5244
|
/**
|
|
4897
5245
|
* Sets the message for the **Cancel** action button.
|
|
4898
5246
|
*/
|
|
4899
|
-
cancelButton: string;
|
|
5247
|
+
set cancelButton(value: string);
|
|
5248
|
+
get cancelButton(): string;
|
|
4900
5249
|
/**
|
|
4901
5250
|
* Sets the title of the **Close** button for the ActionSheet in adaptive mode.
|
|
4902
5251
|
*/
|
|
4903
|
-
adaptiveCloseButtonTitle: string;
|
|
5252
|
+
set adaptiveCloseButtonTitle(value: string);
|
|
5253
|
+
get adaptiveCloseButtonTitle(): string;
|
|
4904
5254
|
/**
|
|
4905
5255
|
* Sets the title for the ActionSheet in adaptive mode.
|
|
4906
5256
|
*/
|
|
4907
|
-
adaptiveTitle: string;
|
|
5257
|
+
set adaptiveTitle(value: string);
|
|
5258
|
+
get adaptiveTitle(): string;
|
|
4908
5259
|
/**
|
|
4909
5260
|
* Sets the aria-label attribute of the ColorPicker toggle button.
|
|
4910
5261
|
*/
|
|
4911
|
-
toggleButtonLabel: string;
|
|
5262
|
+
set toggleButtonLabel(value: string);
|
|
5263
|
+
get toggleButtonLabel(): string;
|
|
5264
|
+
private _colorPaletteNoColor;
|
|
5265
|
+
private _colorGradientNoColor;
|
|
5266
|
+
private _flatColorPickerNoColor;
|
|
5267
|
+
private _colorPickerNoColor;
|
|
5268
|
+
private _colorGradientHandle;
|
|
5269
|
+
private _clearButton;
|
|
5270
|
+
private _hueSliderHandle;
|
|
5271
|
+
private _opacitySliderHandle;
|
|
5272
|
+
private _hexInputPlaceholder;
|
|
5273
|
+
private _redInputPlaceholder;
|
|
5274
|
+
private _greenInputPlaceholder;
|
|
5275
|
+
private _blueInputPlaceholder;
|
|
5276
|
+
private _alphaInputPlaceholder;
|
|
5277
|
+
private _redChannelLabel;
|
|
5278
|
+
private _greenChannelLabel;
|
|
5279
|
+
private _blueChannelLabel;
|
|
5280
|
+
private _alphaChannelLabel;
|
|
5281
|
+
private _passContrast;
|
|
5282
|
+
private _failContrast;
|
|
5283
|
+
private _contrastRatio;
|
|
5284
|
+
private _previewColor;
|
|
5285
|
+
private _revertSelection;
|
|
5286
|
+
private _gradientView;
|
|
5287
|
+
private _paletteView;
|
|
5288
|
+
private _formatButton;
|
|
5289
|
+
private _applyButton;
|
|
5290
|
+
private _cancelButton;
|
|
5291
|
+
private _adaptiveCloseButtonTitle;
|
|
5292
|
+
private _adaptiveTitle;
|
|
5293
|
+
private _toggleButtonLabel;
|
|
4912
5294
|
static ɵfac: i0.ɵɵFactoryDeclaration<ColorPickerMessages, never>;
|
|
4913
5295
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ColorPickerMessages, "kendo-colorpicker-messages-base", never, { "colorPaletteNoColor": { "alias": "colorPaletteNoColor"; "required": false; }; "colorGradientNoColor": { "alias": "colorGradientNoColor"; "required": false; }; "flatColorPickerNoColor": { "alias": "flatColorPickerNoColor"; "required": false; }; "colorPickerNoColor": { "alias": "colorPickerNoColor"; "required": false; }; "colorGradientHandle": { "alias": "colorGradientHandle"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "hueSliderHandle": { "alias": "hueSliderHandle"; "required": false; }; "opacitySliderHandle": { "alias": "opacitySliderHandle"; "required": false; }; "hexInputPlaceholder": { "alias": "hexInputPlaceholder"; "required": false; }; "redInputPlaceholder": { "alias": "redInputPlaceholder"; "required": false; }; "greenInputPlaceholder": { "alias": "greenInputPlaceholder"; "required": false; }; "blueInputPlaceholder": { "alias": "blueInputPlaceholder"; "required": false; }; "alphaInputPlaceholder": { "alias": "alphaInputPlaceholder"; "required": false; }; "redChannelLabel": { "alias": "redChannelLabel"; "required": false; }; "greenChannelLabel": { "alias": "greenChannelLabel"; "required": false; }; "blueChannelLabel": { "alias": "blueChannelLabel"; "required": false; }; "alphaChannelLabel": { "alias": "alphaChannelLabel"; "required": false; }; "passContrast": { "alias": "passContrast"; "required": false; }; "failContrast": { "alias": "failContrast"; "required": false; }; "contrastRatio": { "alias": "contrastRatio"; "required": false; }; "previewColor": { "alias": "previewColor"; "required": false; }; "revertSelection": { "alias": "revertSelection"; "required": false; }; "gradientView": { "alias": "gradientView"; "required": false; }; "paletteView": { "alias": "paletteView"; "required": false; }; "formatButton": { "alias": "formatButton"; "required": false; }; "applyButton": { "alias": "applyButton"; "required": false; }; "cancelButton": { "alias": "cancelButton"; "required": false; }; "adaptiveCloseButtonTitle": { "alias": "adaptiveCloseButtonTitle"; "required": false; }; "adaptiveTitle": { "alias": "adaptiveTitle"; "required": false; }; "toggleButtonLabel": { "alias": "toggleButtonLabel"; "required": false; }; }, {}, never, never, true, never>;
|
|
4914
5296
|
}
|
|
@@ -5102,17 +5484,20 @@ declare class ColorGradientComponent implements OnInit, OnChanges, OnDestroy, Co
|
|
|
5102
5484
|
/**
|
|
5103
5485
|
* @hidden
|
|
5104
5486
|
*/
|
|
5105
|
-
adaptiveMode: boolean;
|
|
5487
|
+
set adaptiveMode(value: boolean);
|
|
5488
|
+
get adaptiveMode(): boolean;
|
|
5106
5489
|
/**
|
|
5107
5490
|
* @hidden
|
|
5108
5491
|
*/
|
|
5109
|
-
id: string;
|
|
5492
|
+
set id(value: string);
|
|
5493
|
+
get id(): string;
|
|
5110
5494
|
/**
|
|
5111
5495
|
* Shows or hides the alpha slider.
|
|
5112
5496
|
*
|
|
5113
5497
|
* @default true
|
|
5114
5498
|
*/
|
|
5115
|
-
opacity: boolean;
|
|
5499
|
+
set opacity(value: boolean);
|
|
5500
|
+
get opacity(): boolean;
|
|
5116
5501
|
/**
|
|
5117
5502
|
* Sets the size of the ColorGradient internal elements. The default value is set by the Kendo theme.
|
|
5118
5503
|
*
|
|
@@ -5124,25 +5509,29 @@ declare class ColorGradientComponent implements OnInit, OnChanges, OnDestroy, Co
|
|
|
5124
5509
|
*
|
|
5125
5510
|
* @default false
|
|
5126
5511
|
*/
|
|
5127
|
-
disabled: boolean;
|
|
5512
|
+
set disabled(value: boolean);
|
|
5513
|
+
get disabled(): boolean;
|
|
5128
5514
|
/**
|
|
5129
5515
|
* Sets the read-only state of the ColorGradient.
|
|
5130
5516
|
*
|
|
5131
5517
|
* @default false
|
|
5132
5518
|
*/
|
|
5133
|
-
readonly: boolean;
|
|
5519
|
+
set readonly(value: boolean);
|
|
5520
|
+
get readonly(): boolean;
|
|
5134
5521
|
/**
|
|
5135
5522
|
* Shows or hides the **Clear color** button.
|
|
5136
5523
|
*
|
|
5137
5524
|
* @default false
|
|
5138
5525
|
*/
|
|
5139
|
-
clearButton: boolean;
|
|
5526
|
+
set clearButton(value: boolean);
|
|
5527
|
+
get clearButton(): boolean;
|
|
5140
5528
|
/**
|
|
5141
5529
|
* Sets the delay (in milliseconds) before the value changes on handle drag.
|
|
5142
5530
|
*
|
|
5143
5531
|
* @default 0
|
|
5144
5532
|
*/
|
|
5145
|
-
delay: number;
|
|
5533
|
+
set delay(value: number);
|
|
5534
|
+
get delay(): number;
|
|
5146
5535
|
/**
|
|
5147
5536
|
* Sets the value of the selected color.
|
|
5148
5537
|
*/
|
|
@@ -5165,7 +5554,8 @@ declare class ColorGradientComponent implements OnInit, OnChanges, OnDestroy, Co
|
|
|
5165
5554
|
*
|
|
5166
5555
|
* @default 'rgba'
|
|
5167
5556
|
*/
|
|
5168
|
-
format: OutputFormat;
|
|
5557
|
+
set format(value: OutputFormat);
|
|
5558
|
+
get format(): OutputFormat;
|
|
5169
5559
|
/**
|
|
5170
5560
|
* Fires when the user selects a new color..
|
|
5171
5561
|
*/
|
|
@@ -5195,13 +5585,15 @@ declare class ColorGradientComponent implements OnInit, OnChanges, OnDestroy, Co
|
|
|
5195
5585
|
*
|
|
5196
5586
|
* @default 5
|
|
5197
5587
|
*/
|
|
5198
|
-
gradientSliderStep: number;
|
|
5588
|
+
set gradientSliderStep(value: number);
|
|
5589
|
+
get gradientSliderStep(): number;
|
|
5199
5590
|
/**
|
|
5200
5591
|
* Sets the step (in pixels) for moving the gradient drag handle with `Shift+arrow keys`.
|
|
5201
5592
|
*
|
|
5202
5593
|
* @default 2
|
|
5203
5594
|
*/
|
|
5204
|
-
gradientSliderSmallStep: number;
|
|
5595
|
+
set gradientSliderSmallStep(value: number);
|
|
5596
|
+
get gradientSliderSmallStep(): number;
|
|
5205
5597
|
/**
|
|
5206
5598
|
* Controls whether ARIA attributes should be applied to the component.
|
|
5207
5599
|
* When used within FlatColorPicker, this should be set to false to comply with accessibility guidelines.
|
|
@@ -5209,7 +5601,8 @@ declare class ColorGradientComponent implements OnInit, OnChanges, OnDestroy, Co
|
|
|
5209
5601
|
* @default true
|
|
5210
5602
|
* @hidden
|
|
5211
5603
|
*/
|
|
5212
|
-
ariaAttributesEnabled: boolean;
|
|
5604
|
+
set ariaAttributesEnabled(value: boolean);
|
|
5605
|
+
get ariaAttributesEnabled(): boolean;
|
|
5213
5606
|
gradientDragHandle: ElementRef;
|
|
5214
5607
|
inputs: ColorInputComponent;
|
|
5215
5608
|
private alphaSlider;
|
|
@@ -5226,13 +5619,25 @@ declare class ColorGradientComponent implements OnInit, OnChanges, OnDestroy, Co
|
|
|
5226
5619
|
private _value;
|
|
5227
5620
|
private _tabindex;
|
|
5228
5621
|
private _contrastTool;
|
|
5622
|
+
private _adaptiveMode;
|
|
5623
|
+
private _id;
|
|
5624
|
+
private _opacity;
|
|
5625
|
+
private _size;
|
|
5626
|
+
private _disabled;
|
|
5627
|
+
private _readonly;
|
|
5628
|
+
private _clearButton;
|
|
5629
|
+
private _delay;
|
|
5630
|
+
private _format;
|
|
5631
|
+
private _gradientSliderStep;
|
|
5632
|
+
private _gradientSliderSmallStep;
|
|
5633
|
+
private _ariaAttributesEnabled;
|
|
5229
5634
|
private listeners;
|
|
5230
5635
|
private hueSliderTouched;
|
|
5231
5636
|
private alphaSliderTouched;
|
|
5232
|
-
private _size;
|
|
5233
5637
|
private updateValues;
|
|
5234
5638
|
private changeRequestsSubscription;
|
|
5235
5639
|
private dynamicRTLSubscription;
|
|
5640
|
+
private controlEventsSub;
|
|
5236
5641
|
private hsvHandleCoordinates;
|
|
5237
5642
|
get gradientRect(): ClientRect;
|
|
5238
5643
|
/**
|
|
@@ -5388,7 +5793,7 @@ declare class ColorPaletteComponent implements OnInit, AfterViewInit, OnDestroy,
|
|
|
5388
5793
|
private cdr;
|
|
5389
5794
|
private renderer;
|
|
5390
5795
|
private localizationService;
|
|
5391
|
-
private
|
|
5796
|
+
private injector;
|
|
5392
5797
|
/**
|
|
5393
5798
|
* @hidden
|
|
5394
5799
|
*/
|
|
@@ -5408,14 +5813,16 @@ declare class ColorPaletteComponent implements OnInit, AfterViewInit, OnDestroy,
|
|
|
5408
5813
|
/**
|
|
5409
5814
|
* @hidden
|
|
5410
5815
|
*/
|
|
5411
|
-
id: string;
|
|
5816
|
+
set id(value: string);
|
|
5817
|
+
get id(): string;
|
|
5412
5818
|
/**
|
|
5413
5819
|
* Specifies the output format of the `ColorPaletteComponent`.
|
|
5414
5820
|
* The input value may be in a different format. The component parses it into the output `format`.
|
|
5415
5821
|
*
|
|
5416
5822
|
* @default 'hex'
|
|
5417
5823
|
*/
|
|
5418
|
-
format: OutputFormat;
|
|
5824
|
+
set format(value: OutputFormat);
|
|
5825
|
+
get format(): OutputFormat;
|
|
5419
5826
|
/**
|
|
5420
5827
|
* Sets the value of the selected color.
|
|
5421
5828
|
*/
|
|
@@ -5449,17 +5856,20 @@ declare class ColorPaletteComponent implements OnInit, AfterViewInit, OnDestroy,
|
|
|
5449
5856
|
/**
|
|
5450
5857
|
* 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).
|
|
5451
5858
|
*/
|
|
5452
|
-
disabled: boolean;
|
|
5859
|
+
set disabled(value: boolean);
|
|
5860
|
+
get disabled(): boolean;
|
|
5453
5861
|
/**
|
|
5454
5862
|
* Sets the read-only state of the ColorPalette.
|
|
5455
5863
|
*
|
|
5456
5864
|
* @default false
|
|
5457
5865
|
*/
|
|
5458
|
-
readonly: boolean;
|
|
5866
|
+
set readonly(value: boolean);
|
|
5867
|
+
get readonly(): boolean;
|
|
5459
5868
|
/**
|
|
5460
5869
|
* Sets the size of a color cell. The default tile size depends on the `size` of the component.
|
|
5461
5870
|
*/
|
|
5462
|
-
tileSize: number | TileSize;
|
|
5871
|
+
set tileSize(value: number | TileSize);
|
|
5872
|
+
get tileSize(): number | TileSize;
|
|
5463
5873
|
/**
|
|
5464
5874
|
* @hidden
|
|
5465
5875
|
*/
|
|
@@ -5505,32 +5915,46 @@ declare class ColorPaletteComponent implements OnInit, AfterViewInit, OnDestroy,
|
|
|
5505
5915
|
/**
|
|
5506
5916
|
* @hidden
|
|
5507
5917
|
*/
|
|
5508
|
-
activeCellId: string;
|
|
5918
|
+
get activeCellId(): string;
|
|
5919
|
+
set activeCellId(value: string);
|
|
5509
5920
|
/**
|
|
5510
5921
|
* @hidden
|
|
5511
5922
|
*/
|
|
5512
|
-
focusedCell: TableCell;
|
|
5923
|
+
get focusedCell(): TableCell;
|
|
5924
|
+
set focusedCell(value: TableCell);
|
|
5513
5925
|
/**
|
|
5514
5926
|
* @hidden
|
|
5515
5927
|
*/
|
|
5516
|
-
selectedCell: TableCell;
|
|
5928
|
+
get selectedCell(): TableCell;
|
|
5929
|
+
set selectedCell(value: TableCell);
|
|
5517
5930
|
/**
|
|
5518
5931
|
* @hidden
|
|
5519
5932
|
*/
|
|
5520
|
-
focusInComponent: boolean;
|
|
5933
|
+
get focusInComponent(): boolean;
|
|
5934
|
+
set focusInComponent(value: boolean);
|
|
5521
5935
|
/**
|
|
5522
5936
|
* @hidden
|
|
5523
5937
|
*/
|
|
5524
5938
|
uniqueId: string;
|
|
5525
5939
|
private selection;
|
|
5526
|
-
private
|
|
5940
|
+
private _id;
|
|
5941
|
+
private _format;
|
|
5527
5942
|
private _value;
|
|
5528
5943
|
private _columns;
|
|
5529
5944
|
private _palette;
|
|
5945
|
+
private _size;
|
|
5530
5946
|
private _tabindex;
|
|
5947
|
+
private _disabled;
|
|
5948
|
+
private _readonly;
|
|
5949
|
+
private _tileSize;
|
|
5950
|
+
private _focusedCell;
|
|
5951
|
+
private _selectedCell;
|
|
5952
|
+
private _focusInComponent;
|
|
5953
|
+
private _activeCellId;
|
|
5531
5954
|
private subs;
|
|
5532
5955
|
private dynamicRTLSubscription;
|
|
5533
|
-
|
|
5956
|
+
private control;
|
|
5957
|
+
constructor(host: ElementRef, service: ColorPaletteService, cdr: ChangeDetectorRef, renderer: Renderer2, localizationService: LocalizationService, injector: Injector);
|
|
5534
5958
|
ngOnInit(): void;
|
|
5535
5959
|
ngAfterViewInit(): void;
|
|
5536
5960
|
ngOnDestroy(): void;
|
|
@@ -5662,7 +6086,7 @@ declare class FlatColorPickerActionButtonsComponent {
|
|
|
5662
6086
|
* @remarks
|
|
5663
6087
|
* Supported children components are: {@link ColorPickerCustomMessagesComponent}.
|
|
5664
6088
|
*/
|
|
5665
|
-
declare class FlatColorPickerComponent implements OnInit, AfterViewInit, OnDestroy, ControlValueAccessor {
|
|
6089
|
+
declare class FlatColorPickerComponent implements OnInit, AfterViewInit, OnChanges, OnDestroy, ControlValueAccessor {
|
|
5666
6090
|
host: ElementRef;
|
|
5667
6091
|
private service;
|
|
5668
6092
|
private localizationService;
|
|
@@ -5695,13 +6119,15 @@ declare class FlatColorPickerComponent implements OnInit, AfterViewInit, OnDestr
|
|
|
5695
6119
|
*
|
|
5696
6120
|
* @default false
|
|
5697
6121
|
*/
|
|
5698
|
-
readonly: boolean;
|
|
6122
|
+
set readonly(readonly: boolean);
|
|
6123
|
+
get readonly(): boolean;
|
|
5699
6124
|
/**
|
|
5700
6125
|
* 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).
|
|
5701
6126
|
*
|
|
5702
6127
|
* @default false
|
|
5703
6128
|
*/
|
|
5704
|
-
disabled: boolean;
|
|
6129
|
+
set disabled(disabled: boolean);
|
|
6130
|
+
get disabled(): boolean;
|
|
5705
6131
|
/**
|
|
5706
6132
|
* Specifies the output format of the FlatColorPicker.
|
|
5707
6133
|
*
|
|
@@ -5709,7 +6135,8 @@ declare class FlatColorPickerComponent implements OnInit, AfterViewInit, OnDestr
|
|
|
5709
6135
|
*
|
|
5710
6136
|
* @default 'rgba'
|
|
5711
6137
|
*/
|
|
5712
|
-
format: OutputFormat;
|
|
6138
|
+
set format(format: OutputFormat);
|
|
6139
|
+
get format(): OutputFormat;
|
|
5713
6140
|
/**
|
|
5714
6141
|
* Specifies the initially selected color.
|
|
5715
6142
|
*/
|
|
@@ -5727,7 +6154,8 @@ declare class FlatColorPickerComponent implements OnInit, AfterViewInit, OnDestr
|
|
|
5727
6154
|
*
|
|
5728
6155
|
* @default true
|
|
5729
6156
|
*/
|
|
5730
|
-
clearButton: boolean;
|
|
6157
|
+
set clearButton(clearButton: boolean);
|
|
6158
|
+
get clearButton(): boolean;
|
|
5731
6159
|
/**
|
|
5732
6160
|
* Displays `Apply` and `Cancel` action buttons and a color preview pane.
|
|
5733
6161
|
*
|
|
@@ -5739,21 +6167,25 @@ declare class FlatColorPickerComponent implements OnInit, AfterViewInit, OnDestr
|
|
|
5739
6167
|
*
|
|
5740
6168
|
* @default true
|
|
5741
6169
|
*/
|
|
5742
|
-
preview: boolean;
|
|
6170
|
+
set preview(preview: boolean);
|
|
6171
|
+
get preview(): boolean;
|
|
5743
6172
|
/**
|
|
5744
6173
|
* Configures the layout of the `Apply` and `Cancel` action buttons.
|
|
5745
6174
|
*
|
|
5746
6175
|
* @default 'end'
|
|
5747
6176
|
*/
|
|
5748
|
-
actionsLayout: ColorPickerActionsLayout;
|
|
6177
|
+
set actionsLayout(actionsLayout: ColorPickerActionsLayout);
|
|
6178
|
+
get actionsLayout(): ColorPickerActionsLayout;
|
|
5749
6179
|
/**
|
|
5750
6180
|
* Sets the initially active view in the FlatColorPicker. Supports two-way binding.
|
|
5751
6181
|
*/
|
|
5752
|
-
activeView: ColorPickerView;
|
|
6182
|
+
set activeView(activeView: ColorPickerView);
|
|
6183
|
+
get activeView(): ColorPickerView;
|
|
5753
6184
|
/**
|
|
5754
6185
|
* Specifies the views to render. The default value is gradient and palette.
|
|
5755
6186
|
*/
|
|
5756
|
-
views: Array<ColorPickerView
|
|
6187
|
+
set views(views: Array<ColorPickerView>);
|
|
6188
|
+
get views(): Array<ColorPickerView>;
|
|
5757
6189
|
/**
|
|
5758
6190
|
* Configures the gradient view.
|
|
5759
6191
|
*/
|
|
@@ -5762,7 +6194,8 @@ declare class FlatColorPickerComponent implements OnInit, AfterViewInit, OnDestr
|
|
|
5762
6194
|
/**
|
|
5763
6195
|
* @hidden
|
|
5764
6196
|
*/
|
|
5765
|
-
adaptiveMode: boolean;
|
|
6197
|
+
set adaptiveMode(adaptiveMode: boolean);
|
|
6198
|
+
get adaptiveMode(): boolean;
|
|
5766
6199
|
/**
|
|
5767
6200
|
* Configures the palette view.
|
|
5768
6201
|
*/
|
|
@@ -5808,11 +6241,20 @@ declare class FlatColorPickerComponent implements OnInit, AfterViewInit, OnDestr
|
|
|
5808
6241
|
* @hidden
|
|
5809
6242
|
*/
|
|
5810
6243
|
selection: string;
|
|
6244
|
+
private _readonly;
|
|
6245
|
+
private _disabled;
|
|
6246
|
+
private _format;
|
|
6247
|
+
private _clearButton;
|
|
6248
|
+
private _preview;
|
|
6249
|
+
private _actionsLayout;
|
|
6250
|
+
private _activeView;
|
|
6251
|
+
private _views;
|
|
6252
|
+
private _adaptiveMode;
|
|
6253
|
+
private _gradientSettings;
|
|
6254
|
+
private _paletteSettings;
|
|
5811
6255
|
private focused;
|
|
5812
6256
|
private _value;
|
|
5813
6257
|
private _tabindex;
|
|
5814
|
-
private _gradientSettings;
|
|
5815
|
-
private _paletteSettings;
|
|
5816
6258
|
private dynamicRTLSubscription;
|
|
5817
6259
|
private subscriptions;
|
|
5818
6260
|
private internalNavigation;
|
|
@@ -5974,33 +6416,39 @@ declare class OTPInputComponent implements ControlValueAccessor, OnInit, AfterVi
|
|
|
5974
6416
|
*
|
|
5975
6417
|
* @default 'text'
|
|
5976
6418
|
*/
|
|
5977
|
-
type: OTPInputType;
|
|
6419
|
+
set type(value: OTPInputType);
|
|
6420
|
+
get type(): OTPInputType;
|
|
5978
6421
|
/**
|
|
5979
6422
|
* Sets whether the input fields are separate or adjacent.
|
|
5980
6423
|
*
|
|
5981
6424
|
* @default true
|
|
5982
6425
|
*/
|
|
5983
|
-
spacing: boolean;
|
|
6426
|
+
set spacing(value: boolean);
|
|
6427
|
+
get spacing(): boolean;
|
|
5984
6428
|
/**
|
|
5985
6429
|
* Sets the separator between groups of input fields. You can use this only when `groupLength` is set.
|
|
5986
6430
|
*/
|
|
5987
|
-
separator: string | OTPSeparatorIcon;
|
|
6431
|
+
set separator(value: string | OTPSeparatorIcon);
|
|
6432
|
+
get separator(): string | OTPSeparatorIcon;
|
|
5988
6433
|
/**
|
|
5989
6434
|
* When `true`, disables the OTPInput.
|
|
5990
6435
|
*
|
|
5991
6436
|
* @default false
|
|
5992
6437
|
*/
|
|
5993
|
-
disabled: boolean;
|
|
6438
|
+
set disabled(value: boolean);
|
|
6439
|
+
get disabled(): boolean;
|
|
5994
6440
|
/**
|
|
5995
6441
|
* When `true`, sets the OTPInput to read-only mode.
|
|
5996
6442
|
*
|
|
5997
6443
|
* @default false
|
|
5998
6444
|
*/
|
|
5999
|
-
readonly: boolean;
|
|
6445
|
+
set readonly(value: boolean);
|
|
6446
|
+
get readonly(): boolean;
|
|
6000
6447
|
/**
|
|
6001
6448
|
* Sets the placeholder for the input fields.
|
|
6002
6449
|
*/
|
|
6003
|
-
placeholder: string;
|
|
6450
|
+
set placeholder(value: string);
|
|
6451
|
+
get placeholder(): string;
|
|
6004
6452
|
/**
|
|
6005
6453
|
* Sets the length of the groups. If you set a number, all groups have the same length. If you set an array, each group can have a different length.
|
|
6006
6454
|
*/
|
|
@@ -6066,11 +6514,11 @@ declare class OTPInputComponent implements ControlValueAccessor, OnInit, AfterVi
|
|
|
6066
6514
|
/**
|
|
6067
6515
|
* @hidden
|
|
6068
6516
|
*/
|
|
6069
|
-
groupLengthArray: Array<number
|
|
6517
|
+
get groupLengthArray(): Array<number> | null;
|
|
6070
6518
|
/**
|
|
6071
6519
|
* @hidden
|
|
6072
6520
|
*/
|
|
6073
|
-
inputsArray: Array<any>;
|
|
6521
|
+
get inputsArray(): Array<any>;
|
|
6074
6522
|
/**
|
|
6075
6523
|
* @hidden
|
|
6076
6524
|
*/
|
|
@@ -6078,20 +6526,28 @@ declare class OTPInputComponent implements ControlValueAccessor, OnInit, AfterVi
|
|
|
6078
6526
|
/**
|
|
6079
6527
|
* @hidden
|
|
6080
6528
|
*/
|
|
6081
|
-
adjacentGroups: Array<number> | null;
|
|
6529
|
+
get adjacentGroups(): Array<number> | null;
|
|
6082
6530
|
private _length;
|
|
6531
|
+
private _type;
|
|
6532
|
+
private _spacing;
|
|
6533
|
+
private _separator;
|
|
6534
|
+
private _disabled;
|
|
6535
|
+
private _readonly;
|
|
6536
|
+
private _placeholder;
|
|
6083
6537
|
private _groupLength;
|
|
6084
|
-
private _inputGroups;
|
|
6085
|
-
private separatorPositions;
|
|
6086
6538
|
private _value;
|
|
6087
6539
|
private _size;
|
|
6088
6540
|
private _rounded;
|
|
6089
6541
|
private _fillMode;
|
|
6542
|
+
private _inputAttributes;
|
|
6543
|
+
private _groupLengthArray;
|
|
6544
|
+
private _inputsArrayComputed;
|
|
6545
|
+
private _inputGroups;
|
|
6546
|
+
private separatorPositions;
|
|
6090
6547
|
private _isFocused;
|
|
6091
6548
|
private focusChangedProgrammatically;
|
|
6092
6549
|
private inputFieldValueChanged;
|
|
6093
6550
|
private focusedInput;
|
|
6094
|
-
private _inputAttributes;
|
|
6095
6551
|
parsedAttributes: {
|
|
6096
6552
|
[key: string]: string;
|
|
6097
6553
|
};
|
|
@@ -6102,7 +6558,6 @@ declare class OTPInputComponent implements ControlValueAccessor, OnInit, AfterVi
|
|
|
6102
6558
|
constructor(hostElement: ElementRef, cdr: ChangeDetectorRef, injector: Injector, renderer: Renderer2, localizationService: LocalizationService, zone: NgZone);
|
|
6103
6559
|
ngOnInit(): void;
|
|
6104
6560
|
ngAfterViewInit(): void;
|
|
6105
|
-
ngOnChanges(changes: any): void;
|
|
6106
6561
|
ngOnDestroy(): void;
|
|
6107
6562
|
/**
|
|
6108
6563
|
* @hidden
|
|
@@ -6194,6 +6649,7 @@ declare class OTPInputComponent implements ControlValueAccessor, OnInit, AfterVi
|
|
|
6194
6649
|
private populateSeparatorPositions;
|
|
6195
6650
|
private clearGroups;
|
|
6196
6651
|
private clearInputValues;
|
|
6652
|
+
private refreshFormAttributes;
|
|
6197
6653
|
private handleInputChanges;
|
|
6198
6654
|
private setGroupFillMode;
|
|
6199
6655
|
private setInputAttributes;
|
|
@@ -6220,7 +6676,9 @@ declare class OTPInputMessages extends ComponentMessages {
|
|
|
6220
6676
|
* and total number of inputs. The `{currentInput}` and `{totalInputs}` placeholders will be
|
|
6221
6677
|
* replaced internally with the respective actual values.
|
|
6222
6678
|
*/
|
|
6223
|
-
ariaLabel: string;
|
|
6679
|
+
set ariaLabel(value: string);
|
|
6680
|
+
get ariaLabel(): string;
|
|
6681
|
+
private _ariaLabel;
|
|
6224
6682
|
static ɵfac: i0.ɵɵFactoryDeclaration<OTPInputMessages, never>;
|
|
6225
6683
|
static ɵdir: i0.ɵɵDirectiveDeclaration<OTPInputMessages, "kendo-otpinput-messages-base", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, {}, never, never, true, never>;
|
|
6226
6684
|
}
|