@progress/kendo-angular-toolbar 19.3.0-develop.3 → 19.3.0-develop.30
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.
|
@@ -10,7 +10,7 @@ export const packageMetadata = {
|
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCode: 'KENDOUIANGULAR',
|
|
12
12
|
productCodes: ['KENDOUIANGULAR'],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: '19.3.0-develop.
|
|
13
|
+
publishDate: 1754574101,
|
|
14
|
+
version: '19.3.0-develop.30',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -125,6 +125,13 @@ export class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
125
125
|
* @default 'solid'
|
|
126
126
|
*/
|
|
127
127
|
fillMode = 'solid';
|
|
128
|
+
/**
|
|
129
|
+
* Specifies the border radius of the Button.
|
|
130
|
+
* Accepts a `ButtonRounded` value.
|
|
131
|
+
*
|
|
132
|
+
* @default 'medium'
|
|
133
|
+
*/
|
|
134
|
+
rounded = 'medium';
|
|
128
135
|
/**
|
|
129
136
|
* Specifies the predefined theme color of the Button.
|
|
130
137
|
* Accepts a `ButtonThemeColor` value.
|
|
@@ -233,6 +240,17 @@ export class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
233
240
|
this.propertyChangeSub.unsubscribe();
|
|
234
241
|
this.propertyChangeSub = null;
|
|
235
242
|
}
|
|
243
|
+
ngOnChanges(changes) {
|
|
244
|
+
if (changes['rounded']) {
|
|
245
|
+
this.rounded = changes['rounded'].currentValue;
|
|
246
|
+
}
|
|
247
|
+
if (changes['themeColor']) {
|
|
248
|
+
this.themeColor = changes['themeColor'].currentValue;
|
|
249
|
+
}
|
|
250
|
+
if (changes['showText']) {
|
|
251
|
+
this.showText = changes['showText'].currentValue;
|
|
252
|
+
}
|
|
253
|
+
}
|
|
236
254
|
/**
|
|
237
255
|
* @hidden
|
|
238
256
|
*/
|
|
@@ -292,7 +310,7 @@ export class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
292
310
|
});
|
|
293
311
|
}
|
|
294
312
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToolBarButtonComponent, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: i1.ToolBarComponent }], target: i0.ɵɵFactoryTarget.Component });
|
|
295
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ToolBarButtonComponent, isStandalone: true, selector: "kendo-toolbar-button", inputs: { showText: "showText", showIcon: "showIcon", text: "text", style: "style", className: "className", title: "title", disabled: "disabled", toggleable: "toggleable", look: "look", togglable: "togglable", selected: "selected", fillMode: "fillMode", themeColor: "themeColor", icon: "icon", iconClass: "iconClass", svgIcon: "svgIcon", imageUrl: "imageUrl" }, outputs: { click: "click", pointerdown: "pointerdown", selectedChange: "selectedChange" }, providers: [{ provide: ToolBarToolComponent, useExisting: forwardRef(() => ToolBarButtonComponent) }], viewQueries: [{ propertyName: "toolbarButtonElement", first: true, predicate: ["toolbarButton"], descendants: true, read: ElementRef }, { propertyName: "sectionButtonElement", first: true, predicate: ["sectionButton"], descendants: true, read: ElementRef }, { propertyName: "overflowButtonElement", first: true, predicate: ["overflowButton"], descendants: true, read: ElementRef }], exportAs: ["kendoToolBarButton"], usesInheritance: true, ngImport: i0, template: `
|
|
313
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ToolBarButtonComponent, isStandalone: true, selector: "kendo-toolbar-button", inputs: { showText: "showText", showIcon: "showIcon", text: "text", style: "style", className: "className", title: "title", disabled: "disabled", toggleable: "toggleable", look: "look", togglable: "togglable", selected: "selected", fillMode: "fillMode", rounded: "rounded", themeColor: "themeColor", icon: "icon", iconClass: "iconClass", svgIcon: "svgIcon", imageUrl: "imageUrl" }, outputs: { click: "click", pointerdown: "pointerdown", selectedChange: "selectedChange" }, providers: [{ provide: ToolBarToolComponent, useExisting: forwardRef(() => ToolBarButtonComponent) }], viewQueries: [{ propertyName: "toolbarButtonElement", first: true, predicate: ["toolbarButton"], descendants: true, read: ElementRef }, { propertyName: "sectionButtonElement", first: true, predicate: ["sectionButton"], descendants: true, read: ElementRef }, { propertyName: "overflowButtonElement", first: true, predicate: ["overflowButton"], descendants: true, read: ElementRef }], exportAs: ["kendoToolBarButton"], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `
|
|
296
314
|
<ng-template #toolbarTemplate>
|
|
297
315
|
<kendo-badge-container *ngIf="hasBadgeContainer">
|
|
298
316
|
<button
|
|
@@ -310,6 +328,7 @@ export class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
310
328
|
[toggleable]="toggleable"
|
|
311
329
|
[fillMode]="fillMode"
|
|
312
330
|
[themeColor]="fillMode ? themeColor : null"
|
|
331
|
+
[rounded]="rounded"
|
|
313
332
|
[selected]="selected"
|
|
314
333
|
[icon]="toolbarOptions.icon"
|
|
315
334
|
[iconClass]="toolbarOptions.iconClass"
|
|
@@ -340,6 +359,7 @@ export class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
340
359
|
[toggleable]="toggleable"
|
|
341
360
|
[fillMode]="fillMode"
|
|
342
361
|
[themeColor]="fillMode ? themeColor : null"
|
|
362
|
+
[rounded]="rounded"
|
|
343
363
|
[selected]="selected"
|
|
344
364
|
[icon]="toolbarOptions.icon"
|
|
345
365
|
[iconClass]="toolbarOptions.iconClass"
|
|
@@ -394,6 +414,7 @@ export class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
394
414
|
[toggleable]="toggleable"
|
|
395
415
|
[fillMode]="fillMode"
|
|
396
416
|
[themeColor]="fillMode ? themeColor : null"
|
|
417
|
+
[rounded]="rounded"
|
|
397
418
|
[selected]="selected"
|
|
398
419
|
[icon]="toolbarOptions.icon"
|
|
399
420
|
[iconClass]="toolbarOptions.iconClass"
|
|
@@ -424,6 +445,7 @@ export class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
424
445
|
[toggleable]="toggleable"
|
|
425
446
|
[fillMode]="fillMode"
|
|
426
447
|
[themeColor]="fillMode ? themeColor : null"
|
|
448
|
+
[rounded]="rounded"
|
|
427
449
|
[selected]="selected"
|
|
428
450
|
[icon]="toolbarOptions.icon"
|
|
429
451
|
[iconClass]="toolbarOptions.iconClass"
|
|
@@ -463,6 +485,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
463
485
|
[toggleable]="toggleable"
|
|
464
486
|
[fillMode]="fillMode"
|
|
465
487
|
[themeColor]="fillMode ? themeColor : null"
|
|
488
|
+
[rounded]="rounded"
|
|
466
489
|
[selected]="selected"
|
|
467
490
|
[icon]="toolbarOptions.icon"
|
|
468
491
|
[iconClass]="toolbarOptions.iconClass"
|
|
@@ -493,6 +516,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
493
516
|
[toggleable]="toggleable"
|
|
494
517
|
[fillMode]="fillMode"
|
|
495
518
|
[themeColor]="fillMode ? themeColor : null"
|
|
519
|
+
[rounded]="rounded"
|
|
496
520
|
[selected]="selected"
|
|
497
521
|
[icon]="toolbarOptions.icon"
|
|
498
522
|
[iconClass]="toolbarOptions.iconClass"
|
|
@@ -547,6 +571,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
547
571
|
[toggleable]="toggleable"
|
|
548
572
|
[fillMode]="fillMode"
|
|
549
573
|
[themeColor]="fillMode ? themeColor : null"
|
|
574
|
+
[rounded]="rounded"
|
|
550
575
|
[selected]="selected"
|
|
551
576
|
[icon]="toolbarOptions.icon"
|
|
552
577
|
[iconClass]="toolbarOptions.iconClass"
|
|
@@ -577,6 +602,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
577
602
|
[toggleable]="toggleable"
|
|
578
603
|
[fillMode]="fillMode"
|
|
579
604
|
[themeColor]="fillMode ? themeColor : null"
|
|
605
|
+
[rounded]="rounded"
|
|
580
606
|
[selected]="selected"
|
|
581
607
|
[icon]="toolbarOptions.icon"
|
|
582
608
|
[iconClass]="toolbarOptions.iconClass"
|
|
@@ -618,6 +644,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
618
644
|
type: Input
|
|
619
645
|
}], fillMode: [{
|
|
620
646
|
type: Input
|
|
647
|
+
}], rounded: [{
|
|
648
|
+
type: Input
|
|
621
649
|
}], themeColor: [{
|
|
622
650
|
type: Input
|
|
623
651
|
}], icon: [{
|
|
@@ -26,8 +26,8 @@ const packageMetadata = {
|
|
|
26
26
|
productName: 'Kendo UI for Angular',
|
|
27
27
|
productCode: 'KENDOUIANGULAR',
|
|
28
28
|
productCodes: ['KENDOUIANGULAR'],
|
|
29
|
-
publishDate:
|
|
30
|
-
version: '19.3.0-develop.
|
|
29
|
+
publishDate: 1754574101,
|
|
30
|
+
version: '19.3.0-develop.30',
|
|
31
31
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
32
32
|
};
|
|
33
33
|
|
|
@@ -2718,6 +2718,13 @@ class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
2718
2718
|
* @default 'solid'
|
|
2719
2719
|
*/
|
|
2720
2720
|
fillMode = 'solid';
|
|
2721
|
+
/**
|
|
2722
|
+
* Specifies the border radius of the Button.
|
|
2723
|
+
* Accepts a `ButtonRounded` value.
|
|
2724
|
+
*
|
|
2725
|
+
* @default 'medium'
|
|
2726
|
+
*/
|
|
2727
|
+
rounded = 'medium';
|
|
2721
2728
|
/**
|
|
2722
2729
|
* Specifies the predefined theme color of the Button.
|
|
2723
2730
|
* Accepts a `ButtonThemeColor` value.
|
|
@@ -2826,6 +2833,17 @@ class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
2826
2833
|
this.propertyChangeSub.unsubscribe();
|
|
2827
2834
|
this.propertyChangeSub = null;
|
|
2828
2835
|
}
|
|
2836
|
+
ngOnChanges(changes) {
|
|
2837
|
+
if (changes['rounded']) {
|
|
2838
|
+
this.rounded = changes['rounded'].currentValue;
|
|
2839
|
+
}
|
|
2840
|
+
if (changes['themeColor']) {
|
|
2841
|
+
this.themeColor = changes['themeColor'].currentValue;
|
|
2842
|
+
}
|
|
2843
|
+
if (changes['showText']) {
|
|
2844
|
+
this.showText = changes['showText'].currentValue;
|
|
2845
|
+
}
|
|
2846
|
+
}
|
|
2829
2847
|
/**
|
|
2830
2848
|
* @hidden
|
|
2831
2849
|
*/
|
|
@@ -2885,7 +2903,7 @@ class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
2885
2903
|
});
|
|
2886
2904
|
}
|
|
2887
2905
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ToolBarButtonComponent, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: ToolBarComponent }], target: i0.ɵɵFactoryTarget.Component });
|
|
2888
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ToolBarButtonComponent, isStandalone: true, selector: "kendo-toolbar-button", inputs: { showText: "showText", showIcon: "showIcon", text: "text", style: "style", className: "className", title: "title", disabled: "disabled", toggleable: "toggleable", look: "look", togglable: "togglable", selected: "selected", fillMode: "fillMode", themeColor: "themeColor", icon: "icon", iconClass: "iconClass", svgIcon: "svgIcon", imageUrl: "imageUrl" }, outputs: { click: "click", pointerdown: "pointerdown", selectedChange: "selectedChange" }, providers: [{ provide: ToolBarToolComponent, useExisting: forwardRef(() => ToolBarButtonComponent) }], viewQueries: [{ propertyName: "toolbarButtonElement", first: true, predicate: ["toolbarButton"], descendants: true, read: ElementRef }, { propertyName: "sectionButtonElement", first: true, predicate: ["sectionButton"], descendants: true, read: ElementRef }, { propertyName: "overflowButtonElement", first: true, predicate: ["overflowButton"], descendants: true, read: ElementRef }], exportAs: ["kendoToolBarButton"], usesInheritance: true, ngImport: i0, template: `
|
|
2906
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ToolBarButtonComponent, isStandalone: true, selector: "kendo-toolbar-button", inputs: { showText: "showText", showIcon: "showIcon", text: "text", style: "style", className: "className", title: "title", disabled: "disabled", toggleable: "toggleable", look: "look", togglable: "togglable", selected: "selected", fillMode: "fillMode", rounded: "rounded", themeColor: "themeColor", icon: "icon", iconClass: "iconClass", svgIcon: "svgIcon", imageUrl: "imageUrl" }, outputs: { click: "click", pointerdown: "pointerdown", selectedChange: "selectedChange" }, providers: [{ provide: ToolBarToolComponent, useExisting: forwardRef(() => ToolBarButtonComponent) }], viewQueries: [{ propertyName: "toolbarButtonElement", first: true, predicate: ["toolbarButton"], descendants: true, read: ElementRef }, { propertyName: "sectionButtonElement", first: true, predicate: ["sectionButton"], descendants: true, read: ElementRef }, { propertyName: "overflowButtonElement", first: true, predicate: ["overflowButton"], descendants: true, read: ElementRef }], exportAs: ["kendoToolBarButton"], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `
|
|
2889
2907
|
<ng-template #toolbarTemplate>
|
|
2890
2908
|
<kendo-badge-container *ngIf="hasBadgeContainer">
|
|
2891
2909
|
<button
|
|
@@ -2903,6 +2921,7 @@ class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
2903
2921
|
[toggleable]="toggleable"
|
|
2904
2922
|
[fillMode]="fillMode"
|
|
2905
2923
|
[themeColor]="fillMode ? themeColor : null"
|
|
2924
|
+
[rounded]="rounded"
|
|
2906
2925
|
[selected]="selected"
|
|
2907
2926
|
[icon]="toolbarOptions.icon"
|
|
2908
2927
|
[iconClass]="toolbarOptions.iconClass"
|
|
@@ -2933,6 +2952,7 @@ class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
2933
2952
|
[toggleable]="toggleable"
|
|
2934
2953
|
[fillMode]="fillMode"
|
|
2935
2954
|
[themeColor]="fillMode ? themeColor : null"
|
|
2955
|
+
[rounded]="rounded"
|
|
2936
2956
|
[selected]="selected"
|
|
2937
2957
|
[icon]="toolbarOptions.icon"
|
|
2938
2958
|
[iconClass]="toolbarOptions.iconClass"
|
|
@@ -2987,6 +3007,7 @@ class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
2987
3007
|
[toggleable]="toggleable"
|
|
2988
3008
|
[fillMode]="fillMode"
|
|
2989
3009
|
[themeColor]="fillMode ? themeColor : null"
|
|
3010
|
+
[rounded]="rounded"
|
|
2990
3011
|
[selected]="selected"
|
|
2991
3012
|
[icon]="toolbarOptions.icon"
|
|
2992
3013
|
[iconClass]="toolbarOptions.iconClass"
|
|
@@ -3017,6 +3038,7 @@ class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
3017
3038
|
[toggleable]="toggleable"
|
|
3018
3039
|
[fillMode]="fillMode"
|
|
3019
3040
|
[themeColor]="fillMode ? themeColor : null"
|
|
3041
|
+
[rounded]="rounded"
|
|
3020
3042
|
[selected]="selected"
|
|
3021
3043
|
[icon]="toolbarOptions.icon"
|
|
3022
3044
|
[iconClass]="toolbarOptions.iconClass"
|
|
@@ -3056,6 +3078,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3056
3078
|
[toggleable]="toggleable"
|
|
3057
3079
|
[fillMode]="fillMode"
|
|
3058
3080
|
[themeColor]="fillMode ? themeColor : null"
|
|
3081
|
+
[rounded]="rounded"
|
|
3059
3082
|
[selected]="selected"
|
|
3060
3083
|
[icon]="toolbarOptions.icon"
|
|
3061
3084
|
[iconClass]="toolbarOptions.iconClass"
|
|
@@ -3086,6 +3109,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3086
3109
|
[toggleable]="toggleable"
|
|
3087
3110
|
[fillMode]="fillMode"
|
|
3088
3111
|
[themeColor]="fillMode ? themeColor : null"
|
|
3112
|
+
[rounded]="rounded"
|
|
3089
3113
|
[selected]="selected"
|
|
3090
3114
|
[icon]="toolbarOptions.icon"
|
|
3091
3115
|
[iconClass]="toolbarOptions.iconClass"
|
|
@@ -3140,6 +3164,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3140
3164
|
[toggleable]="toggleable"
|
|
3141
3165
|
[fillMode]="fillMode"
|
|
3142
3166
|
[themeColor]="fillMode ? themeColor : null"
|
|
3167
|
+
[rounded]="rounded"
|
|
3143
3168
|
[selected]="selected"
|
|
3144
3169
|
[icon]="toolbarOptions.icon"
|
|
3145
3170
|
[iconClass]="toolbarOptions.iconClass"
|
|
@@ -3170,6 +3195,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3170
3195
|
[toggleable]="toggleable"
|
|
3171
3196
|
[fillMode]="fillMode"
|
|
3172
3197
|
[themeColor]="fillMode ? themeColor : null"
|
|
3198
|
+
[rounded]="rounded"
|
|
3173
3199
|
[selected]="selected"
|
|
3174
3200
|
[icon]="toolbarOptions.icon"
|
|
3175
3201
|
[iconClass]="toolbarOptions.iconClass"
|
|
@@ -3211,6 +3237,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3211
3237
|
type: Input
|
|
3212
3238
|
}], fillMode: [{
|
|
3213
3239
|
type: Input
|
|
3240
|
+
}], rounded: [{
|
|
3241
|
+
type: Input
|
|
3214
3242
|
}], themeColor: [{
|
|
3215
3243
|
type: Input
|
|
3216
3244
|
}], icon: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-toolbar",
|
|
3
|
-
"version": "19.3.0-develop.
|
|
3
|
+
"version": "19.3.0-develop.30",
|
|
4
4
|
"description": "Kendo UI Angular Toolbar component - a single UI element that organizes buttons and other navigation elements",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"package": {
|
|
46
46
|
"productName": "Kendo UI for Angular",
|
|
47
47
|
"productCode": "KENDOUIANGULAR",
|
|
48
|
-
"publishDate":
|
|
48
|
+
"publishDate": 1754574101,
|
|
49
49
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
50
50
|
}
|
|
51
51
|
},
|
|
@@ -54,18 +54,18 @@
|
|
|
54
54
|
"@angular/common": "16 - 20",
|
|
55
55
|
"@angular/core": "16 - 20",
|
|
56
56
|
"@angular/platform-browser": "16 - 20",
|
|
57
|
-
"@progress/kendo-licensing": "^1.
|
|
58
|
-
"@progress/kendo-angular-buttons": "19.3.0-develop.
|
|
59
|
-
"@progress/kendo-angular-common": "19.3.0-develop.
|
|
60
|
-
"@progress/kendo-angular-l10n": "19.3.0-develop.
|
|
61
|
-
"@progress/kendo-angular-icons": "19.3.0-develop.
|
|
62
|
-
"@progress/kendo-angular-indicators": "19.3.0-develop.
|
|
63
|
-
"@progress/kendo-angular-popup": "19.3.0-develop.
|
|
57
|
+
"@progress/kendo-licensing": "^1.7.0",
|
|
58
|
+
"@progress/kendo-angular-buttons": "19.3.0-develop.30",
|
|
59
|
+
"@progress/kendo-angular-common": "19.3.0-develop.30",
|
|
60
|
+
"@progress/kendo-angular-l10n": "19.3.0-develop.30",
|
|
61
|
+
"@progress/kendo-angular-icons": "19.3.0-develop.30",
|
|
62
|
+
"@progress/kendo-angular-indicators": "19.3.0-develop.30",
|
|
63
|
+
"@progress/kendo-angular-popup": "19.3.0-develop.30",
|
|
64
64
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
67
|
"tslib": "^2.3.1",
|
|
68
|
-
"@progress/kendo-angular-schematics": "19.3.0-develop.
|
|
68
|
+
"@progress/kendo-angular-schematics": "19.3.0-develop.30",
|
|
69
69
|
"node-html-parser": "^7.0.1"
|
|
70
70
|
},
|
|
71
71
|
"schematics": "./schematics/collection.json",
|
|
@@ -6,7 +6,7 @@ import { EventEmitter, ElementRef, NgZone } from '@angular/core';
|
|
|
6
6
|
import { ToolBarToolComponent } from './toolbar-tool.component';
|
|
7
7
|
import { DisplayMode } from '../display-mode';
|
|
8
8
|
import { ToolOptions } from '../tool-options';
|
|
9
|
-
import { ButtonFillMode, ButtonThemeColor } from '@progress/kendo-angular-buttons';
|
|
9
|
+
import { ButtonFillMode, ButtonThemeColor, ButtonRounded } from '@progress/kendo-angular-buttons';
|
|
10
10
|
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
11
11
|
import { ToolBarComponent } from '../toolbar.component';
|
|
12
12
|
import * as i0 from "@angular/core";
|
|
@@ -100,6 +100,13 @@ export declare class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
100
100
|
* @default 'solid'
|
|
101
101
|
*/
|
|
102
102
|
fillMode: ButtonFillMode;
|
|
103
|
+
/**
|
|
104
|
+
* Specifies the border radius of the Button.
|
|
105
|
+
* Accepts a `ButtonRounded` value.
|
|
106
|
+
*
|
|
107
|
+
* @default 'medium'
|
|
108
|
+
*/
|
|
109
|
+
rounded: ButtonRounded;
|
|
103
110
|
/**
|
|
104
111
|
* Specifies the predefined theme color of the Button.
|
|
105
112
|
* Accepts a `ButtonThemeColor` value.
|
|
@@ -160,6 +167,7 @@ export declare class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
160
167
|
constructor(element: ElementRef, zone: NgZone, host: ToolBarComponent);
|
|
161
168
|
ngOnInit(): void;
|
|
162
169
|
ngOnDestroy(): void;
|
|
170
|
+
ngOnChanges(changes: any): void;
|
|
163
171
|
/**
|
|
164
172
|
* @hidden
|
|
165
173
|
*/
|
|
@@ -190,5 +198,5 @@ export declare class ToolBarButtonComponent extends ToolBarToolComponent {
|
|
|
190
198
|
getButton(): HTMLElement;
|
|
191
199
|
private setTextDisplayMode;
|
|
192
200
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolBarButtonComponent, never>;
|
|
193
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToolBarButtonComponent, "kendo-toolbar-button", ["kendoToolBarButton"], { "showText": { "alias": "showText"; "required": false; }; "showIcon": { "alias": "showIcon"; "required": false; }; "text": { "alias": "text"; "required": false; }; "style": { "alias": "style"; "required": false; }; "className": { "alias": "className"; "required": false; }; "title": { "alias": "title"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "toggleable": { "alias": "toggleable"; "required": false; }; "look": { "alias": "look"; "required": false; }; "togglable": { "alias": "togglable"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconClass": { "alias": "iconClass"; "required": false; }; "svgIcon": { "alias": "svgIcon"; "required": false; }; "imageUrl": { "alias": "imageUrl"; "required": false; }; }, { "click": "click"; "pointerdown": "pointerdown"; "selectedChange": "selectedChange"; }, never, never, true, never>;
|
|
201
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToolBarButtonComponent, "kendo-toolbar-button", ["kendoToolBarButton"], { "showText": { "alias": "showText"; "required": false; }; "showIcon": { "alias": "showIcon"; "required": false; }; "text": { "alias": "text"; "required": false; }; "style": { "alias": "style"; "required": false; }; "className": { "alias": "className"; "required": false; }; "title": { "alias": "title"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "toggleable": { "alias": "toggleable"; "required": false; }; "look": { "alias": "look"; "required": false; }; "togglable": { "alias": "togglable"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconClass": { "alias": "iconClass"; "required": false; }; "svgIcon": { "alias": "svgIcon"; "required": false; }; "imageUrl": { "alias": "imageUrl"; "required": false; }; }, { "click": "click"; "pointerdown": "pointerdown"; "selectedChange": "selectedChange"; }, never, never, true, never>;
|
|
194
202
|
}
|