@progress/kendo-angular-buttons 22.1.0-develop.9 → 23.0.0-develop.2
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 +6 -7
- package/button/selection-settings.d.ts +1 -1
- package/chip/chip-list.component.d.ts +1 -1
- package/chip/chip.component.d.ts +7 -7
- package/common/models/fillmode.d.ts +2 -2
- package/common/models/size.d.ts +2 -2
- package/common/models/theme-color.d.ts +3 -5
- package/dropdownbutton/dropdownbutton.component.d.ts +5 -5
- package/fesm2022/progress-kendo-angular-buttons.mjs +213 -264
- package/floatingactionbutton/floatingactionbutton.component.d.ts +10 -10
- package/floatingactionbutton/models/align.d.ts +1 -1
- package/floatingactionbutton/models/item-animation.interface.d.ts +1 -1
- package/floatingactionbutton/models/item-click.event.d.ts +1 -1
- package/floatingactionbutton/models/item.interface.d.ts +2 -2
- package/floatingactionbutton/models/offset.d.ts +1 -1
- package/floatingactionbutton/models/position-mode.d.ts +1 -1
- package/floatingactionbutton/templates/dial-item-template.directive.d.ts +1 -1
- package/floatingactionbutton/templates/fab-template.directive.d.ts +1 -1
- package/listbutton/button-item-template.directive.d.ts +1 -1
- package/listbutton/list-item-model.d.ts +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +7 -7
- package/speechtotextbutton/models/speechtotextbutton-settings.d.ts +1 -1
- package/speechtotextbutton/speechtotextbutton.component.d.ts +0 -1
- package/splitbutton/localization/custom-messages.component.d.ts +1 -1
- package/splitbutton/splitbutton.component.d.ts +9 -9
- package/util.d.ts +2 -2
|
@@ -52,19 +52,19 @@ 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](
|
|
55
|
+
* Specifies the theme color of the FloatingActionButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/appearance#theme-colors)).
|
|
56
56
|
* @default "primary"
|
|
57
57
|
*/
|
|
58
58
|
set themeColor(themeColor: ButtonThemeColor);
|
|
59
59
|
get themeColor(): ButtonThemeColor;
|
|
60
60
|
/**
|
|
61
|
-
* Specifies the size of the FloatingActionButton ([see example](
|
|
61
|
+
* Specifies the size of the FloatingActionButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/appearance#size)).
|
|
62
62
|
* @default "medium"
|
|
63
63
|
*/
|
|
64
64
|
set size(size: ButtonSize);
|
|
65
65
|
get size(): ButtonSize;
|
|
66
66
|
/**
|
|
67
|
-
* Specifies the border radius of the FloatingActionButton ([see example](
|
|
67
|
+
* Specifies the border radius of the FloatingActionButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/appearance#roundness)).
|
|
68
68
|
*
|
|
69
69
|
* @default "full"
|
|
70
70
|
*/
|
|
@@ -77,19 +77,19 @@ export declare class FloatingActionButtonComponent implements AfterViewInit, OnD
|
|
|
77
77
|
set disabled(disabled: boolean);
|
|
78
78
|
get disabled(): boolean;
|
|
79
79
|
/**
|
|
80
|
-
* Specifies the alignment of the FloatingActionButton ([see example](
|
|
80
|
+
* Specifies the alignment of the FloatingActionButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/positioning#alignment)).
|
|
81
81
|
* @default { horizontal: 'end', vertical: 'top' }
|
|
82
82
|
*/
|
|
83
83
|
set align(align: FabAlign);
|
|
84
84
|
get align(): FabAlign;
|
|
85
85
|
/**
|
|
86
|
-
* Specifies the offset position of the FloatingActionButton ([see example](
|
|
86
|
+
* Specifies the offset position of the FloatingActionButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/positioning#offset)).
|
|
87
87
|
* @default { x: '16px', y: '16px' }
|
|
88
88
|
*/
|
|
89
89
|
set offset(offset: FabOffset);
|
|
90
90
|
get offset(): FabOffset;
|
|
91
91
|
/**
|
|
92
|
-
* Specifies the position mode of the FloatingActionButton ([see example](
|
|
92
|
+
* Specifies the position mode of the FloatingActionButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/positioning#position-mode)).
|
|
93
93
|
* @default "fixed"
|
|
94
94
|
*/
|
|
95
95
|
positionMode: FabPositionMode;
|
|
@@ -98,7 +98,7 @@ export declare class FloatingActionButtonComponent implements AfterViewInit, OnD
|
|
|
98
98
|
*/
|
|
99
99
|
icon: string;
|
|
100
100
|
/**
|
|
101
|
-
* Defines an [`SVGIcon`](
|
|
101
|
+
* Defines an [`SVGIcon`](https://www.telerik.com/kendo-angular-ui/components/icons/api/svgicon) to be rendered within the FloatingActionButton.
|
|
102
102
|
*/
|
|
103
103
|
svgIcon: SVGIcon;
|
|
104
104
|
/**
|
|
@@ -147,12 +147,12 @@ export declare class FloatingActionButtonComponent implements AfterViewInit, OnD
|
|
|
147
147
|
dialItemClick: EventEmitter<DialItemClickEvent>;
|
|
148
148
|
/**
|
|
149
149
|
* Fires when the popup is about to open. This event is preventable
|
|
150
|
-
* ([more information and example](
|
|
150
|
+
* ([more information and example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/events)).
|
|
151
151
|
*/
|
|
152
152
|
open: EventEmitter<PreventableEvent>;
|
|
153
153
|
/**
|
|
154
154
|
* Fires when the popup is about to close. This event is preventable
|
|
155
|
-
* ([more information and example](
|
|
155
|
+
* ([more information and example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/events)).
|
|
156
156
|
*/
|
|
157
157
|
close: EventEmitter<PreventableEvent>;
|
|
158
158
|
/**
|
|
@@ -199,7 +199,7 @@ export declare class FloatingActionButtonComponent implements AfterViewInit, OnD
|
|
|
199
199
|
* Toggles the visibility of the FloatingActionButton dial items popup.
|
|
200
200
|
*
|
|
201
201
|
* If you use the `toggleDial` method to open or close the dial items,
|
|
202
|
-
* the `open` and `close` events do not fire ([more information and examples](
|
|
202
|
+
* the `open` and `close` events do not fire ([more information and examples](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/open_state)).
|
|
203
203
|
*
|
|
204
204
|
* @param open - The state of dial items popup.
|
|
205
205
|
*/
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/**
|
|
6
6
|
* Specifies the horizontal and vertical alignment of the FloatingActionButton relative to the viewport or parent element
|
|
7
|
-
* ([see example](
|
|
7
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/positioning#alignment)).
|
|
8
8
|
*
|
|
9
9
|
* @example
|
|
10
10
|
* ```typescript
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/**
|
|
6
6
|
* Specifies the animation settings for the dial items of the FloatingActionButton
|
|
7
|
-
* ([see example](
|
|
7
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/dial_items#animation)).
|
|
8
8
|
*
|
|
9
9
|
* @example
|
|
10
10
|
* ```typescript
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/**
|
|
6
6
|
* Arguments for the `click` event of a dial item
|
|
7
|
-
* ([see example](
|
|
7
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/events)).
|
|
8
8
|
*
|
|
9
9
|
* @example
|
|
10
10
|
* ```typescript
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { SVGIcon } from "@progress/kendo-svg-icons";
|
|
6
6
|
/**
|
|
7
7
|
* An interface for the dial items of the FloatingActionButton
|
|
8
|
-
* ([see example](
|
|
8
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/dial_items#dial-items)).
|
|
9
9
|
*/
|
|
10
10
|
export interface DialItem {
|
|
11
11
|
/**
|
|
@@ -33,7 +33,7 @@ export interface DialItem {
|
|
|
33
33
|
*/
|
|
34
34
|
iconClass?: string;
|
|
35
35
|
/**
|
|
36
|
-
* Defines an [`SVGIcon`](
|
|
36
|
+
* Defines an [`SVGIcon`](https://www.telerik.com/kendo-angular-ui/components/icons/api/svgicon) to render within the dial item.
|
|
37
37
|
*/
|
|
38
38
|
svgIcon?: SVGIcon;
|
|
39
39
|
/**
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/**
|
|
6
6
|
* Specifies the horizontal and vertical offset positions of the FloatingActionButton
|
|
7
|
-
* ([see example](
|
|
7
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/positioning#offset)).
|
|
8
8
|
*
|
|
9
9
|
* @example
|
|
10
10
|
* ```typescript
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/**
|
|
6
6
|
* Specifies the `positionMode` of the FloatingActionButton
|
|
7
|
-
* ([see example](
|
|
7
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/positioning#position-mode)).
|
|
8
8
|
*
|
|
9
9
|
* The possible values are:
|
|
10
10
|
* - `absolute`—Positions the FloatingActionButton absolutely to its first positioned parent element.
|
|
@@ -7,7 +7,7 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
/**
|
|
8
8
|
* Represents a template that defines the content of a dial item.
|
|
9
9
|
* To define the template, nest an `<ng-template>` tag with the `kendoDialItemTemplate` directive inside the `<kendo-floatingactionbutton>` tag
|
|
10
|
-
*([see example](
|
|
10
|
+
*([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/templates#dial-item-template)).
|
|
11
11
|
*
|
|
12
12
|
* @example
|
|
13
13
|
* ```html
|
|
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
* Represents a template that defines the content of the FloatingActionButton.
|
|
9
9
|
* To define the template, nest an `<ng-template>` tag with the `kendoFloatingActionButtonTemplate` directive inside the `<kendo-floatingactionbutton>` tag
|
|
10
10
|
*
|
|
11
|
-
* ([see example](
|
|
11
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/templates#floatingactionbutton-template)).
|
|
12
12
|
*
|
|
13
13
|
* @example
|
|
14
14
|
* ```html
|
|
@@ -28,7 +28,7 @@ import * as i0 from "@angular/core";
|
|
|
28
28
|
* </kendo-dropdownbutton>
|
|
29
29
|
* ```
|
|
30
30
|
*
|
|
31
|
-
* For more examples, refer to the article on the [DropDownButton templates](
|
|
31
|
+
* For more examples, refer to the article on the [DropDownButton templates](https://www.telerik.com/kendo-angular-ui/components/buttons/dropdownbutton/items-and-templates).
|
|
32
32
|
*/
|
|
33
33
|
export declare class ButtonItemTemplateDirective {
|
|
34
34
|
templateRef: TemplateRef<any>;
|
|
@@ -42,7 +42,7 @@ export interface ListItemModel {
|
|
|
42
42
|
*/
|
|
43
43
|
icon?: string;
|
|
44
44
|
/**
|
|
45
|
-
* Defines an [SVGIcon](
|
|
45
|
+
* Defines an [SVGIcon](https://www.telerik.com/kendo-angular-ui/components/icons/api/svgicon) rendered next to the title.
|
|
46
46
|
*/
|
|
47
47
|
svgIcon?: SVGIcon;
|
|
48
48
|
/**
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "
|
|
10
|
+
"publishDate": 1770290082,
|
|
11
|
+
"version": "23.0.0-develop.2",
|
|
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": "
|
|
3
|
+
"version": "23.0.0-develop.2",
|
|
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": 1770290082,
|
|
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": "
|
|
35
|
-
"@progress/kendo-angular-l10n": "
|
|
36
|
-
"@progress/kendo-angular-popup": "
|
|
37
|
-
"@progress/kendo-angular-icons": "
|
|
34
|
+
"@progress/kendo-angular-common": "23.0.0-develop.2",
|
|
35
|
+
"@progress/kendo-angular-l10n": "23.0.0-develop.2",
|
|
36
|
+
"@progress/kendo-angular-popup": "23.0.0-develop.2",
|
|
37
|
+
"@progress/kendo-angular-icons": "23.0.0-develop.2",
|
|
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": "
|
|
42
|
+
"@progress/kendo-angular-schematics": "23.0.0-develop.2",
|
|
43
43
|
"@progress/kendo-common": "^1.0.1",
|
|
44
44
|
"@progress/kendo-webspeech-common": "1.0.1"
|
|
45
45
|
},
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { ButtonFillMode, ButtonRounded, ButtonSize, ButtonThemeColor } from "../../common/models";
|
|
6
6
|
import { IntegrationMode } from "./integration-mode";
|
|
7
7
|
/**
|
|
8
|
-
* Defines the settings interface for the speech-to-text functionality used in components that integrate the SpeechToTextButton component, such as the AIPrompt ([see example](
|
|
8
|
+
* Defines the settings interface for the speech-to-text functionality used in components that integrate the SpeechToTextButton component, such as the AIPrompt ([see example](https://www.telerik.com/kendo-angular-ui/components/conversational-ui/aiprompt/configuration#enabling-speech-to-text)).
|
|
9
9
|
*
|
|
10
10
|
* @example
|
|
11
11
|
* ```typescript
|
|
@@ -131,7 +131,6 @@ export declare class SpeechToTextButtonComponent implements OnInit, OnDestroy {
|
|
|
131
131
|
blur(): void;
|
|
132
132
|
ngOnInit(): void;
|
|
133
133
|
ngOnChanges(changes: any): void;
|
|
134
|
-
ngAfterViewInit(): void;
|
|
135
134
|
ngOnDestroy(): void;
|
|
136
135
|
constructor(element: ElementRef, renderer: Renderer2, localization: LocalizationService, ngZone: NgZone);
|
|
137
136
|
/**
|
|
@@ -7,7 +7,7 @@ import { Messages } from './messages';
|
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
9
|
* Represents a custom component for overriding the default SplitButton messages.
|
|
10
|
-
* ([see example](
|
|
10
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/globalization)).
|
|
11
11
|
*/
|
|
12
12
|
export declare class SplitButtonCustomMessagesComponent extends Messages {
|
|
13
13
|
protected service: LocalizationService;
|
|
@@ -52,7 +52,7 @@ export declare class SplitButtonComponent extends ListButton implements AfterVie
|
|
|
52
52
|
*/
|
|
53
53
|
text: string;
|
|
54
54
|
/**
|
|
55
|
-
* Specifies an icon to display next to the button text ([see example](
|
|
55
|
+
* Specifies an icon to display next to the button text ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/splitbutton/data-binding#arrays-of-complex-data)).
|
|
56
56
|
*/
|
|
57
57
|
icon: string;
|
|
58
58
|
/**
|
|
@@ -60,7 +60,7 @@ export declare class SplitButtonComponent extends ListButton implements AfterVie
|
|
|
60
60
|
*/
|
|
61
61
|
svgIcon: SVGIcon;
|
|
62
62
|
/**
|
|
63
|
-
* Specifies a custom CSS class for the icon displayed next to the button text ([see example](
|
|
63
|
+
* Specifies a custom CSS class for the icon displayed next to the button text ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/splitbutton/data-binding#arrays-of-complex-data)).
|
|
64
64
|
*/
|
|
65
65
|
iconClass: string;
|
|
66
66
|
/**
|
|
@@ -68,37 +68,37 @@ export declare class SplitButtonComponent extends ListButton implements AfterVie
|
|
|
68
68
|
*/
|
|
69
69
|
type: string;
|
|
70
70
|
/**
|
|
71
|
-
* Specifies the URL of an image to display next to the button text ([see example](
|
|
71
|
+
* Specifies the URL of an image to display next to the button text ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/splitbutton/data-binding#arrays-of-complex-data)).
|
|
72
72
|
*/
|
|
73
73
|
imageUrl: string;
|
|
74
74
|
/**
|
|
75
|
-
* Configures the padding of the SplitButton ([see example](
|
|
75
|
+
* Configures the padding of the SplitButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/api/splitbuttoncomponent#size)).
|
|
76
76
|
*
|
|
77
77
|
* @default 'medium'
|
|
78
78
|
*/
|
|
79
79
|
size: ButtonSize;
|
|
80
80
|
/**
|
|
81
|
-
* Configures the border radius of the SplitButton ([see example](
|
|
81
|
+
* Configures the border radius of the SplitButton ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/api/splitbuttoncomponent#rounded)).
|
|
82
82
|
*
|
|
83
83
|
* @default 'medium'
|
|
84
84
|
*/
|
|
85
85
|
set rounded(rounded: ButtonRounded);
|
|
86
86
|
get rounded(): ButtonRounded;
|
|
87
87
|
/**
|
|
88
|
-
* Configures the background and border styles of the SplitButton ([see example](
|
|
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
89
|
*
|
|
90
90
|
* @default 'solid'
|
|
91
91
|
*/
|
|
92
92
|
set fillMode(fillMode: ButtonFillMode);
|
|
93
93
|
get fillMode(): ButtonFillMode;
|
|
94
94
|
/**
|
|
95
|
-
* Configures the theme color of the SplitButton. The theme color applies to the background, border, and text ([see example](
|
|
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
96
|
*
|
|
97
97
|
* @default 'base'
|
|
98
98
|
*/
|
|
99
99
|
themeColor: ButtonThemeColor;
|
|
100
100
|
/**
|
|
101
|
-
* Disables the SplitButton when set to `true` ([see example](
|
|
101
|
+
* Disables the SplitButton when set to `true` ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/splitbutton/data-binding#arrays-of-complex-data)).
|
|
102
102
|
*/
|
|
103
103
|
set disabled(value: boolean);
|
|
104
104
|
get disabled(): boolean;
|
|
@@ -130,7 +130,7 @@ export declare class SplitButtonComponent extends ListButton implements AfterVie
|
|
|
130
130
|
*/
|
|
131
131
|
arrowButtonIcon: string;
|
|
132
132
|
/**
|
|
133
|
-
* Specifies the [`SVGIcon`](
|
|
133
|
+
* Specifies the [`SVGIcon`](https://www.telerik.com/kendo-angular-ui/components/icons/api/svgiconcomponent) displayed on the button that opens the popup.
|
|
134
134
|
*/
|
|
135
135
|
arrowButtonSvgIcon: SVGIcon;
|
|
136
136
|
/**
|
package/util.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ export declare const SIZES: {
|
|
|
27
27
|
/**
|
|
28
28
|
* @hidden
|
|
29
29
|
*
|
|
30
|
-
* Returns the styling classes to be added and removed
|
|
30
|
+
* Returns the styling classes to be added and removed.
|
|
31
31
|
*/
|
|
32
32
|
export declare const getStylingClasses: (componentType: any, stylingOption: string, previousValue: any, newValue: any) => ButtonStylingClasses;
|
|
33
33
|
/**
|
|
@@ -35,7 +35,7 @@ export declare const getStylingClasses: (componentType: any, stylingOption: stri
|
|
|
35
35
|
*
|
|
36
36
|
* Returns the themeColor classes to be added and removed
|
|
37
37
|
*/
|
|
38
|
-
export declare const getThemeColorClasses: (componentType: any,
|
|
38
|
+
export declare const getThemeColorClasses: (componentType: any, previousValue: any, newValue: any) => ButtonStylingClasses;
|
|
39
39
|
/**
|
|
40
40
|
* @hidden
|
|
41
41
|
*/
|