@sankhyalabs/ezui 4.2.0 → 4.2.1

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.
@@ -118957,7 +118957,7 @@ class DataSource {
118957
118957
  }
118958
118958
  updateSelection() {
118959
118959
  var _a;
118960
- const selection = (_a = this._dataUnit) === null || _a === void 0 ? void 0 : _a.getAllSelection();
118960
+ const selection = (_a = this._dataUnit) === null || _a === void 0 ? void 0 : _a.getSelection();
118961
118961
  if ((selection === null || selection === void 0 ? void 0 : selection.length) > 0) {
118962
118962
  this._controller.selectRows(selection);
118963
118963
  }
@@ -119165,7 +119165,7 @@ class AgGridController {
119165
119165
  else {
119166
119166
  this._grid = new Grid(container, this._gridOptions);
119167
119167
  }
119168
- const selection = (_a = this._dataUnit) === null || _a === void 0 ? void 0 : _a.getAllSelection();
119168
+ const selection = (_a = this._dataUnit) === null || _a === void 0 ? void 0 : _a.getSelection();
119169
119169
  if (selection) {
119170
119170
  this.selectRows(selection);
119171
119171
  }
@@ -119249,7 +119249,7 @@ class AgGridController {
119249
119249
  if (records && records.length === 0) {
119250
119250
  return false;
119251
119251
  }
119252
- const allSelection = this._dataUnit.getAllSelection();
119252
+ const allSelection = this._dataUnit.getSelection();
119253
119253
  if (allSelection == undefined || allSelection.length === 0) {
119254
119254
  return false;
119255
119255
  }
@@ -119279,14 +119279,14 @@ class AgGridController {
119279
119279
  if (this._dataUnit == undefined) {
119280
119280
  return;
119281
119281
  }
119282
- let allSelection = this._dataUnit.getAllSelection();
119282
+ let allSelection = this._dataUnit.getSelection();
119283
119283
  if (allSelection === null || allSelection === void 0 ? void 0 : allSelection.some((sel) => sel.__record__id__ === constants.ALL_RECORD)) {
119284
119284
  await this._dataUnit.clearSelection();
119285
119285
  }
119286
119286
  let updateSelection = [];
119287
119287
  const records = this._dataUnit.records;
119288
119288
  const selectedRecords = this._dataUnit.getSelectedRecords();
119289
- allSelection = this._dataUnit.getAllSelection();
119289
+ allSelection = this._dataUnit.getSelection();
119290
119290
  if (selectAll && selectedRecords.length < records.length) {
119291
119291
  updateSelection = records;
119292
119292
  allSelection.forEach((selectedRecord) => {
@@ -119823,7 +119823,7 @@ const EzGrid = class {
119823
119823
  }
119824
119824
  isAllRecordSetted() {
119825
119825
  var _a;
119826
- const allSelection = (_a = this.dataUnit) === null || _a === void 0 ? void 0 : _a.getAllSelection();
119826
+ const allSelection = (_a = this.dataUnit) === null || _a === void 0 ? void 0 : _a.getSelection();
119827
119827
  return allSelection === null || allSelection === void 0 ? void 0 : allSelection.some((selectedRecord) => {
119828
119828
  return selectedRecord.__record__id__ === constants.ALL_RECORD;
119829
119829
  });
@@ -119851,7 +119851,7 @@ const EzGrid = class {
119851
119851
  }
119852
119852
  controlSelectionCounter() {
119853
119853
  var _a, _b;
119854
- const allSelection = (_a = this.dataUnit) === null || _a === void 0 ? void 0 : _a.getAllSelection();
119854
+ const allSelection = (_a = this.dataUnit) === null || _a === void 0 ? void 0 : _a.getSelection();
119855
119855
  const counter = (_b = allSelection === null || allSelection === void 0 ? void 0 : allSelection.length) !== null && _b !== void 0 ? _b : 0;
119856
119856
  if (this.isAllRecordSetted()) {
119857
119857
  this.setAutoSelectAll();
@@ -20,7 +20,7 @@ export default class DataUnitBridge {
20
20
  break;
21
21
  case Action.SELECTION_REMOVED:
22
22
  const { unselection } = action.payload;
23
- const filteredRecords = this._dataUnit.getAllSelection()
23
+ const filteredRecords = this._dataUnit.getSelection()
24
24
  .filter((selectedRecord) => {
25
25
  return !unselection.some((unselectedRecord) => {
26
26
  return unselectedRecord.__record__id__ === selectedRecord.__record__id__;
@@ -35,7 +35,7 @@ export default class DataUnitBridge {
35
35
  break;
36
36
  case Action.NEXT_SELECTED:
37
37
  case Action.PREVIOUS_SELECTED:
38
- this._gridController.selectRows(this._dataUnit.getAllSelection());
38
+ this._gridController.selectRows(this._dataUnit.getSelection());
39
39
  break;
40
40
  case Action.DATA_CHANGED:
41
41
  const changes = Object.assign({}, action.payload);
@@ -88,7 +88,7 @@ export default class AgGridController {
88
88
  else {
89
89
  this._grid = new Grid(container, this._gridOptions);
90
90
  }
91
- const selection = (_a = this._dataUnit) === null || _a === void 0 ? void 0 : _a.getAllSelection();
91
+ const selection = (_a = this._dataUnit) === null || _a === void 0 ? void 0 : _a.getSelection();
92
92
  if (selection) {
93
93
  this.selectRows(selection);
94
94
  }
@@ -172,7 +172,7 @@ export default class AgGridController {
172
172
  if (records && records.length === 0) {
173
173
  return false;
174
174
  }
175
- const allSelection = this._dataUnit.getAllSelection();
175
+ const allSelection = this._dataUnit.getSelection();
176
176
  if (allSelection == undefined || allSelection.length === 0) {
177
177
  return false;
178
178
  }
@@ -202,14 +202,14 @@ export default class AgGridController {
202
202
  if (this._dataUnit == undefined) {
203
203
  return;
204
204
  }
205
- let allSelection = this._dataUnit.getAllSelection();
205
+ let allSelection = this._dataUnit.getSelection();
206
206
  if (allSelection === null || allSelection === void 0 ? void 0 : allSelection.some((sel) => sel.__record__id__ === ALL_RECORD)) {
207
207
  await this._dataUnit.clearSelection();
208
208
  }
209
209
  let updateSelection = [];
210
210
  const records = this._dataUnit.records;
211
211
  const selectedRecords = this._dataUnit.getSelectedRecords();
212
- allSelection = this._dataUnit.getAllSelection();
212
+ allSelection = this._dataUnit.getSelection();
213
213
  if (selectAll && selectedRecords.length < records.length) {
214
214
  updateSelection = records;
215
215
  allSelection.forEach((selectedRecord) => {
@@ -40,7 +40,7 @@ export default class DataSource {
40
40
  }
41
41
  updateSelection() {
42
42
  var _a;
43
- const selection = (_a = this._dataUnit) === null || _a === void 0 ? void 0 : _a.getAllSelection();
43
+ const selection = (_a = this._dataUnit) === null || _a === void 0 ? void 0 : _a.getSelection();
44
44
  if ((selection === null || selection === void 0 ? void 0 : selection.length) > 0) {
45
45
  this._controller.selectRows(selection);
46
46
  }
@@ -100,7 +100,7 @@ export class EzGrid {
100
100
  }
101
101
  isAllRecordSetted() {
102
102
  var _a;
103
- const allSelection = (_a = this.dataUnit) === null || _a === void 0 ? void 0 : _a.getAllSelection();
103
+ const allSelection = (_a = this.dataUnit) === null || _a === void 0 ? void 0 : _a.getSelection();
104
104
  return allSelection === null || allSelection === void 0 ? void 0 : allSelection.some((selectedRecord) => {
105
105
  return selectedRecord.__record__id__ === ALL_RECORD;
106
106
  });
@@ -128,7 +128,7 @@ export class EzGrid {
128
128
  }
129
129
  controlSelectionCounter() {
130
130
  var _a, _b;
131
- const allSelection = (_a = this.dataUnit) === null || _a === void 0 ? void 0 : _a.getAllSelection();
131
+ const allSelection = (_a = this.dataUnit) === null || _a === void 0 ? void 0 : _a.getSelection();
132
132
  const counter = (_b = allSelection === null || allSelection === void 0 ? void 0 : allSelection.length) !== null && _b !== void 0 ? _b : 0;
133
133
  if (this.isAllRecordSetted()) {
134
134
  this.setAutoSelectAll();
@@ -123165,7 +123165,7 @@ class DataSource {
123165
123165
  }
123166
123166
  updateSelection() {
123167
123167
  var _a;
123168
- const selection = (_a = this._dataUnit) === null || _a === void 0 ? void 0 : _a.getAllSelection();
123168
+ const selection = (_a = this._dataUnit) === null || _a === void 0 ? void 0 : _a.getSelection();
123169
123169
  if ((selection === null || selection === void 0 ? void 0 : selection.length) > 0) {
123170
123170
  this._controller.selectRows(selection);
123171
123171
  }
@@ -123373,7 +123373,7 @@ class AgGridController {
123373
123373
  else {
123374
123374
  this._grid = new Grid(container, this._gridOptions);
123375
123375
  }
123376
- const selection = (_a = this._dataUnit) === null || _a === void 0 ? void 0 : _a.getAllSelection();
123376
+ const selection = (_a = this._dataUnit) === null || _a === void 0 ? void 0 : _a.getSelection();
123377
123377
  if (selection) {
123378
123378
  this.selectRows(selection);
123379
123379
  }
@@ -123457,7 +123457,7 @@ class AgGridController {
123457
123457
  if (records && records.length === 0) {
123458
123458
  return false;
123459
123459
  }
123460
- const allSelection = this._dataUnit.getAllSelection();
123460
+ const allSelection = this._dataUnit.getSelection();
123461
123461
  if (allSelection == undefined || allSelection.length === 0) {
123462
123462
  return false;
123463
123463
  }
@@ -123487,14 +123487,14 @@ class AgGridController {
123487
123487
  if (this._dataUnit == undefined) {
123488
123488
  return;
123489
123489
  }
123490
- let allSelection = this._dataUnit.getAllSelection();
123490
+ let allSelection = this._dataUnit.getSelection();
123491
123491
  if (allSelection === null || allSelection === void 0 ? void 0 : allSelection.some((sel) => sel.__record__id__ === ALL_RECORD)) {
123492
123492
  await this._dataUnit.clearSelection();
123493
123493
  }
123494
123494
  let updateSelection = [];
123495
123495
  const records = this._dataUnit.records;
123496
123496
  const selectedRecords = this._dataUnit.getSelectedRecords();
123497
- allSelection = this._dataUnit.getAllSelection();
123497
+ allSelection = this._dataUnit.getSelection();
123498
123498
  if (selectAll && selectedRecords.length < records.length) {
123499
123499
  updateSelection = records;
123500
123500
  allSelection.forEach((selectedRecord) => {
@@ -124032,7 +124032,7 @@ const EzGrid$1 = class extends HTMLElement$1 {
124032
124032
  }
124033
124033
  isAllRecordSetted() {
124034
124034
  var _a;
124035
- const allSelection = (_a = this.dataUnit) === null || _a === void 0 ? void 0 : _a.getAllSelection();
124035
+ const allSelection = (_a = this.dataUnit) === null || _a === void 0 ? void 0 : _a.getSelection();
124036
124036
  return allSelection === null || allSelection === void 0 ? void 0 : allSelection.some((selectedRecord) => {
124037
124037
  return selectedRecord.__record__id__ === ALL_RECORD;
124038
124038
  });
@@ -124060,7 +124060,7 @@ const EzGrid$1 = class extends HTMLElement$1 {
124060
124060
  }
124061
124061
  controlSelectionCounter() {
124062
124062
  var _a, _b;
124063
- const allSelection = (_a = this.dataUnit) === null || _a === void 0 ? void 0 : _a.getAllSelection();
124063
+ const allSelection = (_a = this.dataUnit) === null || _a === void 0 ? void 0 : _a.getSelection();
124064
124064
  const counter = (_b = allSelection === null || allSelection === void 0 ? void 0 : allSelection.length) !== null && _b !== void 0 ? _b : 0;
124065
124065
  if (this.isAllRecordSetted()) {
124066
124066
  this.setAutoSelectAll();
@@ -118953,7 +118953,7 @@ class DataSource {
118953
118953
  }
118954
118954
  updateSelection() {
118955
118955
  var _a;
118956
- const selection = (_a = this._dataUnit) === null || _a === void 0 ? void 0 : _a.getAllSelection();
118956
+ const selection = (_a = this._dataUnit) === null || _a === void 0 ? void 0 : _a.getSelection();
118957
118957
  if ((selection === null || selection === void 0 ? void 0 : selection.length) > 0) {
118958
118958
  this._controller.selectRows(selection);
118959
118959
  }
@@ -119161,7 +119161,7 @@ class AgGridController {
119161
119161
  else {
119162
119162
  this._grid = new Grid(container, this._gridOptions);
119163
119163
  }
119164
- const selection = (_a = this._dataUnit) === null || _a === void 0 ? void 0 : _a.getAllSelection();
119164
+ const selection = (_a = this._dataUnit) === null || _a === void 0 ? void 0 : _a.getSelection();
119165
119165
  if (selection) {
119166
119166
  this.selectRows(selection);
119167
119167
  }
@@ -119245,7 +119245,7 @@ class AgGridController {
119245
119245
  if (records && records.length === 0) {
119246
119246
  return false;
119247
119247
  }
119248
- const allSelection = this._dataUnit.getAllSelection();
119248
+ const allSelection = this._dataUnit.getSelection();
119249
119249
  if (allSelection == undefined || allSelection.length === 0) {
119250
119250
  return false;
119251
119251
  }
@@ -119275,14 +119275,14 @@ class AgGridController {
119275
119275
  if (this._dataUnit == undefined) {
119276
119276
  return;
119277
119277
  }
119278
- let allSelection = this._dataUnit.getAllSelection();
119278
+ let allSelection = this._dataUnit.getSelection();
119279
119279
  if (allSelection === null || allSelection === void 0 ? void 0 : allSelection.some((sel) => sel.__record__id__ === ALL_RECORD)) {
119280
119280
  await this._dataUnit.clearSelection();
119281
119281
  }
119282
119282
  let updateSelection = [];
119283
119283
  const records = this._dataUnit.records;
119284
119284
  const selectedRecords = this._dataUnit.getSelectedRecords();
119285
- allSelection = this._dataUnit.getAllSelection();
119285
+ allSelection = this._dataUnit.getSelection();
119286
119286
  if (selectAll && selectedRecords.length < records.length) {
119287
119287
  updateSelection = records;
119288
119288
  allSelection.forEach((selectedRecord) => {
@@ -119819,7 +119819,7 @@ const EzGrid = class {
119819
119819
  }
119820
119820
  isAllRecordSetted() {
119821
119821
  var _a;
119822
- const allSelection = (_a = this.dataUnit) === null || _a === void 0 ? void 0 : _a.getAllSelection();
119822
+ const allSelection = (_a = this.dataUnit) === null || _a === void 0 ? void 0 : _a.getSelection();
119823
119823
  return allSelection === null || allSelection === void 0 ? void 0 : allSelection.some((selectedRecord) => {
119824
119824
  return selectedRecord.__record__id__ === ALL_RECORD;
119825
119825
  });
@@ -119847,7 +119847,7 @@ const EzGrid = class {
119847
119847
  }
119848
119848
  controlSelectionCounter() {
119849
119849
  var _a, _b;
119850
- const allSelection = (_a = this.dataUnit) === null || _a === void 0 ? void 0 : _a.getAllSelection();
119850
+ const allSelection = (_a = this.dataUnit) === null || _a === void 0 ? void 0 : _a.getSelection();
119851
119851
  const counter = (_b = allSelection === null || allSelection === void 0 ? void 0 : allSelection.length) !== null && _b !== void 0 ? _b : 0;
119852
119852
  if (this.isAllRecordSetted()) {
119853
119853
  this.setAutoSelectAll();
@@ -1 +1 @@
1
- import{p as e,b as o}from"./p-7ffd12e7.js";export{s as setNonce}from"./p-7ffd12e7.js";(()=>{const o=import.meta.url,t={};return""!==o&&(t.resourcesUrl=new URL(".",o).href),e(t)})().then((e=>o([["p-e6f3d036",[[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],isOpened:[64]}]]],["p-9a1549c2",[[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]}]]],["p-fd87638e",[[1,"ez-dialog",{confirm:[1028],dialogType:[1025,"dialog-type"],message:[1025],opened:[1540],personalizedIconPath:[1025,"personalized-icon-path"],ezTitle:[1025,"ez-title"],show:[64]}]]],["p-8105c967",[[6,"ez-grid",{multipleSelection:[4,"multiple-selection"],config:[1040],serverUrl:[1,"server-url"],dataUnit:[16],statusResolver:[16],_paginationInfo:[32],_paginationChangedByKeyboard:[32],_showSelectionCounter:[32],_selectionCount:[32],_selectionPageCount:[32],setColumnsDef:[64],addColumnMenuItem:[64],setColumnsState:[64],setData:[64],getSelection:[64],getColumnsState:[64],getColumns:[64],quickFilter:[64]},[[0,"ezSelectionChange","onSelectionChange"]]]]],["p-7c8fb43e",[[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"]}]]],["p-6818dd0a",[[1,"ez-alert",{alertType:[513,"alert-type"]}]]],["p-06b3e801",[[1,"ez-chip",{label:[513],enabled:[516],removePosition:[513,"remove-position"],mode:[513],value:[1540],setFocus:[64],setBlur:[64]}]]],["p-9613fae6",[[1,"ez-file-item",{canRemove:[4,"can-remove"],fileName:[1,"file-name"],iconName:[1,"icon-name"],fileSize:[2,"file-size"],progress:[2]}]]],["p-ada6e6b0",[[0,"ez-application"]]],["p-07b99b94",[[1,"ez-card-item",{item:[16]}]]],["p-8d5ec02b",[[1,"ez-list",{dataSource:[1040],useGroups:[1540,"use-groups"],ezDraggable:[1028,"ez-draggable"],ezSelectable:[1028,"ez-selectable"],itemSlotBuilder:[1040],hoverFeedback:[1028,"hover-feedback"],_listItems:[32],_listGroupItems:[32],clearHistory:[64],scrollToTop:[64],setSelection:[64],getSelection:[64],getList:[64]}]]],["p-0c7e81fe",[[1,"ez-loading-bar",{_showLoading:[32],hide:[64],show:[64]}]]],["p-eceb9382",[[1,"ez-modal",{modalSize:[1,"modal-size"],align:[1],opened:[1028],closeEsc:[4,"close-esc"],closeOutsideClick:[4,"close-outside-click"]}]]],["p-62481744",[[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"],overlayType:[513,"overlay-type"],updatePosition:[64],show:[64],hide:[64]}]]],["p-600f1732",[[1,"ez-popup",{size:[1],opened:[1540],useHeader:[516,"use-header"],heightMode:[513,"height-mode"],ezTitle:[1,"ez-title"]}]]],["p-b941aeee",[[1,"ez-radio-button",{value:[1544],options:[1040],enabled:[516],label:[513],direction:[1537]}]]],["p-e85f1a6a",[[1,"ez-toast",{message:[1025],fadeTime:[1026,"fade-time"],useIcon:[1028,"use-icon"],canClose:[1028,"can-close"],show:[64]}]]],["p-b3c7b243",[[0,"ez-view-stack",{show:[64],getSelectedIndex:[64]}]]],["p-b7ea9791",[[2,"ez-form-view",{fields:[16],showUp:[64]}]]],["p-99d822cc",[[1,"ez-tabselector",{selectedIndex:[1538,"selected-index"],selectedTab:[1537,"selected-tab"],tabs:[1],_processedTabs:[32]}]]],["p-493e2af4",[[1,"ez-text-input",{label:[513],value:[1537],enabled:[516],errorMessage:[1537,"error-message"],mask:[1],canShowError:[516,"can-show-error"],restrict:[1],mode:[513],noBorder:[516,"no-border"],setFocus:[64],setBlur:[64],isInvalid:[64]}]]],["p-09271677",[[1,"ez-guide-navigator",{open:[1540],selectedId:[1537,"selected-id"],items:[16],tooltipResolver:[16],filterText:[32],disableItem:[64],enableItem:[64],updateItem:[64],getItem:[64],getCurrentPath:[64],selectGuide:[64],getParent:[64]}]]],["p-a67e056f",[[1,"ez-dropdown",{items:[1040],value:[1040],itemBuilder:[16]}]]],["p-bbccda3f",[[1,"ez-collapsible-box",{value:[1540],label:[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]}]]],["p-695facd0",[[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],isInvalid:[64]}]]],["p-4555df8f",[[1,"ez-date-input",{label:[513],value:[1040],enabled:[516],errorMessage:[1537,"error-message"],mode:[513],setFocus:[64],setBlur:[64],isInvalid:[64]}]]],["p-581df847",[[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],isInvalid:[64]}]]],["p-36f7ec68",[[1,"ez-time-input",{label:[513],value:[1026],enabled:[516],errorMessage:[1537,"error-message"],showSeconds:[516,"show-seconds"],mode:[513],setFocus:[64],setBlur:[64],isInvalid:[64]}]]],["p-86d29565",[[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],isInvalid:[64]}]]],["p-a3ce3710",[[1,"ez-check",{label:[513],value:[1540],enabled:[1540],indeterminate:[1540],mode:[513],getMode:[64],setFocus:[64]}]]],["p-c0184982",[[1,"ez-text-area",{label:[513],value:[1537],enabled:[516],errorMessage:[1537,"error-message"],rows:[1538],canShowError:[516,"can-show-error"],mode:[513],setFocus:[64],setBlur:[64],isInvalid:[64]}]]],["p-622c2d53",[[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-7147d43a",[[1,"ez-text-edit",{value:[1],styled:[16],_newValue:[32],applyFocusSelect:[64]}]]],["p-878646a0",[[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],_criteria:[32],setFocus:[64],setBlur:[64],isInvalid:[64]}]]],["p-6cf406ff",[[1,"ez-filter-input",{label:[1],value:[1537],enabled:[4],errorMessage:[1537,"error-message"],restrict:[1],mode:[513],asyncSearch:[516,"async-search"],setFocus:[64],setBlur:[64],isInvalid:[64],setValue:[64],endSearch:[64]}],[1,"ez-tree",{items:[1040],value:[1040],selectedId:[1537,"selected-id"],iconResolver:[16],tooltipResolver:[16],_tree:[32],_waintingForLoad:[32],selectItem:[64],openItem:[64],disableItem:[64],enableItem:[64],addChild:[64],applyFilter:[64],updateItem:[64],getItem:[64],getCurrentPath:[64],getParent:[64]},[[2,"keydown","onKeyDownListener"]]],[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"]]],[1,"ez-sidebar-button"]]],["p-a4b281ca",[[1,"ez-calendar",{value:[1040],floating:[516],time:[516],showSeconds:[516,"show-seconds"],show:[64],fitVertical:[64],hide:[64]}]]],["p-cc40fcb3",[[1,"ez-icon",{size:[513],href:[513],iconName:[513,"icon-name"]}]]],["p-36374dfe",[[1,"ez-button",{label:[513],enabled:[516],mode:[513],image:[513],iconName:[513,"icon-name"],size:[513],setFocus:[64],setBlur:[64]},[[2,"click","clickListener"]]]]],["p-1f841f3c",[[2,"ez-form",{dataUnit:[1040],config:[16],recordsValidator:[16],validate:[64]}]]]],e)));
1
+ import{p as e,b as o}from"./p-7ffd12e7.js";export{s as setNonce}from"./p-7ffd12e7.js";(()=>{const o=import.meta.url,t={};return""!==o&&(t.resourcesUrl=new URL(".",o).href),e(t)})().then((e=>o([["p-e6f3d036",[[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],isOpened:[64]}]]],["p-9a1549c2",[[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]}]]],["p-fd87638e",[[1,"ez-dialog",{confirm:[1028],dialogType:[1025,"dialog-type"],message:[1025],opened:[1540],personalizedIconPath:[1025,"personalized-icon-path"],ezTitle:[1025,"ez-title"],show:[64]}]]],["p-96df1a0e",[[6,"ez-grid",{multipleSelection:[4,"multiple-selection"],config:[1040],serverUrl:[1,"server-url"],dataUnit:[16],statusResolver:[16],_paginationInfo:[32],_paginationChangedByKeyboard:[32],_showSelectionCounter:[32],_selectionCount:[32],_selectionPageCount:[32],setColumnsDef:[64],addColumnMenuItem:[64],setColumnsState:[64],setData:[64],getSelection:[64],getColumnsState:[64],getColumns:[64],quickFilter:[64]},[[0,"ezSelectionChange","onSelectionChange"]]]]],["p-7c8fb43e",[[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"]}]]],["p-6818dd0a",[[1,"ez-alert",{alertType:[513,"alert-type"]}]]],["p-06b3e801",[[1,"ez-chip",{label:[513],enabled:[516],removePosition:[513,"remove-position"],mode:[513],value:[1540],setFocus:[64],setBlur:[64]}]]],["p-9613fae6",[[1,"ez-file-item",{canRemove:[4,"can-remove"],fileName:[1,"file-name"],iconName:[1,"icon-name"],fileSize:[2,"file-size"],progress:[2]}]]],["p-ada6e6b0",[[0,"ez-application"]]],["p-07b99b94",[[1,"ez-card-item",{item:[16]}]]],["p-8d5ec02b",[[1,"ez-list",{dataSource:[1040],useGroups:[1540,"use-groups"],ezDraggable:[1028,"ez-draggable"],ezSelectable:[1028,"ez-selectable"],itemSlotBuilder:[1040],hoverFeedback:[1028,"hover-feedback"],_listItems:[32],_listGroupItems:[32],clearHistory:[64],scrollToTop:[64],setSelection:[64],getSelection:[64],getList:[64]}]]],["p-0c7e81fe",[[1,"ez-loading-bar",{_showLoading:[32],hide:[64],show:[64]}]]],["p-eceb9382",[[1,"ez-modal",{modalSize:[1,"modal-size"],align:[1],opened:[1028],closeEsc:[4,"close-esc"],closeOutsideClick:[4,"close-outside-click"]}]]],["p-62481744",[[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"],overlayType:[513,"overlay-type"],updatePosition:[64],show:[64],hide:[64]}]]],["p-600f1732",[[1,"ez-popup",{size:[1],opened:[1540],useHeader:[516,"use-header"],heightMode:[513,"height-mode"],ezTitle:[1,"ez-title"]}]]],["p-b941aeee",[[1,"ez-radio-button",{value:[1544],options:[1040],enabled:[516],label:[513],direction:[1537]}]]],["p-e85f1a6a",[[1,"ez-toast",{message:[1025],fadeTime:[1026,"fade-time"],useIcon:[1028,"use-icon"],canClose:[1028,"can-close"],show:[64]}]]],["p-b3c7b243",[[0,"ez-view-stack",{show:[64],getSelectedIndex:[64]}]]],["p-b7ea9791",[[2,"ez-form-view",{fields:[16],showUp:[64]}]]],["p-99d822cc",[[1,"ez-tabselector",{selectedIndex:[1538,"selected-index"],selectedTab:[1537,"selected-tab"],tabs:[1],_processedTabs:[32]}]]],["p-493e2af4",[[1,"ez-text-input",{label:[513],value:[1537],enabled:[516],errorMessage:[1537,"error-message"],mask:[1],canShowError:[516,"can-show-error"],restrict:[1],mode:[513],noBorder:[516,"no-border"],setFocus:[64],setBlur:[64],isInvalid:[64]}]]],["p-09271677",[[1,"ez-guide-navigator",{open:[1540],selectedId:[1537,"selected-id"],items:[16],tooltipResolver:[16],filterText:[32],disableItem:[64],enableItem:[64],updateItem:[64],getItem:[64],getCurrentPath:[64],selectGuide:[64],getParent:[64]}]]],["p-a67e056f",[[1,"ez-dropdown",{items:[1040],value:[1040],itemBuilder:[16]}]]],["p-bbccda3f",[[1,"ez-collapsible-box",{value:[1540],label:[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]}]]],["p-695facd0",[[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],isInvalid:[64]}]]],["p-4555df8f",[[1,"ez-date-input",{label:[513],value:[1040],enabled:[516],errorMessage:[1537,"error-message"],mode:[513],setFocus:[64],setBlur:[64],isInvalid:[64]}]]],["p-581df847",[[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],isInvalid:[64]}]]],["p-36f7ec68",[[1,"ez-time-input",{label:[513],value:[1026],enabled:[516],errorMessage:[1537,"error-message"],showSeconds:[516,"show-seconds"],mode:[513],setFocus:[64],setBlur:[64],isInvalid:[64]}]]],["p-86d29565",[[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],isInvalid:[64]}]]],["p-a3ce3710",[[1,"ez-check",{label:[513],value:[1540],enabled:[1540],indeterminate:[1540],mode:[513],getMode:[64],setFocus:[64]}]]],["p-c0184982",[[1,"ez-text-area",{label:[513],value:[1537],enabled:[516],errorMessage:[1537,"error-message"],rows:[1538],canShowError:[516,"can-show-error"],mode:[513],setFocus:[64],setBlur:[64],isInvalid:[64]}]]],["p-622c2d53",[[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-7147d43a",[[1,"ez-text-edit",{value:[1],styled:[16],_newValue:[32],applyFocusSelect:[64]}]]],["p-878646a0",[[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],_criteria:[32],setFocus:[64],setBlur:[64],isInvalid:[64]}]]],["p-6cf406ff",[[1,"ez-filter-input",{label:[1],value:[1537],enabled:[4],errorMessage:[1537,"error-message"],restrict:[1],mode:[513],asyncSearch:[516,"async-search"],setFocus:[64],setBlur:[64],isInvalid:[64],setValue:[64],endSearch:[64]}],[1,"ez-tree",{items:[1040],value:[1040],selectedId:[1537,"selected-id"],iconResolver:[16],tooltipResolver:[16],_tree:[32],_waintingForLoad:[32],selectItem:[64],openItem:[64],disableItem:[64],enableItem:[64],addChild:[64],applyFilter:[64],updateItem:[64],getItem:[64],getCurrentPath:[64],getParent:[64]},[[2,"keydown","onKeyDownListener"]]],[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"]]],[1,"ez-sidebar-button"]]],["p-a4b281ca",[[1,"ez-calendar",{value:[1040],floating:[516],time:[516],showSeconds:[516,"show-seconds"],show:[64],fitVertical:[64],hide:[64]}]]],["p-cc40fcb3",[[1,"ez-icon",{size:[513],href:[513],iconName:[513,"icon-name"]}]]],["p-36374dfe",[[1,"ez-button",{label:[513],enabled:[516],mode:[513],image:[513],iconName:[513,"icon-name"],size:[513],setFocus:[64],setBlur:[64]},[[2,"click","clickListener"]]]]],["p-1f841f3c",[[2,"ez-form",{dataUnit:[1040],config:[16],recordsValidator:[16],validate:[64]}]]]],e)));