@progress/kendo-angular-buttons 20.0.0-develop.4 → 20.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.
@@ -0,0 +1,39 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { SVGIcon } from "@progress/kendo-svg-icons";
6
+ import { ButtonFillMode, ButtonRounded, ButtonSize, ButtonThemeColor } from "../common/models";
7
+ /**
8
+ * Defines the settings for the Button.
9
+ */
10
+ export interface ButtonSettings {
11
+ /**
12
+ * When `true`, disables the Button and prevents user interaction.
13
+ */
14
+ disabled?: boolean;
15
+ /**
16
+ * Sets the background and border styles of the Button.
17
+ */
18
+ fillMode?: ButtonFillMode;
19
+ /**
20
+ * Sets the border radius of the Button.
21
+ */
22
+ rounded?: ButtonRounded;
23
+ /**
24
+ * Sets the padding of the Button.
25
+ */
26
+ size?: ButtonSize;
27
+ /**
28
+ * Sets a predefined theme color for the Button. The theme color applies as a background and border color and adjusts the text color.
29
+ */
30
+ themeColor?: ButtonThemeColor;
31
+ /**
32
+ * Sets the name of an existing font icon in the Kendo UI theme.
33
+ */
34
+ icon?: string;
35
+ /**
36
+ * Sets an SVG icon to display inside the Button.
37
+ */
38
+ svgIcon?: SVGIcon;
39
+ }
@@ -0,0 +1,5 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ export {};
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1755865144,
14
- version: '20.0.0-develop.4',
13
+ publishDate: 1755877632,
14
+ version: '20.0.0-develop.6',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
16
16
  };
@@ -45,8 +45,8 @@ const packageMetadata = {
45
45
  productName: 'Kendo UI for Angular',
46
46
  productCode: 'KENDOUIANGULAR',
47
47
  productCodes: ['KENDOUIANGULAR'],
48
- publishDate: 1755865144,
49
- version: '20.0.0-develop.4',
48
+ publishDate: 1755877632,
49
+ version: '20.0.0-develop.6',
50
50
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
51
51
  };
52
52
 
package/index.d.ts CHANGED
@@ -5,6 +5,7 @@
5
5
  export { ButtonComponent as ButtonDirective, ButtonComponent as Button, ButtonComponent } from './button/button.component';
6
6
  export { ButtonGroupComponent, ButtonGroupComponent as ButtonGroup } from './buttongroup/buttongroup.component';
7
7
  export { ButtonGroupSelection } from './button/selection-settings';
8
+ export { ButtonSettings } from './button/button-settings';
8
9
  export { ButtonGroupModule } from './buttongroup/buttongroup.module';
9
10
  export { ButtonModule } from './button/button.module';
10
11
  export { ButtonsModule } from './buttons.module';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-buttons",
3
- "version": "20.0.0-develop.4",
3
+ "version": "20.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": 1755865144,
24
+ "publishDate": 1755877632,
25
25
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
26
26
  }
27
27
  },
@@ -31,15 +31,15 @@
31
31
  "@angular/core": "16 - 20",
32
32
  "@angular/platform-browser": "16 - 20",
33
33
  "@progress/kendo-licensing": "^1.7.0",
34
- "@progress/kendo-angular-common": "20.0.0-develop.4",
35
- "@progress/kendo-angular-l10n": "20.0.0-develop.4",
36
- "@progress/kendo-angular-popup": "20.0.0-develop.4",
37
- "@progress/kendo-angular-icons": "20.0.0-develop.4",
34
+ "@progress/kendo-angular-common": "20.0.0-develop.6",
35
+ "@progress/kendo-angular-l10n": "20.0.0-develop.6",
36
+ "@progress/kendo-angular-popup": "20.0.0-develop.6",
37
+ "@progress/kendo-angular-icons": "20.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": "20.0.0-develop.4",
42
+ "@progress/kendo-angular-schematics": "20.0.0-develop.6",
43
43
  "@progress/kendo-common": "^1.0.1",
44
44
  "@progress/kendo-webspeech-common": "1.0.1"
45
45
  },