igniteui-angular-core 13.2.0-beta.0 → 13.2.0-beta.3
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/bundles/igniteui-angular-core.umd.js +1063 -11
- package/bundles/igniteui-angular-core.umd.min.js +1 -1
- package/esm2015/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +2 -1
- package/esm2015/lib/FontDefaults.js +7 -7
- package/esm2015/lib/WebDropdownGroupDescriptionMetadata.js +1 -1
- package/esm2015/lib/WebExpansionPanelComponentEventArgsDescription.js +34 -0
- package/esm2015/lib/WebExpansionPanelComponentEventArgsDescriptionMetadata.js +7 -0
- package/esm2015/lib/WebExpansionPanelDescription.js +82 -0
- package/esm2015/lib/WebExpansionPanelDescriptionMetadata.js +7 -0
- package/esm2015/lib/WebExpansionPanelDescriptionMetadata_combined.js +77 -0
- package/esm2015/lib/WebExpansionPanelDescriptionModule.js +20 -0
- package/esm2015/lib/WebMaskInputDescription.js +71 -0
- package/esm2015/lib/WebMaskInputDescriptionMetadata.js +47 -0
- package/esm2015/lib/WebMaskInputDescriptionModule.js +22 -0
- package/esm2015/lib/WebTreeDescription.js +106 -0
- package/esm2015/lib/WebTreeDescriptionMetadata.js +54 -0
- package/esm2015/lib/WebTreeDescriptionModule.js +26 -0
- package/esm2015/lib/WebTreeItemComponentEventArgsDescription.js +34 -0
- package/esm2015/lib/WebTreeItemComponentEventArgsDescriptionMetadata.js +40 -0
- package/esm2015/lib/WebTreeItemDescription.js +106 -0
- package/esm2015/lib/WebTreeItemDescriptionMetadata.js +48 -0
- package/esm2015/lib/WebTreeItemDescriptionModule.js +20 -0
- package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescription.js +34 -0
- package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +38 -0
- package/esm2015/lib/igx-tooltip-container-component.js +3 -3
- package/esm2015/public_api.js +18 -0
- package/esm5/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +2 -1
- package/esm5/lib/FontDefaults.js +7 -7
- package/esm5/lib/WebDropdownGroupDescriptionMetadata.js +1 -1
- package/esm5/lib/WebExpansionPanelComponentEventArgsDescription.js +44 -0
- package/esm5/lib/WebExpansionPanelComponentEventArgsDescriptionMetadata.js +7 -0
- package/esm5/lib/WebExpansionPanelDescription.js +116 -0
- package/esm5/lib/WebExpansionPanelDescriptionMetadata.js +7 -0
- package/esm5/lib/WebExpansionPanelDescriptionMetadata_combined.js +84 -0
- package/esm5/lib/WebExpansionPanelDescriptionModule.js +24 -0
- package/esm5/lib/WebMaskInputDescription.js +97 -0
- package/esm5/lib/WebMaskInputDescriptionMetadata.js +51 -0
- package/esm5/lib/WebMaskInputDescriptionModule.js +26 -0
- package/esm5/lib/WebTreeDescription.js +152 -0
- package/esm5/lib/WebTreeDescriptionMetadata.js +58 -0
- package/esm5/lib/WebTreeDescriptionModule.js +30 -0
- package/esm5/lib/WebTreeItemComponentEventArgsDescription.js +44 -0
- package/esm5/lib/WebTreeItemComponentEventArgsDescriptionMetadata.js +44 -0
- package/esm5/lib/WebTreeItemDescription.js +152 -0
- package/esm5/lib/WebTreeItemDescriptionMetadata.js +52 -0
- package/esm5/lib/WebTreeItemDescriptionModule.js +24 -0
- package/esm5/lib/WebTreeSelectionOptionsEventArgsDescription.js +44 -0
- package/esm5/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +42 -0
- package/esm5/lib/igx-tooltip-container-component.js +2 -2
- package/esm5/public_api.js +18 -0
- package/fesm2015/igniteui-angular-core.js +857 -13
- package/fesm5/igniteui-angular-core.js +1046 -12
- package/lib/WebDropdownGroupDescription.d.ts +2 -2
- package/lib/WebExpansionPanelComponentEventArgsDescription.d.ts +15 -0
- package/lib/WebExpansionPanelComponentEventArgsDescriptionMetadata.d.ts +1 -0
- package/lib/WebExpansionPanelDescription.d.ts +32 -0
- package/lib/WebExpansionPanelDescriptionMetadata.d.ts +1 -0
- package/lib/WebExpansionPanelDescriptionMetadata_combined.d.ts +23 -0
- package/lib/WebExpansionPanelDescriptionModule.d.ts +9 -0
- package/lib/WebMaskInputDescription.d.ts +28 -0
- package/lib/WebMaskInputDescriptionMetadata.d.ts +13 -0
- package/lib/WebMaskInputDescriptionModule.d.ts +9 -0
- package/lib/WebTreeDescription.d.ts +41 -0
- package/lib/WebTreeDescriptionMetadata.d.ts +13 -0
- package/lib/WebTreeDescriptionModule.d.ts +9 -0
- package/lib/WebTreeItemComponentEventArgsDescription.d.ts +15 -0
- package/lib/WebTreeItemComponentEventArgsDescriptionMetadata.d.ts +13 -0
- package/lib/WebTreeItemDescription.d.ts +41 -0
- package/lib/WebTreeItemDescriptionMetadata.d.ts +13 -0
- package/lib/WebTreeItemDescriptionModule.d.ts +9 -0
- package/lib/WebTreeSelectionOptionsEventArgsDescription.d.ts +15 -0
- package/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.d.ts +13 -0
- package/package.json +1 -1
- package/public_api.d.ts +18 -0
|
@@ -10,8 +10,8 @@ export declare class WebDropdownGroupDescription extends Description {
|
|
|
10
10
|
get type(): string;
|
|
11
11
|
constructor();
|
|
12
12
|
private f;
|
|
13
|
-
get items(): WebDropdownItemDescription;
|
|
14
|
-
set items(a: WebDropdownItemDescription);
|
|
13
|
+
get items(): WebDropdownItemDescription[];
|
|
14
|
+
set items(a: WebDropdownItemDescription[]);
|
|
15
15
|
private h;
|
|
16
16
|
get size(): string;
|
|
17
17
|
set size(a: string);
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Description } from "./Description";
|
|
2
|
+
import { WebExpansionPanelDescription } from "./WebExpansionPanelDescription";
|
|
3
|
+
import { Type } from "./type";
|
|
4
|
+
/**
|
|
5
|
+
* @hidden
|
|
6
|
+
*/
|
|
7
|
+
export declare class WebExpansionPanelComponentEventArgsDescription extends Description {
|
|
8
|
+
static $t: Type;
|
|
9
|
+
protected get_type(): string;
|
|
10
|
+
get type(): string;
|
|
11
|
+
constructor();
|
|
12
|
+
private f;
|
|
13
|
+
get detail(): WebExpansionPanelDescription;
|
|
14
|
+
set detail(a: WebExpansionPanelDescription);
|
|
15
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { WebExpansionPanelComponentEventArgsDescriptionMetadata } from "./WebExpansionPanelDescriptionMetadata_combined";
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { Description } from "./Description";
|
|
2
|
+
import { Type } from "./type";
|
|
3
|
+
/**
|
|
4
|
+
* @hidden
|
|
5
|
+
*/
|
|
6
|
+
export declare class WebExpansionPanelDescription extends Description {
|
|
7
|
+
static $t: Type;
|
|
8
|
+
protected get_type(): string;
|
|
9
|
+
get type(): string;
|
|
10
|
+
constructor();
|
|
11
|
+
private g;
|
|
12
|
+
get open(): boolean;
|
|
13
|
+
set open(a: boolean);
|
|
14
|
+
private f;
|
|
15
|
+
get disabled(): boolean;
|
|
16
|
+
set disabled(a: boolean);
|
|
17
|
+
private l;
|
|
18
|
+
get indicatorPosition(): string;
|
|
19
|
+
set indicatorPosition(a: string);
|
|
20
|
+
private n;
|
|
21
|
+
get openingRef(): string;
|
|
22
|
+
set openingRef(a: string);
|
|
23
|
+
private m;
|
|
24
|
+
get openedRef(): string;
|
|
25
|
+
set openedRef(a: string);
|
|
26
|
+
private k;
|
|
27
|
+
get closingRef(): string;
|
|
28
|
+
set closingRef(a: string);
|
|
29
|
+
private j;
|
|
30
|
+
get closedRef(): string;
|
|
31
|
+
set closedRef(a: string);
|
|
32
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { WebExpansionPanelDescriptionMetadata } from "./WebExpansionPanelDescriptionMetadata_combined";
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Base, Type } from "./type";
|
|
2
|
+
import { TypeDescriptionContext } from "./TypeDescriptionContext";
|
|
3
|
+
import { Dictionary$2 } from "./Dictionary$2";
|
|
4
|
+
/**
|
|
5
|
+
* @hidden
|
|
6
|
+
*/
|
|
7
|
+
export declare class WebExpansionPanelDescriptionMetadata extends Base {
|
|
8
|
+
static $t: Type;
|
|
9
|
+
private static a;
|
|
10
|
+
private static b;
|
|
11
|
+
static c(a: Dictionary$2<string, string>): void;
|
|
12
|
+
static d(a: TypeDescriptionContext): void;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @hidden
|
|
16
|
+
*/
|
|
17
|
+
export declare class WebExpansionPanelComponentEventArgsDescriptionMetadata extends Base {
|
|
18
|
+
static $t: Type;
|
|
19
|
+
private static a;
|
|
20
|
+
private static b;
|
|
21
|
+
static c(a: Dictionary$2<string, string>): void;
|
|
22
|
+
static d(a: TypeDescriptionContext): void;
|
|
23
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Base, Type } from "./type";
|
|
2
|
+
import { TypeDescriptionContext } from "./TypeDescriptionContext";
|
|
3
|
+
/**
|
|
4
|
+
* @hidden
|
|
5
|
+
*/
|
|
6
|
+
export declare class WebExpansionPanelDescriptionModule extends Base {
|
|
7
|
+
static $t: Type;
|
|
8
|
+
static register(a: TypeDescriptionContext): void;
|
|
9
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { WebInputBaseDescription } from "./WebInputBaseDescription";
|
|
2
|
+
import { Type } from "./type";
|
|
3
|
+
/**
|
|
4
|
+
* @hidden
|
|
5
|
+
*/
|
|
6
|
+
export declare class WebMaskInputDescription extends WebInputBaseDescription {
|
|
7
|
+
static $t: Type;
|
|
8
|
+
protected get_type(): string;
|
|
9
|
+
constructor();
|
|
10
|
+
private ae;
|
|
11
|
+
get dir(): string;
|
|
12
|
+
set dir(a: string);
|
|
13
|
+
private ac;
|
|
14
|
+
get invalid(): boolean;
|
|
15
|
+
set invalid(a: boolean);
|
|
16
|
+
private ai;
|
|
17
|
+
get valueMode(): string;
|
|
18
|
+
set valueMode(a: string);
|
|
19
|
+
private ah;
|
|
20
|
+
get value(): string;
|
|
21
|
+
set value(a: string);
|
|
22
|
+
private af;
|
|
23
|
+
get mask(): string;
|
|
24
|
+
set mask(a: string);
|
|
25
|
+
private ag;
|
|
26
|
+
get prompt(): string;
|
|
27
|
+
set prompt(a: string);
|
|
28
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Base, Type } from "./type";
|
|
2
|
+
import { TypeDescriptionContext } from "./TypeDescriptionContext";
|
|
3
|
+
import { Dictionary$2 } from "./Dictionary$2";
|
|
4
|
+
/**
|
|
5
|
+
* @hidden
|
|
6
|
+
*/
|
|
7
|
+
export declare class WebMaskInputDescriptionMetadata extends Base {
|
|
8
|
+
static $t: Type;
|
|
9
|
+
private static a;
|
|
10
|
+
private static b;
|
|
11
|
+
static c(a: Dictionary$2<string, string>): void;
|
|
12
|
+
static d(a: TypeDescriptionContext): void;
|
|
13
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Base, Type } from "./type";
|
|
2
|
+
import { TypeDescriptionContext } from "./TypeDescriptionContext";
|
|
3
|
+
/**
|
|
4
|
+
* @hidden
|
|
5
|
+
*/
|
|
6
|
+
export declare class WebMaskInputDescriptionModule extends Base {
|
|
7
|
+
static $t: Type;
|
|
8
|
+
static register(a: TypeDescriptionContext): void;
|
|
9
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { Description } from "./Description";
|
|
2
|
+
import { Type } from "./type";
|
|
3
|
+
/**
|
|
4
|
+
* @hidden
|
|
5
|
+
*/
|
|
6
|
+
export declare class WebTreeDescription extends Description {
|
|
7
|
+
static $t: Type;
|
|
8
|
+
protected get_type(): string;
|
|
9
|
+
get type(): string;
|
|
10
|
+
constructor();
|
|
11
|
+
private f;
|
|
12
|
+
get singleBranchExpand(): boolean;
|
|
13
|
+
set singleBranchExpand(a: boolean);
|
|
14
|
+
private n;
|
|
15
|
+
get selection(): string;
|
|
16
|
+
set selection(a: string);
|
|
17
|
+
private i;
|
|
18
|
+
get dir(): string;
|
|
19
|
+
set dir(a: string);
|
|
20
|
+
private p;
|
|
21
|
+
get size(): string;
|
|
22
|
+
set size(a: string);
|
|
23
|
+
private o;
|
|
24
|
+
get selectionChangedRef(): string;
|
|
25
|
+
set selectionChangedRef(a: string);
|
|
26
|
+
private m;
|
|
27
|
+
get itemExpandingRef(): string;
|
|
28
|
+
set itemExpandingRef(a: string);
|
|
29
|
+
private l;
|
|
30
|
+
get itemExpandedRef(): string;
|
|
31
|
+
set itemExpandedRef(a: string);
|
|
32
|
+
private k;
|
|
33
|
+
get itemCollapsingRef(): string;
|
|
34
|
+
set itemCollapsingRef(a: string);
|
|
35
|
+
private j;
|
|
36
|
+
get itemCollapsedRef(): string;
|
|
37
|
+
set itemCollapsedRef(a: string);
|
|
38
|
+
private h;
|
|
39
|
+
get activeItemRef(): string;
|
|
40
|
+
set activeItemRef(a: string);
|
|
41
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Base, Type } from "./type";
|
|
2
|
+
import { TypeDescriptionContext } from "./TypeDescriptionContext";
|
|
3
|
+
import { Dictionary$2 } from "./Dictionary$2";
|
|
4
|
+
/**
|
|
5
|
+
* @hidden
|
|
6
|
+
*/
|
|
7
|
+
export declare class WebTreeDescriptionMetadata extends Base {
|
|
8
|
+
static $t: Type;
|
|
9
|
+
private static a;
|
|
10
|
+
private static b;
|
|
11
|
+
static c(a: Dictionary$2<string, string>): void;
|
|
12
|
+
static d(a: TypeDescriptionContext): void;
|
|
13
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Base, Type } from "./type";
|
|
2
|
+
import { TypeDescriptionContext } from "./TypeDescriptionContext";
|
|
3
|
+
/**
|
|
4
|
+
* @hidden
|
|
5
|
+
*/
|
|
6
|
+
export declare class WebTreeDescriptionModule extends Base {
|
|
7
|
+
static $t: Type;
|
|
8
|
+
static register(a: TypeDescriptionContext): void;
|
|
9
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Description } from "./Description";
|
|
2
|
+
import { WebTreeItemDescription } from "./WebTreeItemDescription";
|
|
3
|
+
import { Type } from "./type";
|
|
4
|
+
/**
|
|
5
|
+
* @hidden
|
|
6
|
+
*/
|
|
7
|
+
export declare class WebTreeItemComponentEventArgsDescription extends Description {
|
|
8
|
+
static $t: Type;
|
|
9
|
+
protected get_type(): string;
|
|
10
|
+
get type(): string;
|
|
11
|
+
constructor();
|
|
12
|
+
private f;
|
|
13
|
+
get detail(): WebTreeItemDescription;
|
|
14
|
+
set detail(a: WebTreeItemDescription);
|
|
15
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Base, Type } from "./type";
|
|
2
|
+
import { TypeDescriptionContext } from "./TypeDescriptionContext";
|
|
3
|
+
import { Dictionary$2 } from "./Dictionary$2";
|
|
4
|
+
/**
|
|
5
|
+
* @hidden
|
|
6
|
+
*/
|
|
7
|
+
export declare class WebTreeItemComponentEventArgsDescriptionMetadata extends Base {
|
|
8
|
+
static $t: Type;
|
|
9
|
+
private static a;
|
|
10
|
+
private static b;
|
|
11
|
+
static c(a: Dictionary$2<string, string>): void;
|
|
12
|
+
static d(a: TypeDescriptionContext): void;
|
|
13
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { Description } from "./Description";
|
|
2
|
+
import { Type } from "./type";
|
|
3
|
+
/**
|
|
4
|
+
* @hidden
|
|
5
|
+
*/
|
|
6
|
+
export declare class WebTreeItemDescription extends Description {
|
|
7
|
+
static $t: Type;
|
|
8
|
+
protected get_type(): string;
|
|
9
|
+
get type(): string;
|
|
10
|
+
constructor();
|
|
11
|
+
private f;
|
|
12
|
+
get parent(): WebTreeItemDescription;
|
|
13
|
+
set parent(a: WebTreeItemDescription);
|
|
14
|
+
private k;
|
|
15
|
+
get init(): boolean;
|
|
16
|
+
set init(a: boolean);
|
|
17
|
+
private t;
|
|
18
|
+
get level(): number;
|
|
19
|
+
set level(a: number);
|
|
20
|
+
private v;
|
|
21
|
+
get label(): string;
|
|
22
|
+
set label(a: string);
|
|
23
|
+
private j;
|
|
24
|
+
get expanded(): boolean;
|
|
25
|
+
set expanded(a: boolean);
|
|
26
|
+
private h;
|
|
27
|
+
get active(): boolean;
|
|
28
|
+
set active(a: boolean);
|
|
29
|
+
private i;
|
|
30
|
+
get disabled(): boolean;
|
|
31
|
+
set disabled(a: boolean);
|
|
32
|
+
private m;
|
|
33
|
+
get selected(): boolean;
|
|
34
|
+
set selected(a: boolean);
|
|
35
|
+
private l;
|
|
36
|
+
get loading(): boolean;
|
|
37
|
+
set loading(a: boolean);
|
|
38
|
+
private w;
|
|
39
|
+
get valueRef(): string;
|
|
40
|
+
set valueRef(a: string);
|
|
41
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Base, Type } from "./type";
|
|
2
|
+
import { TypeDescriptionContext } from "./TypeDescriptionContext";
|
|
3
|
+
import { Dictionary$2 } from "./Dictionary$2";
|
|
4
|
+
/**
|
|
5
|
+
* @hidden
|
|
6
|
+
*/
|
|
7
|
+
export declare class WebTreeItemDescriptionMetadata extends Base {
|
|
8
|
+
static $t: Type;
|
|
9
|
+
private static a;
|
|
10
|
+
private static b;
|
|
11
|
+
static c(a: Dictionary$2<string, string>): void;
|
|
12
|
+
static d(a: TypeDescriptionContext): void;
|
|
13
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Base, Type } from "./type";
|
|
2
|
+
import { TypeDescriptionContext } from "./TypeDescriptionContext";
|
|
3
|
+
/**
|
|
4
|
+
* @hidden
|
|
5
|
+
*/
|
|
6
|
+
export declare class WebTreeItemDescriptionModule extends Base {
|
|
7
|
+
static $t: Type;
|
|
8
|
+
static register(a: TypeDescriptionContext): void;
|
|
9
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Description } from "./Description";
|
|
2
|
+
import { WebTreeItemDescription } from "./WebTreeItemDescription";
|
|
3
|
+
import { Type } from "./type";
|
|
4
|
+
/**
|
|
5
|
+
* @hidden
|
|
6
|
+
*/
|
|
7
|
+
export declare class WebTreeSelectionOptionsEventArgsDescription extends Description {
|
|
8
|
+
static $t: Type;
|
|
9
|
+
protected get_type(): string;
|
|
10
|
+
get type(): string;
|
|
11
|
+
constructor();
|
|
12
|
+
private f;
|
|
13
|
+
get newSelection(): WebTreeItemDescription[];
|
|
14
|
+
set newSelection(a: WebTreeItemDescription[]);
|
|
15
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Base, Type } from "./type";
|
|
2
|
+
import { TypeDescriptionContext } from "./TypeDescriptionContext";
|
|
3
|
+
import { Dictionary$2 } from "./Dictionary$2";
|
|
4
|
+
/**
|
|
5
|
+
* @hidden
|
|
6
|
+
*/
|
|
7
|
+
export declare class WebTreeSelectionOptionsEventArgsDescriptionMetadata extends Base {
|
|
8
|
+
static $t: Type;
|
|
9
|
+
private static a;
|
|
10
|
+
private static b;
|
|
11
|
+
static c(a: Dictionary$2<string, string>): void;
|
|
12
|
+
static d(a: TypeDescriptionContext): void;
|
|
13
|
+
}
|
package/package.json
CHANGED
package/public_api.d.ts
CHANGED
|
@@ -1251,6 +1251,11 @@ export * from './lib/WebDropdownItemComponentEventArgsDescription';
|
|
|
1251
1251
|
export * from './lib/WebDropdownItemComponentEventArgsDescriptionMetadata';
|
|
1252
1252
|
export * from './lib/WebDropdownItemDescriptionModule';
|
|
1253
1253
|
export * from './lib/WebDropdownDescriptionModule';
|
|
1254
|
+
export * from './lib/WebExpansionPanelDescription';
|
|
1255
|
+
export * from './lib/WebExpansionPanelDescriptionMetadata';
|
|
1256
|
+
export * from './lib/WebExpansionPanelComponentEventArgsDescription';
|
|
1257
|
+
export * from './lib/WebExpansionPanelComponentEventArgsDescriptionMetadata';
|
|
1258
|
+
export * from './lib/WebExpansionPanelDescriptionModule';
|
|
1254
1259
|
export * from './lib/WebFloatingPaneResizeEventArgsDescription';
|
|
1255
1260
|
export * from './lib/WebFloatingPaneResizeEventArgsDescriptionMetadata';
|
|
1256
1261
|
export * from './lib/WebFloatingPaneResizeMoveEventArgsDescription';
|
|
@@ -1288,6 +1293,9 @@ export * from './lib/WebListItemDescription';
|
|
|
1288
1293
|
export * from './lib/WebListItemDescriptionMetadata';
|
|
1289
1294
|
export * from './lib/WebListItemDescriptionModule';
|
|
1290
1295
|
export * from './lib/WebListDescriptionModule';
|
|
1296
|
+
export * from './lib/WebMaskInputDescription';
|
|
1297
|
+
export * from './lib/WebMaskInputDescriptionMetadata';
|
|
1298
|
+
export * from './lib/WebMaskInputDescriptionModule';
|
|
1291
1299
|
export * from './lib/WebMoveFloatingPaneActionDescription';
|
|
1292
1300
|
export * from './lib/WebMoveFloatingPaneActionDescriptionMetadata';
|
|
1293
1301
|
export * from './lib/WebMoveTabActionDescription';
|
|
@@ -1379,6 +1387,16 @@ export * from './lib/WebThemeControllerDescriptionMetadata';
|
|
|
1379
1387
|
export * from './lib/WebToastDescription';
|
|
1380
1388
|
export * from './lib/WebToastDescriptionMetadata';
|
|
1381
1389
|
export * from './lib/WebToastDescriptionModule';
|
|
1390
|
+
export * from './lib/WebTreeDescription';
|
|
1391
|
+
export * from './lib/WebTreeDescriptionMetadata';
|
|
1392
|
+
export * from './lib/WebTreeItemDescription';
|
|
1393
|
+
export * from './lib/WebTreeItemDescriptionMetadata';
|
|
1394
|
+
export * from './lib/WebTreeItemComponentEventArgsDescription';
|
|
1395
|
+
export * from './lib/WebTreeItemComponentEventArgsDescriptionMetadata';
|
|
1396
|
+
export * from './lib/WebTreeItemDescriptionModule';
|
|
1397
|
+
export * from './lib/WebTreeDescriptionModule';
|
|
1398
|
+
export * from './lib/WebTreeSelectionOptionsEventArgsDescription';
|
|
1399
|
+
export * from './lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata';
|
|
1382
1400
|
export * from './lib/WebValueChangedEventArgsDescription';
|
|
1383
1401
|
export * from './lib/WebValueChangedEventArgsDescriptionMetadata';
|
|
1384
1402
|
export * from './lib/WrapperExpressionDescription';
|