@sankhyalabs/ezui 2.4.1 → 2.4.2
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 +14 -9
- package/dist/collection/components/ez-grid/controller/ag-grid/AgGridController.js +14 -9
- package/dist/custom-elements/index.js +14 -9
- package/dist/esm/ez-grid.entry.js +14 -9
- package/dist/ezui/ezui.esm.js +1 -1
- package/dist/ezui/{p-4c061e51.entry.js → p-0dfcaee5.entry.js} +1 -1
- package/dist/types/components/ez-grid/controller/ag-grid/AgGridController.d.ts +1 -0
- package/package.json +1 -1
|
@@ -114787,15 +114787,10 @@ class AgGridController {
|
|
|
114787
114787
|
if (this._dataUnit) {
|
|
114788
114788
|
this._dataUnit.sortingProvider = this;
|
|
114789
114789
|
}
|
|
114790
|
-
this._dataSource = new DataSource(this._dataUnit, this, options);
|
|
114791
114790
|
this._gridOptions = {
|
|
114792
114791
|
localeText: gridTerms,
|
|
114793
|
-
rowModelType: "serverSide",
|
|
114794
|
-
serverSideSortOnServer: true,
|
|
114795
114792
|
rowSelection: this._multipleSelection ? "multiple" : "single",
|
|
114796
|
-
serverSideDatasource: this._dataSource,
|
|
114797
114793
|
sortingOrder: ['desc', 'asc', null],
|
|
114798
|
-
columnDefs: this._colDefs,
|
|
114799
114794
|
blockLoadDebounceMillis: this.BLOCK_LOAD_DEBOUNCE,
|
|
114800
114795
|
navigateToNextCell: this.navigateToNextCell.bind(this),
|
|
114801
114796
|
getRowNodeId: this._dataUnit ? (params) => typeof params === "string" ? params : params[this._idAttribName] : undefined,
|
|
@@ -114821,6 +114816,7 @@ class AgGridController {
|
|
|
114821
114816
|
headerCheckStatusSetter: (selectAll) => this.updateSelectionForAll(selectAll)
|
|
114822
114817
|
}
|
|
114823
114818
|
};
|
|
114819
|
+
this.defineRowModelType(this._gridOptions, options);
|
|
114824
114820
|
this.setOptionsEvents(this._gridOptions);
|
|
114825
114821
|
this.setOptionsSupress(this._gridOptions);
|
|
114826
114822
|
if (this._enterprise) {
|
|
@@ -114879,6 +114875,14 @@ class AgGridController {
|
|
|
114879
114875
|
}
|
|
114880
114876
|
return null;
|
|
114881
114877
|
}
|
|
114878
|
+
defineRowModelType(opt, sourceOptions) {
|
|
114879
|
+
if (this._dataUnit != undefined) {
|
|
114880
|
+
opt.rowModelType = "serverSide";
|
|
114881
|
+
opt.serverSideDatasource = new DataSource(this._dataUnit, this, sourceOptions);
|
|
114882
|
+
opt.serverSideSortOnServer = true;
|
|
114883
|
+
opt.columnDefs = this._colDefs;
|
|
114884
|
+
}
|
|
114885
|
+
}
|
|
114882
114886
|
setOptionsEvents(opt) {
|
|
114883
114887
|
opt.onSortChanged = e => this.onCallStateChange("sort", e);
|
|
114884
114888
|
opt.onColumnResized = e => this.onCallStateChange("columnResize", e);
|
|
@@ -115034,7 +115038,7 @@ class AgGridController {
|
|
|
115034
115038
|
newColDefs.push(this.buildColDef(c));
|
|
115035
115039
|
});
|
|
115036
115040
|
this._colDefs = newColDefs;
|
|
115037
|
-
if (this._gridOptions) {
|
|
115041
|
+
if (this._gridOptions && this._gridOptions.api) {
|
|
115038
115042
|
this._gridOptions.api.setColumnDefs(this._colDefs);
|
|
115039
115043
|
}
|
|
115040
115044
|
}
|
|
@@ -115126,10 +115130,11 @@ class AgGridController {
|
|
|
115126
115130
|
(_a = this._gridOptions.api.getDisplayedRowAtIndex(index)) === null || _a === void 0 ? void 0 : _a.setSelected(true);
|
|
115127
115131
|
}
|
|
115128
115132
|
buildColDef(source) {
|
|
115133
|
+
var _a, _b, _c;
|
|
115129
115134
|
let tooltip = undefined;
|
|
115130
|
-
const propSortable = core.StringUtils.getBooleanValue(source.props.get("gridSortable"), true);
|
|
115131
|
-
if (source.props.get("gridHeaderTooltip")) {
|
|
115132
|
-
tooltip = source.props.get("gridHeaderTooltip");
|
|
115135
|
+
const propSortable = core.StringUtils.getBooleanValue((_a = source.props) === null || _a === void 0 ? void 0 : _a.get("gridSortable"), true);
|
|
115136
|
+
if ((_b = source.props) === null || _b === void 0 ? void 0 : _b.get("gridHeaderTooltip")) {
|
|
115137
|
+
tooltip = (_c = source.props) === null || _c === void 0 ? void 0 : _c.get("gridHeaderTooltip");
|
|
115133
115138
|
}
|
|
115134
115139
|
else if (propSortable === false) {
|
|
115135
115140
|
tooltip = "Coluna não pode ser ordenada";
|
|
@@ -45,15 +45,10 @@ export default class AgGridController {
|
|
|
45
45
|
if (this._dataUnit) {
|
|
46
46
|
this._dataUnit.sortingProvider = this;
|
|
47
47
|
}
|
|
48
|
-
this._dataSource = new DataSource(this._dataUnit, this, options);
|
|
49
48
|
this._gridOptions = {
|
|
50
49
|
localeText: gridTerms,
|
|
51
|
-
rowModelType: "serverSide",
|
|
52
|
-
serverSideSortOnServer: true,
|
|
53
50
|
rowSelection: this._multipleSelection ? "multiple" : "single",
|
|
54
|
-
serverSideDatasource: this._dataSource,
|
|
55
51
|
sortingOrder: ['desc', 'asc', null],
|
|
56
|
-
columnDefs: this._colDefs,
|
|
57
52
|
blockLoadDebounceMillis: this.BLOCK_LOAD_DEBOUNCE,
|
|
58
53
|
navigateToNextCell: this.navigateToNextCell.bind(this),
|
|
59
54
|
getRowNodeId: this._dataUnit ? (params) => typeof params === "string" ? params : params[this._idAttribName] : undefined,
|
|
@@ -79,6 +74,7 @@ export default class AgGridController {
|
|
|
79
74
|
headerCheckStatusSetter: (selectAll) => this.updateSelectionForAll(selectAll)
|
|
80
75
|
}
|
|
81
76
|
};
|
|
77
|
+
this.defineRowModelType(this._gridOptions, options);
|
|
82
78
|
this.setOptionsEvents(this._gridOptions);
|
|
83
79
|
this.setOptionsSupress(this._gridOptions);
|
|
84
80
|
if (this._enterprise) {
|
|
@@ -137,6 +133,14 @@ export default class AgGridController {
|
|
|
137
133
|
}
|
|
138
134
|
return null;
|
|
139
135
|
}
|
|
136
|
+
defineRowModelType(opt, sourceOptions) {
|
|
137
|
+
if (this._dataUnit != undefined) {
|
|
138
|
+
opt.rowModelType = "serverSide";
|
|
139
|
+
opt.serverSideDatasource = new DataSource(this._dataUnit, this, sourceOptions);
|
|
140
|
+
opt.serverSideSortOnServer = true;
|
|
141
|
+
opt.columnDefs = this._colDefs;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
140
144
|
setOptionsEvents(opt) {
|
|
141
145
|
opt.onSortChanged = e => this.onCallStateChange("sort", e);
|
|
142
146
|
opt.onColumnResized = e => this.onCallStateChange("columnResize", e);
|
|
@@ -292,7 +296,7 @@ export default class AgGridController {
|
|
|
292
296
|
newColDefs.push(this.buildColDef(c));
|
|
293
297
|
});
|
|
294
298
|
this._colDefs = newColDefs;
|
|
295
|
-
if (this._gridOptions) {
|
|
299
|
+
if (this._gridOptions && this._gridOptions.api) {
|
|
296
300
|
this._gridOptions.api.setColumnDefs(this._colDefs);
|
|
297
301
|
}
|
|
298
302
|
}
|
|
@@ -384,10 +388,11 @@ export default class AgGridController {
|
|
|
384
388
|
(_a = this._gridOptions.api.getDisplayedRowAtIndex(index)) === null || _a === void 0 ? void 0 : _a.setSelected(true);
|
|
385
389
|
}
|
|
386
390
|
buildColDef(source) {
|
|
391
|
+
var _a, _b, _c;
|
|
387
392
|
let tooltip = undefined;
|
|
388
|
-
const propSortable = StringUtils.getBooleanValue(source.props.get("gridSortable"), true);
|
|
389
|
-
if (source.props.get("gridHeaderTooltip")) {
|
|
390
|
-
tooltip = source.props.get("gridHeaderTooltip");
|
|
393
|
+
const propSortable = StringUtils.getBooleanValue((_a = source.props) === null || _a === void 0 ? void 0 : _a.get("gridSortable"), true);
|
|
394
|
+
if ((_b = source.props) === null || _b === void 0 ? void 0 : _b.get("gridHeaderTooltip")) {
|
|
395
|
+
tooltip = (_c = source.props) === null || _c === void 0 ? void 0 : _c.get("gridHeaderTooltip");
|
|
391
396
|
}
|
|
392
397
|
else if (propSortable === false) {
|
|
393
398
|
tooltip = "Coluna não pode ser ordenada";
|
|
@@ -117886,15 +117886,10 @@ class AgGridController {
|
|
|
117886
117886
|
if (this._dataUnit) {
|
|
117887
117887
|
this._dataUnit.sortingProvider = this;
|
|
117888
117888
|
}
|
|
117889
|
-
this._dataSource = new DataSource(this._dataUnit, this, options);
|
|
117890
117889
|
this._gridOptions = {
|
|
117891
117890
|
localeText: gridTerms,
|
|
117892
|
-
rowModelType: "serverSide",
|
|
117893
|
-
serverSideSortOnServer: true,
|
|
117894
117891
|
rowSelection: this._multipleSelection ? "multiple" : "single",
|
|
117895
|
-
serverSideDatasource: this._dataSource,
|
|
117896
117892
|
sortingOrder: ['desc', 'asc', null],
|
|
117897
|
-
columnDefs: this._colDefs,
|
|
117898
117893
|
blockLoadDebounceMillis: this.BLOCK_LOAD_DEBOUNCE,
|
|
117899
117894
|
navigateToNextCell: this.navigateToNextCell.bind(this),
|
|
117900
117895
|
getRowNodeId: this._dataUnit ? (params) => typeof params === "string" ? params : params[this._idAttribName] : undefined,
|
|
@@ -117920,6 +117915,7 @@ class AgGridController {
|
|
|
117920
117915
|
headerCheckStatusSetter: (selectAll) => this.updateSelectionForAll(selectAll)
|
|
117921
117916
|
}
|
|
117922
117917
|
};
|
|
117918
|
+
this.defineRowModelType(this._gridOptions, options);
|
|
117923
117919
|
this.setOptionsEvents(this._gridOptions);
|
|
117924
117920
|
this.setOptionsSupress(this._gridOptions);
|
|
117925
117921
|
if (this._enterprise) {
|
|
@@ -117978,6 +117974,14 @@ class AgGridController {
|
|
|
117978
117974
|
}
|
|
117979
117975
|
return null;
|
|
117980
117976
|
}
|
|
117977
|
+
defineRowModelType(opt, sourceOptions) {
|
|
117978
|
+
if (this._dataUnit != undefined) {
|
|
117979
|
+
opt.rowModelType = "serverSide";
|
|
117980
|
+
opt.serverSideDatasource = new DataSource(this._dataUnit, this, sourceOptions);
|
|
117981
|
+
opt.serverSideSortOnServer = true;
|
|
117982
|
+
opt.columnDefs = this._colDefs;
|
|
117983
|
+
}
|
|
117984
|
+
}
|
|
117981
117985
|
setOptionsEvents(opt) {
|
|
117982
117986
|
opt.onSortChanged = e => this.onCallStateChange("sort", e);
|
|
117983
117987
|
opt.onColumnResized = e => this.onCallStateChange("columnResize", e);
|
|
@@ -118133,7 +118137,7 @@ class AgGridController {
|
|
|
118133
118137
|
newColDefs.push(this.buildColDef(c));
|
|
118134
118138
|
});
|
|
118135
118139
|
this._colDefs = newColDefs;
|
|
118136
|
-
if (this._gridOptions) {
|
|
118140
|
+
if (this._gridOptions && this._gridOptions.api) {
|
|
118137
118141
|
this._gridOptions.api.setColumnDefs(this._colDefs);
|
|
118138
118142
|
}
|
|
118139
118143
|
}
|
|
@@ -118225,10 +118229,11 @@ class AgGridController {
|
|
|
118225
118229
|
(_a = this._gridOptions.api.getDisplayedRowAtIndex(index)) === null || _a === void 0 ? void 0 : _a.setSelected(true);
|
|
118226
118230
|
}
|
|
118227
118231
|
buildColDef(source) {
|
|
118232
|
+
var _a, _b, _c;
|
|
118228
118233
|
let tooltip = undefined;
|
|
118229
|
-
const propSortable = StringUtils$1.getBooleanValue(source.props.get("gridSortable"), true);
|
|
118230
|
-
if (source.props.get("gridHeaderTooltip")) {
|
|
118231
|
-
tooltip = source.props.get("gridHeaderTooltip");
|
|
118234
|
+
const propSortable = StringUtils$1.getBooleanValue((_a = source.props) === null || _a === void 0 ? void 0 : _a.get("gridSortable"), true);
|
|
118235
|
+
if ((_b = source.props) === null || _b === void 0 ? void 0 : _b.get("gridHeaderTooltip")) {
|
|
118236
|
+
tooltip = (_c = source.props) === null || _c === void 0 ? void 0 : _c.get("gridHeaderTooltip");
|
|
118232
118237
|
}
|
|
118233
118238
|
else if (propSortable === false) {
|
|
118234
118239
|
tooltip = "Coluna não pode ser ordenada";
|
|
@@ -114783,15 +114783,10 @@ class AgGridController {
|
|
|
114783
114783
|
if (this._dataUnit) {
|
|
114784
114784
|
this._dataUnit.sortingProvider = this;
|
|
114785
114785
|
}
|
|
114786
|
-
this._dataSource = new DataSource(this._dataUnit, this, options);
|
|
114787
114786
|
this._gridOptions = {
|
|
114788
114787
|
localeText: gridTerms,
|
|
114789
|
-
rowModelType: "serverSide",
|
|
114790
|
-
serverSideSortOnServer: true,
|
|
114791
114788
|
rowSelection: this._multipleSelection ? "multiple" : "single",
|
|
114792
|
-
serverSideDatasource: this._dataSource,
|
|
114793
114789
|
sortingOrder: ['desc', 'asc', null],
|
|
114794
|
-
columnDefs: this._colDefs,
|
|
114795
114790
|
blockLoadDebounceMillis: this.BLOCK_LOAD_DEBOUNCE,
|
|
114796
114791
|
navigateToNextCell: this.navigateToNextCell.bind(this),
|
|
114797
114792
|
getRowNodeId: this._dataUnit ? (params) => typeof params === "string" ? params : params[this._idAttribName] : undefined,
|
|
@@ -114817,6 +114812,7 @@ class AgGridController {
|
|
|
114817
114812
|
headerCheckStatusSetter: (selectAll) => this.updateSelectionForAll(selectAll)
|
|
114818
114813
|
}
|
|
114819
114814
|
};
|
|
114815
|
+
this.defineRowModelType(this._gridOptions, options);
|
|
114820
114816
|
this.setOptionsEvents(this._gridOptions);
|
|
114821
114817
|
this.setOptionsSupress(this._gridOptions);
|
|
114822
114818
|
if (this._enterprise) {
|
|
@@ -114875,6 +114871,14 @@ class AgGridController {
|
|
|
114875
114871
|
}
|
|
114876
114872
|
return null;
|
|
114877
114873
|
}
|
|
114874
|
+
defineRowModelType(opt, sourceOptions) {
|
|
114875
|
+
if (this._dataUnit != undefined) {
|
|
114876
|
+
opt.rowModelType = "serverSide";
|
|
114877
|
+
opt.serverSideDatasource = new DataSource(this._dataUnit, this, sourceOptions);
|
|
114878
|
+
opt.serverSideSortOnServer = true;
|
|
114879
|
+
opt.columnDefs = this._colDefs;
|
|
114880
|
+
}
|
|
114881
|
+
}
|
|
114878
114882
|
setOptionsEvents(opt) {
|
|
114879
114883
|
opt.onSortChanged = e => this.onCallStateChange("sort", e);
|
|
114880
114884
|
opt.onColumnResized = e => this.onCallStateChange("columnResize", e);
|
|
@@ -115030,7 +115034,7 @@ class AgGridController {
|
|
|
115030
115034
|
newColDefs.push(this.buildColDef(c));
|
|
115031
115035
|
});
|
|
115032
115036
|
this._colDefs = newColDefs;
|
|
115033
|
-
if (this._gridOptions) {
|
|
115037
|
+
if (this._gridOptions && this._gridOptions.api) {
|
|
115034
115038
|
this._gridOptions.api.setColumnDefs(this._colDefs);
|
|
115035
115039
|
}
|
|
115036
115040
|
}
|
|
@@ -115122,10 +115126,11 @@ class AgGridController {
|
|
|
115122
115126
|
(_a = this._gridOptions.api.getDisplayedRowAtIndex(index)) === null || _a === void 0 ? void 0 : _a.setSelected(true);
|
|
115123
115127
|
}
|
|
115124
115128
|
buildColDef(source) {
|
|
115129
|
+
var _a, _b, _c;
|
|
115125
115130
|
let tooltip = undefined;
|
|
115126
|
-
const propSortable = StringUtils$1.getBooleanValue(source.props.get("gridSortable"), true);
|
|
115127
|
-
if (source.props.get("gridHeaderTooltip")) {
|
|
115128
|
-
tooltip = source.props.get("gridHeaderTooltip");
|
|
115131
|
+
const propSortable = StringUtils$1.getBooleanValue((_a = source.props) === null || _a === void 0 ? void 0 : _a.get("gridSortable"), true);
|
|
115132
|
+
if ((_b = source.props) === null || _b === void 0 ? void 0 : _b.get("gridHeaderTooltip")) {
|
|
115133
|
+
tooltip = (_c = source.props) === null || _c === void 0 ? void 0 : _c.get("gridHeaderTooltip");
|
|
115129
115134
|
}
|
|
115130
115135
|
else if (propSortable === false) {
|
|
115131
115136
|
tooltip = "Coluna não pode ser ordenada";
|
package/dist/ezui/ezui.esm.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as e,b as o}from"./p-3c7ea91b.js";(()=>{const o=import.meta.url,s={};return""!==o&&(s.resourcesUrl=new URL(".",o).href),e(s)})().then((e=>o([["p-a34b52f8",[[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-f13f3123",[[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-123a2bd5",[[1,"ez-filter-input",{label:[1],value:[1537],enabled:[4],errorMessage:[1537,"error-message"],restrict:[1],mode:[513],setFocus:[64],setBlur:[64],isInvalid:[64]}]]],["p-
|
|
1
|
+
import{p as e,b as o}from"./p-3c7ea91b.js";(()=>{const o=import.meta.url,s={};return""!==o&&(s.resourcesUrl=new URL(".",o).href),e(s)})().then((e=>o([["p-a34b52f8",[[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-f13f3123",[[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-123a2bd5",[[1,"ez-filter-input",{label:[1],value:[1537],enabled:[4],errorMessage:[1537,"error-message"],restrict:[1],mode:[513],setFocus:[64],setBlur:[64],isInvalid:[64]}]]],["p-0dfcaee5",[[6,"ez-grid",{multipleSelection:[4,"multiple-selection"],config:[1040],serverUrl:[1,"server-url"],dataUnit:[16],statusResolver:[16],_paginationInfo:[32],_paginationChangedByKeyboard:[32],setColumnsDef:[64],addColumnMenuItem:[64],setColumnsState:[64],setData:[64],getSelection:[64],getColumnsState:[64],getColumns:[64],quickFilter:[64]},[[0,"ezSelectionChange","onSelectionChange"]]]]],["p-739d60d1",[[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-9def6fd0",[[1,"ez-chip",{label:[513],enabled:[516],removePosition:[513,"remove-position"],mode:[513],value:[1540],setFocus:[64],setBlur:[64]}]]],["p-1cc11468",[[0,"ez-application"]]],["p-3cfefc57",[[1,"ez-card-item",{item:[16]}]]],["p-6d0b9d3c",[[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-f6111077",[[1,"ez-loading-bar",{_showLoading:[32],hide:[64],show:[64]}]]],["p-7c227b86",[[1,"ez-modal",{modalSize:[1,"modal-size"],align:[1],opened:[1028],closeEsc:[4,"close-esc"],closeOutsideClick:[4,"close-outside-click"]}]]],["p-bffae598",[[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-cfcc23e6",[[1,"ez-popup",{size:[1],opened:[1540],useHeader:[516,"use-header"],heightMode:[513,"height-mode"],ezTitle:[1,"ez-title"]}]]],["p-5cb4b43b",[[1,"ez-radio-button",{value:[1544],options:[1040],enabled:[516],label:[513],direction:[1537]}]]],["p-bd9d791c",[[1,"ez-scroller",{direction:[1],locked:[4],activeShadow:[4,"active-shadow"],isFirefox:[32],isActive:[32]},[[2,"click","clickListener"],[1,"mousedown","mouseDownHandler"],[1,"mouseup","mouseUpHandler"],[1,"mousemove","mouseMoveHandler"]]]]],["p-482c3dd8",[[1,"ez-toast",{message:[1025],fadeTime:[1026,"fade-time"],useIcon:[1028,"use-icon"],canClose:[1028,"can-close"],show:[64]}]]],["p-04fab1e9",[[0,"ez-view-stack",{show:[64],getSelectedIndex:[64]}]]],["p-9334a724",[[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-abcd17e6",[[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-ad5fe50b",[[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-7e496975",[[1,"ez-date-input",{label:[513],value:[1040],enabled:[516],errorMessage:[1537,"error-message"],mode:[513],setFocus:[64],setBlur:[64],isInvalid:[64]}]]],["p-7b906805",[[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-ea877274",[[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-1a89d3ff",[[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-941e9792",[[1,"ez-tabselector",{selectedIndex:[1538,"selected-index"],selectedTab:[1537,"selected-tab"],tabs:[1],_processedTabs:[32]}]]],["p-f2c4e811",[[1,"ez-check",{label:[513],value:[1540],enabled:[1540],indeterminate:[516],mode:[513],getMode:[64],setFocus:[64]}]]],["p-f2627de5",[[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-a713a1aa",[[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-01b79946",[[1,"ez-text-edit",{value:[1],styled:[16],_newValue:[32],applyFocusSelect:[64]}]]],["p-590d9e91",[[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-9d57e44a",[[1,"ez-calendar",{value:[1040],floating:[516],time:[516],showSeconds:[516,"show-seconds"],show:[64],fitVertical:[64],hide:[64]}]]],["p-87ee59e8",[[1,"ez-icon",{size:[513],href:[513],iconName:[513,"icon-name"]}]]],["p-a2e55b33",[[1,"ez-button",{label:[513],enabled:[516],mode:[513],image:[513],iconName:[513,"icon-name"],size:[513],setFocus:[64],setBlur:[64]}]]],["p-05dbdaeb",[[0,"ez-form",{dataUnit:[1040],config:[16],recordsValidator:[16],validate:[64]}]]]],e)));
|