@progress/kendo-angular-buttons 23.0.0-develop.4 → 23.0.0-develop.6
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/button/button.component.d.ts +5 -13
- package/chip/chip-list.component.d.ts +1 -3
- package/chip/chip.component.d.ts +4 -12
- package/dropdownbutton/dropdownbutton.component.d.ts +3 -7
- package/fesm2022/progress-kendo-angular-buttons.mjs +25 -64
- package/floatingactionbutton/floatingactionbutton.component.d.ts +3 -7
- package/package-metadata.mjs +2 -2
- package/package.json +7 -7
- package/speechtotextbutton/speechtotextbutton.component.d.ts +5 -10
- package/splitbutton/splitbutton.component.d.ts +4 -12
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { SimpleChanges, ElementRef, EventEmitter, Renderer2, OnDestroy, NgZone, OnInit, OnChanges } from '@angular/core';
|
|
6
6
|
import { KendoButtonService } from './button.service';
|
|
7
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
7
8
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
8
9
|
import { ButtonFillMode, ButtonRounded, ButtonSize, ButtonThemeColor } from '../common/models';
|
|
9
|
-
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
10
10
|
import { ArrowIconSettings } from '../common/models/arrow-settings';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
/**
|
|
@@ -83,34 +83,26 @@ export declare class ButtonComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
83
83
|
get disabled(): boolean;
|
|
84
84
|
/**
|
|
85
85
|
* Sets the padding of the Button.
|
|
86
|
-
* See [Button Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/button/appearance#size).
|
|
87
|
-
*
|
|
88
|
-
* @default 'medium'
|
|
86
|
+
* See [Button Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/button/appearance#size). The default value is set by the Kendo theme.
|
|
89
87
|
*/
|
|
90
88
|
set size(size: ButtonSize);
|
|
91
89
|
get size(): ButtonSize;
|
|
92
90
|
/**
|
|
93
91
|
* Sets the border radius of the Button.
|
|
94
|
-
* See [Button Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/button/appearance#roundness).
|
|
95
|
-
*
|
|
96
|
-
* @default 'medium'
|
|
92
|
+
* See [Button Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/button/appearance#roundness). The default value is set by the Kendo theme.
|
|
97
93
|
*/
|
|
98
94
|
set rounded(rounded: ButtonRounded);
|
|
99
95
|
get rounded(): ButtonRounded;
|
|
100
96
|
/**
|
|
101
97
|
* Sets the background and border styles of the Button.
|
|
102
|
-
* See [Button Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/button/appearance#fill-mode).
|
|
103
|
-
*
|
|
104
|
-
* @default 'solid'
|
|
98
|
+
* See [Button Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/button/appearance#fill-mode). The default value is set by the Kendo theme.
|
|
105
99
|
*/
|
|
106
100
|
set fillMode(fillMode: ButtonFillMode);
|
|
107
101
|
get fillMode(): ButtonFillMode;
|
|
108
102
|
/**
|
|
109
103
|
* Sets a predefined theme color for the Button.
|
|
110
104
|
* The theme color applies as a background and border color and adjusts the text color.
|
|
111
|
-
* See [Button Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/button/appearance#theme-colors).
|
|
112
|
-
*
|
|
113
|
-
* @default 'base'
|
|
105
|
+
* See [Button Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/button/appearance#theme-colors). The default value is set by the Kendo theme.
|
|
114
106
|
*/
|
|
115
107
|
set themeColor(themeColor: ButtonThemeColor);
|
|
116
108
|
get themeColor(): ButtonThemeColor;
|
|
@@ -44,9 +44,7 @@ export declare class ChipListComponent implements OnInit, AfterViewInit, AfterCo
|
|
|
44
44
|
selection: ChipListSelection;
|
|
45
45
|
/**
|
|
46
46
|
* Sets the gap between the Chips in the ChipList.
|
|
47
|
-
* See [ChipList Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/chiplist/appearance#size).
|
|
48
|
-
*
|
|
49
|
-
* @default 'medium'
|
|
47
|
+
* See [ChipList Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/chiplist/appearance#size). The default value is set by the Kendo theme.
|
|
50
48
|
*/
|
|
51
49
|
set size(size: ChipSize);
|
|
52
50
|
get size(): ChipSize;
|
package/chip/chip.component.d.ts
CHANGED
|
@@ -91,34 +91,26 @@ export declare class ChipComponent implements OnInit, AfterViewInit, OnChanges {
|
|
|
91
91
|
disabled: boolean;
|
|
92
92
|
/**
|
|
93
93
|
* Sets the padding of the Chip.
|
|
94
|
-
* See [Chip Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/chip/appearance#size).
|
|
95
|
-
*
|
|
96
|
-
* @default 'medium'
|
|
94
|
+
* See [Chip Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/chip/appearance#size). The default value is set by the Kendo theme.
|
|
97
95
|
*/
|
|
98
96
|
set size(size: ChipSize);
|
|
99
97
|
get size(): ChipSize;
|
|
100
98
|
/**
|
|
101
99
|
* Sets the border radius of the Chip.
|
|
102
|
-
* See [Chip Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/chip/appearance#roundness).
|
|
103
|
-
*
|
|
104
|
-
* @default 'medium'
|
|
100
|
+
* See [Chip Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/chip/appearance#roundness). The default value is set by the Kendo theme.
|
|
105
101
|
*/
|
|
106
102
|
set rounded(rounded: ChipRounded);
|
|
107
103
|
get rounded(): ChipRounded;
|
|
108
104
|
/**
|
|
109
105
|
* Sets the background and border styles of the Chip.
|
|
110
|
-
* See [Chip Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/chip/appearance#fill-mode).
|
|
111
|
-
*
|
|
112
|
-
* @default 'solid'
|
|
106
|
+
* See [Chip Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/chip/appearance#fill-mode). The default value is set by the Kendo theme.
|
|
113
107
|
*/
|
|
114
108
|
set fillMode(fillMode: ChipFillMode);
|
|
115
109
|
get fillMode(): ChipFillMode;
|
|
116
110
|
/**
|
|
117
111
|
* Sets a predefined theme color for the Chip.
|
|
118
112
|
* The theme color applies as a background and border color and adjusts the text color.
|
|
119
|
-
* See [Chip Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/chip/appearance#theme-colors).
|
|
120
|
-
*
|
|
121
|
-
* @default 'base'
|
|
113
|
+
* See [Chip Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/chip/appearance#theme-colors). The default value is set by the Kendo theme.
|
|
122
114
|
*/
|
|
123
115
|
set themeColor(themeColor: ChipThemeColor);
|
|
124
116
|
get themeColor(): ChipThemeColor;
|
|
@@ -75,24 +75,20 @@ export declare class DropDownButtonComponent extends ListButton implements After
|
|
|
75
75
|
set data(data: any);
|
|
76
76
|
get data(): any;
|
|
77
77
|
/**
|
|
78
|
-
* Specifies the padding of the DropDownButton. See [DropDownButton Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/dropdownbutton/appearance#size).
|
|
79
|
-
* @default 'medium'
|
|
78
|
+
* Specifies the padding of the DropDownButton. See [DropDownButton Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/dropdownbutton/appearance#size). The default value is set by the Kendo theme.
|
|
80
79
|
*/
|
|
81
80
|
size: ButtonSize;
|
|
82
81
|
/**
|
|
83
|
-
* Specifies the border radius of the DropDownButton. See [DropDownButton Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/dropdownbutton/appearance#roundness).
|
|
84
|
-
* @default 'medium'
|
|
82
|
+
* Specifies the border radius of the DropDownButton. See [DropDownButton Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/dropdownbutton/appearance#roundness). The default value is set by the Kendo theme.
|
|
85
83
|
*/
|
|
86
84
|
rounded: ButtonRounded;
|
|
87
85
|
/**
|
|
88
|
-
* Specifies the background and border styles of the DropDownButton. See [DropDownButton Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/dropdownbutton/appearance#fill-mode).
|
|
89
|
-
* @default 'solid'
|
|
86
|
+
* Specifies the background and border styles of the DropDownButton. See [DropDownButton Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/dropdownbutton/appearance#fill-mode). The default value is set by the Kendo theme.
|
|
90
87
|
*/
|
|
91
88
|
set fillMode(fillMode: ButtonFillMode);
|
|
92
89
|
get fillMode(): ButtonFillMode;
|
|
93
90
|
/**
|
|
94
91
|
* Specifies predefined theme colors for the DropDownButton. See [DropDownButton Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/dropdownbutton/appearance#theme-colors).
|
|
95
|
-
* @default 'base'
|
|
96
92
|
*/
|
|
97
93
|
themeColor: ButtonThemeColor;
|
|
98
94
|
/**
|
|
@@ -46,7 +46,7 @@ const packageMetadata = {
|
|
|
46
46
|
productCode: 'KENDOUIANGULAR',
|
|
47
47
|
productCodes: ['KENDOUIANGULAR'],
|
|
48
48
|
publishDate: 0,
|
|
49
|
-
version: '23.0.0-develop.
|
|
49
|
+
version: '23.0.0-develop.6',
|
|
50
50
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
51
51
|
};
|
|
52
52
|
|
|
@@ -276,9 +276,7 @@ class ButtonComponent {
|
|
|
276
276
|
}
|
|
277
277
|
/**
|
|
278
278
|
* Sets the padding of the Button.
|
|
279
|
-
* See [Button Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/button/appearance#size).
|
|
280
|
-
*
|
|
281
|
-
* @default 'medium'
|
|
279
|
+
* See [Button Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/button/appearance#size). The default value is set by the Kendo theme.
|
|
282
280
|
*/
|
|
283
281
|
set size(size) {
|
|
284
282
|
this.handleClasses(size, 'size');
|
|
@@ -289,9 +287,7 @@ class ButtonComponent {
|
|
|
289
287
|
}
|
|
290
288
|
/**
|
|
291
289
|
* Sets the border radius of the Button.
|
|
292
|
-
* See [Button Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/button/appearance#roundness).
|
|
293
|
-
*
|
|
294
|
-
* @default 'medium'
|
|
290
|
+
* See [Button Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/button/appearance#roundness). The default value is set by the Kendo theme.
|
|
295
291
|
*/
|
|
296
292
|
set rounded(rounded) {
|
|
297
293
|
this.handleClasses(rounded, 'rounded');
|
|
@@ -302,9 +298,7 @@ class ButtonComponent {
|
|
|
302
298
|
}
|
|
303
299
|
/**
|
|
304
300
|
* Sets the background and border styles of the Button.
|
|
305
|
-
* See [Button Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/button/appearance#fill-mode).
|
|
306
|
-
*
|
|
307
|
-
* @default 'solid'
|
|
301
|
+
* See [Button Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/button/appearance#fill-mode). The default value is set by the Kendo theme.
|
|
308
302
|
*/
|
|
309
303
|
set fillMode(fillMode) {
|
|
310
304
|
this.handleClasses(fillMode, 'fillMode');
|
|
@@ -316,9 +310,7 @@ class ButtonComponent {
|
|
|
316
310
|
/**
|
|
317
311
|
* Sets a predefined theme color for the Button.
|
|
318
312
|
* The theme color applies as a background and border color and adjusts the text color.
|
|
319
|
-
* See [Button Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/button/appearance#theme-colors).
|
|
320
|
-
*
|
|
321
|
-
* @default 'base'
|
|
313
|
+
* See [Button Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/button/appearance#theme-colors). The default value is set by the Kendo theme.
|
|
322
314
|
*/
|
|
323
315
|
set themeColor(themeColor) {
|
|
324
316
|
this.handleThemeColor(themeColor);
|
|
@@ -1118,9 +1110,7 @@ class ChipComponent {
|
|
|
1118
1110
|
disabled = false;
|
|
1119
1111
|
/**
|
|
1120
1112
|
* Sets the padding of the Chip.
|
|
1121
|
-
* See [Chip Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/chip/appearance#size).
|
|
1122
|
-
*
|
|
1123
|
-
* @default 'medium'
|
|
1113
|
+
* See [Chip Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/chip/appearance#size). The default value is set by the Kendo theme.
|
|
1124
1114
|
*/
|
|
1125
1115
|
set size(size) {
|
|
1126
1116
|
!this.sizeIsSet && (this.sizeIsSet = true);
|
|
@@ -1132,9 +1122,7 @@ class ChipComponent {
|
|
|
1132
1122
|
}
|
|
1133
1123
|
/**
|
|
1134
1124
|
* Sets the border radius of the Chip.
|
|
1135
|
-
* See [Chip Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/chip/appearance#roundness).
|
|
1136
|
-
*
|
|
1137
|
-
* @default 'medium'
|
|
1125
|
+
* See [Chip Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/chip/appearance#roundness). The default value is set by the Kendo theme.
|
|
1138
1126
|
*/
|
|
1139
1127
|
set rounded(rounded) {
|
|
1140
1128
|
this.handleClasses(rounded, 'rounded');
|
|
@@ -1145,9 +1133,7 @@ class ChipComponent {
|
|
|
1145
1133
|
}
|
|
1146
1134
|
/**
|
|
1147
1135
|
* Sets the background and border styles of the Chip.
|
|
1148
|
-
* See [Chip Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/chip/appearance#fill-mode).
|
|
1149
|
-
*
|
|
1150
|
-
* @default 'solid'
|
|
1136
|
+
* See [Chip Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/chip/appearance#fill-mode). The default value is set by the Kendo theme.
|
|
1151
1137
|
*/
|
|
1152
1138
|
set fillMode(fillMode) {
|
|
1153
1139
|
this.handleClasses(fillMode, 'fillMode');
|
|
@@ -1159,9 +1145,7 @@ class ChipComponent {
|
|
|
1159
1145
|
/**
|
|
1160
1146
|
* Sets a predefined theme color for the Chip.
|
|
1161
1147
|
* The theme color applies as a background and border color and adjusts the text color.
|
|
1162
|
-
* See [Chip Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/chip/appearance#theme-colors).
|
|
1163
|
-
*
|
|
1164
|
-
* @default 'base'
|
|
1148
|
+
* See [Chip Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/chip/appearance#theme-colors). The default value is set by the Kendo theme.
|
|
1165
1149
|
*/
|
|
1166
1150
|
set themeColor(themeColor) {
|
|
1167
1151
|
this.handleThemeColor(themeColor);
|
|
@@ -1626,9 +1610,7 @@ class ChipListComponent {
|
|
|
1626
1610
|
selection = 'none';
|
|
1627
1611
|
/**
|
|
1628
1612
|
* Sets the gap between the Chips in the ChipList.
|
|
1629
|
-
* See [ChipList Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/chiplist/appearance#size).
|
|
1630
|
-
*
|
|
1631
|
-
* @default 'medium'
|
|
1613
|
+
* See [ChipList Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/chiplist/appearance#size). The default value is set by the Kendo theme.
|
|
1632
1614
|
*/
|
|
1633
1615
|
set size(size) {
|
|
1634
1616
|
this.handleClasses(size, 'size');
|
|
@@ -2887,18 +2869,15 @@ class DropDownButtonComponent extends ListButton {
|
|
|
2887
2869
|
return this._data;
|
|
2888
2870
|
}
|
|
2889
2871
|
/**
|
|
2890
|
-
* Specifies the padding of the DropDownButton. See [DropDownButton Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/dropdownbutton/appearance#size).
|
|
2891
|
-
* @default 'medium'
|
|
2872
|
+
* Specifies the padding of the DropDownButton. See [DropDownButton Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/dropdownbutton/appearance#size). The default value is set by the Kendo theme.
|
|
2892
2873
|
*/
|
|
2893
2874
|
size = undefined;
|
|
2894
2875
|
/**
|
|
2895
|
-
* Specifies the border radius of the DropDownButton. See [DropDownButton Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/dropdownbutton/appearance#roundness).
|
|
2896
|
-
* @default 'medium'
|
|
2876
|
+
* Specifies the border radius of the DropDownButton. See [DropDownButton Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/dropdownbutton/appearance#roundness). The default value is set by the Kendo theme.
|
|
2897
2877
|
*/
|
|
2898
2878
|
rounded = undefined;
|
|
2899
2879
|
/**
|
|
2900
|
-
* Specifies the background and border styles of the DropDownButton. See [DropDownButton Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/dropdownbutton/appearance#fill-mode).
|
|
2901
|
-
* @default 'solid'
|
|
2880
|
+
* Specifies the background and border styles of the DropDownButton. See [DropDownButton Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/dropdownbutton/appearance#fill-mode). The default value is set by the Kendo theme.
|
|
2902
2881
|
*/
|
|
2903
2882
|
set fillMode(fillMode) {
|
|
2904
2883
|
this._fillMode = fillMode === 'clear' ? 'flat' : fillMode;
|
|
@@ -2908,7 +2887,6 @@ class DropDownButtonComponent extends ListButton {
|
|
|
2908
2887
|
}
|
|
2909
2888
|
/**
|
|
2910
2889
|
* Specifies predefined theme colors for the DropDownButton. See [DropDownButton Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/dropdownbutton/appearance#theme-colors).
|
|
2911
|
-
* @default 'base'
|
|
2912
2890
|
*/
|
|
2913
2891
|
themeColor = undefined;
|
|
2914
2892
|
/**
|
|
@@ -3698,8 +3676,7 @@ class FloatingActionButtonComponent {
|
|
|
3698
3676
|
dialItemTemplate;
|
|
3699
3677
|
fabTemplate;
|
|
3700
3678
|
/**
|
|
3701
|
-
* Specifies the theme color of the FloatingActionButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/appearance#theme-colors)).
|
|
3702
|
-
* @default "primary"
|
|
3679
|
+
* Specifies the theme color of the FloatingActionButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/appearance#theme-colors)). The default value is set by the Kendo theme.
|
|
3703
3680
|
*/
|
|
3704
3681
|
set themeColor(themeColor) {
|
|
3705
3682
|
this.handleClasses(themeColor, 'themeColor');
|
|
@@ -3709,8 +3686,7 @@ class FloatingActionButtonComponent {
|
|
|
3709
3686
|
return this._themeColor;
|
|
3710
3687
|
}
|
|
3711
3688
|
/**
|
|
3712
|
-
* Specifies the size of the FloatingActionButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/appearance#size)).
|
|
3713
|
-
* @default "medium"
|
|
3689
|
+
* Specifies the size of the FloatingActionButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/appearance#size)). The default value is set by the Kendo theme.
|
|
3714
3690
|
*/
|
|
3715
3691
|
set size(size) {
|
|
3716
3692
|
this.handleClasses(size, 'size');
|
|
@@ -3720,9 +3696,7 @@ class FloatingActionButtonComponent {
|
|
|
3720
3696
|
return this._size;
|
|
3721
3697
|
}
|
|
3722
3698
|
/**
|
|
3723
|
-
* Specifies the border radius of the FloatingActionButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/appearance#roundness)).
|
|
3724
|
-
*
|
|
3725
|
-
* @default "full"
|
|
3699
|
+
* Specifies the border radius of the FloatingActionButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/appearance#roundness)). The default value is set by the Kendo theme.
|
|
3726
3700
|
*/
|
|
3727
3701
|
set rounded(rounded) {
|
|
3728
3702
|
this.handleClasses(rounded, 'rounded');
|
|
@@ -4729,15 +4703,11 @@ class SplitButtonComponent extends ListButton {
|
|
|
4729
4703
|
*/
|
|
4730
4704
|
imageUrl = '';
|
|
4731
4705
|
/**
|
|
4732
|
-
* Configures the padding of the SplitButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/api/splitbuttoncomponent#size)).
|
|
4733
|
-
*
|
|
4734
|
-
* @default 'medium'
|
|
4706
|
+
* Configures the padding of the SplitButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/api/splitbuttoncomponent#size)). The default value is set by the Kendo theme.
|
|
4735
4707
|
*/
|
|
4736
4708
|
size = undefined;
|
|
4737
4709
|
/**
|
|
4738
|
-
* Configures the border radius of the SplitButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/api/splitbuttoncomponent#rounded)).
|
|
4739
|
-
*
|
|
4740
|
-
* @default 'medium'
|
|
4710
|
+
* Configures the border radius of the SplitButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/api/splitbuttoncomponent#rounded)). The default value is set by the Kendo theme.
|
|
4741
4711
|
*/
|
|
4742
4712
|
set rounded(rounded) {
|
|
4743
4713
|
this.handleClasses(rounded, 'rounded');
|
|
@@ -4747,9 +4717,7 @@ class SplitButtonComponent extends ListButton {
|
|
|
4747
4717
|
return this._rounded;
|
|
4748
4718
|
}
|
|
4749
4719
|
/**
|
|
4750
|
-
* Configures the background and border styles of the SplitButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/api/splitbuttoncomponent#fillmode)).
|
|
4751
|
-
*
|
|
4752
|
-
* @default 'solid'
|
|
4720
|
+
* Configures the background and border styles of the SplitButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/api/splitbuttoncomponent#fillmode)). The default value is set by the Kendo theme.
|
|
4753
4721
|
*/
|
|
4754
4722
|
set fillMode(fillMode) {
|
|
4755
4723
|
this._fillMode = fillMode === 'clear' ? 'flat' : fillMode;
|
|
@@ -4758,9 +4726,7 @@ class SplitButtonComponent extends ListButton {
|
|
|
4758
4726
|
return this._fillMode;
|
|
4759
4727
|
}
|
|
4760
4728
|
/**
|
|
4761
|
-
* Configures the theme color of the SplitButton. The theme color applies to the background, border, and text ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/api/splitbuttoncomponent#themecolor)).
|
|
4762
|
-
*
|
|
4763
|
-
* @default 'base'
|
|
4729
|
+
* Configures the theme color of the SplitButton. The theme color applies to the background, border, and text ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/api/splitbuttoncomponent#themecolor)). The default value is set by the Kendo theme.
|
|
4764
4730
|
*/
|
|
4765
4731
|
themeColor = undefined;
|
|
4766
4732
|
/**
|
|
@@ -5421,9 +5387,8 @@ class SpeechToTextButtonComponent {
|
|
|
5421
5387
|
return this.isDisabled;
|
|
5422
5388
|
}
|
|
5423
5389
|
/**
|
|
5424
|
-
* Sets the padding of the SpeechToTextButton.
|
|
5390
|
+
* Sets the padding of the SpeechToTextButton. The default value is set by the Kendo theme.
|
|
5425
5391
|
*
|
|
5426
|
-
* @default 'medium'
|
|
5427
5392
|
*/
|
|
5428
5393
|
set size(size) {
|
|
5429
5394
|
this.handleClasses(size, 'size');
|
|
@@ -5433,9 +5398,8 @@ class SpeechToTextButtonComponent {
|
|
|
5433
5398
|
return this._size;
|
|
5434
5399
|
}
|
|
5435
5400
|
/**
|
|
5436
|
-
* Sets the border radius of the SpeechToTextButton.
|
|
5401
|
+
* Sets the border radius of the SpeechToTextButton. The default value is set by the Kendo theme.
|
|
5437
5402
|
*
|
|
5438
|
-
* @default 'medium'
|
|
5439
5403
|
*/
|
|
5440
5404
|
set rounded(rounded) {
|
|
5441
5405
|
this.handleClasses(rounded, 'rounded');
|
|
@@ -5445,9 +5409,7 @@ class SpeechToTextButtonComponent {
|
|
|
5445
5409
|
return this._rounded;
|
|
5446
5410
|
}
|
|
5447
5411
|
/**
|
|
5448
|
-
* Sets the background and border styles of the SpeechToTextButton.
|
|
5449
|
-
*
|
|
5450
|
-
* @default 'solid'
|
|
5412
|
+
* Sets the background and border styles of the SpeechToTextButton. The default value is set by the Kendo theme.
|
|
5451
5413
|
*/
|
|
5452
5414
|
set fillMode(fillMode) {
|
|
5453
5415
|
this.handleClasses(fillMode, 'fillMode');
|
|
@@ -5457,10 +5419,9 @@ class SpeechToTextButtonComponent {
|
|
|
5457
5419
|
return this._fillMode;
|
|
5458
5420
|
}
|
|
5459
5421
|
/**
|
|
5460
|
-
* Sets a predefined theme color for the SpeechToTextButton.
|
|
5461
|
-
* The theme color applies as a background and border color and adjusts the text color.
|
|
5422
|
+
* Sets a predefined theme color for the SpeechToTextButton. The default value is set by the Kendo theme.
|
|
5423
|
+
* The theme color applies as a background and border color and adjusts the text color for contrast.
|
|
5462
5424
|
*
|
|
5463
|
-
* @default 'base'
|
|
5464
5425
|
*/
|
|
5465
5426
|
set themeColor(themeColor) {
|
|
5466
5427
|
this.handleThemeColor(themeColor);
|
|
@@ -52,21 +52,17 @@ export declare class FloatingActionButtonComponent implements AfterViewInit, OnD
|
|
|
52
52
|
dialItemTemplate: DialItemTemplateDirective;
|
|
53
53
|
fabTemplate: FloatingActionButtonTemplateDirective;
|
|
54
54
|
/**
|
|
55
|
-
* Specifies the theme color of the FloatingActionButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/appearance#theme-colors)).
|
|
56
|
-
* @default "primary"
|
|
55
|
+
* Specifies the theme color of the FloatingActionButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/appearance#theme-colors)). The default value is set by the Kendo theme.
|
|
57
56
|
*/
|
|
58
57
|
set themeColor(themeColor: ButtonThemeColor);
|
|
59
58
|
get themeColor(): ButtonThemeColor;
|
|
60
59
|
/**
|
|
61
|
-
* Specifies the size of the FloatingActionButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/appearance#size)).
|
|
62
|
-
* @default "medium"
|
|
60
|
+
* Specifies the size of the FloatingActionButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/appearance#size)). The default value is set by the Kendo theme.
|
|
63
61
|
*/
|
|
64
62
|
set size(size: ButtonSize);
|
|
65
63
|
get size(): ButtonSize;
|
|
66
64
|
/**
|
|
67
|
-
* Specifies the border radius of the FloatingActionButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/appearance#roundness)).
|
|
68
|
-
*
|
|
69
|
-
* @default "full"
|
|
65
|
+
* Specifies the border radius of the FloatingActionButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/appearance#roundness)). The default value is set by the Kendo theme.
|
|
70
66
|
*/
|
|
71
67
|
set rounded(rounded: ButtonRounded);
|
|
72
68
|
get rounded(): ButtonRounded;
|
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": 1770369243,
|
|
11
|
+
"version": "23.0.0-develop.6",
|
|
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-buttons",
|
|
3
|
-
"version": "23.0.0-develop.
|
|
3
|
+
"version": "23.0.0-develop.6",
|
|
4
4
|
"description": "Buttons Package for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"package": {
|
|
22
22
|
"productName": "Kendo UI for Angular",
|
|
23
23
|
"productCode": "KENDOUIANGULAR",
|
|
24
|
-
"publishDate":
|
|
24
|
+
"publishDate": 1770369243,
|
|
25
25
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
26
26
|
}
|
|
27
27
|
},
|
|
@@ -31,15 +31,15 @@
|
|
|
31
31
|
"@angular/core": "19 - 21",
|
|
32
32
|
"@angular/platform-browser": "19 - 21",
|
|
33
33
|
"@progress/kendo-licensing": "^1.10.0",
|
|
34
|
-
"@progress/kendo-angular-common": "23.0.0-develop.
|
|
35
|
-
"@progress/kendo-angular-l10n": "23.0.0-develop.
|
|
36
|
-
"@progress/kendo-angular-popup": "23.0.0-develop.
|
|
37
|
-
"@progress/kendo-angular-icons": "23.0.0-develop.
|
|
34
|
+
"@progress/kendo-angular-common": "23.0.0-develop.6",
|
|
35
|
+
"@progress/kendo-angular-l10n": "23.0.0-develop.6",
|
|
36
|
+
"@progress/kendo-angular-popup": "23.0.0-develop.6",
|
|
37
|
+
"@progress/kendo-angular-icons": "23.0.0-develop.6",
|
|
38
38
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"tslib": "^2.3.1",
|
|
42
|
-
"@progress/kendo-angular-schematics": "23.0.0-develop.
|
|
42
|
+
"@progress/kendo-angular-schematics": "23.0.0-develop.6",
|
|
43
43
|
"@progress/kendo-common": "^1.0.1",
|
|
44
44
|
"@progress/kendo-webspeech-common": "1.0.1"
|
|
45
45
|
},
|
|
@@ -30,31 +30,26 @@ export declare class SpeechToTextButtonComponent implements OnInit, OnDestroy {
|
|
|
30
30
|
set disabled(disabled: boolean);
|
|
31
31
|
get disabled(): boolean;
|
|
32
32
|
/**
|
|
33
|
-
* Sets the padding of the SpeechToTextButton.
|
|
33
|
+
* Sets the padding of the SpeechToTextButton. The default value is set by the Kendo theme.
|
|
34
34
|
*
|
|
35
|
-
* @default 'medium'
|
|
36
35
|
*/
|
|
37
36
|
set size(size: ButtonSize);
|
|
38
37
|
get size(): ButtonSize;
|
|
39
38
|
/**
|
|
40
|
-
* Sets the border radius of the SpeechToTextButton.
|
|
39
|
+
* Sets the border radius of the SpeechToTextButton. The default value is set by the Kendo theme.
|
|
41
40
|
*
|
|
42
|
-
* @default 'medium'
|
|
43
41
|
*/
|
|
44
42
|
set rounded(rounded: ButtonRounded);
|
|
45
43
|
get rounded(): ButtonRounded;
|
|
46
44
|
/**
|
|
47
|
-
* Sets the background and border styles of the SpeechToTextButton.
|
|
48
|
-
*
|
|
49
|
-
* @default 'solid'
|
|
45
|
+
* Sets the background and border styles of the SpeechToTextButton. The default value is set by the Kendo theme.
|
|
50
46
|
*/
|
|
51
47
|
set fillMode(fillMode: ButtonFillMode);
|
|
52
48
|
get fillMode(): ButtonFillMode;
|
|
53
49
|
/**
|
|
54
|
-
* Sets a predefined theme color for the SpeechToTextButton.
|
|
55
|
-
* The theme color applies as a background and border color and adjusts the text color.
|
|
50
|
+
* Sets a predefined theme color for the SpeechToTextButton. The default value is set by the Kendo theme.
|
|
51
|
+
* The theme color applies as a background and border color and adjusts the text color for contrast.
|
|
56
52
|
*
|
|
57
|
-
* @default 'base'
|
|
58
53
|
*/
|
|
59
54
|
set themeColor(themeColor: ButtonThemeColor);
|
|
60
55
|
get themeColor(): ButtonThemeColor;
|
|
@@ -72,29 +72,21 @@ export declare class SplitButtonComponent extends ListButton implements AfterVie
|
|
|
72
72
|
*/
|
|
73
73
|
imageUrl: string;
|
|
74
74
|
/**
|
|
75
|
-
* Configures the padding of the SplitButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/api/splitbuttoncomponent#size)).
|
|
76
|
-
*
|
|
77
|
-
* @default 'medium'
|
|
75
|
+
* Configures the padding of the SplitButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/api/splitbuttoncomponent#size)). The default value is set by the Kendo theme.
|
|
78
76
|
*/
|
|
79
77
|
size: ButtonSize;
|
|
80
78
|
/**
|
|
81
|
-
* Configures the border radius of the SplitButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/api/splitbuttoncomponent#rounded)).
|
|
82
|
-
*
|
|
83
|
-
* @default 'medium'
|
|
79
|
+
* Configures the border radius of the SplitButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/api/splitbuttoncomponent#rounded)). The default value is set by the Kendo theme.
|
|
84
80
|
*/
|
|
85
81
|
set rounded(rounded: ButtonRounded);
|
|
86
82
|
get rounded(): ButtonRounded;
|
|
87
83
|
/**
|
|
88
|
-
* Configures the background and border styles of the SplitButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/api/splitbuttoncomponent#fillmode)).
|
|
89
|
-
*
|
|
90
|
-
* @default 'solid'
|
|
84
|
+
* Configures the background and border styles of the SplitButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/api/splitbuttoncomponent#fillmode)). The default value is set by the Kendo theme.
|
|
91
85
|
*/
|
|
92
86
|
set fillMode(fillMode: ButtonFillMode);
|
|
93
87
|
get fillMode(): ButtonFillMode;
|
|
94
88
|
/**
|
|
95
|
-
* Configures the theme color of the SplitButton. The theme color applies to the background, border, and text ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/api/splitbuttoncomponent#themecolor)).
|
|
96
|
-
*
|
|
97
|
-
* @default 'base'
|
|
89
|
+
* Configures the theme color of the SplitButton. The theme color applies to the background, border, and text ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/api/splitbuttoncomponent#themecolor)). The default value is set by the Kendo theme.
|
|
98
90
|
*/
|
|
99
91
|
themeColor: ButtonThemeColor;
|
|
100
92
|
/**
|