@progress/kendo-angular-icons 11.2.0-develop.1 → 11.2.0-develop.10
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/esm2020/icon/icon.component.mjs +1 -1
- package/esm2020/icon-wrapper/icon-wrapper.component.mjs +3 -3
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/svg-icon/svg-icon.component.mjs +1 -1
- package/fesm2015/progress-kendo-angular-icons.mjs +7 -7
- package/fesm2020/progress-kendo-angular-icons.mjs +7 -7
- package/icon/icon.component.d.ts +1 -1
- package/icon-wrapper/icon-wrapper.component.d.ts +1 -1
- package/package.json +3 -3
- package/svg-icon/svg-icon.component.d.ts +1 -1
|
@@ -18,7 +18,7 @@ export class IconComponent extends IconBaseDirective {
|
|
|
18
18
|
}
|
|
19
19
|
/**
|
|
20
20
|
* Defines the name for an existing icon in a Kendo UI theme, which will be rendered.
|
|
21
|
-
* All [Kendo UI Icons](
|
|
21
|
+
* All [Kendo UI Icons](slug:icon_list) are supported.
|
|
22
22
|
*/
|
|
23
23
|
set name(name) {
|
|
24
24
|
if (isDocumentAvailable()) {
|
|
@@ -33,7 +33,7 @@ export class IconWrapperComponent {
|
|
|
33
33
|
});
|
|
34
34
|
}
|
|
35
35
|
get customClasses() {
|
|
36
|
-
const classes = [this.customFontClass, this.innerCssClass].filter(cl => !!cl).join(' ');
|
|
36
|
+
const classes = [this.customFontClass, this.innerCssClass, this.customFontIconClass].filter(cl => !!cl).join(' ');
|
|
37
37
|
return classes;
|
|
38
38
|
}
|
|
39
39
|
get getSvgIcon() {
|
|
@@ -56,7 +56,7 @@ IconWrapperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
56
56
|
[themeColor]="iconSettings?.themeColor"
|
|
57
57
|
[flip]="iconSettings?.flip"></kendo-svg-icon>
|
|
58
58
|
<ng-template #font>
|
|
59
|
-
<kendo-icon
|
|
59
|
+
<kendo-icon
|
|
60
60
|
*ngIf="!customFontIconClass; else custom"
|
|
61
61
|
[ngClass]="innerCssClass"
|
|
62
62
|
[name]="name"
|
|
@@ -82,7 +82,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
82
82
|
[themeColor]="iconSettings?.themeColor"
|
|
83
83
|
[flip]="iconSettings?.flip"></kendo-svg-icon>
|
|
84
84
|
<ng-template #font>
|
|
85
|
-
<kendo-icon
|
|
85
|
+
<kendo-icon
|
|
86
86
|
*ngIf="!customFontIconClass; else custom"
|
|
87
87
|
[ngClass]="innerCssClass"
|
|
88
88
|
[name]="name"
|
|
@@ -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:
|
|
13
|
-
version: '11.2.0-develop.
|
|
12
|
+
publishDate: 1675853441,
|
|
13
|
+
version: '11.2.0-develop.10',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -21,7 +21,7 @@ export class SVGIconComponent extends IconBaseDirective {
|
|
|
21
21
|
this.hostClass = true;
|
|
22
22
|
}
|
|
23
23
|
/**
|
|
24
|
-
* Defines the SVG icon, which will be rendered.
|
|
24
|
+
* Defines the SVG icon, which will be rendered. All [Kendo UI SVG Icons](slug:svgicon_list) are supported.
|
|
25
25
|
*/
|
|
26
26
|
set icon(icon) {
|
|
27
27
|
const element = this.element.nativeElement;
|
|
@@ -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:
|
|
23
|
-
version: '11.2.0-develop.
|
|
22
|
+
publishDate: 1675853441,
|
|
23
|
+
version: '11.2.0-develop.10',
|
|
24
24
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
25
25
|
};
|
|
26
26
|
|
|
@@ -136,7 +136,7 @@ class IconComponent extends IconBaseDirective {
|
|
|
136
136
|
}
|
|
137
137
|
/**
|
|
138
138
|
* Defines the name for an existing icon in a Kendo UI theme, which will be rendered.
|
|
139
|
-
* All [Kendo UI Icons](
|
|
139
|
+
* All [Kendo UI Icons](slug:icon_list) are supported.
|
|
140
140
|
*/
|
|
141
141
|
set name(name) {
|
|
142
142
|
if (isDocumentAvailable()) {
|
|
@@ -178,7 +178,7 @@ class SVGIconComponent extends IconBaseDirective {
|
|
|
178
178
|
this.hostClass = true;
|
|
179
179
|
}
|
|
180
180
|
/**
|
|
181
|
-
* Defines the SVG icon, which will be rendered.
|
|
181
|
+
* Defines the SVG icon, which will be rendered. All [Kendo UI SVG Icons](slug:svgicon_list) are supported.
|
|
182
182
|
*/
|
|
183
183
|
set icon(icon) {
|
|
184
184
|
const element = this.element.nativeElement;
|
|
@@ -385,7 +385,7 @@ class IconWrapperComponent {
|
|
|
385
385
|
});
|
|
386
386
|
}
|
|
387
387
|
get customClasses() {
|
|
388
|
-
const classes = [this.customFontClass, this.innerCssClass].filter(cl => !!cl).join(' ');
|
|
388
|
+
const classes = [this.customFontClass, this.innerCssClass, this.customFontIconClass].filter(cl => !!cl).join(' ');
|
|
389
389
|
return classes;
|
|
390
390
|
}
|
|
391
391
|
get getSvgIcon() {
|
|
@@ -408,7 +408,7 @@ IconWrapperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
408
408
|
[themeColor]="iconSettings?.themeColor"
|
|
409
409
|
[flip]="iconSettings?.flip"></kendo-svg-icon>
|
|
410
410
|
<ng-template #font>
|
|
411
|
-
<kendo-icon
|
|
411
|
+
<kendo-icon
|
|
412
412
|
*ngIf="!customFontIconClass; else custom"
|
|
413
413
|
[ngClass]="innerCssClass"
|
|
414
414
|
[name]="name"
|
|
@@ -434,7 +434,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
434
434
|
[themeColor]="iconSettings?.themeColor"
|
|
435
435
|
[flip]="iconSettings?.flip"></kendo-svg-icon>
|
|
436
436
|
<ng-template #font>
|
|
437
|
-
<kendo-icon
|
|
437
|
+
<kendo-icon
|
|
438
438
|
*ngIf="!customFontIconClass; else custom"
|
|
439
439
|
[ngClass]="innerCssClass"
|
|
440
440
|
[name]="name"
|
|
@@ -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:
|
|
23
|
-
version: '11.2.0-develop.
|
|
22
|
+
publishDate: 1675853441,
|
|
23
|
+
version: '11.2.0-develop.10',
|
|
24
24
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
25
25
|
};
|
|
26
26
|
|
|
@@ -136,7 +136,7 @@ class IconComponent extends IconBaseDirective {
|
|
|
136
136
|
}
|
|
137
137
|
/**
|
|
138
138
|
* Defines the name for an existing icon in a Kendo UI theme, which will be rendered.
|
|
139
|
-
* All [Kendo UI Icons](
|
|
139
|
+
* All [Kendo UI Icons](slug:icon_list) are supported.
|
|
140
140
|
*/
|
|
141
141
|
set name(name) {
|
|
142
142
|
if (isDocumentAvailable()) {
|
|
@@ -178,7 +178,7 @@ class SVGIconComponent extends IconBaseDirective {
|
|
|
178
178
|
this.hostClass = true;
|
|
179
179
|
}
|
|
180
180
|
/**
|
|
181
|
-
* Defines the SVG icon, which will be rendered.
|
|
181
|
+
* Defines the SVG icon, which will be rendered. All [Kendo UI SVG Icons](slug:svgicon_list) are supported.
|
|
182
182
|
*/
|
|
183
183
|
set icon(icon) {
|
|
184
184
|
const element = this.element.nativeElement;
|
|
@@ -383,7 +383,7 @@ class IconWrapperComponent {
|
|
|
383
383
|
});
|
|
384
384
|
}
|
|
385
385
|
get customClasses() {
|
|
386
|
-
const classes = [this.customFontClass, this.innerCssClass].filter(cl => !!cl).join(' ');
|
|
386
|
+
const classes = [this.customFontClass, this.innerCssClass, this.customFontIconClass].filter(cl => !!cl).join(' ');
|
|
387
387
|
return classes;
|
|
388
388
|
}
|
|
389
389
|
get getSvgIcon() {
|
|
@@ -406,7 +406,7 @@ IconWrapperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
406
406
|
[themeColor]="iconSettings?.themeColor"
|
|
407
407
|
[flip]="iconSettings?.flip"></kendo-svg-icon>
|
|
408
408
|
<ng-template #font>
|
|
409
|
-
<kendo-icon
|
|
409
|
+
<kendo-icon
|
|
410
410
|
*ngIf="!customFontIconClass; else custom"
|
|
411
411
|
[ngClass]="innerCssClass"
|
|
412
412
|
[name]="name"
|
|
@@ -432,7 +432,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
432
432
|
[themeColor]="iconSettings?.themeColor"
|
|
433
433
|
[flip]="iconSettings?.flip"></kendo-svg-icon>
|
|
434
434
|
<ng-template #font>
|
|
435
|
-
<kendo-icon
|
|
435
|
+
<kendo-icon
|
|
436
436
|
*ngIf="!customFontIconClass; else custom"
|
|
437
437
|
[ngClass]="innerCssClass"
|
|
438
438
|
[name]="name"
|
package/icon/icon.component.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export declare class IconComponent extends IconBaseDirective {
|
|
|
14
14
|
hostClass: boolean;
|
|
15
15
|
/**
|
|
16
16
|
* Defines the name for an existing icon in a Kendo UI theme, which will be rendered.
|
|
17
|
-
* All [Kendo UI Icons](
|
|
17
|
+
* All [Kendo UI Icons](slug:icon_list) are supported.
|
|
18
18
|
*/
|
|
19
19
|
set name(name: string);
|
|
20
20
|
get name(): string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-icons",
|
|
3
|
-
"version": "11.2.0-develop.
|
|
3
|
+
"version": "11.2.0-develop.10",
|
|
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 - 15",
|
|
23
23
|
"@progress/kendo-licensing": "^1.0.2",
|
|
24
24
|
"@progress/kendo-svg-icons": "^1.0.0",
|
|
25
|
-
"@progress/kendo-angular-common": "11.2.0-develop.
|
|
25
|
+
"@progress/kendo-angular-common": "11.2.0-develop.10",
|
|
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": "11.2.0-develop.
|
|
30
|
+
"@progress/kendo-angular-schematics": "11.2.0-develop.10"
|
|
31
31
|
},
|
|
32
32
|
"schematics": "./schematics/collection.json",
|
|
33
33
|
"module": "fesm2015/progress-kendo-angular-icons.mjs",
|
|
@@ -16,7 +16,7 @@ export declare class SVGIconComponent extends IconBaseDirective implements OnIni
|
|
|
16
16
|
renderer: Renderer2;
|
|
17
17
|
hostClass: boolean;
|
|
18
18
|
/**
|
|
19
|
-
* Defines the SVG icon, which will be rendered.
|
|
19
|
+
* Defines the SVG icon, which will be rendered. All [Kendo UI SVG Icons](slug:svgicon_list) are supported.
|
|
20
20
|
*/
|
|
21
21
|
set icon(icon: SVGIcon);
|
|
22
22
|
get icon(): SVGIcon;
|