@progress/kendo-angular-icons 11.2.0-develop.16 → 11.2.0-develop.18
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 +5 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/svg-icon/svg-icon.component.mjs +5 -1
- package/fesm2015/progress-kendo-angular-icons.mjs +12 -4
- package/fesm2020/progress-kendo-angular-icons.mjs +12 -4
- package/icon/icon.component.d.ts +1 -0
- package/package.json +3 -3
- package/svg-icon/svg-icon.component.d.ts +1 -0
|
@@ -15,6 +15,7 @@ export class IconComponent extends IconBaseDirective {
|
|
|
15
15
|
this.element = element;
|
|
16
16
|
this.renderer = renderer;
|
|
17
17
|
this.hostClass = true;
|
|
18
|
+
this.hostAriaHidden = true;
|
|
18
19
|
}
|
|
19
20
|
/**
|
|
20
21
|
* Defines the name for an existing icon in a Kendo UI theme, which will be rendered.
|
|
@@ -33,7 +34,7 @@ export class IconComponent extends IconBaseDirective {
|
|
|
33
34
|
}
|
|
34
35
|
}
|
|
35
36
|
IconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IconComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
36
|
-
IconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IconComponent, selector: "kendo-icon", inputs: { name: "name" }, host: { properties: { "class.k-icon": "this.hostClass" } }, exportAs: ["kendoIcon"], usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
37
|
+
IconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IconComponent, selector: "kendo-icon", inputs: { name: "name" }, host: { properties: { "class.k-icon": "this.hostClass", "attr.aria-hidden": "this.hostAriaHidden" } }, exportAs: ["kendoIcon"], usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
37
38
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IconComponent, decorators: [{
|
|
38
39
|
type: Component,
|
|
39
40
|
args: [{
|
|
@@ -44,6 +45,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
44
45
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { hostClass: [{
|
|
45
46
|
type: HostBinding,
|
|
46
47
|
args: ['class.k-icon']
|
|
48
|
+
}], hostAriaHidden: [{
|
|
49
|
+
type: HostBinding,
|
|
50
|
+
args: ['attr.aria-hidden']
|
|
47
51
|
}], name: [{
|
|
48
52
|
type: Input
|
|
49
53
|
}] } });
|
|
@@ -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: 1676045994,
|
|
13
|
+
version: '11.2.0-develop.18',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -19,6 +19,7 @@ export class SVGIconComponent extends IconBaseDirective {
|
|
|
19
19
|
this.element = element;
|
|
20
20
|
this.renderer = renderer;
|
|
21
21
|
this.hostClass = true;
|
|
22
|
+
this.hostAriaHidden = true;
|
|
22
23
|
}
|
|
23
24
|
/**
|
|
24
25
|
* Defines the SVG icon, which will be rendered. All [Kendo UI SVG Icons](slug:svgicon_list) are supported.
|
|
@@ -60,7 +61,7 @@ export class SVGIconComponent extends IconBaseDirective {
|
|
|
60
61
|
}
|
|
61
62
|
}
|
|
62
63
|
SVGIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SVGIconComponent, deps: [{ token: i1.DomSanitizer }, { token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
63
|
-
SVGIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SVGIconComponent, selector: "kendo-svg-icon", inputs: { icon: "icon" }, host: { properties: { "class.k-svg-icon": "this.hostClass" } }, exportAs: ["kendoSVGIcon"], usesInheritance: true, ngImport: i0, template: `
|
|
64
|
+
SVGIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SVGIconComponent, selector: "kendo-svg-icon", inputs: { icon: "icon" }, host: { properties: { "class.k-svg-icon": "this.hostClass", "attr.aria-hidden": "this.hostAriaHidden" } }, exportAs: ["kendoSVGIcon"], usesInheritance: true, ngImport: i0, template: `
|
|
64
65
|
<svg [style.pointerEvents]="'none'" *ngIf="visible" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
65
66
|
[attr.viewBox]="icon.viewBox" [innerHTML]="content">
|
|
66
67
|
</svg>`, isInline: true, directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
@@ -77,6 +78,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
77
78
|
}], ctorParameters: function () { return [{ type: i1.DomSanitizer }, { type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { hostClass: [{
|
|
78
79
|
type: HostBinding,
|
|
79
80
|
args: ['class.k-svg-icon']
|
|
81
|
+
}], hostAriaHidden: [{
|
|
82
|
+
type: HostBinding,
|
|
83
|
+
args: ['attr.aria-hidden']
|
|
80
84
|
}], icon: [{
|
|
81
85
|
type: Input
|
|
82
86
|
}] } });
|
|
@@ -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: 1676045994,
|
|
23
|
+
version: '11.2.0-develop.18',
|
|
24
24
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
25
25
|
};
|
|
26
26
|
|
|
@@ -133,6 +133,7 @@ class IconComponent extends IconBaseDirective {
|
|
|
133
133
|
this.element = element;
|
|
134
134
|
this.renderer = renderer;
|
|
135
135
|
this.hostClass = true;
|
|
136
|
+
this.hostAriaHidden = true;
|
|
136
137
|
}
|
|
137
138
|
/**
|
|
138
139
|
* Defines the name for an existing icon in a Kendo UI theme, which will be rendered.
|
|
@@ -151,7 +152,7 @@ class IconComponent extends IconBaseDirective {
|
|
|
151
152
|
}
|
|
152
153
|
}
|
|
153
154
|
IconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IconComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
154
|
-
IconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IconComponent, selector: "kendo-icon", inputs: { name: "name" }, host: { properties: { "class.k-icon": "this.hostClass" } }, exportAs: ["kendoIcon"], usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
155
|
+
IconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IconComponent, selector: "kendo-icon", inputs: { name: "name" }, host: { properties: { "class.k-icon": "this.hostClass", "attr.aria-hidden": "this.hostAriaHidden" } }, exportAs: ["kendoIcon"], usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
155
156
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IconComponent, decorators: [{
|
|
156
157
|
type: Component,
|
|
157
158
|
args: [{
|
|
@@ -162,6 +163,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
162
163
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { hostClass: [{
|
|
163
164
|
type: HostBinding,
|
|
164
165
|
args: ['class.k-icon']
|
|
166
|
+
}], hostAriaHidden: [{
|
|
167
|
+
type: HostBinding,
|
|
168
|
+
args: ['attr.aria-hidden']
|
|
165
169
|
}], name: [{
|
|
166
170
|
type: Input
|
|
167
171
|
}] } });
|
|
@@ -176,6 +180,7 @@ class SVGIconComponent extends IconBaseDirective {
|
|
|
176
180
|
this.element = element;
|
|
177
181
|
this.renderer = renderer;
|
|
178
182
|
this.hostClass = true;
|
|
183
|
+
this.hostAriaHidden = true;
|
|
179
184
|
}
|
|
180
185
|
/**
|
|
181
186
|
* Defines the SVG icon, which will be rendered. All [Kendo UI SVG Icons](slug:svgicon_list) are supported.
|
|
@@ -217,7 +222,7 @@ class SVGIconComponent extends IconBaseDirective {
|
|
|
217
222
|
}
|
|
218
223
|
}
|
|
219
224
|
SVGIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SVGIconComponent, deps: [{ token: i1.DomSanitizer }, { token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
220
|
-
SVGIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SVGIconComponent, selector: "kendo-svg-icon", inputs: { icon: "icon" }, host: { properties: { "class.k-svg-icon": "this.hostClass" } }, exportAs: ["kendoSVGIcon"], usesInheritance: true, ngImport: i0, template: `
|
|
225
|
+
SVGIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SVGIconComponent, selector: "kendo-svg-icon", inputs: { icon: "icon" }, host: { properties: { "class.k-svg-icon": "this.hostClass", "attr.aria-hidden": "this.hostAriaHidden" } }, exportAs: ["kendoSVGIcon"], usesInheritance: true, ngImport: i0, template: `
|
|
221
226
|
<svg [style.pointerEvents]="'none'" *ngIf="visible" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
222
227
|
[attr.viewBox]="icon.viewBox" [innerHTML]="content">
|
|
223
228
|
</svg>`, isInline: true, directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
@@ -234,6 +239,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
234
239
|
}], ctorParameters: function () { return [{ type: i1.DomSanitizer }, { type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { hostClass: [{
|
|
235
240
|
type: HostBinding,
|
|
236
241
|
args: ['class.k-svg-icon']
|
|
242
|
+
}], hostAriaHidden: [{
|
|
243
|
+
type: HostBinding,
|
|
244
|
+
args: ['attr.aria-hidden']
|
|
237
245
|
}], icon: [{
|
|
238
246
|
type: Input
|
|
239
247
|
}] } });
|
|
@@ -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: 1676045994,
|
|
23
|
+
version: '11.2.0-develop.18',
|
|
24
24
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
25
25
|
};
|
|
26
26
|
|
|
@@ -133,6 +133,7 @@ class IconComponent extends IconBaseDirective {
|
|
|
133
133
|
this.element = element;
|
|
134
134
|
this.renderer = renderer;
|
|
135
135
|
this.hostClass = true;
|
|
136
|
+
this.hostAriaHidden = true;
|
|
136
137
|
}
|
|
137
138
|
/**
|
|
138
139
|
* Defines the name for an existing icon in a Kendo UI theme, which will be rendered.
|
|
@@ -151,7 +152,7 @@ class IconComponent extends IconBaseDirective {
|
|
|
151
152
|
}
|
|
152
153
|
}
|
|
153
154
|
IconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IconComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
154
|
-
IconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IconComponent, selector: "kendo-icon", inputs: { name: "name" }, host: { properties: { "class.k-icon": "this.hostClass" } }, exportAs: ["kendoIcon"], usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
155
|
+
IconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IconComponent, selector: "kendo-icon", inputs: { name: "name" }, host: { properties: { "class.k-icon": "this.hostClass", "attr.aria-hidden": "this.hostAriaHidden" } }, exportAs: ["kendoIcon"], usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
155
156
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IconComponent, decorators: [{
|
|
156
157
|
type: Component,
|
|
157
158
|
args: [{
|
|
@@ -162,6 +163,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
162
163
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { hostClass: [{
|
|
163
164
|
type: HostBinding,
|
|
164
165
|
args: ['class.k-icon']
|
|
166
|
+
}], hostAriaHidden: [{
|
|
167
|
+
type: HostBinding,
|
|
168
|
+
args: ['attr.aria-hidden']
|
|
165
169
|
}], name: [{
|
|
166
170
|
type: Input
|
|
167
171
|
}] } });
|
|
@@ -176,6 +180,7 @@ class SVGIconComponent extends IconBaseDirective {
|
|
|
176
180
|
this.element = element;
|
|
177
181
|
this.renderer = renderer;
|
|
178
182
|
this.hostClass = true;
|
|
183
|
+
this.hostAriaHidden = true;
|
|
179
184
|
}
|
|
180
185
|
/**
|
|
181
186
|
* Defines the SVG icon, which will be rendered. All [Kendo UI SVG Icons](slug:svgicon_list) are supported.
|
|
@@ -217,7 +222,7 @@ class SVGIconComponent extends IconBaseDirective {
|
|
|
217
222
|
}
|
|
218
223
|
}
|
|
219
224
|
SVGIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SVGIconComponent, deps: [{ token: i1.DomSanitizer }, { token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
220
|
-
SVGIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SVGIconComponent, selector: "kendo-svg-icon", inputs: { icon: "icon" }, host: { properties: { "class.k-svg-icon": "this.hostClass" } }, exportAs: ["kendoSVGIcon"], usesInheritance: true, ngImport: i0, template: `
|
|
225
|
+
SVGIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SVGIconComponent, selector: "kendo-svg-icon", inputs: { icon: "icon" }, host: { properties: { "class.k-svg-icon": "this.hostClass", "attr.aria-hidden": "this.hostAriaHidden" } }, exportAs: ["kendoSVGIcon"], usesInheritance: true, ngImport: i0, template: `
|
|
221
226
|
<svg [style.pointerEvents]="'none'" *ngIf="visible" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
222
227
|
[attr.viewBox]="icon.viewBox" [innerHTML]="content">
|
|
223
228
|
</svg>`, isInline: true, directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
@@ -234,6 +239,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
234
239
|
}], ctorParameters: function () { return [{ type: i1.DomSanitizer }, { type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { hostClass: [{
|
|
235
240
|
type: HostBinding,
|
|
236
241
|
args: ['class.k-svg-icon']
|
|
242
|
+
}], hostAriaHidden: [{
|
|
243
|
+
type: HostBinding,
|
|
244
|
+
args: ['attr.aria-hidden']
|
|
237
245
|
}], icon: [{
|
|
238
246
|
type: Input
|
|
239
247
|
}] } });
|
package/icon/icon.component.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export declare class IconComponent extends IconBaseDirective {
|
|
|
12
12
|
element: ElementRef;
|
|
13
13
|
renderer: Renderer2;
|
|
14
14
|
hostClass: boolean;
|
|
15
|
+
hostAriaHidden: boolean;
|
|
15
16
|
/**
|
|
16
17
|
* Defines the name for an existing icon in a Kendo UI theme, which will be rendered.
|
|
17
18
|
* All [Kendo UI Icons](slug:icon_list) are supported.
|
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.18",
|
|
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.18",
|
|
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.18"
|
|
31
31
|
},
|
|
32
32
|
"schematics": "./schematics/collection.json",
|
|
33
33
|
"module": "fesm2015/progress-kendo-angular-icons.mjs",
|
|
@@ -15,6 +15,7 @@ export declare class SVGIconComponent extends IconBaseDirective implements OnIni
|
|
|
15
15
|
element: ElementRef;
|
|
16
16
|
renderer: Renderer2;
|
|
17
17
|
hostClass: boolean;
|
|
18
|
+
hostAriaHidden: boolean;
|
|
18
19
|
/**
|
|
19
20
|
* Defines the SVG icon, which will be rendered. All [Kendo UI SVG Icons](slug:svgicon_list) are supported.
|
|
20
21
|
*/
|