@progress/kendo-angular-icons 22.1.0-develop.8 → 23.0.0-develop.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.
@@ -6,7 +6,7 @@ import { InjectionToken } from '@angular/core';
6
6
  import { IconSettings } from './models';
7
7
  /**
8
8
  * Represents the token for the `IconSettings` of Kendo UI for Angular components.
9
- * Use this token to configure icon settings. ([See example.](slug:icon_settings#toc-icons-configuration))
9
+ * Use this token to configure icon settings. ([See example.](https://www.telerik.com/kendo-angular-ui/components/icons/icon-settings#icons-configuration))
10
10
  *
11
11
  * @example
12
12
  * ```typescript
@@ -25,7 +25,7 @@ export declare class IconSettingsService {
25
25
  /**
26
26
  * Notifies subscribers about changes in the icon settings.
27
27
  *
28
- * @param iconSettings - (Optional) Sets a new value for the [icon settings token]({% slug api_icons_icon_settings %}).
28
+ * @param iconSettings - (Optional) Sets a new value for the [icon settings token](https://www.telerik.com/kendo-angular-ui/components/icons/api/icon_settings).
29
29
  * @example
30
30
  * ```typescript
31
31
  * iconSettingsService.notify({ size: 'large' });
@@ -33,7 +33,7 @@ export declare class IconSettingsService {
33
33
  */
34
34
  notify(iconSettings?: IconSettings): void;
35
35
  /**
36
- * Returns the [`SVGIcon`](slug:api_icons_svgicon) object for the provided key.
36
+ * Returns the [`SVGIcon`](https://www.telerik.com/kendo-angular-ui/components/icons/api/svgicon) object for the provided key.
37
37
  * Override in a custom service to provide custom SVG icons.
38
38
  *
39
39
  * @hidden
@@ -42,7 +42,7 @@ export declare class IconsService implements OnDestroy {
42
42
  get iconSettings(): IconSettings;
43
43
  ngOnDestroy(): void;
44
44
  /**
45
- * Returns the [`SVGIcon`](slug:api_icons_svgicon) object for the provided key.
45
+ * Returns the [`SVGIcon`](https://www.telerik.com/kendo-angular-ui/components/icons/api/svgicon) object for the provided key.
46
46
  * Override in a custom service to provide custom SVG icons.
47
47
  * @hidden
48
48
  */
@@ -20,7 +20,7 @@ const packageMetadata = {
20
20
  productCode: 'KENDOUIANGULAR',
21
21
  productCodes: ['KENDOUIANGULAR'],
22
22
  publishDate: 0,
23
- version: '22.1.0-develop.8',
23
+ version: '23.0.0-develop.1',
24
24
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
25
25
  };
26
26
 
@@ -114,8 +114,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
114
114
  }] } });
115
115
 
116
116
  /**
117
- * Represents the [Kendo UI Icon component for Angular](slug:overview_icon).
118
- * Used to display icons from the [Kendo UI Icons](slug:icon_list) collection.
117
+ * Represents the [Kendo UI Icon component for Angular](https://www.telerik.com/kendo-angular-ui/components/icons/icon).
118
+ * Used to display icons from the [Kendo UI Icons](https://www.telerik.com/kendo-angular-ui/components/icons/icon/icon-list) collection.
119
119
  *
120
120
  * @example
121
121
  * ```html
@@ -128,7 +128,7 @@ class IconComponent extends IconBaseDirective {
128
128
  hostClass = true;
129
129
  hostAriaHidden = true;
130
130
  /**
131
- * Sets the `Icon` to render. Supports all [Kendo UI Icons](slug:icon_list).
131
+ * Sets the `Icon` to render. Supports all [Kendo UI Icons](https://www.telerik.com/kendo-angular-ui/components/icons/icon/icon-list).
132
132
  */
133
133
  set name(name) {
134
134
  if (isDocumentAvailable()) {
@@ -176,8 +176,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
176
176
 
177
177
  const areSame = (i1, i2) => i1?.name === i2?.name && i1.content === i2.content && i1.viewBox === i2.viewBox;
178
178
  /**
179
- * Represents the [Kendo UI SVG Icon component for Angular](slug:overview_svgicon).
180
- * Used to display icons from the [Kendo UI SVG Icons](slug:svgicon_list) collection.
179
+ * Represents the [Kendo UI SVG Icon component for Angular](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon).
180
+ * Used to display icons from the [Kendo UI SVG Icons](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) collection.
181
181
  *
182
182
  * @example
183
183
  * ```ts
@@ -204,7 +204,7 @@ class SVGIconComponent extends IconBaseDirective {
204
204
  hostClass = true;
205
205
  hostAriaHidden = true;
206
206
  /**
207
- * Sets the `SVGIcon` to render. Supports all [Kendo UI SVG Icons](slug:svgicon_list).
207
+ * Sets the `SVGIcon` to render. Supports all [Kendo UI SVG Icons](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list).
208
208
  */
209
209
  set icon(icon) {
210
210
  const element = this.element.nativeElement;
@@ -311,7 +311,7 @@ class IconSettingsService {
311
311
  /**
312
312
  * Notifies subscribers about changes in the icon settings.
313
313
  *
314
- * @param iconSettings - (Optional) Sets a new value for the [icon settings token]({% slug api_icons_icon_settings %}).
314
+ * @param iconSettings - (Optional) Sets a new value for the [icon settings token](https://www.telerik.com/kendo-angular-ui/components/icons/api/icon_settings).
315
315
  * @example
316
316
  * ```typescript
317
317
  * iconSettingsService.notify({ size: 'large' });
@@ -321,7 +321,7 @@ class IconSettingsService {
321
321
  this.changes.next(iconSettings);
322
322
  }
323
323
  /**
324
- * Returns the [`SVGIcon`](slug:api_icons_svgicon) object for the provided key.
324
+ * Returns the [`SVGIcon`](https://www.telerik.com/kendo-angular-ui/components/icons/api/svgicon) object for the provided key.
325
325
  * Override in a custom service to provide custom SVG icons.
326
326
  *
327
327
  * @hidden
@@ -347,7 +347,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
347
347
 
348
348
  /**
349
349
  * Represents the token for the `IconSettings` of Kendo UI for Angular components.
350
- * Use this token to configure icon settings. ([See example.](slug:icon_settings#toc-icons-configuration))
350
+ * Use this token to configure icon settings. ([See example.](https://www.telerik.com/kendo-angular-ui/components/icons/icon-settings#icons-configuration))
351
351
  *
352
352
  * @example
353
353
  * ```typescript
@@ -411,7 +411,7 @@ class IconsService {
411
411
  this.subs.unsubscribe();
412
412
  }
413
413
  /**
414
- * Returns the [`SVGIcon`](slug:api_icons_svgicon) object for the provided key.
414
+ * Returns the [`SVGIcon`](https://www.telerik.com/kendo-angular-ui/components/icons/api/svgicon) object for the provided key.
415
415
  * Override in a custom service to provide custom SVG icons.
416
416
  * @hidden
417
417
  */
@@ -454,11 +454,11 @@ class IconWrapperComponent {
454
454
  hostClass = true;
455
455
  /**
456
456
  * Sets the name for an existing font icon in a Kendo UI theme to render.
457
- * Supports all [Kendo UI Icons](slug:icons#icons-list).
457
+ * Supports all [Kendo UI Icons](https://www.telerik.com/kendo-angular-ui/components/styling/icons#icons-list).
458
458
  */
459
459
  name;
460
460
  /**
461
- * Sets the [SVGIcon](slug:api_icons_svgicon) to render.
461
+ * Sets the [SVGIcon](https://www.telerik.com/kendo-angular-ui/components/icons/api/svgicon) to render.
462
462
  */
463
463
  svgIcon;
464
464
  /**
@@ -6,8 +6,8 @@ import { ElementRef, Renderer2 } from '@angular/core';
6
6
  import { IconBaseDirective } from '../common/icon-base';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
- * Represents the [Kendo UI Icon component for Angular](slug:overview_icon).
10
- * Used to display icons from the [Kendo UI Icons](slug:icon_list) collection.
9
+ * Represents the [Kendo UI Icon component for Angular](https://www.telerik.com/kendo-angular-ui/components/icons/icon).
10
+ * Used to display icons from the [Kendo UI Icons](https://www.telerik.com/kendo-angular-ui/components/icons/icon/icon-list) collection.
11
11
  *
12
12
  * @example
13
13
  * ```html
@@ -20,7 +20,7 @@ export declare class IconComponent extends IconBaseDirective {
20
20
  hostClass: boolean;
21
21
  hostAriaHidden: boolean;
22
22
  /**
23
- * Sets the `Icon` to render. Supports all [Kendo UI Icons](slug:icon_list).
23
+ * Sets the `Icon` to render. Supports all [Kendo UI Icons](https://www.telerik.com/kendo-angular-ui/components/icons/icon/icon-list).
24
24
  */
25
25
  set name(name: string);
26
26
  get name(): string;
@@ -16,11 +16,11 @@ export declare class IconWrapperComponent implements OnDestroy {
16
16
  hostClass: boolean;
17
17
  /**
18
18
  * Sets the name for an existing font icon in a Kendo UI theme to render.
19
- * Supports all [Kendo UI Icons](slug:icons#icons-list).
19
+ * Supports all [Kendo UI Icons](https://www.telerik.com/kendo-angular-ui/components/styling/icons#icons-list).
20
20
  */
21
21
  name: string;
22
22
  /**
23
- * Sets the [SVGIcon](slug:api_icons_svgicon) to render.
23
+ * Sets the [SVGIcon](https://www.telerik.com/kendo-angular-ui/components/icons/api/svgicon) to render.
24
24
  */
25
25
  svgIcon: SVGIcon;
26
26
  /**
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1769420798,
11
- "version": "22.1.0-develop.8",
10
+ "publishDate": 1770286789,
11
+ "version": "23.0.0-develop.1",
12
12
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
13
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-icons",
3
- "version": "22.1.0-develop.8",
3
+ "version": "23.0.0-develop.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": 1769420798,
20
+ "publishDate": 1770286789,
21
21
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
22
22
  }
23
23
  },
@@ -26,14 +26,14 @@
26
26
  "@angular/common": "19 - 21",
27
27
  "@angular/core": "19 - 21",
28
28
  "@angular/platform-browser": "19 - 21",
29
- "@progress/kendo-licensing": "^1.7.0",
29
+ "@progress/kendo-licensing": "^1.10.0",
30
30
  "@progress/kendo-svg-icons": "^4.0.0",
31
- "@progress/kendo-angular-common": "22.1.0-develop.8",
31
+ "@progress/kendo-angular-common": "23.0.0-develop.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": "22.1.0-develop.8"
36
+ "@progress/kendo-angular-schematics": "23.0.0-develop.1"
37
37
  },
38
38
  "schematics": "./schematics/collection.json",
39
39
  "module": "fesm2022/progress-kendo-angular-icons.mjs",
@@ -8,8 +8,8 @@ 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](slug:overview_svgicon).
12
- * Used to display icons from the [Kendo UI SVG Icons](slug:svgicon_list) collection.
11
+ * Represents the [Kendo UI SVG Icon component for Angular](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon).
12
+ * Used to display icons from the [Kendo UI SVG Icons](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) collection.
13
13
  *
14
14
  * @example
15
15
  * ```ts
@@ -36,7 +36,7 @@ export declare class SVGIconComponent extends IconBaseDirective implements OnIni
36
36
  hostClass: boolean;
37
37
  hostAriaHidden: boolean;
38
38
  /**
39
- * Sets the `SVGIcon` to render. Supports all [Kendo UI SVG Icons](slug:svgicon_list).
39
+ * Sets the `SVGIcon` to render. Supports all [Kendo UI SVG Icons](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list).
40
40
  */
41
41
  set icon(icon: SVGIcon);
42
42
  get icon(): SVGIcon;