@progress/kendo-angular-inputs 9.0.0-next.202204060721 → 9.0.0-next.202204130851
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/bundles/kendo-angular-inputs.umd.js +1 -1
- package/checkbox/checkbox.directive.d.ts +6 -6
- package/colorpicker/colorpicker.component.d.ts +10 -10
- package/common/models/fillmode.d.ts +1 -0
- package/common/models/rounded.d.ts +2 -0
- package/common/models/size.d.ts +1 -0
- package/esm2015/checkbox/checkbox.directive.js +14 -12
- package/esm2015/colorpicker/colorpicker.component.js +22 -19
- package/esm2015/maskedtextbox/maskedtextbox.component.js +18 -15
- package/esm2015/numerictextbox/numerictextbox.component.js +21 -18
- package/esm2015/package-metadata.js +1 -1
- package/esm2015/radiobutton/radiobutton.directive.js +7 -6
- package/esm2015/slider/slider.component.js +2 -2
- package/esm2015/switch/switch.component.js +23 -20
- package/esm2015/textarea/textarea.component.js +21 -18
- package/esm2015/textbox/textbox.component.js +22 -19
- package/fesm2015/kendo-angular-inputs.js +151 -130
- package/formfield/models/orientation.d.ts +1 -5
- package/maskedtextbox/maskedtextbox.component.d.ts +6 -6
- package/numerictextbox/numerictextbox.component.d.ts +9 -9
- package/package.json +1 -1
- package/radiobutton/radiobutton.directive.d.ts +3 -3
- package/switch/switch.component.d.ts +11 -11
- package/textarea/textarea.component.d.ts +9 -9
- package/textbox/textbox.component.d.ts +10 -10
|
@@ -51,9 +51,9 @@ export declare class SwitchComponent implements ControlValueAccessor, OnInit, On
|
|
|
51
51
|
* Specifies the width and height of the Switch.
|
|
52
52
|
*
|
|
53
53
|
* The possible values are:
|
|
54
|
-
* * `
|
|
55
|
-
* * `
|
|
56
|
-
* * `
|
|
54
|
+
* * `small`
|
|
55
|
+
* * `medium` (default)
|
|
56
|
+
* * `large`
|
|
57
57
|
* * `none`
|
|
58
58
|
*/
|
|
59
59
|
set size(size: InputSize);
|
|
@@ -62,10 +62,10 @@ export declare class SwitchComponent implements ControlValueAccessor, OnInit, On
|
|
|
62
62
|
* Specifies the border radius of the Switch thumb.
|
|
63
63
|
*
|
|
64
64
|
* The possible values are:
|
|
65
|
-
* * `
|
|
66
|
-
* * `
|
|
67
|
-
* * `
|
|
68
|
-
* * `
|
|
65
|
+
* * `full` (default)
|
|
66
|
+
* * `small`
|
|
67
|
+
* * `medium`
|
|
68
|
+
* * `large`
|
|
69
69
|
* * `none`
|
|
70
70
|
*/
|
|
71
71
|
set thumbRounded(thumbRounded: InputRounded);
|
|
@@ -74,10 +74,10 @@ export declare class SwitchComponent implements ControlValueAccessor, OnInit, On
|
|
|
74
74
|
* Specifies the border radius of the Switch track.
|
|
75
75
|
*
|
|
76
76
|
* The possible values are:
|
|
77
|
-
* * `
|
|
78
|
-
* * `
|
|
79
|
-
* * `
|
|
80
|
-
* * `
|
|
77
|
+
* * `full` (default)
|
|
78
|
+
* * `small`
|
|
79
|
+
* * `medium`
|
|
80
|
+
* * `large`
|
|
81
81
|
* * `none`
|
|
82
82
|
*/
|
|
83
83
|
set trackRounded(trackRounded: InputRounded);
|
|
@@ -74,9 +74,9 @@ export declare class TextAreaComponent extends TextFieldsBase implements Control
|
|
|
74
74
|
* ([see example]({% slug appearance_textarea %}#toc-size)).
|
|
75
75
|
*
|
|
76
76
|
* The possible values are:
|
|
77
|
-
* * `
|
|
78
|
-
* * `
|
|
79
|
-
* * `
|
|
77
|
+
* * `small`
|
|
78
|
+
* * `medium` (default)
|
|
79
|
+
* * `large`
|
|
80
80
|
* * `none`
|
|
81
81
|
*/
|
|
82
82
|
set size(size: InputSize);
|
|
@@ -86,9 +86,9 @@ export declare class TextAreaComponent extends TextFieldsBase implements Control
|
|
|
86
86
|
* ([see example]({% slug appearance_textarea %}#toc-rounded)).
|
|
87
87
|
*
|
|
88
88
|
* The possible values are:
|
|
89
|
-
* * `
|
|
90
|
-
* * `
|
|
91
|
-
* * `
|
|
89
|
+
* * `small`
|
|
90
|
+
* * `medium` (default)
|
|
91
|
+
* * `large`
|
|
92
92
|
* * `none`
|
|
93
93
|
*/
|
|
94
94
|
set rounded(rounded: InputRounded);
|
|
@@ -98,9 +98,9 @@ export declare class TextAreaComponent extends TextFieldsBase implements Control
|
|
|
98
98
|
* ([see example]({% slug appearance_textarea %}#toc-fillMode)).
|
|
99
99
|
*
|
|
100
100
|
* The possible values are:
|
|
101
|
-
* * `
|
|
102
|
-
* * `
|
|
103
|
-
* * `
|
|
101
|
+
* * `flat`
|
|
102
|
+
* * `solid` (default)
|
|
103
|
+
* * `outline`
|
|
104
104
|
* * `none`
|
|
105
105
|
*/
|
|
106
106
|
set fillMode(fillMode: InputFillMode);
|
|
@@ -101,9 +101,9 @@ export declare class TextBoxComponent implements ControlValueAccessor {
|
|
|
101
101
|
* ([see example]({% slug appearance_textbox %}#toc-size)).
|
|
102
102
|
*
|
|
103
103
|
* The possible values are:
|
|
104
|
-
* * `
|
|
105
|
-
* * `
|
|
106
|
-
* * `
|
|
104
|
+
* * `small`
|
|
105
|
+
* * `medium` (default)
|
|
106
|
+
* * `large`
|
|
107
107
|
* * `none`
|
|
108
108
|
*/
|
|
109
109
|
set size(size: InputSize);
|
|
@@ -113,10 +113,10 @@ export declare class TextBoxComponent implements ControlValueAccessor {
|
|
|
113
113
|
* ([see example]({% slug appearance_textbox %}#toc-rounded)).
|
|
114
114
|
*
|
|
115
115
|
* The possible values are:
|
|
116
|
-
* * `
|
|
117
|
-
* * `
|
|
118
|
-
* * `
|
|
119
|
-
* * `
|
|
116
|
+
* * `small`
|
|
117
|
+
* * `medium` (default)
|
|
118
|
+
* * `large`
|
|
119
|
+
* * `full`
|
|
120
120
|
* * `none`
|
|
121
121
|
*/
|
|
122
122
|
set rounded(rounded: InputRounded);
|
|
@@ -126,9 +126,9 @@ export declare class TextBoxComponent implements ControlValueAccessor {
|
|
|
126
126
|
* ([see example]({% slug appearance_textbox %}#toc-fillMode)).
|
|
127
127
|
*
|
|
128
128
|
* The possible values are:
|
|
129
|
-
* * `
|
|
130
|
-
* * `
|
|
131
|
-
* * `
|
|
129
|
+
* * `flat`
|
|
130
|
+
* * `solid` (default)
|
|
131
|
+
* * `outline`
|
|
132
132
|
* * `none`
|
|
133
133
|
*/
|
|
134
134
|
set fillMode(fillMode: InputFillMode);
|