igniteui-webcomponents-layouts 3.2.4 → 4.0.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
|
@@ -99,11 +99,25 @@ export let IgcPropertyEditorPropertyDescriptionComponent = /*@__PURE__*/ (() =>
|
|
|
99
99
|
if (super["connectedCallback"]) {
|
|
100
100
|
super["connectedCallback"]();
|
|
101
101
|
}
|
|
102
|
+
if (this.i.connectedCallback) {
|
|
103
|
+
this.i.connectedCallback();
|
|
104
|
+
}
|
|
102
105
|
if (!this._attached) {
|
|
103
106
|
this._attached = true;
|
|
104
107
|
this._flushQueuedAttributes();
|
|
105
108
|
}
|
|
106
109
|
}
|
|
110
|
+
disconnectedCallback() {
|
|
111
|
+
if (super["disconnectedCallback"]) {
|
|
112
|
+
super["disconnectedCallback"]();
|
|
113
|
+
}
|
|
114
|
+
if (this.i.disconnectedCallback) {
|
|
115
|
+
this.i.disconnectedCallback();
|
|
116
|
+
}
|
|
117
|
+
if (this._attached) {
|
|
118
|
+
this._attached = false;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
107
121
|
static get observedAttributes() {
|
|
108
122
|
if (IgcPropertyEditorPropertyDescriptionComponent._observedAttributesIgcPropertyEditorPropertyDescriptionComponent == null) {
|
|
109
123
|
let names = getAllPropertyNames(IgcPropertyEditorPropertyDescriptionComponent);
|
|
@@ -229,15 +243,21 @@ export let IgcPropertyEditorPropertyDescriptionComponent = /*@__PURE__*/ (() =>
|
|
|
229
243
|
this._a("step", this.i.aa);
|
|
230
244
|
}
|
|
231
245
|
get complexValue() {
|
|
232
|
-
|
|
246
|
+
const r = this.i.g;
|
|
247
|
+
if (r == null) {
|
|
233
248
|
return null;
|
|
234
249
|
}
|
|
235
|
-
if (!
|
|
250
|
+
if (!r.externalObject) {
|
|
236
251
|
let e = new IgcPropertyEditorDescriptionObject();
|
|
237
|
-
e.
|
|
238
|
-
|
|
252
|
+
if (e.i.setNativeElement) {
|
|
253
|
+
e.i.setNativeElement(r);
|
|
254
|
+
}
|
|
255
|
+
else {
|
|
256
|
+
e._implementation = r;
|
|
257
|
+
}
|
|
258
|
+
r.externalObject = e;
|
|
239
259
|
}
|
|
240
|
-
return
|
|
260
|
+
return r.externalObject;
|
|
241
261
|
}
|
|
242
262
|
set complexValue(v) {
|
|
243
263
|
v == null ? this.i.g = null : this.i.g = v.i;
|
|
@@ -272,6 +292,11 @@ export let IgcPropertyEditorPropertyDescriptionComponent = /*@__PURE__*/ (() =>
|
|
|
272
292
|
this.i.i = innerColl;
|
|
273
293
|
}
|
|
274
294
|
findByName(name) {
|
|
295
|
+
if (this.findEphemera) {
|
|
296
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
297
|
+
return this.findEphemera(name);
|
|
298
|
+
}
|
|
299
|
+
}
|
|
275
300
|
if (this.complexValue && this.complexValue.name && this.complexValue.name == name) {
|
|
276
301
|
return this.complexValue;
|
|
277
302
|
}
|
|
@@ -354,6 +379,7 @@ export let IgcPropertyEditorPropertyDescriptionComponent = /*@__PURE__*/ (() =>
|
|
|
354
379
|
}
|
|
355
380
|
};
|
|
356
381
|
this.i.buttonClicked = delegateCombine(this.i.buttonClicked, this._buttonClicked_wrapped);
|
|
382
|
+
;
|
|
357
383
|
}
|
|
358
384
|
get changed() {
|
|
359
385
|
return this._changed;
|
|
@@ -376,6 +402,7 @@ export let IgcPropertyEditorPropertyDescriptionComponent = /*@__PURE__*/ (() =>
|
|
|
376
402
|
}
|
|
377
403
|
};
|
|
378
404
|
this.i.changed = delegateCombine(this.i.changed, this._changed_wrapped);
|
|
405
|
+
;
|
|
379
406
|
}
|
|
380
407
|
get targetPropertyUpdating() {
|
|
381
408
|
return this._targetPropertyUpdating;
|
|
@@ -398,6 +425,7 @@ export let IgcPropertyEditorPropertyDescriptionComponent = /*@__PURE__*/ (() =>
|
|
|
398
425
|
}
|
|
399
426
|
};
|
|
400
427
|
this.i.targetPropertyUpdating = delegateCombine(this.i.targetPropertyUpdating, this._targetPropertyUpdating_wrapped);
|
|
428
|
+
;
|
|
401
429
|
}
|
|
402
430
|
}
|
|
403
431
|
IgcPropertyEditorPropertyDescriptionComponent._observedAttributesIgcPropertyEditorPropertyDescriptionComponent = null;
|
|
@@ -20,11 +20,25 @@ export let IgcToolActionCheckboxComponent = /*@__PURE__*/ (() => {
|
|
|
20
20
|
if (super["connectedCallback"]) {
|
|
21
21
|
super["connectedCallback"]();
|
|
22
22
|
}
|
|
23
|
+
if (this.i.connectedCallback) {
|
|
24
|
+
this.i.connectedCallback();
|
|
25
|
+
}
|
|
23
26
|
if (!this._attached) {
|
|
24
27
|
this._attached = true;
|
|
25
28
|
this._flushQueuedAttributes();
|
|
26
29
|
}
|
|
27
30
|
}
|
|
31
|
+
disconnectedCallback() {
|
|
32
|
+
if (super["disconnectedCallback"]) {
|
|
33
|
+
super["disconnectedCallback"]();
|
|
34
|
+
}
|
|
35
|
+
if (this.i.disconnectedCallback) {
|
|
36
|
+
this.i.disconnectedCallback();
|
|
37
|
+
}
|
|
38
|
+
if (this._attached) {
|
|
39
|
+
this._attached = false;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
28
42
|
static get observedAttributes() {
|
|
29
43
|
if (IgcToolActionCheckboxComponent._observedAttributesIgcToolActionCheckboxComponent == null) {
|
|
30
44
|
let names = getAllPropertyNames(IgcToolActionCheckboxComponent);
|
|
@@ -92,11 +92,25 @@ export let IgcToolActionComponent = /*@__PURE__*/ (() => {
|
|
|
92
92
|
if (super["connectedCallback"]) {
|
|
93
93
|
super["connectedCallback"]();
|
|
94
94
|
}
|
|
95
|
+
if (this.i.connectedCallback) {
|
|
96
|
+
this.i.connectedCallback();
|
|
97
|
+
}
|
|
95
98
|
if (!this._attached) {
|
|
96
99
|
this._attached = true;
|
|
97
100
|
this._flushQueuedAttributes();
|
|
98
101
|
}
|
|
99
102
|
}
|
|
103
|
+
disconnectedCallback() {
|
|
104
|
+
if (super["disconnectedCallback"]) {
|
|
105
|
+
super["disconnectedCallback"]();
|
|
106
|
+
}
|
|
107
|
+
if (this.i.disconnectedCallback) {
|
|
108
|
+
this.i.disconnectedCallback();
|
|
109
|
+
}
|
|
110
|
+
if (this._attached) {
|
|
111
|
+
this._attached = false;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
100
114
|
static get observedAttributes() {
|
|
101
115
|
if (IgcToolActionComponent._observedAttributesIgcToolActionComponent == null) {
|
|
102
116
|
let names = getAllPropertyNames(IgcToolActionComponent);
|
|
@@ -202,6 +216,11 @@ export let IgcToolActionComponent = /*@__PURE__*/ (() => {
|
|
|
202
216
|
this.i.ak = v;
|
|
203
217
|
}
|
|
204
218
|
findByName(name) {
|
|
219
|
+
if (this.findEphemera) {
|
|
220
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
221
|
+
return this.findEphemera(name);
|
|
222
|
+
}
|
|
223
|
+
}
|
|
205
224
|
return null;
|
|
206
225
|
}
|
|
207
226
|
get hasUserValues() {
|
|
@@ -281,6 +300,7 @@ export let IgcToolActionComponent = /*@__PURE__*/ (() => {
|
|
|
281
300
|
}
|
|
282
301
|
};
|
|
283
302
|
this.i.onCommand = delegateCombine(this.i.onCommand, this._onCommand_wrapped);
|
|
303
|
+
;
|
|
284
304
|
}
|
|
285
305
|
get performed() {
|
|
286
306
|
return this._performed;
|
|
@@ -303,6 +323,7 @@ export let IgcToolActionComponent = /*@__PURE__*/ (() => {
|
|
|
303
323
|
}
|
|
304
324
|
};
|
|
305
325
|
this.i.performed = delegateCombine(this.i.performed, this._performed_wrapped);
|
|
326
|
+
;
|
|
306
327
|
}
|
|
307
328
|
}
|
|
308
329
|
IgcToolActionComponent._observedAttributesIgcToolActionComponent = null;
|
|
@@ -25,17 +25,18 @@ export class IgcToolActionEventDetail {
|
|
|
25
25
|
this.onImplementationCreated();
|
|
26
26
|
}
|
|
27
27
|
get action() {
|
|
28
|
-
|
|
28
|
+
const r = this.i.a;
|
|
29
|
+
if (r == null) {
|
|
29
30
|
return null;
|
|
30
31
|
}
|
|
31
|
-
if (!
|
|
32
|
-
let e = IgcToolActionComponent._createFromInternal(
|
|
32
|
+
if (!r.externalObject) {
|
|
33
|
+
let e = IgcToolActionComponent._createFromInternal(r);
|
|
33
34
|
if (e) {
|
|
34
|
-
e._implementation =
|
|
35
|
+
e._implementation = r;
|
|
35
36
|
}
|
|
36
|
-
|
|
37
|
+
r.externalObject = e;
|
|
37
38
|
}
|
|
38
|
-
return
|
|
39
|
+
return r.externalObject;
|
|
39
40
|
}
|
|
40
41
|
set action(v) {
|
|
41
42
|
v == null ? this.i.a = null : this.i.a = v.i;
|
|
@@ -77,6 +78,11 @@ export class IgcToolActionEventDetail {
|
|
|
77
78
|
this.i.g = v;
|
|
78
79
|
}
|
|
79
80
|
findByName(name) {
|
|
81
|
+
if (this.findEphemera) {
|
|
82
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
83
|
+
return this.findEphemera(name);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
80
86
|
if (this.action && this.action.name && this.action.name == name) {
|
|
81
87
|
return this.action;
|
|
82
88
|
}
|
|
@@ -20,11 +20,25 @@ export let IgcToolActionGroupHeaderComponent = /*@__PURE__*/ (() => {
|
|
|
20
20
|
if (super["connectedCallback"]) {
|
|
21
21
|
super["connectedCallback"]();
|
|
22
22
|
}
|
|
23
|
+
if (this.i.connectedCallback) {
|
|
24
|
+
this.i.connectedCallback();
|
|
25
|
+
}
|
|
23
26
|
if (!this._attached) {
|
|
24
27
|
this._attached = true;
|
|
25
28
|
this._flushQueuedAttributes();
|
|
26
29
|
}
|
|
27
30
|
}
|
|
31
|
+
disconnectedCallback() {
|
|
32
|
+
if (super["disconnectedCallback"]) {
|
|
33
|
+
super["disconnectedCallback"]();
|
|
34
|
+
}
|
|
35
|
+
if (this.i.disconnectedCallback) {
|
|
36
|
+
this.i.disconnectedCallback();
|
|
37
|
+
}
|
|
38
|
+
if (this._attached) {
|
|
39
|
+
this._attached = false;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
28
42
|
static get observedAttributes() {
|
|
29
43
|
if (IgcToolActionGroupHeaderComponent._observedAttributesIgcToolActionGroupHeaderComponent == null) {
|
|
30
44
|
let names = getAllPropertyNames(IgcToolActionGroupHeaderComponent);
|
|
@@ -20,11 +20,25 @@ export let IgcToolActionIconButtonComponent = /*@__PURE__*/ (() => {
|
|
|
20
20
|
if (super["connectedCallback"]) {
|
|
21
21
|
super["connectedCallback"]();
|
|
22
22
|
}
|
|
23
|
+
if (this.i.connectedCallback) {
|
|
24
|
+
this.i.connectedCallback();
|
|
25
|
+
}
|
|
23
26
|
if (!this._attached) {
|
|
24
27
|
this._attached = true;
|
|
25
28
|
this._flushQueuedAttributes();
|
|
26
29
|
}
|
|
27
30
|
}
|
|
31
|
+
disconnectedCallback() {
|
|
32
|
+
if (super["disconnectedCallback"]) {
|
|
33
|
+
super["disconnectedCallback"]();
|
|
34
|
+
}
|
|
35
|
+
if (this.i.disconnectedCallback) {
|
|
36
|
+
this.i.disconnectedCallback();
|
|
37
|
+
}
|
|
38
|
+
if (this._attached) {
|
|
39
|
+
this._attached = false;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
28
42
|
static get observedAttributes() {
|
|
29
43
|
if (IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent == null) {
|
|
30
44
|
let names = getAllPropertyNames(IgcToolActionIconButtonComponent);
|
|
@@ -20,11 +20,25 @@ export let IgcToolActionIconMenuComponent = /*@__PURE__*/ (() => {
|
|
|
20
20
|
if (super["connectedCallback"]) {
|
|
21
21
|
super["connectedCallback"]();
|
|
22
22
|
}
|
|
23
|
+
if (this.i.connectedCallback) {
|
|
24
|
+
this.i.connectedCallback();
|
|
25
|
+
}
|
|
23
26
|
if (!this._attached) {
|
|
24
27
|
this._attached = true;
|
|
25
28
|
this._flushQueuedAttributes();
|
|
26
29
|
}
|
|
27
30
|
}
|
|
31
|
+
disconnectedCallback() {
|
|
32
|
+
if (super["disconnectedCallback"]) {
|
|
33
|
+
super["disconnectedCallback"]();
|
|
34
|
+
}
|
|
35
|
+
if (this.i.disconnectedCallback) {
|
|
36
|
+
this.i.disconnectedCallback();
|
|
37
|
+
}
|
|
38
|
+
if (this._attached) {
|
|
39
|
+
this._attached = false;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
28
42
|
static get observedAttributes() {
|
|
29
43
|
if (IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent == null) {
|
|
30
44
|
let names = getAllPropertyNames(IgcToolActionIconMenuComponent);
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
2
|
+
import { ToolActionLabel } from "./ToolActionLabel";
|
|
3
|
+
import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core";
|
|
4
|
+
import { RegisterElementHelper } from "igniteui-webcomponents-core";
|
|
5
|
+
export let IgcToolActionLabelComponent = /*@__PURE__*/ (() => {
|
|
6
|
+
class IgcToolActionLabelComponent extends IgcToolActionComponent {
|
|
7
|
+
constructor() {
|
|
8
|
+
super();
|
|
9
|
+
}
|
|
10
|
+
createImplementation() {
|
|
11
|
+
return new ToolActionLabel();
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @hidden
|
|
15
|
+
*/
|
|
16
|
+
get i() {
|
|
17
|
+
return this._implementation;
|
|
18
|
+
}
|
|
19
|
+
connectedCallback() {
|
|
20
|
+
if (super["connectedCallback"]) {
|
|
21
|
+
super["connectedCallback"]();
|
|
22
|
+
}
|
|
23
|
+
if (this.i.connectedCallback) {
|
|
24
|
+
this.i.connectedCallback();
|
|
25
|
+
}
|
|
26
|
+
if (!this._attached) {
|
|
27
|
+
this._attached = true;
|
|
28
|
+
this._flushQueuedAttributes();
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
disconnectedCallback() {
|
|
32
|
+
if (super["disconnectedCallback"]) {
|
|
33
|
+
super["disconnectedCallback"]();
|
|
34
|
+
}
|
|
35
|
+
if (this.i.disconnectedCallback) {
|
|
36
|
+
this.i.disconnectedCallback();
|
|
37
|
+
}
|
|
38
|
+
if (this._attached) {
|
|
39
|
+
this._attached = false;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
static get observedAttributes() {
|
|
43
|
+
if (IgcToolActionLabelComponent._observedAttributesIgcToolActionLabelComponent == null) {
|
|
44
|
+
let names = getAllPropertyNames(IgcToolActionLabelComponent);
|
|
45
|
+
for (let i = 0; i < names.length; i++) {
|
|
46
|
+
names[i] = toSpinal(names[i]);
|
|
47
|
+
}
|
|
48
|
+
IgcToolActionLabelComponent._observedAttributesIgcToolActionLabelComponent = names;
|
|
49
|
+
}
|
|
50
|
+
return IgcToolActionLabelComponent._observedAttributesIgcToolActionLabelComponent;
|
|
51
|
+
}
|
|
52
|
+
static register() {
|
|
53
|
+
if (!IgcToolActionLabelComponent._isElementRegistered) {
|
|
54
|
+
IgcToolActionLabelComponent._isElementRegistered = true;
|
|
55
|
+
RegisterElementHelper.registerElement(IgcToolActionLabelComponent.htmlTagName, IgcToolActionLabelComponent);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
IgcToolActionLabelComponent._observedAttributesIgcToolActionLabelComponent = null;
|
|
60
|
+
IgcToolActionLabelComponent.htmlTagName = "igc-tool-action-label";
|
|
61
|
+
IgcToolActionLabelComponent._isElementRegistered = false;
|
|
62
|
+
return IgcToolActionLabelComponent;
|
|
63
|
+
})();
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
|
+
*/
|
|
7
|
+
import { IgcToolActionLabelComponent } from './igc-tool-action-label-component';
|
|
8
|
+
import { ToolActionLabel } from './ToolActionLabel';
|
|
9
|
+
import { TypeRegistrar } from "igniteui-webcomponents-core";
|
|
10
|
+
export class IgcToolActionLabelModule {
|
|
11
|
+
static register() {
|
|
12
|
+
IgcToolActionLabelComponent.register();
|
|
13
|
+
TypeRegistrar.registerCons("IgcToolActionLabelComponent", IgcToolActionLabelComponent);
|
|
14
|
+
TypeRegistrar.register("ToolActionLabel", ToolActionLabel.$type);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -23,11 +23,25 @@ export let IgcToolActionMenuBaseComponent = /*@__PURE__*/ (() => {
|
|
|
23
23
|
if (super["connectedCallback"]) {
|
|
24
24
|
super["connectedCallback"]();
|
|
25
25
|
}
|
|
26
|
+
if (this.i.connectedCallback) {
|
|
27
|
+
this.i.connectedCallback();
|
|
28
|
+
}
|
|
26
29
|
if (!this._attached) {
|
|
27
30
|
this._attached = true;
|
|
28
31
|
this._flushQueuedAttributes();
|
|
29
32
|
}
|
|
30
33
|
}
|
|
34
|
+
disconnectedCallback() {
|
|
35
|
+
if (super["disconnectedCallback"]) {
|
|
36
|
+
super["disconnectedCallback"]();
|
|
37
|
+
}
|
|
38
|
+
if (this.i.disconnectedCallback) {
|
|
39
|
+
this.i.disconnectedCallback();
|
|
40
|
+
}
|
|
41
|
+
if (this._attached) {
|
|
42
|
+
this._attached = false;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
31
45
|
static get observedAttributes() {
|
|
32
46
|
if (IgcToolActionMenuBaseComponent._observedAttributesIgcToolActionMenuBaseComponent == null) {
|
|
33
47
|
let names = getAllPropertyNames(IgcToolActionMenuBaseComponent);
|
|
@@ -20,11 +20,25 @@ export let IgcToolActionNumberInputComponent = /*@__PURE__*/ (() => {
|
|
|
20
20
|
if (super["connectedCallback"]) {
|
|
21
21
|
super["connectedCallback"]();
|
|
22
22
|
}
|
|
23
|
+
if (this.i.connectedCallback) {
|
|
24
|
+
this.i.connectedCallback();
|
|
25
|
+
}
|
|
23
26
|
if (!this._attached) {
|
|
24
27
|
this._attached = true;
|
|
25
28
|
this._flushQueuedAttributes();
|
|
26
29
|
}
|
|
27
30
|
}
|
|
31
|
+
disconnectedCallback() {
|
|
32
|
+
if (super["disconnectedCallback"]) {
|
|
33
|
+
super["disconnectedCallback"]();
|
|
34
|
+
}
|
|
35
|
+
if (this.i.disconnectedCallback) {
|
|
36
|
+
this.i.disconnectedCallback();
|
|
37
|
+
}
|
|
38
|
+
if (this._attached) {
|
|
39
|
+
this._attached = false;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
28
42
|
static get observedAttributes() {
|
|
29
43
|
if (IgcToolActionNumberInputComponent._observedAttributesIgcToolActionNumberInputComponent == null) {
|
|
30
44
|
let names = getAllPropertyNames(IgcToolActionNumberInputComponent);
|
|
@@ -35,15 +35,21 @@ export class IgcToolActionPerformedEventArgs {
|
|
|
35
35
|
this.i.c = ensureBool(v);
|
|
36
36
|
}
|
|
37
37
|
get detail() {
|
|
38
|
-
|
|
38
|
+
const r = this.i.a;
|
|
39
|
+
if (r == null) {
|
|
39
40
|
return null;
|
|
40
41
|
}
|
|
41
|
-
if (!
|
|
42
|
+
if (!r.externalObject) {
|
|
42
43
|
let e = new IgcToolActionEventDetail();
|
|
43
|
-
e.
|
|
44
|
-
|
|
44
|
+
if (e.i.setNativeElement) {
|
|
45
|
+
e.i.setNativeElement(r);
|
|
46
|
+
}
|
|
47
|
+
else {
|
|
48
|
+
e._implementation = r;
|
|
49
|
+
}
|
|
50
|
+
r.externalObject = e;
|
|
45
51
|
}
|
|
46
|
-
return
|
|
52
|
+
return r.externalObject;
|
|
47
53
|
}
|
|
48
54
|
set detail(v) {
|
|
49
55
|
v == null ? this.i.a = null : this.i.a = v.i;
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import { IgcToolActionComponent } from "./igc-tool-action-component";
|
|
2
|
+
import { ToolActionRadio } from "./ToolActionRadio";
|
|
3
|
+
import { getAllPropertyNames, toSpinal } from "igniteui-webcomponents-core";
|
|
4
|
+
import { RegisterElementHelper } from "igniteui-webcomponents-core";
|
|
5
|
+
export let IgcToolActionRadioComponent = /*@__PURE__*/ (() => {
|
|
6
|
+
class IgcToolActionRadioComponent extends IgcToolActionComponent {
|
|
7
|
+
constructor() {
|
|
8
|
+
super();
|
|
9
|
+
}
|
|
10
|
+
createImplementation() {
|
|
11
|
+
return new ToolActionRadio();
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @hidden
|
|
15
|
+
*/
|
|
16
|
+
get i() {
|
|
17
|
+
return this._implementation;
|
|
18
|
+
}
|
|
19
|
+
connectedCallback() {
|
|
20
|
+
if (super["connectedCallback"]) {
|
|
21
|
+
super["connectedCallback"]();
|
|
22
|
+
}
|
|
23
|
+
if (this.i.connectedCallback) {
|
|
24
|
+
this.i.connectedCallback();
|
|
25
|
+
}
|
|
26
|
+
if (!this._attached) {
|
|
27
|
+
this._attached = true;
|
|
28
|
+
this._flushQueuedAttributes();
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
disconnectedCallback() {
|
|
32
|
+
if (super["disconnectedCallback"]) {
|
|
33
|
+
super["disconnectedCallback"]();
|
|
34
|
+
}
|
|
35
|
+
if (this.i.disconnectedCallback) {
|
|
36
|
+
this.i.disconnectedCallback();
|
|
37
|
+
}
|
|
38
|
+
if (this._attached) {
|
|
39
|
+
this._attached = false;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
static get observedAttributes() {
|
|
43
|
+
if (IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent == null) {
|
|
44
|
+
let names = getAllPropertyNames(IgcToolActionRadioComponent);
|
|
45
|
+
for (let i = 0; i < names.length; i++) {
|
|
46
|
+
names[i] = toSpinal(names[i]);
|
|
47
|
+
}
|
|
48
|
+
IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent = names;
|
|
49
|
+
}
|
|
50
|
+
return IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent;
|
|
51
|
+
}
|
|
52
|
+
static register() {
|
|
53
|
+
if (!IgcToolActionRadioComponent._isElementRegistered) {
|
|
54
|
+
IgcToolActionRadioComponent._isElementRegistered = true;
|
|
55
|
+
RegisterElementHelper.registerElement(IgcToolActionRadioComponent.htmlTagName, IgcToolActionRadioComponent);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
get radioGroup() {
|
|
59
|
+
return this.i.bf;
|
|
60
|
+
}
|
|
61
|
+
set radioGroup(v) {
|
|
62
|
+
this.i.bf = v;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent = null;
|
|
66
|
+
IgcToolActionRadioComponent.htmlTagName = "igc-tool-action-radio";
|
|
67
|
+
IgcToolActionRadioComponent._isElementRegistered = false;
|
|
68
|
+
return IgcToolActionRadioComponent;
|
|
69
|
+
})();
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
|
+
*/
|
|
7
|
+
import { IgcToolActionRadioComponent } from './igc-tool-action-radio-component';
|
|
8
|
+
import { ToolActionRadio } from './ToolActionRadio';
|
|
9
|
+
import { TypeRegistrar } from "igniteui-webcomponents-core";
|
|
10
|
+
export class IgcToolActionRadioModule {
|
|
11
|
+
static register() {
|
|
12
|
+
IgcToolActionRadioComponent.register();
|
|
13
|
+
TypeRegistrar.registerCons("IgcToolActionRadioComponent", IgcToolActionRadioComponent);
|
|
14
|
+
TypeRegistrar.register("ToolActionRadio", ToolActionRadio.$type);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -20,11 +20,25 @@ export let IgcToolActionSeparatorComponent = /*@__PURE__*/ (() => {
|
|
|
20
20
|
if (super["connectedCallback"]) {
|
|
21
21
|
super["connectedCallback"]();
|
|
22
22
|
}
|
|
23
|
+
if (this.i.connectedCallback) {
|
|
24
|
+
this.i.connectedCallback();
|
|
25
|
+
}
|
|
23
26
|
if (!this._attached) {
|
|
24
27
|
this._attached = true;
|
|
25
28
|
this._flushQueuedAttributes();
|
|
26
29
|
}
|
|
27
30
|
}
|
|
31
|
+
disconnectedCallback() {
|
|
32
|
+
if (super["disconnectedCallback"]) {
|
|
33
|
+
super["disconnectedCallback"]();
|
|
34
|
+
}
|
|
35
|
+
if (this.i.disconnectedCallback) {
|
|
36
|
+
this.i.disconnectedCallback();
|
|
37
|
+
}
|
|
38
|
+
if (this._attached) {
|
|
39
|
+
this._attached = false;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
28
42
|
static get observedAttributes() {
|
|
29
43
|
if (IgcToolActionSeparatorComponent._observedAttributesIgcToolActionSeparatorComponent == null) {
|
|
30
44
|
let names = getAllPropertyNames(IgcToolActionSeparatorComponent);
|
|
@@ -242,21 +242,21 @@ export let IgcToolPanelComponent = /*@__PURE__*/ (() => {
|
|
|
242
242
|
* Gets or sets the color to use for the background of the component.
|
|
243
243
|
*/
|
|
244
244
|
get backgroundColor() {
|
|
245
|
-
return brushToString(this.i.
|
|
245
|
+
return brushToString(this.i.a7);
|
|
246
246
|
}
|
|
247
247
|
set backgroundColor(v) {
|
|
248
|
-
this.i.
|
|
249
|
-
this._a("backgroundColor", brushToString(this.i.
|
|
248
|
+
this.i.a7 = stringToBrush(v);
|
|
249
|
+
this._a("backgroundColor", brushToString(this.i.a7));
|
|
250
250
|
}
|
|
251
251
|
/**
|
|
252
252
|
* Gets or sets the color to use for the text of the component.
|
|
253
253
|
*/
|
|
254
254
|
get textColor() {
|
|
255
|
-
return brushToString(this.i.
|
|
255
|
+
return brushToString(this.i.ba);
|
|
256
256
|
}
|
|
257
257
|
set textColor(v) {
|
|
258
|
-
this.i.
|
|
259
|
-
this._a("textColor", brushToString(this.i.
|
|
258
|
+
this.i.ba = stringToBrush(v);
|
|
259
|
+
this._a("textColor", brushToString(this.i.ba));
|
|
260
260
|
}
|
|
261
261
|
/**
|
|
262
262
|
* Gets or sets the color to use for the background of the component.
|
|
@@ -269,6 +269,11 @@ export let IgcToolPanelComponent = /*@__PURE__*/ (() => {
|
|
|
269
269
|
this._a("orientation", enumToString(ToolPanelOrientation_$type, this.i.k));
|
|
270
270
|
}
|
|
271
271
|
findByName(name) {
|
|
272
|
+
if (this.findEphemera) {
|
|
273
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
274
|
+
return this.findEphemera(name);
|
|
275
|
+
}
|
|
276
|
+
}
|
|
272
277
|
if (this.actions != null && this.actions.findByName && this.actions.findByName(name)) {
|
|
273
278
|
return this.actions.findByName(name);
|
|
274
279
|
}
|
|
@@ -348,6 +353,7 @@ export let IgcToolPanelComponent = /*@__PURE__*/ (() => {
|
|
|
348
353
|
}
|
|
349
354
|
};
|
|
350
355
|
this.i.contentRefreshed = delegateCombine(this.i.contentRefreshed, this._contentRefreshed_wrapped);
|
|
356
|
+
;
|
|
351
357
|
}
|
|
352
358
|
get onCommand() {
|
|
353
359
|
return this._onCommand;
|
|
@@ -370,6 +376,7 @@ export let IgcToolPanelComponent = /*@__PURE__*/ (() => {
|
|
|
370
376
|
}
|
|
371
377
|
};
|
|
372
378
|
this.i.onCommand = delegateCombine(this.i.onCommand, this._onCommand_wrapped);
|
|
379
|
+
;
|
|
373
380
|
}
|
|
374
381
|
}
|
|
375
382
|
IgcToolPanelComponent._observedAttributesIgcToolPanelComponent = null;
|
|
@@ -340,6 +340,11 @@ export let IgcToolbarComponent = /*@__PURE__*/ (() => {
|
|
|
340
340
|
this._a("cellTextStyle", this.i.o != null ? this.i.o.fontString : "");
|
|
341
341
|
}
|
|
342
342
|
findByName(name) {
|
|
343
|
+
if (this.findEphemera) {
|
|
344
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
345
|
+
return this.findEphemera(name);
|
|
346
|
+
}
|
|
347
|
+
}
|
|
343
348
|
if (this.autoGeneratedActions != null && this.autoGeneratedActions.findByName && this.autoGeneratedActions.findByName(name)) {
|
|
344
349
|
return this.autoGeneratedActions.findByName(name);
|
|
345
350
|
}
|
|
@@ -369,6 +369,11 @@ export let IgcXExpansionPanelComponent = /*@__PURE__*/ (() => {
|
|
|
369
369
|
this._a("actualAmbientShadowColor", brushToString(this.i.bi));
|
|
370
370
|
}
|
|
371
371
|
findByName(name) {
|
|
372
|
+
if (this.findEphemera) {
|
|
373
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
374
|
+
return this.findEphemera(name);
|
|
375
|
+
}
|
|
376
|
+
}
|
|
372
377
|
return null;
|
|
373
378
|
}
|
|
374
379
|
get hasUserValues() {
|
|
@@ -469,6 +474,7 @@ export let IgcXExpansionPanelComponent = /*@__PURE__*/ (() => {
|
|
|
469
474
|
}
|
|
470
475
|
};
|
|
471
476
|
this.i.onCollapsed = delegateCombine(this.i.onCollapsed, this._onCollapsed_wrapped);
|
|
477
|
+
;
|
|
472
478
|
}
|
|
473
479
|
get onExpanded() {
|
|
474
480
|
return this._onExpanded;
|
|
@@ -491,6 +497,7 @@ export let IgcXExpansionPanelComponent = /*@__PURE__*/ (() => {
|
|
|
491
497
|
}
|
|
492
498
|
};
|
|
493
499
|
this.i.onExpanded = delegateCombine(this.i.onExpanded, this._onExpanded_wrapped);
|
|
500
|
+
;
|
|
494
501
|
}
|
|
495
502
|
}
|
|
496
503
|
IgcXExpansionPanelComponent._observedAttributesIgcXExpansionPanelComponent = null;
|