@sankhyalabs/ezui 1.1.153 → 1.1.154

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.
@@ -110179,12 +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
- this._gridOptions.api.refreshServerSideStore({});
110187
- this.syncSelection();
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
+ }
110188
110204
  }
110189
110205
  selectRows(rowIds) {
110190
110206
  if (this._grid === undefined) {
@@ -110571,6 +110587,7 @@ class DataUnitBridge {
110571
110587
  constructor(gridController, dataUnit) {
110572
110588
  this.RECORD_ARCHIVE = "__RECORD_ARCHIVE__";
110573
110589
  this.processAction = (action) => {
110590
+ var _a, _b, _c, _d;
110574
110591
  switch (action.type) {
110575
110592
  case core.Action.METADATA_LOADED:
110576
110593
  this._gridController.setColumnsDef(this.buildColumnDefs(), true);
@@ -110580,7 +110597,12 @@ class DataUnitBridge {
110580
110597
  this._gridController.removeRows(records);
110581
110598
  break;
110582
110599
  case core.Action.DATA_SAVED:
110583
- this._gridController.addRows();
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);
110584
110606
  break;
110585
110607
  case core.Action.EDITION_CANCELED:
110586
110608
  this.updateValues();
@@ -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);
@@ -12,7 +13,12 @@ export default class DataUnitBridge {
12
13
  this._gridController.removeRows(records);
13
14
  break;
14
15
  case Action.DATA_SAVED:
15
- this._gridController.addRows();
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);
16
22
  break;
17
23
  case Action.EDITION_CANCELED:
18
24
  this.updateValues();
@@ -120,12 +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
- this._gridOptions.api.refreshServerSideStore({});
128
- this.syncSelection();
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
+ }
129
145
  }
130
146
  selectRows(rowIds) {
131
147
  if (this._grid === undefined) {
@@ -112454,12 +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
- this._gridOptions.api.refreshServerSideStore({});
112462
- this.syncSelection();
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
+ }
112463
112479
  }
112464
112480
  selectRows(rowIds) {
112465
112481
  if (this._grid === undefined) {
@@ -112846,6 +112862,7 @@ class DataUnitBridge {
112846
112862
  constructor(gridController, dataUnit) {
112847
112863
  this.RECORD_ARCHIVE = "__RECORD_ARCHIVE__";
112848
112864
  this.processAction = (action) => {
112865
+ var _a, _b, _c, _d;
112849
112866
  switch (action.type) {
112850
112867
  case Action.METADATA_LOADED:
112851
112868
  this._gridController.setColumnsDef(this.buildColumnDefs(), true);
@@ -112855,7 +112872,12 @@ class DataUnitBridge {
112855
112872
  this._gridController.removeRows(records);
112856
112873
  break;
112857
112874
  case Action.DATA_SAVED:
112858
- this._gridController.addRows();
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);
112859
112881
  break;
112860
112882
  case Action.EDITION_CANCELED:
112861
112883
  this.updateValues();
@@ -110175,12 +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
- this._gridOptions.api.refreshServerSideStore({});
110183
- this.syncSelection();
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
+ }
110184
110200
  }
110185
110201
  selectRows(rowIds) {
110186
110202
  if (this._grid === undefined) {
@@ -110567,6 +110583,7 @@ class DataUnitBridge {
110567
110583
  constructor(gridController, dataUnit) {
110568
110584
  this.RECORD_ARCHIVE = "__RECORD_ARCHIVE__";
110569
110585
  this.processAction = (action) => {
110586
+ var _a, _b, _c, _d;
110570
110587
  switch (action.type) {
110571
110588
  case Action.METADATA_LOADED:
110572
110589
  this._gridController.setColumnsDef(this.buildColumnDefs(), true);
@@ -110576,7 +110593,12 @@ class DataUnitBridge {
110576
110593
  this._gridController.removeRows(records);
110577
110594
  break;
110578
110595
  case Action.DATA_SAVED:
110579
- this._gridController.addRows();
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);
110580
110602
  break;
110581
110603
  case Action.EDITION_CANCELED:
110582
110604
  this.updateValues();
@@ -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-0fbf10c0",[[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)));
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)));