@sankhyalabs/ezui 1.1.152 → 1.1.155
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-grid.cjs.entry.js +34 -4
- package/dist/collection/components/ez-grid/controller/DataUnitBridge.js +15 -2
- package/dist/collection/components/ez-grid/controller/ag-grid/AgGridController.js +19 -2
- package/dist/custom-elements/index.js +34 -4
- package/dist/esm/ez-grid.entry.js +34 -4
- package/dist/ezui/ezui.esm.js +1 -1
- package/dist/ezui/{p-e3c485e5.entry.js → p-addedd7d.entry.js} +1 -1
- package/dist/types/components/ez-grid/controller/DataUnitBridge.d.ts +1 -0
- package/dist/types/components/ez-grid/controller/EzGridController.d.ts +8 -4
- package/dist/types/components/ez-grid/controller/ag-grid/AgGridController.d.ts +2 -1
- package/package.json +1 -1
|
@@ -110179,11 +110179,28 @@ class AgGridController {
|
|
|
110179
110179
|
}
|
|
110180
110180
|
this._gridOptions.api.setRowData(data);
|
|
110181
110181
|
}
|
|
110182
|
-
addRows() {
|
|
110182
|
+
addRows(rows) {
|
|
110183
110183
|
if (this._grid === undefined) {
|
|
110184
110184
|
throw new Error("Erro interno: Grid ainda não inicializado.");
|
|
110185
110185
|
}
|
|
110186
|
-
|
|
110186
|
+
if (rows.length > 0) {
|
|
110187
|
+
this._gridOptions.api.applyServerSideTransaction({
|
|
110188
|
+
addIndex: 0,
|
|
110189
|
+
add: rows
|
|
110190
|
+
});
|
|
110191
|
+
this.syncSelection();
|
|
110192
|
+
}
|
|
110193
|
+
}
|
|
110194
|
+
updateRows(rows) {
|
|
110195
|
+
if (this._grid === undefined) {
|
|
110196
|
+
throw new Error("Erro interno: Grid ainda não inicializado.");
|
|
110197
|
+
}
|
|
110198
|
+
if (rows.length > 0) {
|
|
110199
|
+
rows.forEach(row => {
|
|
110200
|
+
this.changeValues(row, [row[this._idAttribName]]);
|
|
110201
|
+
});
|
|
110202
|
+
this.syncSelection();
|
|
110203
|
+
}
|
|
110187
110204
|
}
|
|
110188
110205
|
selectRows(rowIds) {
|
|
110189
110206
|
if (this._grid === undefined) {
|
|
@@ -110570,6 +110587,7 @@ class DataUnitBridge {
|
|
|
110570
110587
|
constructor(gridController, dataUnit) {
|
|
110571
110588
|
this.RECORD_ARCHIVE = "__RECORD_ARCHIVE__";
|
|
110572
110589
|
this.processAction = (action) => {
|
|
110590
|
+
var _a, _b, _c, _d;
|
|
110573
110591
|
switch (action.type) {
|
|
110574
110592
|
case core.Action.METADATA_LOADED:
|
|
110575
110593
|
this._gridController.setColumnsDef(this.buildColumnDefs(), true);
|
|
@@ -110578,9 +110596,16 @@ class DataUnitBridge {
|
|
|
110578
110596
|
const { records } = action.payload;
|
|
110579
110597
|
this._gridController.removeRows(records);
|
|
110580
110598
|
break;
|
|
110581
|
-
case core.Action.EDITION_CANCELED:
|
|
110582
110599
|
case core.Action.DATA_SAVED:
|
|
110583
|
-
|
|
110600
|
+
const recordsAdded = (_b = (_a = action.payload) === null || _a === void 0 ? void 0 : _a.records) === null || _b === void 0 ? void 0 : _b.filter(r => { var _a; return (_a = r.__old__id__) === null || _a === void 0 ? void 0 : _a.startsWith('NEW_'); });
|
|
110601
|
+
const recordsUpdated = (_d = (_c = action.payload) === null || _c === void 0 ? void 0 : _c.records) === null || _d === void 0 ? void 0 : _d.filter(r => { var _a; return !((_a = r.__old__id__) === null || _a === void 0 ? void 0 : _a.startsWith('NEW_')); });
|
|
110602
|
+
if (recordsAdded.length > 0)
|
|
110603
|
+
this._gridController.addRows(recordsAdded);
|
|
110604
|
+
if (recordsUpdated.length > 0)
|
|
110605
|
+
this._gridController.updateRows(recordsUpdated);
|
|
110606
|
+
break;
|
|
110607
|
+
case core.Action.EDITION_CANCELED:
|
|
110608
|
+
this.updateValues();
|
|
110584
110609
|
break;
|
|
110585
110610
|
case core.Action.SELECTION_CHANGED:
|
|
110586
110611
|
const { selection } = action.payload;
|
|
@@ -110600,6 +110625,11 @@ class DataUnitBridge {
|
|
|
110600
110625
|
this._dataUnit = dataUnit;
|
|
110601
110626
|
this._dataUnit.subscribe(this.processAction);
|
|
110602
110627
|
}
|
|
110628
|
+
updateValues() {
|
|
110629
|
+
this._dataUnit.getSelectedRecords().forEach((record) => {
|
|
110630
|
+
this._gridController.changeValues(record, [record.__record__id__]);
|
|
110631
|
+
});
|
|
110632
|
+
}
|
|
110603
110633
|
buildColumnDefs() {
|
|
110604
110634
|
const columnDefs = [];
|
|
110605
110635
|
if (this._dataUnit.metadata) {
|
|
@@ -3,6 +3,7 @@ export default class DataUnitBridge {
|
|
|
3
3
|
constructor(gridController, dataUnit) {
|
|
4
4
|
this.RECORD_ARCHIVE = "__RECORD_ARCHIVE__";
|
|
5
5
|
this.processAction = (action) => {
|
|
6
|
+
var _a, _b, _c, _d;
|
|
6
7
|
switch (action.type) {
|
|
7
8
|
case Action.METADATA_LOADED:
|
|
8
9
|
this._gridController.setColumnsDef(this.buildColumnDefs(), true);
|
|
@@ -11,9 +12,16 @@ export default class DataUnitBridge {
|
|
|
11
12
|
const { records } = action.payload;
|
|
12
13
|
this._gridController.removeRows(records);
|
|
13
14
|
break;
|
|
14
|
-
case Action.EDITION_CANCELED:
|
|
15
15
|
case Action.DATA_SAVED:
|
|
16
|
-
|
|
16
|
+
const recordsAdded = (_b = (_a = action.payload) === null || _a === void 0 ? void 0 : _a.records) === null || _b === void 0 ? void 0 : _b.filter(r => { var _a; return (_a = r.__old__id__) === null || _a === void 0 ? void 0 : _a.startsWith('NEW_'); });
|
|
17
|
+
const recordsUpdated = (_d = (_c = action.payload) === null || _c === void 0 ? void 0 : _c.records) === null || _d === void 0 ? void 0 : _d.filter(r => { var _a; return !((_a = r.__old__id__) === null || _a === void 0 ? void 0 : _a.startsWith('NEW_')); });
|
|
18
|
+
if (recordsAdded.length > 0)
|
|
19
|
+
this._gridController.addRows(recordsAdded);
|
|
20
|
+
if (recordsUpdated.length > 0)
|
|
21
|
+
this._gridController.updateRows(recordsUpdated);
|
|
22
|
+
break;
|
|
23
|
+
case Action.EDITION_CANCELED:
|
|
24
|
+
this.updateValues();
|
|
17
25
|
break;
|
|
18
26
|
case Action.SELECTION_CHANGED:
|
|
19
27
|
const { selection } = action.payload;
|
|
@@ -33,6 +41,11 @@ export default class DataUnitBridge {
|
|
|
33
41
|
this._dataUnit = dataUnit;
|
|
34
42
|
this._dataUnit.subscribe(this.processAction);
|
|
35
43
|
}
|
|
44
|
+
updateValues() {
|
|
45
|
+
this._dataUnit.getSelectedRecords().forEach((record) => {
|
|
46
|
+
this._gridController.changeValues(record, [record.__record__id__]);
|
|
47
|
+
});
|
|
48
|
+
}
|
|
36
49
|
buildColumnDefs() {
|
|
37
50
|
const columnDefs = [];
|
|
38
51
|
if (this._dataUnit.metadata) {
|
|
@@ -120,11 +120,28 @@ export default class AgGridController {
|
|
|
120
120
|
}
|
|
121
121
|
this._gridOptions.api.setRowData(data);
|
|
122
122
|
}
|
|
123
|
-
addRows() {
|
|
123
|
+
addRows(rows) {
|
|
124
124
|
if (this._grid === undefined) {
|
|
125
125
|
throw new Error("Erro interno: Grid ainda não inicializado.");
|
|
126
126
|
}
|
|
127
|
-
|
|
127
|
+
if (rows.length > 0) {
|
|
128
|
+
this._gridOptions.api.applyServerSideTransaction({
|
|
129
|
+
addIndex: 0,
|
|
130
|
+
add: rows
|
|
131
|
+
});
|
|
132
|
+
this.syncSelection();
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
updateRows(rows) {
|
|
136
|
+
if (this._grid === undefined) {
|
|
137
|
+
throw new Error("Erro interno: Grid ainda não inicializado.");
|
|
138
|
+
}
|
|
139
|
+
if (rows.length > 0) {
|
|
140
|
+
rows.forEach(row => {
|
|
141
|
+
this.changeValues(row, [row[this._idAttribName]]);
|
|
142
|
+
});
|
|
143
|
+
this.syncSelection();
|
|
144
|
+
}
|
|
128
145
|
}
|
|
129
146
|
selectRows(rowIds) {
|
|
130
147
|
if (this._grid === undefined) {
|
|
@@ -112454,11 +112454,28 @@ class AgGridController {
|
|
|
112454
112454
|
}
|
|
112455
112455
|
this._gridOptions.api.setRowData(data);
|
|
112456
112456
|
}
|
|
112457
|
-
addRows() {
|
|
112457
|
+
addRows(rows) {
|
|
112458
112458
|
if (this._grid === undefined) {
|
|
112459
112459
|
throw new Error("Erro interno: Grid ainda não inicializado.");
|
|
112460
112460
|
}
|
|
112461
|
-
|
|
112461
|
+
if (rows.length > 0) {
|
|
112462
|
+
this._gridOptions.api.applyServerSideTransaction({
|
|
112463
|
+
addIndex: 0,
|
|
112464
|
+
add: rows
|
|
112465
|
+
});
|
|
112466
|
+
this.syncSelection();
|
|
112467
|
+
}
|
|
112468
|
+
}
|
|
112469
|
+
updateRows(rows) {
|
|
112470
|
+
if (this._grid === undefined) {
|
|
112471
|
+
throw new Error("Erro interno: Grid ainda não inicializado.");
|
|
112472
|
+
}
|
|
112473
|
+
if (rows.length > 0) {
|
|
112474
|
+
rows.forEach(row => {
|
|
112475
|
+
this.changeValues(row, [row[this._idAttribName]]);
|
|
112476
|
+
});
|
|
112477
|
+
this.syncSelection();
|
|
112478
|
+
}
|
|
112462
112479
|
}
|
|
112463
112480
|
selectRows(rowIds) {
|
|
112464
112481
|
if (this._grid === undefined) {
|
|
@@ -112845,6 +112862,7 @@ class DataUnitBridge {
|
|
|
112845
112862
|
constructor(gridController, dataUnit) {
|
|
112846
112863
|
this.RECORD_ARCHIVE = "__RECORD_ARCHIVE__";
|
|
112847
112864
|
this.processAction = (action) => {
|
|
112865
|
+
var _a, _b, _c, _d;
|
|
112848
112866
|
switch (action.type) {
|
|
112849
112867
|
case Action.METADATA_LOADED:
|
|
112850
112868
|
this._gridController.setColumnsDef(this.buildColumnDefs(), true);
|
|
@@ -112853,9 +112871,16 @@ class DataUnitBridge {
|
|
|
112853
112871
|
const { records } = action.payload;
|
|
112854
112872
|
this._gridController.removeRows(records);
|
|
112855
112873
|
break;
|
|
112856
|
-
case Action.EDITION_CANCELED:
|
|
112857
112874
|
case Action.DATA_SAVED:
|
|
112858
|
-
|
|
112875
|
+
const recordsAdded = (_b = (_a = action.payload) === null || _a === void 0 ? void 0 : _a.records) === null || _b === void 0 ? void 0 : _b.filter(r => { var _a; return (_a = r.__old__id__) === null || _a === void 0 ? void 0 : _a.startsWith('NEW_'); });
|
|
112876
|
+
const recordsUpdated = (_d = (_c = action.payload) === null || _c === void 0 ? void 0 : _c.records) === null || _d === void 0 ? void 0 : _d.filter(r => { var _a; return !((_a = r.__old__id__) === null || _a === void 0 ? void 0 : _a.startsWith('NEW_')); });
|
|
112877
|
+
if (recordsAdded.length > 0)
|
|
112878
|
+
this._gridController.addRows(recordsAdded);
|
|
112879
|
+
if (recordsUpdated.length > 0)
|
|
112880
|
+
this._gridController.updateRows(recordsUpdated);
|
|
112881
|
+
break;
|
|
112882
|
+
case Action.EDITION_CANCELED:
|
|
112883
|
+
this.updateValues();
|
|
112859
112884
|
break;
|
|
112860
112885
|
case Action.SELECTION_CHANGED:
|
|
112861
112886
|
const { selection } = action.payload;
|
|
@@ -112875,6 +112900,11 @@ class DataUnitBridge {
|
|
|
112875
112900
|
this._dataUnit = dataUnit;
|
|
112876
112901
|
this._dataUnit.subscribe(this.processAction);
|
|
112877
112902
|
}
|
|
112903
|
+
updateValues() {
|
|
112904
|
+
this._dataUnit.getSelectedRecords().forEach((record) => {
|
|
112905
|
+
this._gridController.changeValues(record, [record.__record__id__]);
|
|
112906
|
+
});
|
|
112907
|
+
}
|
|
112878
112908
|
buildColumnDefs() {
|
|
112879
112909
|
const columnDefs = [];
|
|
112880
112910
|
if (this._dataUnit.metadata) {
|
|
@@ -110175,11 +110175,28 @@ class AgGridController {
|
|
|
110175
110175
|
}
|
|
110176
110176
|
this._gridOptions.api.setRowData(data);
|
|
110177
110177
|
}
|
|
110178
|
-
addRows() {
|
|
110178
|
+
addRows(rows) {
|
|
110179
110179
|
if (this._grid === undefined) {
|
|
110180
110180
|
throw new Error("Erro interno: Grid ainda não inicializado.");
|
|
110181
110181
|
}
|
|
110182
|
-
|
|
110182
|
+
if (rows.length > 0) {
|
|
110183
|
+
this._gridOptions.api.applyServerSideTransaction({
|
|
110184
|
+
addIndex: 0,
|
|
110185
|
+
add: rows
|
|
110186
|
+
});
|
|
110187
|
+
this.syncSelection();
|
|
110188
|
+
}
|
|
110189
|
+
}
|
|
110190
|
+
updateRows(rows) {
|
|
110191
|
+
if (this._grid === undefined) {
|
|
110192
|
+
throw new Error("Erro interno: Grid ainda não inicializado.");
|
|
110193
|
+
}
|
|
110194
|
+
if (rows.length > 0) {
|
|
110195
|
+
rows.forEach(row => {
|
|
110196
|
+
this.changeValues(row, [row[this._idAttribName]]);
|
|
110197
|
+
});
|
|
110198
|
+
this.syncSelection();
|
|
110199
|
+
}
|
|
110183
110200
|
}
|
|
110184
110201
|
selectRows(rowIds) {
|
|
110185
110202
|
if (this._grid === undefined) {
|
|
@@ -110566,6 +110583,7 @@ class DataUnitBridge {
|
|
|
110566
110583
|
constructor(gridController, dataUnit) {
|
|
110567
110584
|
this.RECORD_ARCHIVE = "__RECORD_ARCHIVE__";
|
|
110568
110585
|
this.processAction = (action) => {
|
|
110586
|
+
var _a, _b, _c, _d;
|
|
110569
110587
|
switch (action.type) {
|
|
110570
110588
|
case Action.METADATA_LOADED:
|
|
110571
110589
|
this._gridController.setColumnsDef(this.buildColumnDefs(), true);
|
|
@@ -110574,9 +110592,16 @@ class DataUnitBridge {
|
|
|
110574
110592
|
const { records } = action.payload;
|
|
110575
110593
|
this._gridController.removeRows(records);
|
|
110576
110594
|
break;
|
|
110577
|
-
case Action.EDITION_CANCELED:
|
|
110578
110595
|
case Action.DATA_SAVED:
|
|
110579
|
-
|
|
110596
|
+
const recordsAdded = (_b = (_a = action.payload) === null || _a === void 0 ? void 0 : _a.records) === null || _b === void 0 ? void 0 : _b.filter(r => { var _a; return (_a = r.__old__id__) === null || _a === void 0 ? void 0 : _a.startsWith('NEW_'); });
|
|
110597
|
+
const recordsUpdated = (_d = (_c = action.payload) === null || _c === void 0 ? void 0 : _c.records) === null || _d === void 0 ? void 0 : _d.filter(r => { var _a; return !((_a = r.__old__id__) === null || _a === void 0 ? void 0 : _a.startsWith('NEW_')); });
|
|
110598
|
+
if (recordsAdded.length > 0)
|
|
110599
|
+
this._gridController.addRows(recordsAdded);
|
|
110600
|
+
if (recordsUpdated.length > 0)
|
|
110601
|
+
this._gridController.updateRows(recordsUpdated);
|
|
110602
|
+
break;
|
|
110603
|
+
case Action.EDITION_CANCELED:
|
|
110604
|
+
this.updateValues();
|
|
110580
110605
|
break;
|
|
110581
110606
|
case Action.SELECTION_CHANGED:
|
|
110582
110607
|
const { selection } = action.payload;
|
|
@@ -110596,6 +110621,11 @@ class DataUnitBridge {
|
|
|
110596
110621
|
this._dataUnit = dataUnit;
|
|
110597
110622
|
this._dataUnit.subscribe(this.processAction);
|
|
110598
110623
|
}
|
|
110624
|
+
updateValues() {
|
|
110625
|
+
this._dataUnit.getSelectedRecords().forEach((record) => {
|
|
110626
|
+
this._gridController.changeValues(record, [record.__record__id__]);
|
|
110627
|
+
});
|
|
110628
|
+
}
|
|
110599
110629
|
buildColumnDefs() {
|
|
110600
110630
|
const columnDefs = [];
|
|
110601
110631
|
if (this._dataUnit.metadata) {
|
package/dist/ezui/ezui.esm.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as e,b as s}from"./p-139ed2f6.js";(()=>{const s=import.meta.url,o={};return""!==s&&(o.resourcesUrl=new URL(".",s).href),e(o)})().then((e=>s([["p-4c3cd534",[[0,"test-du",{isDirty:[32]}]]],["p-fc9b9487",[[1,"ez-filter-input",{label:[1],value:[1537],enabled:[4],loading:[516],errorMessage:[1537,"error-message"],restrict:[1],mode:[513],setFocus:[64],setBlur:[64]}]]],["p-2c4372a4",[[0,"ez-application"]]],["p-5a05f1ea",[[1,"ez-card-item",{item:[16]}]]],["p-6287fc90",[[1,"ez-loading-bar",{_showLoading:[32],hide:[64],show:[64]}]]],["p-8be1a4d6",[[1,"ez-popover",{autoClose:[516,"auto-close"],top:[1537],left:[1537],bottom:[1537],right:[1537],boxWidth:[513,"box-width"],opened:[1540],innerElement:[1537,"inner-element"],updatePosition:[64],show:[64],hide:[64]}]]],["p-94ed1ae6",[[1,"ez-toast",{message:[1025],fadeTime:[1026,"fade-time"],useIcon:[1028,"use-icon"],canClose:[1028,"can-close"],show:[64]}]]],["p-4f2e5cf4",[[0,"ez-view-stack",{show:[64],getSelectedIndex:[64]}]]],["p-c2de757f",[[1,"ez-modal",{modalSize:[1,"modal-size"],align:[1],opened:[1028],closeEsc:[4,"close-esc"],closeOutsideClick:[4,"close-outside-click"]}]]],["p-024df41e",[[1,"ez-collapsible-box",{value:[1540],label:[513],headerSize:[513,"header-size"],iconPlacement:[513,"icon-placement"],stretchTitle:[516,"stretch-title"],showHide:[64]}]]],["p-ecee9d8d",[[1,"ez-list",{dataSource:[1040],useGroups:[1540,"use-groups"],ezDraggable:[1028,"ez-draggable"],ezSelectable:[1028,"ez-selectable"],itemSlotBuilder:[1040],_listItems:[32],_listGroupItems:[32],clearHistory:[64],scrollToTop:[64],setSelection:[64],getSelection:[64],getList:[64]}]]],["p-1941aef7",[[1,"ez-button",{label:[513],enabled:[516],mode:[513],image:[513],iconName:[513,"icon-name"],size:[513],setFocus:[64],setBlur:[64]}]]],["p-
|
|
1
|
+
import{p as e,b as s}from"./p-139ed2f6.js";(()=>{const s=import.meta.url,o={};return""!==s&&(o.resourcesUrl=new URL(".",s).href),e(o)})().then((e=>s([["p-4c3cd534",[[0,"test-du",{isDirty:[32]}]]],["p-fc9b9487",[[1,"ez-filter-input",{label:[1],value:[1537],enabled:[4],loading:[516],errorMessage:[1537,"error-message"],restrict:[1],mode:[513],setFocus:[64],setBlur:[64]}]]],["p-2c4372a4",[[0,"ez-application"]]],["p-5a05f1ea",[[1,"ez-card-item",{item:[16]}]]],["p-6287fc90",[[1,"ez-loading-bar",{_showLoading:[32],hide:[64],show:[64]}]]],["p-8be1a4d6",[[1,"ez-popover",{autoClose:[516,"auto-close"],top:[1537],left:[1537],bottom:[1537],right:[1537],boxWidth:[513,"box-width"],opened:[1540],innerElement:[1537,"inner-element"],updatePosition:[64],show:[64],hide:[64]}]]],["p-94ed1ae6",[[1,"ez-toast",{message:[1025],fadeTime:[1026,"fade-time"],useIcon:[1028,"use-icon"],canClose:[1028,"can-close"],show:[64]}]]],["p-4f2e5cf4",[[0,"ez-view-stack",{show:[64],getSelectedIndex:[64]}]]],["p-c2de757f",[[1,"ez-modal",{modalSize:[1,"modal-size"],align:[1],opened:[1028],closeEsc:[4,"close-esc"],closeOutsideClick:[4,"close-outside-click"]}]]],["p-024df41e",[[1,"ez-collapsible-box",{value:[1540],label:[513],headerSize:[513,"header-size"],iconPlacement:[513,"icon-placement"],stretchTitle:[516,"stretch-title"],showHide:[64]}]]],["p-ecee9d8d",[[1,"ez-list",{dataSource:[1040],useGroups:[1540,"use-groups"],ezDraggable:[1028,"ez-draggable"],ezSelectable:[1028,"ez-selectable"],itemSlotBuilder:[1040],_listItems:[32],_listGroupItems:[32],clearHistory:[64],scrollToTop:[64],setSelection:[64],getSelection:[64],getList:[64]}]]],["p-1941aef7",[[1,"ez-button",{label:[513],enabled:[516],mode:[513],image:[513],iconName:[513,"icon-name"],size:[513],setFocus:[64],setBlur:[64]}]]],["p-addedd7d",[[6,"ez-grid",{multipleSelection:[4,"multiple-selection"],config:[1040],pageSize:[2,"page-size"],serverUrl:[1,"server-url"],dataUnit:[16],_navigationHasPrevious:[32],_navigationHasNext:[32],_navigationFirstRow:[32],_navigationLastRow:[32],_navigationTotalRows:[32],_popUpGridConfig:[32],setColumnsDef:[64],addColumnMenuItem:[64],setColumnsState:[64],setData:[64],getSelection:[64],getColumnsState:[64],getColumns:[64],refresh:[64],quickFilter:[64],nextPage:[64],previousPage:[64],hasNextPage:[64],hasPreviousPage:[64],isLastOfPage:[64],isFirstOfPage:[64],nextRecord:[64],previousRecord:[64],hasNextRecord:[64],hasPreviousRecord:[64],openGridConfig:[64]}]]],["p-ec7b7e26",[[1,"ez-dialog",{confirm:[1028],critical:[1028],message:[1025],opened:[1540],personalizedIconPath:[1025,"personalized-icon-path"],ezTitle:[1025,"ez-title"],handleButtonClick:[64],show:[64]}]]],["p-dd723a09",[[1,"ez-chip",{label:[513],enabled:[516],removePosition:[513,"remove-position"],mode:[513],value:[1540],setFocus:[64],setBlur:[64]}]]],["p-294de17e",[[1,"ez-popup",{size:[1],opened:[1540],useHeader:[1540,"use-header"],ezTitle:[1,"ez-title"]}]]],["p-140f7085",[[1,"ez-text-input",{label:[513],value:[1537],enabled:[516],loading:[516],errorMessage:[1537,"error-message"],mask:[1],canShowError:[516,"can-show-error"],restrict:[1],mode:[513],slaveMode:[516,"slave-mode"],setFocus:[64],setBlur:[64]}]]],["p-727a39e5",[[1,"select-box",{selectedOption:[1,"selected-option"]}]]],["p-905688e6",[[2,"grid-config",{selectedTab:[1025,"selected-tab"],columns:[1040],config:[1040]}]]],["p-6d4b1628",[[1,"ez-search",{value:[1537],label:[1537],enabled:[1540],errorMessage:[1537,"error-message"],optionLoader:[16],showSelectedValue:[4,"show-selected-value"],showOptionValue:[4,"show-option-value"],suppressEmptyOption:[4,"suppress-empty-option"],mode:[513],setFocus:[64],setBlur:[64]}]]],["p-c246e251",[[1,"ez-calendar",{value:[1040],floating:[516],time:[516],showSeconds:[516,"show-seconds"],show:[64],fitVertical:[64],hide:[64]}]]],["p-49fdfa4b",[[1,"ez-date-input",{label:[513],value:[1040],enabled:[516],errorMessage:[1537,"error-message"],mode:[513],setFocus:[64],setBlur:[64]}]]],["p-ec21ecce",[[1,"ez-date-time-input",{label:[513],value:[1040],enabled:[516],errorMessage:[1537,"error-message"],showSeconds:[516,"show-seconds"],mode:[513],setFocus:[64],setBlur:[64]}]]],["p-4fdceb7d",[[1,"ez-time-input",{label:[513],viewValue:[1537,"view-value"],value:[1026],enabled:[516],errorMessage:[1537,"error-message"],showSeconds:[516,"show-seconds"],mode:[513],setFocus:[64],setBlur:[64]}]]],["p-24e98dc1",[[1,"ez-number-input",{label:[1],value:[1538],enabled:[4],errorMessage:[1537,"error-message"],precision:[2],prettyPrecision:[2,"pretty-precision"],mode:[513],setFocus:[64],setBlur:[64]}]]],["p-b524dfca",[[1,"ez-text-area",{label:[513],value:[1537],enabled:[516],loading:[516],errorMessage:[1537,"error-message"],rows:[1538],canShowError:[516,"can-show-error"],mode:[513],setFocus:[64],setBlur:[64]}]]],["p-da156da3",[[1,"ez-upload",{label:[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]}]]],["p-b65e22a1",[[1,"ez-check",{label:[513],value:[1540],enabled:[1540],mode:[513],getMode:[64],setFocus:[64]}]]],["p-2b017e4c",[[1,"ez-tabselector",{selectedIndex:[1538,"selected-index"],selectedTab:[1537,"selected-tab"],tabs:[1]}]]],["p-317250bc",[[1,"ez-icon",{size:[513],href:[513],iconName:[513,"icon-name"]}]]],["p-2f34453f",[[1,"ez-combo-box",{value:[1537],label:[513],enabled:[516],options:[1040],errorMessage:[1537,"error-message"],searchMode:[4,"search-mode"],showSelectedValue:[4,"show-selected-value"],showOptionValue:[4,"show-option-value"],suppressSearch:[4,"suppress-search"],optionLoader:[16],suppressEmptyOption:[4,"suppress-empty-option"],canShowError:[516,"can-show-error"],mode:[513],_preSelection:[32],_visibleOptions:[32],_startLoading:[32],_showLoading:[32],setFocus:[64],setBlur:[64]}]]],["p-8f4fac31",[[0,"ez-form",{dataUnit:[1040],config:[16],submit:[64],cancel:[64],validate:[64]}]]]],e)));
|