@progress/kendo-charts 2.3.0-dev.202403071434 → 2.3.0-dev.202403082114
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.
|
@@ -8,6 +8,7 @@ import removeClass from './remove-class';
|
|
|
8
8
|
|
|
9
9
|
var KICON = 'k-icon';
|
|
10
10
|
var KI_PREFFIX = 'k-i-';
|
|
11
|
+
var KFONTICON = 'k-font-icon';
|
|
11
12
|
var KSVGICON = 'k-svg-icon';
|
|
12
13
|
var KSVG_PREFFIX = 'k-svg-i-';
|
|
13
14
|
|
|
@@ -55,6 +56,7 @@ var HTMLFontIcon = (function (HTMLBaseIcon) {
|
|
|
55
56
|
this._className = className;
|
|
56
57
|
|
|
57
58
|
addClass(this.element, KICON);
|
|
59
|
+
addClass(this.element, KFONTICON);
|
|
58
60
|
removeClass(this.element, currentIconClass); // Remove any existing icons.
|
|
59
61
|
addClass(this.element, className);
|
|
60
62
|
addClass(this.element, this.options.iconClass || '');
|
|
@@ -8,6 +8,7 @@ import removeClass from './remove-class';
|
|
|
8
8
|
|
|
9
9
|
const KICON = 'k-icon';
|
|
10
10
|
const KI_PREFFIX = 'k-i-';
|
|
11
|
+
const KFONTICON = 'k-font-icon';
|
|
11
12
|
const KSVGICON = 'k-svg-icon';
|
|
12
13
|
const KSVG_PREFFIX = 'k-svg-i-';
|
|
13
14
|
|
|
@@ -53,6 +54,7 @@ class HTMLFontIcon extends HTMLBaseIcon {
|
|
|
53
54
|
this._className = className;
|
|
54
55
|
|
|
55
56
|
addClass(this.element, KICON);
|
|
57
|
+
addClass(this.element, KFONTICON);
|
|
56
58
|
removeClass(this.element, currentIconClass); // Remove any existing icons.
|
|
57
59
|
addClass(this.element, className);
|
|
58
60
|
addClass(this.element, this.options.iconClass || '');
|