@sankhyalabs/sankhyablocks 0.0.0-feat-dev-41261.3 → 0.0.0-feat-dev-KB-66081.0
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/{ContinuousInsertUtils-29b65619.js → ContinuousInsertUtils-807730a8.js} +1 -1
- package/dist/cjs/{SnkMessageBuilder-bae64d0d.js → SnkMessageBuilder-780f3434.js} +9 -0
- package/dist/cjs/index-f9e81701.js +8 -0
- package/dist/cjs/input-distinct-search_2.cjs.entry.js +451 -0
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/sankhyablocks.cjs.js +1 -1
- package/dist/cjs/snk-application.cjs.entry.js +1 -1
- package/dist/cjs/snk-attach.cjs.entry.js +1 -1
- package/dist/cjs/snk-crud.cjs.entry.js +2 -3
- package/dist/cjs/snk-data-exporter.cjs.entry.js +2 -2
- package/dist/cjs/{snk-data-unit-668dc5e8.js → snk-data-unit-60866952.js} +1 -1
- package/dist/cjs/snk-data-unit.cjs.entry.js +2 -2
- package/dist/cjs/snk-detail-view.cjs.entry.js +2 -2
- package/dist/cjs/snk-distinct-search.cjs.entry.js +119 -0
- package/dist/cjs/snk-filter-binary-select.cjs.entry.js +1 -1
- package/dist/cjs/snk-filter-item.cjs.entry.js +0 -4
- package/dist/cjs/snk-filter-text.cjs.entry.js +1 -2
- package/dist/cjs/snk-form-config.cjs.entry.js +3 -4
- package/dist/cjs/snk-grid.cjs.entry.js +10 -7
- package/dist/cjs/{snk-guides-viewer-4236cb9d.js → snk-guides-viewer-68777d37.js} +2 -3
- package/dist/cjs/snk-guides-viewer.cjs.entry.js +1 -1
- package/dist/cjs/snk-personalized-filter-editor.cjs.entry.js +1 -1
- package/dist/cjs/snk-print-selector.cjs.entry.js +1 -1
- package/dist/cjs/snk-simple-crud.cjs.entry.js +7 -6
- package/dist/cjs/snk-taskbar.cjs.entry.js +0 -1
- package/dist/collection/collection-manifest.json +3 -0
- package/dist/collection/components/snk-attach/snk-attach.js +1 -1
- package/dist/collection/components/snk-crud/snk-crud.js +2 -20
- package/dist/collection/components/snk-crud/subcomponents/snk-guides-viewer.css +6 -6
- package/dist/collection/components/snk-crud/subcomponents/snk-guides-viewer.js +1 -19
- package/dist/collection/components/snk-distinct-search/snk-distinct-search.css +4 -0
- package/dist/collection/components/snk-distinct-search/snk-distinct-search.js +367 -0
- package/dist/collection/components/snk-distinct-search/subcomponents/input-distinct-search/input-distinct-search.css +109 -0
- package/dist/collection/components/snk-distinct-search/subcomponents/input-distinct-search/input-distinct-search.js +522 -0
- package/dist/collection/components/snk-distinct-search/subcomponents/search-modal/search-modal.css +27 -0
- package/dist/collection/components/snk-distinct-search/subcomponents/search-modal/search-modal.js +556 -0
- package/dist/collection/components/snk-distinct-search/types/index.js +1 -0
- package/dist/collection/components/snk-distinct-search/utils/filter-distinct-search.js +13 -0
- package/dist/collection/components/snk-filter-bar/filter-item/editors/snk-filter-binary-select.js +1 -1
- package/dist/collection/components/snk-filter-bar/filter-item/editors/snk-filter-text.js +1 -2
- package/dist/collection/components/snk-filter-bar/filter-item/editors/snk-personalized-filter-editor/snk-personalized-filter-editor.js +1 -1
- package/dist/collection/components/snk-filter-bar/filter-item/snk-filter-item.js +1 -5
- package/dist/collection/components/snk-form-config/snk-form-config.js +3 -21
- package/dist/collection/components/snk-grid/snk-grid.js +9 -15
- package/dist/collection/components/snk-print-selector/snk-print-selector.js +1 -1
- package/dist/collection/components/snk-simple-crud/snk-simple-crud.js +6 -5
- package/dist/collection/components/snk-taskbar/snk-taskbar.js +0 -1
- package/dist/collection/lib/http/data-fetcher/fetchers/distinct-search-fetcher.js +25 -0
- package/dist/collection/lib/message/SnkMessageBuilder.js +2 -0
- package/dist/collection/lib/message/resources/snk-distinct-search.msg.js +8 -0
- package/dist/collection/lib/utils/ContinuousInsertUtils.js +1 -1
- package/dist/components/ContinuousInsertUtils.js +1 -1
- package/dist/components/SnkMessageBuilder.js +9 -0
- package/dist/components/filter-distinct-search.js +15 -0
- package/dist/components/index.d.ts +3 -0
- package/dist/components/index.js +3 -0
- package/dist/components/input-distinct-search.d.ts +11 -0
- package/dist/components/input-distinct-search.js +6 -0
- package/dist/components/input-distinct-search2.js +261 -0
- package/dist/components/search-modal.d.ts +11 -0
- package/dist/components/search-modal.js +6 -0
- package/dist/components/search-modal2.js +247 -0
- package/dist/components/snk-attach2.js +1 -1
- package/dist/components/snk-crud.js +2 -4
- package/dist/components/snk-detail-view2.js +2 -4
- package/dist/components/snk-distinct-search.d.ts +11 -0
- package/dist/components/snk-distinct-search.js +158 -0
- package/dist/components/snk-filter-binary-select.js +1 -1
- package/dist/components/snk-filter-item2.js +1 -5
- package/dist/components/snk-filter-text.js +1 -2
- package/dist/components/snk-form-config2.js +3 -5
- package/dist/components/snk-grid2.js +10 -7
- package/dist/components/snk-personalized-filter-editor.js +1 -1
- package/dist/components/snk-print-selector.js +1 -1
- package/dist/components/snk-simple-crud2.js +6 -5
- package/dist/components/snk-taskbar2.js +0 -1
- package/dist/esm/{ContinuousInsertUtils-30caa626.js → ContinuousInsertUtils-1a82a768.js} +1 -1
- package/dist/esm/{SnkMessageBuilder-6fff4a4c.js → SnkMessageBuilder-46e6d67a.js} +9 -0
- package/dist/esm/index-a7d3d3f1.js +8 -0
- package/dist/esm/input-distinct-search_2.entry.js +446 -0
- package/dist/esm/loader.js +1 -1
- package/dist/esm/sankhyablocks.js +1 -1
- package/dist/esm/snk-application.entry.js +1 -1
- package/dist/esm/snk-attach.entry.js +1 -1
- package/dist/esm/snk-crud.entry.js +2 -3
- package/dist/esm/snk-data-exporter.entry.js +2 -2
- package/dist/esm/{snk-data-unit-0fdfb6c2.js → snk-data-unit-8cf0f5af.js} +1 -1
- package/dist/esm/snk-data-unit.entry.js +2 -2
- package/dist/esm/snk-detail-view.entry.js +2 -2
- package/dist/esm/snk-distinct-search.entry.js +115 -0
- package/dist/esm/snk-filter-binary-select.entry.js +1 -1
- package/dist/esm/snk-filter-item.entry.js +1 -5
- package/dist/esm/snk-filter-text.entry.js +1 -2
- package/dist/esm/snk-form-config.entry.js +3 -4
- package/dist/esm/snk-grid.entry.js +10 -7
- package/dist/esm/{snk-guides-viewer-8934c537.js → snk-guides-viewer-b5dd30e6.js} +2 -3
- package/dist/esm/snk-guides-viewer.entry.js +1 -1
- package/dist/esm/snk-personalized-filter-editor.entry.js +1 -1
- package/dist/esm/snk-print-selector.entry.js +1 -1
- package/dist/esm/snk-simple-crud.entry.js +7 -6
- package/dist/esm/snk-taskbar.entry.js +0 -1
- package/dist/sankhyablocks/p-0035ad6e.entry.js +1 -0
- package/dist/sankhyablocks/p-18ed15f4.entry.js +1 -0
- package/dist/sankhyablocks/{p-2923c1b5.js → p-3ae9d08a.js} +1 -1
- package/dist/sankhyablocks/p-3e3cc017.js +1 -0
- package/dist/sankhyablocks/{p-8c235d4c.entry.js → p-41f8bfa3.entry.js} +1 -1
- package/dist/sankhyablocks/{p-a42e7a1e.entry.js → p-439a2c05.entry.js} +1 -1
- package/dist/sankhyablocks/p-50779ad3.entry.js +1 -0
- package/dist/sankhyablocks/{p-be5d8fcb.entry.js → p-5ad6df2b.entry.js} +1 -1
- package/dist/sankhyablocks/{p-434817f0.entry.js → p-72fc257b.entry.js} +1 -1
- package/dist/sankhyablocks/{p-01086ff7.entry.js → p-7eef0898.entry.js} +1 -1
- package/dist/sankhyablocks/p-81b0d336.js +1 -0
- package/dist/sankhyablocks/{p-50611876.entry.js → p-96a89d58.entry.js} +1 -1
- package/dist/sankhyablocks/{p-b9c67e45.entry.js → p-a74e4f5c.entry.js} +1 -1
- package/dist/sankhyablocks/p-aa03dfbe.entry.js +1 -0
- package/dist/sankhyablocks/p-b11aa1e0.entry.js +1 -0
- package/dist/sankhyablocks/{p-5dd8cf4f.js → p-bff1133e.js} +1 -1
- package/dist/sankhyablocks/p-c78aef4a.entry.js +1 -0
- package/dist/sankhyablocks/{p-49f1c9be.entry.js → p-d80a84fd.entry.js} +1 -1
- package/dist/sankhyablocks/p-d836f72b.entry.js +1 -0
- package/dist/sankhyablocks/{p-430e4d3c.entry.js → p-dfcef14c.entry.js} +1 -1
- package/dist/sankhyablocks/{p-dcead955.entry.js → p-e16e87fc.entry.js} +1 -1
- package/dist/sankhyablocks/p-e8763234.entry.js +1 -0
- package/dist/sankhyablocks/sankhyablocks.esm.js +1 -1
- package/dist/types/components/snk-crud/snk-crud.d.ts +0 -4
- package/dist/types/components/snk-crud/subcomponents/snk-guides-viewer.d.ts +0 -4
- package/dist/types/components/snk-distinct-search/snk-distinct-search.d.ts +81 -0
- package/dist/types/components/snk-distinct-search/subcomponents/input-distinct-search/input-distinct-search.d.ts +101 -0
- package/dist/types/components/snk-distinct-search/subcomponents/search-modal/search-modal.d.ts +125 -0
- package/dist/types/components/snk-distinct-search/types/index.d.ts +8 -0
- package/dist/types/components/snk-distinct-search/utils/filter-distinct-search.d.ts +3 -0
- package/dist/types/components/snk-filter-bar/filter-item/snk-filter-item.d.ts +0 -2
- package/dist/types/components/snk-form-config/snk-form-config.d.ts +0 -4
- package/dist/types/components/snk-grid/snk-grid.d.ts +1 -0
- package/dist/types/components/snk-simple-crud/snk-simple-crud.d.ts +1 -0
- package/dist/types/components.d.ts +376 -24
- package/dist/types/lib/http/data-fetcher/fetchers/distinct-search-fetcher.d.ts +6 -0
- package/dist/types/lib/message/resources/snk-distinct-search.msg.d.ts +2 -0
- package/dist/types/lib/utils/ContinuousInsertUtils.d.ts +1 -1
- package/package.json +1 -1
- package/react/components.d.ts +3 -0
- package/react/components.js +3 -0
- package/react/components.js.map +1 -1
- package/dist/collection/components/snk-filter-bar/filter-item/filter-item-type-mask.enum.js +0 -8
- package/dist/sankhyablocks/p-11755f50.entry.js +0 -1
- package/dist/sankhyablocks/p-16869f77.js +0 -1
- package/dist/sankhyablocks/p-17425c72.js +0 -1
- package/dist/sankhyablocks/p-2aae03a1.entry.js +0 -1
- package/dist/sankhyablocks/p-5b51491f.entry.js +0 -1
- package/dist/sankhyablocks/p-92eadb1c.entry.js +0 -1
- package/dist/sankhyablocks/p-a75d242d.entry.js +0 -1
- package/dist/sankhyablocks/p-feba9d4b.entry.js +0 -1
- package/dist/types/components/snk-filter-bar/filter-item/filter-item-type-mask.enum.d.ts +0 -7
|
@@ -249,7 +249,7 @@ class ContinuousInsertUtils {
|
|
|
249
249
|
label: enableContinuousInsert ? 'Desativar inclusão contínua' : 'Ativar inclusão contínua',
|
|
250
250
|
enabled: true,
|
|
251
251
|
itemBuilder: () => {
|
|
252
|
-
return (index.h("div", { class: "ez-dropdown__item-wrapper", onClick: handleEnableContinuousInsert },
|
|
252
|
+
return (index.h("div", { class: "ez-dropdown__item-wrapper", onClick: () => handleEnableContinuousInsert() },
|
|
253
253
|
index.h("span", { class: "ez-dropdown__item-label" }, enableContinuousInsert ? 'Desativar inclusão contínua' : 'Ativar inclusão contínua')));
|
|
254
254
|
},
|
|
255
255
|
};
|
|
@@ -194,6 +194,14 @@ const snkAttachMessages$1 = {
|
|
|
194
194
|
}
|
|
195
195
|
};
|
|
196
196
|
|
|
197
|
+
const snkDistinctSearchMessages = {
|
|
198
|
+
titleBadgeNew: "novo",
|
|
199
|
+
titleAdd: "Adicionar",
|
|
200
|
+
availableResults: "resultados disponíveis",
|
|
201
|
+
availableResult: "resultado disponível",
|
|
202
|
+
limitResult: "Esta pesquisa foi limitada, existem mais resultados",
|
|
203
|
+
};
|
|
204
|
+
|
|
197
205
|
const snkConfigOptionsMessages = {
|
|
198
206
|
label: {
|
|
199
207
|
nameField: "Nome do Campo *",
|
|
@@ -574,6 +582,7 @@ class SnkMessageBuilder {
|
|
|
574
582
|
snkEntityList: snkEntityListMessages,
|
|
575
583
|
snkActionsButton: snkActionsButtonMessages,
|
|
576
584
|
snkPrintSelector: snkPrintSelectorMessages,
|
|
585
|
+
snkDistinctSearch: snkDistinctSearchMessages,
|
|
577
586
|
};
|
|
578
587
|
this._currentOperation = exports.OperationMap.CLEAN;
|
|
579
588
|
this._domainName = domainName;
|
|
@@ -2152,6 +2152,10 @@ const loadModule = (cmpMeta, hostRef, hmrVersionId) => {
|
|
|
2152
2152
|
return Promise.resolve().then(function () { return /*#__PURE__*/_interopNamespace(require(
|
|
2153
2153
|
/* webpackMode: "lazy" */
|
|
2154
2154
|
'./snk-custom-slot-elements.cjs.entry.js')); }).then(processMod, consoleError);
|
|
2155
|
+
case 'snk-distinct-search.cjs':
|
|
2156
|
+
return Promise.resolve().then(function () { return /*#__PURE__*/_interopNamespace(require(
|
|
2157
|
+
/* webpackMode: "lazy" */
|
|
2158
|
+
'./snk-distinct-search.cjs.entry.js')); }).then(processMod, consoleError);
|
|
2155
2159
|
case 'snk-entity-list.cjs':
|
|
2156
2160
|
return Promise.resolve().then(function () { return /*#__PURE__*/_interopNamespace(require(
|
|
2157
2161
|
/* webpackMode: "lazy" */
|
|
@@ -2196,6 +2200,10 @@ const loadModule = (cmpMeta, hostRef, hmrVersionId) => {
|
|
|
2196
2200
|
return Promise.resolve().then(function () { return /*#__PURE__*/_interopNamespace(require(
|
|
2197
2201
|
/* webpackMode: "lazy" */
|
|
2198
2202
|
'./teste-pesquisa.cjs.entry.js')); }).then(processMod, consoleError);
|
|
2203
|
+
case 'input-distinct-search_2.cjs':
|
|
2204
|
+
return Promise.resolve().then(function () { return /*#__PURE__*/_interopNamespace(require(
|
|
2205
|
+
/* webpackMode: "lazy" */
|
|
2206
|
+
'./input-distinct-search_2.cjs.entry.js')); }).then(processMod, consoleError);
|
|
2199
2207
|
case 'snk-filter-modal-item.cjs':
|
|
2200
2208
|
return Promise.resolve().then(function () { return /*#__PURE__*/_interopNamespace(require(
|
|
2201
2209
|
/* webpackMode: "lazy" */
|
|
@@ -0,0 +1,451 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
const index = require('./index-f9e81701.js');
|
|
6
|
+
const core = require('@sankhyalabs/core');
|
|
7
|
+
const EzScrollDirection = require('@sankhyalabs/ezui/dist/collection/components/ez-scroller/EzScrollDirection');
|
|
8
|
+
|
|
9
|
+
function normalizeString(text = "") {
|
|
10
|
+
return text.normalize('NFD').replace(/[\u0300-\u036f/\s'"&.-]/g, "").toUpperCase();
|
|
11
|
+
}
|
|
12
|
+
function filterItems(searchArgument, distinctItems, maxItems) {
|
|
13
|
+
const normalizedSearch = normalizeString(searchArgument);
|
|
14
|
+
const filteredDistincts = distinctItems.filter((item) => normalizeString(item).startsWith(normalizedSearch));
|
|
15
|
+
return filteredDistincts.slice(0, maxItems - 1);
|
|
16
|
+
}
|
|
17
|
+
function getMatchOption(value, distinctItems) {
|
|
18
|
+
const normalizedSearch = normalizeString(value);
|
|
19
|
+
const item = distinctItems.find((item) => normalizeString(item) === normalizedSearch);
|
|
20
|
+
return item;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
const inputDistinctSearchCss = ":host{--max-height-popover:180px;--scrollbar--color-default:var(--scrollbar--default, #626e82);--scrollbar--color-background:var(--scrollbar--background, #E5EAF0);--scrollbar--color-hover:var(--scrollbar--hover, #2B3A54);--scrollbar--color-clicked:var(--scrollbar--clicked, #a2abb9);--scrollbar--border-radius:var(--border--radius-small, 6px);--scrollbar--width:var(--space--medium, 12px)}.divider{margin:var(--space--extra-small, 3px) 0;border:var(--border--small, 1px solid) var(--color--disable-secondary, #F2F5F8)}.new-value{color:var(--text--primary, #626e82);padding:var(--space--2xs, 8px) var(--space--3xs, 4px);font-size:var(--text--medium, 14px);font-family:var(--font-pattern, Roboto);cursor:pointer;border-radius:var(--border--radius-small, 6px);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;border:none;background:none;width:100%;display:flex;min-height:max-content}.new-value-selected{background-color:var(--color--primary-300, #E2F4EF)}.new-value:hover{background-color:var(--background--medium, #e0e0e0)}.popover-content{margin:var(--space--2xs, 6px);max-height:var(--max-height-popover);display:flex;flex-direction:column}.list-container{overflow:auto;scrollbar-width:thin;scrollbar-color:var(--scrollbar--color-clicked) var(--scrollbar--color-background)}.list-container::-webkit-scrollbar{background-color:var(--scrollbar--color-background);width:var(--scrollbar--width);max-width:var(--scrollbar--width);min-width:var(--scrollbar--width)}.list-container::-webkit-scrollbar-track{background-color:var(--scrollbar--color-background);border-radius:var(--scrollbar--border-radius)}.list-container::-webkit-scrollbar-thumb{background-color:var(--scrollbar--color-default);border-radius:var(--scrollbar--border-radius)}.list-container::-webkit-scrollbar-thumb:vertical:hover,.list-container::-webkit-scrollbar-thumb:horizontal:hover{background-color:var(--scrollbar--color-hover)}.list-container::-webkit-scrollbar-thumb:vertical:active,.list-container::-webkit-scrollbar-thumb:horizontal:active{background-color:var(--scrollbar--color-clicked)}ez-popover{--ez-popover__box--z-index:15}.space-error{--ez-popover__margin:-19px 0 0 0}ez-list{--ez-list__item--margin:0}ez-text-input{--ez-text-input__icon--margin:var(--space--xs, 12px)}.badge-primary{--ez-badge--background-color:var(--color--primary-300);--ez-badge--color:var(--color--primary)}";
|
|
24
|
+
|
|
25
|
+
const InputDistinctSearch = class {
|
|
26
|
+
constructor(hostRef) {
|
|
27
|
+
index.registerInstance(this, hostRef);
|
|
28
|
+
this.changeValue = index.createEvent(this, "changeValue", 7);
|
|
29
|
+
this.iconClick = index.createEvent(this, "iconClick", 7);
|
|
30
|
+
this.textValue = "";
|
|
31
|
+
this.isNewItem = false;
|
|
32
|
+
this.filteredItems = [];
|
|
33
|
+
this.isNewItemSelected = false;
|
|
34
|
+
this.distinctItems = [];
|
|
35
|
+
this.label = "";
|
|
36
|
+
this.value = "";
|
|
37
|
+
this.maxItems = 100;
|
|
38
|
+
this.debounceTime = 300;
|
|
39
|
+
this.canShowError = false;
|
|
40
|
+
this.mode = 'regular';
|
|
41
|
+
this.restrict = undefined;
|
|
42
|
+
this.errorMessage = undefined;
|
|
43
|
+
}
|
|
44
|
+
async observerValue(newValue) {
|
|
45
|
+
await this.selectedNewItem(newValue, true);
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* Seleciona um item
|
|
49
|
+
*/
|
|
50
|
+
async selectValue(value, isNewItem = false) {
|
|
51
|
+
this.isNewItem = isNewItem;
|
|
52
|
+
this.textValue = value;
|
|
53
|
+
await this._refFilterInput.setValue(value);
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* Método para limpa o campo de entrada de pesquisa
|
|
57
|
+
*/
|
|
58
|
+
clearInput() {
|
|
59
|
+
this._refFilterInput.setValue("");
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* Retorna se o conteúdo é inválido.
|
|
63
|
+
*/
|
|
64
|
+
isInvalid() {
|
|
65
|
+
return this._refFilterInput.isInvalid();
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* Remove o foco do campo
|
|
69
|
+
*/
|
|
70
|
+
setBlur() {
|
|
71
|
+
this._refFilterInput.setBlur();
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* Aplica o foco do campo
|
|
75
|
+
*/
|
|
76
|
+
setFocus() {
|
|
77
|
+
this._refFilterInput.setFocus();
|
|
78
|
+
}
|
|
79
|
+
getMessage(key) {
|
|
80
|
+
return this._application.messagesBuilder.getMessage(key, null);
|
|
81
|
+
}
|
|
82
|
+
async optionLoader(searchArgument) {
|
|
83
|
+
return new Promise((resolve) => {
|
|
84
|
+
if (this._debounceTimeout) {
|
|
85
|
+
clearTimeout(this._debounceTimeout);
|
|
86
|
+
}
|
|
87
|
+
this._debounceTimeout = setTimeout(() => {
|
|
88
|
+
this.filteredItems = filterItems(searchArgument, this.distinctItems, this.maxItems);
|
|
89
|
+
resolve();
|
|
90
|
+
}, this.debounceTime);
|
|
91
|
+
});
|
|
92
|
+
}
|
|
93
|
+
async openPopOver() {
|
|
94
|
+
var _a;
|
|
95
|
+
await ((_a = this._refPopOver) === null || _a === void 0 ? void 0 : _a.showUnder(this._refFilterInput));
|
|
96
|
+
}
|
|
97
|
+
async closePopOver() {
|
|
98
|
+
var _a;
|
|
99
|
+
this.isNewItemSelected = false;
|
|
100
|
+
await ((_a = this._refPopOver) === null || _a === void 0 ? void 0 : _a.hide());
|
|
101
|
+
await this._refList.removeSelection();
|
|
102
|
+
}
|
|
103
|
+
async onTextChange(event) {
|
|
104
|
+
this.textValue = event.detail;
|
|
105
|
+
await this.optionLoader(event.detail);
|
|
106
|
+
await this.selectFirstItem();
|
|
107
|
+
}
|
|
108
|
+
onIconClick() {
|
|
109
|
+
this.iconClick.emit();
|
|
110
|
+
}
|
|
111
|
+
buidItems() {
|
|
112
|
+
var _a;
|
|
113
|
+
const items = (_a = this.filteredItems) === null || _a === void 0 ? void 0 : _a.map((item) => ({
|
|
114
|
+
label: item,
|
|
115
|
+
id: normalizeString(item),
|
|
116
|
+
}));
|
|
117
|
+
return items;
|
|
118
|
+
}
|
|
119
|
+
async setValue(value, isNewItem = false, preventEventEmit = false) {
|
|
120
|
+
this.isNewItem = isNewItem;
|
|
121
|
+
this.textValue = value;
|
|
122
|
+
await this._refFilterInput.setValue(value);
|
|
123
|
+
await this.closePopOver();
|
|
124
|
+
if (!preventEventEmit) {
|
|
125
|
+
this.changeValue.emit({
|
|
126
|
+
value,
|
|
127
|
+
isNewItem,
|
|
128
|
+
});
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
async selectedNewItem(value, preventEventEmit = false) {
|
|
132
|
+
if (!this.textValue && !value) {
|
|
133
|
+
await this.setValue("", false, preventEventEmit);
|
|
134
|
+
return;
|
|
135
|
+
}
|
|
136
|
+
const item = getMatchOption(value !== null && value !== void 0 ? value : this.textValue, this.distinctItems);
|
|
137
|
+
if (item) {
|
|
138
|
+
await this.setValue(item, false, preventEventEmit);
|
|
139
|
+
return;
|
|
140
|
+
}
|
|
141
|
+
await this.setValue(this.textValue || value, true, preventEventEmit);
|
|
142
|
+
}
|
|
143
|
+
async setSelectedValue() {
|
|
144
|
+
const selectedValue = await this._refList.getSelection();
|
|
145
|
+
await this.selectedNewItem((selectedValue === null || selectedValue === void 0 ? void 0 : selectedValue.label) || this.textValue, true);
|
|
146
|
+
await this._refFilterInput.setBlur();
|
|
147
|
+
this._element.focus();
|
|
148
|
+
}
|
|
149
|
+
async selectNextItem() {
|
|
150
|
+
if (this.isNewItemSelected) {
|
|
151
|
+
return;
|
|
152
|
+
}
|
|
153
|
+
const itemSelected = await this._refList.getSelection();
|
|
154
|
+
const itemsAmount = this.filteredItems.length;
|
|
155
|
+
const indexSelected = this.filteredItems.findIndex((item) => item === (itemSelected === null || itemSelected === void 0 ? void 0 : itemSelected.label));
|
|
156
|
+
const isLastItemSelected = indexSelected === (itemsAmount - 1);
|
|
157
|
+
const optionNewItemIsAvailable = !!this.textValue;
|
|
158
|
+
if (!isLastItemSelected || !optionNewItemIsAvailable) {
|
|
159
|
+
this.isNewItemSelected = false;
|
|
160
|
+
await this._refList.selectNextItem();
|
|
161
|
+
return;
|
|
162
|
+
}
|
|
163
|
+
this.isNewItemSelected = true;
|
|
164
|
+
await this._refList.removeSelection();
|
|
165
|
+
}
|
|
166
|
+
async selectPreviousItem() {
|
|
167
|
+
const itemsAmount = this.filteredItems.length;
|
|
168
|
+
const lastItem = this.filteredItems[itemsAmount - 1];
|
|
169
|
+
if (this.isNewItemSelected && lastItem) {
|
|
170
|
+
this.isNewItemSelected = false;
|
|
171
|
+
await this._refList.setSelection({
|
|
172
|
+
id: normalizeString(lastItem),
|
|
173
|
+
label: lastItem
|
|
174
|
+
});
|
|
175
|
+
return;
|
|
176
|
+
}
|
|
177
|
+
await this._refList.selectPreviousItem();
|
|
178
|
+
}
|
|
179
|
+
bindKeyboardManager() {
|
|
180
|
+
this._keyboardManager = new core.KeyboardManager({ propagate: false, element: this._element });
|
|
181
|
+
this._keyboardManager
|
|
182
|
+
.bind("ArrowDown", () => { this.selectNextItem(); })
|
|
183
|
+
.bind("ArrowUp", () => { this.selectPreviousItem(); })
|
|
184
|
+
.bind("Enter", () => { this.setSelectedValue(); })
|
|
185
|
+
.bind("Tab", () => { this.setSelectedValue(); });
|
|
186
|
+
}
|
|
187
|
+
unbindKeyboardManager() {
|
|
188
|
+
this._keyboardManager
|
|
189
|
+
.unbind("ArrowDown")
|
|
190
|
+
.unbind("ArrowUp")
|
|
191
|
+
.unbind("Enter")
|
|
192
|
+
.unbind("Tab");
|
|
193
|
+
}
|
|
194
|
+
async selectFirstItem() {
|
|
195
|
+
if (!this.filteredItems.length) {
|
|
196
|
+
await this._refList.removeSelection();
|
|
197
|
+
this.isNewItemSelected = true;
|
|
198
|
+
return;
|
|
199
|
+
}
|
|
200
|
+
const firstItem = this.filteredItems[0];
|
|
201
|
+
this.isNewItemSelected = false;
|
|
202
|
+
await this._refList.setSelection({
|
|
203
|
+
id: normalizeString(firstItem),
|
|
204
|
+
label: firstItem,
|
|
205
|
+
});
|
|
206
|
+
}
|
|
207
|
+
initializeComponent() {
|
|
208
|
+
this.filteredItems = this.distinctItems;
|
|
209
|
+
this._application = core.ApplicationContext.getContextValue("__SNK__APPLICATION__");
|
|
210
|
+
}
|
|
211
|
+
componentWillLoad() {
|
|
212
|
+
this.initializeComponent();
|
|
213
|
+
}
|
|
214
|
+
async componentDidLoad() {
|
|
215
|
+
this.bindKeyboardManager();
|
|
216
|
+
this.selectFirstItem();
|
|
217
|
+
await this.selectedNewItem(this.value, true);
|
|
218
|
+
}
|
|
219
|
+
disconnectedCallback() {
|
|
220
|
+
this.unbindKeyboardManager();
|
|
221
|
+
}
|
|
222
|
+
buildNewItemOption() {
|
|
223
|
+
if (!this.textValue) {
|
|
224
|
+
return;
|
|
225
|
+
}
|
|
226
|
+
return (index.h(index.Fragment, null, !!this.filteredItems.length &&
|
|
227
|
+
index.h("hr", { class: "divider" }), index.h("button", { slot: "bottomSlot", class: {
|
|
228
|
+
"new-value": true,
|
|
229
|
+
"new-value-selected": this.isNewItemSelected,
|
|
230
|
+
}, title: `${this.getMessage("snkDistinctSearch.titleAdd")} '${this.textValue}'`, onClick: () => this.selectedNewItem.bind(this)(undefined, true) }, this.getMessage("snkDistinctSearch.titleAdd"), " '", this.textValue, "'")));
|
|
231
|
+
}
|
|
232
|
+
render() {
|
|
233
|
+
return (index.h(index.Host, { onBlur: () => this.selectedNewItem.bind(this)() }, index.h("ez-filter-input", { ref: (ref) => this._refFilterInput = ref, label: this.label, value: this.textValue, onEzChange: this.onTextChange.bind(this), onEzIconClick: this.onIconClick.bind(this), onEzFocusIn: this.openPopOver.bind(this), canShowError: this.canShowError, mode: this.mode, restrict: this.restrict, errorMessage: this.errorMessage, enabledIconClick: true }, this.isNewItem &&
|
|
234
|
+
index.h("ez-badge", { slot: "right", label: this.getMessage("snkDistinctSearch.titleBadgeNew"), size: "small-medium", class: "badge-primary" })), index.h("ez-popover", { ref: (ref) => this._refPopOver = ref, boxWidth: "full-width", autoClose: false, overlayType: "none", class: {
|
|
235
|
+
'space-error': this.canShowError,
|
|
236
|
+
} }, index.h("div", { class: "popover-content" }, index.h("section", { class: "list-container" }, index.h("ez-list", { ref: (ref) => this._refList = ref, dataSource: this.buidItems(), onEzClickItem: ({ detail }) => this.setValue.bind(this)(detail.label, false, true), ezSelectable: true, hoverFeedback: true, disableShortcuts: true })), this.buildNewItemOption()))));
|
|
237
|
+
}
|
|
238
|
+
get _element() { return index.getElement(this); }
|
|
239
|
+
static get watchers() { return {
|
|
240
|
+
"value": ["observerValue"]
|
|
241
|
+
}; }
|
|
242
|
+
};
|
|
243
|
+
InputDistinctSearch.style = inputDistinctSearchCss;
|
|
244
|
+
|
|
245
|
+
const searchModalCss = ".sc-search-modal-h{display:block}ez-popup.sc-search-modal{--ez-popup__title--font-size:var(--title--large, 20px)}.search-modal-scroller.sc-search-modal{height:174px}.search-modal-text.sc-search-modal{font-family:var(--font-pattern);color:var(--text--primary);font-size:var(--text--medium)}ez-filter-input.sc-search-modal>input.sc-search-modal{text-overflow:ellipsis}.ez-content.sc-search-modal{height:190px;display:flex;align-items:center;justify-content:center}";
|
|
246
|
+
|
|
247
|
+
const SearchModal = class {
|
|
248
|
+
constructor(hostRef) {
|
|
249
|
+
index.registerInstance(this, hostRef);
|
|
250
|
+
this.popupClose = index.createEvent(this, "popupClose", 7);
|
|
251
|
+
this.changeValue = index.createEvent(this, "changeValue", 7);
|
|
252
|
+
this.debounceTimeout = null;
|
|
253
|
+
this.filteredItems = [];
|
|
254
|
+
this.searchFocus = false;
|
|
255
|
+
this.itemNew = undefined;
|
|
256
|
+
this.listItens = [];
|
|
257
|
+
this.opened = false;
|
|
258
|
+
this.value = undefined;
|
|
259
|
+
this.canShowError = false;
|
|
260
|
+
this.emptyMessage = undefined;
|
|
261
|
+
this.debounceTime = 300;
|
|
262
|
+
this.maxItens = 100;
|
|
263
|
+
this.label = 'Pesquisar';
|
|
264
|
+
this.mode = 'regular';
|
|
265
|
+
this.restrict = undefined;
|
|
266
|
+
this.errorMessage = undefined;
|
|
267
|
+
}
|
|
268
|
+
/**
|
|
269
|
+
* Método para adicionar a nova palavra e chamar o método closeModal() para fechar o modal
|
|
270
|
+
*/
|
|
271
|
+
addNewItem() {
|
|
272
|
+
this.closeModal();
|
|
273
|
+
this.changeValue.emit({ isNewItem: true, value: this.value });
|
|
274
|
+
}
|
|
275
|
+
/**
|
|
276
|
+
* Método para limpa o campo de entrada de pesquisa
|
|
277
|
+
*/
|
|
278
|
+
clearInput() {
|
|
279
|
+
this._searchElement.setValue("");
|
|
280
|
+
}
|
|
281
|
+
/**
|
|
282
|
+
* Método para fechar o modal
|
|
283
|
+
*/
|
|
284
|
+
closeModal() {
|
|
285
|
+
this._popupElement.opened = false;
|
|
286
|
+
this.popupClose.emit(false);
|
|
287
|
+
}
|
|
288
|
+
/**
|
|
289
|
+
* Método para abrir o modal
|
|
290
|
+
*/
|
|
291
|
+
openModal() {
|
|
292
|
+
this._popupElement.opened = true;
|
|
293
|
+
setTimeout(() => this.setFocus(), 100);
|
|
294
|
+
}
|
|
295
|
+
/**
|
|
296
|
+
* Retorna se o conteúdo é inválido.
|
|
297
|
+
*/
|
|
298
|
+
isInvalid() {
|
|
299
|
+
this._searchElement.isInvalid();
|
|
300
|
+
}
|
|
301
|
+
/**
|
|
302
|
+
* Remove o foco do campo
|
|
303
|
+
*/
|
|
304
|
+
setBlur() {
|
|
305
|
+
this._searchElement.setBlur();
|
|
306
|
+
this.searchFocus = false;
|
|
307
|
+
}
|
|
308
|
+
/**
|
|
309
|
+
* Aplica o foco do campo
|
|
310
|
+
*/
|
|
311
|
+
setFocus() {
|
|
312
|
+
this._searchElement.setFocus();
|
|
313
|
+
this.searchFocus = true;
|
|
314
|
+
}
|
|
315
|
+
/**
|
|
316
|
+
* Método para tratar a mensagem de erro
|
|
317
|
+
*/
|
|
318
|
+
watchPropErrorMessage() {
|
|
319
|
+
this._searchElement.errorMessage = this.errorMessage;
|
|
320
|
+
}
|
|
321
|
+
/**
|
|
322
|
+
* Método para tratar o value do input
|
|
323
|
+
*/
|
|
324
|
+
watchPropValue() {
|
|
325
|
+
this._searchElement.value = this.value;
|
|
326
|
+
}
|
|
327
|
+
/**
|
|
328
|
+
* Atualiza a lista de itens à medida que o usuário digita no campo de pesquisa.
|
|
329
|
+
*/
|
|
330
|
+
async handleInput(event) {
|
|
331
|
+
if (this.debounceTimeout) {
|
|
332
|
+
clearTimeout(this.debounceTimeout);
|
|
333
|
+
}
|
|
334
|
+
this.value = event.detail;
|
|
335
|
+
this.debounceTimeout = setTimeout(() => {
|
|
336
|
+
this.filteredItems = filterItems(event.detail, this.listItens, this.maxItens);
|
|
337
|
+
}, this.debounceTime);
|
|
338
|
+
}
|
|
339
|
+
initializeComponent() {
|
|
340
|
+
this.filteredItems = this.listItens;
|
|
341
|
+
this._application = core.ApplicationContext.getContextValue("__SNK__APPLICATION__");
|
|
342
|
+
}
|
|
343
|
+
getMessage(key) {
|
|
344
|
+
return this._application.messagesBuilder.getMessage(key, null);
|
|
345
|
+
}
|
|
346
|
+
componentWillLoad() {
|
|
347
|
+
this.initializeComponent();
|
|
348
|
+
}
|
|
349
|
+
componentDidLoad() {
|
|
350
|
+
this.bindKeyboardManager();
|
|
351
|
+
this._searchElement.value = this.value;
|
|
352
|
+
this.filteredItems = filterItems(this.value, this.listItens, this.maxItens);
|
|
353
|
+
}
|
|
354
|
+
disconnectedCallback() {
|
|
355
|
+
this.unbindKeyboardManager();
|
|
356
|
+
}
|
|
357
|
+
buildItems() {
|
|
358
|
+
var _a;
|
|
359
|
+
const items = (_a = this.filteredItems) === null || _a === void 0 ? void 0 : _a.map((item) => ({
|
|
360
|
+
label: item,
|
|
361
|
+
id: normalizeString(item),
|
|
362
|
+
}));
|
|
363
|
+
return items;
|
|
364
|
+
}
|
|
365
|
+
async tabSelect() {
|
|
366
|
+
const selectedValue = await this._refList.getSelection();
|
|
367
|
+
if (this.searchFocus) {
|
|
368
|
+
this.setBlur();
|
|
369
|
+
this.selectFirstItem();
|
|
370
|
+
}
|
|
371
|
+
else if (selectedValue) {
|
|
372
|
+
this._refList.removeSelection();
|
|
373
|
+
this._refButton.setFocus();
|
|
374
|
+
}
|
|
375
|
+
else {
|
|
376
|
+
this._refButton.setBlur();
|
|
377
|
+
this.setFocus();
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
bindKeyboardManager() {
|
|
381
|
+
this._keyboardManager = new core.KeyboardManager({ propagate: false, element: this._element });
|
|
382
|
+
this._keyboardManager
|
|
383
|
+
.bind("ArrowDown", () => { this.selectNextItem(); })
|
|
384
|
+
.bind("ArrowUp", () => { this.selectPreviousItem(); })
|
|
385
|
+
.bind("Enter", () => { this.setSelectedValue(); })
|
|
386
|
+
.bind("Tab", () => { this.tabSelect(); });
|
|
387
|
+
}
|
|
388
|
+
unbindKeyboardManager() {
|
|
389
|
+
this._keyboardManager
|
|
390
|
+
.unbind("ArrowDown")
|
|
391
|
+
.unbind("ArrowUp")
|
|
392
|
+
.unbind("Enter")
|
|
393
|
+
.unbind("Tab");
|
|
394
|
+
}
|
|
395
|
+
async setSelectedValue() {
|
|
396
|
+
const selectedValue = await this._refList.getSelection();
|
|
397
|
+
if (selectedValue) {
|
|
398
|
+
this.changeValue.emit({ isNewItem: false, value: selectedValue.label });
|
|
399
|
+
this.closeModal();
|
|
400
|
+
}
|
|
401
|
+
else if (this.searchFocus && this.enabledButtonNewItem()) {
|
|
402
|
+
this.addNewItem();
|
|
403
|
+
}
|
|
404
|
+
}
|
|
405
|
+
async selectNextItem() {
|
|
406
|
+
const itemSelected = await this._refList.getSelection();
|
|
407
|
+
if (this.searchFocus)
|
|
408
|
+
this.setBlur();
|
|
409
|
+
if (itemSelected === undefined)
|
|
410
|
+
this.selectFirstItem();
|
|
411
|
+
await this._refList.selectNextItem();
|
|
412
|
+
}
|
|
413
|
+
async selectPreviousItem() {
|
|
414
|
+
const itemSelected = await this._refList.getSelection();
|
|
415
|
+
if (itemSelected === undefined)
|
|
416
|
+
return;
|
|
417
|
+
await this._refList.selectPreviousItem();
|
|
418
|
+
}
|
|
419
|
+
async selectFirstItem() {
|
|
420
|
+
if (!this.filteredItems.length) {
|
|
421
|
+
await this._refList.removeSelection();
|
|
422
|
+
return;
|
|
423
|
+
}
|
|
424
|
+
const firstItem = this.filteredItems[0];
|
|
425
|
+
await this._refList.setSelection({
|
|
426
|
+
id: normalizeString(firstItem),
|
|
427
|
+
label: firstItem,
|
|
428
|
+
});
|
|
429
|
+
}
|
|
430
|
+
enabledButtonNewItem() {
|
|
431
|
+
if (this.value === undefined)
|
|
432
|
+
return false;
|
|
433
|
+
if (getMatchOption(this.value, this.listItens))
|
|
434
|
+
return false;
|
|
435
|
+
return this.value.trim().length === 0 ? false : true;
|
|
436
|
+
}
|
|
437
|
+
render() {
|
|
438
|
+
var _a;
|
|
439
|
+
return (index.h(index.Host, null, index.h("ez-popup", { size: "x-small", "ez-title": this.label, onEzClosePopup: () => this.popupClose.emit(false), "height-mode": "auto", ref: ref => this._popupElement = ref }, index.h("div", null, index.h("ez-filter-input", { ref: (ref) => this._searchElement = ref, label: "Pesquisar", onEzChange: this.handleInput.bind(this), onBlur: () => this.searchFocus = false, onEzFocusIn: () => this.searchFocus = true, errorMessage: this.errorMessage, canShowError: this.canShowError, mode: this.mode, value: this.value, restrict: this.restrict }), this.buildItems().length === 0 ? (index.h("div", { class: "ez-content" }, index.h("div", { class: "ez-text--center search-modal-text" }, this.emptyMessage))) : (index.h("div", null, index.h("div", { class: "search-modal-text ez-padding-vertical--medium" }, this.listItens.length > this.maxItens ? this.getMessage("snkDistinctSearch.limitResult") :
|
|
440
|
+
this.buildItems().length, " ", this.buildItems().length > 1 ? this.getMessage("snkDistinctSearch.availableResults") : this.getMessage("snkDistinctSearch.availableResult")), index.h("ez-scroller", { class: "search-modal-scroller", direction: EzScrollDirection.EzScrollDirection.VERTICAL }, index.h("ez-list", { ref: (ref) => this._refList = ref, dataSource: this.buildItems(), onEzClickItem: ({ label }) => this.setSelectedValue.bind(this)(label), ezSelectable: true, hoverFeedback: true, disableShortcuts: true })))), index.h("div", { class: "ez-flex ez-flex--justify-end" }, index.h("ez-button", { class: "ez-button--tertiary", ref: (ref) => this._refButton = ref, enabled: this.enabledButtonNewItem(), label: `${this.getMessage("snkDistinctSearch.titleAdd")} ${(_a = this.label) === null || _a === void 0 ? void 0 : _a.toLocaleLowerCase()}`, onClick: () => this.addNewItem() }))))));
|
|
441
|
+
}
|
|
442
|
+
get _element() { return index.getElement(this); }
|
|
443
|
+
static get watchers() { return {
|
|
444
|
+
"errorMessage": ["watchPropErrorMessage"],
|
|
445
|
+
"value": ["watchPropValue"]
|
|
446
|
+
}; }
|
|
447
|
+
};
|
|
448
|
+
SearchModal.style = searchModalCss;
|
|
449
|
+
|
|
450
|
+
exports.input_distinct_search = InputDistinctSearch;
|
|
451
|
+
exports.search_modal = SearchModal;
|
package/dist/cjs/loader.cjs.js
CHANGED
|
@@ -14,7 +14,7 @@ const patchEsm = () => {
|
|
|
14
14
|
const defineCustomElements = (win, options) => {
|
|
15
15
|
if (typeof window === 'undefined') return Promise.resolve();
|
|
16
16
|
return patchEsm().then(() => {
|
|
17
|
-
return index.bootstrapLazy(JSON.parse("[[\"teste-pesquisa.cjs\",[[1,\"teste-pesquisa\"]]],[\"snk-filter-modal.cjs\",[[0,\"snk-filter-modal\",{\"getMessage\":[16],\"configName\":[1025,\"config-name\"],\"filters\":[1040],\"applyFilters\":[16],\"closeModal\":[16],\"addPersonalizedFilter\":[16],\"editPersonalizedFilter\":[16],\"deletePersonalizedFilter\":[16],\"filtersToDelete\":[16],\"disablePersonalizedFilter\":[4,\"disable-personalized-filter\"]},[[0,\"deleteFilter\",\"deletePersonalizedFilterListener\"]]]]],[\"snk-actions-form.cjs\",[[2,\"snk-actions-form\",{\"action\":[16],\"applyParameters\":[16],\"dataUnit\":[32],\"openPopup\":[64]}]]],[\"snk-client-confirm.cjs\",[[2,\"snk-client-confirm\",{\"titleMessage\":[1,\"title-message\"],\"message\":[1],\"accept\":[16],\"cancel\":[16],\"openPopup\":[64]}]]],[\"snk-custom-slot-elements.cjs\",[[6,\"snk-custom-slot-elements\",{\"slotName\":[1,\"slot-name\"]}]]],[\"snk-entity-list.cjs\",[[2,\"snk-entity-list\",{\"config\":[1040],\"rightListSlotBuilder\":[1040],\"maxHeightList\":[1,\"max-height-list\"],\"_searchValue\":[32],\"_ezListSource\":[32],\"reloadList\":[64]}]]],[\"snk-filter-binary-select.cjs\",[[0,\"snk-filter-binary-select\",{\"value\":[1544],\"config\":[16],\"presentationMode\":[2,\"presentation-mode\"],\"resetValues\":[64]},[[0,\"ezChange\",\"ezChangeListener\"]]]]],[\"snk-filter-checkbox-list.cjs\",[[0,\"snk-filter-checkbox-list\",{\"config\":[1040],\"optionsList\":[32]}]]],[\"snk-filter-list.cjs\",[[4,\"snk-filter-list\",{\"label\":[1],\"iconName\":[1,\"icon-name\"],\"items\":[16],\"getMessage\":[16],\"emptyText\":[1,\"empty-text\"],\"findFilterText\":[1,\"find-filter-text\"],\"buttonClass\":[1,\"button-class\"],\"_filterArgument\":[32],\"_showAll\":[32],\"hideDetail\":[64]},[[2,\"keydown\",\"keyDownHandler\"]]]]],[\"snk-filter-multi-select.cjs\",[[0,\"snk-filter-multi-select\",{\"value\":[1544],\"config\":[16],\"show\":[64]},[[0,\"ezChange\",\"ezChangeListener\"]]]]],[\"snk-filter-number.cjs\",[[0,\"snk-filter-number\",{\"config\":[16],\"getMessage\":[16],\"value\":[2],\"presentationMode\":[2,\"presentation-mode\"],\"show\":[64]},[[0,\"ezChange\",\"ezChangeListener\"]]]]],[\"snk-filter-period.cjs\",[[0,\"snk-filter-period\",{\"config\":[16],\"getMessage\":[16],\"value\":[8],\"presentationMode\":[2,\"presentation-mode\"],\"show\":[64]},[[0,\"ezChange\",\"ezChangeListener\"]]]]],[\"snk-filter-search.cjs\",[[0,\"snk-filter-search\",{\"config\":[16],\"value\":[16],\"show\":[64]},[[0,\"ezChange\",\"ezChangeListener\"]]]]],[\"snk-filter-text.cjs\",[[0,\"snk-filter-text\",{\"config\":[16],\"value\":[1]},[[0,\"ezChange\",\"ezChangeListener\"]]]]],[\"snk-personalized-filter-editor.cjs\",[[2,\"snk-personalized-filter-editor\",{\"messagesBuilder\":[1040],\"presentationMode\":[2,\"presentation-mode\"],\"config\":[16],\"value\":[1040],\"items\":[32],\"show\":[64]}]]],[\"snk-print-selector.cjs\",[[2,\"snk-print-selector\",{\"_printServerActive\":[32],\"_selectedPrinter\":[32],\"_remotePrintersDataSource\":[32],\"_localPrintersDataSource\":[32],\"_printJobData\":[32],\"openPrintSelector\":[64]}]]],[\"snk-filter-modal-item.cjs\",[[0,\"snk-filter-modal-item\",{\"filterItem\":[1040],\"configName\":[1025,\"config-name\"],\"resourceID\":[1,\"resource-i-d\"]}]]],[\"snk-pesquisa.cjs\",[[2,\"snk-pesquisa\",{\"searchLoader\":[16],\"selectItem\":[16],\"argument\":[1025],\"_itemList\":[32],\"_startLoading\":[32]}]]],[\"snk-simple-crud.cjs\",[[6,\"snk-simple-crud\",{\"dataState\":[16],\"dataUnit\":[16],\"entityName\":[1,\"entity-name\"],\"mode\":[2],\"gridConfig\":[1040],\"formConfig\":[1040],\"multipleSelection\":[4,\"multiple-selection\"],\"useCancelConfirm\":[4,\"use-cancel-confirm\"],\"pageSize\":[2,\"page-size\"],\"resourceID\":[1,\"resource-i-d\"],\"enableGridInsert\":[4,\"enable-grid-insert\"],\"taskbarManager\":[16],\"messagesBuilder\":[1040],\"useEnterLikeTab\":[4,\"use-enter-like-tab\"],\"actionsList\":[16],\"configName\":[1025,\"config-name\"],\"showConfiguratorButtons\":[4,\"show-configurator-buttons\"],\"gridLegacyConfigName\":[1,\"grid-legacy-config-name\"],\"formLegacyConfigName\":[1,\"form-legacy-config-name\"],\"ignoreReadOnlyFormFields\":[4,\"ignore-read-only-form-fields\"],\"autoFocus\":[4,\"auto-focus\"],\"domainMessagesBuilder\":[1,\"domain-messages-builder\"],\"autoLoad\":[4,\"auto-load\"],\"_showPopUpGridConfig\":[32],\"_showFormConfig\":[32],\"_currentViewMode\":[32],\"_config\":[32],\"_fieldToGetFocus\":[32],\"_customContainerId\":[32],\"_formFields\":[32],\"_fieldsProps\":[32],\"_enableContinuousInsert\":[32],\"addCustomEditor\":[64],\"addGridCustomRender\":[64],\"addCustomValueFormatter\":[64],\"removeCustomValueFormatter\":[64],\"setFieldProp\":[64],\"goToView\":[64],\"setMetadata\":[64],\"setRecords\":[64],\"getRecords\":[64],\"openConfigurator\":[64],\"closeConfigurator\":[64],\"updateConfig\":[64]},[[0,\"actionClick\",\"actionClickListener\"]]]]],[\"snk-attach.cjs\",[[2,\"snk-attach\",{\"fetcherType\":[1,\"fetcher-type\"],\"fetcher\":[16],\"dataUnit\":[16],\"dataUnitBuilder\":[16],\"registerKey\":[1,\"register-key\"],\"entityName\":[1,\"entity-name\"],\"messagesBuilder\":[1040],\"_currentFetcher\":[32],\"_currentDataUnit\":[32],\"crudConfig\":[32]}]]],[\"snk-form-summary.cjs\",[[2,\"snk-form-summary\",{\"fixed\":[1540],\"contracted\":[1540],\"summary\":[16]}]]],[\"snk-form-view.cjs\",[[6,\"snk-form-view\",{\"levelPath\":[1,\"level-path\"],\"label\":[1],\"name\":[1],\"fields\":[16],\"formMetadata\":[8,\"form-metadata\"],\"dataUnit\":[16],\"contracted\":[4],\"fixed\":[1540],\"summaryFields\":[16],\"canExpand\":[4,\"can-expand\"],\"canFix\":[4,\"can-fix\"],\"recordsValidator\":[16],\"fieldToFocus\":[1,\"field-to-focus\"],\"customEditors\":[16],\"fieldsProps\":[16],\"showUp\":[64],\"addCustomEditor\":[64],\"setFieldProp\":[64]}]]],[\"snk-filter-field-search_2.cjs\",[[2,\"snk-filter-field-search\",{\"searchable\":[4],\"fieldsDataSource\":[16],\"breadcrumbItems\":[32],\"linkItems\":[32],\"fieldItems\":[32],\"searchEmpty\":[32],\"groupEmpty\":[32],\"show\":[64],\"applyFilter\":[64]}],[0,\"snk-filter-param-config\",{\"messagesBuilder\":[1040],\"_opened\":[32],\"_configType\":[32],\"_expressionItem\":[32],\"_informedInstance\":[32],\"_canSave\":[32],\"open\":[64],\"close\":[64]}]]],[\"snk-expression-group_2.cjs\",[[2,\"snk-expression-group\",{\"parentTop\":[1026,\"parent-top\"],\"group\":[1040],\"messagesBuilder\":[1040],\"filterId\":[1025,\"filter-id\"],\"entityURI\":[1025,\"entity-u-r-i\"],\"_conditionOperator\":[32],\"_group\":[32],\"_selfTop\":[32],\"canAddExpression\":[32],\"_showDashes\":[32],\"getExpressionGroup\":[64]},[[8,\"ezExpressionLayoutChanged\",\"todoCompletedHandler\"]]],[2,\"snk-expression-item\",{\"expression\":[16],\"canRemove\":[516,\"can-remove\"],\"messagesBuilder\":[1040],\"entityURI\":[1025,\"entity-u-r-i\"],\"_showValueVariable\":[32],\"_fieldSelected\":[32],\"_optionNotNull\":[32]}]]],[\"snk-personalized-filter.cjs\",[[2,\"snk-personalized-filter\",{\"messagesBuilder\":[1040],\"entityUri\":[1025,\"entity-uri\"],\"filterId\":[1025,\"filter-id\"],\"configName\":[1025,\"config-name\"],\"resourceID\":[1,\"resource-i-d\"],\"_filterAssistentMode\":[32],\"_filterAssistent\":[32],\"createPersonalizedFilter\":[64]}]]],[\"snk-filter-item.cjs\",[[0,\"snk-filter-item\",{\"config\":[1040],\"getMessage\":[16],\"showChips\":[4,\"show-chips\"],\"detailIsVisible\":[32],\"showUp\":[64],\"hideDetail\":[64]},[[2,\"click\",\"clickListener\"],[2,\"mousedown\",\"mouseDownListener\"],[0,\"filterChange\",\"filterChangeListener\"]]]]],[\"snk-filter-bar.cjs\",[[2,\"snk-filter-bar\",{\"customFilterBarConfig\":[16],\"dataUnit\":[1040],\"title\":[1],\"configName\":[1,\"config-name\"],\"resourceID\":[1,\"resource-i-d\"],\"mode\":[1],\"filterConfig\":[1040],\"messagesBuilder\":[1040],\"disablePersonalizedFilter\":[4,\"disable-personalized-filter\"],\"filterBarLegacyConfigName\":[1,\"filter-bar-legacy-config-name\"],\"autoLoad\":[4,\"auto-load\"],\"allowDefault\":[32],\"scrollerLocked\":[32],\"showPersonalizedFilter\":[32],\"personalizedFilterId\":[32],\"reload\":[64],\"getFilterItem\":[64],\"updateFilterItem\":[64],\"addFilterItem\":[64],\"removeFilterItem\":[64],\"showFilterModal\":[64]},[[0,\"filterChange\",\"filterChangeListener\"]]]]],[\"snk-grid.cjs\",[[6,\"snk-grid\",{\"columnFilterDataSource\":[1040],\"configName\":[1,\"config-name\"],\"filterBarTitle\":[1,\"filter-bar-title\"],\"resourceID\":[1,\"resource-i-d\"],\"selectionToastConfig\":[16],\"actionsList\":[16],\"isDetail\":[4,\"is-detail\"],\"taskbarManager\":[16],\"statusResolver\":[16],\"multipleSelection\":[4,\"multiple-selection\"],\"presentationMode\":[1,\"presentation-mode\"],\"messagesBuilder\":[1040],\"useEnterLikeTab\":[4,\"use-enter-like-tab\"],\"recordsValidator\":[16],\"canEdit\":[4,\"can-edit\"],\"taskbarCustomContainerId\":[1,\"taskbar-custom-container-id\"],\"gridHeaderCustomSlotId\":[1,\"grid-header-custom-slot-id\"],\"topTaskbarCustomSlotId\":[1,\"top-taskbar-custom-slot-id\"],\"disablePersonalizedFilter\":[4,\"disable-personalized-filter\"],\"gridLegacyConfigName\":[1,\"grid-legacy-config-name\"],\"filterBarLegacyConfigName\":[1,\"filter-bar-legacy-config-name\"],\"autoLoad\":[4,\"auto-load\"],\"autoFocus\":[4,\"auto-focus\"],\"enableGridInsert\":[4,\"enable-grid-insert\"],\"_dataUnit\":[32],\"_dataState\":[32],\"_gridConfig\":[32],\"_popUpGridConfig\":[32],\"_showSnkFilterBar\":[32],\"_enableContinuousInsert\":[32],\"showConfig\":[64],\"hideConfig\":[64],\"setConfig\":[64],\"reloadFilterBar\":[64],\"getFilterBar\":[64],\"findColumn\":[64],\"addCustomEditor\":[64],\"addGridCustomRender\":[64],\"addCustomValueFormatter\":[64],\"removeCustomValueFormatter\":[64],\"setFocus\":[64]},[[2,\"click\",\"handleClick\"]]]]],[\"snk-configurator.cjs\",[[2,\"snk-configurator\",{\"showActionButtons\":[4,\"show-action-buttons\"],\"configName\":[1,\"config-name\"],\"resourceID\":[1,\"resource-i-d\"],\"viewMode\":[2,\"view-mode\"],\"customContainerId\":[1,\"custom-container-id\"],\"messagesBuilder\":[1040],\"_opened\":[32],\"_permissions\":[32],\"open\":[64],\"close\":[64]}]]],[\"snk-data-unit.cjs\",[[2,\"snk-data-unit\",{\"dataState\":[1040],\"messagesBuilder\":[1040],\"dataUnitName\":[1,\"data-unit-name\"],\"entityName\":[1,\"entity-name\"],\"pageSize\":[2,\"page-size\"],\"dataUnit\":[1040],\"beforeSave\":[16],\"afterSave\":[16],\"useCancelConfirm\":[4,\"use-cancel-confirm\"],\"ignoreSaveMessage\":[4,\"ignore-save-message\"],\"configName\":[1,\"config-name\"],\"resourceID\":[1,\"resource-i-d\"],\"domainMessagesBuilder\":[1,\"domain-messages-builder\"],\"fieldsToLink\":[32],\"getDataUnit\":[64],\"getSelectedRecordsIDsInfo\":[64],\"getFieldsWithRmp\":[64],\"getFieldsWithRmPrecision\":[64],\"getRowMetadata\":[64]}]]],[\"snk-taskbar.cjs\",[[6,\"snk-taskbar\",{\"alignRigth\":[4,\"align-rigth\"],\"customSlotId\":[1,\"custom-slot-id\"],\"customContainerId\":[1,\"custom-container-id\"],\"overflowStrategy\":[1,\"overflow-strategy\"],\"configName\":[1,\"config-name\"],\"resourceID\":[1,\"resource-i-d\"],\"buttons\":[1],\"customButtons\":[16],\"actionsList\":[16],\"primaryButton\":[1,\"primary-button\"],\"disabledButtons\":[16],\"dataUnit\":[16],\"presentationMode\":[1537,\"presentation-mode\"],\"messagesBuilder\":[1040],\"_permissions\":[32],\"_overFlowedElements\":[32],\"_customElements\":[32],\"_customElementsId\":[32],\"_slotContainer\":[32],\"_hiddenActionsList\":[32],\"_lastWidth\":[32],\"_hasToUpdateOverFlow\":[32],\"_isWaitingForSave\":[32]},[[8,\"snkCustomSlotElementsLoaded\",\"handleCustomSlotElementsLoaded\"],[8,\"taskbarSaveLocker\",\"handleTaskbarSaveLocker\"],[8,\"taskbarSaveUnlocker\",\"handleTaskbarSaveUnlocker\"]]]]],[\"snk-filter-detail.cjs\",[[0,\"snk-filter-detail\",{\"config\":[1040],\"getMessage\":[16],\"showHardFixed\":[4,\"show-hard-fixed\"],\"show\":[64]}]]],[\"snk-config-options.cjs\",[[2,\"snk-config-options\",{\"fieldConfig\":[16],\"idConfig\":[513,\"id-config\"],\"dataUnit\":[16],\"messagesBuilder\":[1040],\"_defaultType\":[32]}]]],[\"snk-field-config.cjs\",[[2,\"snk-field-config\",{\"isConfigActive\":[16],\"fieldConfig\":[16],\"modeInsertion\":[516,\"mode-insertion\"],\"dataUnit\":[16],\"messagesBuilder\":[1040]}]]],[\"snk-simple-bar.cjs\",[[6,\"snk-simple-bar\",{\"label\":[1],\"breadcrumbItens\":[16],\"messagesBuilder\":[1040]}]]],[\"snk-tab-config.cjs\",[[6,\"snk-tab-config\",{\"selectedIndex\":[1538,\"selected-index\"],\"selectedTab\":[1537,\"selected-tab\"],\"tabs\":[1],\"tabItems\":[16],\"messagesBuilder\":[1040],\"_processedTabs\":[32],\"_activeEditText\":[32],\"_activeEditTextIndex\":[32],\"_actionsHide\":[32],\"_actionsShow\":[32]}]]],[\"snk-form-config.cjs\",[[2,\"snk-form-config\",{\"dataUnit\":[16],\"configManager\":[16],\"messagesBuilder\":[1040],\"ignoreReadOnlyFormFields\":[4,\"ignore-read-only-form-fields\"],\"_formConfigOptions\":[32],\"_fieldConfigSelected\":[32],\"_layoutFormConfig\":[32],\"_fieldsAvailable\":[32],\"_formConfig\":[32],\"_formConfigChanged\":[32],\"_optionFormConfigSelected\":[32],\"_optionFormConfigChanged\":[32],\"_tempGroups\":[32]}]]],[\"snk-exporter-email-sender.cjs\",[[0,\"snk-exporter-email-sender\",{\"getMessage\":[16],\"_config\":[32],\"_opened\":[32],\"_currentStep\":[32],\"open\":[64],\"close\":[64]}]]],[\"snk-crud.cjs\",[[6,\"snk-crud\",{\"configName\":[1025,\"config-name\"],\"filterBarTitle\":[1,\"filter-bar-title\"],\"selectionToastConfig\":[16],\"showActionButtons\":[4,\"show-action-buttons\"],\"actionsList\":[16],\"taskbarManager\":[16],\"recordsValidator\":[16],\"statusResolver\":[16],\"multipleSelection\":[4,\"multiple-selection\"],\"presentationMode\":[1,\"presentation-mode\"],\"messagesBuilder\":[1040],\"useEnterLikeTab\":[4,\"use-enter-like-tab\"],\"gridLegacyConfigName\":[1,\"grid-legacy-config-name\"],\"filterBarLegacyConfigName\":[1,\"filter-bar-legacy-config-name\"],\"formLegacyConfigName\":[1,\"form-legacy-config-name\"],\"disablePersonalizedFilter\":[4,\"disable-personalized-filter\"],\"autoLoad\":[4,\"auto-load\"],\"autoFocus\":[4,\"auto-focus\"],\"enableGridInsert\":[4,\"enable-grid-insert\"],\"domainMessagesBuilder\":[1,\"domain-messages-builder\"],\"ignoreReadOnlyFormFields\":[4,\"ignore-read-only-form-fields\"],\"setCustomFormTitle\":[16],\"_dataUnit\":[32],\"_dataState\":[32],\"attachmentRegisterKey\":[32],\"_currentViewMode\":[32],\"_canEdit\":[32],\"_resourceID\":[32],\"customContainerId\":[32],\"goToView\":[64],\"openConfigurator\":[64],\"closeConfigurator\":[64],\"reloadFilterBar\":[64],\"getFilterBar\":[64],\"addCustomEditor\":[64],\"addGridCustomRender\":[64],\"addCustomValueFormatter\":[64],\"removeCustomValueFormatter\":[64],\"setFieldProp\":[64]}]]],[\"snk-form.cjs\",[[2,\"snk-form\",{\"configName\":[1,\"config-name\"],\"recordsValidator\":[16],\"messagesBuilder\":[1040],\"formLegacyConfigName\":[1,\"form-legacy-config-name\"],\"resourceID\":[1,\"resource-i-d\"],\"_dataUnit\":[32],\"_dataState\":[32],\"_showFormConfig\":[32],\"_configManager\":[32],\"showConfig\":[64],\"hideConfig\":[64],\"addCustomEditor\":[64],\"setFieldProp\":[64]}]]],[\"snk-data-exporter.cjs\",[[2,\"snk-data-exporter\",{\"provider\":[16],\"messagesBuilder\":[1040],\"_items\":[32],\"_showDropdown\":[32]}]]],[\"snk-guides-viewer.cjs\",[[6,\"snk-guides-viewer\",{\"dataUnit\":[16],\"dataState\":[16],\"configName\":[1,\"config-name\"],\"entityPath\":[1,\"entity-path\"],\"actionsList\":[16],\"recordsValidator\":[16],\"masterFormConfig\":[1040],\"selectedGuide\":[16],\"taskbarManager\":[16],\"messagesBuilder\":[1040],\"canEdit\":[4,\"can-edit\"],\"presentationMode\":[1,\"presentation-mode\"],\"resourceID\":[1,\"resource-i-d\"],\"detailTaskbarCustomContainerId\":[1,\"detail-taskbar-custom-container-id\"],\"formLegacyConfigName\":[1,\"form-legacy-config-name\"],\"enableGridInsert\":[4,\"enable-grid-insert\"],\"ignoreReadOnlyFormFields\":[4,\"ignore-read-only-form-fields\"],\"getCustomTitle\":[16],\"_hasToCreateFieldSearch\":[32],\"_breadcrumbItems\":[32],\"_guides\":[32],\"_formEditorConfigManager\":[32],\"_formEditorDataUnit\":[32],\"_fieldToGetFocus\":[32],\"_customEditors\":[32],\"_customRenders\":[32],\"_fieldsProps\":[32],\"showFormConfig\":[64],\"findField\":[64],\"addCustomEditor\":[64],\"addGridCustomRender\":[64],\"setFieldProp\":[64],\"setFocus\":[64]},[[2,\"actionClick\",\"onActionClick\"],[0,\"snkContentCardChanged\",\"onContentCardChanged\"]]]]],[\"snk-application.cjs\",[[2,\"snk-application\",{\"messagesBuilder\":[1040],\"configName\":[1,\"config-name\"],\"gridLegacyConfigName\":[1,\"grid-legacy-config-name\"],\"formLegacyConfigName\":[1,\"form-legacy-config-name\"],\"loadByPK\":[16],\"getKeyboardManager\":[64],\"isUserSup\":[64],\"addPendingAction\":[64],\"callServiceBroker\":[64],\"initOnboarding\":[64],\"hasAccess\":[64],\"getAllAccess\":[64],\"getStringParam\":[64],\"getIntParam\":[64],\"getFloatParam\":[64],\"getBooleanParam\":[64],\"getDateParam\":[64],\"showPopUp\":[64],\"showModal\":[64],\"showAlerts\":[64],\"closeModal\":[64],\"closePopUp\":[64],\"temOpcional\":[64],\"getConfig\":[64],\"saveConfig\":[64],\"getAttributeFromHTMLWrapper\":[64],\"openApp\":[64],\"webConnection\":[64],\"createDataunit\":[64],\"updateDataunitCache\":[64],\"getDataUnit\":[64],\"addClientEvent\":[64],\"removeClientEvent\":[64],\"hasClientEvent\":[64],\"getResourceID\":[64],\"getUserID\":[64],\"alert\":[64],\"error\":[64],\"success\":[64],\"message\":[64],\"confirm\":[64],\"info\":[64],\"loadTotals\":[64],\"isLoadedByPk\":[64],\"executeSearch\":[64],\"executePreparedSearch\":[64],\"isDebugMode\":[64],\"getAppLabel\":[64],\"addSearchListener\":[64],\"importScript\":[64],\"getApplicationPath\":[64],\"executeSelectDistinct\":[64],\"getDataFetcher\":[64],\"whenApplicationReady\":[64],\"setSearchFilterContext\":[64]}]]],[\"snk-filter-advanced-mode_2.cjs\",[[2,\"snk-filter-assistent-mode\",{\"filterAssistent\":[1040],\"messagesBuilder\":[1040],\"filterId\":[1025,\"filter-id\"],\"entityUri\":[1025,\"entity-uri\"],\"application\":[1040]}],[2,\"snk-filter-advanced-mode\",{\"filterAssistent\":[1040],\"application\":[1040]}]]],[\"snk-actions-button_4.cjs\",[[2,\"snk-grid-config\",{\"selectedIndex\":[1026,\"selected-index\"],\"columns\":[1040],\"config\":[1040],\"configName\":[1,\"config-name\"],\"resourceID\":[1,\"resource-i-d\"]}],[2,\"snk-actions-button\",{\"_items\":[32],\"_showDropdown\":[32],\"_actions\":[32],\"_isOrderActions\":[32]}],[1,\"snk-select-box\",{\"selectedOption\":[1,\"selected-option\"]}],[2,\"taskbar-actions-button\",{\"title\":[1],\"enabled\":[4],\"actions\":[16],\"_showDropdown\":[32],\"showActions\":[64],\"hideActions\":[64],\"isOpened\":[64]},[[8,\"keydown\",\"handleKeyDown\"],[8,\"ezOpenModal\",\"handleClose\"]]]]],[\"snk-detail-view.cjs\",[[6,\"snk-detail-view\",{\"formConfigManager\":[1040],\"dataUnitName\":[1,\"data-unit-name\"],\"resourceID\":[1,\"resource-i-d\"],\"guideItemPath\":[16],\"entityName\":[1,\"entity-name\"],\"label\":[1],\"dataUnit\":[1040],\"selectedForm\":[1025,\"selected-form\"],\"dataState\":[1040],\"messagesBuilder\":[1040],\"branchGuide\":[1040],\"canEdit\":[4,\"can-edit\"],\"taskbarCustomContainerId\":[1,\"taskbar-custom-container-id\"],\"customEditors\":[16],\"customRenders\":[16],\"_disabledButtons\":[32],\"_currentView\":[32],\"attachmentRegisterKey\":[32],\"changeViewMode\":[64],\"configGrid\":[64],\"showUp\":[64],\"addCustomEditor\":[64],\"addGridCustomRender\":[64]},[[0,\"snkContentCardChanged\",\"onContentCardChanged\"]]]]]]"), options);
|
|
17
|
+
return index.bootstrapLazy(JSON.parse("[[\"snk-distinct-search.cjs\",[[2,\"snk-distinct-search\",{\"value\":[1025],\"label\":[1],\"configSearch\":[16],\"maxItems\":[2,\"max-items\"],\"debounceTime\":[2,\"debounce-time\"],\"canShowError\":[4,\"can-show-error\"],\"mode\":[1],\"restrict\":[1],\"errorMessage\":[1,\"error-message\"],\"distinctItems\":[32],\"clearInput\":[64],\"isInvalid\":[64],\"setBlur\":[64],\"setFocus\":[64],\"closeModal\":[64],\"openModal\":[64]}]]],[\"teste-pesquisa.cjs\",[[1,\"teste-pesquisa\"]]],[\"snk-filter-modal.cjs\",[[0,\"snk-filter-modal\",{\"getMessage\":[16],\"configName\":[1025,\"config-name\"],\"filters\":[1040],\"applyFilters\":[16],\"closeModal\":[16],\"addPersonalizedFilter\":[16],\"editPersonalizedFilter\":[16],\"deletePersonalizedFilter\":[16],\"filtersToDelete\":[16],\"disablePersonalizedFilter\":[4,\"disable-personalized-filter\"]},[[0,\"deleteFilter\",\"deletePersonalizedFilterListener\"]]]]],[\"snk-actions-form.cjs\",[[2,\"snk-actions-form\",{\"action\":[16],\"applyParameters\":[16],\"dataUnit\":[32],\"openPopup\":[64]}]]],[\"snk-client-confirm.cjs\",[[2,\"snk-client-confirm\",{\"titleMessage\":[1,\"title-message\"],\"message\":[1],\"accept\":[16],\"cancel\":[16],\"openPopup\":[64]}]]],[\"snk-custom-slot-elements.cjs\",[[6,\"snk-custom-slot-elements\",{\"slotName\":[1,\"slot-name\"]}]]],[\"snk-entity-list.cjs\",[[2,\"snk-entity-list\",{\"config\":[1040],\"rightListSlotBuilder\":[1040],\"maxHeightList\":[1,\"max-height-list\"],\"_searchValue\":[32],\"_ezListSource\":[32],\"reloadList\":[64]}]]],[\"snk-filter-binary-select.cjs\",[[0,\"snk-filter-binary-select\",{\"value\":[1544],\"config\":[16],\"presentationMode\":[2,\"presentation-mode\"],\"resetValues\":[64]},[[0,\"ezChange\",\"ezChangeListener\"]]]]],[\"snk-filter-checkbox-list.cjs\",[[0,\"snk-filter-checkbox-list\",{\"config\":[1040],\"optionsList\":[32]}]]],[\"snk-filter-list.cjs\",[[4,\"snk-filter-list\",{\"label\":[1],\"iconName\":[1,\"icon-name\"],\"items\":[16],\"getMessage\":[16],\"emptyText\":[1,\"empty-text\"],\"findFilterText\":[1,\"find-filter-text\"],\"buttonClass\":[1,\"button-class\"],\"_filterArgument\":[32],\"_showAll\":[32],\"hideDetail\":[64]},[[2,\"keydown\",\"keyDownHandler\"]]]]],[\"snk-filter-multi-select.cjs\",[[0,\"snk-filter-multi-select\",{\"value\":[1544],\"config\":[16],\"show\":[64]},[[0,\"ezChange\",\"ezChangeListener\"]]]]],[\"snk-filter-number.cjs\",[[0,\"snk-filter-number\",{\"config\":[16],\"getMessage\":[16],\"value\":[2],\"presentationMode\":[2,\"presentation-mode\"],\"show\":[64]},[[0,\"ezChange\",\"ezChangeListener\"]]]]],[\"snk-filter-period.cjs\",[[0,\"snk-filter-period\",{\"config\":[16],\"getMessage\":[16],\"value\":[8],\"presentationMode\":[2,\"presentation-mode\"],\"show\":[64]},[[0,\"ezChange\",\"ezChangeListener\"]]]]],[\"snk-filter-search.cjs\",[[0,\"snk-filter-search\",{\"config\":[16],\"value\":[16],\"show\":[64]},[[0,\"ezChange\",\"ezChangeListener\"]]]]],[\"snk-filter-text.cjs\",[[0,\"snk-filter-text\",{\"config\":[16],\"value\":[1]},[[0,\"ezChange\",\"ezChangeListener\"]]]]],[\"snk-personalized-filter-editor.cjs\",[[2,\"snk-personalized-filter-editor\",{\"messagesBuilder\":[1040],\"presentationMode\":[2,\"presentation-mode\"],\"config\":[16],\"value\":[1040],\"items\":[32],\"show\":[64]}]]],[\"snk-print-selector.cjs\",[[2,\"snk-print-selector\",{\"_printServerActive\":[32],\"_selectedPrinter\":[32],\"_remotePrintersDataSource\":[32],\"_localPrintersDataSource\":[32],\"_printJobData\":[32],\"openPrintSelector\":[64]}]]],[\"snk-filter-modal-item.cjs\",[[0,\"snk-filter-modal-item\",{\"filterItem\":[1040],\"configName\":[1025,\"config-name\"],\"resourceID\":[1,\"resource-i-d\"]}]]],[\"input-distinct-search_2.cjs\",[[1,\"input-distinct-search\",{\"distinctItems\":[16],\"label\":[1],\"value\":[1],\"maxItems\":[2,\"max-items\"],\"debounceTime\":[2,\"debounce-time\"],\"canShowError\":[4,\"can-show-error\"],\"mode\":[1],\"restrict\":[1],\"errorMessage\":[1,\"error-message\"],\"textValue\":[32],\"isNewItem\":[32],\"filteredItems\":[32],\"isNewItemSelected\":[32],\"selectValue\":[64],\"clearInput\":[64],\"isInvalid\":[64],\"setBlur\":[64],\"setFocus\":[64]}],[2,\"search-modal\",{\"listItens\":[1040],\"opened\":[1540],\"value\":[1],\"canShowError\":[4,\"can-show-error\"],\"emptyMessage\":[1,\"empty-message\"],\"debounceTime\":[2,\"debounce-time\"],\"maxItens\":[2,\"max-itens\"],\"label\":[1],\"mode\":[1],\"restrict\":[1],\"errorMessage\":[1,\"error-message\"],\"filteredItems\":[32],\"searchFocus\":[32],\"itemNew\":[32],\"addNewItem\":[64],\"clearInput\":[64],\"closeModal\":[64],\"openModal\":[64],\"isInvalid\":[64],\"setBlur\":[64],\"setFocus\":[64]}]]],[\"snk-pesquisa.cjs\",[[2,\"snk-pesquisa\",{\"searchLoader\":[16],\"selectItem\":[16],\"argument\":[1025],\"_itemList\":[32],\"_startLoading\":[32]}]]],[\"snk-simple-crud.cjs\",[[6,\"snk-simple-crud\",{\"dataState\":[16],\"dataUnit\":[16],\"entityName\":[1,\"entity-name\"],\"mode\":[2],\"gridConfig\":[1040],\"formConfig\":[1040],\"multipleSelection\":[4,\"multiple-selection\"],\"useCancelConfirm\":[4,\"use-cancel-confirm\"],\"pageSize\":[2,\"page-size\"],\"resourceID\":[1,\"resource-i-d\"],\"enableGridInsert\":[4,\"enable-grid-insert\"],\"taskbarManager\":[16],\"messagesBuilder\":[1040],\"useEnterLikeTab\":[4,\"use-enter-like-tab\"],\"actionsList\":[16],\"configName\":[1025,\"config-name\"],\"showConfiguratorButtons\":[4,\"show-configurator-buttons\"],\"gridLegacyConfigName\":[1,\"grid-legacy-config-name\"],\"formLegacyConfigName\":[1,\"form-legacy-config-name\"],\"ignoreReadOnlyFormFields\":[4,\"ignore-read-only-form-fields\"],\"autoFocus\":[4,\"auto-focus\"],\"domainMessagesBuilder\":[1,\"domain-messages-builder\"],\"autoLoad\":[4,\"auto-load\"],\"_showPopUpGridConfig\":[32],\"_showFormConfig\":[32],\"_currentViewMode\":[32],\"_config\":[32],\"_fieldToGetFocus\":[32],\"_customContainerId\":[32],\"_formFields\":[32],\"_fieldsProps\":[32],\"_enableContinuousInsert\":[32],\"addCustomEditor\":[64],\"addGridCustomRender\":[64],\"addCustomValueFormatter\":[64],\"removeCustomValueFormatter\":[64],\"setFieldProp\":[64],\"goToView\":[64],\"setMetadata\":[64],\"setRecords\":[64],\"getRecords\":[64],\"openConfigurator\":[64],\"closeConfigurator\":[64],\"updateConfig\":[64]},[[0,\"actionClick\",\"actionClickListener\"]]]]],[\"snk-form-summary.cjs\",[[2,\"snk-form-summary\",{\"fixed\":[1540],\"contracted\":[1540],\"summary\":[16]}]]],[\"snk-form-view.cjs\",[[6,\"snk-form-view\",{\"levelPath\":[1,\"level-path\"],\"label\":[1],\"name\":[1],\"fields\":[16],\"formMetadata\":[8,\"form-metadata\"],\"dataUnit\":[16],\"contracted\":[4],\"fixed\":[1540],\"summaryFields\":[16],\"canExpand\":[4,\"can-expand\"],\"canFix\":[4,\"can-fix\"],\"recordsValidator\":[16],\"fieldToFocus\":[1,\"field-to-focus\"],\"customEditors\":[16],\"fieldsProps\":[16],\"showUp\":[64],\"addCustomEditor\":[64],\"setFieldProp\":[64]}]]],[\"snk-filter-field-search_2.cjs\",[[2,\"snk-filter-field-search\",{\"searchable\":[4],\"fieldsDataSource\":[16],\"breadcrumbItems\":[32],\"linkItems\":[32],\"fieldItems\":[32],\"searchEmpty\":[32],\"groupEmpty\":[32],\"show\":[64],\"applyFilter\":[64]}],[0,\"snk-filter-param-config\",{\"messagesBuilder\":[1040],\"_opened\":[32],\"_configType\":[32],\"_expressionItem\":[32],\"_informedInstance\":[32],\"_canSave\":[32],\"open\":[64],\"close\":[64]}]]],[\"snk-expression-group_2.cjs\",[[2,\"snk-expression-group\",{\"parentTop\":[1026,\"parent-top\"],\"group\":[1040],\"messagesBuilder\":[1040],\"filterId\":[1025,\"filter-id\"],\"entityURI\":[1025,\"entity-u-r-i\"],\"_conditionOperator\":[32],\"_group\":[32],\"_selfTop\":[32],\"canAddExpression\":[32],\"_showDashes\":[32],\"getExpressionGroup\":[64]},[[8,\"ezExpressionLayoutChanged\",\"todoCompletedHandler\"]]],[2,\"snk-expression-item\",{\"expression\":[16],\"canRemove\":[516,\"can-remove\"],\"messagesBuilder\":[1040],\"entityURI\":[1025,\"entity-u-r-i\"],\"_showValueVariable\":[32],\"_fieldSelected\":[32],\"_optionNotNull\":[32]}]]],[\"snk-personalized-filter.cjs\",[[2,\"snk-personalized-filter\",{\"messagesBuilder\":[1040],\"entityUri\":[1025,\"entity-uri\"],\"filterId\":[1025,\"filter-id\"],\"configName\":[1025,\"config-name\"],\"resourceID\":[1,\"resource-i-d\"],\"_filterAssistentMode\":[32],\"_filterAssistent\":[32],\"createPersonalizedFilter\":[64]}]]],[\"snk-filter-item.cjs\",[[0,\"snk-filter-item\",{\"config\":[1040],\"getMessage\":[16],\"showChips\":[4,\"show-chips\"],\"detailIsVisible\":[32],\"showUp\":[64],\"hideDetail\":[64]},[[2,\"click\",\"clickListener\"],[2,\"mousedown\",\"mouseDownListener\"],[0,\"filterChange\",\"filterChangeListener\"]]]]],[\"snk-filter-bar.cjs\",[[2,\"snk-filter-bar\",{\"customFilterBarConfig\":[16],\"dataUnit\":[1040],\"title\":[1],\"configName\":[1,\"config-name\"],\"resourceID\":[1,\"resource-i-d\"],\"mode\":[1],\"filterConfig\":[1040],\"messagesBuilder\":[1040],\"disablePersonalizedFilter\":[4,\"disable-personalized-filter\"],\"filterBarLegacyConfigName\":[1,\"filter-bar-legacy-config-name\"],\"autoLoad\":[4,\"auto-load\"],\"allowDefault\":[32],\"scrollerLocked\":[32],\"showPersonalizedFilter\":[32],\"personalizedFilterId\":[32],\"reload\":[64],\"getFilterItem\":[64],\"updateFilterItem\":[64],\"addFilterItem\":[64],\"removeFilterItem\":[64],\"showFilterModal\":[64]},[[0,\"filterChange\",\"filterChangeListener\"]]]]],[\"snk-grid.cjs\",[[6,\"snk-grid\",{\"columnFilterDataSource\":[1040],\"configName\":[1,\"config-name\"],\"filterBarTitle\":[1,\"filter-bar-title\"],\"resourceID\":[1,\"resource-i-d\"],\"selectionToastConfig\":[16],\"actionsList\":[16],\"isDetail\":[4,\"is-detail\"],\"taskbarManager\":[16],\"statusResolver\":[16],\"multipleSelection\":[4,\"multiple-selection\"],\"presentationMode\":[1,\"presentation-mode\"],\"messagesBuilder\":[1040],\"useEnterLikeTab\":[4,\"use-enter-like-tab\"],\"recordsValidator\":[16],\"canEdit\":[4,\"can-edit\"],\"taskbarCustomContainerId\":[1,\"taskbar-custom-container-id\"],\"gridHeaderCustomSlotId\":[1,\"grid-header-custom-slot-id\"],\"topTaskbarCustomSlotId\":[1,\"top-taskbar-custom-slot-id\"],\"disablePersonalizedFilter\":[4,\"disable-personalized-filter\"],\"gridLegacyConfigName\":[1,\"grid-legacy-config-name\"],\"filterBarLegacyConfigName\":[1,\"filter-bar-legacy-config-name\"],\"autoLoad\":[4,\"auto-load\"],\"autoFocus\":[4,\"auto-focus\"],\"enableGridInsert\":[4,\"enable-grid-insert\"],\"_dataUnit\":[32],\"_dataState\":[32],\"_gridConfig\":[32],\"_popUpGridConfig\":[32],\"_showSnkFilterBar\":[32],\"_enableContinuousInsert\":[32],\"showConfig\":[64],\"hideConfig\":[64],\"setConfig\":[64],\"reloadFilterBar\":[64],\"getFilterBar\":[64],\"findColumn\":[64],\"addCustomEditor\":[64],\"addGridCustomRender\":[64],\"addCustomValueFormatter\":[64],\"removeCustomValueFormatter\":[64],\"setFocus\":[64]}]]],[\"snk-configurator.cjs\",[[2,\"snk-configurator\",{\"showActionButtons\":[4,\"show-action-buttons\"],\"configName\":[1,\"config-name\"],\"resourceID\":[1,\"resource-i-d\"],\"viewMode\":[2,\"view-mode\"],\"customContainerId\":[1,\"custom-container-id\"],\"messagesBuilder\":[1040],\"_opened\":[32],\"_permissions\":[32],\"open\":[64],\"close\":[64]}]]],[\"snk-data-unit.cjs\",[[2,\"snk-data-unit\",{\"dataState\":[1040],\"messagesBuilder\":[1040],\"dataUnitName\":[1,\"data-unit-name\"],\"entityName\":[1,\"entity-name\"],\"pageSize\":[2,\"page-size\"],\"dataUnit\":[1040],\"beforeSave\":[16],\"afterSave\":[16],\"useCancelConfirm\":[4,\"use-cancel-confirm\"],\"ignoreSaveMessage\":[4,\"ignore-save-message\"],\"configName\":[1,\"config-name\"],\"resourceID\":[1,\"resource-i-d\"],\"domainMessagesBuilder\":[1,\"domain-messages-builder\"],\"fieldsToLink\":[32],\"getDataUnit\":[64],\"getSelectedRecordsIDsInfo\":[64],\"getFieldsWithRmp\":[64],\"getFieldsWithRmPrecision\":[64],\"getRowMetadata\":[64]}]]],[\"snk-taskbar.cjs\",[[6,\"snk-taskbar\",{\"alignRigth\":[4,\"align-rigth\"],\"customSlotId\":[1,\"custom-slot-id\"],\"customContainerId\":[1,\"custom-container-id\"],\"overflowStrategy\":[1,\"overflow-strategy\"],\"configName\":[1,\"config-name\"],\"resourceID\":[1,\"resource-i-d\"],\"buttons\":[1],\"customButtons\":[16],\"actionsList\":[16],\"primaryButton\":[1,\"primary-button\"],\"disabledButtons\":[16],\"dataUnit\":[16],\"presentationMode\":[1537,\"presentation-mode\"],\"messagesBuilder\":[1040],\"_permissions\":[32],\"_overFlowedElements\":[32],\"_customElements\":[32],\"_customElementsId\":[32],\"_slotContainer\":[32],\"_hiddenActionsList\":[32],\"_lastWidth\":[32],\"_hasToUpdateOverFlow\":[32],\"_isWaitingForSave\":[32]},[[8,\"snkCustomSlotElementsLoaded\",\"handleCustomSlotElementsLoaded\"],[8,\"taskbarSaveLocker\",\"handleTaskbarSaveLocker\"],[8,\"taskbarSaveUnlocker\",\"handleTaskbarSaveUnlocker\"]]]]],[\"snk-filter-detail.cjs\",[[0,\"snk-filter-detail\",{\"config\":[1040],\"getMessage\":[16],\"showHardFixed\":[4,\"show-hard-fixed\"],\"show\":[64]}]]],[\"snk-config-options.cjs\",[[2,\"snk-config-options\",{\"fieldConfig\":[16],\"idConfig\":[513,\"id-config\"],\"dataUnit\":[16],\"messagesBuilder\":[1040],\"_defaultType\":[32]}]]],[\"snk-field-config.cjs\",[[2,\"snk-field-config\",{\"isConfigActive\":[16],\"fieldConfig\":[16],\"modeInsertion\":[516,\"mode-insertion\"],\"dataUnit\":[16],\"messagesBuilder\":[1040]}]]],[\"snk-tab-config.cjs\",[[6,\"snk-tab-config\",{\"selectedIndex\":[1538,\"selected-index\"],\"selectedTab\":[1537,\"selected-tab\"],\"tabs\":[1],\"tabItems\":[16],\"messagesBuilder\":[1040],\"_processedTabs\":[32],\"_activeEditText\":[32],\"_activeEditTextIndex\":[32],\"_actionsHide\":[32],\"_actionsShow\":[32]}]]],[\"snk-form-config.cjs\",[[2,\"snk-form-config\",{\"dataUnit\":[16],\"configManager\":[16],\"messagesBuilder\":[1040],\"_formConfigOptions\":[32],\"_fieldConfigSelected\":[32],\"_layoutFormConfig\":[32],\"_fieldsAvailable\":[32],\"_formConfig\":[32],\"_formConfigChanged\":[32],\"_optionFormConfigSelected\":[32],\"_optionFormConfigChanged\":[32],\"_tempGroups\":[32]}]]],[\"snk-simple-bar.cjs\",[[6,\"snk-simple-bar\",{\"label\":[1],\"breadcrumbItens\":[16],\"messagesBuilder\":[1040]}]]],[\"snk-exporter-email-sender.cjs\",[[0,\"snk-exporter-email-sender\",{\"getMessage\":[16],\"_config\":[32],\"_opened\":[32],\"_currentStep\":[32],\"open\":[64],\"close\":[64]}]]],[\"snk-actions-button_4.cjs\",[[2,\"snk-grid-config\",{\"selectedIndex\":[1026,\"selected-index\"],\"columns\":[1040],\"config\":[1040],\"configName\":[1,\"config-name\"],\"resourceID\":[1,\"resource-i-d\"]}],[2,\"snk-actions-button\",{\"_items\":[32],\"_showDropdown\":[32],\"_actions\":[32],\"_isOrderActions\":[32]}],[1,\"snk-select-box\",{\"selectedOption\":[1,\"selected-option\"]}],[2,\"taskbar-actions-button\",{\"title\":[1],\"enabled\":[4],\"actions\":[16],\"_showDropdown\":[32],\"showActions\":[64],\"hideActions\":[64],\"isOpened\":[64]},[[8,\"keydown\",\"handleKeyDown\"],[8,\"ezOpenModal\",\"handleClose\"]]]]],[\"snk-crud.cjs\",[[6,\"snk-crud\",{\"configName\":[1025,\"config-name\"],\"filterBarTitle\":[1,\"filter-bar-title\"],\"selectionToastConfig\":[16],\"showActionButtons\":[4,\"show-action-buttons\"],\"actionsList\":[16],\"taskbarManager\":[16],\"recordsValidator\":[16],\"statusResolver\":[16],\"multipleSelection\":[4,\"multiple-selection\"],\"presentationMode\":[1,\"presentation-mode\"],\"messagesBuilder\":[1040],\"useEnterLikeTab\":[4,\"use-enter-like-tab\"],\"gridLegacyConfigName\":[1,\"grid-legacy-config-name\"],\"filterBarLegacyConfigName\":[1,\"filter-bar-legacy-config-name\"],\"formLegacyConfigName\":[1,\"form-legacy-config-name\"],\"disablePersonalizedFilter\":[4,\"disable-personalized-filter\"],\"autoLoad\":[4,\"auto-load\"],\"autoFocus\":[4,\"auto-focus\"],\"enableGridInsert\":[4,\"enable-grid-insert\"],\"domainMessagesBuilder\":[1,\"domain-messages-builder\"],\"setCustomFormTitle\":[16],\"_dataUnit\":[32],\"_dataState\":[32],\"attachmentRegisterKey\":[32],\"_currentViewMode\":[32],\"_canEdit\":[32],\"_resourceID\":[32],\"customContainerId\":[32],\"goToView\":[64],\"openConfigurator\":[64],\"closeConfigurator\":[64],\"reloadFilterBar\":[64],\"getFilterBar\":[64],\"addCustomEditor\":[64],\"addGridCustomRender\":[64],\"addCustomValueFormatter\":[64],\"removeCustomValueFormatter\":[64],\"setFieldProp\":[64]}]]],[\"snk-form.cjs\",[[2,\"snk-form\",{\"configName\":[1,\"config-name\"],\"recordsValidator\":[16],\"messagesBuilder\":[1040],\"formLegacyConfigName\":[1,\"form-legacy-config-name\"],\"resourceID\":[1,\"resource-i-d\"],\"_dataUnit\":[32],\"_dataState\":[32],\"_showFormConfig\":[32],\"_configManager\":[32],\"showConfig\":[64],\"hideConfig\":[64],\"addCustomEditor\":[64],\"setFieldProp\":[64]}]]],[\"snk-data-exporter.cjs\",[[2,\"snk-data-exporter\",{\"provider\":[16],\"messagesBuilder\":[1040],\"_items\":[32],\"_showDropdown\":[32]}]]],[\"snk-guides-viewer.cjs\",[[6,\"snk-guides-viewer\",{\"dataUnit\":[16],\"dataState\":[16],\"configName\":[1,\"config-name\"],\"entityPath\":[1,\"entity-path\"],\"actionsList\":[16],\"recordsValidator\":[16],\"masterFormConfig\":[1040],\"selectedGuide\":[16],\"taskbarManager\":[16],\"messagesBuilder\":[1040],\"canEdit\":[4,\"can-edit\"],\"presentationMode\":[1,\"presentation-mode\"],\"resourceID\":[1,\"resource-i-d\"],\"detailTaskbarCustomContainerId\":[1,\"detail-taskbar-custom-container-id\"],\"formLegacyConfigName\":[1,\"form-legacy-config-name\"],\"enableGridInsert\":[4,\"enable-grid-insert\"],\"getCustomTitle\":[16],\"_hasToCreateFieldSearch\":[32],\"_breadcrumbItems\":[32],\"_guides\":[32],\"_formEditorConfigManager\":[32],\"_formEditorDataUnit\":[32],\"_fieldToGetFocus\":[32],\"_customEditors\":[32],\"_customRenders\":[32],\"_fieldsProps\":[32],\"showFormConfig\":[64],\"findField\":[64],\"addCustomEditor\":[64],\"addGridCustomRender\":[64],\"setFieldProp\":[64],\"setFocus\":[64]},[[2,\"actionClick\",\"onActionClick\"],[0,\"snkContentCardChanged\",\"onContentCardChanged\"]]]]],[\"snk-application.cjs\",[[2,\"snk-application\",{\"messagesBuilder\":[1040],\"configName\":[1,\"config-name\"],\"gridLegacyConfigName\":[1,\"grid-legacy-config-name\"],\"formLegacyConfigName\":[1,\"form-legacy-config-name\"],\"loadByPK\":[16],\"getKeyboardManager\":[64],\"isUserSup\":[64],\"addPendingAction\":[64],\"callServiceBroker\":[64],\"initOnboarding\":[64],\"hasAccess\":[64],\"getAllAccess\":[64],\"getStringParam\":[64],\"getIntParam\":[64],\"getFloatParam\":[64],\"getBooleanParam\":[64],\"getDateParam\":[64],\"showPopUp\":[64],\"showModal\":[64],\"showAlerts\":[64],\"closeModal\":[64],\"closePopUp\":[64],\"temOpcional\":[64],\"getConfig\":[64],\"saveConfig\":[64],\"getAttributeFromHTMLWrapper\":[64],\"openApp\":[64],\"webConnection\":[64],\"createDataunit\":[64],\"updateDataunitCache\":[64],\"getDataUnit\":[64],\"addClientEvent\":[64],\"removeClientEvent\":[64],\"hasClientEvent\":[64],\"getResourceID\":[64],\"getUserID\":[64],\"alert\":[64],\"error\":[64],\"success\":[64],\"message\":[64],\"confirm\":[64],\"info\":[64],\"loadTotals\":[64],\"isLoadedByPk\":[64],\"executeSearch\":[64],\"executePreparedSearch\":[64],\"isDebugMode\":[64],\"getAppLabel\":[64],\"addSearchListener\":[64],\"importScript\":[64],\"getApplicationPath\":[64],\"executeSelectDistinct\":[64],\"getDataFetcher\":[64],\"whenApplicationReady\":[64],\"setSearchFilterContext\":[64]}]]],[\"snk-attach.cjs\",[[2,\"snk-attach\",{\"fetcherType\":[1,\"fetcher-type\"],\"fetcher\":[16],\"dataUnit\":[16],\"dataUnitBuilder\":[16],\"registerKey\":[1,\"register-key\"],\"entityName\":[1,\"entity-name\"],\"messagesBuilder\":[1040],\"_currentFetcher\":[32],\"_currentDataUnit\":[32],\"crudConfig\":[32]}]]],[\"snk-filter-advanced-mode_2.cjs\",[[2,\"snk-filter-assistent-mode\",{\"filterAssistent\":[1040],\"messagesBuilder\":[1040],\"filterId\":[1025,\"filter-id\"],\"entityUri\":[1025,\"entity-uri\"],\"application\":[1040]}],[2,\"snk-filter-advanced-mode\",{\"filterAssistent\":[1040],\"application\":[1040]}]]],[\"snk-detail-view.cjs\",[[6,\"snk-detail-view\",{\"formConfigManager\":[1040],\"dataUnitName\":[1,\"data-unit-name\"],\"resourceID\":[1,\"resource-i-d\"],\"guideItemPath\":[16],\"entityName\":[1,\"entity-name\"],\"label\":[1],\"dataUnit\":[1040],\"selectedForm\":[1025,\"selected-form\"],\"dataState\":[1040],\"messagesBuilder\":[1040],\"branchGuide\":[1040],\"canEdit\":[4,\"can-edit\"],\"taskbarCustomContainerId\":[1,\"taskbar-custom-container-id\"],\"customEditors\":[16],\"customRenders\":[16],\"_disabledButtons\":[32],\"_currentView\":[32],\"attachmentRegisterKey\":[32],\"changeViewMode\":[64],\"configGrid\":[64],\"showUp\":[64],\"addCustomEditor\":[64],\"addGridCustomRender\":[64]},[[0,\"snkContentCardChanged\",\"onContentCardChanged\"]]]]]]"), options);
|
|
18
18
|
});
|
|
19
19
|
};
|
|
20
20
|
|