@progress/kendo-angular-icons 14.3.0-develop.11 → 14.3.0-develop.13

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.
@@ -50,10 +50,12 @@ export class IconBaseDirective {
50
50
  */
51
51
  set themeColor(themeColor) {
52
52
  const element = this.element.nativeElement;
53
+ if (this._themeColor) {
54
+ this.renderer.removeClass(element, `!k-color-${this._themeColor}`);
55
+ }
53
56
  this._themeColor = themeColor;
54
57
  // needed to ensure the theme color will be always applied; e.g. the class .k-button-icon, specific
55
58
  // for icon buttons applies "color: inherit" which overwrites the theme color
56
- this.renderer.removeClass(element, `!k-color-${themeColor}`);
57
59
  if (themeColor) {
58
60
  this.renderer.addClass(element, `!k-color-${themeColor}`);
59
61
  }
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-icons',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1702310864,
13
- version: '14.3.0-develop.11',
12
+ publishDate: 1702462536,
13
+ version: '14.3.0-develop.13',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -19,8 +19,8 @@ const packageMetadata = {
19
19
  name: '@progress/kendo-angular-icons',
20
20
  productName: 'Kendo UI for Angular',
21
21
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
22
- publishDate: 1702310864,
23
- version: '14.3.0-develop.11',
22
+ publishDate: 1702462536,
23
+ version: '14.3.0-develop.13',
24
24
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
25
25
  };
26
26
 
@@ -68,10 +68,12 @@ class IconBaseDirective {
68
68
  */
69
69
  set themeColor(themeColor) {
70
70
  const element = this.element.nativeElement;
71
+ if (this._themeColor) {
72
+ this.renderer.removeClass(element, `!k-color-${this._themeColor}`);
73
+ }
71
74
  this._themeColor = themeColor;
72
75
  // needed to ensure the theme color will be always applied; e.g. the class .k-button-icon, specific
73
76
  // for icon buttons applies "color: inherit" which overwrites the theme color
74
- this.renderer.removeClass(element, `!k-color-${themeColor}`);
75
77
  if (themeColor) {
76
78
  this.renderer.addClass(element, `!k-color-${themeColor}`);
77
79
  }
@@ -19,8 +19,8 @@ const packageMetadata = {
19
19
  name: '@progress/kendo-angular-icons',
20
20
  productName: 'Kendo UI for Angular',
21
21
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
22
- publishDate: 1702310864,
23
- version: '14.3.0-develop.11',
22
+ publishDate: 1702462536,
23
+ version: '14.3.0-develop.13',
24
24
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
25
25
  };
26
26
 
@@ -68,10 +68,12 @@ class IconBaseDirective {
68
68
  */
69
69
  set themeColor(themeColor) {
70
70
  const element = this.element.nativeElement;
71
+ if (this._themeColor) {
72
+ this.renderer.removeClass(element, `!k-color-${this._themeColor}`);
73
+ }
71
74
  this._themeColor = themeColor;
72
75
  // needed to ensure the theme color will be always applied; e.g. the class .k-button-icon, specific
73
76
  // for icon buttons applies "color: inherit" which overwrites the theme color
74
- this.renderer.removeClass(element, `!k-color-${themeColor}`);
75
77
  if (themeColor) {
76
78
  this.renderer.addClass(element, `!k-color-${themeColor}`);
77
79
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-icons",
3
- "version": "14.3.0-develop.11",
3
+ "version": "14.3.0-develop.13",
4
4
  "description": "Kendo UI Angular component starter template",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -22,12 +22,12 @@
22
22
  "@angular/platform-browser": "13 - 17",
23
23
  "@progress/kendo-licensing": "^1.0.2",
24
24
  "@progress/kendo-svg-icons": "^2.0.0",
25
- "@progress/kendo-angular-common": "14.3.0-develop.11",
25
+ "@progress/kendo-angular-common": "14.3.0-develop.13",
26
26
  "rxjs": "^6.5.3 || ^7.0.0"
27
27
  },
28
28
  "dependencies": {
29
29
  "tslib": "^2.3.1",
30
- "@progress/kendo-angular-schematics": "14.3.0-develop.11"
30
+ "@progress/kendo-angular-schematics": "14.3.0-develop.13"
31
31
  },
32
32
  "schematics": "./schematics/collection.json",
33
33
  "module": "fesm2015/progress-kendo-angular-icons.mjs",