@sankhyalabs/ezui 4.15.0 → 4.15.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-button.cjs.entry.js +1 -1
- package/dist/cjs/ez-grid.cjs.entry.js +23 -11
- package/dist/collection/components/ez-button/ez-button.js +1 -1
- package/dist/collection/components/ez-grid/controller/ag-grid/AgGridController.js +2 -2
- package/dist/collection/components/ez-grid/controller/ag-grid/components/cellRendererStatus.js +43 -0
- package/dist/collection/components/ez-grid/ez-grid.js +6 -2
- package/dist/custom-elements/index.js +24 -12
- package/dist/esm/ez-button.entry.js +1 -1
- package/dist/esm/ez-grid.entry.js +23 -11
- package/dist/ezui/ezui.esm.js +1 -1
- package/dist/ezui/{p-f3e18804.entry.js → p-00f4bff5.entry.js} +1 -1
- package/dist/ezui/p-9518ef88.entry.js +1 -0
- package/dist/types/components/ez-grid/controller/EzGridController.d.ts +2 -1
- package/dist/types/components/ez-grid/controller/ag-grid/components/{cellRenderer.d.ts → cellRendererStatus.d.ts} +3 -1
- package/dist/types/components/ez-grid/ez-grid.d.ts +2 -2
- package/dist/types/components.d.ts +3 -3
- package/package.json +1 -1
- package/dist/collection/components/ez-grid/controller/ag-grid/components/cellRenderer.js +0 -31
- package/dist/ezui/p-9a9cca48.entry.js +0 -1
|
@@ -119016,8 +119016,9 @@ class DataSource {
|
|
|
119016
119016
|
}
|
|
119017
119017
|
}
|
|
119018
119018
|
|
|
119019
|
-
class
|
|
119019
|
+
class CellRendererStatus {
|
|
119020
119020
|
constructor() {
|
|
119021
|
+
this.DEFAULT_COLOR = 'transparent';
|
|
119021
119022
|
this._eGui = undefined;
|
|
119022
119023
|
}
|
|
119023
119024
|
init(params) {
|
|
@@ -119033,18 +119034,29 @@ class CellRenderer {
|
|
|
119033
119034
|
getGui() {
|
|
119034
119035
|
return this._eGui;
|
|
119035
119036
|
}
|
|
119036
|
-
|
|
119037
|
-
|
|
119038
|
-
if (statusResolver
|
|
119037
|
+
resolveColor(statusResolver, data) {
|
|
119038
|
+
let color;
|
|
119039
|
+
if (statusResolver instanceof Function) {
|
|
119040
|
+
color = statusResolver(data);
|
|
119041
|
+
}
|
|
119042
|
+
else {
|
|
119039
119043
|
const statusKey = Object.keys(statusResolver)[0];
|
|
119040
119044
|
const statusValues = statusResolver[statusKey];
|
|
119041
|
-
const value =
|
|
119042
|
-
|
|
119043
|
-
|
|
119044
|
-
|
|
119045
|
-
|
|
119046
|
-
|
|
119045
|
+
const value = data[statusKey];
|
|
119046
|
+
color = statusValues != undefined && value != undefined && statusValues[value];
|
|
119047
|
+
}
|
|
119048
|
+
return color || this.DEFAULT_COLOR;
|
|
119049
|
+
}
|
|
119050
|
+
renderStatus(params) {
|
|
119051
|
+
const { data, statusResolver } = params !== null && params !== void 0 ? params : {};
|
|
119052
|
+
if (statusResolver == undefined) {
|
|
119053
|
+
return;
|
|
119047
119054
|
}
|
|
119055
|
+
const color = this.resolveColor(statusResolver, data);
|
|
119056
|
+
this._eGui = document.createElement('div');
|
|
119057
|
+
this._eGui.innerHTML = `
|
|
119058
|
+
<span class="ez-grid__cell-status" style="background-color: ${color || ""};"></span>
|
|
119059
|
+
`;
|
|
119048
119060
|
}
|
|
119049
119061
|
}
|
|
119050
119062
|
|
|
@@ -119415,7 +119427,7 @@ class AgGridController {
|
|
|
119415
119427
|
suppressMenu: true,
|
|
119416
119428
|
lockPosition: true,
|
|
119417
119429
|
pinned: true,
|
|
119418
|
-
cellRenderer:
|
|
119430
|
+
cellRenderer: CellRendererStatus,
|
|
119419
119431
|
cellRendererParams: {
|
|
119420
119432
|
statusResolver: this._statusResolver
|
|
119421
119433
|
},
|
|
@@ -4,7 +4,7 @@ import { ApplicationContext, DataType, SortMode, UserInterface, NumberUtils, Str
|
|
|
4
4
|
import gridTerms from "./i18n/pt-BR.js";
|
|
5
5
|
import getHeaderColumnTemplate from "./template/HeaderColumnTemplate.js";
|
|
6
6
|
import DataSource from "./DataSource";
|
|
7
|
-
import {
|
|
7
|
+
import { CellRendererStatus } from "./components/cellRendererStatus";
|
|
8
8
|
import SelectionHeader from "./components/selectionHeader";
|
|
9
9
|
export default class AgGridController {
|
|
10
10
|
constructor(enterprise) {
|
|
@@ -332,7 +332,7 @@ export default class AgGridController {
|
|
|
332
332
|
suppressMenu: true,
|
|
333
333
|
lockPosition: true,
|
|
334
334
|
pinned: true,
|
|
335
|
-
cellRenderer:
|
|
335
|
+
cellRenderer: CellRendererStatus,
|
|
336
336
|
cellRendererParams: {
|
|
337
337
|
statusResolver: this._statusResolver
|
|
338
338
|
},
|
package/dist/collection/components/ez-grid/controller/ag-grid/components/cellRendererStatus.js
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
export class CellRendererStatus {
|
|
2
|
+
constructor() {
|
|
3
|
+
this.DEFAULT_COLOR = 'transparent';
|
|
4
|
+
this._eGui = undefined;
|
|
5
|
+
}
|
|
6
|
+
init(params) {
|
|
7
|
+
this.renderStatus(params);
|
|
8
|
+
}
|
|
9
|
+
refresh(params) {
|
|
10
|
+
this.renderStatus(params);
|
|
11
|
+
return true;
|
|
12
|
+
}
|
|
13
|
+
destroy() {
|
|
14
|
+
this._eGui = undefined;
|
|
15
|
+
}
|
|
16
|
+
getGui() {
|
|
17
|
+
return this._eGui;
|
|
18
|
+
}
|
|
19
|
+
resolveColor(statusResolver, data) {
|
|
20
|
+
let color;
|
|
21
|
+
if (statusResolver instanceof Function) {
|
|
22
|
+
color = statusResolver(data);
|
|
23
|
+
}
|
|
24
|
+
else {
|
|
25
|
+
const statusKey = Object.keys(statusResolver)[0];
|
|
26
|
+
const statusValues = statusResolver[statusKey];
|
|
27
|
+
const value = data[statusKey];
|
|
28
|
+
color = statusValues != undefined && value != undefined && statusValues[value];
|
|
29
|
+
}
|
|
30
|
+
return color || this.DEFAULT_COLOR;
|
|
31
|
+
}
|
|
32
|
+
renderStatus(params) {
|
|
33
|
+
const { data, statusResolver } = params !== null && params !== void 0 ? params : {};
|
|
34
|
+
if (statusResolver == undefined) {
|
|
35
|
+
return;
|
|
36
|
+
}
|
|
37
|
+
const color = this.resolveColor(statusResolver, data);
|
|
38
|
+
this._eGui = document.createElement('div');
|
|
39
|
+
this._eGui.innerHTML = `
|
|
40
|
+
<span class="ez-grid__cell-status" style="background-color: ${color || ""};"></span>
|
|
41
|
+
`;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
@@ -361,12 +361,16 @@ export class EzGrid {
|
|
|
361
361
|
"type": "unknown",
|
|
362
362
|
"mutable": false,
|
|
363
363
|
"complexType": {
|
|
364
|
-
"original": "IStatusResolver",
|
|
365
|
-
"resolved": "IStatusResolver",
|
|
364
|
+
"original": "IStatusResolver | StatusResolverFunction",
|
|
365
|
+
"resolved": "((data: object) => string) | IStatusResolver",
|
|
366
366
|
"references": {
|
|
367
367
|
"IStatusResolver": {
|
|
368
368
|
"location": "import",
|
|
369
369
|
"path": "./controller/EzGridController"
|
|
370
|
+
},
|
|
371
|
+
"StatusResolverFunction": {
|
|
372
|
+
"location": "import",
|
|
373
|
+
"path": "./controller/EzGridController"
|
|
370
374
|
}
|
|
371
375
|
}
|
|
372
376
|
},
|
|
@@ -1440,7 +1440,7 @@ const EzButton$1 = class extends HTMLElement$1 {
|
|
|
1440
1440
|
}
|
|
1441
1441
|
clickListener(evt) {
|
|
1442
1442
|
if (!this.enabled) {
|
|
1443
|
-
evt.
|
|
1443
|
+
evt.stopImmediatePropagation();
|
|
1444
1444
|
}
|
|
1445
1445
|
}
|
|
1446
1446
|
componentDidLoad() {
|
|
@@ -123486,8 +123486,9 @@ class DataSource {
|
|
|
123486
123486
|
}
|
|
123487
123487
|
}
|
|
123488
123488
|
|
|
123489
|
-
class
|
|
123489
|
+
class CellRendererStatus {
|
|
123490
123490
|
constructor() {
|
|
123491
|
+
this.DEFAULT_COLOR = 'transparent';
|
|
123491
123492
|
this._eGui = undefined;
|
|
123492
123493
|
}
|
|
123493
123494
|
init(params) {
|
|
@@ -123503,18 +123504,29 @@ class CellRenderer {
|
|
|
123503
123504
|
getGui() {
|
|
123504
123505
|
return this._eGui;
|
|
123505
123506
|
}
|
|
123506
|
-
|
|
123507
|
-
|
|
123508
|
-
if (statusResolver
|
|
123507
|
+
resolveColor(statusResolver, data) {
|
|
123508
|
+
let color;
|
|
123509
|
+
if (statusResolver instanceof Function) {
|
|
123510
|
+
color = statusResolver(data);
|
|
123511
|
+
}
|
|
123512
|
+
else {
|
|
123509
123513
|
const statusKey = Object.keys(statusResolver)[0];
|
|
123510
123514
|
const statusValues = statusResolver[statusKey];
|
|
123511
|
-
const value =
|
|
123512
|
-
|
|
123513
|
-
|
|
123514
|
-
|
|
123515
|
-
|
|
123516
|
-
|
|
123515
|
+
const value = data[statusKey];
|
|
123516
|
+
color = statusValues != undefined && value != undefined && statusValues[value];
|
|
123517
|
+
}
|
|
123518
|
+
return color || this.DEFAULT_COLOR;
|
|
123519
|
+
}
|
|
123520
|
+
renderStatus(params) {
|
|
123521
|
+
const { data, statusResolver } = params !== null && params !== void 0 ? params : {};
|
|
123522
|
+
if (statusResolver == undefined) {
|
|
123523
|
+
return;
|
|
123517
123524
|
}
|
|
123525
|
+
const color = this.resolveColor(statusResolver, data);
|
|
123526
|
+
this._eGui = document.createElement('div');
|
|
123527
|
+
this._eGui.innerHTML = `
|
|
123528
|
+
<span class="ez-grid__cell-status" style="background-color: ${color || ""};"></span>
|
|
123529
|
+
`;
|
|
123518
123530
|
}
|
|
123519
123531
|
}
|
|
123520
123532
|
|
|
@@ -123885,7 +123897,7 @@ class AgGridController {
|
|
|
123885
123897
|
suppressMenu: true,
|
|
123886
123898
|
lockPosition: true,
|
|
123887
123899
|
pinned: true,
|
|
123888
|
-
cellRenderer:
|
|
123900
|
+
cellRenderer: CellRendererStatus,
|
|
123889
123901
|
cellRendererParams: {
|
|
123890
123902
|
statusResolver: this._statusResolver
|
|
123891
123903
|
},
|
|
@@ -119012,8 +119012,9 @@ class DataSource {
|
|
|
119012
119012
|
}
|
|
119013
119013
|
}
|
|
119014
119014
|
|
|
119015
|
-
class
|
|
119015
|
+
class CellRendererStatus {
|
|
119016
119016
|
constructor() {
|
|
119017
|
+
this.DEFAULT_COLOR = 'transparent';
|
|
119017
119018
|
this._eGui = undefined;
|
|
119018
119019
|
}
|
|
119019
119020
|
init(params) {
|
|
@@ -119029,18 +119030,29 @@ class CellRenderer {
|
|
|
119029
119030
|
getGui() {
|
|
119030
119031
|
return this._eGui;
|
|
119031
119032
|
}
|
|
119032
|
-
|
|
119033
|
-
|
|
119034
|
-
if (statusResolver
|
|
119033
|
+
resolveColor(statusResolver, data) {
|
|
119034
|
+
let color;
|
|
119035
|
+
if (statusResolver instanceof Function) {
|
|
119036
|
+
color = statusResolver(data);
|
|
119037
|
+
}
|
|
119038
|
+
else {
|
|
119035
119039
|
const statusKey = Object.keys(statusResolver)[0];
|
|
119036
119040
|
const statusValues = statusResolver[statusKey];
|
|
119037
|
-
const value =
|
|
119038
|
-
|
|
119039
|
-
|
|
119040
|
-
|
|
119041
|
-
|
|
119042
|
-
|
|
119041
|
+
const value = data[statusKey];
|
|
119042
|
+
color = statusValues != undefined && value != undefined && statusValues[value];
|
|
119043
|
+
}
|
|
119044
|
+
return color || this.DEFAULT_COLOR;
|
|
119045
|
+
}
|
|
119046
|
+
renderStatus(params) {
|
|
119047
|
+
const { data, statusResolver } = params !== null && params !== void 0 ? params : {};
|
|
119048
|
+
if (statusResolver == undefined) {
|
|
119049
|
+
return;
|
|
119043
119050
|
}
|
|
119051
|
+
const color = this.resolveColor(statusResolver, data);
|
|
119052
|
+
this._eGui = document.createElement('div');
|
|
119053
|
+
this._eGui.innerHTML = `
|
|
119054
|
+
<span class="ez-grid__cell-status" style="background-color: ${color || ""};"></span>
|
|
119055
|
+
`;
|
|
119044
119056
|
}
|
|
119045
119057
|
}
|
|
119046
119058
|
|
|
@@ -119411,7 +119423,7 @@ class AgGridController {
|
|
|
119411
119423
|
suppressMenu: true,
|
|
119412
119424
|
lockPosition: true,
|
|
119413
119425
|
pinned: true,
|
|
119414
|
-
cellRenderer:
|
|
119426
|
+
cellRenderer: CellRendererStatus,
|
|
119415
119427
|
cellRendererParams: {
|
|
119416
119428
|
statusResolver: this._statusResolver
|
|
119417
119429
|
},
|
package/dist/ezui/ezui.esm.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as e,b as o}from"./p-bfc7b8ca.js";export{s as setNonce}from"./p-bfc7b8ca.js";(()=>{const o=import.meta.url,t={};return""!==o&&(t.resourcesUrl=new URL(".",o).href),e(t)})().then((e=>o([["p-2756003d",[[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-c567c679",[[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-b01e05a1",[[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-816a3218",[[1,"ez-dialog",{confirm:[1028],dialogType:[1025,"dialog-type"],message:[1025],opened:[1540],personalizedIconPath:[1025,"personalized-icon-path"],ezTitle:[1025,"ez-title"],beforeClose:[1040],show:[64]}]]],["p-
|
|
1
|
+
import{p as e,b as o}from"./p-bfc7b8ca.js";export{s as setNonce}from"./p-bfc7b8ca.js";(()=>{const o=import.meta.url,t={};return""!==o&&(t.resourcesUrl=new URL(".",o).href),e(t)})().then((e=>o([["p-2756003d",[[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-c567c679",[[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-b01e05a1",[[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-816a3218",[[1,"ez-dialog",{confirm:[1028],dialogType:[1025,"dialog-type"],message:[1025],opened:[1540],personalizedIconPath:[1025,"personalized-icon-path"],ezTitle:[1025,"ez-title"],beforeClose:[1040],show:[64]}]]],["p-00f4bff5",[[6,"ez-grid",{multipleSelection:[4,"multiple-selection"],config:[1040],serverUrl:[1,"server-url"],dataUnit:[16],statusResolver:[16],_paginationInfo:[32],_paginationChangedByKeyboard:[32],_showSelectionCounter:[32],_isAllSelection:[32],_currentPageSelected:[32],_selectionCount:[32],setColumnsDef:[64],addColumnMenuItem:[64],setColumnsState:[64],setData:[64],getSelection:[64],getColumnsState:[64],getColumns:[64],quickFilter:[64]},[[0,"ezSelectionChange","onSelectionChange"]]]]],["p-f71f0aa2",[[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-997b2df9",[[1,"ez-alert",{alertType:[513,"alert-type"]}]]],["p-6adf3791",[[1,"ez-badge",{size:[513],label:[513],iconLeft:[513,"icon-left"],iconRight:[513,"icon-right"],position:[1040],hasSlot:[32]}]]],["p-d892dc4f",[[1,"ez-chip",{label:[513],enabled:[516],removePosition:[513,"remove-position"],mode:[513],value:[1540],setFocus:[64],setBlur:[64]}]]],["p-2f80d68c",[[1,"ez-file-item",{canRemove:[4,"can-remove"],fileName:[1,"file-name"],iconName:[1,"icon-name"],fileSize:[2,"file-size"],progress:[2]}]]],["p-71d4f489",[[1,"ez-list",{dataSource:[1040],listMode:[1,"list-mode"],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-e8e7ec07",[[0,"ez-application"]]],["p-848bc350",[[1,"ez-card-item",{item:[16]}]]],["p-1ac06223",[[1,"ez-loading-bar",{_showLoading:[32],hide:[64],show:[64]}]]],["p-5110b212",[[1,"ez-modal",{modalSize:[1,"modal-size"],align:[1],heightMode:[1,"height-mode"],opened:[1028],closeEsc:[4,"close-esc"],closeOutsideClick:[4,"close-outside-click"],scrim:[1]}]]],["p-62ebbd06",[[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-04a52868",[[1,"ez-popup",{size:[1],opened:[1540],useHeader:[516,"use-header"],heightMode:[513,"height-mode"],ezTitle:[1,"ez-title"]}]]],["p-6e453307",[[1,"ez-radio-button",{value:[1544],options:[1040],enabled:[516],label:[513],direction:[1537]}]]],["p-672c1fba",[[0,"ez-skeleton",{count:[2],variant:[1],width:[1],height:[1],marginBottom:[1,"margin-bottom"],animation:[1]}]]],["p-0c2187a1",[[1,"ez-toast",{message:[1025],fadeTime:[1026,"fade-time"],useIcon:[1028,"use-icon"],canClose:[1028,"can-close"],show:[64]}]]],["p-6d794472",[[0,"ez-view-stack",{show:[64],getSelectedIndex:[64]}]]],["p-41e82662",[[1,"ez-dropdown",{items:[1040],value:[1040],itemBuilder:[16]}]]],["p-fc71f135",[[1,"ez-tabselector",{selectedIndex:[1538,"selected-index"],selectedTab:[1537,"selected-tab"],tabs:[1],_processedTabs:[32]}]]],["p-c00e734a",[[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-8790b4cd",[[1,"ez-collapsible-box",{value:[1540],label:[513],subtitle:[513],headerSize:[513,"header-size"],iconPlacement:[513,"icon-placement"],headerAlign:[513,"header-align"],removable:[516],editable:[516],conditionalSave:[16],_activeEditText:[32],showHide:[64],applyFocusTextEdit:[64],cancelEdition:[64]}]]],["p-9ba304e9",[[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],canShowError:[516,"can-show-error"],setFocus:[64],setBlur:[64],isInvalid:[64]}]]],["p-3173d988",[[1,"ez-date-input",{label:[513],value:[1040],enabled:[516],errorMessage:[1537,"error-message"],mode:[513],canShowError:[516,"can-show-error"],setFocus:[64],setBlur:[64],isInvalid:[64]}]]],["p-7cce14cd",[[1,"ez-date-time-input",{label:[513],value:[1040],enabled:[516],errorMessage:[1537,"error-message"],showSeconds:[516,"show-seconds"],mode:[513],canShowError:[516,"can-show-error"],setFocus:[64],setBlur:[64],isInvalid:[64]}]]],["p-d96793f1",[[1,"ez-time-input",{label:[513],value:[1026],enabled:[516],errorMessage:[1537,"error-message"],showSeconds:[516,"show-seconds"],mode:[513],canShowError:[516,"can-show-error"],setFocus:[64],setBlur:[64],isInvalid:[64]}]]],["p-c0f7917c",[[1,"ez-number-input",{label:[1],value:[1538],enabled:[4],canShowError:[516,"can-show-error"],errorMessage:[1537,"error-message"],precision:[2],prettyPrecision:[2,"pretty-precision"],mode:[513],setFocus:[64],setBlur:[64],isInvalid:[64]}]]],["p-6f11ddf8",[[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-30c5535f",[[1,"ez-upload",{label:[1],subtitle:[1],enabled:[4],maxFileSize:[2,"max-file-size"],maxFiles:[2,"max-files"],requestHeaders:[8,"request-headers"],urlUpload:[1,"url-upload"],urlDelete:[1,"url-delete"],value:[1040],addFiles:[64],setFocus:[64],setBlur:[64]}]]],["p-4d1356b0",[[1,"ez-text-edit",{value:[1],styled:[16],_newValue:[32],applyFocusSelect:[64]}]]],["p-855c4290",[[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-b945133d",[[1,"ez-check",{label:[513],value:[1540],enabled:[1540],indeterminate:[1540],mode:[513],compact:[4],getMode:[64],setFocus:[64]}]]],["p-967758ac",[[2,"ez-form-view",{fields:[16],showUp:[64]}]]],["p-4ebb1d15",[[1,"ez-filter-input",{label:[1],value:[1537],enabled:[4],errorMessage:[1537,"error-message"],restrict:[1],mode:[513],asyncSearch:[516,"async-search"],canShowError:[516,"can-show-error"],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-994c4934",[[1,"ez-calendar",{value:[1040],floating:[516],time:[516],showSeconds:[516,"show-seconds"],show:[64],fitVertical:[64],hide:[64]}]]],["p-1a902d0e",[[1,"ez-icon",{size:[513],href:[513],iconName:[513,"icon-name"]}]]],["p-9518ef88",[[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-40e9475c",[[2,"ez-form",{dataUnit:[1040],config:[16],recordsValidator:[16],validate:[64]}]]]],e)));
|