@progress/kendo-angular-buttons 22.1.0-develop.9 → 23.0.0-develop.10

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.
Files changed (37) hide show
  1. package/README.md +2 -1
  2. package/button/button.component.d.ts +7 -16
  3. package/button/selection-settings.d.ts +1 -1
  4. package/buttons.module.d.ts +2 -1
  5. package/chip/chip-list.component.d.ts +1 -3
  6. package/chip/chip.component.d.ts +7 -15
  7. package/common/models/fillmode.d.ts +2 -2
  8. package/common/models/size.d.ts +2 -2
  9. package/common/models/theme-color.d.ts +3 -5
  10. package/directives.d.ts +16 -1
  11. package/dropdownbutton/dropdownbutton.component.d.ts +5 -9
  12. package/fesm2022/progress-kendo-angular-buttons.mjs +1112 -442
  13. package/floatingactionbutton/floatingactionbutton.component.d.ts +10 -14
  14. package/floatingactionbutton/models/align.d.ts +1 -1
  15. package/floatingactionbutton/models/item-animation.interface.d.ts +1 -1
  16. package/floatingactionbutton/models/item-click.event.d.ts +1 -1
  17. package/floatingactionbutton/models/item.interface.d.ts +2 -2
  18. package/floatingactionbutton/models/offset.d.ts +1 -1
  19. package/floatingactionbutton/models/position-mode.d.ts +1 -1
  20. package/floatingactionbutton/templates/dial-item-template.directive.d.ts +1 -1
  21. package/floatingactionbutton/templates/fab-template.directive.d.ts +1 -1
  22. package/index.d.ts +3 -0
  23. package/listbutton/button-item-template.directive.d.ts +1 -1
  24. package/listbutton/list-item-model.d.ts +1 -1
  25. package/package-metadata.mjs +2 -2
  26. package/package.json +8 -7
  27. package/smartpastebutton/models/form-field.d.ts +40 -0
  28. package/smartpastebutton/models/index.d.ts +6 -0
  29. package/smartpastebutton/models/service-settings.d.ts +108 -0
  30. package/smartpastebutton/smartpastebutton.component.d.ts +175 -0
  31. package/smartpastebutton/smartpastebutton.module.d.ts +27 -0
  32. package/smartpastebutton/utils.d.ts +50 -0
  33. package/speechtotextbutton/models/speechtotextbutton-settings.d.ts +1 -1
  34. package/speechtotextbutton/speechtotextbutton.component.d.ts +5 -11
  35. package/splitbutton/localization/custom-messages.component.d.ts +1 -1
  36. package/splitbutton/splitbutton.component.d.ts +9 -17
  37. package/util.d.ts +2 -2
package/README.md CHANGED
@@ -15,7 +15,7 @@ The Kendo UI for Angular Buttons provide a clickable UI functionality which can
15
15
 
16
16
  ## What's Included in the Angular Buttons Package
17
17
 
18
- The [Angular Buttons](https://www.telerik.com/kendo-angular-ui/components/buttons) package includes seven built-in components:
18
+ The [Angular Buttons](https://www.telerik.com/kendo-angular-ui/components/buttons) package includes eight built-in components:
19
19
 
20
20
  * [Angular Button Component](https://www.telerik.com/kendo-angular-ui/components/buttons/button)
21
21
  * [Angular ButtonGroup Component](https://www.telerik.com/kendo-angular-ui/components/buttons/buttongroup)
@@ -23,6 +23,7 @@ The [Angular Buttons](https://www.telerik.com/kendo-angular-ui/components/button
23
23
  * [Angular ChipList Component](https://www.telerik.com/kendo-angular-ui/components/buttons/chiplist)
24
24
  * [Angular DropDownButton Component](https://www.telerik.com/kendo-angular-ui/components/buttons/dropdownbutton)
25
25
  * [Angular FloatingActionButton Component](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton)
26
+ * [Angular SmartPasteButton Component](https://www.telerik.com/kendo-angular-ui/components/buttons/smartpastebutton)
26
27
  * [Angular SplitButton Component](https://www.telerik.com/kendo-angular-ui/components/buttons/splitbutton)
27
28
 
28
29
  ## Key Features
@@ -2,11 +2,11 @@
2
2
  * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { SimpleChanges, ElementRef, EventEmitter, Renderer2, OnDestroy, NgZone, AfterViewInit } from '@angular/core';
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
  /**
@@ -20,7 +20,7 @@ import * as i0 from "@angular/core";
20
20
  * <button kendoButton [icon]="'save'" [themeColor]="'primary'">Save</button>
21
21
  * ```
22
22
  */
23
- export declare class ButtonComponent implements OnDestroy, AfterViewInit {
23
+ export declare class ButtonComponent implements OnInit, OnDestroy, OnChanges {
24
24
  renderer: Renderer2;
25
25
  private service;
26
26
  private ngZone;
@@ -83,34 +83,26 @@ export declare class ButtonComponent implements OnDestroy, AfterViewInit {
83
83
  get disabled(): boolean;
84
84
  /**
85
85
  * Sets the padding of the Button.
86
- * See [Button Appearance]({% slug appearance_button %}#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](slug:appearance_button#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](slug:appearance_button#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](slug:appearance_button#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;
@@ -176,7 +168,6 @@ export declare class ButtonComponent implements OnDestroy, AfterViewInit {
176
168
  constructor(element: ElementRef, renderer: Renderer2, service: KendoButtonService, localization: LocalizationService, ngZone: NgZone);
177
169
  ngOnInit(): void;
178
170
  ngOnChanges(change: SimpleChanges): void;
179
- ngAfterViewInit(): void;
180
171
  ngOnDestroy(): void;
181
172
  /**
182
173
  * @hidden
@@ -3,7 +3,7 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
6
- * Specifies the selection mode of the [ButtonGroup]({% slug api_buttons_buttongroupcomponent %}).
6
+ * Specifies the selection mode of the [ButtonGroup](https://www.telerik.com/kendo-angular-ui/components/buttons/api/buttongroupcomponent).
7
7
  *
8
8
  * - Use `'single'` to allow only one button to be selected at a time.
9
9
  * - Use `'multiple'` to allow multiple buttons to be selected at the same time.
@@ -16,6 +16,7 @@ import * as i10 from "./splitbutton/splitbutton.component";
16
16
  import * as i11 from "./splitbutton/localization/custom-messages.component";
17
17
  import * as i12 from "@progress/kendo-angular-common";
18
18
  import * as i13 from "./speechtotextbutton/speechtotextbutton.component";
19
+ import * as i14 from "./smartpastebutton/smartpastebutton.component";
19
20
  /**
20
21
  * Represents the [NgModule](link:site.data.urls.angular['ngmodules'])
21
22
  * definition for the Buttons components.
@@ -39,6 +40,6 @@ import * as i13 from "./speechtotextbutton/speechtotextbutton.component";
39
40
  */
40
41
  export declare class ButtonsModule {
41
42
  static ɵfac: i0.ɵɵFactoryDeclaration<ButtonsModule, never>;
42
- static ɵmod: i0.ɵɵNgModuleDeclaration<ButtonsModule, never, [typeof i1.ButtonComponent, typeof i1.ButtonComponent, typeof i2.ButtonGroupComponent, typeof i3.DropDownButtonComponent, typeof i4.ButtonItemTemplateDirective, typeof i5.ChipComponent, typeof i5.ChipComponent, typeof i6.ChipListComponent, typeof i7.FloatingActionButtonComponent, typeof i8.DialItemTemplateDirective, typeof i9.FloatingActionButtonTemplateDirective, typeof i10.SplitButtonComponent, typeof i11.SplitButtonCustomMessagesComponent, typeof i12.ToggleButtonTabStopDirective, typeof i4.ButtonItemTemplateDirective, typeof i13.SpeechToTextButtonComponent, typeof i12.ToggleButtonTabStopDirective], [typeof i1.ButtonComponent, typeof i1.ButtonComponent, typeof i2.ButtonGroupComponent, typeof i3.DropDownButtonComponent, typeof i4.ButtonItemTemplateDirective, typeof i5.ChipComponent, typeof i5.ChipComponent, typeof i6.ChipListComponent, typeof i7.FloatingActionButtonComponent, typeof i8.DialItemTemplateDirective, typeof i9.FloatingActionButtonTemplateDirective, typeof i10.SplitButtonComponent, typeof i11.SplitButtonCustomMessagesComponent, typeof i12.ToggleButtonTabStopDirective, typeof i4.ButtonItemTemplateDirective, typeof i13.SpeechToTextButtonComponent, typeof i12.ToggleButtonTabStopDirective]>;
43
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ButtonsModule, never, [typeof i1.ButtonComponent, typeof i1.ButtonComponent, typeof i2.ButtonGroupComponent, typeof i3.DropDownButtonComponent, typeof i4.ButtonItemTemplateDirective, typeof i5.ChipComponent, typeof i5.ChipComponent, typeof i6.ChipListComponent, typeof i7.FloatingActionButtonComponent, typeof i8.DialItemTemplateDirective, typeof i9.FloatingActionButtonTemplateDirective, typeof i10.SplitButtonComponent, typeof i11.SplitButtonCustomMessagesComponent, typeof i12.ToggleButtonTabStopDirective, typeof i4.ButtonItemTemplateDirective, typeof i13.SpeechToTextButtonComponent, typeof i14.SmartPasteButtonComponent, typeof i12.ToggleButtonTabStopDirective], [typeof i1.ButtonComponent, typeof i1.ButtonComponent, typeof i2.ButtonGroupComponent, typeof i3.DropDownButtonComponent, typeof i4.ButtonItemTemplateDirective, typeof i5.ChipComponent, typeof i5.ChipComponent, typeof i6.ChipListComponent, typeof i7.FloatingActionButtonComponent, typeof i8.DialItemTemplateDirective, typeof i9.FloatingActionButtonTemplateDirective, typeof i10.SplitButtonComponent, typeof i11.SplitButtonCustomMessagesComponent, typeof i12.ToggleButtonTabStopDirective, typeof i4.ButtonItemTemplateDirective, typeof i13.SpeechToTextButtonComponent, typeof i14.SmartPasteButtonComponent, typeof i12.ToggleButtonTabStopDirective]>;
43
44
  static ɵinj: i0.ɵɵInjectorDeclaration<ButtonsModule>;
44
45
  }
@@ -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]({% slug appearance_chiplist %}#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;
@@ -33,8 +33,8 @@ export declare class ChipComponent implements OnInit, AfterViewInit, OnChanges {
33
33
  */
34
34
  icon: string;
35
35
  /**
36
- * Defines an [`SVGIcon`](slug:api_icons_svgicon) to render inside the Chip using
37
- * a [`KendoSVGIcon`](slug:api_icons_svgiconcomponent) component.
36
+ * Defines an [`SVGIcon`](https://www.telerik.com/kendo-angular-ui/components/icons/api/svgicon) to render inside the Chip using
37
+ * a [`KendoSVGIcon`](https://www.telerik.com/kendo-angular-ui/components/icons/api/svgiconcomponent) component.
38
38
  */
39
39
  svgIcon: SVGIcon;
40
40
  /**
@@ -59,7 +59,7 @@ export declare class ChipComponent implements OnInit, AfterViewInit, OnChanges {
59
59
  removable: boolean;
60
60
  /**
61
61
  * Specifies a custom remove font icon class to render when the Chip is removable.
62
- * [see example]({% slug icons %})
62
+ * [see example](https://www.telerik.com/kendo-angular-ui/components/styling/icons)
63
63
  */
64
64
  removeIcon: string;
65
65
  /**
@@ -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]({% slug appearance_chip %}#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](slug:appearance_chip#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](slug:appearance_chip#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](slug:appearance_chip#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;
@@ -5,8 +5,8 @@
5
5
  /**
6
6
  * Specifies the possible `fillMode` options for the buttons.
7
7
  */
8
- export type ButtonFillMode = 'solid' | 'flat' | 'outline' | 'link' | 'clear' | 'none';
8
+ export type ButtonFillMode = 'solid' | 'flat' | 'outline' | 'link' | 'clear';
9
9
  /**
10
10
  * Specifies the possible `fillMode` options for the Chip.
11
11
  */
12
- export type ChipFillMode = 'solid' | 'outline' | 'none';
12
+ export type ChipFillMode = 'solid' | 'outline';
@@ -5,8 +5,8 @@
5
5
  /**
6
6
  * Specifies the possible sizes for the buttons.
7
7
  */
8
- export type ButtonSize = 'small' | 'medium' | 'large' | 'none';
8
+ export type ButtonSize = 'small' | 'medium' | 'large';
9
9
  /**
10
10
  * Specifies the possible sizes for the Chip.
11
11
  */
12
- export type ChipSize = 'small' | 'medium' | 'large' | 'none';
12
+ export type ChipSize = 'small' | 'medium' | 'large';
@@ -3,7 +3,7 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
6
- * Specifies the possible theme colors for the buttons ([see examples]({% slug appearance_button %}#theme-colors)).
6
+ * Specifies the possible theme colors for the buttons ([see examples](https://www.telerik.com/kendo-angular-ui/components/buttons/button/appearance#theme-colors)).
7
7
  *
8
8
  * The possible values are:
9
9
  * * `base`&mdash;Applies the `base` theme color.
@@ -17,9 +17,8 @@
17
17
  * * `dark`&mdash;Applies the `dark` theme color.
18
18
  * * `light`&mdash;Applies the `light` theme color.
19
19
  * * `inverse`&mdash;Applies the `inverse` theme color.
20
- * * `none`&mdash;Removes the theme color.
21
20
  */
22
- export type ButtonThemeColor = 'base' | 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse' | 'none';
21
+ export type ButtonThemeColor = 'base' | 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse';
23
22
  /**
24
23
  * Specifies the possible theme colors for the Chip.
25
24
  *
@@ -29,6 +28,5 @@ export type ButtonThemeColor = 'base' | 'primary' | 'secondary' | 'tertiary' | '
29
28
  * * `success`&mdash;Applies the `success` theme color.
30
29
  * * `warning`&mdash;Applies the `warning` theme color.
31
30
  * * `error`&mdash;Applies the `error` theme color.
32
- * * `none`&mdash;Removes the theme color.
33
31
  */
34
- export type ChipThemeColor = 'base' | 'info' | 'success' | 'warning' | 'error' | 'none';
32
+ export type ChipThemeColor = 'base' | 'info' | 'success' | 'warning' | 'error';
package/directives.d.ts CHANGED
@@ -15,6 +15,7 @@ import { SplitButtonCustomMessagesComponent } from './splitbutton/localization/c
15
15
  import { SplitButtonComponent } from './splitbutton/splitbutton.component';
16
16
  import { ButtonItemTemplateDirective } from './listbutton/button-item-template.directive';
17
17
  import { SpeechToTextButtonComponent } from './speechtotextbutton/speechtotextbutton.component';
18
+ import { SmartPasteButtonComponent } from './smartpastebutton/smartpastebutton.component';
18
19
  /**
19
20
  * Use the `KENDO_BUTTON` utility array to add all Button-related components and directives to a standalone Angular component.
20
21
  *
@@ -127,6 +128,20 @@ export declare const KENDO_SPLITBUTTON: readonly [typeof SplitButtonComponent, t
127
128
  * ```
128
129
  */
129
130
  export declare const KENDO_SPEECHTOTEXTBUTTON: readonly [typeof SpeechToTextButtonComponent];
131
+ /**
132
+ * Use the `KENDO_SMARTPASTEBUTTON` utility array to add all SmartPasteButton-related components and directives to a standalone Angular component.
133
+ *
134
+ * @example
135
+ * ```typescript
136
+ * @Component({
137
+ * standalone: true,
138
+ * imports: [KENDO_SMARTPASTEBUTTON],
139
+ * // ...
140
+ * })
141
+ * export class MyComponent {}
142
+ * ```
143
+ */
144
+ export declare const KENDO_SMARTPASTEBUTTON: readonly [typeof SmartPasteButtonComponent];
130
145
  /**
131
146
  * Use the `KENDO_BUTTONS` utility array to add all `@progress/kendo-angular-buttons`-related components and directives to a standalone Angular component.
132
147
  *
@@ -140,4 +155,4 @@ export declare const KENDO_SPEECHTOTEXTBUTTON: readonly [typeof SpeechToTextButt
140
155
  * export class MyComponent {}
141
156
  * ```
142
157
  */
143
- export declare const KENDO_BUTTONS: readonly [typeof ButtonComponent, typeof ButtonComponent, typeof ButtonGroupComponent, typeof DropDownButtonComponent, typeof ButtonItemTemplateDirective, typeof ChipComponent, typeof ChipComponent, typeof ChipListComponent, typeof FloatingActionButtonComponent, typeof DialItemTemplateDirective, typeof FloatingActionButtonTemplateDirective, typeof SplitButtonComponent, typeof SplitButtonCustomMessagesComponent, typeof ToggleButtonTabStopDirective, typeof ButtonItemTemplateDirective, typeof SpeechToTextButtonComponent];
158
+ export declare const KENDO_BUTTONS: readonly [typeof ButtonComponent, typeof ButtonComponent, typeof ButtonGroupComponent, typeof DropDownButtonComponent, typeof ButtonItemTemplateDirective, typeof ChipComponent, typeof ChipComponent, typeof ChipListComponent, typeof FloatingActionButtonComponent, typeof DialItemTemplateDirective, typeof FloatingActionButtonTemplateDirective, typeof SplitButtonComponent, typeof SplitButtonCustomMessagesComponent, typeof ToggleButtonTabStopDirective, typeof ButtonItemTemplateDirective, typeof SpeechToTextButtonComponent, typeof SmartPasteButtonComponent];
@@ -53,7 +53,7 @@ export declare class DropDownButtonComponent extends ListButton implements After
53
53
  */
54
54
  icon: string;
55
55
  /**
56
- * Specifies an [`SVGIcon`](slug:api_icons_svgicon) to render within the button.
56
+ * Specifies an [`SVGIcon`](https://www.telerik.com/kendo-angular-ui/components/icons/api/svgicon) to render within the button.
57
57
  */
58
58
  svgIcon: SVGIcon;
59
59
  /**
@@ -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](slug:appearance_dropdownbutton#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](slug:appearance_dropdownbutton#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](slug:appearance_dropdownbutton#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
- * Specifies predefined theme colors for the DropDownButton. See [DropDownButton Appearance](slug:appearance_dropdownbutton#theme-colors).
95
- * @default 'base'
91
+ * Specifies predefined theme colors for the DropDownButton. See [DropDownButton Appearance](https://www.telerik.com/kendo-angular-ui/components/buttons/dropdownbutton/appearance#theme-colors).
96
92
  */
97
93
  themeColor: ButtonThemeColor;
98
94
  /**