@progress/kendo-angular-icons 19.1.1-develop.2 → 19.1.1
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/common/icon-base.d.ts +3 -28
- package/common/icon-settings.d.ts +5 -5
- package/common/icon-settings.service.d.ts +15 -4
- package/common/icons.service.d.ts +9 -11
- package/common/models/flip.d.ts +6 -6
- package/common/models/icon-settings.d.ts +26 -0
- package/common/models/icon-type.d.ts +4 -0
- package/common/models/size.d.ts +10 -10
- package/common/models/theme-color.d.ts +13 -13
- package/directives.d.ts +45 -3
- package/esm2022/common/icon-base.mjs +3 -28
- package/esm2022/common/icon-settings.mjs +5 -5
- package/esm2022/common/icon-settings.service.mjs +15 -4
- package/esm2022/common/icons.service.mjs +9 -11
- package/esm2022/directives.mjs +45 -3
- package/esm2022/icon/icon.component.mjs +7 -3
- package/esm2022/icon-wrapper/icon-wrapper.component.mjs +6 -19
- package/esm2022/icon.module.mjs +8 -21
- package/esm2022/icons.module.mjs +8 -21
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/svg-icon/svg-icon.component.mjs +7 -2
- package/esm2022/svg-icon.module.mjs +8 -21
- package/fesm2022/progress-kendo-angular-icons.mjs +123 -140
- package/icon/icon.component.d.ts +7 -3
- package/icon-wrapper/icon-wrapper.component.d.ts +6 -19
- package/icon.module.d.ts +8 -21
- package/icons.module.d.ts +8 -21
- package/package.json +4 -4
- package/svg-icon/svg-icon.component.d.ts +7 -2
- package/svg-icon.module.d.ts +8 -21
package/icon.module.d.ts
CHANGED
|
@@ -5,34 +5,21 @@
|
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
import * as i1 from "./icon/icon.component";
|
|
7
7
|
/**
|
|
8
|
-
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
9
|
-
* definition for the Icon component.
|
|
8
|
+
* Represents the [`NgModule`](link:site.data.urls.angular['ngmoduleapi']) definition for the Icon component.
|
|
10
9
|
*
|
|
11
10
|
* @example
|
|
12
|
-
*
|
|
13
|
-
* ```ts-no-run
|
|
14
|
-
* // Import the Icon module
|
|
15
|
-
* import { IconModule } from '@progress/kendo-angular-icons';
|
|
16
|
-
*
|
|
17
|
-
* // The browser platform with a compiler
|
|
18
|
-
* import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
|
19
|
-
*
|
|
11
|
+
* ```typescript
|
|
20
12
|
* import { NgModule } from '@angular/core';
|
|
21
|
-
*
|
|
22
|
-
*
|
|
13
|
+
* import { IconModule } from '@progress/kendo-angular-icons';
|
|
14
|
+
* import { BrowserModule } from '@angular/platform-browser';
|
|
23
15
|
* import { AppComponent } from './app.component';
|
|
24
16
|
*
|
|
25
|
-
*
|
|
26
|
-
*
|
|
27
|
-
*
|
|
28
|
-
*
|
|
29
|
-
* bootstrap: [AppComponent]
|
|
17
|
+
* @NgModule({
|
|
18
|
+
* declarations: [AppComponent],
|
|
19
|
+
* imports: [BrowserModule, IconModule],
|
|
20
|
+
* bootstrap: [AppComponent]
|
|
30
21
|
* })
|
|
31
22
|
* export class AppModule {}
|
|
32
|
-
*
|
|
33
|
-
* // Compile and launch the module
|
|
34
|
-
* platformBrowserDynamic().bootstrapModule(AppModule);
|
|
35
|
-
*
|
|
36
23
|
* ```
|
|
37
24
|
*/
|
|
38
25
|
export declare class IconModule {
|
package/icons.module.d.ts
CHANGED
|
@@ -6,34 +6,21 @@ import * as i0 from "@angular/core";
|
|
|
6
6
|
import * as i1 from "./icon/icon.component";
|
|
7
7
|
import * as i2 from "./svg-icon/svg-icon.component";
|
|
8
8
|
/**
|
|
9
|
-
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
10
|
-
* definition for the Icons components.
|
|
9
|
+
* Represents the [`NgModule`](link:site.data.urls.angular['ngmoduleapi']) definition for the Icons components.
|
|
11
10
|
*
|
|
12
11
|
* @example
|
|
13
|
-
*
|
|
14
|
-
* ```ts-no-run
|
|
15
|
-
* // Import the Icons module
|
|
16
|
-
* import { IconsModule } from '@progress/kendo-angular-icons';
|
|
17
|
-
*
|
|
18
|
-
* // The browser platform with a compiler
|
|
19
|
-
* import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
|
20
|
-
*
|
|
12
|
+
* ```typescript
|
|
21
13
|
* import { NgModule } from '@angular/core';
|
|
22
|
-
*
|
|
23
|
-
*
|
|
14
|
+
* import { IconsModule } from '@progress/kendo-angular-icons';
|
|
15
|
+
* import { BrowserModule } from '@angular/platform-browser';
|
|
24
16
|
* import { AppComponent } from './app.component';
|
|
25
17
|
*
|
|
26
|
-
*
|
|
27
|
-
*
|
|
28
|
-
*
|
|
29
|
-
*
|
|
30
|
-
* bootstrap: [AppComponent]
|
|
18
|
+
* @NgModule({
|
|
19
|
+
* declarations: [AppComponent],
|
|
20
|
+
* imports: [BrowserModule, IconsModule],
|
|
21
|
+
* bootstrap: [AppComponent]
|
|
31
22
|
* })
|
|
32
23
|
* export class AppModule {}
|
|
33
|
-
*
|
|
34
|
-
* // Compile and launch the module
|
|
35
|
-
* platformBrowserDynamic().bootstrapModule(AppModule);
|
|
36
|
-
*
|
|
37
24
|
* ```
|
|
38
25
|
*/
|
|
39
26
|
export declare class IconsModule {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-icons",
|
|
3
|
-
"version": "19.1.1
|
|
3
|
+
"version": "19.1.1",
|
|
4
4
|
"description": "Kendo UI Angular component starter template",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"package": {
|
|
18
18
|
"productName": "Kendo UI for Angular",
|
|
19
19
|
"productCode": "KENDOUIANGULAR",
|
|
20
|
-
"publishDate":
|
|
20
|
+
"publishDate": 1749539887,
|
|
21
21
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
22
22
|
}
|
|
23
23
|
},
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"@angular/platform-browser": "16 - 20",
|
|
29
29
|
"@progress/kendo-licensing": "^1.5.0",
|
|
30
30
|
"@progress/kendo-svg-icons": "^4.0.0",
|
|
31
|
-
"@progress/kendo-angular-common": "19.1.1
|
|
31
|
+
"@progress/kendo-angular-common": "19.1.1",
|
|
32
32
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"tslib": "^2.3.1",
|
|
36
|
-
"@progress/kendo-angular-schematics": "19.1.1
|
|
36
|
+
"@progress/kendo-angular-schematics": "19.1.1"
|
|
37
37
|
},
|
|
38
38
|
"schematics": "./schematics/collection.json",
|
|
39
39
|
"module": "fesm2022/progress-kendo-angular-icons.mjs",
|
|
@@ -8,7 +8,12 @@ import { IconBaseDirective } from '../common/icon-base';
|
|
|
8
8
|
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
/**
|
|
11
|
-
* Represents the
|
|
11
|
+
* Represents the `SVGIconComponent` for Angular.
|
|
12
|
+
*
|
|
13
|
+
* @example
|
|
14
|
+
* ```html
|
|
15
|
+
* <kendo-svg-icon [icon]="svgIcon"></kendo-svg-icon>
|
|
16
|
+
* ```
|
|
12
17
|
*/
|
|
13
18
|
export declare class SVGIconComponent extends IconBaseDirective implements OnInit {
|
|
14
19
|
private domSanitizer;
|
|
@@ -17,7 +22,7 @@ export declare class SVGIconComponent extends IconBaseDirective implements OnIni
|
|
|
17
22
|
hostClass: boolean;
|
|
18
23
|
hostAriaHidden: boolean;
|
|
19
24
|
/**
|
|
20
|
-
*
|
|
25
|
+
* Sets the `SVGIcon` to render. Supports all [Kendo UI SVG Icons](slug:svgicon_list).
|
|
21
26
|
*/
|
|
22
27
|
set icon(icon: SVGIcon);
|
|
23
28
|
get icon(): SVGIcon;
|
package/svg-icon.module.d.ts
CHANGED
|
@@ -5,34 +5,21 @@
|
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
import * as i1 from "./svg-icon/svg-icon.component";
|
|
7
7
|
/**
|
|
8
|
-
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
9
|
-
* definition for the SVG Icon component.
|
|
8
|
+
* Represents the [`NgModule`](link:site.data.urls.angular['ngmoduleapi']) definition for the SVG Icon component.
|
|
10
9
|
*
|
|
11
10
|
* @example
|
|
12
|
-
*
|
|
13
|
-
* ```ts-no-run
|
|
14
|
-
* // Import the SVG Icon module
|
|
15
|
-
* import { SVGIconModule } from '@progress/kendo-angular-icons';
|
|
16
|
-
*
|
|
17
|
-
* // The browser platform with a compiler
|
|
18
|
-
* import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
|
19
|
-
*
|
|
11
|
+
* ```typescript
|
|
20
12
|
* import { NgModule } from '@angular/core';
|
|
21
|
-
*
|
|
22
|
-
*
|
|
13
|
+
* import { SVGIconModule } from '@progress/kendo-angular-icons';
|
|
14
|
+
* import { BrowserModule } from '@angular/platform-browser';
|
|
23
15
|
* import { AppComponent } from './app.component';
|
|
24
16
|
*
|
|
25
|
-
*
|
|
26
|
-
*
|
|
27
|
-
*
|
|
28
|
-
*
|
|
29
|
-
* bootstrap: [AppComponent]
|
|
17
|
+
* @NgModule({
|
|
18
|
+
* declarations: [AppComponent],
|
|
19
|
+
* imports: [BrowserModule, SVGIconModule],
|
|
20
|
+
* bootstrap: [AppComponent]
|
|
30
21
|
* })
|
|
31
22
|
* export class AppModule {}
|
|
32
|
-
*
|
|
33
|
-
* // Compile and launch the module
|
|
34
|
-
* platformBrowserDynamic().bootstrapModule(AppModule);
|
|
35
|
-
*
|
|
36
23
|
* ```
|
|
37
24
|
*/
|
|
38
25
|
export declare class SVGIconModule {
|