@sankhyalabs/ezui 5.22.0-dev.17 → 5.22.0-dev.19
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-custom-form-input_2.cjs.entry.js +22 -23
- package/dist/cjs/ez-grid.cjs.entry.js +7 -0
- package/dist/collection/components/ez-form-view/custom-input/ez-custom-form-input.js +22 -23
- package/dist/collection/components/ez-grid/controller/ag-grid/components/EzGridCustomCellEditor.js +8 -0
- package/dist/custom-elements/index.js +29 -23
- package/dist/esm/ez-custom-form-input_2.entry.js +22 -23
- package/dist/esm/ez-grid.entry.js +7 -0
- package/dist/ezui/ezui.esm.js +1 -1
- package/dist/ezui/{p-32e553e5.entry.js → p-5ee2dc4e.entry.js} +1 -1
- package/dist/ezui/p-e26f12dd.entry.js +1 -0
- package/dist/types/components/ez-form-view/custom-input/ez-custom-form-input.d.ts +6 -6
- package/dist/types/components/ez-grid/controller/ag-grid/components/EzGridCustomCellEditor.d.ts +1 -0
- package/dist/types/utils/customEditor/interfaces/ICustomEditor.d.ts +2 -0
- package/package.json +1 -1
- package/dist/ezui/p-ecaa643e.entry.js +0 -1
|
@@ -20,26 +20,6 @@ const EzCustomFormInput = class {
|
|
|
20
20
|
this.builderFallback = undefined;
|
|
21
21
|
this.selectedRecord = undefined;
|
|
22
22
|
}
|
|
23
|
-
watchValue() {
|
|
24
|
-
this.handleValue(this.gui);
|
|
25
|
-
}
|
|
26
|
-
watchCustomEditor() {
|
|
27
|
-
this.getContent();
|
|
28
|
-
}
|
|
29
|
-
watchFormViewField(newValue, oldValue) {
|
|
30
|
-
if (!core.ObjectUtils.equals(newValue, oldValue))
|
|
31
|
-
this.getContent();
|
|
32
|
-
}
|
|
33
|
-
watchDetailContext() {
|
|
34
|
-
this.getContent();
|
|
35
|
-
}
|
|
36
|
-
watchBuilderFallback() {
|
|
37
|
-
this.getContent();
|
|
38
|
-
}
|
|
39
|
-
watchSelectedRecord(newValue, oldValue) {
|
|
40
|
-
if (newValue['__record__id__'] != oldValue['__record__id__'])
|
|
41
|
-
this.getContent();
|
|
42
|
-
}
|
|
43
23
|
/**
|
|
44
24
|
* Aplica foco no campo.
|
|
45
25
|
*/
|
|
@@ -61,6 +41,27 @@ const EzCustomFormInput = class {
|
|
|
61
41
|
var _a, _b;
|
|
62
42
|
return ((_b = (_a = this.gui) === null || _a === void 0 ? void 0 : _a["isInvalid"]) === null || _b === void 0 ? void 0 : _b.call(_a)) || false;
|
|
63
43
|
}
|
|
44
|
+
watchValue() {
|
|
45
|
+
this.handleValue(this.gui);
|
|
46
|
+
}
|
|
47
|
+
watchCustomEditor() {
|
|
48
|
+
this.getContent();
|
|
49
|
+
}
|
|
50
|
+
watchFormViewField(newValue, oldValue) {
|
|
51
|
+
if (!core.ObjectUtils.equals(newValue, oldValue))
|
|
52
|
+
this.getContent();
|
|
53
|
+
}
|
|
54
|
+
watchDetailContext() {
|
|
55
|
+
this.getContent();
|
|
56
|
+
}
|
|
57
|
+
watchBuilderFallback() {
|
|
58
|
+
this.getContent();
|
|
59
|
+
}
|
|
60
|
+
watchSelectedRecord(newValue, oldValue) {
|
|
61
|
+
if (newValue['__record__id__'] !== oldValue['__record__id__']) {
|
|
62
|
+
this.getContent();
|
|
63
|
+
}
|
|
64
|
+
}
|
|
64
65
|
getContent() {
|
|
65
66
|
var _a, _b;
|
|
66
67
|
const fieldProps = new Map();
|
|
@@ -100,9 +101,7 @@ const EzCustomFormInput = class {
|
|
|
100
101
|
if (typeof gui === 'string') {
|
|
101
102
|
gui = core.HTMLBuilder.parseElement(gui);
|
|
102
103
|
}
|
|
103
|
-
|
|
104
|
-
gui.setAttribute('value', typeof this.value === 'object' ? this.value.value : this.value);
|
|
105
|
-
}
|
|
104
|
+
gui.setAttribute('value', this.value);
|
|
106
105
|
this.gui = index.h("div", { key: core.StringUtils.generateUUID(), ref: el => el && el.appendChild(gui) });
|
|
107
106
|
}
|
|
108
107
|
setValue(value) {
|
|
@@ -119471,6 +119471,8 @@ class EzGridCustomCellEditor extends EzCellEditor {
|
|
|
119471
119471
|
this._defaultGui = this.getDefaultGui();
|
|
119472
119472
|
const fieldMetadata = super.getFieldMetadata();
|
|
119473
119473
|
this._params = {
|
|
119474
|
+
cellPossition: getViewPortHeight(params.eGridCell),
|
|
119475
|
+
eGridCell: params.eGridCell,
|
|
119474
119476
|
value: params.value,
|
|
119475
119477
|
charPress: params.charPress,
|
|
119476
119478
|
currentEditor: this._defaultGui,
|
|
@@ -119508,12 +119510,17 @@ class EzGridCustomCellEditor extends EzCellEditor {
|
|
|
119508
119510
|
const element = core.HTMLBuilder.parseElement(editorElement);
|
|
119509
119511
|
return element;
|
|
119510
119512
|
}
|
|
119513
|
+
this._customGui = editorElement;
|
|
119511
119514
|
return editorElement;
|
|
119512
119515
|
}
|
|
119513
119516
|
setValue(value) {
|
|
119514
119517
|
this._value = value;
|
|
119515
119518
|
}
|
|
119516
119519
|
getValue() {
|
|
119520
|
+
if (this._customGui.getValue)
|
|
119521
|
+
return this._customGui.getValue();
|
|
119522
|
+
if (this._customGui.hasAttribute('value'))
|
|
119523
|
+
return this._customGui.value;
|
|
119517
119524
|
return this._value;
|
|
119518
119525
|
}
|
|
119519
119526
|
}
|
|
@@ -11,26 +11,6 @@ export class EzCustomFormInput {
|
|
|
11
11
|
this.builderFallback = undefined;
|
|
12
12
|
this.selectedRecord = undefined;
|
|
13
13
|
}
|
|
14
|
-
watchValue() {
|
|
15
|
-
this.handleValue(this.gui);
|
|
16
|
-
}
|
|
17
|
-
watchCustomEditor() {
|
|
18
|
-
this.getContent();
|
|
19
|
-
}
|
|
20
|
-
watchFormViewField(newValue, oldValue) {
|
|
21
|
-
if (!ObjectUtils.equals(newValue, oldValue))
|
|
22
|
-
this.getContent();
|
|
23
|
-
}
|
|
24
|
-
watchDetailContext() {
|
|
25
|
-
this.getContent();
|
|
26
|
-
}
|
|
27
|
-
watchBuilderFallback() {
|
|
28
|
-
this.getContent();
|
|
29
|
-
}
|
|
30
|
-
watchSelectedRecord(newValue, oldValue) {
|
|
31
|
-
if (newValue['__record__id__'] != oldValue['__record__id__'])
|
|
32
|
-
this.getContent();
|
|
33
|
-
}
|
|
34
14
|
/**
|
|
35
15
|
* Aplica foco no campo.
|
|
36
16
|
*/
|
|
@@ -52,6 +32,27 @@ export class EzCustomFormInput {
|
|
|
52
32
|
var _a, _b;
|
|
53
33
|
return ((_b = (_a = this.gui) === null || _a === void 0 ? void 0 : _a["isInvalid"]) === null || _b === void 0 ? void 0 : _b.call(_a)) || false;
|
|
54
34
|
}
|
|
35
|
+
watchValue() {
|
|
36
|
+
this.handleValue(this.gui);
|
|
37
|
+
}
|
|
38
|
+
watchCustomEditor() {
|
|
39
|
+
this.getContent();
|
|
40
|
+
}
|
|
41
|
+
watchFormViewField(newValue, oldValue) {
|
|
42
|
+
if (!ObjectUtils.equals(newValue, oldValue))
|
|
43
|
+
this.getContent();
|
|
44
|
+
}
|
|
45
|
+
watchDetailContext() {
|
|
46
|
+
this.getContent();
|
|
47
|
+
}
|
|
48
|
+
watchBuilderFallback() {
|
|
49
|
+
this.getContent();
|
|
50
|
+
}
|
|
51
|
+
watchSelectedRecord(newValue, oldValue) {
|
|
52
|
+
if (newValue['__record__id__'] !== oldValue['__record__id__']) {
|
|
53
|
+
this.getContent();
|
|
54
|
+
}
|
|
55
|
+
}
|
|
55
56
|
getContent() {
|
|
56
57
|
var _a, _b;
|
|
57
58
|
const fieldProps = new Map();
|
|
@@ -91,9 +92,7 @@ export class EzCustomFormInput {
|
|
|
91
92
|
if (typeof gui === 'string') {
|
|
92
93
|
gui = HTMLBuilder.parseElement(gui);
|
|
93
94
|
}
|
|
94
|
-
|
|
95
|
-
gui.setAttribute('value', typeof this.value === 'object' ? this.value.value : this.value);
|
|
96
|
-
}
|
|
95
|
+
gui.setAttribute('value', this.value);
|
|
97
96
|
this.gui = h("div", { key: StringUtils.generateUUID(), ref: el => el && el.appendChild(gui) });
|
|
98
97
|
}
|
|
99
98
|
setValue(value) {
|
package/dist/collection/components/ez-grid/controller/ag-grid/components/EzGridCustomCellEditor.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { HTMLBuilder } from "@sankhyalabs/core";
|
|
2
2
|
import { CustomEditorSource } from "../../../../../utils/customEditor/interfaces/ICustomEditor";
|
|
3
3
|
import EzCellEditor from "../editor/EzCellEditor";
|
|
4
|
+
import { getViewPortHeight } from "../editor/GridEditorUtils";
|
|
4
5
|
export default class EzGridCustomCellEditor extends EzCellEditor {
|
|
5
6
|
init(params) {
|
|
6
7
|
var _a, _b;
|
|
@@ -11,6 +12,8 @@ export default class EzGridCustomCellEditor extends EzCellEditor {
|
|
|
11
12
|
this._defaultGui = this.getDefaultGui();
|
|
12
13
|
const fieldMetadata = super.getFieldMetadata();
|
|
13
14
|
this._params = {
|
|
15
|
+
cellPossition: getViewPortHeight(params.eGridCell),
|
|
16
|
+
eGridCell: params.eGridCell,
|
|
14
17
|
value: params.value,
|
|
15
18
|
charPress: params.charPress,
|
|
16
19
|
currentEditor: this._defaultGui,
|
|
@@ -48,12 +51,17 @@ export default class EzGridCustomCellEditor extends EzCellEditor {
|
|
|
48
51
|
const element = HTMLBuilder.parseElement(editorElement);
|
|
49
52
|
return element;
|
|
50
53
|
}
|
|
54
|
+
this._customGui = editorElement;
|
|
51
55
|
return editorElement;
|
|
52
56
|
}
|
|
53
57
|
setValue(value) {
|
|
54
58
|
this._value = value;
|
|
55
59
|
}
|
|
56
60
|
getValue() {
|
|
61
|
+
if (this._customGui.getValue)
|
|
62
|
+
return this._customGui.getValue();
|
|
63
|
+
if (this._customGui.hasAttribute('value'))
|
|
64
|
+
return this._customGui.value;
|
|
57
65
|
return this._value;
|
|
58
66
|
}
|
|
59
67
|
}
|
|
@@ -3402,26 +3402,6 @@ const EzCustomFormInput$1 = class extends HTMLElement$1 {
|
|
|
3402
3402
|
this.builderFallback = undefined;
|
|
3403
3403
|
this.selectedRecord = undefined;
|
|
3404
3404
|
}
|
|
3405
|
-
watchValue() {
|
|
3406
|
-
this.handleValue(this.gui);
|
|
3407
|
-
}
|
|
3408
|
-
watchCustomEditor() {
|
|
3409
|
-
this.getContent();
|
|
3410
|
-
}
|
|
3411
|
-
watchFormViewField(newValue, oldValue) {
|
|
3412
|
-
if (!ObjectUtils$1.equals(newValue, oldValue))
|
|
3413
|
-
this.getContent();
|
|
3414
|
-
}
|
|
3415
|
-
watchDetailContext() {
|
|
3416
|
-
this.getContent();
|
|
3417
|
-
}
|
|
3418
|
-
watchBuilderFallback() {
|
|
3419
|
-
this.getContent();
|
|
3420
|
-
}
|
|
3421
|
-
watchSelectedRecord(newValue, oldValue) {
|
|
3422
|
-
if (newValue['__record__id__'] != oldValue['__record__id__'])
|
|
3423
|
-
this.getContent();
|
|
3424
|
-
}
|
|
3425
3405
|
/**
|
|
3426
3406
|
* Aplica foco no campo.
|
|
3427
3407
|
*/
|
|
@@ -3443,6 +3423,27 @@ const EzCustomFormInput$1 = class extends HTMLElement$1 {
|
|
|
3443
3423
|
var _a, _b;
|
|
3444
3424
|
return ((_b = (_a = this.gui) === null || _a === void 0 ? void 0 : _a["isInvalid"]) === null || _b === void 0 ? void 0 : _b.call(_a)) || false;
|
|
3445
3425
|
}
|
|
3426
|
+
watchValue() {
|
|
3427
|
+
this.handleValue(this.gui);
|
|
3428
|
+
}
|
|
3429
|
+
watchCustomEditor() {
|
|
3430
|
+
this.getContent();
|
|
3431
|
+
}
|
|
3432
|
+
watchFormViewField(newValue, oldValue) {
|
|
3433
|
+
if (!ObjectUtils$1.equals(newValue, oldValue))
|
|
3434
|
+
this.getContent();
|
|
3435
|
+
}
|
|
3436
|
+
watchDetailContext() {
|
|
3437
|
+
this.getContent();
|
|
3438
|
+
}
|
|
3439
|
+
watchBuilderFallback() {
|
|
3440
|
+
this.getContent();
|
|
3441
|
+
}
|
|
3442
|
+
watchSelectedRecord(newValue, oldValue) {
|
|
3443
|
+
if (newValue['__record__id__'] !== oldValue['__record__id__']) {
|
|
3444
|
+
this.getContent();
|
|
3445
|
+
}
|
|
3446
|
+
}
|
|
3446
3447
|
getContent() {
|
|
3447
3448
|
var _a, _b;
|
|
3448
3449
|
const fieldProps = new Map();
|
|
@@ -3482,9 +3483,7 @@ const EzCustomFormInput$1 = class extends HTMLElement$1 {
|
|
|
3482
3483
|
if (typeof gui === 'string') {
|
|
3483
3484
|
gui = HTMLBuilder.parseElement(gui);
|
|
3484
3485
|
}
|
|
3485
|
-
|
|
3486
|
-
gui.setAttribute('value', typeof this.value === 'object' ? this.value.value : this.value);
|
|
3487
|
-
}
|
|
3486
|
+
gui.setAttribute('value', this.value);
|
|
3488
3487
|
this.gui = h("div", { key: StringUtils$1.generateUUID(), ref: el => el && el.appendChild(gui) });
|
|
3489
3488
|
}
|
|
3490
3489
|
setValue(value) {
|
|
@@ -125075,6 +125074,8 @@ class EzGridCustomCellEditor extends EzCellEditor {
|
|
|
125075
125074
|
this._defaultGui = this.getDefaultGui();
|
|
125076
125075
|
const fieldMetadata = super.getFieldMetadata();
|
|
125077
125076
|
this._params = {
|
|
125077
|
+
cellPossition: getViewPortHeight(params.eGridCell),
|
|
125078
|
+
eGridCell: params.eGridCell,
|
|
125078
125079
|
value: params.value,
|
|
125079
125080
|
charPress: params.charPress,
|
|
125080
125081
|
currentEditor: this._defaultGui,
|
|
@@ -125112,12 +125113,17 @@ class EzGridCustomCellEditor extends EzCellEditor {
|
|
|
125112
125113
|
const element = HTMLBuilder.parseElement(editorElement);
|
|
125113
125114
|
return element;
|
|
125114
125115
|
}
|
|
125116
|
+
this._customGui = editorElement;
|
|
125115
125117
|
return editorElement;
|
|
125116
125118
|
}
|
|
125117
125119
|
setValue(value) {
|
|
125118
125120
|
this._value = value;
|
|
125119
125121
|
}
|
|
125120
125122
|
getValue() {
|
|
125123
|
+
if (this._customGui.getValue)
|
|
125124
|
+
return this._customGui.getValue();
|
|
125125
|
+
if (this._customGui.hasAttribute('value'))
|
|
125126
|
+
return this._customGui.value;
|
|
125121
125127
|
return this._value;
|
|
125122
125128
|
}
|
|
125123
125129
|
}
|
|
@@ -16,26 +16,6 @@ const EzCustomFormInput = class {
|
|
|
16
16
|
this.builderFallback = undefined;
|
|
17
17
|
this.selectedRecord = undefined;
|
|
18
18
|
}
|
|
19
|
-
watchValue() {
|
|
20
|
-
this.handleValue(this.gui);
|
|
21
|
-
}
|
|
22
|
-
watchCustomEditor() {
|
|
23
|
-
this.getContent();
|
|
24
|
-
}
|
|
25
|
-
watchFormViewField(newValue, oldValue) {
|
|
26
|
-
if (!ObjectUtils.equals(newValue, oldValue))
|
|
27
|
-
this.getContent();
|
|
28
|
-
}
|
|
29
|
-
watchDetailContext() {
|
|
30
|
-
this.getContent();
|
|
31
|
-
}
|
|
32
|
-
watchBuilderFallback() {
|
|
33
|
-
this.getContent();
|
|
34
|
-
}
|
|
35
|
-
watchSelectedRecord(newValue, oldValue) {
|
|
36
|
-
if (newValue['__record__id__'] != oldValue['__record__id__'])
|
|
37
|
-
this.getContent();
|
|
38
|
-
}
|
|
39
19
|
/**
|
|
40
20
|
* Aplica foco no campo.
|
|
41
21
|
*/
|
|
@@ -57,6 +37,27 @@ const EzCustomFormInput = class {
|
|
|
57
37
|
var _a, _b;
|
|
58
38
|
return ((_b = (_a = this.gui) === null || _a === void 0 ? void 0 : _a["isInvalid"]) === null || _b === void 0 ? void 0 : _b.call(_a)) || false;
|
|
59
39
|
}
|
|
40
|
+
watchValue() {
|
|
41
|
+
this.handleValue(this.gui);
|
|
42
|
+
}
|
|
43
|
+
watchCustomEditor() {
|
|
44
|
+
this.getContent();
|
|
45
|
+
}
|
|
46
|
+
watchFormViewField(newValue, oldValue) {
|
|
47
|
+
if (!ObjectUtils.equals(newValue, oldValue))
|
|
48
|
+
this.getContent();
|
|
49
|
+
}
|
|
50
|
+
watchDetailContext() {
|
|
51
|
+
this.getContent();
|
|
52
|
+
}
|
|
53
|
+
watchBuilderFallback() {
|
|
54
|
+
this.getContent();
|
|
55
|
+
}
|
|
56
|
+
watchSelectedRecord(newValue, oldValue) {
|
|
57
|
+
if (newValue['__record__id__'] !== oldValue['__record__id__']) {
|
|
58
|
+
this.getContent();
|
|
59
|
+
}
|
|
60
|
+
}
|
|
60
61
|
getContent() {
|
|
61
62
|
var _a, _b;
|
|
62
63
|
const fieldProps = new Map();
|
|
@@ -96,9 +97,7 @@ const EzCustomFormInput = class {
|
|
|
96
97
|
if (typeof gui === 'string') {
|
|
97
98
|
gui = HTMLBuilder.parseElement(gui);
|
|
98
99
|
}
|
|
99
|
-
|
|
100
|
-
gui.setAttribute('value', typeof this.value === 'object' ? this.value.value : this.value);
|
|
101
|
-
}
|
|
100
|
+
gui.setAttribute('value', this.value);
|
|
102
101
|
this.gui = h("div", { key: StringUtils.generateUUID(), ref: el => el && el.appendChild(gui) });
|
|
103
102
|
}
|
|
104
103
|
setValue(value) {
|
|
@@ -119467,6 +119467,8 @@ class EzGridCustomCellEditor extends EzCellEditor {
|
|
|
119467
119467
|
this._defaultGui = this.getDefaultGui();
|
|
119468
119468
|
const fieldMetadata = super.getFieldMetadata();
|
|
119469
119469
|
this._params = {
|
|
119470
|
+
cellPossition: getViewPortHeight(params.eGridCell),
|
|
119471
|
+
eGridCell: params.eGridCell,
|
|
119470
119472
|
value: params.value,
|
|
119471
119473
|
charPress: params.charPress,
|
|
119472
119474
|
currentEditor: this._defaultGui,
|
|
@@ -119504,12 +119506,17 @@ class EzGridCustomCellEditor extends EzCellEditor {
|
|
|
119504
119506
|
const element = HTMLBuilder.parseElement(editorElement);
|
|
119505
119507
|
return element;
|
|
119506
119508
|
}
|
|
119509
|
+
this._customGui = editorElement;
|
|
119507
119510
|
return editorElement;
|
|
119508
119511
|
}
|
|
119509
119512
|
setValue(value) {
|
|
119510
119513
|
this._value = value;
|
|
119511
119514
|
}
|
|
119512
119515
|
getValue() {
|
|
119516
|
+
if (this._customGui.getValue)
|
|
119517
|
+
return this._customGui.getValue();
|
|
119518
|
+
if (this._customGui.hasAttribute('value'))
|
|
119519
|
+
return this._customGui.value;
|
|
119513
119520
|
return this._value;
|
|
119514
119521
|
}
|
|
119515
119522
|
}
|
package/dist/ezui/ezui.esm.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as e,b as o}from"./p-23a36bb6.js";export{s as setNonce}from"./p-23a36bb6.js";(()=>{const o=import.meta.url,t={};return""!==o&&(t.resourcesUrl=new URL(".",o).href),e(t)})().then((e=>o(JSON.parse('[["p-32e553e5",[[6,"ez-grid",{"multipleSelection":[4,"multiple-selection"],"config":[1040],"selectionToastConfig":[16],"serverUrl":[1,"server-url"],"dataUnit":[16],"statusResolver":[16],"columnfilterDataSource":[16],"useEnterLikeTab":[4,"use-enter-like-tab"],"recordsValidator":[16],"canEdit":[4,"can-edit"],"autoFocus":[4,"auto-focus"],"_paginationInfo":[32],"_paginationChangedByKeyboard":[32],"_showSelectionCounter":[32],"_isAllSelection":[32],"_currentPageSelected":[32],"_selectionCount":[32],"_hasLeftButtons":[32],"_customFormatters":[32],"setColumnsDef":[64],"addColumnMenuItem":[64],"setColumnsState":[64],"setData":[64],"getSelection":[64],"getColumnsState":[64],"getColumns":[64],"quickFilter":[64],"locateColumn":[64],"filterColumns":[64],"addCustomEditor":[64],"addGridCustomRender":[64],"addCustomValueFormatter":[64],"removeCustomValueFormatter":[64],"refreshSelectedRows":[64],"getCustomValueFormatter":[64],"setFocus":[64]},[[0,"ezSelectionChange","onSelectionChange"]]]]],["p-6e429cff",[[1,"ez-guide-navigator",{"open":[1540],"selectedId":[1537,"selected-id"],"items":[16],"tooltipResolver":[16],"filterText":[32],"disableItem":[64],"openGuideNavidator":[64],"enableItem":[64],"updateItem":[64],"getItem":[64],"getCurrentPath":[64],"selectGuide":[64],"getParent":[64]}]]],["p-09de35a2",[[1,"ez-alert-list",{"alerts":[1040],"enableDragAndDrop":[516,"enable-drag-and-drop"],"enableExpand":[516,"enable-expand"],"itemRightSlotBuilder":[16],"opened":[1540],"expanded":[1540],"_container":[32]}]]],["p-ecc2c1ec",[[1,"ez-sidebar-navigator",{"type":[1],"mode":[1025],"size":[1],"isResponsive":[4,"is-responsive"],"titleMenu":[1,"title-menu"],"showCollapseMenu":[4,"show-collapse-menu"],"showFixedButton":[4,"show-fixed-button"],"open":[32],"changeModeMenu":[64],"closeSidebar":[64],"openSidebar":[64]}]]],["p-bcb53f27",[[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],"showActions":[64],"isOpened":[64]}]]],["p-1e7a8633",[[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-49456b34",[[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]},[[8,"keydown","handleKeyDown"]]]]],["p-34b6916c",[[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"],"showCloseButton":[4,"show-close-button"]},[[4,"ezCloseModal","handleEzModalAction"]]]]],["p-3faa2b46",[[1,"ez-split-button",{"enabled":[516],"iconName":[513,"icon-name"],"image":[513],"items":[16],"label":[513],"leftTitle":[513,"left-title"],"rightTitle":[513,"right-title"],"mode":[513],"size":[513],"show":[32],"setBlur":[64],"setLeftButtonFocus":[64],"setRightButtonFocus":[64]},[[2,"click","clickListener"]]]]],["p-922ac38b",[[4,"ez-split-item",{"label":[1],"enableExpand":[516,"enable-expand"],"size":[1],"_expanded":[32]}]]],["p-1f50fa05",[[1,"ez-alert",{"alertType":[513,"alert-type"]}]]],["p-650e4b6d",[[1,"ez-badge",{"size":[513],"label":[513],"iconLeft":[513,"icon-left"],"iconRight":[513,"icon-right"],"position":[1040],"hasSlot":[32]}]]],["p-17be134a",[[1,"ez-chip",{"label":[513],"enabled":[516],"removePosition":[513,"remove-position"],"mode":[513],"value":[1540],"showNativeTooltip":[4,"show-native-tooltip"],"setFocus":[64],"setBlur":[64]}]]],["p-555c9018",[[1,"ez-file-item",{"canRemove":[4,"can-remove"],"fileName":[1,"file-name"],"iconName":[1,"icon-name"],"fileSize":[2,"file-size"],"progress":[2]}]]],["p-bc2f844e",[[0,"ez-application"]]],["p-5b205c80",[[1,"ez-chart",{"type":[1],"xAxis":[16],"yAxis":[16],"chartTitle":[1,"chart-title"],"chartSubTitle":[1,"chart-sub-title"],"legendEnabled":[4,"legend-enabled"],"series":[16],"width":[2],"height":[2]}]]],["p-5ed81457",[[1,"ez-loading-bar",{"_showLoading":[32],"hide":[64],"show":[64]}]]],["p-42533ea4",[[1,"ez-modal",{"modalSize":[1,"modal-size"],"align":[1],"heightMode":[1,"height-mode"],"opened":[1028],"closeEsc":[4,"close-esc"],"closeOutsideClick":[4,"close-outside-click"],"closeOutsideLeave":[4,"close-outside-leave"],"scrim":[1]}]]],["p-c36b7c56",[[1,"ez-popup",{"size":[1],"opened":[1540],"useHeader":[516,"use-header"],"heightMode":[513,"height-mode"],"ezTitle":[1,"ez-title"],"enabledScroll":[4,"enabled-scroll"]}]]],["p-9f5fa3f9",[[1,"ez-radio-button",{"value":[1544],"options":[1040],"enabled":[516],"label":[513],"direction":[1537]}]]],["p-85c8baae",[[0,"ez-skeleton",{"count":[2],"variant":[1],"width":[1],"height":[1],"marginBottom":[1,"margin-bottom"],"animation":[1]}]]],["p-1285c902",[[0,"ez-split-panel",{"direction":[1],"anchorToExpand":[4,"anchor-to-expand"],"rebuildLayout":[64]}]]],["p-8df1ca33",[[1,"ez-toast",{"message":[1025],"fadeTime":[1026,"fade-time"],"useIcon":[1028,"use-icon"],"canClose":[1028,"can-close"],"show":[64]}]]],["p-44caad9a",[[0,"ez-view-stack",{"show":[64],"getSelectedIndex":[64]}]]],["p-c0d9c4f8",[[1,"ez-tabselector",{"selectedIndex":[1538,"selected-index"],"selectedTab":[1537,"selected-tab"],"tabs":[1],"_processedTabs":[32],"goToTab":[64]}]]],["p-8888d9ed",[[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"]]]]],["p-784fe207",[[2,"ez-multi-selection-list",{"columnName":[1,"column-name"],"dataSource":[16],"useOptions":[1028,"use-options"],"options":[1040],"isTextSearch":[4,"is-text-search"],"filteredOptions":[32],"displayOptions":[32],"viewScenario":[32],"displayOptionToCheckAllItems":[32],"clearFilteredOptions":[64]}]]],["p-84e439b9",[[1,"ez-collapsible-box",{"value":[1540],"boxBordered":[4,"box-bordered"],"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-7922142b",[[1,"ez-combo-box",{"limitCharsToSearch":[2,"limit-chars-to-search"],"value":[1537],"label":[513],"enabled":[516],"options":[1040],"errorMessage":[1537,"error-message"],"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],"hideErrorOnFocusOut":[4,"hide-error-on-focus-out"],"listOptionsPosition":[16],"isTextSearch":[4,"is-text-search"],"_preSelection":[32],"_visibleOptions":[32],"_startLoading":[32],"_showLoading":[32],"_criteria":[32],"getValueAsync":[64],"setFocus":[64],"setBlur":[64],"isInvalid":[64],"clearValue":[64]},[[11,"scroll","scrollListener"]]]]],["p-e85c48d7",[[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-2097d0cf",[[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],"_value":[32],"setFocus":[64],"setBlur":[64],"isInvalid":[64],"getValueAsync":[64]}]]],["p-a80b1287",[[1,"ez-popover",{"autoClose":[516,"auto-close"],"boxWidth":[513,"box-width"],"opened":[1540],"innerElement":[1537,"inner-element"],"overlayType":[513,"overlay-type"],"updatePosition":[64],"show":[64],"showUnder":[64],"hide":[64]}]]],["p-3b4eeeb6",[[1,"ez-list",{"dataSource":[1040],"listMode":[1,"list-mode"],"useGroups":[1540,"use-groups"],"ezDraggable":[1028,"ez-draggable"],"ezSelectable":[1028,"ez-selectable"],"itemSlotBuilder":[1040],"itemLeftSlotBuilder":[1040],"hoverFeedback":[1028,"hover-feedback"],"_listItems":[32],"_listGroupItems":[32],"clearHistory":[64],"scrollToTop":[64],"setSelection":[64],"getSelection":[64],"getList":[64],"removeSelection":[64]}]]],["p-0306dff7",[[1,"ez-calendar",{"value":[1040],"floating":[516],"time":[516],"showSeconds":[516,"show-seconds"],"show":[64],"fitVertical":[64],"fitHorizontal":[64],"hide":[64]},[[11,"scroll","scrollListener"]]]]],["p-5bd5e68f",[[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"],"password":[4],"setFocus":[64],"setBlur":[64],"isInvalid":[64]}]]],["p-bae4e180",[[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],"getValueAsync":[64]}]]],["p-af95cd16",[[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],"getValueAsync":[64]}]]],["p-072e6347",[[1,"ez-dropdown",{"items":[1040],"value":[1040],"itemBuilder":[16]},[[4,"click","handleClickOutside"]]]]],["p-9050d2cd",[[1,"ez-text-area",{"label":[513],"value":[1537],"enabled":[516],"errorMessage":[1537,"error-message"],"rows":[1538],"canShowError":[516,"can-show-error"],"mode":[513],"enableResize":[516,"enable-resize"],"appendTextToSelection":[64],"setFocus":[64],"setBlur":[64],"isInvalid":[64]}]]],["p-77a4bd35",[[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-7af81663",[[0,"multi-selection-box-message",{"message":[1]}],[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-card-item",{"item":[16],"enableKey":[4,"enable-key"]}]]],["p-08061683",[[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"],"hideErrorOnFocusOut":[4,"hide-error-on-focus-out"],"listOptionsPosition":[16],"isTextSearch":[4,"is-text-search"],"ignoreLimitCharsToSearch":[4,"ignore-limit-chars-to-search"],"options":[1040],"suppressSearch":[4,"suppress-search"],"fromGrid":[4,"from-grid"],"_preSelection":[32],"_visibleOptions":[32],"_startLoading":[32],"_showLoading":[32],"_criteria":[32],"getValueAsync":[64],"setFocus":[64],"setBlur":[64],"isInvalid":[64],"clearValue":[64]},[[11,"scroll","scrollListener"]]]]],["p-bf79aaa1",[[1,"ez-check",{"label":[513],"value":[1540],"enabled":[1540],"indeterminate":[1540],"mode":[513],"compact":[4],"getMode":[64],"setFocus":[64]}]]],["p-7bc07c31",[[1,"ez-icon",{"size":[513],"href":[513],"iconName":[513,"icon-name"]}]]],["p-13d2fe2d",[[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-ecaa643e",[[2,"ez-custom-form-input",{"customEditor":[16],"formViewField":[16],"value":[1032],"detailContext":[1,"detail-context"],"builderFallback":[16],"selectedRecord":[16],"gui":[32],"setFocus":[64],"setBlur":[64],"isInvalid":[64]}],[1,"ez-text-edit",{"value":[1],"styled":[16],"_newValue":[32],"applyFocusSelect":[64]}]]],["p-cdc472cc",[[2,"ez-form-view",{"fields":[16],"selectedRecord":[16],"_customEditors":[32],"showUp":[64],"addCustomEditor":[64],"setFieldProp":[64]}]]],["p-fcf0acce",[[2,"ez-form",{"dataUnit":[1040],"config":[16],"recordsValidator":[16],"fieldToFocus":[1,"field-to-focus"],"onlyStaticFields":[4,"only-static-fields"],"_fieldsProps":[32],"validate":[64],"addCustomEditor":[64],"setFieldProp":[64]}]]],["p-baf80b13",[[0,"filter-column",{"opened":[4],"columnName":[1,"column-name"],"columnLabel":[1,"column-label"],"gridHeaderHidden":[4,"grid-header-hidden"],"noHeaderTaskBar":[1028,"no-header-task-bar"],"dataSource":[16],"dataUnit":[16],"options":[1040],"selectedItems":[32],"fieldDescriptor":[32],"useOptions":[32],"isTextSearch":[32],"hide":[64],"show":[64]}]]],["p-a31b9c90",[[1,"ez-sidebar-button"],[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"]]]]]]'),e)));
|
|
1
|
+
import{p as e,b as o}from"./p-23a36bb6.js";export{s as setNonce}from"./p-23a36bb6.js";(()=>{const o=import.meta.url,t={};return""!==o&&(t.resourcesUrl=new URL(".",o).href),e(t)})().then((e=>o(JSON.parse('[["p-5ee2dc4e",[[6,"ez-grid",{"multipleSelection":[4,"multiple-selection"],"config":[1040],"selectionToastConfig":[16],"serverUrl":[1,"server-url"],"dataUnit":[16],"statusResolver":[16],"columnfilterDataSource":[16],"useEnterLikeTab":[4,"use-enter-like-tab"],"recordsValidator":[16],"canEdit":[4,"can-edit"],"autoFocus":[4,"auto-focus"],"_paginationInfo":[32],"_paginationChangedByKeyboard":[32],"_showSelectionCounter":[32],"_isAllSelection":[32],"_currentPageSelected":[32],"_selectionCount":[32],"_hasLeftButtons":[32],"_customFormatters":[32],"setColumnsDef":[64],"addColumnMenuItem":[64],"setColumnsState":[64],"setData":[64],"getSelection":[64],"getColumnsState":[64],"getColumns":[64],"quickFilter":[64],"locateColumn":[64],"filterColumns":[64],"addCustomEditor":[64],"addGridCustomRender":[64],"addCustomValueFormatter":[64],"removeCustomValueFormatter":[64],"refreshSelectedRows":[64],"getCustomValueFormatter":[64],"setFocus":[64]},[[0,"ezSelectionChange","onSelectionChange"]]]]],["p-6e429cff",[[1,"ez-guide-navigator",{"open":[1540],"selectedId":[1537,"selected-id"],"items":[16],"tooltipResolver":[16],"filterText":[32],"disableItem":[64],"openGuideNavidator":[64],"enableItem":[64],"updateItem":[64],"getItem":[64],"getCurrentPath":[64],"selectGuide":[64],"getParent":[64]}]]],["p-09de35a2",[[1,"ez-alert-list",{"alerts":[1040],"enableDragAndDrop":[516,"enable-drag-and-drop"],"enableExpand":[516,"enable-expand"],"itemRightSlotBuilder":[16],"opened":[1540],"expanded":[1540],"_container":[32]}]]],["p-ecc2c1ec",[[1,"ez-sidebar-navigator",{"type":[1],"mode":[1025],"size":[1],"isResponsive":[4,"is-responsive"],"titleMenu":[1,"title-menu"],"showCollapseMenu":[4,"show-collapse-menu"],"showFixedButton":[4,"show-fixed-button"],"open":[32],"changeModeMenu":[64],"closeSidebar":[64],"openSidebar":[64]}]]],["p-bcb53f27",[[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],"showActions":[64],"isOpened":[64]}]]],["p-1e7a8633",[[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-49456b34",[[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]},[[8,"keydown","handleKeyDown"]]]]],["p-34b6916c",[[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"],"showCloseButton":[4,"show-close-button"]},[[4,"ezCloseModal","handleEzModalAction"]]]]],["p-3faa2b46",[[1,"ez-split-button",{"enabled":[516],"iconName":[513,"icon-name"],"image":[513],"items":[16],"label":[513],"leftTitle":[513,"left-title"],"rightTitle":[513,"right-title"],"mode":[513],"size":[513],"show":[32],"setBlur":[64],"setLeftButtonFocus":[64],"setRightButtonFocus":[64]},[[2,"click","clickListener"]]]]],["p-922ac38b",[[4,"ez-split-item",{"label":[1],"enableExpand":[516,"enable-expand"],"size":[1],"_expanded":[32]}]]],["p-1f50fa05",[[1,"ez-alert",{"alertType":[513,"alert-type"]}]]],["p-650e4b6d",[[1,"ez-badge",{"size":[513],"label":[513],"iconLeft":[513,"icon-left"],"iconRight":[513,"icon-right"],"position":[1040],"hasSlot":[32]}]]],["p-17be134a",[[1,"ez-chip",{"label":[513],"enabled":[516],"removePosition":[513,"remove-position"],"mode":[513],"value":[1540],"showNativeTooltip":[4,"show-native-tooltip"],"setFocus":[64],"setBlur":[64]}]]],["p-555c9018",[[1,"ez-file-item",{"canRemove":[4,"can-remove"],"fileName":[1,"file-name"],"iconName":[1,"icon-name"],"fileSize":[2,"file-size"],"progress":[2]}]]],["p-bc2f844e",[[0,"ez-application"]]],["p-5b205c80",[[1,"ez-chart",{"type":[1],"xAxis":[16],"yAxis":[16],"chartTitle":[1,"chart-title"],"chartSubTitle":[1,"chart-sub-title"],"legendEnabled":[4,"legend-enabled"],"series":[16],"width":[2],"height":[2]}]]],["p-5ed81457",[[1,"ez-loading-bar",{"_showLoading":[32],"hide":[64],"show":[64]}]]],["p-42533ea4",[[1,"ez-modal",{"modalSize":[1,"modal-size"],"align":[1],"heightMode":[1,"height-mode"],"opened":[1028],"closeEsc":[4,"close-esc"],"closeOutsideClick":[4,"close-outside-click"],"closeOutsideLeave":[4,"close-outside-leave"],"scrim":[1]}]]],["p-c36b7c56",[[1,"ez-popup",{"size":[1],"opened":[1540],"useHeader":[516,"use-header"],"heightMode":[513,"height-mode"],"ezTitle":[1,"ez-title"],"enabledScroll":[4,"enabled-scroll"]}]]],["p-9f5fa3f9",[[1,"ez-radio-button",{"value":[1544],"options":[1040],"enabled":[516],"label":[513],"direction":[1537]}]]],["p-85c8baae",[[0,"ez-skeleton",{"count":[2],"variant":[1],"width":[1],"height":[1],"marginBottom":[1,"margin-bottom"],"animation":[1]}]]],["p-1285c902",[[0,"ez-split-panel",{"direction":[1],"anchorToExpand":[4,"anchor-to-expand"],"rebuildLayout":[64]}]]],["p-8df1ca33",[[1,"ez-toast",{"message":[1025],"fadeTime":[1026,"fade-time"],"useIcon":[1028,"use-icon"],"canClose":[1028,"can-close"],"show":[64]}]]],["p-44caad9a",[[0,"ez-view-stack",{"show":[64],"getSelectedIndex":[64]}]]],["p-c0d9c4f8",[[1,"ez-tabselector",{"selectedIndex":[1538,"selected-index"],"selectedTab":[1537,"selected-tab"],"tabs":[1],"_processedTabs":[32],"goToTab":[64]}]]],["p-8888d9ed",[[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"]]]]],["p-784fe207",[[2,"ez-multi-selection-list",{"columnName":[1,"column-name"],"dataSource":[16],"useOptions":[1028,"use-options"],"options":[1040],"isTextSearch":[4,"is-text-search"],"filteredOptions":[32],"displayOptions":[32],"viewScenario":[32],"displayOptionToCheckAllItems":[32],"clearFilteredOptions":[64]}]]],["p-84e439b9",[[1,"ez-collapsible-box",{"value":[1540],"boxBordered":[4,"box-bordered"],"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-7922142b",[[1,"ez-combo-box",{"limitCharsToSearch":[2,"limit-chars-to-search"],"value":[1537],"label":[513],"enabled":[516],"options":[1040],"errorMessage":[1537,"error-message"],"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],"hideErrorOnFocusOut":[4,"hide-error-on-focus-out"],"listOptionsPosition":[16],"isTextSearch":[4,"is-text-search"],"_preSelection":[32],"_visibleOptions":[32],"_startLoading":[32],"_showLoading":[32],"_criteria":[32],"getValueAsync":[64],"setFocus":[64],"setBlur":[64],"isInvalid":[64],"clearValue":[64]},[[11,"scroll","scrollListener"]]]]],["p-e85c48d7",[[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-2097d0cf",[[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],"_value":[32],"setFocus":[64],"setBlur":[64],"isInvalid":[64],"getValueAsync":[64]}]]],["p-a80b1287",[[1,"ez-popover",{"autoClose":[516,"auto-close"],"boxWidth":[513,"box-width"],"opened":[1540],"innerElement":[1537,"inner-element"],"overlayType":[513,"overlay-type"],"updatePosition":[64],"show":[64],"showUnder":[64],"hide":[64]}]]],["p-3b4eeeb6",[[1,"ez-list",{"dataSource":[1040],"listMode":[1,"list-mode"],"useGroups":[1540,"use-groups"],"ezDraggable":[1028,"ez-draggable"],"ezSelectable":[1028,"ez-selectable"],"itemSlotBuilder":[1040],"itemLeftSlotBuilder":[1040],"hoverFeedback":[1028,"hover-feedback"],"_listItems":[32],"_listGroupItems":[32],"clearHistory":[64],"scrollToTop":[64],"setSelection":[64],"getSelection":[64],"getList":[64],"removeSelection":[64]}]]],["p-0306dff7",[[1,"ez-calendar",{"value":[1040],"floating":[516],"time":[516],"showSeconds":[516,"show-seconds"],"show":[64],"fitVertical":[64],"fitHorizontal":[64],"hide":[64]},[[11,"scroll","scrollListener"]]]]],["p-5bd5e68f",[[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"],"password":[4],"setFocus":[64],"setBlur":[64],"isInvalid":[64]}]]],["p-bae4e180",[[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],"getValueAsync":[64]}]]],["p-af95cd16",[[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],"getValueAsync":[64]}]]],["p-072e6347",[[1,"ez-dropdown",{"items":[1040],"value":[1040],"itemBuilder":[16]},[[4,"click","handleClickOutside"]]]]],["p-9050d2cd",[[1,"ez-text-area",{"label":[513],"value":[1537],"enabled":[516],"errorMessage":[1537,"error-message"],"rows":[1538],"canShowError":[516,"can-show-error"],"mode":[513],"enableResize":[516,"enable-resize"],"appendTextToSelection":[64],"setFocus":[64],"setBlur":[64],"isInvalid":[64]}]]],["p-77a4bd35",[[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-7af81663",[[0,"multi-selection-box-message",{"message":[1]}],[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-card-item",{"item":[16],"enableKey":[4,"enable-key"]}]]],["p-08061683",[[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"],"hideErrorOnFocusOut":[4,"hide-error-on-focus-out"],"listOptionsPosition":[16],"isTextSearch":[4,"is-text-search"],"ignoreLimitCharsToSearch":[4,"ignore-limit-chars-to-search"],"options":[1040],"suppressSearch":[4,"suppress-search"],"fromGrid":[4,"from-grid"],"_preSelection":[32],"_visibleOptions":[32],"_startLoading":[32],"_showLoading":[32],"_criteria":[32],"getValueAsync":[64],"setFocus":[64],"setBlur":[64],"isInvalid":[64],"clearValue":[64]},[[11,"scroll","scrollListener"]]]]],["p-bf79aaa1",[[1,"ez-check",{"label":[513],"value":[1540],"enabled":[1540],"indeterminate":[1540],"mode":[513],"compact":[4],"getMode":[64],"setFocus":[64]}]]],["p-7bc07c31",[[1,"ez-icon",{"size":[513],"href":[513],"iconName":[513,"icon-name"]}]]],["p-13d2fe2d",[[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-e26f12dd",[[2,"ez-custom-form-input",{"customEditor":[16],"formViewField":[16],"value":[1032],"detailContext":[1,"detail-context"],"builderFallback":[16],"selectedRecord":[16],"gui":[32],"setFocus":[64],"setBlur":[64],"isInvalid":[64]}],[1,"ez-text-edit",{"value":[1],"styled":[16],"_newValue":[32],"applyFocusSelect":[64]}]]],["p-cdc472cc",[[2,"ez-form-view",{"fields":[16],"selectedRecord":[16],"_customEditors":[32],"showUp":[64],"addCustomEditor":[64],"setFieldProp":[64]}]]],["p-fcf0acce",[[2,"ez-form",{"dataUnit":[1040],"config":[16],"recordsValidator":[16],"fieldToFocus":[1,"field-to-focus"],"onlyStaticFields":[4,"only-static-fields"],"_fieldsProps":[32],"validate":[64],"addCustomEditor":[64],"setFieldProp":[64]}]]],["p-baf80b13",[[0,"filter-column",{"opened":[4],"columnName":[1,"column-name"],"columnLabel":[1,"column-label"],"gridHeaderHidden":[4,"grid-header-hidden"],"noHeaderTaskBar":[1028,"no-header-task-bar"],"dataSource":[16],"dataUnit":[16],"options":[1040],"selectedItems":[32],"fieldDescriptor":[32],"useOptions":[32],"isTextSearch":[32],"hide":[64],"show":[64]}]]],["p-a31b9c90",[[1,"ez-sidebar-button"],[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"]]]]]]'),e)));
|