@sankhyalabs/ezui 7.1.0-dev.6 → 7.1.0-dev.7
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/dist/cjs/ez-tree.cjs.entry.js +123 -13
- package/dist/cjs/ezui.cjs.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/components/ez-tree/ez-tree.js +139 -14
- package/dist/collection/components/ez-tree/subcomponents/TreeItem.js +4 -1
- package/dist/collection/components/ez-tree/types/Node.js +7 -0
- package/dist/collection/components/ez-tree/types/Tree.js +17 -0
- package/dist/collection/components/ez-tree/types/UpdateItemConfig.js +1 -0
- package/dist/custom-elements/index.js +123 -13
- package/dist/esm/ez-tree.entry.js +123 -13
- package/dist/esm/ezui.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/ezui/ezui.esm.js +1 -1
- package/dist/ezui/p-294f54fe.entry.js +1 -0
- package/dist/types/components/ez-tree/ez-tree.d.ts +15 -1
- package/dist/types/components/ez-tree/types/Node.d.ts +1 -0
- package/dist/types/components/ez-tree/types/Tree.d.ts +1 -0
- package/dist/types/components/ez-tree/types/UpdateItemConfig.d.ts +4 -0
- package/dist/types/components.d.ts +10 -1
- package/package.json +1 -1
- package/dist/ezui/p-6d8f5cb0.entry.js +0 -1
|
@@ -92301,6 +92301,9 @@ const TreeItem = (props) => {
|
|
|
92301
92301
|
iconClick(treeItem);
|
|
92302
92302
|
}
|
|
92303
92303
|
}
|
|
92304
|
+
function handleIconDoubleClick(event) {
|
|
92305
|
+
event.stopPropagation();
|
|
92306
|
+
}
|
|
92304
92307
|
return (h("ul", { class: level === 1 ? "first-level" : undefined },
|
|
92305
92308
|
h("li", Object.assign({ title: tooltipResolver(treeItem, !disabled, level), class: `tree-item ${treeItem.id !== selectedId ? "tree-item-error" : ""}`, onClick: () => available && itemClick(treeItem), onDblClick: () => available && itemDoubleClick(treeItem) }, {
|
|
92306
92309
|
disabled,
|
|
@@ -92309,7 +92312,7 @@ const TreeItem = (props) => {
|
|
|
92309
92312
|
}),
|
|
92310
92313
|
h("div", { class: "item-label-container" },
|
|
92311
92314
|
h("div", { class: "item-icon-box" }, expandable &&
|
|
92312
|
-
h("ez-icon", { id: treeItem.id, class: "item-icon", size: "small", iconName: iconResolver(treeItem, expanded, level), onClick: (event) => handleIconClick(event) })),
|
|
92315
|
+
h("ez-icon", { id: treeItem.id, class: "item-icon", size: "small", iconName: iconResolver(treeItem, expanded, level), onClick: (event) => handleIconClick(event), onDblClick: (event) => handleIconDoubleClick(event) })),
|
|
92313
92316
|
h("label", { class: `item-label ${treeItem.bold ? "item-label--bold" : ""}` }, treeItem.label)),
|
|
92314
92317
|
getBadgeElement(treeItem.id, treeItem.badge, treeItem.id === selectedId)),
|
|
92315
92318
|
expanded
|
|
@@ -92401,6 +92404,13 @@ class Node$1 {
|
|
|
92401
92404
|
this.children.set(item.id, new Node$1(tree, item, this));
|
|
92402
92405
|
}
|
|
92403
92406
|
}
|
|
92407
|
+
removeChild(id) {
|
|
92408
|
+
if (this.children.has(id)) {
|
|
92409
|
+
this.children.delete(id);
|
|
92410
|
+
return true;
|
|
92411
|
+
}
|
|
92412
|
+
return false;
|
|
92413
|
+
}
|
|
92404
92414
|
addPlaceHolder() {
|
|
92405
92415
|
this.children.clear();
|
|
92406
92416
|
const id = this.item.id;
|
|
@@ -92515,6 +92525,23 @@ class Tree extends Node$1 {
|
|
|
92515
92525
|
}
|
|
92516
92526
|
this._changeCallback();
|
|
92517
92527
|
}
|
|
92528
|
+
removeItem(id) {
|
|
92529
|
+
if (!id) {
|
|
92530
|
+
return;
|
|
92531
|
+
}
|
|
92532
|
+
const node = this.getNode(id);
|
|
92533
|
+
if (!node) {
|
|
92534
|
+
return;
|
|
92535
|
+
}
|
|
92536
|
+
if (node.parent) {
|
|
92537
|
+
node.parent.removeChild(id);
|
|
92538
|
+
}
|
|
92539
|
+
else {
|
|
92540
|
+
this.children.delete(id);
|
|
92541
|
+
}
|
|
92542
|
+
this._disabledValues.delete(id);
|
|
92543
|
+
this._changeCallback();
|
|
92544
|
+
}
|
|
92518
92545
|
async open(path) {
|
|
92519
92546
|
return new Promise(async (resolve) => {
|
|
92520
92547
|
await this.walkPath(this, path, node => node.item.expanded = true);
|
|
@@ -92648,6 +92675,7 @@ const EzTree$1 = class extends HTMLElement$1 {
|
|
|
92648
92675
|
this.ezChange = createEvent(this, "ezChange", 7);
|
|
92649
92676
|
this.ezOpenItem = createEvent(this, "ezOpenItem", 7);
|
|
92650
92677
|
this.ezDbClickItem = createEvent(this, "ezDbClickItem", 7);
|
|
92678
|
+
this.ezRemoveItem = createEvent(this, "ezRemoveItem", 7);
|
|
92651
92679
|
this._onItemClick = (item) => {
|
|
92652
92680
|
if (!this.selectable) {
|
|
92653
92681
|
this.openClose(item);
|
|
@@ -92751,12 +92779,48 @@ const EzTree$1 = class extends HTMLElement$1 {
|
|
|
92751
92779
|
/**
|
|
92752
92780
|
* Atualiza um item
|
|
92753
92781
|
*/
|
|
92754
|
-
async updateItem(item) {
|
|
92755
|
-
var _a;
|
|
92756
|
-
|
|
92782
|
+
async updateItem(item, config) {
|
|
92783
|
+
var _a, _b, _c;
|
|
92784
|
+
if (Array.isArray(item)) {
|
|
92785
|
+
item.forEach(i => this.updateItem(i, config));
|
|
92786
|
+
return;
|
|
92787
|
+
}
|
|
92788
|
+
if (config === null || config === void 0 ? void 0 : config.updatedBySelectedId) {
|
|
92789
|
+
Object.assign(item, { id: this.selectedId });
|
|
92790
|
+
}
|
|
92791
|
+
this._tree.updateItem((config === null || config === void 0 ? void 0 : config.forceDefaultValues) ? this.applyDefaultValues(item) : item);
|
|
92792
|
+
this.updateItemInIndexedList(item, config === null || config === void 0 ? void 0 : config.forceDefaultValues);
|
|
92757
92793
|
const node = (_a = this._tree) === null || _a === void 0 ? void 0 : _a.getNode(this.selectedId);
|
|
92758
92794
|
if (node == undefined) {
|
|
92759
92795
|
this.value = this._visibleItems ? this._visibleItems[0] : undefined;
|
|
92796
|
+
this._tree.collapseAll();
|
|
92797
|
+
}
|
|
92798
|
+
if (((_b = this.value) === null || _b === void 0 ? void 0 : _b.id) === item.id) {
|
|
92799
|
+
this.value = item;
|
|
92800
|
+
this.ezChange.emit(this.value);
|
|
92801
|
+
return;
|
|
92802
|
+
}
|
|
92803
|
+
const childSelected = this.getItemById((_c = this.value) === null || _c === void 0 ? void 0 : _c.id, [item]);
|
|
92804
|
+
if (childSelected) {
|
|
92805
|
+
this.value = childSelected;
|
|
92806
|
+
this.ezChange.emit(this.value);
|
|
92807
|
+
}
|
|
92808
|
+
}
|
|
92809
|
+
/**
|
|
92810
|
+
* Remove um item da árvore pelo seu ID.
|
|
92811
|
+
* Se o item removido estiver selecionado, a seleção será limpa.
|
|
92812
|
+
*/
|
|
92813
|
+
async removeItem(id) {
|
|
92814
|
+
var _a;
|
|
92815
|
+
id = id !== null && id !== void 0 ? id : this.selectedId;
|
|
92816
|
+
if (!id) {
|
|
92817
|
+
return;
|
|
92818
|
+
}
|
|
92819
|
+
this._tree.removeItem(id);
|
|
92820
|
+
this.removeItemFromIndexedList(id);
|
|
92821
|
+
this.ezRemoveItem.emit(id);
|
|
92822
|
+
if (((_a = this.value) === null || _a === void 0 ? void 0 : _a.id) === id) {
|
|
92823
|
+
this.value = undefined;
|
|
92760
92824
|
}
|
|
92761
92825
|
}
|
|
92762
92826
|
/**
|
|
@@ -92844,23 +92908,69 @@ const EzTree$1 = class extends HTMLElement$1 {
|
|
|
92844
92908
|
event.preventDefault();
|
|
92845
92909
|
}
|
|
92846
92910
|
}
|
|
92911
|
+
getItemById(id, items) {
|
|
92912
|
+
for (const treeItem of items) {
|
|
92913
|
+
if (treeItem.id === id) {
|
|
92914
|
+
return treeItem;
|
|
92915
|
+
}
|
|
92916
|
+
else if (treeItem.children && Array.isArray(treeItem.children)) {
|
|
92917
|
+
const itemFound = this.getItemById(id, treeItem.children);
|
|
92918
|
+
if (itemFound) {
|
|
92919
|
+
return itemFound;
|
|
92920
|
+
}
|
|
92921
|
+
}
|
|
92922
|
+
}
|
|
92923
|
+
return undefined;
|
|
92924
|
+
}
|
|
92847
92925
|
addItemInIndexedList(parentId, item, items) {
|
|
92848
92926
|
var _a, _b;
|
|
92849
92927
|
items = (_a = items !== null && items !== void 0 ? items : this.items) !== null && _a !== void 0 ? _a : [];
|
|
92850
92928
|
if (!parentId) {
|
|
92851
92929
|
items.push(item);
|
|
92930
|
+
}
|
|
92931
|
+
const itemFound = this.getItemById(parentId, items);
|
|
92932
|
+
itemFound.children = ((_b = itemFound.children) !== null && _b !== void 0 ? _b : []);
|
|
92933
|
+
itemFound.children.push(item);
|
|
92934
|
+
itemFound.childrenCount = itemFound.children.length;
|
|
92935
|
+
}
|
|
92936
|
+
applyDefaultValues(item) {
|
|
92937
|
+
if (item.disabled === undefined) {
|
|
92938
|
+
item.disabled = false;
|
|
92939
|
+
}
|
|
92940
|
+
if (item.expanded === undefined) {
|
|
92941
|
+
item.expanded = false;
|
|
92942
|
+
}
|
|
92943
|
+
return item;
|
|
92944
|
+
}
|
|
92945
|
+
updateItemInIndexedList(item, forceDefaultValues = false) {
|
|
92946
|
+
if (!item || !this.items) {
|
|
92947
|
+
return;
|
|
92948
|
+
}
|
|
92949
|
+
const itemFound = this.getItemById(item.id, this.items);
|
|
92950
|
+
if (itemFound) {
|
|
92951
|
+
Object.assign(itemFound, forceDefaultValues ? this.applyDefaultValues(item) : item);
|
|
92952
|
+
}
|
|
92953
|
+
}
|
|
92954
|
+
removeItemFromIndexedList(id, items) {
|
|
92955
|
+
var _a;
|
|
92956
|
+
items = (_a = items !== null && items !== void 0 ? items : this.items) !== null && _a !== void 0 ? _a : [];
|
|
92957
|
+
if (!id) {
|
|
92958
|
+
return false;
|
|
92959
|
+
}
|
|
92960
|
+
const rootIndex = items.findIndex(item => item.id === id);
|
|
92961
|
+
if (rootIndex !== -1) {
|
|
92962
|
+
items.splice(rootIndex, 1);
|
|
92852
92963
|
return true;
|
|
92853
92964
|
}
|
|
92854
92965
|
for (const treeItem of items) {
|
|
92855
|
-
if (treeItem.
|
|
92856
|
-
|
|
92857
|
-
|
|
92858
|
-
|
|
92859
|
-
|
|
92860
|
-
|
|
92861
|
-
|
|
92862
|
-
|
|
92863
|
-
if (result) {
|
|
92966
|
+
if (treeItem.children && Array.isArray(treeItem.children)) {
|
|
92967
|
+
const childIndex = treeItem.children.findIndex(child => child.id === id);
|
|
92968
|
+
if (childIndex !== -1) {
|
|
92969
|
+
treeItem.children.splice(childIndex, 1);
|
|
92970
|
+
treeItem.childrenCount = treeItem.children.length;
|
|
92971
|
+
return true;
|
|
92972
|
+
}
|
|
92973
|
+
if (this.removeItemFromIndexedList(id, treeItem.children)) {
|
|
92864
92974
|
return true;
|
|
92865
92975
|
}
|
|
92866
92976
|
}
|
|
@@ -35,6 +35,9 @@ const TreeItem = (props) => {
|
|
|
35
35
|
iconClick(treeItem);
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
|
+
function handleIconDoubleClick(event) {
|
|
39
|
+
event.stopPropagation();
|
|
40
|
+
}
|
|
38
41
|
return (h("ul", { class: level === 1 ? "first-level" : undefined },
|
|
39
42
|
h("li", Object.assign({ title: tooltipResolver(treeItem, !disabled, level), class: `tree-item ${treeItem.id !== selectedId ? "tree-item-error" : ""}`, onClick: () => available && itemClick(treeItem), onDblClick: () => available && itemDoubleClick(treeItem) }, {
|
|
40
43
|
disabled,
|
|
@@ -43,7 +46,7 @@ const TreeItem = (props) => {
|
|
|
43
46
|
}),
|
|
44
47
|
h("div", { class: "item-label-container" },
|
|
45
48
|
h("div", { class: "item-icon-box" }, expandable &&
|
|
46
|
-
h("ez-icon", { id: treeItem.id, class: "item-icon", size: "small", iconName: iconResolver(treeItem, expanded, level), onClick: (event) => handleIconClick(event) })),
|
|
49
|
+
h("ez-icon", { id: treeItem.id, class: "item-icon", size: "small", iconName: iconResolver(treeItem, expanded, level), onClick: (event) => handleIconClick(event), onDblClick: (event) => handleIconDoubleClick(event) })),
|
|
47
50
|
h("label", { class: `item-label ${treeItem.bold ? "item-label--bold" : ""}` }, treeItem.label)),
|
|
48
51
|
getBadgeElement(treeItem.id, treeItem.badge, treeItem.id === selectedId)),
|
|
49
52
|
expanded
|
|
@@ -135,6 +138,13 @@ class Node {
|
|
|
135
138
|
this.children.set(item.id, new Node(tree, item, this));
|
|
136
139
|
}
|
|
137
140
|
}
|
|
141
|
+
removeChild(id) {
|
|
142
|
+
if (this.children.has(id)) {
|
|
143
|
+
this.children.delete(id);
|
|
144
|
+
return true;
|
|
145
|
+
}
|
|
146
|
+
return false;
|
|
147
|
+
}
|
|
138
148
|
addPlaceHolder() {
|
|
139
149
|
this.children.clear();
|
|
140
150
|
const id = this.item.id;
|
|
@@ -249,6 +259,23 @@ class Tree extends Node {
|
|
|
249
259
|
}
|
|
250
260
|
this._changeCallback();
|
|
251
261
|
}
|
|
262
|
+
removeItem(id) {
|
|
263
|
+
if (!id) {
|
|
264
|
+
return;
|
|
265
|
+
}
|
|
266
|
+
const node = this.getNode(id);
|
|
267
|
+
if (!node) {
|
|
268
|
+
return;
|
|
269
|
+
}
|
|
270
|
+
if (node.parent) {
|
|
271
|
+
node.parent.removeChild(id);
|
|
272
|
+
}
|
|
273
|
+
else {
|
|
274
|
+
this.children.delete(id);
|
|
275
|
+
}
|
|
276
|
+
this._disabledValues.delete(id);
|
|
277
|
+
this._changeCallback();
|
|
278
|
+
}
|
|
252
279
|
async open(path) {
|
|
253
280
|
return new Promise(async (resolve) => {
|
|
254
281
|
await this.walkPath(this, path, node => node.item.expanded = true);
|
|
@@ -380,6 +407,7 @@ const EzTree = class {
|
|
|
380
407
|
this.ezChange = createEvent(this, "ezChange", 7);
|
|
381
408
|
this.ezOpenItem = createEvent(this, "ezOpenItem", 7);
|
|
382
409
|
this.ezDbClickItem = createEvent(this, "ezDbClickItem", 7);
|
|
410
|
+
this.ezRemoveItem = createEvent(this, "ezRemoveItem", 7);
|
|
383
411
|
this._onItemClick = (item) => {
|
|
384
412
|
if (!this.selectable) {
|
|
385
413
|
this.openClose(item);
|
|
@@ -483,12 +511,48 @@ const EzTree = class {
|
|
|
483
511
|
/**
|
|
484
512
|
* Atualiza um item
|
|
485
513
|
*/
|
|
486
|
-
async updateItem(item) {
|
|
487
|
-
var _a;
|
|
488
|
-
|
|
514
|
+
async updateItem(item, config) {
|
|
515
|
+
var _a, _b, _c;
|
|
516
|
+
if (Array.isArray(item)) {
|
|
517
|
+
item.forEach(i => this.updateItem(i, config));
|
|
518
|
+
return;
|
|
519
|
+
}
|
|
520
|
+
if (config === null || config === void 0 ? void 0 : config.updatedBySelectedId) {
|
|
521
|
+
Object.assign(item, { id: this.selectedId });
|
|
522
|
+
}
|
|
523
|
+
this._tree.updateItem((config === null || config === void 0 ? void 0 : config.forceDefaultValues) ? this.applyDefaultValues(item) : item);
|
|
524
|
+
this.updateItemInIndexedList(item, config === null || config === void 0 ? void 0 : config.forceDefaultValues);
|
|
489
525
|
const node = (_a = this._tree) === null || _a === void 0 ? void 0 : _a.getNode(this.selectedId);
|
|
490
526
|
if (node == undefined) {
|
|
491
527
|
this.value = this._visibleItems ? this._visibleItems[0] : undefined;
|
|
528
|
+
this._tree.collapseAll();
|
|
529
|
+
}
|
|
530
|
+
if (((_b = this.value) === null || _b === void 0 ? void 0 : _b.id) === item.id) {
|
|
531
|
+
this.value = item;
|
|
532
|
+
this.ezChange.emit(this.value);
|
|
533
|
+
return;
|
|
534
|
+
}
|
|
535
|
+
const childSelected = this.getItemById((_c = this.value) === null || _c === void 0 ? void 0 : _c.id, [item]);
|
|
536
|
+
if (childSelected) {
|
|
537
|
+
this.value = childSelected;
|
|
538
|
+
this.ezChange.emit(this.value);
|
|
539
|
+
}
|
|
540
|
+
}
|
|
541
|
+
/**
|
|
542
|
+
* Remove um item da árvore pelo seu ID.
|
|
543
|
+
* Se o item removido estiver selecionado, a seleção será limpa.
|
|
544
|
+
*/
|
|
545
|
+
async removeItem(id) {
|
|
546
|
+
var _a;
|
|
547
|
+
id = id !== null && id !== void 0 ? id : this.selectedId;
|
|
548
|
+
if (!id) {
|
|
549
|
+
return;
|
|
550
|
+
}
|
|
551
|
+
this._tree.removeItem(id);
|
|
552
|
+
this.removeItemFromIndexedList(id);
|
|
553
|
+
this.ezRemoveItem.emit(id);
|
|
554
|
+
if (((_a = this.value) === null || _a === void 0 ? void 0 : _a.id) === id) {
|
|
555
|
+
this.value = undefined;
|
|
492
556
|
}
|
|
493
557
|
}
|
|
494
558
|
/**
|
|
@@ -576,23 +640,69 @@ const EzTree = class {
|
|
|
576
640
|
event.preventDefault();
|
|
577
641
|
}
|
|
578
642
|
}
|
|
643
|
+
getItemById(id, items) {
|
|
644
|
+
for (const treeItem of items) {
|
|
645
|
+
if (treeItem.id === id) {
|
|
646
|
+
return treeItem;
|
|
647
|
+
}
|
|
648
|
+
else if (treeItem.children && Array.isArray(treeItem.children)) {
|
|
649
|
+
const itemFound = this.getItemById(id, treeItem.children);
|
|
650
|
+
if (itemFound) {
|
|
651
|
+
return itemFound;
|
|
652
|
+
}
|
|
653
|
+
}
|
|
654
|
+
}
|
|
655
|
+
return undefined;
|
|
656
|
+
}
|
|
579
657
|
addItemInIndexedList(parentId, item, items) {
|
|
580
658
|
var _a, _b;
|
|
581
659
|
items = (_a = items !== null && items !== void 0 ? items : this.items) !== null && _a !== void 0 ? _a : [];
|
|
582
660
|
if (!parentId) {
|
|
583
661
|
items.push(item);
|
|
662
|
+
}
|
|
663
|
+
const itemFound = this.getItemById(parentId, items);
|
|
664
|
+
itemFound.children = ((_b = itemFound.children) !== null && _b !== void 0 ? _b : []);
|
|
665
|
+
itemFound.children.push(item);
|
|
666
|
+
itemFound.childrenCount = itemFound.children.length;
|
|
667
|
+
}
|
|
668
|
+
applyDefaultValues(item) {
|
|
669
|
+
if (item.disabled === undefined) {
|
|
670
|
+
item.disabled = false;
|
|
671
|
+
}
|
|
672
|
+
if (item.expanded === undefined) {
|
|
673
|
+
item.expanded = false;
|
|
674
|
+
}
|
|
675
|
+
return item;
|
|
676
|
+
}
|
|
677
|
+
updateItemInIndexedList(item, forceDefaultValues = false) {
|
|
678
|
+
if (!item || !this.items) {
|
|
679
|
+
return;
|
|
680
|
+
}
|
|
681
|
+
const itemFound = this.getItemById(item.id, this.items);
|
|
682
|
+
if (itemFound) {
|
|
683
|
+
Object.assign(itemFound, forceDefaultValues ? this.applyDefaultValues(item) : item);
|
|
684
|
+
}
|
|
685
|
+
}
|
|
686
|
+
removeItemFromIndexedList(id, items) {
|
|
687
|
+
var _a;
|
|
688
|
+
items = (_a = items !== null && items !== void 0 ? items : this.items) !== null && _a !== void 0 ? _a : [];
|
|
689
|
+
if (!id) {
|
|
690
|
+
return false;
|
|
691
|
+
}
|
|
692
|
+
const rootIndex = items.findIndex(item => item.id === id);
|
|
693
|
+
if (rootIndex !== -1) {
|
|
694
|
+
items.splice(rootIndex, 1);
|
|
584
695
|
return true;
|
|
585
696
|
}
|
|
586
697
|
for (const treeItem of items) {
|
|
587
|
-
if (treeItem.
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
if (result) {
|
|
698
|
+
if (treeItem.children && Array.isArray(treeItem.children)) {
|
|
699
|
+
const childIndex = treeItem.children.findIndex(child => child.id === id);
|
|
700
|
+
if (childIndex !== -1) {
|
|
701
|
+
treeItem.children.splice(childIndex, 1);
|
|
702
|
+
treeItem.childrenCount = treeItem.children.length;
|
|
703
|
+
return true;
|
|
704
|
+
}
|
|
705
|
+
if (this.removeItemFromIndexedList(id, treeItem.children)) {
|
|
596
706
|
return true;
|
|
597
707
|
}
|
|
598
708
|
}
|
package/dist/esm/ezui.js
CHANGED
|
@@ -18,5 +18,5 @@ const patchBrowser = () => {
|
|
|
18
18
|
|
|
19
19
|
patchBrowser().then(options => {
|
|
20
20
|
globalScripts();
|
|
21
|
-
return bootstrapLazy(JSON.parse("[[\"ez-guide-navigator\",[[1,\"ez-guide-navigator\",{\"open\":[1540],\"selectedId\":[1537,\"selected-id\"],\"items\":[16],\"tooltipResolver\":[16],\"filterText\":[32],\"disableItem\":[64],\"openGuideNavidator\":[64],\"enableItem\":[64],\"updateItem\":[64],\"getItem\":[64],\"getCurrentPath\":[64],\"selectGuide\":[64],\"getParent\":[64]}]]],[\"ez-alert-list\",[[1,\"ez-alert-list\",{\"alerts\":[1040],\"enableDragAndDrop\":[516,\"enable-drag-and-drop\"],\"enableExpand\":[516,\"enable-expand\"],\"itemRightSlotBuilder\":[16],\"opened\":[1540],\"expanded\":[1540],\"_container\":[32]}]]],[\"ez-actions-button\",[[1,\"ez-actions-button\",{\"enabled\":[516],\"actions\":[1040],\"size\":[513],\"showLabel\":[516,\"show-label\"],\"displayIcon\":[513,\"display-icon\"],\"checkOption\":[516,\"check-option\"],\"value\":[513],\"isTransparent\":[516,\"is-transparent\"],\"arrowActive\":[516,\"arrow-active\"],\"_selectedAction\":[32],\"hideActions\":[64],\"showActions\":[64],\"isOpened\":[64]}]]],[\"ez-dialog\",[[1,\"ez-dialog\",{\"confirm\":[1028],\"dialogType\":[1025,\"dialog-type\"],\"message\":[1025],\"opened\":[1540],\"personalizedIconPath\":[1025,\"personalized-icon-path\"],\"ezTitle\":[1025,\"ez-title\"],\"beforeClose\":[1040],\"show\":[64]}]]],[\"ez-tile\",[[1,\"ez-tile\",{\"text\":[513],\"size\":[513],\"height\":[514],\"width\":[514],\"color\":[513],\"iconName\":[513,\"icon-name\"],\"maximumLines\":[514,\"maximum-lines\"],\"isInteractive\":[516,\"is-interactive\"],\"setFocus\":[64],\"setBlur\":[64]},[[2,\"click\",\"clickListener\"]]]]],[\"ez-application\",[[0,\"ez-application\"]]],[\"ez-empty-card\",[[1,\"ez-empty-card\",{\"color\":[513],\"height\":[514],\"width\":[514]}]]],[\"ez-modal\",[[1,\"ez-modal\",{\"modalSize\":[1,\"modal-size\"],\"align\":[1],\"heightMode\":[1,\"height-mode\"],\"opened\":[1028],\"closeEsc\":[4,\"close-esc\"],\"closeOutsideClick\":[4,\"close-outside-click\"],\"closeOutsideLeave\":[4,\"close-outside-leave\"],\"scrim\":[1]}]]],[\"ez-tag\",[[1,\"ez-tag\",{\"label\":[513],\"color\":[513],\"customBackgroundColor\":[1,\"custom-background-color\"],\"customLabelColor\":[1,\"custom-label-color\"]}]]],[\"ez-icon\",[[1,\"ez-icon\",{\"size\":[513],\"fontSize\":[520,\"font-size\"],\"href\":[513],\"iconName\":[513,\"icon-name\"]}]]],[\"ez-tile-medium\",[[1,\"ez-tile-medium\",{\"color\":[1],\"iconName\":[1,\"icon-name\"],\"iconColor\":[1,\"icon-color\"],\"smallTitleText\":[1,\"small-title-text\"],\"smallTitleMaximumLines\":[2,\"small-title-maximum-lines\"],\"titleText\":[1,\"title-text\"],\"titleMaximumLines\":[2,\"title-maximum-lines\"],\"descriptionText\":[1,\"description-text\"],\"descriptionMaximumLines\":[2,\"description-maximum-lines\"],\"height\":[1],\"width\":[1],\"avatarProps\":[16],\"buttonProps\":[16],\"tags\":[16],\"setButtonFocus\":[64],\"setButtonBlur\":[64]}]]],[\"ez-alert\",[[1,\"ez-alert\",{\"alertType\":[513,\"alert-type\"]}]]],[\"ez-toast\",[[1,\"ez-toast\",{\"message\":[1025],\"fadeTime\":[1026,\"fade-time\"],\"useIcon\":[1028,\"use-icon\"],\"canClose\":[1028,\"can-close\"],\"show\":[64]}]]],[\"ez-text-input\",[[1,\"ez-text-input\",{\"label\":[513],\"alternativePlaceholder\":[513,\"alternative-placeholder\"],\"value\":[1537],\"enabled\":[516],\"errorMessage\":[1537,\"error-message\"],\"hasInvalid\":[1540,\"has-invalid\"],\"mask\":[1],\"cleanValueMask\":[4,\"clean-value-mask\"],\"canShowError\":[516,\"can-show-error\"],\"restrict\":[1],\"mode\":[513],\"noBorder\":[516,\"no-border\"],\"password\":[4],\"autoFocus\":[4,\"auto-focus\"],\"hasRightSlotContent\":[32],\"forceLabelFloat\":[32],\"setFocus\":[64],\"setBlur\":[64],\"isInvalid\":[64]}]]],[\"ez-grid\",[[6,\"ez-grid\",{\"enableLockManagerLoadingComp\":[1028,\"enable-lock-manager-loading-comp\"],\"enableLockManagerTaskbarClick\":[4,\"enable-lock-manager-taskbar-click\"],\"multipleSelection\":[4,\"multiple-selection\"],\"config\":[1040],\"selectionToastConfig\":[16],\"serverUrl\":[1,\"server-url\"],\"dataUnit\":[16],\"statusResolver\":[16],\"columnfilterDataSource\":[16],\"useEnterLikeTab\":[4,\"use-enter-like-tab\"],\"recordsValidator\":[16],\"canEdit\":[1028,\"can-edit\"],\"autoFocus\":[4,\"auto-focus\"],\"paginationCounterMode\":[1,\"pagination-counter-mode\"],\"enableGridInsert\":[4,\"enable-grid-insert\"],\"enableContinuousInsert\":[4,\"enable-continuous-insert\"],\"suppressCheckboxColumn\":[1028,\"suppress-checkbox-column\"],\"suppressFilterColumn\":[1028,\"suppress-filter-column\"],\"outlineMode\":[4,\"outline-mode\"],\"enableRowTableStriped\":[4,\"enable-row-table-striped\"],\"compact\":[1028],\"useSearchColumn\":[4,\"use-search-column\"],\"suppressHorizontalScroll\":[4,\"suppress-horizontal-scroll\"],\"mode\":[513],\"_paginationInfo\":[32],\"_paginationChangedByKeyboard\":[32],\"_showSelectionCounter\":[32],\"_isAllSelection\":[32],\"_currentPageSelected\":[32],\"_selectionCount\":[32],\"_hasLeftButtons\":[32],\"_customFormatters\":[32],\"setColumnsDef\":[64],\"getAppliedColumnFilters\":[64],\"refreshColumnFilterDataSource\":[64],\"addColumnMenuItem\":[64],\"setColumnsState\":[64],\"setData\":[64],\"getSelection\":[64],\"getColumnsState\":[64],\"getColumns\":[64],\"quickFilter\":[64],\"locateColumn\":[64],\"filterColumns\":[64],\"addCustomEditor\":[64],\"addGridCustomRender\":[64],\"addCustomValueFormatter\":[64],\"removeCustomValueFormatter\":[64],\"refreshSelectedRows\":[64],\"getCustomValueFormatter\":[64],\"setFocus\":[64],\"stopEdit\":[64],\"checkStopEditOutsideClick\":[64]},[[0,\"applyFilterColumnOptions\",\"handleApplyFilterColumn\"],[0,\"ezSelectionChange\",\"onSelectionChange\"],[2,\"click\",\"handleClick\"]]]]],[\"ez-grid-view\",[[6,\"ez-grid-view\",{\"metadata\":[16],\"records\":[16],\"columnsConfig\":[1040],\"pageSize\":[2,\"page-size\"],\"recordDateFormat\":[1,\"record-date-format\"],\"multipleSelection\":[4,\"multiple-selection\"],\"autoFocus\":[4,\"auto-focus\"],\"paginationCounterMode\":[1,\"pagination-counter-mode\"],\"suppressCheckboxColumn\":[1028,\"suppress-checkbox-column\"],\"suppressFilterColumn\":[4,\"suppress-filter-column\"],\"outlineMode\":[4,\"outline-mode\"],\"enableRowTableStriped\":[4,\"enable-row-table-striped\"],\"compact\":[1028],\"useSearchColumn\":[4,\"use-search-column\"],\"suppressHorizontalScroll\":[4,\"suppress-horizontal-scroll\"],\"inMemoryLoader\":[32],\"getDataUnit\":[64],\"refresh\":[64],\"getSelection\":[64],\"quickFilter\":[64],\"locateColumn\":[64],\"filterColumns\":[64],\"addColumnMenuItem\":[64],\"addCustomValueFormatter\":[64],\"removeCustomValueFormatter\":[64],\"addGridCustomRender\":[64],\"setFocus\":[64]}]]],[\"ez-double-list\",[[2,\"ez-double-list\",{\"leftList\":[1040],\"leftTitle\":[1,\"left-title\"],\"rightList\":[1040],\"entityLabel\":[1,\"entity-label\"],\"entityLabelPlural\":[1,\"entity-label-plural\"],\"leftListLabel\":[1,\"left-list-label\"],\"rightListLabel\":[1,\"right-list-label\"],\"useOnlyRightList\":[4,\"use-only-right-list\"],\"rightTitle\":[1,\"right-title\"],\"emptyMessage\":[16],\"slotsListBuilder\":[1040],\"leftFilteredList\":[32],\"rightFilteredList\":[32],\"selectedLeftList\":[32],\"selectedRightList\":[32],\"isFilteringLeft\":[32],\"isFilteringRight\":[32],\"resetSelectedLists\":[64]}]]],[\"ez-sidebar-navigator\",[[1,\"ez-sidebar-navigator\",{\"type\":[1],\"mode\":[1025],\"size\":[1],\"isResponsive\":[4,\"is-responsive\"],\"titleMenu\":[1,\"title-menu\"],\"showCollapseMenu\":[4,\"show-collapse-menu\"],\"showFixedButton\":[4,\"show-fixed-button\"],\"open\":[32],\"changeModeMenu\":[64],\"closeSidebar\":[64],\"openSidebar\":[64]}]]],[\"ez-breadcrumb\",[[1,\"ez-breadcrumb\",{\"items\":[1040],\"fillMode\":[1025,\"fill-mode\"],\"maxItems\":[1026,\"max-items\"],\"positionEllipsis\":[1026,\"position-ellipsis\"],\"visibleItems\":[32],\"hiddenItems\":[32],\"showDropdown\":[32],\"collapseConfigPosition\":[32]}]]],[\"ez-classic-combo-box\",[[1,\"ez-classic-combo-box\",{\"value\":[1040],\"label\":[1],\"placeholder\":[1025],\"enabled\":[4],\"readonly\":[4],\"name\":[1],\"state\":[1],\"helpText\":[1,\"help-text\"],\"iconName\":[1,\"icon-name\"],\"titleIcon\":[1,\"title-icon\"],\"iconClickable\":[4,\"icon-clickable\"],\"suppressSearch\":[4,\"suppress-search\"],\"options\":[16],\"textEmptyOption\":[1,\"text-empty-option\"],\"suppressEmptyOption\":[4,\"suppress-empty-option\"],\"popoverVisible\":[32],\"hasSlotContent\":[32],\"highlightedIndex\":[32],\"filteredOptions\":[32],\"inputValue\":[32],\"setFocus\":[64],\"setBlur\":[64],\"showPopover\":[64],\"hidePopover\":[64],\"setValue\":[64]}]]],[\"ez-split-button\",[[1,\"ez-split-button\",{\"show\":[1540],\"enabled\":[516],\"isDisabled\":[520,\"is-disabled\"],\"iconName\":[513,\"icon-name\"],\"leftIconName\":[513,\"left-icon-name\"],\"rightIconName\":[513,\"right-icon-name\"],\"image\":[513],\"items\":[16],\"label\":[513],\"leftTitle\":[513,\"left-title\"],\"rightTitle\":[513,\"right-title\"],\"mode\":[513],\"size\":[513],\"variant\":[1537],\"suppressAnimation\":[1540,\"suppress-animation\"],\"itemBuilder\":[16],\"leftRipples\":[32],\"rightRipples\":[32],\"isLeftPressed\":[32],\"isRightPressed\":[32],\"setBlur\":[64],\"setLeftButtonFocus\":[64],\"setRightButtonFocus\":[64],\"toggleDropdown\":[64],\"isOpenedDropdown\":[64]},[[1,\"mousedown\",\"onMouseDown\"],[1,\"touchstart\",\"onTouchStart\"],[2,\"click\",\"clickListener\"]]]]],[\"ez-tag-input\",[[1,\"ez-tag-input\",{\"label\":[1],\"placeholder\":[1],\"helpText\":[1025,\"help-text\"],\"enabled\":[4],\"readonly\":[4],\"name\":[1],\"tags\":[1040],\"maxTagLength\":[2,\"max-tag-length\"],\"maxTags\":[2,\"max-tags\"],\"allowDuplicates\":[4,\"allow-duplicates\"],\"state\":[1537],\"validator\":[16],\"suppressTagsKeyboardNavigation\":[4,\"suppress-tags-keyboard-navigation\"],\"suppressBackspaceToRemove\":[4,\"suppress-backspace-to-remove\"],\"setFocus\":[64],\"setBlur\":[64],\"addTag\":[64],\"removeTag\":[64],\"clearTags\":[64]}]]],[\"ez-pagination\",[[2,\"ez-pagination\",{\"type\":[1],\"currentPage\":[1026,\"current-page\"],\"totalItems\":[2,\"total-items\"],\"pageSize\":[2,\"page-size\"],\"hideInfoLabel\":[4,\"hide-info-label\"],\"pageLimit\":[2,\"page-limit\"]}]]],[\"ez-split-item\",[[4,\"ez-split-item\",{\"label\":[1],\"enableExpand\":[516,\"enable-expand\"],\"size\":[1],\"structural\":[4],\"_expanded\":[32]}]]],[\"ez-classic-text-area\",[[1,\"ez-classic-text-area\",{\"name\":[1],\"label\":[1],\"placeholder\":[1],\"value\":[1],\"helpText\":[1,\"help-text\"],\"state\":[1],\"enabled\":[4],\"readonly\":[4],\"maxlength\":[2],\"resize\":[1],\"leftIconName\":[1,\"left-icon-name\"],\"rightIconName\":[1,\"right-icon-name\"],\"rightIconTooltip\":[1,\"right-icon-tooltip\"],\"leftIconTooltip\":[1,\"left-icon-tooltip\"],\"leftIconClickable\":[4,\"left-icon-clickable\"],\"rightIconClickable\":[4,\"right-icon-clickable\"],\"rows\":[2],\"setFocus\":[64],\"setBlur\":[64]}]]],[\"ez-file-item\",[[1,\"ez-file-item\",{\"canRemove\":[4,\"can-remove\"],\"fileName\":[1,\"file-name\"],\"iconName\":[1,\"icon-name\"],\"fileSize\":[2,\"file-size\"],\"progress\":[2]}]]],[\"ez-list-item\",[[2,\"ez-list-item\",{\"titleText\":[513,\"title-text\"],\"text\":[513],\"iconName\":[513,\"icon-name\"]}]]],[\"ez-chart\",[[1,\"ez-chart\",{\"type\":[1],\"xAxis\":[16],\"yAxis\":[16],\"chartTitle\":[1,\"chart-title\"],\"chartSubTitle\":[1,\"chart-sub-title\"],\"legendEnabled\":[4,\"legend-enabled\"],\"series\":[16],\"width\":[2],\"height\":[2]}]]],[\"ez-loading-bar\",[[1,\"ez-loading-bar\",{\"_showLoading\":[32],\"hide\":[64],\"show\":[64]}]]],[\"ez-progress-bar\",[[2,\"ez-progress-bar\",{\"percent\":[514],\"label\":[513],\"helpText\":[513,\"help-text\"]}]]],[\"ez-radio-button\",[[1,\"ez-radio-button\",{\"value\":[1544],\"options\":[1040],\"enabled\":[516],\"label\":[513],\"direction\":[1537]}]]],[\"ez-spinner\",[[1,\"ez-spinner\",{\"size\":[1]}]]],[\"ez-split-panel\",[[0,\"ez-split-panel\",{\"direction\":[1],\"anchorToExpand\":[4,\"anchor-to-expand\"],\"structural\":[4],\"rebuildLayout\":[64]}]]],[\"ez-underface\",[[1,\"ez-underface\",{\"color\":[513],\"customColor\":[513,\"custom-color\"],\"height\":[514],\"width\":[514]}]]],[\"ez-view-stack\",[[0,\"ez-view-stack\",{\"show\":[64],\"getSelectedIndex\":[64]}]]],[\"ez-tooltip\",[[1,\"ez-tooltip\",{\"message\":[1],\"anchoringElement\":[1040],\"placement\":[1],\"gapOptions\":[16],\"type\":[1],\"debouncingTime\":[2,\"debouncing-time\"],\"active\":[4],\"maxWidth\":[2,\"max-width\"],\"useAnchorSize\":[4,\"use-anchor-size\"],\"strategy\":[1]}]]],[\"ez-form-view\",[[2,\"ez-form-view\",{\"fields\":[16],\"selectedRecord\":[16],\"singleColumn\":[4,\"single-column\"],\"_customEditors\":[32],\"showUp\":[64],\"addCustomEditor\":[64],\"setFieldProp\":[64]}]]],[\"ez-filter-input\",[[1,\"ez-filter-input\",{\"label\":[1],\"value\":[1537],\"enabled\":[4],\"errorMessage\":[1537,\"error-message\"],\"restrict\":[1],\"mode\":[513],\"asyncSearch\":[516,\"async-search\"],\"canShowError\":[516,\"can-show-error\"],\"autoFocus\":[4,\"auto-focus\"],\"setFocus\":[64],\"setBlur\":[64],\"isInvalid\":[64],\"setValue\":[64],\"endSearch\":[64]}]]],[\"ez-sortable-list\",[[1,\"ez-sortable-list\",{\"title\":[1],\"hideHeader\":[4,\"hide-header\"],\"hideTotalizer\":[4,\"hide-totalizer\"],\"group\":[1],\"dataSource\":[16],\"idSortableList\":[1,\"id-sortable-list\"],\"entityLabel\":[1,\"entity-label\"],\"entityLabelPlural\":[1,\"entity-label-plural\"],\"emptyMessage\":[1,\"empty-message\"],\"hoverFeedback\":[4,\"hover-feedback\"],\"enableMultipleSelection\":[4,\"enable-multiple-selection\"],\"removeItensMoved\":[4,\"remove-itens-moved\"],\"itemRightSlotBuilder\":[1040],\"itemLeftSlotBuilder\":[1040],\"filterTerm\":[32],\"selectedItems\":[32],\"clearSelection\":[64]}]]],[\"ez-chip\",[[1,\"ez-chip\",{\"label\":[513],\"enabled\":[516],\"removePosition\":[513,\"remove-position\"],\"mode\":[513],\"value\":[1540],\"showNativeTooltip\":[4,\"show-native-tooltip\"],\"disableAutoUpdateValue\":[4,\"disable-auto-update-value\"],\"maxWidth\":[1,\"max-width\"],\"size\":[1],\"iconNameLeft\":[1,\"icon-name-left\"],\"iconNameRight\":[1,\"icon-name-right\"],\"type\":[1],\"tabIndex\":[2,\"tab-index\"],\"removeWithKeyboard\":[4,\"remove-with-keyboard\"],\"_isOverflowing\":[32],\"setFocus\":[64],\"setBlur\":[64]}]]],[\"ez-avatar\",[[1,\"ez-avatar\",{\"name\":[513],\"imageSrc\":[513,\"image-src\"],\"iconName\":[513,\"icon-name\"],\"size\":[513],\"shape\":[513],\"isInteractive\":[516,\"is-interactive\"]}]]],[\"ez-badge\",[[1,\"ez-badge\",{\"size\":[513],\"label\":[513],\"iconLeft\":[513,\"icon-left\"],\"iconRight\":[513,\"icon-right\"],\"position\":[1040],\"alignItems\":[1537,\"align-items\"],\"hasSlot\":[32]}]]],[\"ez-classic-input\",[[1,\"ez-classic-input\",{\"type\":[1],\"value\":[1025],\"label\":[1],\"helpText\":[1,\"help-text\"],\"placeholder\":[1025],\"enabled\":[4],\"readonly\":[4],\"name\":[1],\"minlength\":[2],\"maxlength\":[2],\"leftIconName\":[1,\"left-icon-name\"],\"rightIconName\":[1,\"right-icon-name\"],\"rightIconTooltip\":[1,\"right-icon-tooltip\"],\"leftIconTooltip\":[1,\"left-icon-tooltip\"],\"state\":[1],\"leftIconClickable\":[4,\"left-icon-clickable\"],\"rightIconClickable\":[4,\"right-icon-clickable\"],\"mask\":[1],\"emitMaskedValue\":[4,\"emit-masked-value\"],\"setFocus\":[64],\"setBlur\":[64]}]]],[\"ez-tabselector\",[[1,\"ez-tabselector\",{\"selectedIndex\":[1538,\"selected-index\"],\"selectedTab\":[1537,\"selected-tab\"],\"tabs\":[1],\"_processedTabs\":[32],\"goToTab\":[64]}]]],[\"ez-tree\",[[1,\"ez-tree\",{\"items\":[1040],\"value\":[1040],\"selectedId\":[1537,\"selected-id\"],\"iconResolver\":[16],\"tooltipResolver\":[16],\"enableHierarchicalFilter\":[4,\"enable-hierarchical-filter\"],\"selectable\":[4],\"_tree\":[32],\"_waintingForLoad\":[32],\"selectItem\":[64],\"openItem\":[64],\"disableItem\":[64],\"enableItem\":[64],\"addChild\":[64],\"applyFilter\":[64],\"expandAll\":[64],\"collapseAll\":[64],\"updateItem\":[64],\"getItem\":[64],\"getCurrentPath\":[64],\"getParent\":[64]},[[2,\"keydown\",\"onKeyDownListener\"]]]]],[\"ez-multi-selection-list\",[[2,\"ez-multi-selection-list\",{\"columnName\":[1,\"column-name\"],\"dataSource\":[16],\"useOptions\":[1028,\"use-options\"],\"options\":[1040],\"isTextSearch\":[4,\"is-text-search\"],\"filteredOptions\":[32],\"displayOptions\":[32],\"viewScenario\":[32],\"displayOptionToCheckAllItems\":[32],\"clearFilteredOptions\":[64]}]]],[\"filter-column\",[[0,\"filter-column\",{\"opened\":[4],\"columnName\":[1,\"column-name\"],\"columnLabel\":[1,\"column-label\"],\"gridHeaderHidden\":[4,\"grid-header-hidden\"],\"noHeaderTaskBar\":[1028,\"no-header-task-bar\"],\"dataSource\":[16],\"dataUnit\":[16],\"options\":[1040],\"selectedItems\":[32],\"fieldDescriptor\":[32],\"useOptions\":[32],\"isTextSearch\":[32],\"hide\":[64],\"show\":[64]}]]],[\"ez-search-result-list\",[[1,\"ez-search-result-list\",{\"showLoading\":[4,\"show-loading\"],\"visibleOptions\":[16],\"value\":[1],\"showOptionValue\":[4,\"show-option-value\"],\"_preSelection\":[32],\"nextOption\":[64],\"previousOption\":[64],\"selectCurrentItem\":[64],\"cancelSelection\":[64]}]]],[\"ez-search-plus\",[[1,\"ez-search-plus\",{\"value\":[1537],\"enabled\":[1540],\"disableCodeInput\":[1540,\"disable-code-input\"],\"disableDescriptionInput\":[1540,\"disable-description-input\"],\"label\":[1537],\"codLabel\":[1537,\"cod-label\"],\"hideDescriptionInput\":[1540,\"hide-description-input\"],\"canShowError\":[516,\"can-show-error\"],\"errorMessage\":[1537,\"error-message\"],\"mode\":[513],\"contextProperties\":[8,\"context-properties\"],\"optionLoader\":[16],\"showOptionValue\":[4,\"show-option-value\"],\"stopPropagateEnterKeyEvent\":[4,\"stop-propagate-enter-key-event\"],\"autoFocus\":[4,\"auto-focus\"],\"showSelectedValue\":[4,\"show-selected-value\"],\"suppressEmptyOption\":[4,\"suppress-empty-option\"],\"hideErrorOnFocusOut\":[4,\"hide-error-on-focus-out\"],\"listOptionsPosition\":[16],\"isTextSearch\":[4,\"is-text-search\"],\"ignoreLimitCharsToSearch\":[4,\"ignore-limit-chars-to-search\"],\"suppressSearch\":[4,\"suppress-search\"],\"suppressPreLoad\":[4,\"suppress-pre-load\"],\"ensureClearButtonVisible\":[4,\"ensure-clear-button-visible\"],\"descriptionValue\":[32],\"codeValue\":[32],\"isLoadingDescription\":[32],\"searchDescriptionIsOpen\":[32],\"visibleOptions\":[32],\"showLoading\":[32],\"setFocus\":[64],\"getValueAsync\":[64],\"clearValue\":[64],\"setBlur\":[64],\"isInvalid\":[64]}]]],[\"ez-combo-box\",[[1,\"ez-combo-box\",{\"limitCharsToSearch\":[2,\"limit-chars-to-search\"],\"value\":[1537],\"label\":[513],\"enabled\":[516],\"options\":[1040],\"errorMessage\":[1537,\"error-message\"],\"showSelectedValue\":[4,\"show-selected-value\"],\"showOptionValue\":[4,\"show-option-value\"],\"suppressSearch\":[4,\"suppress-search\"],\"optionLoader\":[16],\"suppressEmptyOption\":[4,\"suppress-empty-option\"],\"stopPropagateEnterKeyEvent\":[4,\"stop-propagate-enter-key-event\"],\"canShowError\":[516,\"can-show-error\"],\"mode\":[513],\"hideErrorOnFocusOut\":[4,\"hide-error-on-focus-out\"],\"listOptionsPosition\":[16],\"isTextSearch\":[4,\"is-text-search\"],\"autoFocus\":[4,\"auto-focus\"],\"preventAutoFocus\":[4,\"prevent-auto-focus\"],\"alternativePlaceholder\":[513,\"alternative-placeholder\"],\"textEmptyOption\":[1,\"text-empty-option\"],\"isOpen\":[32],\"_preSelection\":[32],\"_visibleOptions\":[32],\"_startLoading\":[32],\"_showLoading\":[32],\"_criteria\":[32],\"getValueAsync\":[64],\"setFocus\":[64],\"setBlur\":[64],\"isInvalid\":[64],\"clearValue\":[64]}]]],[\"ez-date-input\",[[1,\"ez-date-input\",{\"label\":[513],\"value\":[1040],\"enabled\":[516],\"errorMessage\":[1537,\"error-message\"],\"mode\":[513],\"canShowError\":[516,\"can-show-error\"],\"autoFocus\":[4,\"auto-focus\"],\"alternativePlaceholder\":[513,\"alternative-placeholder\"],\"setFocus\":[64],\"setBlur\":[64],\"isInvalid\":[64],\"getValueAsync\":[64]}]]],[\"ez-collapsible-box\",[[1,\"ez-collapsible-box\",{\"value\":[1540],\"boxBordered\":[4,\"box-bordered\"],\"label\":[513],\"subtitle\":[513],\"headerSize\":[513,\"header-size\"],\"iconPlacement\":[513,\"icon-placement\"],\"headerAlign\":[513,\"header-align\"],\"removable\":[516],\"editable\":[516],\"conditionalSave\":[16],\"_activeEditText\":[32],\"showHide\":[64],\"applyFocusTextEdit\":[64],\"cancelEdition\":[64]}]]],[\"ez-number-input\",[[1,\"ez-number-input\",{\"label\":[1],\"value\":[1538],\"enabled\":[4],\"canShowError\":[516,\"can-show-error\"],\"errorMessage\":[1537,\"error-message\"],\"allowNegative\":[4,\"allow-negative\"],\"precision\":[2],\"prettyPrecision\":[2,\"pretty-precision\"],\"mode\":[513],\"autoFocus\":[4,\"auto-focus\"],\"alternativePlaceholder\":[1,\"alternative-placeholder\"],\"_value\":[32],\"setFocus\":[64],\"setBlur\":[64],\"isInvalid\":[64],\"getValueAsync\":[64]}]]],[\"ez-time-input\",[[1,\"ez-time-input\",{\"label\":[513],\"value\":[1026],\"enabled\":[516],\"errorMessage\":[1537,\"error-message\"],\"showSeconds\":[516,\"show-seconds\"],\"mode\":[513],\"canShowError\":[516,\"can-show-error\"],\"autoFocus\":[4,\"auto-focus\"],\"alternativePlaceholder\":[1,\"alternative-placeholder\"],\"setFocus\":[64],\"setBlur\":[64],\"isInvalid\":[64]}]]],[\"ez-text-area\",[[1,\"ez-text-area\",{\"label\":[513],\"value\":[1537],\"enabled\":[516],\"errorMessage\":[1537,\"error-message\"],\"rows\":[1538],\"canShowError\":[516,\"can-show-error\"],\"mode\":[513],\"enableResize\":[516,\"enable-resize\"],\"autoRows\":[516,\"auto-rows\"],\"autoFocus\":[4,\"auto-focus\"],\"alternativePlaceholder\":[513,\"alternative-placeholder\"],\"forceLabelFloat\":[32],\"appendTextToSelection\":[64],\"setFocus\":[64],\"setBlur\":[64],\"isInvalid\":[64]}]]],[\"ez-calendar\",[[1,\"ez-calendar\",{\"value\":[1040],\"floating\":[516],\"time\":[516],\"showSeconds\":[516,\"show-seconds\"],\"show\":[64],\"fitVertical\":[64],\"fitHorizontal\":[64],\"hide\":[64]},[[11,\"scroll\",\"scrollListener\"]]]]],[\"ez-date-time-input\",[[1,\"ez-date-time-input\",{\"label\":[513],\"value\":[1040],\"enabled\":[516],\"errorMessage\":[1537,\"error-message\"],\"showSeconds\":[516,\"show-seconds\"],\"mode\":[513],\"canShowError\":[516,\"can-show-error\"],\"autoFocus\":[4,\"auto-focus\"],\"alternativePlaceholder\":[513,\"alternative-placeholder\"],\"setFocus\":[64],\"setBlur\":[64],\"isInvalid\":[64],\"getValueAsync\":[64]}]]],[\"ez-dropdown\",[[1,\"ez-dropdown\",{\"items\":[1040],\"value\":[1040],\"itemBuilder\":[16]},[[4,\"click\",\"handleClickOutside\"]]]]],[\"ez-upload\",[[1,\"ez-upload\",{\"label\":[1],\"subtitle\":[1],\"enabled\":[4],\"maxFileSize\":[2,\"max-file-size\"],\"maxFiles\":[2,\"max-files\"],\"requestHeaders\":[8,\"request-headers\"],\"urlUpload\":[1,\"url-upload\"],\"urlDelete\":[1,\"url-delete\"],\"value\":[1040],\"addFiles\":[64],\"setFocus\":[64],\"setBlur\":[64]}]]],[\"ez-popover\",[[1,\"ez-popover\",{\"autoClose\":[516,\"auto-close\"],\"boxWidth\":[513,\"box-width\"],\"opened\":[1540],\"innerElement\":[1537,\"inner-element\"],\"overlayType\":[513,\"overlay-type\"],\"updatePosition\":[64],\"show\":[64],\"showUnder\":[64],\"hide\":[64]}]]],[\"ez-scroller_2\",[[1,\"ez-sidebar-button\"],[1,\"ez-scroller\",{\"direction\":[1],\"locked\":[4],\"activeShadow\":[4,\"active-shadow\"],\"isActive\":[32]},[[2,\"click\",\"clickListener\"],[1,\"mousedown\",\"mouseDownHandler\"],[1,\"mouseup\",\"mouseUpHandler\"],[1,\"mousemove\",\"mouseMoveHandler\"]]]]],[\"ez-search\",[[1,\"ez-search\",{\"value\":[1537],\"label\":[1537],\"enabled\":[1540],\"errorMessage\":[1537,\"error-message\"],\"optionLoader\":[16],\"contextProperties\":[8,\"context-properties\"],\"showSelectedValue\":[4,\"show-selected-value\"],\"showOptionValue\":[4,\"show-option-value\"],\"suppressEmptyOption\":[4,\"suppress-empty-option\"],\"stopPropagateEnterKeyEvent\":[4,\"stop-propagate-enter-key-event\"],\"mode\":[513],\"canShowError\":[516,\"can-show-error\"],\"hideErrorOnFocusOut\":[4,\"hide-error-on-focus-out\"],\"listOptionsPosition\":[16],\"isTextSearch\":[4,\"is-text-search\"],\"ignoreLimitCharsToSearch\":[4,\"ignore-limit-chars-to-search\"],\"options\":[1040],\"suppressSearch\":[4,\"suppress-search\"],\"ensureClearButtonVisible\":[4,\"ensure-clear-button-visible\"],\"suppressPreLoad\":[4,\"suppress-pre-load\"],\"autoFocus\":[4,\"auto-focus\"],\"alternativePlaceholder\":[513,\"alternative-placeholder\"],\"showMore\":[4,\"show-more\"],\"suppressInputPersist\":[1028,\"suppress-input-persist\"],\"_preSelection\":[32],\"_visibleOptions\":[32],\"_startLoading\":[32],\"_showLoading\":[32],\"_showLoadingDescription\":[32],\"_criteria\":[32],\"getValueAsync\":[64],\"setFocus\":[64],\"setBlur\":[64],\"isInvalid\":[64],\"clearValue\":[64]}]]],[\"ez-check\",[[1,\"ez-check\",{\"label\":[513],\"alternativePlaceholder\":[513,\"alternative-placeholder\"],\"value\":[1540],\"enabled\":[1540],\"indeterminate\":[1540],\"mode\":[513],\"compact\":[4],\"getMode\":[64],\"setFocus\":[64]}]]],[\"ez-list\",[[2,\"ez-list\",{\"dataSource\":[1040],\"listMode\":[1,\"list-mode\"],\"useGroups\":[1540,\"use-groups\"],\"ezDraggable\":[1028,\"ez-draggable\"],\"ezSelectable\":[1028,\"ez-selectable\"],\"itemSlotBuilder\":[1040],\"itemLeftSlotBuilder\":[1040],\"hoverFeedback\":[1028,\"hover-feedback\"],\"enableMultipleSelection\":[4,\"enable-multiple-selection\"],\"enabled\":[4],\"_listItems\":[32],\"_listGroupItems\":[32],\"clearHistory\":[64],\"scrollToTop\":[64],\"setSelection\":[64],\"getSelection\":[64],\"getList\":[64],\"removeSelection\":[64]}]]],[\"ez-button\",[[1,\"ez-button\",{\"label\":[513],\"enabled\":[516],\"isDisabled\":[520,\"is-disabled\"],\"mode\":[513],\"image\":[513],\"iconName\":[513,\"icon-name\"],\"size\":[513],\"variant\":[1],\"type\":[1],\"leftIconName\":[1,\"left-icon-name\"],\"rightIconName\":[1,\"right-icon-name\"],\"suppressAnimation\":[4,\"suppress-animation\"],\"ripples\":[32],\"isPressed\":[32],\"setFocus\":[64],\"setBlur\":[64]},[[1,\"mousedown\",\"onMouseDown\"],[1,\"touchstart\",\"onTouchStart\"],[2,\"click\",\"clickListener\"]]]]],[\"ez-modal-container\",[[6,\"ez-modal-container\",{\"modalTitle\":[1,\"modal-title\"],\"modalSubTitle\":[1,\"modal-sub-title\"],\"showTitleBar\":[4,\"show-title-bar\"],\"cancelButtonLabel\":[1,\"cancel-button-label\"],\"okButtonLabel\":[1,\"ok-button-label\"],\"cancelButtonStatus\":[1,\"cancel-button-status\"],\"okButtonStatus\":[1,\"ok-button-status\"],\"showCloseButton\":[4,\"show-close-button\"]},[[4,\"ezCloseModal\",\"handleEzModalAction\"]]]]],[\"ez-popup\",[[1,\"ez-popup\",{\"size\":[1],\"opened\":[1540],\"useHeader\":[516,\"use-header\"],\"heightMode\":[513,\"height-mode\"],\"ezTitle\":[1,\"ez-title\"],\"enabledScroll\":[4,\"enabled-scroll\"],\"autoClose\":[4,\"auto-close\"],\"footerButtons\":[16]}]]],[\"ez-rich-toolbar-item\",[[2,\"ez-rich-toolbar-item\",{\"icon\":[1],\"command\":[1],\"title\":[1],\"value\":[1]}]]],[\"ez-skeleton\",[[0,\"ez-skeleton\",{\"template\":[1],\"count\":[2],\"variant\":[1],\"width\":[1],\"height\":[1],\"marginTop\":[1,\"margin-top\"],\"marginRight\":[1,\"margin-right\"],\"marginBottom\":[1,\"margin-bottom\"],\"marginLeft\":[1,\"margin-left\"],\"animation\":[1]}]]],[\"ez-popover-core\",[[1,\"ez-popover-core\",{\"autoClose\":[516,\"auto-close\"],\"boxWidth\":[513,\"box-width\"],\"opened\":[1540],\"overlayType\":[513,\"overlay-type\"],\"anchorElement\":[1537,\"anchor-element\"],\"options\":[1040],\"useAnchorSize\":[516,\"use-anchor-size\"],\"minWidth\":[514,\"min-width\"],\"updatePosition\":[64],\"show\":[64],\"showUnder\":[64],\"hide\":[64],\"setOptions\":[64],\"setAnchorElement\":[64]}]]],[\"ez-link-builder_6\",[[2,\"ez-link-builder\",{\"textToShow\":[32],\"link\":[32],\"openInNewGuide\":[32],\"show\":[64],\"hide\":[64]}],[2,\"ez-simple-image-uploader\",{\"maxSize\":[2,\"max-size\"],\"link\":[32],\"base64\":[32],\"messageError\":[32],\"selectedFile\":[32],\"show\":[64],\"hide\":[64]}],[2,\"ez-rich-toolbar\",{\"showPreview\":[4,\"show-preview\"],\"isPreviewMode\":[4,\"is-preview-mode\"],\"showConfigs\":[4,\"show-configs\"],\"showTextFormat\":[4,\"show-text-format\"],\"showUndoRedo\":[4,\"show-undo-redo\"]},[[0,\"actionTriggered\",\"handleActionTriggered\"]]],[2,\"ez-rich-toolbar-arrows\"],[2,\"ez-rich-toolbar-configs\"],[2,\"ez-rich-toolbar-letters\"]]],[\"ez-combo-box-list_4\",[[2,\"ez-rich-text\",{\"showPreview\":[4,\"show-preview\"],\"value\":[1537],\"label\":[513],\"mode\":[513],\"enabled\":[516],\"rows\":[514],\"errorMessage\":[1537,\"error-message\"],\"canShowError\":[516,\"can-show-error\"],\"showConfigs\":[4,\"show-configs\"],\"showTextFormat\":[4,\"show-text-format\"],\"showUndoRedo\":[4,\"show-undo-redo\"],\"previewMode\":[32],\"setFocus\":[64],\"setBlur\":[64],\"isInvalid\":[64]},[[0,\"executeToolbarCommand\",\"handleExecuteToolbarCommand\"]]],[2,\"ez-custom-form-input\",{\"customEditor\":[16],\"formViewField\":[16],\"value\":[1032],\"detailContext\":[1,\"detail-context\"],\"builderFallback\":[16],\"selectedRecord\":[16],\"gui\":[32],\"setFocus\":[64],\"setBlur\":[64],\"isInvalid\":[64]}],[1,\"ez-text-edit\",{\"value\":[1],\"styled\":[16],\"_newValue\":[32],\"applyFocusSelect\":[64]}],[1,\"ez-combo-box-list\",{\"showLoading\":[4,\"show-loading\"],\"visibleOptions\":[16],\"textEmptyList\":[1,\"text-empty-list\"],\"showOptionValue\":[4,\"show-option-value\"],\"preSelection\":[2,\"pre-selection\"],\"maxWidth\":[2,\"max-width\"],\"width\":[2],\"onOptionSelect\":[16],\"onOptionHover\":[16],\"nextOption\":[64],\"previousOption\":[64],\"selectCurrentOption\":[64]},[[0,\"keydown\",\"handleKeyDown\"]]]]],[\"ez-card-item\",[[1,\"ez-card-item\",{\"item\":[16],\"enableKey\":[4,\"enable-key\"],\"compacted\":[4]}]]],[\"ez-popover-plus_3\",[[0,\"multi-selection-box-message\",{\"message\":[1]}],[1,\"search-list\",{\"showLoading\":[4,\"show-loading\"],\"visibleOptions\":[16],\"textEmptyList\":[1,\"text-empty-list\"],\"canShowListOptions\":[4,\"can-show-list-options\"],\"value\":[1],\"showOptionValue\":[4,\"show-option-value\"],\"preSelection\":[2,\"pre-selection\"],\"nextOption\":[64],\"previousOption\":[64]}],[1,\"ez-popover-plus\",{\"autoClose\":[516,\"auto-close\"],\"boxWidth\":[513,\"box-width\"],\"opened\":[1540],\"overlayType\":[513,\"overlay-type\"],\"anchorElement\":[1537,\"anchor-element\"],\"options\":[1040],\"useAnchorSize\":[516,\"use-anchor-size\"],\"minWidth\":[514,\"min-width\"],\"updatePosition\":[64],\"show\":[64],\"showUnder\":[64],\"hide\":[64],\"setOptions\":[64],\"setAnchorElement\":[64]}]]],[\"ez-form\",[[2,\"ez-form\",{\"dataUnit\":[1040],\"config\":[16],\"recordsValidator\":[16],\"fieldToFocus\":[1,\"field-to-focus\"],\"onlyStaticFields\":[4,\"only-static-fields\"],\"useSearchField\":[4,\"use-search-field\"],\"elementFocusSearchField\":[16],\"_fieldsProps\":[32],\"_singleColumn\":[32],\"validate\":[64],\"addCustomEditor\":[64],\"setFieldProp\":[64]}]]]]"), options);
|
|
21
|
+
return bootstrapLazy(JSON.parse("[[\"ez-guide-navigator\",[[1,\"ez-guide-navigator\",{\"open\":[1540],\"selectedId\":[1537,\"selected-id\"],\"items\":[16],\"tooltipResolver\":[16],\"filterText\":[32],\"disableItem\":[64],\"openGuideNavidator\":[64],\"enableItem\":[64],\"updateItem\":[64],\"getItem\":[64],\"getCurrentPath\":[64],\"selectGuide\":[64],\"getParent\":[64]}]]],[\"ez-alert-list\",[[1,\"ez-alert-list\",{\"alerts\":[1040],\"enableDragAndDrop\":[516,\"enable-drag-and-drop\"],\"enableExpand\":[516,\"enable-expand\"],\"itemRightSlotBuilder\":[16],\"opened\":[1540],\"expanded\":[1540],\"_container\":[32]}]]],[\"ez-actions-button\",[[1,\"ez-actions-button\",{\"enabled\":[516],\"actions\":[1040],\"size\":[513],\"showLabel\":[516,\"show-label\"],\"displayIcon\":[513,\"display-icon\"],\"checkOption\":[516,\"check-option\"],\"value\":[513],\"isTransparent\":[516,\"is-transparent\"],\"arrowActive\":[516,\"arrow-active\"],\"_selectedAction\":[32],\"hideActions\":[64],\"showActions\":[64],\"isOpened\":[64]}]]],[\"ez-dialog\",[[1,\"ez-dialog\",{\"confirm\":[1028],\"dialogType\":[1025,\"dialog-type\"],\"message\":[1025],\"opened\":[1540],\"personalizedIconPath\":[1025,\"personalized-icon-path\"],\"ezTitle\":[1025,\"ez-title\"],\"beforeClose\":[1040],\"show\":[64]}]]],[\"ez-tile\",[[1,\"ez-tile\",{\"text\":[513],\"size\":[513],\"height\":[514],\"width\":[514],\"color\":[513],\"iconName\":[513,\"icon-name\"],\"maximumLines\":[514,\"maximum-lines\"],\"isInteractive\":[516,\"is-interactive\"],\"setFocus\":[64],\"setBlur\":[64]},[[2,\"click\",\"clickListener\"]]]]],[\"ez-application\",[[0,\"ez-application\"]]],[\"ez-empty-card\",[[1,\"ez-empty-card\",{\"color\":[513],\"height\":[514],\"width\":[514]}]]],[\"ez-modal\",[[1,\"ez-modal\",{\"modalSize\":[1,\"modal-size\"],\"align\":[1],\"heightMode\":[1,\"height-mode\"],\"opened\":[1028],\"closeEsc\":[4,\"close-esc\"],\"closeOutsideClick\":[4,\"close-outside-click\"],\"closeOutsideLeave\":[4,\"close-outside-leave\"],\"scrim\":[1]}]]],[\"ez-tag\",[[1,\"ez-tag\",{\"label\":[513],\"color\":[513],\"customBackgroundColor\":[1,\"custom-background-color\"],\"customLabelColor\":[1,\"custom-label-color\"]}]]],[\"ez-icon\",[[1,\"ez-icon\",{\"size\":[513],\"fontSize\":[520,\"font-size\"],\"href\":[513],\"iconName\":[513,\"icon-name\"]}]]],[\"ez-tile-medium\",[[1,\"ez-tile-medium\",{\"color\":[1],\"iconName\":[1,\"icon-name\"],\"iconColor\":[1,\"icon-color\"],\"smallTitleText\":[1,\"small-title-text\"],\"smallTitleMaximumLines\":[2,\"small-title-maximum-lines\"],\"titleText\":[1,\"title-text\"],\"titleMaximumLines\":[2,\"title-maximum-lines\"],\"descriptionText\":[1,\"description-text\"],\"descriptionMaximumLines\":[2,\"description-maximum-lines\"],\"height\":[1],\"width\":[1],\"avatarProps\":[16],\"buttonProps\":[16],\"tags\":[16],\"setButtonFocus\":[64],\"setButtonBlur\":[64]}]]],[\"ez-alert\",[[1,\"ez-alert\",{\"alertType\":[513,\"alert-type\"]}]]],[\"ez-toast\",[[1,\"ez-toast\",{\"message\":[1025],\"fadeTime\":[1026,\"fade-time\"],\"useIcon\":[1028,\"use-icon\"],\"canClose\":[1028,\"can-close\"],\"show\":[64]}]]],[\"ez-text-input\",[[1,\"ez-text-input\",{\"label\":[513],\"alternativePlaceholder\":[513,\"alternative-placeholder\"],\"value\":[1537],\"enabled\":[516],\"errorMessage\":[1537,\"error-message\"],\"hasInvalid\":[1540,\"has-invalid\"],\"mask\":[1],\"cleanValueMask\":[4,\"clean-value-mask\"],\"canShowError\":[516,\"can-show-error\"],\"restrict\":[1],\"mode\":[513],\"noBorder\":[516,\"no-border\"],\"password\":[4],\"autoFocus\":[4,\"auto-focus\"],\"hasRightSlotContent\":[32],\"forceLabelFloat\":[32],\"setFocus\":[64],\"setBlur\":[64],\"isInvalid\":[64]}]]],[\"ez-grid\",[[6,\"ez-grid\",{\"enableLockManagerLoadingComp\":[1028,\"enable-lock-manager-loading-comp\"],\"enableLockManagerTaskbarClick\":[4,\"enable-lock-manager-taskbar-click\"],\"multipleSelection\":[4,\"multiple-selection\"],\"config\":[1040],\"selectionToastConfig\":[16],\"serverUrl\":[1,\"server-url\"],\"dataUnit\":[16],\"statusResolver\":[16],\"columnfilterDataSource\":[16],\"useEnterLikeTab\":[4,\"use-enter-like-tab\"],\"recordsValidator\":[16],\"canEdit\":[1028,\"can-edit\"],\"autoFocus\":[4,\"auto-focus\"],\"paginationCounterMode\":[1,\"pagination-counter-mode\"],\"enableGridInsert\":[4,\"enable-grid-insert\"],\"enableContinuousInsert\":[4,\"enable-continuous-insert\"],\"suppressCheckboxColumn\":[1028,\"suppress-checkbox-column\"],\"suppressFilterColumn\":[1028,\"suppress-filter-column\"],\"outlineMode\":[4,\"outline-mode\"],\"enableRowTableStriped\":[4,\"enable-row-table-striped\"],\"compact\":[1028],\"useSearchColumn\":[4,\"use-search-column\"],\"suppressHorizontalScroll\":[4,\"suppress-horizontal-scroll\"],\"mode\":[513],\"_paginationInfo\":[32],\"_paginationChangedByKeyboard\":[32],\"_showSelectionCounter\":[32],\"_isAllSelection\":[32],\"_currentPageSelected\":[32],\"_selectionCount\":[32],\"_hasLeftButtons\":[32],\"_customFormatters\":[32],\"setColumnsDef\":[64],\"getAppliedColumnFilters\":[64],\"refreshColumnFilterDataSource\":[64],\"addColumnMenuItem\":[64],\"setColumnsState\":[64],\"setData\":[64],\"getSelection\":[64],\"getColumnsState\":[64],\"getColumns\":[64],\"quickFilter\":[64],\"locateColumn\":[64],\"filterColumns\":[64],\"addCustomEditor\":[64],\"addGridCustomRender\":[64],\"addCustomValueFormatter\":[64],\"removeCustomValueFormatter\":[64],\"refreshSelectedRows\":[64],\"getCustomValueFormatter\":[64],\"setFocus\":[64],\"stopEdit\":[64],\"checkStopEditOutsideClick\":[64]},[[0,\"applyFilterColumnOptions\",\"handleApplyFilterColumn\"],[0,\"ezSelectionChange\",\"onSelectionChange\"],[2,\"click\",\"handleClick\"]]]]],[\"ez-grid-view\",[[6,\"ez-grid-view\",{\"metadata\":[16],\"records\":[16],\"columnsConfig\":[1040],\"pageSize\":[2,\"page-size\"],\"recordDateFormat\":[1,\"record-date-format\"],\"multipleSelection\":[4,\"multiple-selection\"],\"autoFocus\":[4,\"auto-focus\"],\"paginationCounterMode\":[1,\"pagination-counter-mode\"],\"suppressCheckboxColumn\":[1028,\"suppress-checkbox-column\"],\"suppressFilterColumn\":[4,\"suppress-filter-column\"],\"outlineMode\":[4,\"outline-mode\"],\"enableRowTableStriped\":[4,\"enable-row-table-striped\"],\"compact\":[1028],\"useSearchColumn\":[4,\"use-search-column\"],\"suppressHorizontalScroll\":[4,\"suppress-horizontal-scroll\"],\"inMemoryLoader\":[32],\"getDataUnit\":[64],\"refresh\":[64],\"getSelection\":[64],\"quickFilter\":[64],\"locateColumn\":[64],\"filterColumns\":[64],\"addColumnMenuItem\":[64],\"addCustomValueFormatter\":[64],\"removeCustomValueFormatter\":[64],\"addGridCustomRender\":[64],\"setFocus\":[64]}]]],[\"ez-double-list\",[[2,\"ez-double-list\",{\"leftList\":[1040],\"leftTitle\":[1,\"left-title\"],\"rightList\":[1040],\"entityLabel\":[1,\"entity-label\"],\"entityLabelPlural\":[1,\"entity-label-plural\"],\"leftListLabel\":[1,\"left-list-label\"],\"rightListLabel\":[1,\"right-list-label\"],\"useOnlyRightList\":[4,\"use-only-right-list\"],\"rightTitle\":[1,\"right-title\"],\"emptyMessage\":[16],\"slotsListBuilder\":[1040],\"leftFilteredList\":[32],\"rightFilteredList\":[32],\"selectedLeftList\":[32],\"selectedRightList\":[32],\"isFilteringLeft\":[32],\"isFilteringRight\":[32],\"resetSelectedLists\":[64]}]]],[\"ez-sidebar-navigator\",[[1,\"ez-sidebar-navigator\",{\"type\":[1],\"mode\":[1025],\"size\":[1],\"isResponsive\":[4,\"is-responsive\"],\"titleMenu\":[1,\"title-menu\"],\"showCollapseMenu\":[4,\"show-collapse-menu\"],\"showFixedButton\":[4,\"show-fixed-button\"],\"open\":[32],\"changeModeMenu\":[64],\"closeSidebar\":[64],\"openSidebar\":[64]}]]],[\"ez-breadcrumb\",[[1,\"ez-breadcrumb\",{\"items\":[1040],\"fillMode\":[1025,\"fill-mode\"],\"maxItems\":[1026,\"max-items\"],\"positionEllipsis\":[1026,\"position-ellipsis\"],\"visibleItems\":[32],\"hiddenItems\":[32],\"showDropdown\":[32],\"collapseConfigPosition\":[32]}]]],[\"ez-classic-combo-box\",[[1,\"ez-classic-combo-box\",{\"value\":[1040],\"label\":[1],\"placeholder\":[1025],\"enabled\":[4],\"readonly\":[4],\"name\":[1],\"state\":[1],\"helpText\":[1,\"help-text\"],\"iconName\":[1,\"icon-name\"],\"titleIcon\":[1,\"title-icon\"],\"iconClickable\":[4,\"icon-clickable\"],\"suppressSearch\":[4,\"suppress-search\"],\"options\":[16],\"textEmptyOption\":[1,\"text-empty-option\"],\"suppressEmptyOption\":[4,\"suppress-empty-option\"],\"popoverVisible\":[32],\"hasSlotContent\":[32],\"highlightedIndex\":[32],\"filteredOptions\":[32],\"inputValue\":[32],\"setFocus\":[64],\"setBlur\":[64],\"showPopover\":[64],\"hidePopover\":[64],\"setValue\":[64]}]]],[\"ez-split-button\",[[1,\"ez-split-button\",{\"show\":[1540],\"enabled\":[516],\"isDisabled\":[520,\"is-disabled\"],\"iconName\":[513,\"icon-name\"],\"leftIconName\":[513,\"left-icon-name\"],\"rightIconName\":[513,\"right-icon-name\"],\"image\":[513],\"items\":[16],\"label\":[513],\"leftTitle\":[513,\"left-title\"],\"rightTitle\":[513,\"right-title\"],\"mode\":[513],\"size\":[513],\"variant\":[1537],\"suppressAnimation\":[1540,\"suppress-animation\"],\"itemBuilder\":[16],\"leftRipples\":[32],\"rightRipples\":[32],\"isLeftPressed\":[32],\"isRightPressed\":[32],\"setBlur\":[64],\"setLeftButtonFocus\":[64],\"setRightButtonFocus\":[64],\"toggleDropdown\":[64],\"isOpenedDropdown\":[64]},[[1,\"mousedown\",\"onMouseDown\"],[1,\"touchstart\",\"onTouchStart\"],[2,\"click\",\"clickListener\"]]]]],[\"ez-tag-input\",[[1,\"ez-tag-input\",{\"label\":[1],\"placeholder\":[1],\"helpText\":[1025,\"help-text\"],\"enabled\":[4],\"readonly\":[4],\"name\":[1],\"tags\":[1040],\"maxTagLength\":[2,\"max-tag-length\"],\"maxTags\":[2,\"max-tags\"],\"allowDuplicates\":[4,\"allow-duplicates\"],\"state\":[1537],\"validator\":[16],\"suppressTagsKeyboardNavigation\":[4,\"suppress-tags-keyboard-navigation\"],\"suppressBackspaceToRemove\":[4,\"suppress-backspace-to-remove\"],\"setFocus\":[64],\"setBlur\":[64],\"addTag\":[64],\"removeTag\":[64],\"clearTags\":[64]}]]],[\"ez-pagination\",[[2,\"ez-pagination\",{\"type\":[1],\"currentPage\":[1026,\"current-page\"],\"totalItems\":[2,\"total-items\"],\"pageSize\":[2,\"page-size\"],\"hideInfoLabel\":[4,\"hide-info-label\"],\"pageLimit\":[2,\"page-limit\"]}]]],[\"ez-split-item\",[[4,\"ez-split-item\",{\"label\":[1],\"enableExpand\":[516,\"enable-expand\"],\"size\":[1],\"structural\":[4],\"_expanded\":[32]}]]],[\"ez-classic-text-area\",[[1,\"ez-classic-text-area\",{\"name\":[1],\"label\":[1],\"placeholder\":[1],\"value\":[1],\"helpText\":[1,\"help-text\"],\"state\":[1],\"enabled\":[4],\"readonly\":[4],\"maxlength\":[2],\"resize\":[1],\"leftIconName\":[1,\"left-icon-name\"],\"rightIconName\":[1,\"right-icon-name\"],\"rightIconTooltip\":[1,\"right-icon-tooltip\"],\"leftIconTooltip\":[1,\"left-icon-tooltip\"],\"leftIconClickable\":[4,\"left-icon-clickable\"],\"rightIconClickable\":[4,\"right-icon-clickable\"],\"rows\":[2],\"setFocus\":[64],\"setBlur\":[64]}]]],[\"ez-file-item\",[[1,\"ez-file-item\",{\"canRemove\":[4,\"can-remove\"],\"fileName\":[1,\"file-name\"],\"iconName\":[1,\"icon-name\"],\"fileSize\":[2,\"file-size\"],\"progress\":[2]}]]],[\"ez-list-item\",[[2,\"ez-list-item\",{\"titleText\":[513,\"title-text\"],\"text\":[513],\"iconName\":[513,\"icon-name\"]}]]],[\"ez-chart\",[[1,\"ez-chart\",{\"type\":[1],\"xAxis\":[16],\"yAxis\":[16],\"chartTitle\":[1,\"chart-title\"],\"chartSubTitle\":[1,\"chart-sub-title\"],\"legendEnabled\":[4,\"legend-enabled\"],\"series\":[16],\"width\":[2],\"height\":[2]}]]],[\"ez-loading-bar\",[[1,\"ez-loading-bar\",{\"_showLoading\":[32],\"hide\":[64],\"show\":[64]}]]],[\"ez-progress-bar\",[[2,\"ez-progress-bar\",{\"percent\":[514],\"label\":[513],\"helpText\":[513,\"help-text\"]}]]],[\"ez-radio-button\",[[1,\"ez-radio-button\",{\"value\":[1544],\"options\":[1040],\"enabled\":[516],\"label\":[513],\"direction\":[1537]}]]],[\"ez-spinner\",[[1,\"ez-spinner\",{\"size\":[1]}]]],[\"ez-split-panel\",[[0,\"ez-split-panel\",{\"direction\":[1],\"anchorToExpand\":[4,\"anchor-to-expand\"],\"structural\":[4],\"rebuildLayout\":[64]}]]],[\"ez-underface\",[[1,\"ez-underface\",{\"color\":[513],\"customColor\":[513,\"custom-color\"],\"height\":[514],\"width\":[514]}]]],[\"ez-view-stack\",[[0,\"ez-view-stack\",{\"show\":[64],\"getSelectedIndex\":[64]}]]],[\"ez-tooltip\",[[1,\"ez-tooltip\",{\"message\":[1],\"anchoringElement\":[1040],\"placement\":[1],\"gapOptions\":[16],\"type\":[1],\"debouncingTime\":[2,\"debouncing-time\"],\"active\":[4],\"maxWidth\":[2,\"max-width\"],\"useAnchorSize\":[4,\"use-anchor-size\"],\"strategy\":[1]}]]],[\"ez-form-view\",[[2,\"ez-form-view\",{\"fields\":[16],\"selectedRecord\":[16],\"singleColumn\":[4,\"single-column\"],\"_customEditors\":[32],\"showUp\":[64],\"addCustomEditor\":[64],\"setFieldProp\":[64]}]]],[\"ez-filter-input\",[[1,\"ez-filter-input\",{\"label\":[1],\"value\":[1537],\"enabled\":[4],\"errorMessage\":[1537,\"error-message\"],\"restrict\":[1],\"mode\":[513],\"asyncSearch\":[516,\"async-search\"],\"canShowError\":[516,\"can-show-error\"],\"autoFocus\":[4,\"auto-focus\"],\"setFocus\":[64],\"setBlur\":[64],\"isInvalid\":[64],\"setValue\":[64],\"endSearch\":[64]}]]],[\"ez-sortable-list\",[[1,\"ez-sortable-list\",{\"title\":[1],\"hideHeader\":[4,\"hide-header\"],\"hideTotalizer\":[4,\"hide-totalizer\"],\"group\":[1],\"dataSource\":[16],\"idSortableList\":[1,\"id-sortable-list\"],\"entityLabel\":[1,\"entity-label\"],\"entityLabelPlural\":[1,\"entity-label-plural\"],\"emptyMessage\":[1,\"empty-message\"],\"hoverFeedback\":[4,\"hover-feedback\"],\"enableMultipleSelection\":[4,\"enable-multiple-selection\"],\"removeItensMoved\":[4,\"remove-itens-moved\"],\"itemRightSlotBuilder\":[1040],\"itemLeftSlotBuilder\":[1040],\"filterTerm\":[32],\"selectedItems\":[32],\"clearSelection\":[64]}]]],[\"ez-chip\",[[1,\"ez-chip\",{\"label\":[513],\"enabled\":[516],\"removePosition\":[513,\"remove-position\"],\"mode\":[513],\"value\":[1540],\"showNativeTooltip\":[4,\"show-native-tooltip\"],\"disableAutoUpdateValue\":[4,\"disable-auto-update-value\"],\"maxWidth\":[1,\"max-width\"],\"size\":[1],\"iconNameLeft\":[1,\"icon-name-left\"],\"iconNameRight\":[1,\"icon-name-right\"],\"type\":[1],\"tabIndex\":[2,\"tab-index\"],\"removeWithKeyboard\":[4,\"remove-with-keyboard\"],\"_isOverflowing\":[32],\"setFocus\":[64],\"setBlur\":[64]}]]],[\"ez-avatar\",[[1,\"ez-avatar\",{\"name\":[513],\"imageSrc\":[513,\"image-src\"],\"iconName\":[513,\"icon-name\"],\"size\":[513],\"shape\":[513],\"isInteractive\":[516,\"is-interactive\"]}]]],[\"ez-badge\",[[1,\"ez-badge\",{\"size\":[513],\"label\":[513],\"iconLeft\":[513,\"icon-left\"],\"iconRight\":[513,\"icon-right\"],\"position\":[1040],\"alignItems\":[1537,\"align-items\"],\"hasSlot\":[32]}]]],[\"ez-classic-input\",[[1,\"ez-classic-input\",{\"type\":[1],\"value\":[1025],\"label\":[1],\"helpText\":[1,\"help-text\"],\"placeholder\":[1025],\"enabled\":[4],\"readonly\":[4],\"name\":[1],\"minlength\":[2],\"maxlength\":[2],\"leftIconName\":[1,\"left-icon-name\"],\"rightIconName\":[1,\"right-icon-name\"],\"rightIconTooltip\":[1,\"right-icon-tooltip\"],\"leftIconTooltip\":[1,\"left-icon-tooltip\"],\"state\":[1],\"leftIconClickable\":[4,\"left-icon-clickable\"],\"rightIconClickable\":[4,\"right-icon-clickable\"],\"mask\":[1],\"emitMaskedValue\":[4,\"emit-masked-value\"],\"setFocus\":[64],\"setBlur\":[64]}]]],[\"ez-tabselector\",[[1,\"ez-tabselector\",{\"selectedIndex\":[1538,\"selected-index\"],\"selectedTab\":[1537,\"selected-tab\"],\"tabs\":[1],\"_processedTabs\":[32],\"goToTab\":[64]}]]],[\"ez-tree\",[[1,\"ez-tree\",{\"items\":[1040],\"value\":[1040],\"selectedId\":[1537,\"selected-id\"],\"iconResolver\":[16],\"tooltipResolver\":[16],\"enableHierarchicalFilter\":[4,\"enable-hierarchical-filter\"],\"selectable\":[4],\"_tree\":[32],\"_waintingForLoad\":[32],\"selectItem\":[64],\"openItem\":[64],\"disableItem\":[64],\"enableItem\":[64],\"addChild\":[64],\"applyFilter\":[64],\"expandAll\":[64],\"collapseAll\":[64],\"updateItem\":[64],\"removeItem\":[64],\"getItem\":[64],\"getCurrentPath\":[64],\"getParent\":[64]},[[2,\"keydown\",\"onKeyDownListener\"]]]]],[\"ez-multi-selection-list\",[[2,\"ez-multi-selection-list\",{\"columnName\":[1,\"column-name\"],\"dataSource\":[16],\"useOptions\":[1028,\"use-options\"],\"options\":[1040],\"isTextSearch\":[4,\"is-text-search\"],\"filteredOptions\":[32],\"displayOptions\":[32],\"viewScenario\":[32],\"displayOptionToCheckAllItems\":[32],\"clearFilteredOptions\":[64]}]]],[\"filter-column\",[[0,\"filter-column\",{\"opened\":[4],\"columnName\":[1,\"column-name\"],\"columnLabel\":[1,\"column-label\"],\"gridHeaderHidden\":[4,\"grid-header-hidden\"],\"noHeaderTaskBar\":[1028,\"no-header-task-bar\"],\"dataSource\":[16],\"dataUnit\":[16],\"options\":[1040],\"selectedItems\":[32],\"fieldDescriptor\":[32],\"useOptions\":[32],\"isTextSearch\":[32],\"hide\":[64],\"show\":[64]}]]],[\"ez-search-result-list\",[[1,\"ez-search-result-list\",{\"showLoading\":[4,\"show-loading\"],\"visibleOptions\":[16],\"value\":[1],\"showOptionValue\":[4,\"show-option-value\"],\"_preSelection\":[32],\"nextOption\":[64],\"previousOption\":[64],\"selectCurrentItem\":[64],\"cancelSelection\":[64]}]]],[\"ez-search-plus\",[[1,\"ez-search-plus\",{\"value\":[1537],\"enabled\":[1540],\"disableCodeInput\":[1540,\"disable-code-input\"],\"disableDescriptionInput\":[1540,\"disable-description-input\"],\"label\":[1537],\"codLabel\":[1537,\"cod-label\"],\"hideDescriptionInput\":[1540,\"hide-description-input\"],\"canShowError\":[516,\"can-show-error\"],\"errorMessage\":[1537,\"error-message\"],\"mode\":[513],\"contextProperties\":[8,\"context-properties\"],\"optionLoader\":[16],\"showOptionValue\":[4,\"show-option-value\"],\"stopPropagateEnterKeyEvent\":[4,\"stop-propagate-enter-key-event\"],\"autoFocus\":[4,\"auto-focus\"],\"showSelectedValue\":[4,\"show-selected-value\"],\"suppressEmptyOption\":[4,\"suppress-empty-option\"],\"hideErrorOnFocusOut\":[4,\"hide-error-on-focus-out\"],\"listOptionsPosition\":[16],\"isTextSearch\":[4,\"is-text-search\"],\"ignoreLimitCharsToSearch\":[4,\"ignore-limit-chars-to-search\"],\"suppressSearch\":[4,\"suppress-search\"],\"suppressPreLoad\":[4,\"suppress-pre-load\"],\"ensureClearButtonVisible\":[4,\"ensure-clear-button-visible\"],\"descriptionValue\":[32],\"codeValue\":[32],\"isLoadingDescription\":[32],\"searchDescriptionIsOpen\":[32],\"visibleOptions\":[32],\"showLoading\":[32],\"setFocus\":[64],\"getValueAsync\":[64],\"clearValue\":[64],\"setBlur\":[64],\"isInvalid\":[64]}]]],[\"ez-combo-box\",[[1,\"ez-combo-box\",{\"limitCharsToSearch\":[2,\"limit-chars-to-search\"],\"value\":[1537],\"label\":[513],\"enabled\":[516],\"options\":[1040],\"errorMessage\":[1537,\"error-message\"],\"showSelectedValue\":[4,\"show-selected-value\"],\"showOptionValue\":[4,\"show-option-value\"],\"suppressSearch\":[4,\"suppress-search\"],\"optionLoader\":[16],\"suppressEmptyOption\":[4,\"suppress-empty-option\"],\"stopPropagateEnterKeyEvent\":[4,\"stop-propagate-enter-key-event\"],\"canShowError\":[516,\"can-show-error\"],\"mode\":[513],\"hideErrorOnFocusOut\":[4,\"hide-error-on-focus-out\"],\"listOptionsPosition\":[16],\"isTextSearch\":[4,\"is-text-search\"],\"autoFocus\":[4,\"auto-focus\"],\"preventAutoFocus\":[4,\"prevent-auto-focus\"],\"alternativePlaceholder\":[513,\"alternative-placeholder\"],\"textEmptyOption\":[1,\"text-empty-option\"],\"isOpen\":[32],\"_preSelection\":[32],\"_visibleOptions\":[32],\"_startLoading\":[32],\"_showLoading\":[32],\"_criteria\":[32],\"getValueAsync\":[64],\"setFocus\":[64],\"setBlur\":[64],\"isInvalid\":[64],\"clearValue\":[64]}]]],[\"ez-date-input\",[[1,\"ez-date-input\",{\"label\":[513],\"value\":[1040],\"enabled\":[516],\"errorMessage\":[1537,\"error-message\"],\"mode\":[513],\"canShowError\":[516,\"can-show-error\"],\"autoFocus\":[4,\"auto-focus\"],\"alternativePlaceholder\":[513,\"alternative-placeholder\"],\"setFocus\":[64],\"setBlur\":[64],\"isInvalid\":[64],\"getValueAsync\":[64]}]]],[\"ez-collapsible-box\",[[1,\"ez-collapsible-box\",{\"value\":[1540],\"boxBordered\":[4,\"box-bordered\"],\"label\":[513],\"subtitle\":[513],\"headerSize\":[513,\"header-size\"],\"iconPlacement\":[513,\"icon-placement\"],\"headerAlign\":[513,\"header-align\"],\"removable\":[516],\"editable\":[516],\"conditionalSave\":[16],\"_activeEditText\":[32],\"showHide\":[64],\"applyFocusTextEdit\":[64],\"cancelEdition\":[64]}]]],[\"ez-number-input\",[[1,\"ez-number-input\",{\"label\":[1],\"value\":[1538],\"enabled\":[4],\"canShowError\":[516,\"can-show-error\"],\"errorMessage\":[1537,\"error-message\"],\"allowNegative\":[4,\"allow-negative\"],\"precision\":[2],\"prettyPrecision\":[2,\"pretty-precision\"],\"mode\":[513],\"autoFocus\":[4,\"auto-focus\"],\"alternativePlaceholder\":[1,\"alternative-placeholder\"],\"_value\":[32],\"setFocus\":[64],\"setBlur\":[64],\"isInvalid\":[64],\"getValueAsync\":[64]}]]],[\"ez-time-input\",[[1,\"ez-time-input\",{\"label\":[513],\"value\":[1026],\"enabled\":[516],\"errorMessage\":[1537,\"error-message\"],\"showSeconds\":[516,\"show-seconds\"],\"mode\":[513],\"canShowError\":[516,\"can-show-error\"],\"autoFocus\":[4,\"auto-focus\"],\"alternativePlaceholder\":[1,\"alternative-placeholder\"],\"setFocus\":[64],\"setBlur\":[64],\"isInvalid\":[64]}]]],[\"ez-text-area\",[[1,\"ez-text-area\",{\"label\":[513],\"value\":[1537],\"enabled\":[516],\"errorMessage\":[1537,\"error-message\"],\"rows\":[1538],\"canShowError\":[516,\"can-show-error\"],\"mode\":[513],\"enableResize\":[516,\"enable-resize\"],\"autoRows\":[516,\"auto-rows\"],\"autoFocus\":[4,\"auto-focus\"],\"alternativePlaceholder\":[513,\"alternative-placeholder\"],\"forceLabelFloat\":[32],\"appendTextToSelection\":[64],\"setFocus\":[64],\"setBlur\":[64],\"isInvalid\":[64]}]]],[\"ez-calendar\",[[1,\"ez-calendar\",{\"value\":[1040],\"floating\":[516],\"time\":[516],\"showSeconds\":[516,\"show-seconds\"],\"show\":[64],\"fitVertical\":[64],\"fitHorizontal\":[64],\"hide\":[64]},[[11,\"scroll\",\"scrollListener\"]]]]],[\"ez-date-time-input\",[[1,\"ez-date-time-input\",{\"label\":[513],\"value\":[1040],\"enabled\":[516],\"errorMessage\":[1537,\"error-message\"],\"showSeconds\":[516,\"show-seconds\"],\"mode\":[513],\"canShowError\":[516,\"can-show-error\"],\"autoFocus\":[4,\"auto-focus\"],\"alternativePlaceholder\":[513,\"alternative-placeholder\"],\"setFocus\":[64],\"setBlur\":[64],\"isInvalid\":[64],\"getValueAsync\":[64]}]]],[\"ez-dropdown\",[[1,\"ez-dropdown\",{\"items\":[1040],\"value\":[1040],\"itemBuilder\":[16]},[[4,\"click\",\"handleClickOutside\"]]]]],[\"ez-upload\",[[1,\"ez-upload\",{\"label\":[1],\"subtitle\":[1],\"enabled\":[4],\"maxFileSize\":[2,\"max-file-size\"],\"maxFiles\":[2,\"max-files\"],\"requestHeaders\":[8,\"request-headers\"],\"urlUpload\":[1,\"url-upload\"],\"urlDelete\":[1,\"url-delete\"],\"value\":[1040],\"addFiles\":[64],\"setFocus\":[64],\"setBlur\":[64]}]]],[\"ez-popover\",[[1,\"ez-popover\",{\"autoClose\":[516,\"auto-close\"],\"boxWidth\":[513,\"box-width\"],\"opened\":[1540],\"innerElement\":[1537,\"inner-element\"],\"overlayType\":[513,\"overlay-type\"],\"updatePosition\":[64],\"show\":[64],\"showUnder\":[64],\"hide\":[64]}]]],[\"ez-scroller_2\",[[1,\"ez-sidebar-button\"],[1,\"ez-scroller\",{\"direction\":[1],\"locked\":[4],\"activeShadow\":[4,\"active-shadow\"],\"isActive\":[32]},[[2,\"click\",\"clickListener\"],[1,\"mousedown\",\"mouseDownHandler\"],[1,\"mouseup\",\"mouseUpHandler\"],[1,\"mousemove\",\"mouseMoveHandler\"]]]]],[\"ez-search\",[[1,\"ez-search\",{\"value\":[1537],\"label\":[1537],\"enabled\":[1540],\"errorMessage\":[1537,\"error-message\"],\"optionLoader\":[16],\"contextProperties\":[8,\"context-properties\"],\"showSelectedValue\":[4,\"show-selected-value\"],\"showOptionValue\":[4,\"show-option-value\"],\"suppressEmptyOption\":[4,\"suppress-empty-option\"],\"stopPropagateEnterKeyEvent\":[4,\"stop-propagate-enter-key-event\"],\"mode\":[513],\"canShowError\":[516,\"can-show-error\"],\"hideErrorOnFocusOut\":[4,\"hide-error-on-focus-out\"],\"listOptionsPosition\":[16],\"isTextSearch\":[4,\"is-text-search\"],\"ignoreLimitCharsToSearch\":[4,\"ignore-limit-chars-to-search\"],\"options\":[1040],\"suppressSearch\":[4,\"suppress-search\"],\"ensureClearButtonVisible\":[4,\"ensure-clear-button-visible\"],\"suppressPreLoad\":[4,\"suppress-pre-load\"],\"autoFocus\":[4,\"auto-focus\"],\"alternativePlaceholder\":[513,\"alternative-placeholder\"],\"showMore\":[4,\"show-more\"],\"suppressInputPersist\":[1028,\"suppress-input-persist\"],\"_preSelection\":[32],\"_visibleOptions\":[32],\"_startLoading\":[32],\"_showLoading\":[32],\"_showLoadingDescription\":[32],\"_criteria\":[32],\"getValueAsync\":[64],\"setFocus\":[64],\"setBlur\":[64],\"isInvalid\":[64],\"clearValue\":[64]}]]],[\"ez-check\",[[1,\"ez-check\",{\"label\":[513],\"alternativePlaceholder\":[513,\"alternative-placeholder\"],\"value\":[1540],\"enabled\":[1540],\"indeterminate\":[1540],\"mode\":[513],\"compact\":[4],\"getMode\":[64],\"setFocus\":[64]}]]],[\"ez-list\",[[2,\"ez-list\",{\"dataSource\":[1040],\"listMode\":[1,\"list-mode\"],\"useGroups\":[1540,\"use-groups\"],\"ezDraggable\":[1028,\"ez-draggable\"],\"ezSelectable\":[1028,\"ez-selectable\"],\"itemSlotBuilder\":[1040],\"itemLeftSlotBuilder\":[1040],\"hoverFeedback\":[1028,\"hover-feedback\"],\"enableMultipleSelection\":[4,\"enable-multiple-selection\"],\"enabled\":[4],\"_listItems\":[32],\"_listGroupItems\":[32],\"clearHistory\":[64],\"scrollToTop\":[64],\"setSelection\":[64],\"getSelection\":[64],\"getList\":[64],\"removeSelection\":[64]}]]],[\"ez-button\",[[1,\"ez-button\",{\"label\":[513],\"enabled\":[516],\"isDisabled\":[520,\"is-disabled\"],\"mode\":[513],\"image\":[513],\"iconName\":[513,\"icon-name\"],\"size\":[513],\"variant\":[1],\"type\":[1],\"leftIconName\":[1,\"left-icon-name\"],\"rightIconName\":[1,\"right-icon-name\"],\"suppressAnimation\":[4,\"suppress-animation\"],\"ripples\":[32],\"isPressed\":[32],\"setFocus\":[64],\"setBlur\":[64]},[[1,\"mousedown\",\"onMouseDown\"],[1,\"touchstart\",\"onTouchStart\"],[2,\"click\",\"clickListener\"]]]]],[\"ez-modal-container\",[[6,\"ez-modal-container\",{\"modalTitle\":[1,\"modal-title\"],\"modalSubTitle\":[1,\"modal-sub-title\"],\"showTitleBar\":[4,\"show-title-bar\"],\"cancelButtonLabel\":[1,\"cancel-button-label\"],\"okButtonLabel\":[1,\"ok-button-label\"],\"cancelButtonStatus\":[1,\"cancel-button-status\"],\"okButtonStatus\":[1,\"ok-button-status\"],\"showCloseButton\":[4,\"show-close-button\"]},[[4,\"ezCloseModal\",\"handleEzModalAction\"]]]]],[\"ez-popup\",[[1,\"ez-popup\",{\"size\":[1],\"opened\":[1540],\"useHeader\":[516,\"use-header\"],\"heightMode\":[513,\"height-mode\"],\"ezTitle\":[1,\"ez-title\"],\"enabledScroll\":[4,\"enabled-scroll\"],\"autoClose\":[4,\"auto-close\"],\"footerButtons\":[16]}]]],[\"ez-rich-toolbar-item\",[[2,\"ez-rich-toolbar-item\",{\"icon\":[1],\"command\":[1],\"title\":[1],\"value\":[1]}]]],[\"ez-skeleton\",[[0,\"ez-skeleton\",{\"template\":[1],\"count\":[2],\"variant\":[1],\"width\":[1],\"height\":[1],\"marginTop\":[1,\"margin-top\"],\"marginRight\":[1,\"margin-right\"],\"marginBottom\":[1,\"margin-bottom\"],\"marginLeft\":[1,\"margin-left\"],\"animation\":[1]}]]],[\"ez-popover-core\",[[1,\"ez-popover-core\",{\"autoClose\":[516,\"auto-close\"],\"boxWidth\":[513,\"box-width\"],\"opened\":[1540],\"overlayType\":[513,\"overlay-type\"],\"anchorElement\":[1537,\"anchor-element\"],\"options\":[1040],\"useAnchorSize\":[516,\"use-anchor-size\"],\"minWidth\":[514,\"min-width\"],\"updatePosition\":[64],\"show\":[64],\"showUnder\":[64],\"hide\":[64],\"setOptions\":[64],\"setAnchorElement\":[64]}]]],[\"ez-link-builder_6\",[[2,\"ez-link-builder\",{\"textToShow\":[32],\"link\":[32],\"openInNewGuide\":[32],\"show\":[64],\"hide\":[64]}],[2,\"ez-simple-image-uploader\",{\"maxSize\":[2,\"max-size\"],\"link\":[32],\"base64\":[32],\"messageError\":[32],\"selectedFile\":[32],\"show\":[64],\"hide\":[64]}],[2,\"ez-rich-toolbar\",{\"showPreview\":[4,\"show-preview\"],\"isPreviewMode\":[4,\"is-preview-mode\"],\"showConfigs\":[4,\"show-configs\"],\"showTextFormat\":[4,\"show-text-format\"],\"showUndoRedo\":[4,\"show-undo-redo\"]},[[0,\"actionTriggered\",\"handleActionTriggered\"]]],[2,\"ez-rich-toolbar-arrows\"],[2,\"ez-rich-toolbar-configs\"],[2,\"ez-rich-toolbar-letters\"]]],[\"ez-combo-box-list_4\",[[2,\"ez-rich-text\",{\"showPreview\":[4,\"show-preview\"],\"value\":[1537],\"label\":[513],\"mode\":[513],\"enabled\":[516],\"rows\":[514],\"errorMessage\":[1537,\"error-message\"],\"canShowError\":[516,\"can-show-error\"],\"showConfigs\":[4,\"show-configs\"],\"showTextFormat\":[4,\"show-text-format\"],\"showUndoRedo\":[4,\"show-undo-redo\"],\"previewMode\":[32],\"setFocus\":[64],\"setBlur\":[64],\"isInvalid\":[64]},[[0,\"executeToolbarCommand\",\"handleExecuteToolbarCommand\"]]],[2,\"ez-custom-form-input\",{\"customEditor\":[16],\"formViewField\":[16],\"value\":[1032],\"detailContext\":[1,\"detail-context\"],\"builderFallback\":[16],\"selectedRecord\":[16],\"gui\":[32],\"setFocus\":[64],\"setBlur\":[64],\"isInvalid\":[64]}],[1,\"ez-text-edit\",{\"value\":[1],\"styled\":[16],\"_newValue\":[32],\"applyFocusSelect\":[64]}],[1,\"ez-combo-box-list\",{\"showLoading\":[4,\"show-loading\"],\"visibleOptions\":[16],\"textEmptyList\":[1,\"text-empty-list\"],\"showOptionValue\":[4,\"show-option-value\"],\"preSelection\":[2,\"pre-selection\"],\"maxWidth\":[2,\"max-width\"],\"width\":[2],\"onOptionSelect\":[16],\"onOptionHover\":[16],\"nextOption\":[64],\"previousOption\":[64],\"selectCurrentOption\":[64]},[[0,\"keydown\",\"handleKeyDown\"]]]]],[\"ez-card-item\",[[1,\"ez-card-item\",{\"item\":[16],\"enableKey\":[4,\"enable-key\"],\"compacted\":[4]}]]],[\"ez-popover-plus_3\",[[0,\"multi-selection-box-message\",{\"message\":[1]}],[1,\"search-list\",{\"showLoading\":[4,\"show-loading\"],\"visibleOptions\":[16],\"textEmptyList\":[1,\"text-empty-list\"],\"canShowListOptions\":[4,\"can-show-list-options\"],\"value\":[1],\"showOptionValue\":[4,\"show-option-value\"],\"preSelection\":[2,\"pre-selection\"],\"nextOption\":[64],\"previousOption\":[64]}],[1,\"ez-popover-plus\",{\"autoClose\":[516,\"auto-close\"],\"boxWidth\":[513,\"box-width\"],\"opened\":[1540],\"overlayType\":[513,\"overlay-type\"],\"anchorElement\":[1537,\"anchor-element\"],\"options\":[1040],\"useAnchorSize\":[516,\"use-anchor-size\"],\"minWidth\":[514,\"min-width\"],\"updatePosition\":[64],\"show\":[64],\"showUnder\":[64],\"hide\":[64],\"setOptions\":[64],\"setAnchorElement\":[64]}]]],[\"ez-form\",[[2,\"ez-form\",{\"dataUnit\":[1040],\"config\":[16],\"recordsValidator\":[16],\"fieldToFocus\":[1,\"field-to-focus\"],\"onlyStaticFields\":[4,\"only-static-fields\"],\"useSearchField\":[4,\"use-search-field\"],\"elementFocusSearchField\":[16],\"_fieldsProps\":[32],\"_singleColumn\":[32],\"validate\":[64],\"addCustomEditor\":[64],\"setFieldProp\":[64]}]]]]"), options);
|
|
22
22
|
});
|