@progress/kendo-angular-inputs 9.0.0-next.202204011519 → 9.0.0
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 +8 -8
- package/colorpicker/colorpicker.component.d.ts +13 -13
- package/common/models/fillmode.d.ts +2 -6
- package/common/models/rounded.d.ts +4 -13
- package/common/models/size.d.ts +2 -1
- package/esm2015/checkbox/checkbox.directive.js +16 -12
- package/esm2015/colorpicker/colorpicker.component.js +25 -19
- package/esm2015/common/utils.js +3 -3
- package/esm2015/maskedtextbox/maskedtextbox.component.js +21 -15
- package/esm2015/numerictextbox/numerictextbox.component.js +24 -18
- package/esm2015/package-metadata.js +1 -1
- package/esm2015/radiobutton/radiobutton.directive.js +8 -6
- package/esm2015/slider/slider.component.js +2 -2
- package/esm2015/switch/switch.component.js +26 -20
- package/esm2015/textarea/textarea.component.js +24 -18
- package/esm2015/textbox/textbox.component.js +25 -19
- package/fesm2015/kendo-angular-inputs.js +175 -133
- package/formfield/models/orientation.d.ts +1 -5
- package/maskedtextbox/maskedtextbox.component.d.ts +9 -9
- package/numerictextbox/numerictextbox.component.d.ts +12 -12
- package/package.json +11 -13
- package/radiobutton/radiobutton.directive.d.ts +4 -4
- package/switch/switch.component.d.ts +14 -14
- package/textarea/textarea.component.d.ts +12 -12
- package/textbox/textbox.component.d.ts +13 -13
|
@@ -58,10 +58,10 @@ export declare class MaskedTextBoxComponent implements ControlValueAccessor, OnC
|
|
|
58
58
|
* The size property specifies the padding of the MaskedTextBox internal input element
|
|
59
59
|
* ([see example]({% slug appearance_maskedtextbox %}#toc-size)).
|
|
60
60
|
* The possible values are:
|
|
61
|
-
* * `
|
|
62
|
-
* * `
|
|
63
|
-
* * `
|
|
64
|
-
* * `
|
|
61
|
+
* * `small`
|
|
62
|
+
* * `medium` (default)
|
|
63
|
+
* * `large`
|
|
64
|
+
* * `none`
|
|
65
65
|
*/
|
|
66
66
|
set size(size: InputSize);
|
|
67
67
|
get size(): InputSize;
|
|
@@ -69,10 +69,10 @@ export declare class MaskedTextBoxComponent implements ControlValueAccessor, OnC
|
|
|
69
69
|
* The rounded property specifies the border radius of the MaskedTextBox
|
|
70
70
|
* ([see example]({% slug appearance_maskedtextbox %}#toc-rounded)).
|
|
71
71
|
* The possible values are:
|
|
72
|
-
* * `
|
|
73
|
-
* * `
|
|
74
|
-
* * `
|
|
75
|
-
* * `
|
|
72
|
+
* * `small`
|
|
73
|
+
* * `medium` (default)
|
|
74
|
+
* * `large`
|
|
75
|
+
* * `none`
|
|
76
76
|
*/
|
|
77
77
|
set rounded(rounded: InputRounded);
|
|
78
78
|
get rounded(): InputRounded;
|
|
@@ -83,7 +83,7 @@ export declare class MaskedTextBoxComponent implements ControlValueAccessor, OnC
|
|
|
83
83
|
* * `flat`
|
|
84
84
|
* * `solid` (default)
|
|
85
85
|
* * `outline`
|
|
86
|
-
* * `
|
|
86
|
+
* * `none`
|
|
87
87
|
*/
|
|
88
88
|
set fillMode(fillMode: InputFillMode);
|
|
89
89
|
get fillMode(): InputFillMode;
|
|
@@ -119,10 +119,10 @@ export declare class NumericTextBoxComponent implements ControlValueAccessor, On
|
|
|
119
119
|
* The size property specifies padding of the NumericTextBox internal input element
|
|
120
120
|
* ([see example]({% slug appearance_numerictextbox %}#toc-size)).
|
|
121
121
|
* The possible values are:
|
|
122
|
-
* * `
|
|
123
|
-
* * `
|
|
124
|
-
* * `
|
|
125
|
-
* * `
|
|
122
|
+
* * `small`
|
|
123
|
+
* * `medium` (default)
|
|
124
|
+
* * `large`
|
|
125
|
+
* * `none`
|
|
126
126
|
*/
|
|
127
127
|
set size(size: InputSize);
|
|
128
128
|
get size(): InputSize;
|
|
@@ -130,10 +130,10 @@ export declare class NumericTextBoxComponent implements ControlValueAccessor, On
|
|
|
130
130
|
* The rounded property specifies the border radius of the NumericTextBox
|
|
131
131
|
* ([see example]({% slug appearance_numerictextbox %}#toc-rounded)).
|
|
132
132
|
* The possible values are:
|
|
133
|
-
* * `
|
|
134
|
-
* * `
|
|
135
|
-
* * `
|
|
136
|
-
* * `
|
|
133
|
+
* * `small`
|
|
134
|
+
* * `medium` (default)
|
|
135
|
+
* * `large`
|
|
136
|
+
* * `none`
|
|
137
137
|
*/
|
|
138
138
|
set rounded(rounded: InputRounded);
|
|
139
139
|
get rounded(): InputRounded;
|
|
@@ -141,10 +141,10 @@ export declare class NumericTextBoxComponent implements ControlValueAccessor, On
|
|
|
141
141
|
* The fillMode property specifies the background and border styles of the NumericTextBox
|
|
142
142
|
* ([see example]({% slug appearance_numerictextbox %}#toc-fillMode)).
|
|
143
143
|
* The possible values are:
|
|
144
|
-
* * `
|
|
145
|
-
* * `
|
|
146
|
-
* * `
|
|
147
|
-
* * `
|
|
144
|
+
* * `flat`
|
|
145
|
+
* * `solid` (default)
|
|
146
|
+
* * `outline`
|
|
147
|
+
* * `none`
|
|
148
148
|
*/
|
|
149
149
|
set fillMode(fillMode: InputFillMode);
|
|
150
150
|
get fillMode(): InputFillMode;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-inputs",
|
|
3
|
-
"version": "9.0.0
|
|
3
|
+
"version": "9.0.0",
|
|
4
4
|
"description": "Inputs Package for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -37,14 +37,14 @@
|
|
|
37
37
|
"tslib": "^2.3.1"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"@angular/animations": "
|
|
41
|
-
"@angular/common": "
|
|
42
|
-
"@angular/core": "
|
|
43
|
-
"@angular/forms": "
|
|
44
|
-
"@progress/kendo-angular-common": "^
|
|
45
|
-
"@progress/kendo-angular-intl": "^
|
|
46
|
-
"@progress/kendo-angular-l10n": "
|
|
47
|
-
"@progress/kendo-angular-popup": "
|
|
40
|
+
"@angular/animations": "12 - 14",
|
|
41
|
+
"@angular/common": "12 - 14",
|
|
42
|
+
"@angular/core": "12 - 14",
|
|
43
|
+
"@angular/forms": "12 - 14",
|
|
44
|
+
"@progress/kendo-angular-common": "^3.0.0",
|
|
45
|
+
"@progress/kendo-angular-intl": "^4.0.0",
|
|
46
|
+
"@progress/kendo-angular-l10n": "^4.0.0",
|
|
47
|
+
"@progress/kendo-angular-popup": "^5.0.0",
|
|
48
48
|
"@progress/kendo-drawing": "^1.5.12",
|
|
49
49
|
"@progress/kendo-licensing": "^1.0.2",
|
|
50
50
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
@@ -76,12 +76,10 @@
|
|
|
76
76
|
"release": {
|
|
77
77
|
"debug": false,
|
|
78
78
|
"branchTags": {
|
|
79
|
-
"develop": "dev"
|
|
80
|
-
"ng12-update": "next"
|
|
79
|
+
"develop": "dev"
|
|
81
80
|
},
|
|
82
81
|
"fallbackTags": {
|
|
83
|
-
"dev": "latest"
|
|
84
|
-
"next": "latest"
|
|
82
|
+
"dev": "latest"
|
|
85
83
|
},
|
|
86
84
|
"analyzeCommits": "@telerik/semantic-prerelease/analyzeCommits",
|
|
87
85
|
"generateNotes": "@progress/kendo-angular-tasks/lib/generateNotes",
|
|
@@ -22,10 +22,10 @@ export declare class RadioButtonDirective {
|
|
|
22
22
|
* The size property specifies the width and height of the RadioButton
|
|
23
23
|
* ([see example]({% slug appearance_radiobuttondirective %}#toc-size)).
|
|
24
24
|
* The possible values are:
|
|
25
|
-
* * `
|
|
26
|
-
* * `
|
|
27
|
-
* * `
|
|
28
|
-
* * `
|
|
25
|
+
* * `small`
|
|
26
|
+
* * `medium` (default)
|
|
27
|
+
* * `large`
|
|
28
|
+
* * `none`
|
|
29
29
|
*/
|
|
30
30
|
set size(size: InputSize);
|
|
31
31
|
get size(): InputSize;
|
|
@@ -51,10 +51,10 @@ 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
|
-
* * `
|
|
57
|
-
* * `
|
|
54
|
+
* * `small`
|
|
55
|
+
* * `medium` (default)
|
|
56
|
+
* * `large`
|
|
57
|
+
* * `none`
|
|
58
58
|
*/
|
|
59
59
|
set size(size: InputSize);
|
|
60
60
|
get size(): InputSize;
|
|
@@ -62,11 +62,11 @@ 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
|
-
* * `
|
|
69
|
-
* * `
|
|
65
|
+
* * `full` (default)
|
|
66
|
+
* * `small`
|
|
67
|
+
* * `medium`
|
|
68
|
+
* * `large`
|
|
69
|
+
* * `none`
|
|
70
70
|
*/
|
|
71
71
|
set thumbRounded(thumbRounded: InputRounded);
|
|
72
72
|
get thumbRounded(): InputRounded;
|
|
@@ -74,11 +74,11 @@ 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
|
-
* * `
|
|
81
|
-
* * `
|
|
77
|
+
* * `full` (default)
|
|
78
|
+
* * `small`
|
|
79
|
+
* * `medium`
|
|
80
|
+
* * `large`
|
|
81
|
+
* * `none`
|
|
82
82
|
*/
|
|
83
83
|
set trackRounded(trackRounded: InputRounded);
|
|
84
84
|
get trackRounded(): InputRounded;
|
|
@@ -74,10 +74,10 @@ 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
|
-
* * `
|
|
80
|
-
* * `
|
|
77
|
+
* * `small`
|
|
78
|
+
* * `medium` (default)
|
|
79
|
+
* * `large`
|
|
80
|
+
* * `none`
|
|
81
81
|
*/
|
|
82
82
|
set size(size: InputSize);
|
|
83
83
|
get size(): InputSize;
|
|
@@ -86,10 +86,10 @@ 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
|
-
* * `
|
|
92
|
-
* * `
|
|
89
|
+
* * `small`
|
|
90
|
+
* * `medium` (default)
|
|
91
|
+
* * `large`
|
|
92
|
+
* * `none`
|
|
93
93
|
*/
|
|
94
94
|
set rounded(rounded: InputRounded);
|
|
95
95
|
get rounded(): InputRounded;
|
|
@@ -98,10 +98,10 @@ 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
|
-
* * `
|
|
104
|
-
* * `
|
|
101
|
+
* * `flat`
|
|
102
|
+
* * `solid` (default)
|
|
103
|
+
* * `outline`
|
|
104
|
+
* * `none`
|
|
105
105
|
*/
|
|
106
106
|
set fillMode(fillMode: InputFillMode);
|
|
107
107
|
get fillMode(): InputFillMode;
|
|
@@ -101,10 +101,10 @@ 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
|
-
* * `
|
|
107
|
-
* * `
|
|
104
|
+
* * `small`
|
|
105
|
+
* * `medium` (default)
|
|
106
|
+
* * `large`
|
|
107
|
+
* * `none`
|
|
108
108
|
*/
|
|
109
109
|
set size(size: InputSize);
|
|
110
110
|
get size(): InputSize;
|
|
@@ -113,11 +113,11 @@ 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
|
-
* * `
|
|
120
|
-
* * `
|
|
116
|
+
* * `small`
|
|
117
|
+
* * `medium` (default)
|
|
118
|
+
* * `large`
|
|
119
|
+
* * `full`
|
|
120
|
+
* * `none`
|
|
121
121
|
*/
|
|
122
122
|
set rounded(rounded: InputRounded);
|
|
123
123
|
get rounded(): InputRounded;
|
|
@@ -126,10 +126,10 @@ 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
|
-
* * `
|
|
132
|
-
* * `
|
|
129
|
+
* * `flat`
|
|
130
|
+
* * `solid` (default)
|
|
131
|
+
* * `outline`
|
|
132
|
+
* * `none`
|
|
133
133
|
*/
|
|
134
134
|
set fillMode(fillMode: InputFillMode);
|
|
135
135
|
get fillMode(): InputFillMode;
|