@progress/kendo-angular-icons 24.2.2 → 25.0.0-develop.12

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/index.d.ts CHANGED
@@ -2,15 +2,503 @@
2
2
  * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- export { IconComponent } from './icon/icon.component';
6
- export { SVGIconComponent } from './svg-icon/svg-icon.component';
7
- export { IconWrapperComponent } from './icon-wrapper/icon-wrapper.component';
8
- export { IconModule } from './icon.module';
9
- export { SVGIconModule } from './svg-icon.module';
10
- export { IconsModule } from './icons.module';
11
- export { IconFlip, IconSize, IconThemeColor, IconType, IconSettings, IconVariant } from './common/models';
12
- export { IconsService } from './common/icons.service';
13
- export { IconSettingsService } from './common/icon-settings.service';
14
- export { ICON_SETTINGS } from './common/icon-settings';
5
+ import * as i0 from '@angular/core';
6
+ import { ElementRef, Renderer2, OnInit, OnDestroy, InjectionToken } from '@angular/core';
7
+ import { SafeHtml, DomSanitizer } from '@angular/platform-browser';
8
+ import { SVGIcon } from '@progress/kendo-svg-icons';
15
9
  export { SVGIcon } from '@progress/kendo-svg-icons';
16
- export * from './directives';
10
+ import { Subject } from 'rxjs';
11
+
12
+ /**
13
+ * Specifies the `IconThemeColor` of the icon.
14
+ *
15
+ * Use this type to set the icon theme color. The possible values are:
16
+ * - `inherit` (Default)—Applies coloring based on the current color.
17
+ * - `primary` —Applies coloring based on primary theme color.
18
+ * - `secondary`—Applies coloring based on secondary theme color.
19
+ * - `tertiary`— Applies coloring based on tertiary theme color.
20
+ * - `info`—Applies coloring based on info theme color.
21
+ * - `success`— Applies coloring based on success theme color.
22
+ * - `warning`— Applies coloring based on warning theme color.
23
+ * - `error`— Applies coloring based on error theme color.
24
+ * - `inverse`— Applies coloring based on inverse theme color.
25
+ *
26
+ */
27
+ type IconThemeColor = 'inherit' | 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'inverse';
28
+
29
+ /**
30
+ * Specifies the `IconSize` of the icon.
31
+ *
32
+ * Use this type to set the icon size. The possible values are:
33
+ * - `default` (Default)—Font-size: 16px; Width: 16px; Height: 16px.
34
+ * - `xsmall`—Font-size: 12px; Width: 12px; Height: 12px.
35
+ * - `small`—Font-size: 14px; Width: 14px; Height: 14px.
36
+ * - `medium`—Font-size: 16px; Width: 16px; Height: 16px.
37
+ * - `large`—Font-size: 20px; Width: 20px; Height: 20px.
38
+ * - `xlarge`—Font-size: 24px; Width: 24px; Height: 24px.
39
+ * - `xxlarge`—Font-size: 32px; Width: 32px; Height: 32px.
40
+ * - `xxxlarge`—Font-size: 48px; Width: 48px; Height: 48px.
41
+ *
42
+ */
43
+ type IconSize = 'default' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge' | 'xxxlarge';
44
+
45
+ /**
46
+ * Specifies the `IconFlip` direction.
47
+ *
48
+ * Use this type to control how to flip an icon. The possible values are:
49
+ * - `default`: No flip applied.
50
+ * - `horizontal`: Flip the icon horizontally.
51
+ * - `vertical`: Flip the icon vertically.
52
+ * - `both`: Flip the icon both horizontally and vertically.
53
+ *
54
+ */
55
+ type IconFlip = 'default' | 'horizontal' | 'vertical' | 'both';
56
+
57
+ /**
58
+ * @hidden
59
+ */
60
+ declare abstract class IconBaseDirective {
61
+ element: ElementRef;
62
+ renderer: Renderer2;
63
+ get horizontalFlip(): boolean;
64
+ get verticalFlip(): boolean;
65
+ /**
66
+ * Flips the icon horizontally, vertically, or in both directions.
67
+ */
68
+ flip: IconFlip;
69
+ /**
70
+ * Sets the `IconThemeColor` for the icon. Use this property to apply a theme color.
71
+ */
72
+ set themeColor(themeColor: IconThemeColor);
73
+ get themeColor(): IconThemeColor;
74
+ /**
75
+ * Sets the `IconSize` for the icon. Use this property to change the icon size.
76
+ */
77
+ set size(size: IconSize);
78
+ get size(): IconSize;
79
+ _themeColor: IconThemeColor;
80
+ _size: IconSize;
81
+ constructor(element: ElementRef, renderer: Renderer2);
82
+ static ɵfac: i0.ɵɵFactoryDeclaration<IconBaseDirective, never>;
83
+ static ɵdir: i0.ɵɵDirectiveDeclaration<IconBaseDirective, "[kendoIconBase]", never, { "flip": { "alias": "flip"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
84
+ }
85
+
86
+ /**
87
+ * Represents the [Kendo UI Icon component for Angular](https://www.telerik.com/kendo-angular-ui/components/icons/icon).
88
+ * Used to display icons from the [Kendo UI Icons](https://www.telerik.com/kendo-angular-ui/components/icons/icon/icon-list) collection.
89
+ *
90
+ * @example
91
+ * ```html
92
+ * <kendo-icon name="home"></kendo-icon>
93
+ * ```
94
+ */
95
+ declare class IconComponent extends IconBaseDirective {
96
+ element: ElementRef;
97
+ renderer: Renderer2;
98
+ hostClass: boolean;
99
+ hostAriaHidden: boolean;
100
+ /**
101
+ * Sets the `Icon` to render. Supports all [Kendo UI Icons](https://www.telerik.com/kendo-angular-ui/components/icons/icon/icon-list).
102
+ */
103
+ set name(name: string);
104
+ get name(): string;
105
+ private _name;
106
+ constructor(element: ElementRef, renderer: Renderer2);
107
+ static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
108
+ static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "kendo-icon", ["kendoIcon"], { "name": { "alias": "name"; "required": false; }; }, {}, never, never, true, never>;
109
+ }
110
+
111
+ /**
112
+ * Specifies the style variant of an SVG icon.
113
+ *
114
+ */
115
+ type IconVariant = 'solid' | 'outline' | 'duotone';
116
+
117
+ /**
118
+ * Represents the [Kendo UI SVG Icon component for Angular](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon).
119
+ * Used to display icons from the [Kendo UI SVG Icons](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) collection.
120
+ *
121
+ * @example
122
+ * ```ts
123
+ * import { KENDO_ICONS } from "@progress/kendo-angular-icons";
124
+ * import { paperclipIcon } from "@progress/kendo-svg-icons";
125
+ *
126
+ * @Component({
127
+ * selector: "my-app",
128
+ * imports: [KENDO_ICONS],
129
+ * template: `
130
+ * <kendo-svg-icon [icon]="paperclipIcon"></kendo-svg-icon>
131
+ * `,
132
+ * providers: [],
133
+ * })
134
+ * export class AppComponent {
135
+ * public paperclipIcon = paperclipIcon;
136
+ * }
137
+ * ```
138
+ */
139
+ declare class SVGIconComponent extends IconBaseDirective implements OnInit {
140
+ private domSanitizer;
141
+ element: ElementRef;
142
+ renderer: Renderer2;
143
+ hostClass: boolean;
144
+ hostAriaHidden: boolean;
145
+ /**
146
+ * Sets the `SVGIcon` to render. Supports all [Kendo UI SVG Icons](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list).
147
+ */
148
+ set icon(icon: SVGIcon);
149
+ get icon(): SVGIcon;
150
+ /**
151
+ * Sets the style variant of the icon.
152
+ *
153
+ * > Requires `@progress/kendo-svg-icons` v5 or later for the `variants` property to be available on icons.
154
+ */
155
+ set variant(variant: IconVariant);
156
+ get variant(): IconVariant;
157
+ get content(): SafeHtml;
158
+ get visible(): boolean;
159
+ private _icon;
160
+ private _variant;
161
+ private readonly _content;
162
+ private readonly _visible;
163
+ constructor(domSanitizer: DomSanitizer, element: ElementRef, renderer: Renderer2);
164
+ ngOnInit(): void;
165
+ private verifyIconProperty;
166
+ static ɵfac: i0.ɵɵFactoryDeclaration<SVGIconComponent, never>;
167
+ static ɵcmp: i0.ɵɵComponentDeclaration<SVGIconComponent, "kendo-svg-icon, kendo-svgicon", ["kendoSVGIcon"], { "icon": { "alias": "icon"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, never, true, never>;
168
+ }
169
+
170
+ /**
171
+ * Specifies the `IconType` for icons.
172
+ * Use `IconType` to set how the icon renders.
173
+ */
174
+ type IconType = 'font' | 'svg';
175
+
176
+ /**
177
+ * Represents the icon settings for Kendo UI icons.
178
+ * Use the `IconSettings` interface to set the icon `type`, `themeColor`, `size`, and `flip` direction.
179
+ *
180
+ * @example
181
+ * ```typescript
182
+ * const settings: IconSettings = {
183
+ * type: 'svg',
184
+ * themeColor: 'primary',
185
+ * size: 'large',
186
+ * flip: 'horizontal',
187
+ * variant: 'outline'
188
+ * };
189
+ * ```
190
+ */
191
+ interface IconSettings {
192
+ /**
193
+ * Sets the `type` of the icon.
194
+ */
195
+ type?: IconType;
196
+ /**
197
+ * Sets the `themeColor` of the icon.
198
+ */
199
+ themeColor?: IconThemeColor;
200
+ /**
201
+ * Sets the `size` of the icon.
202
+ */
203
+ size?: IconSize;
204
+ /**
205
+ * Sets the `flip` direction of the icon.
206
+ */
207
+ flip?: IconFlip;
208
+ /**
209
+ * Sets the `variant` of the SVG icon.
210
+ * Requires `@progress/kendo-svg-icons` version `5.0.0` or later.
211
+ */
212
+ variant?: IconVariant;
213
+ }
214
+
215
+ /**
216
+ * Represents the service that manages icon settings.
217
+ * Use the `notify` method to update icon settings dynamically.
218
+ *
219
+ * @example
220
+ * ```typescript
221
+ * constructor(private iconSettingsService: IconSettingsService) {}
222
+ *
223
+ * this.iconSettingsService.notify({ themeColor: 'primary' });
224
+ * ```
225
+ */
226
+ declare class IconSettingsService {
227
+ /**
228
+ * @hidden
229
+ */
230
+ readonly changes: Subject<IconSettings>;
231
+ /**
232
+ * Notifies subscribers about changes in the icon settings.
233
+ *
234
+ * @param iconSettings - (Optional) Sets a new value for the [icon settings token](https://www.telerik.com/kendo-angular-ui/components/icons/api/icon_settings).
235
+ * @example
236
+ * ```typescript
237
+ * iconSettingsService.notify({ size: 'large' });
238
+ * ```
239
+ */
240
+ notify(iconSettings?: IconSettings): void;
241
+ /**
242
+ * Returns the [`SVGIcon`](https://www.telerik.com/kendo-angular-ui/components/icons/api/svgicon) object for the provided key.
243
+ * Override in a custom service to provide custom SVG icons.
244
+ *
245
+ * @hidden
246
+ */
247
+ getSvgIcon(_name: string): SVGIcon;
248
+ /**
249
+ * Returns the list of classes to be rendered on the host `SPAN` element of custom font icons.
250
+ * Override in a custom service to provide classes for custom font icons.
251
+ *
252
+ * @hidden
253
+ */
254
+ getCustomFontIconClass(_key: string): string;
255
+ static ɵfac: i0.ɵɵFactoryDeclaration<IconSettingsService, never>;
256
+ static ɵprov: i0.ɵɵInjectableDeclaration<IconSettingsService>;
257
+ }
258
+
259
+ /**
260
+ * Represents the service that manages icon settings.
261
+ * Add this service to the `providers` array when you use it in a standalone component.
262
+ *
263
+ * @example
264
+ * ```typescript
265
+ * import { IconsService } from '@progress/kendo-angular-icons';
266
+ *
267
+ * @Component({
268
+ * selector: 'my-component',
269
+ * standalone: true,
270
+ * imports: [ ... ],
271
+ * providers: [IconsService, { provide: ICON_SETTINGS, useValue: { type: 'font' } }],
272
+ * template: `...`
273
+ * })
274
+ * export class AppComponent {}
275
+ * ```
276
+ */
277
+ declare class IconsService implements OnDestroy {
278
+ private _iconSettings;
279
+ private iconSettingsService;
280
+ /**
281
+ * Notifies subscribers of the initial icon settings and on each call to `notify`.
282
+ * @hidden
283
+ */
284
+ readonly changes: Subject<IconSettings>;
285
+ private subs;
286
+ constructor(_iconSettings: IconSettings, iconSettingsService: IconSettingsService);
287
+ /**
288
+ * @hidden
289
+ */
290
+ get iconSettings(): IconSettings;
291
+ ngOnDestroy(): void;
292
+ /**
293
+ * Returns the [`SVGIcon`](https://www.telerik.com/kendo-angular-ui/components/icons/api/svgicon) object for the provided key.
294
+ * Override in a custom service to provide custom SVG icons.
295
+ * @hidden
296
+ */
297
+ getSvgIcon(name: string): SVGIcon;
298
+ /**
299
+ * Returns the list of classes to be rendered on the host `SPAN` element of custom font icons.
300
+ * Override in a custom service to provide classes for custom font icons.
301
+ * @hidden
302
+ */
303
+ getCustomFontIconClass(key: string): string;
304
+ static ɵfac: i0.ɵɵFactoryDeclaration<IconsService, [{ optional: true; }, { optional: true; }]>;
305
+ static ɵprov: i0.ɵɵInjectableDeclaration<IconsService>;
306
+ }
307
+
308
+ /**
309
+ * @hidden
310
+ */
311
+ declare class IconWrapperComponent implements OnDestroy {
312
+ private iconsService;
313
+ element: ElementRef;
314
+ hostClass: boolean;
315
+ /**
316
+ * Sets the name for an existing font icon in a Kendo UI theme to render.
317
+ * Supports all [Kendo UI Icons](https://www.telerik.com/kendo-angular-ui/components/styling/icons#icons-list).
318
+ */
319
+ set name(value: string);
320
+ get name(): string;
321
+ /**
322
+ * Sets the [SVGIcon](https://www.telerik.com/kendo-angular-ui/components/icons/api/svgicon) to render.
323
+ */
324
+ set svgIcon(value: SVGIcon);
325
+ get svgIcon(): SVGIcon;
326
+ /**
327
+ * Sets an additional class on the internal Icon component.
328
+ */
329
+ set innerCssClass(value: string);
330
+ get innerCssClass(): string;
331
+ /**
332
+ * Sets a custom font icon class using the API of the consuming component.
333
+ */
334
+ set customFontClass(value: string);
335
+ get customFontClass(): string;
336
+ /**
337
+ * Sets the `IconSize` for the icon.
338
+ */
339
+ set size(value: IconSize);
340
+ get size(): IconSize;
341
+ get customClasses(): string;
342
+ private _name;
343
+ private _svgIcon;
344
+ private _innerCssClass;
345
+ private _customFontClass;
346
+ private _size;
347
+ private _iconSettings;
348
+ get iconSettings(): IconSettings;
349
+ private readonly _resolvedSvgIcon;
350
+ get resolvedSvgIcon(): SVGIcon;
351
+ get hasSvgIcon(): boolean;
352
+ get customFontIconClass(): string;
353
+ private subs;
354
+ constructor(iconsService: IconsService, element: ElementRef);
355
+ ngOnDestroy(): void;
356
+ static ɵfac: i0.ɵɵFactoryDeclaration<IconWrapperComponent, never>;
357
+ static ɵcmp: i0.ɵɵComponentDeclaration<IconWrapperComponent, "kendo-icon-wrapper", ["kendoIconWrapper"], { "name": { "alias": "name"; "required": false; }; "svgIcon": { "alias": "svgIcon"; "required": false; }; "innerCssClass": { "alias": "innerCssClass"; "required": false; }; "customFontClass": { "alias": "customFontClass"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
358
+ }
359
+
360
+ /**
361
+ * Represents the [`NgModule`](link:site.data.urls.angular['ngmoduleapi']) definition for the Icon component.
362
+ *
363
+ * @example
364
+ * ```typescript
365
+ * import { NgModule } from '@angular/core';
366
+ * import { IconModule } from '@progress/kendo-angular-icons';
367
+ * import { BrowserModule } from '@angular/platform-browser';
368
+ * import { AppComponent } from './app.component';
369
+ *
370
+ * @NgModule({
371
+ * declarations: [AppComponent],
372
+ * imports: [BrowserModule, IconModule],
373
+ * bootstrap: [AppComponent]
374
+ * })
375
+ * export class AppModule {}
376
+ * ```
377
+ */
378
+ declare class IconModule {
379
+ static ɵfac: i0.ɵɵFactoryDeclaration<IconModule, never>;
380
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IconModule, never, [typeof IconComponent], [typeof IconComponent]>;
381
+ static ɵinj: i0.ɵɵInjectorDeclaration<IconModule>;
382
+ }
383
+
384
+ /**
385
+ * Represents the [`NgModule`](link:site.data.urls.angular['ngmoduleapi']) definition for the SVG Icon component.
386
+ *
387
+ * @example
388
+ * ```typescript
389
+ * import { NgModule } from '@angular/core';
390
+ * import { SVGIconModule } from '@progress/kendo-angular-icons';
391
+ * import { BrowserModule } from '@angular/platform-browser';
392
+ * import { AppComponent } from './app.component';
393
+ *
394
+ * @NgModule({
395
+ * declarations: [AppComponent],
396
+ * imports: [BrowserModule, SVGIconModule],
397
+ * bootstrap: [AppComponent]
398
+ * })
399
+ * export class AppModule {}
400
+ * ```
401
+ */
402
+ declare class SVGIconModule {
403
+ static ɵfac: i0.ɵɵFactoryDeclaration<SVGIconModule, never>;
404
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SVGIconModule, never, [typeof SVGIconComponent], [typeof SVGIconComponent]>;
405
+ static ɵinj: i0.ɵɵInjectorDeclaration<SVGIconModule>;
406
+ }
407
+
408
+ /**
409
+ * Represents the [`NgModule`](link:site.data.urls.angular['ngmoduleapi']) definition for the Icons components.
410
+ *
411
+ * @example
412
+ * ```typescript
413
+ * import { NgModule } from '@angular/core';
414
+ * import { IconsModule } from '@progress/kendo-angular-icons';
415
+ * import { BrowserModule } from '@angular/platform-browser';
416
+ * import { AppComponent } from './app.component';
417
+ *
418
+ * @NgModule({
419
+ * declarations: [AppComponent],
420
+ * imports: [BrowserModule, IconsModule],
421
+ * bootstrap: [AppComponent]
422
+ * })
423
+ * export class AppModule {}
424
+ * ```
425
+ */
426
+ declare class IconsModule {
427
+ static ɵfac: i0.ɵɵFactoryDeclaration<IconsModule, never>;
428
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IconsModule, never, [typeof IconComponent, typeof SVGIconComponent], [typeof IconComponent, typeof SVGIconComponent]>;
429
+ static ɵinj: i0.ɵɵInjectorDeclaration<IconsModule>;
430
+ }
431
+
432
+ /**
433
+ * Represents the token for the `IconSettings` of Kendo UI for Angular components.
434
+ * Use this token to configure icon settings. ([See example.](https://www.telerik.com/kendo-angular-ui/components/icons/icon-settings#icons-configuration))
435
+ *
436
+ * @example
437
+ * ```typescript
438
+ * import { NgModule } from '@angular/core';
439
+ *
440
+ * @NgModule({
441
+ * providers: [{ provide: ICON_SETTINGS, useValue: { type: 'svg', size: 'xsmall' } }]
442
+ * })
443
+ * export class AppModule {}
444
+ * ```
445
+ */
446
+ declare const ICON_SETTINGS: InjectionToken<IconSettings>;
447
+
448
+ /**
449
+ * Represents the utility array that contains all `KendoIcon`-related components and directives.
450
+ *
451
+ * @example
452
+ * ```typescript
453
+ * import { Component } from '@angular/core';
454
+ * import { KENDO_ICON } from '@progress/kendo-angular-icons';
455
+ *
456
+ * @Component({
457
+ * selector: 'my-app',
458
+ * standalone: true,
459
+ * imports: [KENDO_ICON],
460
+ * template: `...`,
461
+ * })
462
+ * export class AppComponent {}
463
+ * ```
464
+ */
465
+ declare const KENDO_ICON: readonly [typeof IconComponent];
466
+ /**
467
+ * Represents the utility array that contains all `KendoSVGIcon`-related components and directives.
468
+ *
469
+ * @example
470
+ * ```typescript
471
+ * import { Component } from '@angular/core';
472
+ * import { KENDO_SVGICON } from '@progress/kendo-angular-icons';
473
+ *
474
+ * @Component({
475
+ * selector: 'my-app',
476
+ * standalone: true,
477
+ * imports: [KENDO_SVGICON],
478
+ * template: `...`,
479
+ * })
480
+ * export class AppComponent {}
481
+ * ```
482
+ */
483
+ declare const KENDO_SVGICON: readonly [typeof SVGIconComponent];
484
+ /**
485
+ * Represents the utility array that contains all `@progress/kendo-angular-icons`-related components and directives.
486
+ *
487
+ * @example
488
+ * ```typescript
489
+ * import { Component, ViewEncapsulation } from '@angular/core';
490
+ * import { KENDO_ICONS } from '@progress/kendo-angular-icons';
491
+ *
492
+ * @Component({
493
+ * selector: 'my-app',
494
+ * standalone: true,
495
+ * imports: [KENDO_ICONS],
496
+ * template: `...`,
497
+ * })
498
+ * export class AppComponent {}
499
+ * ```
500
+ */
501
+ declare const KENDO_ICONS: readonly [typeof IconComponent, typeof SVGIconComponent];
502
+
503
+ export { ICON_SETTINGS, IconComponent, IconModule, IconSettingsService, IconWrapperComponent, IconsModule, IconsService, KENDO_ICON, KENDO_ICONS, KENDO_SVGICON, SVGIconComponent, SVGIconModule };
504
+ export type { IconFlip, IconSettings, IconSize, IconThemeColor, IconType, IconVariant };
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1783511215,
11
- "version": "24.2.2",
10
+ "publishDate": 1785317742,
11
+ "version": "25.0.0-develop.12",
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": "24.2.2",
3
+ "version": "25.0.0-develop.12",
4
4
  "description": "Kendo UI Angular component starter template",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -31,18 +31,18 @@
31
31
  "package": {
32
32
  "productName": "Kendo UI for Angular",
33
33
  "productCode": "KENDOUIANGULAR",
34
- "publishDate": 1783511215,
34
+ "publishDate": 1785317742,
35
35
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
36
36
  }
37
37
  },
38
38
  "peerDependencies": {
39
- "@angular/animations": "19 - 22",
40
- "@angular/common": "19 - 22",
41
- "@angular/core": "19 - 22",
42
- "@angular/platform-browser": "19 - 22",
39
+ "@angular/animations": "20 - 22",
40
+ "@angular/common": "20 - 22",
41
+ "@angular/core": "20 - 22",
42
+ "@angular/platform-browser": "20 - 22",
43
43
  "@progress/kendo-licensing": "^1.11.0",
44
44
  "@progress/kendo-svg-icons": "^4.9.0 || ^5.0.0",
45
- "@progress/kendo-angular-common": "24.2.2",
45
+ "@progress/kendo-angular-common": "25.0.0-develop.12",
46
46
  "rxjs": "^6.5.3 || ^7.0.0"
47
47
  },
48
48
  "peerDependenciesMeta": {
@@ -52,7 +52,7 @@
52
52
  },
53
53
  "dependencies": {
54
54
  "tslib": "^2.3.1",
55
- "@progress/kendo-angular-schematics": "24.2.2"
55
+ "@progress/kendo-angular-schematics": "25.0.0-develop.12"
56
56
  },
57
57
  "schematics": "./schematics/collection.json",
58
58
  "module": "fesm2022/progress-kendo-angular-icons.mjs",
@@ -1,37 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { ElementRef, Renderer2 } from '@angular/core';
6
- import { IconThemeColor } from './models/theme-color';
7
- import { IconSize } from './models/size';
8
- import { IconFlip } from './models/flip';
9
- import * as i0 from "@angular/core";
10
- /**
11
- * @hidden
12
- */
13
- export declare abstract class IconBaseDirective {
14
- element: ElementRef;
15
- renderer: Renderer2;
16
- get horizontalFlip(): boolean;
17
- get verticalFlip(): boolean;
18
- /**
19
- * Flips the icon horizontally, vertically, or in both directions.
20
- */
21
- flip: IconFlip;
22
- /**
23
- * Sets the `IconThemeColor` for the icon. Use this property to apply a theme color.
24
- */
25
- set themeColor(themeColor: IconThemeColor);
26
- get themeColor(): IconThemeColor;
27
- /**
28
- * Sets the `IconSize` for the icon. Use this property to change the icon size.
29
- */
30
- set size(size: IconSize);
31
- get size(): IconSize;
32
- _themeColor: IconThemeColor;
33
- _size: IconSize;
34
- constructor(element: ElementRef, renderer: Renderer2);
35
- static ɵfac: i0.ɵɵFactoryDeclaration<IconBaseDirective, never>;
36
- static ɵdir: i0.ɵɵDirectiveDeclaration<IconBaseDirective, "[kendoIconBase]", never, { "flip": { "alias": "flip"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
37
- }
@@ -1,21 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { InjectionToken } from '@angular/core';
6
- import { IconSettings } from './models';
7
- /**
8
- * Represents the token for the `IconSettings` of Kendo UI for Angular components.
9
- * Use this token to configure icon settings. ([See example.](https://www.telerik.com/kendo-angular-ui/components/icons/icon-settings#icons-configuration))
10
- *
11
- * @example
12
- * ```typescript
13
- * import { NgModule } from '@angular/core';
14
- *
15
- * @NgModule({
16
- * providers: [{ provide: ICON_SETTINGS, useValue: { type: 'svg', size: 'xsmall' } }]
17
- * })
18
- * export class AppModule {}
19
- * ```
20
- */
21
- export declare const ICON_SETTINGS: InjectionToken<IconSettings>;
@@ -1,51 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { Subject } from 'rxjs';
6
- import { IconSettings } from './models';
7
- import { SVGIcon } from '@progress/kendo-svg-icons';
8
- import * as i0 from "@angular/core";
9
- /**
10
- * Represents the service that manages icon settings.
11
- * Use the `notify` method to update icon settings dynamically.
12
- *
13
- * @example
14
- * ```typescript
15
- * constructor(private iconSettingsService: IconSettingsService) {}
16
- *
17
- * this.iconSettingsService.notify({ themeColor: 'primary' });
18
- * ```
19
- */
20
- export declare class IconSettingsService {
21
- /**
22
- * @hidden
23
- */
24
- readonly changes: Subject<IconSettings>;
25
- /**
26
- * Notifies subscribers about changes in the icon settings.
27
- *
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
- * @example
30
- * ```typescript
31
- * iconSettingsService.notify({ size: 'large' });
32
- * ```
33
- */
34
- notify(iconSettings?: IconSettings): void;
35
- /**
36
- * Returns the [`SVGIcon`](https://www.telerik.com/kendo-angular-ui/components/icons/api/svgicon) object for the provided key.
37
- * Override in a custom service to provide custom SVG icons.
38
- *
39
- * @hidden
40
- */
41
- getSvgIcon(_name: string): SVGIcon;
42
- /**
43
- * Returns the list of classes to be rendered on the host `SPAN` element of custom font icons.
44
- * Override in a custom service to provide classes for custom font icons.
45
- *
46
- * @hidden
47
- */
48
- getCustomFontIconClass(_key: string): string;
49
- static ɵfac: i0.ɵɵFactoryDeclaration<IconSettingsService, never>;
50
- static ɵprov: i0.ɵɵInjectableDeclaration<IconSettingsService>;
51
- }