igniteui-angular 18.1.0-rc.0 → 18.1.0
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/esm2022/lib/combo/combo.common.mjs +8 -8
- package/esm2022/lib/combo/combo.component.mjs +3 -3
- package/esm2022/lib/grids/headers/grid-header-group.component.mjs +3 -3
- package/esm2022/lib/icon/icon.service.mjs +3 -3
- package/esm2022/lib/navigation-drawer/navigation-drawer.directives.mjs +22 -4
- package/esm2022/lib/select/select.component.mjs +8 -8
- package/esm2022/lib/simple-combo/simple-combo.component.mjs +3 -3
- package/esm2022/lib/tree/tree-node/tree-node.component.mjs +3 -3
- package/esm2022/lib/tree/tree.component.mjs +5 -5
- package/fesm2022/igniteui-angular.mjs +49 -31
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/icon/icon.service.d.ts +1 -1
- package/lib/navigation-drawer/navigation-drawer.directives.d.ts +21 -3
- package/package.json +2 -2
|
@@ -84,7 +84,7 @@ export declare class IgxIconService {
|
|
|
84
84
|
* ```typescript
|
|
85
85
|
* this.iconService.registerFamilyAlias('material', 'material-icons');
|
|
86
86
|
* ```
|
|
87
|
-
* @deprecated Use `setFamily` instead.
|
|
87
|
+
* @deprecated in version 18.1.0. Use `setFamily` instead.
|
|
88
88
|
*/
|
|
89
89
|
registerFamilyAlias(alias: string, className?: string, type?: IconType): this;
|
|
90
90
|
/**
|
|
@@ -2,15 +2,33 @@ import { TemplateRef } from '@angular/core';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class IgxNavDrawerItemDirective {
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
5
|
+
* Styles a navigation drawer item as selected.
|
|
6
|
+
* If not set, `active` will have default value `false`.
|
|
7
|
+
*
|
|
8
|
+
* @example
|
|
9
|
+
* ```html
|
|
10
|
+
* <span igxDrawerItem [active]="true">Active Item</span>
|
|
11
|
+
* ```
|
|
6
12
|
*/
|
|
7
13
|
active: boolean;
|
|
8
14
|
/**
|
|
9
|
-
*
|
|
15
|
+
* Disables a navigation drawer item.
|
|
16
|
+
* If not set, `disabled` will have default value `false`.
|
|
17
|
+
*
|
|
18
|
+
* @example
|
|
19
|
+
* ```html
|
|
20
|
+
* <span igxDrawerItem [disabled]="true">Disabled Item</span>
|
|
21
|
+
* ```
|
|
10
22
|
*/
|
|
11
23
|
disabled: boolean;
|
|
12
24
|
/**
|
|
13
|
-
*
|
|
25
|
+
* Styles a navigation drawer item as a group header.
|
|
26
|
+
* If not set, `isHeader` will have default value `false`.
|
|
27
|
+
*
|
|
28
|
+
* @example
|
|
29
|
+
* ```html
|
|
30
|
+
* <span igxDrawerItem [isHeader]="true">Header</span>
|
|
31
|
+
* ```
|
|
14
32
|
*/
|
|
15
33
|
isHeader: boolean;
|
|
16
34
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-angular",
|
|
3
|
-
"version": "18.1.0
|
|
3
|
+
"version": "18.1.0",
|
|
4
4
|
"description": "Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps",
|
|
5
5
|
"author": "Infragistics",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
}
|
|
95
95
|
},
|
|
96
96
|
"igxDevDependencies": {
|
|
97
|
-
"@igniteui/angular-schematics": "~18.
|
|
97
|
+
"@igniteui/angular-schematics": "~18.1.1340"
|
|
98
98
|
},
|
|
99
99
|
"ng-update": {
|
|
100
100
|
"migrations": "./migrations/migration-collection.json",
|