@progress/kendo-angular-inputs 23.0.0-develop.5 → 23.0.0-develop.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/checkbox/checkbox.component.d.ts +1 -3
- package/checkbox/checkbox.directive.d.ts +2 -6
- package/colorpicker/color-gradient.component.d.ts +1 -2
- package/colorpicker/color-input.component.d.ts +1 -2
- package/colorpicker/color-palette.component.d.ts +1 -2
- package/colorpicker/colorpicker.component.d.ts +3 -9
- package/colorpicker/flatcolorpicker.component.d.ts +1 -2
- package/common/models/fillmode.d.ts +0 -1
- package/common/models/rounded.d.ts +0 -2
- package/common/models/size.d.ts +0 -1
- package/common/radio-checkbox.base.d.ts +1 -2
- package/fesm2022/progress-kendo-angular-inputs.mjs +34 -86
- package/maskedtextbox/maskedtextbox.component.d.ts +3 -6
- package/numerictextbox/numerictextbox.component.d.ts +3 -9
- package/otpinput/otpinput.component.d.ts +3 -9
- package/package-metadata.mjs +2 -2
- package/package.json +12 -12
- package/radiobutton/radiobutton.directive.d.ts +1 -3
- package/signature/signature.component.d.ts +3 -9
- package/switch/switch.component.d.ts +3 -9
- package/textarea/textarea.component.d.ts +3 -6
- package/textbox/textbox.component.d.ts +3 -6
|
@@ -35,9 +35,7 @@ export declare class CheckBoxComponent extends RadioCheckBoxBase implements Cont
|
|
|
35
35
|
get checkedState(): CheckBoxState;
|
|
36
36
|
/**
|
|
37
37
|
* Sets the `rounded` property to specify the border radius of the CheckBox
|
|
38
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/checkbox/appearance#roundness)).
|
|
39
|
-
*
|
|
40
|
-
* @default 'medium'
|
|
38
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/checkbox/appearance#roundness)). The default value is set by the Kendo theme.
|
|
41
39
|
*/
|
|
42
40
|
set rounded(rounded: CheckBoxRounded);
|
|
43
41
|
get rounded(): CheckBoxRounded;
|
|
@@ -21,17 +21,13 @@ export declare class CheckBoxDirective {
|
|
|
21
21
|
get isDisabled(): boolean;
|
|
22
22
|
/**
|
|
23
23
|
* Sets the `size` property to specify the width and height of the CheckBox
|
|
24
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/checkbox/appearance#size)).
|
|
25
|
-
*
|
|
26
|
-
* @default 'medium'
|
|
24
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/checkbox/appearance#size)). The default value is set by the Kendo theme.
|
|
27
25
|
*/
|
|
28
26
|
set size(size: InputSize);
|
|
29
27
|
get size(): InputSize;
|
|
30
28
|
/**
|
|
31
29
|
* Sets the `rounded` property to specify the border radius of the CheckBox
|
|
32
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/checkbox/appearance#roundness)).
|
|
33
|
-
*
|
|
34
|
-
* @default 'medium'
|
|
30
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/checkbox/appearance#roundness)). The default value is set by the Kendo theme.
|
|
35
31
|
*
|
|
36
32
|
*/
|
|
37
33
|
set rounded(rounded: CheckBoxRounded);
|
|
@@ -68,9 +68,8 @@ export declare class ColorGradientComponent implements OnInit, OnChanges, OnDest
|
|
|
68
68
|
*/
|
|
69
69
|
opacity: boolean;
|
|
70
70
|
/**
|
|
71
|
-
* Sets the size of the ColorGradient internal elements.
|
|
71
|
+
* Sets the size of the ColorGradient internal elements. The default value is set by the Kendo theme.
|
|
72
72
|
*
|
|
73
|
-
* @default 'medium'
|
|
74
73
|
*/
|
|
75
74
|
set size(size: InputSize);
|
|
76
75
|
get size(): InputSize;
|
|
@@ -26,9 +26,8 @@ export declare class ColorInputComponent implements AfterViewInit, OnChanges {
|
|
|
26
26
|
*/
|
|
27
27
|
formatView: string;
|
|
28
28
|
/**
|
|
29
|
-
* Sets the size of the ColorInput.
|
|
29
|
+
* Sets the size of the ColorInput. The default value is set by the Kendo theme.
|
|
30
30
|
*
|
|
31
|
-
* @default 'medium'
|
|
32
31
|
*/
|
|
33
32
|
size: InputSize;
|
|
34
33
|
/**
|
|
@@ -74,9 +74,8 @@ export declare class ColorPaletteComponent implements OnInit, AfterViewInit, OnD
|
|
|
74
74
|
set palette(value: string | Array<string>);
|
|
75
75
|
get palette(): string | Array<string>;
|
|
76
76
|
/**
|
|
77
|
-
* Sets the size of the ColorPalette internal elements.
|
|
77
|
+
* Sets the size of the ColorPalette internal elements. The default value is set by the Kendo theme.
|
|
78
78
|
*
|
|
79
|
-
* @default 'medium'
|
|
80
79
|
*/
|
|
81
80
|
set size(size: InputSize);
|
|
82
81
|
get size(): InputSize;
|
|
@@ -173,25 +173,19 @@ export declare class ColorPickerComponent implements OnInit, AfterViewInit, OnCh
|
|
|
173
173
|
actionsLayout: ColorPickerActionsLayout;
|
|
174
174
|
/**
|
|
175
175
|
* The size property specifies the padding of the ColorPicker internal elements
|
|
176
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/colorpicker/appearance#size)).
|
|
177
|
-
*
|
|
178
|
-
* @default 'medium'
|
|
176
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/colorpicker/appearance#size)). The default value is set by the Kendo theme.
|
|
179
177
|
*/
|
|
180
178
|
set size(size: InputSize);
|
|
181
179
|
get size(): InputSize;
|
|
182
180
|
/**
|
|
183
181
|
* The rounded property specifies the border radius of the ColorPicker
|
|
184
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/colorpicker/appearance#roundness)).
|
|
185
|
-
*
|
|
186
|
-
* @default 'medium'
|
|
182
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/colorpicker/appearance#roundness)). The default value is set by the Kendo theme.
|
|
187
183
|
*/
|
|
188
184
|
set rounded(rounded: InputRounded);
|
|
189
185
|
get rounded(): InputRounded;
|
|
190
186
|
/**
|
|
191
187
|
* The fillMode property specifies the background and border styles of the ColorPicker
|
|
192
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/colorpicker/appearance#fill-mode)).
|
|
193
|
-
*
|
|
194
|
-
* @default 'solid'
|
|
188
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/colorpicker/appearance#fill-mode)). The default value is set by the Kendo theme.
|
|
195
189
|
*/
|
|
196
190
|
set fillMode(fillMode: InputFillMode);
|
|
197
191
|
get fillMode(): InputFillMode;
|
|
@@ -134,9 +134,8 @@ export declare class FlatColorPickerComponent implements OnInit, AfterViewInit,
|
|
|
134
134
|
set paletteSettings(value: PaletteSettings);
|
|
135
135
|
get paletteSettings(): PaletteSettings;
|
|
136
136
|
/**
|
|
137
|
-
* Sets the size of the FlatColorPicker internal elements.
|
|
137
|
+
* Sets the size of the FlatColorPicker internal elements. The default value is set by the Kendo theme.
|
|
138
138
|
*
|
|
139
|
-
* @default 'medium'
|
|
140
139
|
*/
|
|
141
140
|
set size(size: InputSize);
|
|
142
141
|
get size(): InputSize;
|
|
@@ -7,7 +7,6 @@
|
|
|
7
7
|
*
|
|
8
8
|
* Use this type to set the `rounded` property.
|
|
9
9
|
*
|
|
10
|
-
* @default `medium`
|
|
11
10
|
*/
|
|
12
11
|
export type InputRounded = 'small' | 'medium' | 'large' | 'full' | 'none';
|
|
13
12
|
/**
|
|
@@ -15,6 +14,5 @@ export type InputRounded = 'small' | 'medium' | 'large' | 'full' | 'none';
|
|
|
15
14
|
*
|
|
16
15
|
* Use this type to set the `rounded` property of the CheckBox.
|
|
17
16
|
*
|
|
18
|
-
* @default `medium`
|
|
19
17
|
*/
|
|
20
18
|
export type CheckBoxRounded = 'small' | 'medium' | 'large' | 'none';
|
package/common/models/size.d.ts
CHANGED
|
@@ -51,9 +51,8 @@ export declare class RadioCheckBoxBase implements ControlValueAccessor {
|
|
|
51
51
|
*/
|
|
52
52
|
value: string;
|
|
53
53
|
/**
|
|
54
|
-
* The size property specifies the width and height of the component.
|
|
54
|
+
* The size property specifies the width and height of the component. The default value is set by the Kendo theme.
|
|
55
55
|
*
|
|
56
|
-
* @default 'medium'
|
|
57
56
|
*
|
|
58
57
|
*/
|
|
59
58
|
set size(size: InputSize);
|
|
@@ -567,7 +567,7 @@ const packageMetadata = {
|
|
|
567
567
|
productCode: 'KENDOUIANGULAR',
|
|
568
568
|
productCodes: ['KENDOUIANGULAR'],
|
|
569
569
|
publishDate: 0,
|
|
570
|
-
version: '23.0.0-develop.
|
|
570
|
+
version: '23.0.0-develop.7',
|
|
571
571
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
572
572
|
};
|
|
573
573
|
|
|
@@ -2580,9 +2580,7 @@ class SwitchComponent {
|
|
|
2580
2580
|
*/
|
|
2581
2581
|
tabindex = 0;
|
|
2582
2582
|
/**
|
|
2583
|
-
* Sets the size of the Switch.
|
|
2584
|
-
*
|
|
2585
|
-
* @default undefined
|
|
2583
|
+
* Sets the size of the Switch. The default value is set by the Kendo theme.
|
|
2586
2584
|
*/
|
|
2587
2585
|
set size(size) {
|
|
2588
2586
|
this.handleClasses(size, 'size');
|
|
@@ -2592,9 +2590,7 @@ class SwitchComponent {
|
|
|
2592
2590
|
return this._size;
|
|
2593
2591
|
}
|
|
2594
2592
|
/**
|
|
2595
|
-
* Sets the border radius of the Switch.
|
|
2596
|
-
*
|
|
2597
|
-
* @default undefined
|
|
2593
|
+
* Sets the border radius of the Switch. The default value is set by the Kendo theme.
|
|
2598
2594
|
*/
|
|
2599
2595
|
set thumbRounded(thumbRounded) {
|
|
2600
2596
|
this.handleThumbClasses(thumbRounded);
|
|
@@ -2604,9 +2600,7 @@ class SwitchComponent {
|
|
|
2604
2600
|
return this._thumbRounded;
|
|
2605
2601
|
}
|
|
2606
2602
|
/**
|
|
2607
|
-
* Sets the border radius of the Switch track.
|
|
2608
|
-
*
|
|
2609
|
-
* @default undefined
|
|
2603
|
+
* Sets the border radius of the Switch track. The default value is set by the Kendo theme.
|
|
2610
2604
|
*/
|
|
2611
2605
|
set trackRounded(trackRounded) {
|
|
2612
2606
|
this.handleTrackClasses(trackRounded);
|
|
@@ -3962,9 +3956,7 @@ class NumericTextBoxComponent {
|
|
|
3962
3956
|
*/
|
|
3963
3957
|
maxlength;
|
|
3964
3958
|
/**
|
|
3965
|
-
* Sets the padding of the internal input element ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/appearance#size)).
|
|
3966
|
-
*
|
|
3967
|
-
* @default 'medium'
|
|
3959
|
+
* 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.
|
|
3968
3960
|
*/
|
|
3969
3961
|
set size(size) {
|
|
3970
3962
|
this.handleClasses(size, 'size');
|
|
@@ -3974,9 +3966,7 @@ class NumericTextBoxComponent {
|
|
|
3974
3966
|
return this._size;
|
|
3975
3967
|
}
|
|
3976
3968
|
/**
|
|
3977
|
-
* Sets the border radius of the NumericTextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/appearance#roundness)).
|
|
3978
|
-
*
|
|
3979
|
-
* @default 'medium'
|
|
3969
|
+
* Sets the border radius of the NumericTextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/appearance#roundness)). The default value is set by the Kendo theme.
|
|
3980
3970
|
*/
|
|
3981
3971
|
set rounded(rounded) {
|
|
3982
3972
|
this.handleClasses(rounded, 'rounded');
|
|
@@ -3986,9 +3976,7 @@ class NumericTextBoxComponent {
|
|
|
3986
3976
|
return this._rounded;
|
|
3987
3977
|
}
|
|
3988
3978
|
/**
|
|
3989
|
-
* Sets the background and border styles of the NumericTextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/appearance#fill-mode)).
|
|
3990
|
-
*
|
|
3991
|
-
* @default 'solid'
|
|
3979
|
+
* Sets the background and border styles of the NumericTextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/appearance#fill-mode)). The default value is set by the Kendo theme.
|
|
3992
3980
|
*/
|
|
3993
3981
|
set fillMode(fillMode) {
|
|
3994
3982
|
this.handleClasses(fillMode, 'fillMode');
|
|
@@ -5638,8 +5626,7 @@ class MaskedTextBoxComponent {
|
|
|
5638
5626
|
*/
|
|
5639
5627
|
title;
|
|
5640
5628
|
/**
|
|
5641
|
-
* Sets the padding size of the MaskedTextBox input element ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox/appearance#size)).
|
|
5642
|
-
* @default 'medium'
|
|
5629
|
+
* 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.
|
|
5643
5630
|
*/
|
|
5644
5631
|
set size(size) {
|
|
5645
5632
|
this.handleClasses(size, 'size');
|
|
@@ -5649,8 +5636,7 @@ class MaskedTextBoxComponent {
|
|
|
5649
5636
|
return this._size;
|
|
5650
5637
|
}
|
|
5651
5638
|
/**
|
|
5652
|
-
* Sets the border radius of the MaskedTextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox/appearance#roundness)).
|
|
5653
|
-
* @default 'medium'
|
|
5639
|
+
* Sets the border radius of the MaskedTextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox/appearance#roundness)). The default value is set by the Kendo theme.
|
|
5654
5640
|
*/
|
|
5655
5641
|
set rounded(rounded) {
|
|
5656
5642
|
this.handleClasses(rounded, 'rounded');
|
|
@@ -5660,8 +5646,7 @@ class MaskedTextBoxComponent {
|
|
|
5660
5646
|
return this._rounded;
|
|
5661
5647
|
}
|
|
5662
5648
|
/**
|
|
5663
|
-
* Sets the background and border style of the MaskedTextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox/appearance#fill-mode)).
|
|
5664
|
-
* @default 'solid'
|
|
5649
|
+
* Sets the background and border style of the MaskedTextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox/appearance#fill-mode)). The default value is set by the Kendo theme.
|
|
5665
5650
|
*/
|
|
5666
5651
|
set fillMode(fillMode) {
|
|
5667
5652
|
this.handleClasses(fillMode, 'fillMode');
|
|
@@ -6489,9 +6474,8 @@ class RadioCheckBoxBase {
|
|
|
6489
6474
|
*/
|
|
6490
6475
|
value;
|
|
6491
6476
|
/**
|
|
6492
|
-
* The size property specifies the width and height of the component.
|
|
6477
|
+
* The size property specifies the width and height of the component. The default value is set by the Kendo theme.
|
|
6493
6478
|
*
|
|
6494
|
-
* @default 'medium'
|
|
6495
6479
|
*
|
|
6496
6480
|
*/
|
|
6497
6481
|
set size(size) {
|
|
@@ -6760,9 +6744,7 @@ class CheckBoxComponent extends RadioCheckBoxBase {
|
|
|
6760
6744
|
}
|
|
6761
6745
|
/**
|
|
6762
6746
|
* Sets the `rounded` property to specify the border radius of the CheckBox
|
|
6763
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/checkbox/appearance#roundness)).
|
|
6764
|
-
*
|
|
6765
|
-
* @default 'medium'
|
|
6747
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/checkbox/appearance#roundness)). The default value is set by the Kendo theme.
|
|
6766
6748
|
*/
|
|
6767
6749
|
set rounded(rounded) {
|
|
6768
6750
|
this.handleClasses(rounded, 'rounded');
|
|
@@ -6956,9 +6938,7 @@ class CheckBoxDirective {
|
|
|
6956
6938
|
}
|
|
6957
6939
|
/**
|
|
6958
6940
|
* Sets the `size` property to specify the width and height of the CheckBox
|
|
6959
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/checkbox/appearance#size)).
|
|
6960
|
-
*
|
|
6961
|
-
* @default 'medium'
|
|
6941
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/checkbox/appearance#size)). The default value is set by the Kendo theme.
|
|
6962
6942
|
*/
|
|
6963
6943
|
set size(size) {
|
|
6964
6944
|
this.handleClasses(size, 'size');
|
|
@@ -6969,9 +6949,7 @@ class CheckBoxDirective {
|
|
|
6969
6949
|
}
|
|
6970
6950
|
/**
|
|
6971
6951
|
* Sets the `rounded` property to specify the border radius of the CheckBox
|
|
6972
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/checkbox/appearance#roundness)).
|
|
6973
|
-
*
|
|
6974
|
-
* @default 'medium'
|
|
6952
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/checkbox/appearance#roundness)). The default value is set by the Kendo theme.
|
|
6975
6953
|
*
|
|
6976
6954
|
*/
|
|
6977
6955
|
set rounded(rounded) {
|
|
@@ -7644,8 +7622,7 @@ class TextBoxComponent {
|
|
|
7644
7622
|
*/
|
|
7645
7623
|
clearButtonSvgIcon;
|
|
7646
7624
|
/**
|
|
7647
|
-
* Sets the padding of the TextBox internal input element ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/appearance#size)).
|
|
7648
|
-
* @default 'medium'
|
|
7625
|
+
* 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.
|
|
7649
7626
|
*/
|
|
7650
7627
|
set size(size) {
|
|
7651
7628
|
this.handleClasses(size, 'size');
|
|
@@ -7655,8 +7632,7 @@ class TextBoxComponent {
|
|
|
7655
7632
|
return this._size;
|
|
7656
7633
|
}
|
|
7657
7634
|
/**
|
|
7658
|
-
* Sets the border radius of the TextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/appearance#roundness)).
|
|
7659
|
-
* @default 'medium'
|
|
7635
|
+
* Sets the border radius of the TextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/appearance#roundness)). The default value is set by the Kendo theme.
|
|
7660
7636
|
*/
|
|
7661
7637
|
set rounded(rounded) {
|
|
7662
7638
|
this.handleClasses(rounded, 'rounded');
|
|
@@ -7666,8 +7642,7 @@ class TextBoxComponent {
|
|
|
7666
7642
|
return this._rounded;
|
|
7667
7643
|
}
|
|
7668
7644
|
/**
|
|
7669
|
-
* Sets the background and border styles of the TextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/appearance#fill-mode)).
|
|
7670
|
-
* @default 'solid'
|
|
7645
|
+
* Sets the background and border styles of the TextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/appearance#fill-mode)). The default value is set by the Kendo theme.
|
|
7671
7646
|
*/
|
|
7672
7647
|
set fillMode(fillMode) {
|
|
7673
7648
|
this.handleClasses(fillMode, 'fillMode');
|
|
@@ -8493,9 +8468,8 @@ class ColorInputComponent {
|
|
|
8493
8468
|
*/
|
|
8494
8469
|
formatView;
|
|
8495
8470
|
/**
|
|
8496
|
-
* Sets the size of the ColorInput.
|
|
8471
|
+
* Sets the size of the ColorInput. The default value is set by the Kendo theme.
|
|
8497
8472
|
*
|
|
8498
|
-
* @default 'medium'
|
|
8499
8473
|
*/
|
|
8500
8474
|
size = undefined;
|
|
8501
8475
|
/**
|
|
@@ -9577,9 +9551,8 @@ class ColorGradientComponent {
|
|
|
9577
9551
|
*/
|
|
9578
9552
|
opacity = true;
|
|
9579
9553
|
/**
|
|
9580
|
-
* Sets the size of the ColorGradient internal elements.
|
|
9554
|
+
* Sets the size of the ColorGradient internal elements. The default value is set by the Kendo theme.
|
|
9581
9555
|
*
|
|
9582
|
-
* @default 'medium'
|
|
9583
9556
|
*/
|
|
9584
9557
|
set size(size) {
|
|
9585
9558
|
this.handleClasses(size, 'size');
|
|
@@ -10823,9 +10796,8 @@ class ColorPaletteComponent {
|
|
|
10823
10796
|
return this._palette;
|
|
10824
10797
|
}
|
|
10825
10798
|
/**
|
|
10826
|
-
* Sets the size of the ColorPalette internal elements.
|
|
10799
|
+
* Sets the size of the ColorPalette internal elements. The default value is set by the Kendo theme.
|
|
10827
10800
|
*
|
|
10828
|
-
* @default 'medium'
|
|
10829
10801
|
*/
|
|
10830
10802
|
set size(size) {
|
|
10831
10803
|
this.handleClasses(size, 'size');
|
|
@@ -11949,9 +11921,8 @@ class FlatColorPickerComponent {
|
|
|
11949
11921
|
return this._paletteSettings;
|
|
11950
11922
|
}
|
|
11951
11923
|
/**
|
|
11952
|
-
* Sets the size of the FlatColorPicker internal elements.
|
|
11924
|
+
* Sets the size of the FlatColorPicker internal elements. The default value is set by the Kendo theme.
|
|
11953
11925
|
*
|
|
11954
|
-
* @default 'medium'
|
|
11955
11926
|
*/
|
|
11956
11927
|
set size(size) {
|
|
11957
11928
|
this.handleClasses(size, 'size');
|
|
@@ -13167,9 +13138,7 @@ class ColorPickerComponent {
|
|
|
13167
13138
|
actionsLayout = 'end';
|
|
13168
13139
|
/**
|
|
13169
13140
|
* The size property specifies the padding of the ColorPicker internal elements
|
|
13170
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/colorpicker/appearance#size)).
|
|
13171
|
-
*
|
|
13172
|
-
* @default 'medium'
|
|
13141
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/colorpicker/appearance#size)). The default value is set by the Kendo theme.
|
|
13173
13142
|
*/
|
|
13174
13143
|
set size(size) {
|
|
13175
13144
|
this.handleClasses(size, 'size');
|
|
@@ -13180,9 +13149,7 @@ class ColorPickerComponent {
|
|
|
13180
13149
|
}
|
|
13181
13150
|
/**
|
|
13182
13151
|
* The rounded property specifies the border radius of the ColorPicker
|
|
13183
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/colorpicker/appearance#roundness)).
|
|
13184
|
-
*
|
|
13185
|
-
* @default 'medium'
|
|
13152
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/colorpicker/appearance#roundness)). The default value is set by the Kendo theme.
|
|
13186
13153
|
*/
|
|
13187
13154
|
set rounded(rounded) {
|
|
13188
13155
|
this.handleClasses(rounded, 'rounded');
|
|
@@ -13193,9 +13160,7 @@ class ColorPickerComponent {
|
|
|
13193
13160
|
}
|
|
13194
13161
|
/**
|
|
13195
13162
|
* The fillMode property specifies the background and border styles of the ColorPicker
|
|
13196
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/colorpicker/appearance#fill-mode)).
|
|
13197
|
-
*
|
|
13198
|
-
* @default 'solid'
|
|
13163
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/colorpicker/appearance#fill-mode)). The default value is set by the Kendo theme.
|
|
13199
13164
|
*/
|
|
13200
13165
|
set fillMode(fillMode) {
|
|
13201
13166
|
this.handleClasses(fillMode, 'fillMode');
|
|
@@ -15112,9 +15077,7 @@ class RadioButtonDirective {
|
|
|
15112
15077
|
return this.hostElement.nativeElement.disabled;
|
|
15113
15078
|
}
|
|
15114
15079
|
/**
|
|
15115
|
-
* Specifies the `size` of the RadioButton. The `size` property changes the width and height of the RadioButton ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/radiobutton/appearance#size)).
|
|
15116
|
-
*
|
|
15117
|
-
* @default "medium"
|
|
15080
|
+
* Specifies the `size` of the RadioButton. The `size` property changes the width and height of the RadioButton ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/radiobutton/appearance#size)). The default value is set by the Kendo theme.
|
|
15118
15081
|
*/
|
|
15119
15082
|
set size(size) {
|
|
15120
15083
|
this.handleClasses(size, 'size');
|
|
@@ -16305,23 +16268,17 @@ class SignatureComponent {
|
|
|
16305
16268
|
}
|
|
16306
16269
|
/**
|
|
16307
16270
|
* Sets the padding of the Signature internal controls
|
|
16308
|
-
* ([ee example](https://www.telerik.com/kendo-angular-ui/components/inputs/signature/appearance#size)).
|
|
16309
|
-
*
|
|
16310
|
-
* @default undefined
|
|
16271
|
+
* ([ee example](https://www.telerik.com/kendo-angular-ui/components/inputs/signature/appearance#size)). The default value is set by the Kendo theme.
|
|
16311
16272
|
*/
|
|
16312
16273
|
size;
|
|
16313
16274
|
/**
|
|
16314
16275
|
* Sets the border radius of the Signature
|
|
16315
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/signature/appearance#rounded-corners)).
|
|
16316
|
-
*
|
|
16317
|
-
* @default undefined
|
|
16276
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/signature/appearance#rounded-corners)). The default value is set by the Kendo theme.
|
|
16318
16277
|
*/
|
|
16319
16278
|
rounded;
|
|
16320
16279
|
/**
|
|
16321
16280
|
* Sets the background and border styles of the Signature
|
|
16322
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/signature/appearance#fill-mode)).
|
|
16323
|
-
*
|
|
16324
|
-
* @default undefined
|
|
16281
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/signature/appearance#fill-mode)). The default value is set by the Kendo theme.
|
|
16325
16282
|
*/
|
|
16326
16283
|
fillMode;
|
|
16327
16284
|
/**
|
|
@@ -17621,8 +17578,7 @@ class TextAreaComponent extends TextFieldsBase {
|
|
|
17621
17578
|
*/
|
|
17622
17579
|
resizable = 'vertical';
|
|
17623
17580
|
/**
|
|
17624
|
-
* 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)).
|
|
17625
|
-
* @default 'medium'
|
|
17581
|
+
* 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.
|
|
17626
17582
|
*/
|
|
17627
17583
|
set size(size) {
|
|
17628
17584
|
this.handleClasses(size, 'size');
|
|
@@ -17632,8 +17588,7 @@ class TextAreaComponent extends TextFieldsBase {
|
|
|
17632
17588
|
return this._size;
|
|
17633
17589
|
}
|
|
17634
17590
|
/**
|
|
17635
|
-
* Sets the border radius of the TextArea ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textarea/appearance#roundness)).
|
|
17636
|
-
* @default 'medium'
|
|
17591
|
+
* Sets the border radius of the TextArea ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textarea/appearance#roundness)). The default value is set by the Kendo theme.
|
|
17637
17592
|
*/
|
|
17638
17593
|
set rounded(rounded) {
|
|
17639
17594
|
this.handleClasses(rounded, 'rounded');
|
|
@@ -17643,8 +17598,7 @@ class TextAreaComponent extends TextFieldsBase {
|
|
|
17643
17598
|
return this._rounded;
|
|
17644
17599
|
}
|
|
17645
17600
|
/**
|
|
17646
|
-
* Sets the background and border styles of the TextArea ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textarea/appearance#fill-mode)).
|
|
17647
|
-
* @default 'solid'
|
|
17601
|
+
* Sets the background and border styles of the TextArea ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textarea/appearance#fill-mode)). The default value is set by the Kendo theme.
|
|
17648
17602
|
*/
|
|
17649
17603
|
set fillMode(fillMode) {
|
|
17650
17604
|
this.handleClasses(fillMode, 'fillMode');
|
|
@@ -18515,9 +18469,7 @@ class OTPInputComponent {
|
|
|
18515
18469
|
}
|
|
18516
18470
|
}
|
|
18517
18471
|
/**
|
|
18518
|
-
* Sets the padding of the input fields.
|
|
18519
|
-
*
|
|
18520
|
-
* @default undefined
|
|
18472
|
+
* Sets the padding of the input fields. The default value is set by the Kendo theme.
|
|
18521
18473
|
*/
|
|
18522
18474
|
set size(size) {
|
|
18523
18475
|
const elem = this.hostElement.nativeElement;
|
|
@@ -18531,9 +18483,7 @@ class OTPInputComponent {
|
|
|
18531
18483
|
return this._size;
|
|
18532
18484
|
}
|
|
18533
18485
|
/**
|
|
18534
|
-
* Sets the border radius of the OTP Input.
|
|
18535
|
-
*
|
|
18536
|
-
* @default 'medium'
|
|
18486
|
+
* Sets the border radius of the OTP Input. The default value is set by the Kendo theme.
|
|
18537
18487
|
*/
|
|
18538
18488
|
set rounded(rounded) {
|
|
18539
18489
|
this._rounded = rounded;
|
|
@@ -18542,9 +18492,7 @@ class OTPInputComponent {
|
|
|
18542
18492
|
return this._rounded;
|
|
18543
18493
|
}
|
|
18544
18494
|
/**
|
|
18545
|
-
* Sets the background and border styles of the OTP Input.
|
|
18546
|
-
*
|
|
18547
|
-
* @default 'solid'
|
|
18495
|
+
* Sets the background and border styles of the OTP Input. The default value is set by the Kendo theme.
|
|
18548
18496
|
*/
|
|
18549
18497
|
set fillMode(fillMode) {
|
|
18550
18498
|
this.setGroupFillMode(fillMode, this._fillMode);
|
|
@@ -59,20 +59,17 @@ export declare class MaskedTextBoxComponent implements ControlValueAccessor, OnC
|
|
|
59
59
|
*/
|
|
60
60
|
title: string;
|
|
61
61
|
/**
|
|
62
|
-
* Sets the padding size of the MaskedTextBox input element ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox/appearance#size)).
|
|
63
|
-
* @default 'medium'
|
|
62
|
+
* 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.
|
|
64
63
|
*/
|
|
65
64
|
set size(size: InputSize);
|
|
66
65
|
get size(): InputSize;
|
|
67
66
|
/**
|
|
68
|
-
* Sets the border radius of the MaskedTextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox/appearance#roundness)).
|
|
69
|
-
* @default 'medium'
|
|
67
|
+
* Sets the border radius of the MaskedTextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox/appearance#roundness)). The default value is set by the Kendo theme.
|
|
70
68
|
*/
|
|
71
69
|
set rounded(rounded: InputRounded);
|
|
72
70
|
get rounded(): InputRounded;
|
|
73
71
|
/**
|
|
74
|
-
* Sets the background and border style of the MaskedTextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox/appearance#fill-mode)).
|
|
75
|
-
* @default 'solid'
|
|
72
|
+
* Sets the background and border style of the MaskedTextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/maskedtextbox/appearance#fill-mode)). The default value is set by the Kendo theme.
|
|
76
73
|
*/
|
|
77
74
|
set fillMode(fillMode: InputFillMode);
|
|
78
75
|
get fillMode(): InputFillMode;
|
|
@@ -130,23 +130,17 @@ export declare class NumericTextBoxComponent implements ControlValueAccessor, On
|
|
|
130
130
|
*/
|
|
131
131
|
maxlength: number;
|
|
132
132
|
/**
|
|
133
|
-
* Sets the padding of the internal input element ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/appearance#size)).
|
|
134
|
-
*
|
|
135
|
-
* @default 'medium'
|
|
133
|
+
* 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.
|
|
136
134
|
*/
|
|
137
135
|
set size(size: InputSize);
|
|
138
136
|
get size(): InputSize;
|
|
139
137
|
/**
|
|
140
|
-
* Sets the border radius of the NumericTextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/appearance#roundness)).
|
|
141
|
-
*
|
|
142
|
-
* @default 'medium'
|
|
138
|
+
* Sets the border radius of the NumericTextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/appearance#roundness)). The default value is set by the Kendo theme.
|
|
143
139
|
*/
|
|
144
140
|
set rounded(rounded: InputRounded);
|
|
145
141
|
get rounded(): InputRounded;
|
|
146
142
|
/**
|
|
147
|
-
* Sets the background and border styles of the NumericTextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/appearance#fill-mode)).
|
|
148
|
-
*
|
|
149
|
-
* @default 'solid'
|
|
143
|
+
* Sets the background and border styles of the NumericTextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/numerictextbox/appearance#fill-mode)). The default value is set by the Kendo theme.
|
|
150
144
|
*/
|
|
151
145
|
set fillMode(fillMode: InputFillMode);
|
|
152
146
|
get fillMode(): InputFillMode;
|
|
@@ -81,23 +81,17 @@ export declare class OTPInputComponent implements ControlValueAccessor, OnInit,
|
|
|
81
81
|
get value(): string;
|
|
82
82
|
set value(input: string);
|
|
83
83
|
/**
|
|
84
|
-
* Sets the padding of the input fields.
|
|
85
|
-
*
|
|
86
|
-
* @default undefined
|
|
84
|
+
* Sets the padding of the input fields. The default value is set by the Kendo theme.
|
|
87
85
|
*/
|
|
88
86
|
set size(size: InputSize);
|
|
89
87
|
get size(): InputSize;
|
|
90
88
|
/**
|
|
91
|
-
* Sets the border radius of the OTP Input.
|
|
92
|
-
*
|
|
93
|
-
* @default 'medium'
|
|
89
|
+
* Sets the border radius of the OTP Input. The default value is set by the Kendo theme.
|
|
94
90
|
*/
|
|
95
91
|
set rounded(rounded: InputRounded);
|
|
96
92
|
get rounded(): InputRounded;
|
|
97
93
|
/**
|
|
98
|
-
* Sets the background and border styles of the OTP Input.
|
|
99
|
-
*
|
|
100
|
-
* @default 'solid'
|
|
94
|
+
* Sets the background and border styles of the OTP Input. The default value is set by the Kendo theme.
|
|
101
95
|
*/
|
|
102
96
|
set fillMode(fillMode: InputFillMode);
|
|
103
97
|
get fillMode(): InputFillMode;
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "23.0.0-develop.
|
|
10
|
+
"publishDate": 1770380069,
|
|
11
|
+
"version": "23.0.0-develop.7",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-inputs",
|
|
3
|
-
"version": "23.0.0-develop.
|
|
3
|
+
"version": "23.0.0-develop.7",
|
|
4
4
|
"description": "Kendo UI for Angular Inputs Package - Everything you need to build professional form functionality (Checkbox, ColorGradient, ColorPalette, ColorPicker, FlatColorPicker, FormField, MaskedTextBox, NumericTextBox, RadioButton, RangeSlider, Slider, Switch, TextArea, and TextBox Components)",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"package": {
|
|
29
29
|
"productName": "Kendo UI for Angular",
|
|
30
30
|
"productCode": "KENDOUIANGULAR",
|
|
31
|
-
"publishDate":
|
|
31
|
+
"publishDate": 1770380069,
|
|
32
32
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
33
33
|
}
|
|
34
34
|
},
|
|
@@ -40,20 +40,20 @@
|
|
|
40
40
|
"@angular/platform-browser": "19 - 21",
|
|
41
41
|
"@progress/kendo-drawing": "^1.24.0",
|
|
42
42
|
"@progress/kendo-licensing": "^1.10.0",
|
|
43
|
-
"@progress/kendo-angular-buttons": "23.0.0-develop.
|
|
44
|
-
"@progress/kendo-angular-common": "23.0.0-develop.
|
|
45
|
-
"@progress/kendo-angular-utils": "23.0.0-develop.
|
|
46
|
-
"@progress/kendo-angular-navigation": "23.0.0-develop.
|
|
47
|
-
"@progress/kendo-angular-dialog": "23.0.0-develop.
|
|
48
|
-
"@progress/kendo-angular-intl": "23.0.0-develop.
|
|
49
|
-
"@progress/kendo-angular-l10n": "23.0.0-develop.
|
|
50
|
-
"@progress/kendo-angular-popup": "23.0.0-develop.
|
|
51
|
-
"@progress/kendo-angular-icons": "23.0.0-develop.
|
|
43
|
+
"@progress/kendo-angular-buttons": "23.0.0-develop.7",
|
|
44
|
+
"@progress/kendo-angular-common": "23.0.0-develop.7",
|
|
45
|
+
"@progress/kendo-angular-utils": "23.0.0-develop.7",
|
|
46
|
+
"@progress/kendo-angular-navigation": "23.0.0-develop.7",
|
|
47
|
+
"@progress/kendo-angular-dialog": "23.0.0-develop.7",
|
|
48
|
+
"@progress/kendo-angular-intl": "23.0.0-develop.7",
|
|
49
|
+
"@progress/kendo-angular-l10n": "23.0.0-develop.7",
|
|
50
|
+
"@progress/kendo-angular-popup": "23.0.0-develop.7",
|
|
51
|
+
"@progress/kendo-angular-icons": "23.0.0-develop.7",
|
|
52
52
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"tslib": "^2.3.1",
|
|
56
|
-
"@progress/kendo-angular-schematics": "23.0.0-develop.
|
|
56
|
+
"@progress/kendo-angular-schematics": "23.0.0-develop.7",
|
|
57
57
|
"@progress/kendo-common": "^1.0.1",
|
|
58
58
|
"@progress/kendo-draggable": "^3.0.0",
|
|
59
59
|
"@progress/kendo-inputs-common": "^3.1.0"
|
|
@@ -20,9 +20,7 @@ export declare class RadioButtonDirective {
|
|
|
20
20
|
kendoClass: boolean;
|
|
21
21
|
get isDisabled(): boolean;
|
|
22
22
|
/**
|
|
23
|
-
* Specifies the `size` of the RadioButton. The `size` property changes the width and height of the RadioButton ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/radiobutton/appearance#size)).
|
|
24
|
-
*
|
|
25
|
-
* @default "medium"
|
|
23
|
+
* Specifies the `size` of the RadioButton. The `size` property changes the width and height of the RadioButton ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/radiobutton/appearance#size)). The default value is set by the Kendo theme.
|
|
26
24
|
*/
|
|
27
25
|
set size(size: InputSize);
|
|
28
26
|
get size(): InputSize;
|
|
@@ -84,23 +84,17 @@ export declare class SignatureComponent implements ControlValueAccessor {
|
|
|
84
84
|
get tabindex(): number;
|
|
85
85
|
/**
|
|
86
86
|
* Sets the padding of the Signature internal controls
|
|
87
|
-
* ([ee example](https://www.telerik.com/kendo-angular-ui/components/inputs/signature/appearance#size)).
|
|
88
|
-
*
|
|
89
|
-
* @default undefined
|
|
87
|
+
* ([ee example](https://www.telerik.com/kendo-angular-ui/components/inputs/signature/appearance#size)). The default value is set by the Kendo theme.
|
|
90
88
|
*/
|
|
91
89
|
size: InputSize;
|
|
92
90
|
/**
|
|
93
91
|
* Sets the border radius of the Signature
|
|
94
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/signature/appearance#rounded-corners)).
|
|
95
|
-
*
|
|
96
|
-
* @default undefined
|
|
92
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/signature/appearance#rounded-corners)). The default value is set by the Kendo theme.
|
|
97
93
|
*/
|
|
98
94
|
rounded: InputRounded;
|
|
99
95
|
/**
|
|
100
96
|
* Sets the background and border styles of the Signature
|
|
101
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/signature/appearance#fill-mode)).
|
|
102
|
-
*
|
|
103
|
-
* @default undefined
|
|
97
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/signature/appearance#fill-mode)). The default value is set by the Kendo theme.
|
|
104
98
|
*/
|
|
105
99
|
fillMode: InputFillMode;
|
|
106
100
|
/**
|
|
@@ -68,23 +68,17 @@ export declare class SwitchComponent implements ControlValueAccessor, OnInit, On
|
|
|
68
68
|
*/
|
|
69
69
|
tabindex: number;
|
|
70
70
|
/**
|
|
71
|
-
* Sets the size of the Switch.
|
|
72
|
-
*
|
|
73
|
-
* @default undefined
|
|
71
|
+
* Sets the size of the Switch. The default value is set by the Kendo theme.
|
|
74
72
|
*/
|
|
75
73
|
set size(size: InputSize);
|
|
76
74
|
get size(): InputSize;
|
|
77
75
|
/**
|
|
78
|
-
* Sets the border radius of the Switch.
|
|
79
|
-
*
|
|
80
|
-
* @default undefined
|
|
76
|
+
* Sets the border radius of the Switch. The default value is set by the Kendo theme.
|
|
81
77
|
*/
|
|
82
78
|
set thumbRounded(thumbRounded: InputRounded);
|
|
83
79
|
get thumbRounded(): InputRounded;
|
|
84
80
|
/**
|
|
85
|
-
* Sets the border radius of the Switch track.
|
|
86
|
-
*
|
|
87
|
-
* @default undefined
|
|
81
|
+
* Sets the border radius of the Switch track. The default value is set by the Kendo theme.
|
|
88
82
|
*/
|
|
89
83
|
set trackRounded(trackRounded: InputRounded);
|
|
90
84
|
get trackRounded(): InputRounded;
|
|
@@ -96,20 +96,17 @@ export declare class TextAreaComponent extends TextFieldsBase implements Control
|
|
|
96
96
|
*/
|
|
97
97
|
resizable: TextAreaResize;
|
|
98
98
|
/**
|
|
99
|
-
* Sets the size of the TextArea. Controls the padding of the text area element ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textarea/appearance#size)).
|
|
100
|
-
* @default 'medium'
|
|
99
|
+
* Sets the size of the TextArea. Controls the padding of the text area element ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textarea/appearance#size)). The default value is set by the Kendo theme.
|
|
101
100
|
*/
|
|
102
101
|
set size(size: InputSize);
|
|
103
102
|
get size(): InputSize;
|
|
104
103
|
/**
|
|
105
|
-
* Sets the border radius of the TextArea ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textarea/appearance#roundness)).
|
|
106
|
-
* @default 'medium'
|
|
104
|
+
* Sets the border radius of the TextArea ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textarea/appearance#roundness)). The default value is set by the Kendo theme.
|
|
107
105
|
*/
|
|
108
106
|
set rounded(rounded: InputRounded);
|
|
109
107
|
get rounded(): InputRounded;
|
|
110
108
|
/**
|
|
111
|
-
* Sets the background and border styles of the TextArea ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textarea/appearance#fill-mode)).
|
|
112
|
-
* @default 'solid'
|
|
109
|
+
* Sets the background and border styles of the TextArea ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textarea/appearance#fill-mode)). The default value is set by the Kendo theme.
|
|
113
110
|
*/
|
|
114
111
|
set fillMode(fillMode: InputFillMode);
|
|
115
112
|
get fillMode(): InputFillMode;
|
|
@@ -111,20 +111,17 @@ export declare class TextBoxComponent implements ControlValueAccessor {
|
|
|
111
111
|
*/
|
|
112
112
|
clearButtonSvgIcon: SVGIcon;
|
|
113
113
|
/**
|
|
114
|
-
* Sets the padding of the TextBox internal input element ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/appearance#size)).
|
|
115
|
-
* @default 'medium'
|
|
114
|
+
* Sets the padding of the TextBox internal input element ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/appearance#size)). The default value is set by the Kendo theme.
|
|
116
115
|
*/
|
|
117
116
|
set size(size: InputSize);
|
|
118
117
|
get size(): InputSize;
|
|
119
118
|
/**
|
|
120
|
-
* Sets the border radius of the TextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/appearance#roundness)).
|
|
121
|
-
* @default 'medium'
|
|
119
|
+
* Sets the border radius of the TextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/appearance#roundness)). The default value is set by the Kendo theme.
|
|
122
120
|
*/
|
|
123
121
|
set rounded(rounded: InputRounded);
|
|
124
122
|
get rounded(): InputRounded;
|
|
125
123
|
/**
|
|
126
|
-
* Sets the background and border styles of the TextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/appearance#fill-mode)).
|
|
127
|
-
* @default 'solid'
|
|
124
|
+
* Sets the background and border styles of the TextBox ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/textbox/appearance#fill-mode)). The default value is set by the Kendo theme.
|
|
128
125
|
*/
|
|
129
126
|
set fillMode(fillMode: InputFillMode);
|
|
130
127
|
get fillMode(): InputFillMode;
|