@progress/kendo-themes-html 4.43.1-dev.7 → 4.43.1-dev.8

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.
@@ -96,6 +96,7 @@ const booleanAttr = new Set([
96
96
 
97
97
  const nullAttr = new Set([
98
98
  'size',
99
+ 'shape',
99
100
  'rounded',
100
101
  'fillMode',
101
102
  'themeColor',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-themes-html",
3
3
  "description": "A collection of HTML helpers used for developing Kendo UI themes",
4
- "version": "4.43.1-dev.7",
4
+ "version": "4.43.1-dev.8",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -42,5 +42,5 @@
42
42
  "@rollup/plugin-node-resolve": "^13.1.2",
43
43
  "rollup": "^2.62.0"
44
44
  },
45
- "gitHead": "634466e18a3f771f8e1da5dc5efdefca1f4fd344"
45
+ "gitHead": "cf8448a76498b1f53859522cfa29e66618cdba4c"
46
46
  }
package/src/fab/fab.jsx CHANGED
@@ -73,11 +73,7 @@ function FabStatic(props) {
73
73
  ownClassName,
74
74
  'k-fab',
75
75
  `k-fab-${themeColor}`,
76
- {
77
- 'k-fab-rectangle': rounded === null,
78
- 'k-fab-rounded': rounded !== 'full' && rounded !== null,
79
- 'k-fab-pill': rounded === 'full'
80
- },
76
+ styles.roundedClass( rounded ),
81
77
  {
82
78
  'k-state-hover': hover === true,
83
79
  'k-state-focus': focus === true,