@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/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
- * // Import the app component
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
- * // Define the app module
26
- * _@NgModule({
27
- * declarations: [AppComponent], // declare app component
28
- * imports: [BrowserModule, IconModule], // import Icon module
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
- * // Import the app component
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
- * // Define the app module
27
- * _@NgModule({
28
- * declarations: [AppComponent], // declare app component
29
- * imports: [BrowserModule, IconsModule], // import Icons module
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-develop.2",
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": 1749196419,
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-develop.2",
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-develop.2"
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 Kendo UI SVG Icon component for Angular.
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
- * Defines the SVG icon, which will be rendered. All [Kendo UI SVG Icons](slug:svgicon_list) are supported.
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;
@@ -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
- * // Import the app component
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
- * // Define the app module
26
- * _@NgModule({
27
- * declarations: [AppComponent], // declare app component
28
- * imports: [BrowserModule, SVGIconModule], // import SVG Icon module
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 {