@progress/kendo-angular-icons 24.2.2 → 25.0.0-develop.2
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/fesm2022/progress-kendo-angular-icons.mjs +32 -32
- package/index.d.ts +478 -11
- package/package-metadata.mjs +2 -2
- package/package.json +8 -8
- package/common/icon-base.d.ts +0 -37
- package/common/icon-settings.d.ts +0 -21
- package/common/icon-settings.service.d.ts +0 -51
- package/common/icons.service.d.ts +0 -58
- package/common/models/flip.d.ts +0 -15
- package/common/models/icon-settings.d.ts +0 -40
- package/common/models/icon-type.d.ts +0 -9
- package/common/models/index.d.ts +0 -10
- package/common/models/size.d.ts +0 -19
- package/common/models/svg-icon-variant.d.ts +0 -9
- package/common/models/theme-color.d.ts +0 -20
- package/common/util.d.ts +0 -8
- package/directives.d.ts +0 -60
- package/icon/icon.component.d.ts +0 -31
- package/icon-wrapper/icon-wrapper.component.d.ts +0 -47
- package/icon.module.d.ts +0 -29
- package/icons.module.d.ts +0 -30
- package/package-metadata.d.ts +0 -9
- package/svg-icon/svg-icon.component.d.ts +0 -60
- package/svg-icon.module.d.ts +0 -29
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-icons",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "25.0.0-develop.2",
|
|
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":
|
|
34
|
+
"publishDate": 1783688442,
|
|
35
35
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
-
"@angular/animations": "
|
|
40
|
-
"@angular/common": "
|
|
41
|
-
"@angular/core": "
|
|
42
|
-
"@angular/platform-browser": "
|
|
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": "
|
|
45
|
+
"@progress/kendo-angular-common": "25.0.0-develop.2",
|
|
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": "
|
|
55
|
+
"@progress/kendo-angular-schematics": "25.0.0-develop.2"
|
|
56
56
|
},
|
|
57
57
|
"schematics": "./schematics/collection.json",
|
|
58
58
|
"module": "fesm2022/progress-kendo-angular-icons.mjs",
|
package/common/icon-base.d.ts
DELETED
|
@@ -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
|
-
}
|
|
@@ -1,58 +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 { OnDestroy } from '@angular/core';
|
|
6
|
-
import { Subject } from 'rxjs';
|
|
7
|
-
import { IconSettings } from './models';
|
|
8
|
-
import { IconSettingsService } from './icon-settings.service';
|
|
9
|
-
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
|
-
/**
|
|
12
|
-
* Represents the service that manages icon settings.
|
|
13
|
-
* Add this service to the `providers` array when you use it in a standalone component.
|
|
14
|
-
*
|
|
15
|
-
* @example
|
|
16
|
-
* ```typescript
|
|
17
|
-
* import { IconsService } from '@progress/kendo-angular-icons';
|
|
18
|
-
*
|
|
19
|
-
* @Component({
|
|
20
|
-
* selector: 'my-component',
|
|
21
|
-
* standalone: true,
|
|
22
|
-
* imports: [ ... ],
|
|
23
|
-
* providers: [IconsService, { provide: ICON_SETTINGS, useValue: { type: 'font' } }],
|
|
24
|
-
* template: `...`
|
|
25
|
-
* })
|
|
26
|
-
* export class AppComponent {}
|
|
27
|
-
* ```
|
|
28
|
-
*/
|
|
29
|
-
export declare class IconsService implements OnDestroy {
|
|
30
|
-
private _iconSettings;
|
|
31
|
-
private iconSettingsService;
|
|
32
|
-
/**
|
|
33
|
-
* Notifies subscribers of the initial icon settings and on each call to `notify`.
|
|
34
|
-
* @hidden
|
|
35
|
-
*/
|
|
36
|
-
readonly changes: Subject<IconSettings>;
|
|
37
|
-
private subs;
|
|
38
|
-
constructor(_iconSettings: IconSettings, iconSettingsService: IconSettingsService);
|
|
39
|
-
/**
|
|
40
|
-
* @hidden
|
|
41
|
-
*/
|
|
42
|
-
get iconSettings(): IconSettings;
|
|
43
|
-
ngOnDestroy(): void;
|
|
44
|
-
/**
|
|
45
|
-
* Returns the [`SVGIcon`](https://www.telerik.com/kendo-angular-ui/components/icons/api/svgicon) object for the provided key.
|
|
46
|
-
* Override in a custom service to provide custom SVG icons.
|
|
47
|
-
* @hidden
|
|
48
|
-
*/
|
|
49
|
-
getSvgIcon(name: string): SVGIcon;
|
|
50
|
-
/**
|
|
51
|
-
* Returns the list of classes to be rendered on the host `SPAN` element of custom font icons.
|
|
52
|
-
* Override in a custom service to provide classes for custom font icons.
|
|
53
|
-
* @hidden
|
|
54
|
-
*/
|
|
55
|
-
getCustomFontIconClass(key: string): string;
|
|
56
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IconsService, [{ optional: true; }, { optional: true; }]>;
|
|
57
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<IconsService>;
|
|
58
|
-
}
|
package/common/models/flip.d.ts
DELETED
|
@@ -1,15 +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
|
-
/**
|
|
6
|
-
* Specifies the `IconFlip` direction.
|
|
7
|
-
*
|
|
8
|
-
* Use this type to control how to flip an icon. The possible values are:
|
|
9
|
-
* - `default`: No flip applied.
|
|
10
|
-
* - `horizontal`: Flip the icon horizontally.
|
|
11
|
-
* - `vertical`: Flip the icon vertically.
|
|
12
|
-
* - `both`: Flip the icon both horizontally and vertically.
|
|
13
|
-
*
|
|
14
|
-
*/
|
|
15
|
-
export type IconFlip = 'default' | 'horizontal' | 'vertical' | 'both';
|
|
@@ -1,40 +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 { IconFlip } from "./flip";
|
|
6
|
-
import { IconType } from "./icon-type";
|
|
7
|
-
import { IconSize } from "./size";
|
|
8
|
-
import { IconThemeColor } from "./theme-color";
|
|
9
|
-
/**
|
|
10
|
-
* Represents the icon settings for Kendo UI icons.
|
|
11
|
-
* Use the `IconSettings` interface to set the icon `type`, `themeColor`, `size`, and `flip` direction.
|
|
12
|
-
*
|
|
13
|
-
* @example
|
|
14
|
-
* ```typescript
|
|
15
|
-
* const settings: IconSettings = {
|
|
16
|
-
* type: 'svg',
|
|
17
|
-
* themeColor: 'primary',
|
|
18
|
-
* size: 'large',
|
|
19
|
-
* flip: 'horizontal'
|
|
20
|
-
* };
|
|
21
|
-
* ```
|
|
22
|
-
*/
|
|
23
|
-
export interface IconSettings {
|
|
24
|
-
/**
|
|
25
|
-
* Sets the `type` of the icon.
|
|
26
|
-
*/
|
|
27
|
-
type?: IconType;
|
|
28
|
-
/**
|
|
29
|
-
* Sets the `themeColor` of the icon.
|
|
30
|
-
*/
|
|
31
|
-
themeColor?: IconThemeColor;
|
|
32
|
-
/**
|
|
33
|
-
* Sets the `size` of the icon.
|
|
34
|
-
*/
|
|
35
|
-
size?: IconSize;
|
|
36
|
-
/**
|
|
37
|
-
* Sets the `flip` direction of the icon.
|
|
38
|
-
*/
|
|
39
|
-
flip?: IconFlip;
|
|
40
|
-
}
|
|
@@ -1,9 +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
|
-
/**
|
|
6
|
-
* Specifies the `IconType` for icons.
|
|
7
|
-
* Use `IconType` to set how the icon renders.
|
|
8
|
-
*/
|
|
9
|
-
export type IconType = 'font' | 'svg';
|
package/common/models/index.d.ts
DELETED
|
@@ -1,10 +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
|
-
export { IconFlip } from './flip';
|
|
6
|
-
export { IconSize } from './size';
|
|
7
|
-
export { IconThemeColor } from './theme-color';
|
|
8
|
-
export * from './icon-type';
|
|
9
|
-
export * from './icon-settings';
|
|
10
|
-
export { IconVariant } from './svg-icon-variant';
|
package/common/models/size.d.ts
DELETED
|
@@ -1,19 +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
|
-
/**
|
|
6
|
-
* Specifies the `IconSize` of the icon.
|
|
7
|
-
*
|
|
8
|
-
* Use this type to set the icon size. The possible values are:
|
|
9
|
-
* - `default` (Default)—Font-size: 16px; Width: 16px; Height: 16px.
|
|
10
|
-
* - `xsmall`—Font-size: 12px; Width: 12px; Height: 12px.
|
|
11
|
-
* - `small`—Font-size: 14px; Width: 14px; Height: 14px.
|
|
12
|
-
* - `medium`—Font-size: 16px; Width: 16px; Height: 16px.
|
|
13
|
-
* - `large`—Font-size: 20px; Width: 20px; Height: 20px.
|
|
14
|
-
* - `xlarge`—Font-size: 24px; Width: 24px; Height: 24px.
|
|
15
|
-
* - `xxlarge`—Font-size: 32px; Width: 32px; Height: 32px.
|
|
16
|
-
* - `xxxlarge`—Font-size: 48px; Width: 48px; Height: 48px.
|
|
17
|
-
*
|
|
18
|
-
*/
|
|
19
|
-
export type IconSize = 'default' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge' | 'xxxlarge';
|
|
@@ -1,9 +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
|
-
/**
|
|
6
|
-
* Specifies the style variant of an SVG icon.
|
|
7
|
-
*
|
|
8
|
-
*/
|
|
9
|
-
export type IconVariant = 'solid' | 'outline' | 'duotone';
|
|
@@ -1,20 +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
|
-
/**
|
|
6
|
-
* Specifies the `IconThemeColor` of the icon.
|
|
7
|
-
*
|
|
8
|
-
* Use this type to set the icon theme color. The possible values are:
|
|
9
|
-
* - `inherit` (Default)—Applies coloring based on the current color.
|
|
10
|
-
* - `primary` —Applies coloring based on primary theme color.
|
|
11
|
-
* - `secondary`—Applies coloring based on secondary theme color.
|
|
12
|
-
* - `tertiary`— Applies coloring based on tertiary theme color.
|
|
13
|
-
* - `info`—Applies coloring based on info theme color.
|
|
14
|
-
* - `success`— Applies coloring based on success theme color.
|
|
15
|
-
* - `warning`— Applies coloring based on warning theme color.
|
|
16
|
-
* - `error`— Applies coloring based on error theme color.
|
|
17
|
-
* - `inverse`— Applies coloring based on inverse theme color.
|
|
18
|
-
*
|
|
19
|
-
*/
|
|
20
|
-
export type IconThemeColor = 'inherit' | 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'inverse';
|
package/common/util.d.ts
DELETED
|
@@ -1,8 +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
|
-
/**
|
|
6
|
-
* @hidden
|
|
7
|
-
*/
|
|
8
|
-
export declare const isPresent: Function;
|
package/directives.d.ts
DELETED
|
@@ -1,60 +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 { IconComponent } from "./icon/icon.component";
|
|
6
|
-
import { SVGIconComponent } from "./svg-icon/svg-icon.component";
|
|
7
|
-
/**
|
|
8
|
-
* Represents the utility array that contains all `KendoIcon`-related components and directives.
|
|
9
|
-
*
|
|
10
|
-
* @example
|
|
11
|
-
* ```typescript
|
|
12
|
-
* import { Component } from '@angular/core';
|
|
13
|
-
* import { KENDO_ICON } from '@progress/kendo-angular-icons';
|
|
14
|
-
*
|
|
15
|
-
* @Component({
|
|
16
|
-
* selector: 'my-app',
|
|
17
|
-
* standalone: true,
|
|
18
|
-
* imports: [KENDO_ICON],
|
|
19
|
-
* template: `...`,
|
|
20
|
-
* })
|
|
21
|
-
* export class AppComponent {}
|
|
22
|
-
* ```
|
|
23
|
-
*/
|
|
24
|
-
export declare const KENDO_ICON: readonly [typeof IconComponent];
|
|
25
|
-
/**
|
|
26
|
-
* Represents the utility array that contains all `KendoSVGIcon`-related components and directives.
|
|
27
|
-
*
|
|
28
|
-
* @example
|
|
29
|
-
* ```typescript
|
|
30
|
-
* import { Component } from '@angular/core';
|
|
31
|
-
* import { KENDO_SVGICON } from '@progress/kendo-angular-icons';
|
|
32
|
-
*
|
|
33
|
-
* @Component({
|
|
34
|
-
* selector: 'my-app',
|
|
35
|
-
* standalone: true,
|
|
36
|
-
* imports: [KENDO_SVGICON],
|
|
37
|
-
* template: `...`,
|
|
38
|
-
* })
|
|
39
|
-
* export class AppComponent {}
|
|
40
|
-
* ```
|
|
41
|
-
*/
|
|
42
|
-
export declare const KENDO_SVGICON: readonly [typeof SVGIconComponent];
|
|
43
|
-
/**
|
|
44
|
-
* Represents the utility array that contains all `@progress/kendo-angular-icons`-related components and directives.
|
|
45
|
-
*
|
|
46
|
-
* @example
|
|
47
|
-
* ```typescript
|
|
48
|
-
* import { Component, ViewEncapsulation } from '@angular/core';
|
|
49
|
-
* import { KENDO_ICONS } from '@progress/kendo-angular-icons';
|
|
50
|
-
*
|
|
51
|
-
* @Component({
|
|
52
|
-
* selector: 'my-app',
|
|
53
|
-
* standalone: true,
|
|
54
|
-
* imports: [KENDO_ICONS],
|
|
55
|
-
* template: `...`,
|
|
56
|
-
* })
|
|
57
|
-
* export class AppComponent {}
|
|
58
|
-
* ```
|
|
59
|
-
*/
|
|
60
|
-
export declare const KENDO_ICONS: readonly [typeof IconComponent, typeof SVGIconComponent];
|
package/icon/icon.component.d.ts
DELETED
|
@@ -1,31 +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 { IconBaseDirective } from '../common/icon-base';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
/**
|
|
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
|
-
*
|
|
12
|
-
* @example
|
|
13
|
-
* ```html
|
|
14
|
-
* <kendo-icon name="home"></kendo-icon>
|
|
15
|
-
* ```
|
|
16
|
-
*/
|
|
17
|
-
export declare class IconComponent extends IconBaseDirective {
|
|
18
|
-
element: ElementRef;
|
|
19
|
-
renderer: Renderer2;
|
|
20
|
-
hostClass: boolean;
|
|
21
|
-
hostAriaHidden: boolean;
|
|
22
|
-
/**
|
|
23
|
-
* Sets the `Icon` to render. Supports all [Kendo UI Icons](https://www.telerik.com/kendo-angular-ui/components/icons/icon/icon-list).
|
|
24
|
-
*/
|
|
25
|
-
set name(name: string);
|
|
26
|
-
get name(): string;
|
|
27
|
-
private _name;
|
|
28
|
-
constructor(element: ElementRef, renderer: Renderer2);
|
|
29
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "kendo-icon", ["kendoIcon"], { "name": { "alias": "name"; "required": false; }; }, {}, never, never, true, never>;
|
|
31
|
-
}
|
|
@@ -1,47 +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, OnDestroy } from '@angular/core';
|
|
6
|
-
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
7
|
-
import { IconsService } from '../common/icons.service';
|
|
8
|
-
import { IconSettings, IconSize } from '../common/models';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
|
-
/**
|
|
11
|
-
* @hidden
|
|
12
|
-
*/
|
|
13
|
-
export declare class IconWrapperComponent implements OnDestroy {
|
|
14
|
-
private iconsService;
|
|
15
|
-
element: ElementRef;
|
|
16
|
-
hostClass: boolean;
|
|
17
|
-
/**
|
|
18
|
-
* Sets the name for an existing font icon in a Kendo UI theme to render.
|
|
19
|
-
* Supports all [Kendo UI Icons](https://www.telerik.com/kendo-angular-ui/components/styling/icons#icons-list).
|
|
20
|
-
*/
|
|
21
|
-
name: string;
|
|
22
|
-
/**
|
|
23
|
-
* Sets the [SVGIcon](https://www.telerik.com/kendo-angular-ui/components/icons/api/svgicon) to render.
|
|
24
|
-
*/
|
|
25
|
-
svgIcon: SVGIcon;
|
|
26
|
-
/**
|
|
27
|
-
* Sets an additional class on the internal Icon component.
|
|
28
|
-
*/
|
|
29
|
-
innerCssClass: string;
|
|
30
|
-
/**
|
|
31
|
-
* Sets a custom font icon class using the API of the consuming component.
|
|
32
|
-
*/
|
|
33
|
-
customFontClass: string;
|
|
34
|
-
/**
|
|
35
|
-
* Sets the `IconSize` for the icon.
|
|
36
|
-
*/
|
|
37
|
-
size: IconSize;
|
|
38
|
-
get customClasses(): string;
|
|
39
|
-
iconSettings: IconSettings;
|
|
40
|
-
get hasSvgIcon(): boolean;
|
|
41
|
-
get customFontIconClass(): string;
|
|
42
|
-
private subs;
|
|
43
|
-
constructor(iconsService: IconsService, element: ElementRef);
|
|
44
|
-
ngOnDestroy(): void;
|
|
45
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IconWrapperComponent, never>;
|
|
46
|
-
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>;
|
|
47
|
-
}
|
package/icon.module.d.ts
DELETED
|
@@ -1,29 +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 * as i0 from "@angular/core";
|
|
6
|
-
import * as i1 from "./icon/icon.component";
|
|
7
|
-
/**
|
|
8
|
-
* Represents the [`NgModule`](link:site.data.urls.angular['ngmoduleapi']) definition for the Icon component.
|
|
9
|
-
*
|
|
10
|
-
* @example
|
|
11
|
-
* ```typescript
|
|
12
|
-
* import { NgModule } from '@angular/core';
|
|
13
|
-
* import { IconModule } from '@progress/kendo-angular-icons';
|
|
14
|
-
* import { BrowserModule } from '@angular/platform-browser';
|
|
15
|
-
* import { AppComponent } from './app.component';
|
|
16
|
-
*
|
|
17
|
-
* @NgModule({
|
|
18
|
-
* declarations: [AppComponent],
|
|
19
|
-
* imports: [BrowserModule, IconModule],
|
|
20
|
-
* bootstrap: [AppComponent]
|
|
21
|
-
* })
|
|
22
|
-
* export class AppModule {}
|
|
23
|
-
* ```
|
|
24
|
-
*/
|
|
25
|
-
export declare class IconModule {
|
|
26
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IconModule, never>;
|
|
27
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<IconModule, never, [typeof i1.IconComponent], [typeof i1.IconComponent]>;
|
|
28
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<IconModule>;
|
|
29
|
-
}
|
package/icons.module.d.ts
DELETED
|
@@ -1,30 +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 * as i0 from "@angular/core";
|
|
6
|
-
import * as i1 from "./icon/icon.component";
|
|
7
|
-
import * as i2 from "./svg-icon/svg-icon.component";
|
|
8
|
-
/**
|
|
9
|
-
* Represents the [`NgModule`](link:site.data.urls.angular['ngmoduleapi']) definition for the Icons components.
|
|
10
|
-
*
|
|
11
|
-
* @example
|
|
12
|
-
* ```typescript
|
|
13
|
-
* import { NgModule } from '@angular/core';
|
|
14
|
-
* import { IconsModule } from '@progress/kendo-angular-icons';
|
|
15
|
-
* import { BrowserModule } from '@angular/platform-browser';
|
|
16
|
-
* import { AppComponent } from './app.component';
|
|
17
|
-
*
|
|
18
|
-
* @NgModule({
|
|
19
|
-
* declarations: [AppComponent],
|
|
20
|
-
* imports: [BrowserModule, IconsModule],
|
|
21
|
-
* bootstrap: [AppComponent]
|
|
22
|
-
* })
|
|
23
|
-
* export class AppModule {}
|
|
24
|
-
* ```
|
|
25
|
-
*/
|
|
26
|
-
export declare class IconsModule {
|
|
27
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IconsModule, never>;
|
|
28
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<IconsModule, never, [typeof i1.IconComponent, typeof i2.SVGIconComponent], [typeof i1.IconComponent, typeof i2.SVGIconComponent]>;
|
|
29
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<IconsModule>;
|
|
30
|
-
}
|
package/package-metadata.d.ts
DELETED
|
@@ -1,9 +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 { type PackageMetadata } from '@progress/kendo-licensing';
|
|
6
|
-
/**
|
|
7
|
-
* @hidden
|
|
8
|
-
*/
|
|
9
|
-
export declare const packageMetadata: PackageMetadata;
|
|
@@ -1,60 +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, OnInit } from '@angular/core';
|
|
6
|
-
import { DomSanitizer, SafeHtml } from "@angular/platform-browser";
|
|
7
|
-
import { IconBaseDirective } from '../common/icon-base';
|
|
8
|
-
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
9
|
-
import { IconVariant } from '../common/models/svg-icon-variant';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
|
-
/**
|
|
12
|
-
* Represents the [Kendo UI SVG Icon component for Angular](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon).
|
|
13
|
-
* Used to display icons from the [Kendo UI SVG Icons](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) collection.
|
|
14
|
-
*
|
|
15
|
-
* @example
|
|
16
|
-
* ```ts
|
|
17
|
-
* import { KENDO_ICONS } from "@progress/kendo-angular-icons";
|
|
18
|
-
* import { paperclipIcon } from "@progress/kendo-svg-icons";
|
|
19
|
-
*
|
|
20
|
-
* @Component({
|
|
21
|
-
* selector: "my-app",
|
|
22
|
-
* imports: [KENDO_ICONS],
|
|
23
|
-
* template: `
|
|
24
|
-
* <kendo-svg-icon [icon]="paperclipIcon"></kendo-svg-icon>
|
|
25
|
-
* `,
|
|
26
|
-
* providers: [],
|
|
27
|
-
* })
|
|
28
|
-
* export class AppComponent {
|
|
29
|
-
* public paperclipIcon = paperclipIcon;
|
|
30
|
-
* }
|
|
31
|
-
* ```
|
|
32
|
-
*/
|
|
33
|
-
export declare class SVGIconComponent extends IconBaseDirective implements OnInit {
|
|
34
|
-
private domSanitizer;
|
|
35
|
-
element: ElementRef;
|
|
36
|
-
renderer: Renderer2;
|
|
37
|
-
hostClass: boolean;
|
|
38
|
-
hostAriaHidden: boolean;
|
|
39
|
-
/**
|
|
40
|
-
* Sets the `SVGIcon` to render. Supports all [Kendo UI SVG Icons](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list).
|
|
41
|
-
*/
|
|
42
|
-
set icon(icon: SVGIcon);
|
|
43
|
-
get icon(): SVGIcon;
|
|
44
|
-
/**
|
|
45
|
-
* Sets the style variant of the icon.
|
|
46
|
-
*
|
|
47
|
-
* > Requires `@progress/kendo-svg-icons` v5 or later for the `variants` property to be available on icons.
|
|
48
|
-
*/
|
|
49
|
-
set variant(variant: IconVariant);
|
|
50
|
-
get variant(): IconVariant;
|
|
51
|
-
get content(): SafeHtml;
|
|
52
|
-
get visible(): boolean;
|
|
53
|
-
private _icon;
|
|
54
|
-
private _variant;
|
|
55
|
-
constructor(domSanitizer: DomSanitizer, element: ElementRef, renderer: Renderer2);
|
|
56
|
-
ngOnInit(): void;
|
|
57
|
-
private verifyIconProperty;
|
|
58
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SVGIconComponent, never>;
|
|
59
|
-
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>;
|
|
60
|
-
}
|