@progress/kendo-angular-buttons 12.0.0-develop.7 → 12.0.0-develop.9
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.
|
@@ -17,7 +17,8 @@ export declare class ButtonComponent implements OnDestroy, AfterViewInit {
|
|
|
17
17
|
private ngZone;
|
|
18
18
|
/**
|
|
19
19
|
* Provides visual styling that indicates if the Button is active.
|
|
20
|
-
*
|
|
20
|
+
*
|
|
21
|
+
* @default false
|
|
21
22
|
*/
|
|
22
23
|
toggleable: boolean;
|
|
23
24
|
/**
|
|
@@ -32,6 +33,8 @@ export declare class ButtonComponent implements OnDestroy, AfterViewInit {
|
|
|
32
33
|
set togglable(value: boolean);
|
|
33
34
|
/**
|
|
34
35
|
* Sets the selected state of the Button.
|
|
36
|
+
*
|
|
37
|
+
* @default false
|
|
35
38
|
*/
|
|
36
39
|
get selected(): boolean;
|
|
37
40
|
set selected(value: boolean);
|
|
@@ -58,6 +61,8 @@ export declare class ButtonComponent implements OnDestroy, AfterViewInit {
|
|
|
58
61
|
get icon(): string;
|
|
59
62
|
/**
|
|
60
63
|
* If set to `true`, it disables the Button.
|
|
64
|
+
*
|
|
65
|
+
* @default false
|
|
61
66
|
*/
|
|
62
67
|
set disabled(disabled: boolean);
|
|
63
68
|
get disabled(): boolean;
|
|
@@ -65,11 +70,7 @@ export declare class ButtonComponent implements OnDestroy, AfterViewInit {
|
|
|
65
70
|
* The size property specifies the padding of the Button
|
|
66
71
|
* ([see example]({% slug appearance_button %}#toc-size)).
|
|
67
72
|
*
|
|
68
|
-
*
|
|
69
|
-
* * `small`
|
|
70
|
-
* * `medium` (default)
|
|
71
|
-
* * `large`
|
|
72
|
-
* * `none`
|
|
73
|
+
* @default 'medium'
|
|
73
74
|
*/
|
|
74
75
|
set size(size: ButtonSize);
|
|
75
76
|
get size(): ButtonSize;
|
|
@@ -77,12 +78,7 @@ export declare class ButtonComponent implements OnDestroy, AfterViewInit {
|
|
|
77
78
|
* The rounded property specifies the border radius of the Button
|
|
78
79
|
* ([see example]({% slug appearance_button %}#toc-rounded)).
|
|
79
80
|
*
|
|
80
|
-
*
|
|
81
|
-
* * `small`
|
|
82
|
-
* * `medium` (default)
|
|
83
|
-
* * `large`
|
|
84
|
-
* * `full`
|
|
85
|
-
* * `none`
|
|
81
|
+
* @default 'medium'
|
|
86
82
|
*/
|
|
87
83
|
set rounded(rounded: ButtonRounded);
|
|
88
84
|
get rounded(): ButtonRounded;
|
|
@@ -90,13 +86,7 @@ export declare class ButtonComponent implements OnDestroy, AfterViewInit {
|
|
|
90
86
|
* The fillMode property specifies the background and border styles of the Button
|
|
91
87
|
* ([see example]({% slug appearance_button %}#toc-fillMode)).
|
|
92
88
|
*
|
|
93
|
-
*
|
|
94
|
-
* * `flat`
|
|
95
|
-
* * `solid` (default)
|
|
96
|
-
* * `outline`
|
|
97
|
-
* * `clear`
|
|
98
|
-
* * `link`
|
|
99
|
-
* * `none`
|
|
89
|
+
* @default 'solid'
|
|
100
90
|
*/
|
|
101
91
|
set fillMode(fillMode: ButtonFillMode);
|
|
102
92
|
get fillMode(): ButtonFillMode;
|
|
@@ -105,19 +95,7 @@ export declare class ButtonComponent implements OnDestroy, AfterViewInit {
|
|
|
105
95
|
* The theme color will be applied as a background and border color while also amending the text color accordingly
|
|
106
96
|
* ([see example]({% slug appearance_button %}#toc-themeColor)).
|
|
107
97
|
*
|
|
108
|
-
*
|
|
109
|
-
* * `base` (default)
|
|
110
|
-
* * `primary`
|
|
111
|
-
* * `secondary`
|
|
112
|
-
* * `tertiary`
|
|
113
|
-
* * `info`
|
|
114
|
-
* * `success`
|
|
115
|
-
* * `warning`
|
|
116
|
-
* * `error`
|
|
117
|
-
* * `dark`
|
|
118
|
-
* * `light`
|
|
119
|
-
* * `inverse`
|
|
120
|
-
* * `none`
|
|
98
|
+
* @default 'base'
|
|
121
99
|
*/
|
|
122
100
|
set themeColor(themeColor: ButtonThemeColor);
|
|
123
101
|
get themeColor(): ButtonThemeColor;
|
|
@@ -32,7 +32,8 @@ export class ButtonComponent {
|
|
|
32
32
|
this.ngZone = ngZone;
|
|
33
33
|
/**
|
|
34
34
|
* Provides visual styling that indicates if the Button is active.
|
|
35
|
-
*
|
|
35
|
+
*
|
|
36
|
+
* @default false
|
|
36
37
|
*/
|
|
37
38
|
this.toggleable = false;
|
|
38
39
|
/**
|
|
@@ -77,6 +78,8 @@ export class ButtonComponent {
|
|
|
77
78
|
}
|
|
78
79
|
/**
|
|
79
80
|
* Sets the selected state of the Button.
|
|
81
|
+
*
|
|
82
|
+
* @default false
|
|
80
83
|
*/
|
|
81
84
|
get selected() {
|
|
82
85
|
return this._selected || false;
|
|
@@ -121,6 +124,8 @@ export class ButtonComponent {
|
|
|
121
124
|
}
|
|
122
125
|
/**
|
|
123
126
|
* If set to `true`, it disables the Button.
|
|
127
|
+
*
|
|
128
|
+
* @default false
|
|
124
129
|
*/
|
|
125
130
|
set disabled(disabled) {
|
|
126
131
|
//Required, because in FF focused buttons are not blurred on disabled
|
|
@@ -137,11 +142,7 @@ export class ButtonComponent {
|
|
|
137
142
|
* The size property specifies the padding of the Button
|
|
138
143
|
* ([see example]({% slug appearance_button %}#toc-size)).
|
|
139
144
|
*
|
|
140
|
-
*
|
|
141
|
-
* * `small`
|
|
142
|
-
* * `medium` (default)
|
|
143
|
-
* * `large`
|
|
144
|
-
* * `none`
|
|
145
|
+
* @default 'medium'
|
|
145
146
|
*/
|
|
146
147
|
set size(size) {
|
|
147
148
|
const newSize = size ? size : DEFAULT_SIZE;
|
|
@@ -155,12 +156,7 @@ export class ButtonComponent {
|
|
|
155
156
|
* The rounded property specifies the border radius of the Button
|
|
156
157
|
* ([see example]({% slug appearance_button %}#toc-rounded)).
|
|
157
158
|
*
|
|
158
|
-
*
|
|
159
|
-
* * `small`
|
|
160
|
-
* * `medium` (default)
|
|
161
|
-
* * `large`
|
|
162
|
-
* * `full`
|
|
163
|
-
* * `none`
|
|
159
|
+
* @default 'medium'
|
|
164
160
|
*/
|
|
165
161
|
set rounded(rounded) {
|
|
166
162
|
const newRounded = rounded ? rounded : DEFAULT_ROUNDED;
|
|
@@ -174,13 +170,7 @@ export class ButtonComponent {
|
|
|
174
170
|
* The fillMode property specifies the background and border styles of the Button
|
|
175
171
|
* ([see example]({% slug appearance_button %}#toc-fillMode)).
|
|
176
172
|
*
|
|
177
|
-
*
|
|
178
|
-
* * `flat`
|
|
179
|
-
* * `solid` (default)
|
|
180
|
-
* * `outline`
|
|
181
|
-
* * `clear`
|
|
182
|
-
* * `link`
|
|
183
|
-
* * `none`
|
|
173
|
+
* @default 'solid'
|
|
184
174
|
*/
|
|
185
175
|
set fillMode(fillMode) {
|
|
186
176
|
const newFillMode = fillMode ? fillMode : DEFAULT_FILL_MODE;
|
|
@@ -195,19 +185,7 @@ export class ButtonComponent {
|
|
|
195
185
|
* The theme color will be applied as a background and border color while also amending the text color accordingly
|
|
196
186
|
* ([see example]({% slug appearance_button %}#toc-themeColor)).
|
|
197
187
|
*
|
|
198
|
-
*
|
|
199
|
-
* * `base` (default)
|
|
200
|
-
* * `primary`
|
|
201
|
-
* * `secondary`
|
|
202
|
-
* * `tertiary`
|
|
203
|
-
* * `info`
|
|
204
|
-
* * `success`
|
|
205
|
-
* * `warning`
|
|
206
|
-
* * `error`
|
|
207
|
-
* * `dark`
|
|
208
|
-
* * `light`
|
|
209
|
-
* * `inverse`
|
|
210
|
-
* * `none`
|
|
188
|
+
* @default 'base'
|
|
211
189
|
*/
|
|
212
190
|
set themeColor(themeColor) {
|
|
213
191
|
const newThemeColor = themeColor ? themeColor : DEFAULT_THEME_COLOR;
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-buttons',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '12.0.0-develop.
|
|
12
|
+
publishDate: 1681884446,
|
|
13
|
+
version: '12.0.0-develop.9',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -28,8 +28,8 @@ const packageMetadata = {
|
|
|
28
28
|
name: '@progress/kendo-angular-buttons',
|
|
29
29
|
productName: 'Kendo UI for Angular',
|
|
30
30
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
31
|
-
publishDate:
|
|
32
|
-
version: '12.0.0-develop.
|
|
31
|
+
publishDate: 1681884446,
|
|
32
|
+
version: '12.0.0-develop.9',
|
|
33
33
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
34
34
|
};
|
|
35
35
|
|
|
@@ -160,7 +160,8 @@ class ButtonComponent {
|
|
|
160
160
|
this.ngZone = ngZone;
|
|
161
161
|
/**
|
|
162
162
|
* Provides visual styling that indicates if the Button is active.
|
|
163
|
-
*
|
|
163
|
+
*
|
|
164
|
+
* @default false
|
|
164
165
|
*/
|
|
165
166
|
this.toggleable = false;
|
|
166
167
|
/**
|
|
@@ -205,6 +206,8 @@ class ButtonComponent {
|
|
|
205
206
|
}
|
|
206
207
|
/**
|
|
207
208
|
* Sets the selected state of the Button.
|
|
209
|
+
*
|
|
210
|
+
* @default false
|
|
208
211
|
*/
|
|
209
212
|
get selected() {
|
|
210
213
|
return this._selected || false;
|
|
@@ -249,6 +252,8 @@ class ButtonComponent {
|
|
|
249
252
|
}
|
|
250
253
|
/**
|
|
251
254
|
* If set to `true`, it disables the Button.
|
|
255
|
+
*
|
|
256
|
+
* @default false
|
|
252
257
|
*/
|
|
253
258
|
set disabled(disabled) {
|
|
254
259
|
//Required, because in FF focused buttons are not blurred on disabled
|
|
@@ -265,11 +270,7 @@ class ButtonComponent {
|
|
|
265
270
|
* The size property specifies the padding of the Button
|
|
266
271
|
* ([see example]({% slug appearance_button %}#toc-size)).
|
|
267
272
|
*
|
|
268
|
-
*
|
|
269
|
-
* * `small`
|
|
270
|
-
* * `medium` (default)
|
|
271
|
-
* * `large`
|
|
272
|
-
* * `none`
|
|
273
|
+
* @default 'medium'
|
|
273
274
|
*/
|
|
274
275
|
set size(size) {
|
|
275
276
|
const newSize = size ? size : DEFAULT_SIZE$2;
|
|
@@ -283,12 +284,7 @@ class ButtonComponent {
|
|
|
283
284
|
* The rounded property specifies the border radius of the Button
|
|
284
285
|
* ([see example]({% slug appearance_button %}#toc-rounded)).
|
|
285
286
|
*
|
|
286
|
-
*
|
|
287
|
-
* * `small`
|
|
288
|
-
* * `medium` (default)
|
|
289
|
-
* * `large`
|
|
290
|
-
* * `full`
|
|
291
|
-
* * `none`
|
|
287
|
+
* @default 'medium'
|
|
292
288
|
*/
|
|
293
289
|
set rounded(rounded) {
|
|
294
290
|
const newRounded = rounded ? rounded : DEFAULT_ROUNDED$3;
|
|
@@ -302,13 +298,7 @@ class ButtonComponent {
|
|
|
302
298
|
* The fillMode property specifies the background and border styles of the Button
|
|
303
299
|
* ([see example]({% slug appearance_button %}#toc-fillMode)).
|
|
304
300
|
*
|
|
305
|
-
*
|
|
306
|
-
* * `flat`
|
|
307
|
-
* * `solid` (default)
|
|
308
|
-
* * `outline`
|
|
309
|
-
* * `clear`
|
|
310
|
-
* * `link`
|
|
311
|
-
* * `none`
|
|
301
|
+
* @default 'solid'
|
|
312
302
|
*/
|
|
313
303
|
set fillMode(fillMode) {
|
|
314
304
|
const newFillMode = fillMode ? fillMode : DEFAULT_FILL_MODE$3;
|
|
@@ -323,19 +313,7 @@ class ButtonComponent {
|
|
|
323
313
|
* The theme color will be applied as a background and border color while also amending the text color accordingly
|
|
324
314
|
* ([see example]({% slug appearance_button %}#toc-themeColor)).
|
|
325
315
|
*
|
|
326
|
-
*
|
|
327
|
-
* * `base` (default)
|
|
328
|
-
* * `primary`
|
|
329
|
-
* * `secondary`
|
|
330
|
-
* * `tertiary`
|
|
331
|
-
* * `info`
|
|
332
|
-
* * `success`
|
|
333
|
-
* * `warning`
|
|
334
|
-
* * `error`
|
|
335
|
-
* * `dark`
|
|
336
|
-
* * `light`
|
|
337
|
-
* * `inverse`
|
|
338
|
-
* * `none`
|
|
316
|
+
* @default 'base'
|
|
339
317
|
*/
|
|
340
318
|
set themeColor(themeColor) {
|
|
341
319
|
const newThemeColor = themeColor ? themeColor : DEFAULT_THEME_COLOR$2;
|
|
@@ -46,8 +46,8 @@ const packageMetadata = {
|
|
|
46
46
|
name: '@progress/kendo-angular-buttons',
|
|
47
47
|
productName: 'Kendo UI for Angular',
|
|
48
48
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
49
|
-
publishDate:
|
|
50
|
-
version: '12.0.0-develop.
|
|
49
|
+
publishDate: 1681884446,
|
|
50
|
+
version: '12.0.0-develop.9',
|
|
51
51
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
52
52
|
};
|
|
53
53
|
|
|
@@ -160,7 +160,8 @@ class ButtonComponent {
|
|
|
160
160
|
this.ngZone = ngZone;
|
|
161
161
|
/**
|
|
162
162
|
* Provides visual styling that indicates if the Button is active.
|
|
163
|
-
*
|
|
163
|
+
*
|
|
164
|
+
* @default false
|
|
164
165
|
*/
|
|
165
166
|
this.toggleable = false;
|
|
166
167
|
/**
|
|
@@ -205,6 +206,8 @@ class ButtonComponent {
|
|
|
205
206
|
}
|
|
206
207
|
/**
|
|
207
208
|
* Sets the selected state of the Button.
|
|
209
|
+
*
|
|
210
|
+
* @default false
|
|
208
211
|
*/
|
|
209
212
|
get selected() {
|
|
210
213
|
return this._selected || false;
|
|
@@ -249,6 +252,8 @@ class ButtonComponent {
|
|
|
249
252
|
}
|
|
250
253
|
/**
|
|
251
254
|
* If set to `true`, it disables the Button.
|
|
255
|
+
*
|
|
256
|
+
* @default false
|
|
252
257
|
*/
|
|
253
258
|
set disabled(disabled) {
|
|
254
259
|
//Required, because in FF focused buttons are not blurred on disabled
|
|
@@ -265,11 +270,7 @@ class ButtonComponent {
|
|
|
265
270
|
* The size property specifies the padding of the Button
|
|
266
271
|
* ([see example]({% slug appearance_button %}#toc-size)).
|
|
267
272
|
*
|
|
268
|
-
*
|
|
269
|
-
* * `small`
|
|
270
|
-
* * `medium` (default)
|
|
271
|
-
* * `large`
|
|
272
|
-
* * `none`
|
|
273
|
+
* @default 'medium'
|
|
273
274
|
*/
|
|
274
275
|
set size(size) {
|
|
275
276
|
const newSize = size ? size : DEFAULT_SIZE$2;
|
|
@@ -283,12 +284,7 @@ class ButtonComponent {
|
|
|
283
284
|
* The rounded property specifies the border radius of the Button
|
|
284
285
|
* ([see example]({% slug appearance_button %}#toc-rounded)).
|
|
285
286
|
*
|
|
286
|
-
*
|
|
287
|
-
* * `small`
|
|
288
|
-
* * `medium` (default)
|
|
289
|
-
* * `large`
|
|
290
|
-
* * `full`
|
|
291
|
-
* * `none`
|
|
287
|
+
* @default 'medium'
|
|
292
288
|
*/
|
|
293
289
|
set rounded(rounded) {
|
|
294
290
|
const newRounded = rounded ? rounded : DEFAULT_ROUNDED$3;
|
|
@@ -302,13 +298,7 @@ class ButtonComponent {
|
|
|
302
298
|
* The fillMode property specifies the background and border styles of the Button
|
|
303
299
|
* ([see example]({% slug appearance_button %}#toc-fillMode)).
|
|
304
300
|
*
|
|
305
|
-
*
|
|
306
|
-
* * `flat`
|
|
307
|
-
* * `solid` (default)
|
|
308
|
-
* * `outline`
|
|
309
|
-
* * `clear`
|
|
310
|
-
* * `link`
|
|
311
|
-
* * `none`
|
|
301
|
+
* @default 'solid'
|
|
312
302
|
*/
|
|
313
303
|
set fillMode(fillMode) {
|
|
314
304
|
const newFillMode = fillMode ? fillMode : DEFAULT_FILL_MODE$3;
|
|
@@ -323,19 +313,7 @@ class ButtonComponent {
|
|
|
323
313
|
* The theme color will be applied as a background and border color while also amending the text color accordingly
|
|
324
314
|
* ([see example]({% slug appearance_button %}#toc-themeColor)).
|
|
325
315
|
*
|
|
326
|
-
*
|
|
327
|
-
* * `base` (default)
|
|
328
|
-
* * `primary`
|
|
329
|
-
* * `secondary`
|
|
330
|
-
* * `tertiary`
|
|
331
|
-
* * `info`
|
|
332
|
-
* * `success`
|
|
333
|
-
* * `warning`
|
|
334
|
-
* * `error`
|
|
335
|
-
* * `dark`
|
|
336
|
-
* * `light`
|
|
337
|
-
* * `inverse`
|
|
338
|
-
* * `none`
|
|
316
|
+
* @default 'base'
|
|
339
317
|
*/
|
|
340
318
|
set themeColor(themeColor) {
|
|
341
319
|
const newThemeColor = themeColor ? themeColor : DEFAULT_THEME_COLOR$2;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-buttons",
|
|
3
|
-
"version": "12.0.0-develop.
|
|
3
|
+
"version": "12.0.0-develop.9",
|
|
4
4
|
"description": "Buttons Package for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -25,15 +25,15 @@
|
|
|
25
25
|
"@angular/core": "13 - 15",
|
|
26
26
|
"@angular/platform-browser": "13 - 15",
|
|
27
27
|
"@progress/kendo-licensing": "^1.0.2",
|
|
28
|
-
"@progress/kendo-angular-common": "12.0.0-develop.
|
|
29
|
-
"@progress/kendo-angular-l10n": "12.0.0-develop.
|
|
30
|
-
"@progress/kendo-angular-popup": "12.0.0-develop.
|
|
31
|
-
"@progress/kendo-angular-icons": "12.0.0-develop.
|
|
28
|
+
"@progress/kendo-angular-common": "12.0.0-develop.9",
|
|
29
|
+
"@progress/kendo-angular-l10n": "12.0.0-develop.9",
|
|
30
|
+
"@progress/kendo-angular-popup": "12.0.0-develop.9",
|
|
31
|
+
"@progress/kendo-angular-icons": "12.0.0-develop.9",
|
|
32
32
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"tslib": "^2.3.1",
|
|
36
|
-
"@progress/kendo-angular-schematics": "12.0.0-develop.
|
|
36
|
+
"@progress/kendo-angular-schematics": "12.0.0-develop.9",
|
|
37
37
|
"@progress/kendo-common": "^0.2.1"
|
|
38
38
|
},
|
|
39
39
|
"schematics": "./schematics/collection.json",
|