igniteui-webcomponents-layouts 3.2.4 → 3.5.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/bundles/igniteui-webcomponents-layouts.umd.js +789 -157
- package/bundles/igniteui-webcomponents-layouts.umd.min.js +1 -1
- package/esm2015/lib/PropertyEditorPanelView_combined.js +20 -20
- package/esm2015/lib/PropertyEditorPropertyDescription_combined.js +84 -58
- package/esm2015/lib/PropertyEditorTreeTransformer.js +1 -0
- package/esm2015/lib/PropertyEditorValueType.js +2 -1
- package/esm2015/lib/ToolActionLabel.js +7 -0
- package/esm2015/lib/ToolActionRadio.js +7 -0
- package/esm2015/lib/ToolPanelView_combined.js +237 -53
- package/esm2015/lib/igc-list-panel-component.js +9 -0
- package/esm2015/lib/igc-list-panel-item-model.js +5 -0
- package/esm2015/lib/igc-list-panel-template-item-updating-event-args.js +11 -5
- package/esm2015/lib/igc-popup-component.js +7 -0
- package/esm2015/lib/igc-property-editor-data-source.js +7 -2
- package/esm2015/lib/igc-property-editor-description-object.js +5 -0
- package/esm2015/lib/igc-property-editor-panel-component.js +5 -0
- package/esm2015/lib/igc-property-editor-property-description-component.js +33 -5
- package/esm2015/lib/igc-tool-action-checkbox-component.js +14 -0
- package/esm2015/lib/igc-tool-action-component.js +21 -0
- package/esm2015/lib/igc-tool-action-event-detail.js +12 -6
- package/esm2015/lib/igc-tool-action-group-header-component.js +14 -0
- package/esm2015/lib/igc-tool-action-icon-button-component.js +14 -0
- package/esm2015/lib/igc-tool-action-icon-menu-component.js +14 -0
- package/esm2015/lib/igc-tool-action-label-component.js +63 -0
- package/esm2015/lib/igc-tool-action-label-module.js +16 -0
- package/esm2015/lib/igc-tool-action-menu-base-component.js +14 -0
- package/esm2015/lib/igc-tool-action-number-input-component.js +14 -0
- package/esm2015/lib/igc-tool-action-performed-event-args.js +11 -5
- package/esm2015/lib/igc-tool-action-radio-component.js +69 -0
- package/esm2015/lib/igc-tool-action-radio-module.js +16 -0
- package/esm2015/lib/igc-tool-action-separator-component.js +14 -0
- package/esm2015/lib/igc-tool-panel-component.js +13 -6
- package/esm2015/lib/igc-toolbar-component.js +5 -0
- package/esm2015/lib/igc-x-expansion-panel-component.js +7 -0
- package/esm2015/public_api.js +6 -0
- package/esm5/lib/PropertyEditorPanelView_combined.js +20 -20
- package/esm5/lib/PropertyEditorPropertyDescription_combined.js +82 -57
- package/esm5/lib/PropertyEditorTreeTransformer.js +1 -0
- package/esm5/lib/PropertyEditorValueType.js +2 -1
- package/esm5/lib/ToolActionLabel.js +7 -0
- package/esm5/lib/ToolActionRadio.js +7 -0
- package/esm5/lib/ToolPanelView_combined.js +241 -51
- package/esm5/lib/igc-list-panel-component.js +9 -0
- package/esm5/lib/igc-list-panel-item-model.js +5 -0
- package/esm5/lib/igc-list-panel-template-item-updating-event-args.js +11 -5
- package/esm5/lib/igc-popup-component.js +7 -0
- package/esm5/lib/igc-property-editor-data-source.js +7 -2
- package/esm5/lib/igc-property-editor-description-object.js +5 -0
- package/esm5/lib/igc-property-editor-panel-component.js +5 -0
- package/esm5/lib/igc-property-editor-property-description-component.js +33 -5
- package/esm5/lib/igc-tool-action-checkbox-component.js +14 -0
- package/esm5/lib/igc-tool-action-component.js +21 -0
- package/esm5/lib/igc-tool-action-event-detail.js +12 -6
- package/esm5/lib/igc-tool-action-group-header-component.js +14 -0
- package/esm5/lib/igc-tool-action-icon-button-component.js +14 -0
- package/esm5/lib/igc-tool-action-icon-menu-component.js +14 -0
- package/esm5/lib/igc-tool-action-label-component.js +72 -0
- package/esm5/lib/igc-tool-action-label-module.js +20 -0
- package/esm5/lib/igc-tool-action-menu-base-component.js +14 -0
- package/esm5/lib/igc-tool-action-number-input-component.js +14 -0
- package/esm5/lib/igc-tool-action-performed-event-args.js +11 -5
- package/esm5/lib/igc-tool-action-radio-component.js +82 -0
- package/esm5/lib/igc-tool-action-radio-module.js +20 -0
- package/esm5/lib/igc-tool-action-separator-component.js +14 -0
- package/esm5/lib/igc-tool-panel-component.js +13 -6
- package/esm5/lib/igc-toolbar-component.js +5 -0
- package/esm5/lib/igc-x-expansion-panel-component.js +7 -0
- package/esm5/public_api.js +6 -0
- package/fesm2015/igniteui-webcomponents-layouts.js +761 -162
- package/fesm5/igniteui-webcomponents-layouts.js +785 -159
- package/lib/PropertyEditorPropertyDescription_combined.d.ts +13 -10
- package/lib/PropertyEditorValueType.d.ts +2 -1
- package/lib/ToolActionLabel.d.ts +1 -0
- package/lib/ToolActionRadio.d.ts +1 -0
- package/lib/ToolPanelView_combined.d.ts +33 -6
- package/lib/igc-property-editor-property-description-component.d.ts +1 -0
- package/lib/igc-tool-action-checkbox-component.d.ts +1 -0
- package/lib/igc-tool-action-component.d.ts +1 -0
- package/lib/igc-tool-action-group-header-component.d.ts +1 -0
- package/lib/igc-tool-action-icon-button-component.d.ts +1 -0
- package/lib/igc-tool-action-icon-menu-component.d.ts +1 -0
- package/lib/igc-tool-action-label-component.d.ts +17 -0
- package/lib/igc-tool-action-label-module.d.ts +3 -0
- package/lib/igc-tool-action-menu-base-component.d.ts +1 -0
- package/lib/igc-tool-action-number-input-component.d.ts +1 -0
- package/lib/igc-tool-action-radio-component.d.ts +18 -0
- package/lib/igc-tool-action-radio-module.d.ts +3 -0
- package/lib/igc-tool-action-separator-component.d.ts +1 -0
- package/package.json +3 -3
- package/public_api.d.ts +6 -0
|
@@ -5,6 +5,7 @@ import { PropertyEditorPropertyDescriptionChangedEventArgs } from "./PropertyEdi
|
|
|
5
5
|
import { PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs } from "./PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs";
|
|
6
6
|
import { ObservableCollection$1 } from "igniteui-webcomponents-core";
|
|
7
7
|
import { TypeDescriptionContext } from "igniteui-webcomponents-core";
|
|
8
|
+
import { Dictionary$2 } from "igniteui-webcomponents-core";
|
|
8
9
|
/**
|
|
9
10
|
* @hidden
|
|
10
11
|
*/
|
|
@@ -66,19 +67,21 @@ export declare class PropertyEditorPropertyDescriptionCollection extends Observa
|
|
|
66
67
|
*/
|
|
67
68
|
export declare class PropertyEditorDataSource extends Base implements INotifyPropertyChanged {
|
|
68
69
|
static $t: Type;
|
|
69
|
-
private
|
|
70
|
-
|
|
70
|
+
private k;
|
|
71
|
+
n: string;
|
|
71
72
|
private a;
|
|
72
73
|
b: TypeDescriptionContext;
|
|
73
|
-
private
|
|
74
|
-
|
|
74
|
+
private g;
|
|
75
|
+
h: PropertyEditorPropertyDescriptionCollection;
|
|
75
76
|
propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
|
|
76
|
-
protected
|
|
77
|
-
protected
|
|
78
|
-
|
|
79
|
-
private
|
|
80
|
-
private
|
|
81
|
-
|
|
77
|
+
protected p(a: string, b: any, c: any): void;
|
|
78
|
+
protected q(a: string, b: any, c: any): void;
|
|
79
|
+
static d(a: TypeDescriptionContext, b: string, c: Dictionary$2<string, PropertyEditorDataSource>): PropertyEditorDataSource;
|
|
80
|
+
private j;
|
|
81
|
+
private f;
|
|
82
|
+
private i;
|
|
83
|
+
private r;
|
|
84
|
+
e(a: string, b: boolean): PropertyEditorPropertyDescription;
|
|
82
85
|
private c;
|
|
83
86
|
}
|
|
84
87
|
/**
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ToolActionLabel } from "./ToolPanelView_combined";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ToolActionRadio } from "./ToolPanelView_combined";
|
|
@@ -120,6 +120,32 @@ export declare class ToolAction extends Base implements INotifyPropertyChanged {
|
|
|
120
120
|
static a(a: ToolActionInfo): ToolAction;
|
|
121
121
|
a6(a: ToolActionInfo): void;
|
|
122
122
|
}
|
|
123
|
+
/**
|
|
124
|
+
* @hidden
|
|
125
|
+
*/
|
|
126
|
+
export declare class ToolActionLabel extends ToolAction {
|
|
127
|
+
static $t: Type;
|
|
128
|
+
protected get_f(): ToolActionType;
|
|
129
|
+
private bf;
|
|
130
|
+
private be;
|
|
131
|
+
bb(a: ListPanel, b: ToolPanel, c: ListPanelTemplateItemUpdatingEventArgs, d: ToolActionMeasurementContext): void;
|
|
132
|
+
}
|
|
133
|
+
/**
|
|
134
|
+
* @hidden
|
|
135
|
+
*/
|
|
136
|
+
export declare class ToolActionRadio extends ToolAction {
|
|
137
|
+
static $t: Type;
|
|
138
|
+
protected get_f(): ToolActionType;
|
|
139
|
+
bf: string;
|
|
140
|
+
b(a: boolean): ToolActionEventDetail;
|
|
141
|
+
x(): any;
|
|
142
|
+
bg(): void;
|
|
143
|
+
private be;
|
|
144
|
+
o(a: ToolPanel, b: ToolActionMeasurementContext): number;
|
|
145
|
+
private bi;
|
|
146
|
+
private bh;
|
|
147
|
+
bb(a: ListPanel, b: ToolPanel, c: ListPanelTemplateItemUpdatingEventArgs, d: ToolActionMeasurementContext): void;
|
|
148
|
+
}
|
|
123
149
|
/**
|
|
124
150
|
* @hidden
|
|
125
151
|
*/
|
|
@@ -299,9 +325,10 @@ export declare class ToolPanel extends Base implements INotifyPropertyChanged {
|
|
|
299
325
|
private as;
|
|
300
326
|
private az;
|
|
301
327
|
private at;
|
|
302
|
-
private
|
|
328
|
+
private a4;
|
|
303
329
|
private ao;
|
|
304
330
|
ap(): void;
|
|
331
|
+
a3(a: ToolAction): void;
|
|
305
332
|
private ar;
|
|
306
333
|
notifySizeChanged(): void;
|
|
307
334
|
destroy(): void;
|
|
@@ -312,14 +339,14 @@ export declare class ToolPanel extends Base implements INotifyPropertyChanged {
|
|
|
312
339
|
protected ax(a: string, b: any, c: any): void;
|
|
313
340
|
protected a0(a: string, b: any, c: any): void;
|
|
314
341
|
a: IExecutionContext;
|
|
315
|
-
static a7: Brush;
|
|
316
|
-
private a4;
|
|
317
|
-
a6: Brush;
|
|
318
342
|
static a8: Brush;
|
|
319
|
-
a5
|
|
343
|
+
private a5;
|
|
344
|
+
a7: Brush;
|
|
345
|
+
static a9: Brush;
|
|
346
|
+
a6: Brush;
|
|
320
347
|
private b;
|
|
321
348
|
private z;
|
|
322
|
-
|
|
349
|
+
ba: Brush;
|
|
323
350
|
static j: ToolPanelOrientation;
|
|
324
351
|
private i;
|
|
325
352
|
k: ToolPanelOrientation;
|
|
@@ -25,6 +25,7 @@ export declare class IgcPropertyEditorPropertyDescriptionComponent extends IgcHT
|
|
|
25
25
|
protected _flushQueuedAttributes(): void;
|
|
26
26
|
protected _a(attrName: string, attrValue: any): void;
|
|
27
27
|
connectedCallback(): void;
|
|
28
|
+
disconnectedCallback(): void;
|
|
28
29
|
private static _observedAttributesIgcPropertyEditorPropertyDescriptionComponent;
|
|
29
30
|
static readonly observedAttributes: string[];
|
|
30
31
|
private _updatingFromAttribute;
|
|
@@ -8,6 +8,7 @@ export declare class IgcToolActionCheckboxComponent extends IgcToolActionCompone
|
|
|
8
8
|
readonly i: ToolActionCheckbox;
|
|
9
9
|
constructor();
|
|
10
10
|
connectedCallback(): void;
|
|
11
|
+
disconnectedCallback(): void;
|
|
11
12
|
private static _observedAttributesIgcToolActionCheckboxComponent;
|
|
12
13
|
static readonly observedAttributes: string[];
|
|
13
14
|
static htmlTagName: string;
|
|
@@ -25,6 +25,7 @@ export declare class IgcToolActionComponent extends IgcHTMLElement {
|
|
|
25
25
|
protected _flushQueuedAttributes(): void;
|
|
26
26
|
protected _a(attrName: string, attrValue: any): void;
|
|
27
27
|
connectedCallback(): void;
|
|
28
|
+
disconnectedCallback(): void;
|
|
28
29
|
private static _observedAttributesIgcToolActionComponent;
|
|
29
30
|
static readonly observedAttributes: string[];
|
|
30
31
|
private _updatingFromAttribute;
|
|
@@ -8,6 +8,7 @@ export declare class IgcToolActionGroupHeaderComponent extends IgcToolActionComp
|
|
|
8
8
|
readonly i: ToolActionGroupHeader;
|
|
9
9
|
constructor();
|
|
10
10
|
connectedCallback(): void;
|
|
11
|
+
disconnectedCallback(): void;
|
|
11
12
|
private static _observedAttributesIgcToolActionGroupHeaderComponent;
|
|
12
13
|
static readonly observedAttributes: string[];
|
|
13
14
|
static htmlTagName: string;
|
|
@@ -8,6 +8,7 @@ export declare class IgcToolActionIconButtonComponent extends IgcToolActionCompo
|
|
|
8
8
|
readonly i: ToolActionIconButton;
|
|
9
9
|
constructor();
|
|
10
10
|
connectedCallback(): void;
|
|
11
|
+
disconnectedCallback(): void;
|
|
11
12
|
private static _observedAttributesIgcToolActionIconButtonComponent;
|
|
12
13
|
static readonly observedAttributes: string[];
|
|
13
14
|
static htmlTagName: string;
|
|
@@ -8,6 +8,7 @@ export declare class IgcToolActionIconMenuComponent extends IgcToolActionMenuBas
|
|
|
8
8
|
readonly i: ToolActionIconMenu;
|
|
9
9
|
constructor();
|
|
10
10
|
connectedCallback(): void;
|
|
11
|
+
disconnectedCallback(): void;
|
|
11
12
|
private static _observedAttributesIgcToolActionIconMenuComponent;
|
|
12
13
|
static readonly observedAttributes: string[];
|
|
13
14
|
static htmlTagName: string;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
2
|
+
import { ToolActionLabel } from "./ToolActionLabel";
|
|
3
|
+
export declare class IgcToolActionLabelComponent extends IgcToolActionComponent {
|
|
4
|
+
protected createImplementation(): ToolActionLabel;
|
|
5
|
+
/**
|
|
6
|
+
* @hidden
|
|
7
|
+
*/
|
|
8
|
+
readonly i: ToolActionLabel;
|
|
9
|
+
constructor();
|
|
10
|
+
connectedCallback(): void;
|
|
11
|
+
disconnectedCallback(): void;
|
|
12
|
+
private static _observedAttributesIgcToolActionLabelComponent;
|
|
13
|
+
static readonly observedAttributes: string[];
|
|
14
|
+
static htmlTagName: string;
|
|
15
|
+
protected static _isElementRegistered: boolean;
|
|
16
|
+
static register(): void;
|
|
17
|
+
}
|
|
@@ -12,6 +12,7 @@ export declare abstract class IgcToolActionMenuBaseComponent extends IgcToolActi
|
|
|
12
12
|
readonly i: ToolActionMenuBase;
|
|
13
13
|
constructor();
|
|
14
14
|
connectedCallback(): void;
|
|
15
|
+
disconnectedCallback(): void;
|
|
15
16
|
private static _observedAttributesIgcToolActionMenuBaseComponent;
|
|
16
17
|
static readonly observedAttributes: string[];
|
|
17
18
|
private _actions;
|
|
@@ -8,6 +8,7 @@ export declare class IgcToolActionNumberInputComponent extends IgcToolActionComp
|
|
|
8
8
|
readonly i: ToolActionNumberInput;
|
|
9
9
|
constructor();
|
|
10
10
|
connectedCallback(): void;
|
|
11
|
+
disconnectedCallback(): void;
|
|
11
12
|
private static _observedAttributesIgcToolActionNumberInputComponent;
|
|
12
13
|
static readonly observedAttributes: string[];
|
|
13
14
|
static htmlTagName: string;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
2
|
+
import { ToolActionRadio } from "./ToolActionRadio";
|
|
3
|
+
export declare class IgcToolActionRadioComponent extends IgcToolActionComponent {
|
|
4
|
+
protected createImplementation(): ToolActionRadio;
|
|
5
|
+
/**
|
|
6
|
+
* @hidden
|
|
7
|
+
*/
|
|
8
|
+
readonly i: ToolActionRadio;
|
|
9
|
+
constructor();
|
|
10
|
+
connectedCallback(): void;
|
|
11
|
+
disconnectedCallback(): void;
|
|
12
|
+
private static _observedAttributesIgcToolActionRadioComponent;
|
|
13
|
+
static readonly observedAttributes: string[];
|
|
14
|
+
static htmlTagName: string;
|
|
15
|
+
protected static _isElementRegistered: boolean;
|
|
16
|
+
static register(): void;
|
|
17
|
+
radioGroup: string;
|
|
18
|
+
}
|
|
@@ -8,6 +8,7 @@ export declare class IgcToolActionSeparatorComponent extends IgcToolActionCompon
|
|
|
8
8
|
readonly i: ToolActionSeparator;
|
|
9
9
|
constructor();
|
|
10
10
|
connectedCallback(): void;
|
|
11
|
+
disconnectedCallback(): void;
|
|
11
12
|
private static _observedAttributesIgcToolActionSeparatorComponent;
|
|
12
13
|
static readonly observedAttributes: string[];
|
|
13
14
|
static htmlTagName: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-webcomponents-layouts",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.0",
|
|
4
4
|
"description": "Ignite UI WebComponents layout components.",
|
|
5
5
|
"homepage": "https://github.com/IgniteUI/igniteui-webcomponents-layouts",
|
|
6
6
|
"keywords": [
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"tslib": "^2.3.1"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"igniteui-webcomponents-core": "3.
|
|
18
|
-
"igniteui-webcomponents-inputs": "3.
|
|
17
|
+
"igniteui-webcomponents-core": "3.5.0",
|
|
18
|
+
"igniteui-webcomponents-inputs": "3.5.0"
|
|
19
19
|
},
|
|
20
20
|
"sideEffects": false,
|
|
21
21
|
"typings": "igniteui-webcomponents-layouts.d.ts",
|
package/public_api.d.ts
CHANGED
|
@@ -27,6 +27,12 @@ export * from './lib/OnPopupEventArgs';
|
|
|
27
27
|
export * from './lib/igc-on-popup-event-args';
|
|
28
28
|
export * from './lib/OnClosedEventArgs';
|
|
29
29
|
export * from './lib/igc-on-closed-event-args';
|
|
30
|
+
export * from './lib/ToolActionLabel';
|
|
31
|
+
export * from './lib/igc-tool-action-label-component';
|
|
32
|
+
export * from './lib/igc-tool-action-label-module';
|
|
33
|
+
export * from './lib/ToolActionRadio';
|
|
34
|
+
export * from './lib/igc-tool-action-radio-component';
|
|
35
|
+
export * from './lib/igc-tool-action-radio-module';
|
|
30
36
|
export * from './lib/ToolActionSeparator';
|
|
31
37
|
export * from './lib/igc-tool-action-separator-component';
|
|
32
38
|
export * from './lib/igc-tool-action-separator-module';
|