@progress/kendo-angular-indicators 24.0.0-develop.8 → 24.0.0
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/badge/models/theme-color.d.ts +9 -12
- package/codemods/libs/common/src/codemods/utils.js +1488 -0
- package/codemods/libs/indicators/codemods/v24/badge-themecolor-light-dark.js +50 -0
- package/codemods/libs/indicators/codemods/v24/loader-themecolor-light-dark.js +50 -0
- package/fesm2022/progress-kendo-angular-indicators.mjs +2 -2
- package/loader/models/theme-color.d.ts +5 -11
- package/package-metadata.mjs +2 -2
- package/package.json +24 -6
|
@@ -7,16 +7,13 @@
|
|
|
7
7
|
* For more details, see the [Badge Appearance - Theme Color]https://www.telerik.com/kendo-angular-ui/components/indicators/badge/appearance#theme-color) documentation.
|
|
8
8
|
*
|
|
9
9
|
* The possible values are:
|
|
10
|
-
* * `
|
|
11
|
-
* * `
|
|
12
|
-
* * `
|
|
13
|
-
* * `
|
|
14
|
-
* * `info`—Applies
|
|
15
|
-
* * `success`—
|
|
16
|
-
* * `warning`—
|
|
17
|
-
* * `error`—
|
|
18
|
-
* * `dark`— Applies coloring based on dark theme color.
|
|
19
|
-
* * `light`— Applies coloring based on light theme color.
|
|
20
|
-
* * `inverse`— Applies coloring based on inverted theme color.
|
|
10
|
+
* * `base`—Applies base coloring value.
|
|
11
|
+
* * `primary`—Applies primary coloring value.
|
|
12
|
+
* * `secondary`—Applies secondary coloring value.
|
|
13
|
+
* * `tertiary`—Applies tertiary coloring value.
|
|
14
|
+
* * `info`—Applies info coloring value.
|
|
15
|
+
* * `success`—Applies success coloring value.
|
|
16
|
+
* * `warning`—Applies warning coloring value.
|
|
17
|
+
* * `error`—Applies error coloring value.
|
|
21
18
|
*/
|
|
22
|
-
export type BadgeThemeColor = '
|
|
19
|
+
export type BadgeThemeColor = 'base' | 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error';
|