@sankhyalabs/sankhyablocks 10.1.0-dev.37 → 10.1.0-dev.39
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/{ConfigStorage-e384fb7b.js → ConfigStorage-a1fab5ca.js} +2 -2
- package/dist/cjs/ContinuousInsertUtils-1ae0c6ac.js +41 -0
- package/dist/cjs/{DataFetcher-3a8ea521.js → DataFetcher-384d2ce8.js} +1 -1
- package/dist/cjs/{ISave-a66bb65e.js → ISave-ecbe9336.js} +1 -1
- package/dist/cjs/{ImageUtils-5e3f406b.js → ImageUtils-c46f2d11.js} +1 -1
- package/dist/cjs/{SnkFormConfigManager-73df0f8b.js → SnkFormConfigManager-44386305.js} +2 -2
- package/dist/cjs/{SnkMessageBuilder-d9558dba.js → SnkMessageBuilder-a9300ebe.js} +24 -0
- package/dist/cjs/{SnkMultiSelectionListDataSource-016393f3.js → SnkMultiSelectionListDataSource-b951ed91.js} +61 -47
- package/dist/cjs/{auth-fetcher-80e608b0.js → auth-fetcher-6b134ec4.js} +1 -1
- package/dist/cjs/{dataunit-fetcher-6febd6c4.js → dataunit-fetcher-93f53260.js} +2 -2
- package/dist/cjs/{form-config-fetcher-81cbd405.js → form-config-fetcher-45d1964c.js} +1 -1
- package/dist/cjs/index-1894343a.js +8 -8
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/pesquisa-grid_2.cjs.entry.js +5 -5
- package/dist/cjs/sankhyablocks.cjs.js +1 -1
- package/dist/cjs/{snk-actions-button_8.cjs.entry.js → snk-actions-button_9.cjs.entry.js} +52 -12
- package/dist/cjs/snk-application.cjs.entry.js +7 -7
- package/dist/cjs/snk-attach.cjs.entry.js +50 -24
- package/dist/cjs/snk-crud.cjs.entry.js +344 -109
- package/dist/cjs/snk-data-exporter.cjs.entry.js +8 -7
- package/dist/cjs/{snk-data-unit-94757628.js → snk-data-unit-6abc5efc.js} +2 -2
- package/dist/cjs/snk-data-unit.cjs.entry.js +4 -4
- package/dist/cjs/snk-detail-view.cjs.entry.js +11 -16
- package/dist/cjs/snk-entity-search.cjs.entry.js +211 -0
- package/dist/cjs/snk-exporter-email-sender.cjs.entry.js +1 -1
- package/dist/cjs/{snk-filter-advanced-mode_2.cjs.entry.js → snk-filter-advanced-mode_3.cjs.entry.js} +39 -1
- package/dist/cjs/snk-filter-bar_4.cjs.entry.js +106 -95
- package/dist/cjs/snk-filter-modal-item.cjs.entry.js +4 -4
- package/dist/cjs/snk-form-view.cjs.entry.js +1 -1
- package/dist/cjs/snk-form_2.cjs.entry.js +5 -5
- package/dist/cjs/snk-grid.cjs.entry.js +40 -17
- package/dist/cjs/{snk-guides-viewer-688c4398.js → snk-guides-viewer-b4ca3437.js} +37 -153
- package/dist/cjs/snk-guides-viewer.cjs.entry.js +9 -17
- package/dist/cjs/snk-image-input.cjs.entry.js +2 -2
- package/dist/cjs/snk-layout-form-config.cjs.entry.js +5 -5
- package/dist/cjs/snk-personalized-filter.cjs.entry.js +5 -5
- package/dist/cjs/snk-pesquisa.cjs.entry.js +5 -5
- package/dist/cjs/snk-simple-crud.cjs.entry.js +12 -12
- package/dist/cjs/snk-taskbar.cjs.entry.js +181 -124
- package/dist/cjs/taskbar-elements-80eddec8.js +152 -0
- package/dist/collection/collection-manifest.json +2 -0
- package/dist/collection/components/snk-actions-button/snk-actions-button.js +27 -3
- package/dist/collection/components/snk-attach/snk-attach.css +29 -7
- package/dist/collection/components/snk-attach/snk-attach.js +81 -18
- package/dist/collection/components/snk-crud/snk-crud.css +46 -0
- package/dist/collection/components/snk-crud/snk-crud.js +143 -94
- package/dist/collection/components/snk-crud/subcomponents/snk-detail-view/snk-detail-view.js +2 -5
- package/dist/collection/components/snk-crud/subcomponents/snk-entity-search.css +17 -0
- package/dist/collection/components/snk-crud/subcomponents/snk-entity-search.js +330 -0
- package/dist/collection/components/snk-crud/subcomponents/snk-guides-viewer.css +22 -8
- package/dist/collection/components/snk-crud/subcomponents/snk-guides-viewer.js +35 -144
- package/dist/collection/components/snk-crud/utils/taskbarUtils.js +144 -0
- package/dist/collection/components/snk-data-exporter/exporter-email-sender/snk-exporter-email-sender.js +1 -1
- package/dist/collection/components/snk-data-exporter/snk-data-exporter.js +20 -1
- package/dist/collection/components/snk-filter-bar/filter-item/snk-filter-item.css +2 -2
- package/dist/collection/components/snk-filter-bar/filter-item/snk-filter-item.js +23 -1
- package/dist/collection/components/snk-filter-bar/filter-modal/snk-filter-modal.css +6 -1
- package/dist/collection/components/snk-filter-bar/filter-modal/snk-filter-modal.js +8 -5
- package/dist/collection/components/snk-filter-bar/snk-filter-bar.css +1 -6
- package/dist/collection/components/snk-filter-bar/snk-filter-bar.js +139 -84
- package/dist/collection/components/snk-grid/snk-grid.css +12 -3
- package/dist/collection/components/snk-grid/snk-grid.js +148 -4
- package/dist/collection/components/snk-image-input/utils/ImageUtils.js +1 -1
- package/dist/collection/components/snk-personalized-filter/snk-personalized-filter.js +1 -1
- package/dist/collection/components/snk-taskbar/elements/taskbar-actions-button/taskbar-actions-button.css +8 -0
- package/dist/collection/components/snk-taskbar/elements/taskbar-actions-button/taskbar-actions-button.js +38 -2
- package/dist/collection/components/snk-taskbar/elements/taskbar-elements.js +51 -35
- package/dist/collection/components/snk-taskbar/elements/taskbar-split-button/taskbar-split-button.js +27 -1
- package/dist/collection/components/snk-taskbar/processor/simple-taskbar-processor.js +55 -0
- package/dist/collection/components/snk-taskbar/snk-taskbar.css +44 -1
- package/dist/collection/components/snk-taskbar/snk-taskbar.js +248 -132
- package/dist/collection/components/snk-taskbar/subcomponents/snk-taskbar-skeleton.css +12 -0
- package/dist/collection/components/snk-taskbar/subcomponents/snk-taskbar-skeleton.js +19 -0
- package/dist/collection/lib/message/resources/en-us/snk-crud.msg.js +8 -0
- package/dist/collection/lib/message/resources/es-es/snk-crud.msg.js +8 -0
- package/dist/collection/lib/message/resources/pt-br/snk-crud.msg.js +8 -0
- package/dist/components/ContinuousInsertUtils.js +1 -1
- package/dist/components/SnkMessageBuilder.js +24 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.js +2 -0
- package/dist/components/snk-actions-button2.js +6 -3
- package/dist/components/snk-attach2.js +56 -27
- package/dist/components/snk-crud.js +422 -175
- package/dist/components/snk-data-exporter2.js +3 -1
- package/dist/components/snk-detail-view2.js +158 -258
- package/dist/components/snk-entity-search.d.ts +11 -0
- package/dist/components/snk-entity-search.js +6 -0
- package/dist/components/snk-entity-search2.js +231 -0
- package/dist/components/snk-exporter-email-sender2.js +1 -1
- package/dist/components/snk-filter-bar2.js +94 -85
- package/dist/components/snk-filter-item2.js +4 -2
- package/dist/components/snk-filter-modal2.js +8 -5
- package/dist/components/snk-grid2.js +82 -47
- package/dist/components/snk-image-input2.js +1 -1
- package/dist/components/snk-personalized-filter2.js +1 -1
- package/dist/components/snk-simple-crud2.js +29 -23
- package/dist/components/snk-taskbar-skeleton.d.ts +11 -0
- package/dist/components/snk-taskbar-skeleton.js +6 -0
- package/dist/components/snk-taskbar-skeleton2.js +29 -0
- package/dist/components/snk-taskbar2.js +253 -174
- package/dist/components/taskbar-actions-button2.js +21 -2
- package/dist/components/taskbar-split-button2.js +10 -1
- package/dist/esm/{ConfigStorage-82ff76fb.js → ConfigStorage-76872695.js} +2 -2
- package/dist/esm/ContinuousInsertUtils-bce77dc1.js +39 -0
- package/dist/esm/{DataFetcher-1dd7e8c0.js → DataFetcher-e60f8d53.js} +1 -1
- package/dist/esm/{ISave-498c4831.js → ISave-4929c071.js} +1 -1
- package/dist/esm/{ImageUtils-8fc8d905.js → ImageUtils-7f3a4149.js} +1 -1
- package/dist/esm/{SnkFormConfigManager-e8ae1561.js → SnkFormConfigManager-83f6b22f.js} +2 -2
- package/dist/esm/{SnkMessageBuilder-c0bc4424.js → SnkMessageBuilder-1eb7a1af.js} +24 -0
- package/dist/esm/{SnkMultiSelectionListDataSource-ec783ded.js → SnkMultiSelectionListDataSource-7fe25a58.js} +55 -41
- package/dist/esm/{auth-fetcher-38a83f5e.js → auth-fetcher-1a31c1e4.js} +1 -1
- package/dist/esm/{dataunit-fetcher-21c43ec7.js → dataunit-fetcher-050b6d31.js} +2 -2
- package/dist/esm/{form-config-fetcher-24eb587c.js → form-config-fetcher-b44b2727.js} +1 -1
- package/dist/esm/index-04f73a26.js +8 -8
- package/dist/esm/loader.js +1 -1
- package/dist/esm/pesquisa-grid_2.entry.js +5 -5
- package/dist/esm/sankhyablocks.js +1 -1
- package/dist/esm/{snk-actions-button_8.entry.js → snk-actions-button_9.entry.js} +52 -13
- package/dist/esm/snk-application.entry.js +7 -7
- package/dist/esm/snk-attach.entry.js +50 -24
- package/dist/esm/snk-crud.entry.js +333 -98
- package/dist/esm/snk-data-exporter.entry.js +8 -7
- package/dist/esm/{snk-data-unit-3b06a0f3.js → snk-data-unit-ca2c9858.js} +2 -2
- package/dist/esm/snk-data-unit.entry.js +4 -4
- package/dist/esm/snk-detail-view.entry.js +11 -16
- package/dist/esm/snk-entity-search.entry.js +207 -0
- package/dist/esm/snk-exporter-email-sender.entry.js +1 -1
- package/dist/esm/{snk-filter-advanced-mode_2.entry.js → snk-filter-advanced-mode_3.entry.js} +40 -3
- package/dist/esm/snk-filter-bar_4.entry.js +107 -96
- package/dist/esm/snk-filter-modal-item.entry.js +4 -4
- package/dist/esm/snk-form-view.entry.js +1 -1
- package/dist/esm/snk-form_2.entry.js +5 -5
- package/dist/esm/snk-grid.entry.js +37 -14
- package/dist/esm/{snk-guides-viewer-6ddc7e6a.js → snk-guides-viewer-cc37535b.js} +38 -154
- package/dist/esm/snk-guides-viewer.entry.js +9 -17
- package/dist/esm/snk-image-input.entry.js +2 -2
- package/dist/esm/snk-layout-form-config.entry.js +5 -5
- package/dist/esm/snk-personalized-filter.entry.js +5 -5
- package/dist/esm/snk-pesquisa.entry.js +5 -5
- package/dist/esm/snk-simple-crud.entry.js +10 -10
- package/dist/esm/snk-taskbar.entry.js +182 -125
- package/dist/esm/taskbar-elements-63651ca7.js +149 -0
- package/dist/sankhyablocks/p-09ba6bd4.js +1 -0
- package/dist/sankhyablocks/p-10f27dc6.entry.js +1 -0
- package/dist/sankhyablocks/{p-54f5c36d.entry.js → p-20af4b6a.entry.js} +1 -1
- package/dist/sankhyablocks/p-225f92cf.entry.js +1 -0
- package/dist/sankhyablocks/{p-605a2a99.entry.js → p-251aee41.entry.js} +1 -1
- package/dist/sankhyablocks/p-2af815bb.entry.js +1 -0
- package/dist/sankhyablocks/{p-bdf0077f.js → p-2af8aca3.js} +1 -1
- package/dist/sankhyablocks/p-3072136e.js +1 -0
- package/dist/sankhyablocks/p-33492640.entry.js +1 -0
- package/dist/sankhyablocks/{p-f208ec52.entry.js → p-35317d9a.entry.js} +1 -1
- package/dist/sankhyablocks/{p-6753f16e.js → p-3704bf1b.js} +1 -1
- package/dist/sankhyablocks/{p-2d606189.js → p-3870748a.js} +1 -1
- package/dist/sankhyablocks/{p-e057ecb6.js → p-3c990841.js} +1 -1
- package/dist/sankhyablocks/{p-4ff3b494.js → p-420b39b5.js} +1 -1
- package/dist/sankhyablocks/{p-8bb4e86b.entry.js → p-46f75667.entry.js} +1 -1
- package/dist/sankhyablocks/{p-32ad76cc.js → p-4f7adf97.js} +2 -2
- package/dist/sankhyablocks/p-554c0e54.js +1 -0
- package/dist/sankhyablocks/p-6ae7543b.entry.js +1 -0
- package/dist/sankhyablocks/p-771b137e.js +1 -0
- package/dist/sankhyablocks/p-77f608bc.entry.js +1 -0
- package/dist/sankhyablocks/p-7c8bf699.entry.js +1 -0
- package/dist/sankhyablocks/{p-d34a41ec.entry.js → p-8a8900a9.entry.js} +1 -1
- package/dist/sankhyablocks/{p-e484913b.entry.js → p-95af0bb1.entry.js} +1 -1
- package/dist/sankhyablocks/{p-10cad767.entry.js → p-98241c21.entry.js} +1 -1
- package/dist/sankhyablocks/{p-f5b929c2.entry.js → p-ab12f544.entry.js} +1 -1
- package/dist/sankhyablocks/{p-ef8cf0e2.js → p-ab5e12fa.js} +1 -1
- package/dist/sankhyablocks/p-ac384a1e.entry.js +1 -0
- package/dist/sankhyablocks/{p-3a98c337.entry.js → p-aff2d081.entry.js} +1 -1
- package/dist/sankhyablocks/p-b3b51693.entry.js +1 -0
- package/dist/sankhyablocks/{p-08415ef7.entry.js → p-bab4cde4.entry.js} +1 -1
- package/dist/sankhyablocks/p-ce3b284c.entry.js +1 -0
- package/dist/sankhyablocks/p-ce8ccd72.entry.js +1 -0
- package/dist/sankhyablocks/{p-b9970342.js → p-d972a9c1.js} +1 -1
- package/dist/sankhyablocks/p-e5a3711f.js +1 -0
- package/dist/sankhyablocks/{p-2b882835.entry.js → p-e737fd5a.entry.js} +1 -1
- package/dist/sankhyablocks/p-efd18bc2.entry.js +1 -0
- package/dist/sankhyablocks/{p-362e6e8c.js → p-f185d5ad.js} +1 -1
- package/dist/sankhyablocks/sankhyablocks.esm.js +1 -1
- package/dist/types/components/snk-actions-button/snk-actions-button.d.ts +4 -0
- package/dist/types/components/snk-attach/snk-attach.d.ts +20 -4
- package/dist/types/components/snk-crud/snk-crud.d.ts +28 -10
- package/dist/types/components/snk-crud/subcomponents/snk-detail-view/snk-detail-view.d.ts +1 -1
- package/dist/types/components/snk-crud/subcomponents/snk-entity-search.d.ts +62 -0
- package/dist/types/components/snk-crud/subcomponents/snk-guides-viewer.d.ts +4 -18
- package/dist/types/components/snk-crud/utils/taskbarUtils.d.ts +13 -0
- package/dist/types/components/snk-data-exporter/snk-data-exporter.d.ts +4 -0
- package/dist/types/components/snk-filter-bar/filter-item/snk-filter-item.d.ts +4 -0
- package/dist/types/components/snk-filter-bar/snk-filter-bar.d.ts +32 -20
- package/dist/types/components/snk-grid/snk-grid.d.ts +28 -1
- package/dist/types/components/snk-taskbar/elements/taskbar-actions-button/taskbar-actions-button.d.ts +6 -0
- package/dist/types/components/snk-taskbar/elements/taskbar-elements.d.ts +29 -2
- package/dist/types/components/snk-taskbar/elements/taskbar-split-button/taskbar-split-button.d.ts +5 -0
- package/dist/types/components/snk-taskbar/processor/simple-taskbar-processor.d.ts +31 -0
- package/dist/types/components/snk-taskbar/snk-taskbar.d.ts +32 -21
- package/dist/types/components/snk-taskbar/subcomponents/snk-taskbar-skeleton.d.ts +3 -0
- package/dist/types/components.d.ts +197 -4
- package/package.json +2 -2
- package/react/components.d.ts +2 -0
- package/react/components.js +2 -0
- package/react/components.js.map +1 -1
- package/dist/cjs/snk-simple-bar.cjs.entry.js +0 -45
- package/dist/cjs/taskbar-elements-a94d4318.js +0 -133
- package/dist/cjs/taskbar-processor-2fba34a8.js +0 -53
- package/dist/esm/snk-simple-bar.entry.js +0 -41
- package/dist/esm/taskbar-elements-97541bdd.js +0 -130
- package/dist/esm/taskbar-processor-3436124c.js +0 -51
- package/dist/sankhyablocks/p-07aa8192.entry.js +0 -1
- package/dist/sankhyablocks/p-1a0caadb.js +0 -1
- package/dist/sankhyablocks/p-27aea149.entry.js +0 -1
- package/dist/sankhyablocks/p-27d6590e.js +0 -1
- package/dist/sankhyablocks/p-449e36d2.entry.js +0 -1
- package/dist/sankhyablocks/p-615655bd.entry.js +0 -1
- package/dist/sankhyablocks/p-62e17eea.entry.js +0 -1
- package/dist/sankhyablocks/p-6e1a7929.entry.js +0 -1
- package/dist/sankhyablocks/p-72d62f22.js +0 -1
- package/dist/sankhyablocks/p-9c1ff75e.entry.js +0 -1
- package/dist/sankhyablocks/p-a8c5ebf1.entry.js +0 -1
- package/dist/sankhyablocks/p-b25777fa.entry.js +0 -1
- package/dist/sankhyablocks/p-b6d47f08.entry.js +0 -1
- package/dist/sankhyablocks/p-b8453e18.js +0 -1
- package/dist/sankhyablocks/p-c8043a53.entry.js +0 -1
- package/dist/sankhyablocks/p-f0c9969e.entry.js +0 -1
- package/dist/sankhyablocks/p-fc5938fb.js +0 -1
|
@@ -145,7 +145,7 @@ const patchCloneNodeFix = (HTMLElementPrototype) => {
|
|
|
145
145
|
};
|
|
146
146
|
|
|
147
147
|
patchBrowser().then(options => {
|
|
148
|
-
return index.bootstrapLazy(JSON.parse("[[\"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-custom-slot-guide.cjs\",[[6,\"snk-custom-slot-guide\",{\"slotName\":[1,\"slot-name\"]},[[8,\"snkShowGuide\",\"onGuideChange\"],[8,\"formConfigVisibilityChanged\",\"onFormConfigVisibilityChange\"]]]]],[\"snk-entity-list.cjs\",[[2,\"snk-entity-list\",{\"config\":[1040],\"rightListSlotBuilder\":[1040],\"maxHeightList\":[1,\"max-height-list\"],\"value\":[1040],\"errorMessage\":[1537,\"error-message\"],\"_ezListSource\":[32],\"reloadList\":[64]}]]],[\"snk-filter-binary-select.cjs\",[[0,\"snk-filter-binary-select\",{\"value\":[1544],\"config\":[16],\"presentationMode\":[2,\"presentation-mode\"],\"errorMessage\":[1537,\"error-message\"],\"resetValues\":[64],\"clearValue\":[64],\"setFocus\":[64]},[[0,\"ezChange\",\"ezChangeListener\"]]]]],[\"snk-filter-checkbox-list.cjs\",[[0,\"snk-filter-checkbox-list\",{\"config\":[1040],\"errorMessage\":[1537,\"error-message\"],\"optionsList\":[32],\"setFocus\":[64],\"clearValue\":[64]}]]],[\"snk-filter-multi-select.cjs\",[[0,\"snk-filter-multi-select\",{\"value\":[1544],\"config\":[16],\"errorMessage\":[1537,\"error-message\"],\"setFocus\":[64],\"clearValue\":[64]},[[0,\"ezChange\",\"ezChangeListener\"]]]]],[\"snk-filter-number.cjs\",[[0,\"snk-filter-number\",{\"config\":[16],\"getMessage\":[16],\"value\":[1026],\"presentationMode\":[2,\"presentation-mode\"],\"errorMessage\":[1537,\"error-message\"],\"show\":[64],\"setFocus\":[64],\"clearValue\":[64]},[[0,\"ezInput\",\"ezInputListener\"]]]]],[\"snk-filter-period.cjs\",[[0,\"snk-filter-period\",{\"config\":[16],\"getMessage\":[16],\"value\":[1040],\"presentationMode\":[2,\"presentation-mode\"],\"errorMessage\":[1537,\"error-message\"],\"setFocus\":[64],\"clearValue\":[64],\"show\":[64]}]]],[\"snk-filter-search.cjs\",[[0,\"snk-filter-search\",{\"config\":[16],\"value\":[16],\"errorMessage\":[1537,\"error-message\"],\"setFocus\":[64],\"clearValue\":[64]},[[0,\"ezChange\",\"ezChangeListener\"]]]]],[\"snk-filter-text.cjs\",[[0,\"snk-filter-text\",{\"config\":[16],\"value\":[1],\"errorMessage\":[1537,\"error-message\"],\"setFocus\":[64],\"clearValue\":[64]},[[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-simple-crud.cjs\",[[6,\"snk-simple-crud\",{\"enableLockManagerLoadingComp\":[4,\"enable-lock-manager-loading-comp\"],\"enableLockManagerTaskbarClick\":[4,\"enable-lock-manager-taskbar-click\"],\"dataState\":[1040],\"dataUnit\":[16],\"entityName\":[1,\"entity-name\"],\"mode\":[2],\"gridConfig\":[1040],\"formConfig\":[1040],\"enableContinuousInsert\":[1028,\"enable-continuous-insert\"],\"multipleSelection\":[4,\"multiple-selection\"],\"useCancelConfirm\":[4,\"use-cancel-confirm\"],\"pageSize\":[2,\"page-size\"],\"resourceID\":[1,\"resource-i-d\"],\"enableGridInsert\":[4,\"enable-grid-insert\"],\"paginationCounterMode\":[1,\"pagination-counter-mode\"],\"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\"],\"multipleEditionEnabled\":[4,\"multiple-edition-enabled\"],\"layoutFormConfig\":[4,\"layout-form-config\"],\"disableGridEdition\":[4,\"disable-grid-edition\"],\"autoLoad\":[4,\"auto-load\"],\"outlineMode\":[4,\"outline-mode\"],\"_container\":[32],\"_showPopUpGridConfig\":[32],\"_currentViewMode\":[32],\"_config\":[32],\"_fieldToGetFocus\":[32],\"_customContainerId\":[32],\"_formFields\":[32],\"_fieldsProps\":[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\"]]]]],[\"pesquisa-grid_2.cjs\",[[2,\"pesquisa-grid\",{\"metadata\":[16],\"dataSource\":[16],\"pkField\":[1,\"pk-field\"],\"descriptionField\":[1,\"description-field\"],\"entityName\":[1,\"entity-name\"],\"shouldLoadConfig\":[4,\"should-load-config\"],\"_gridConfig\":[32],\"_inMemoryLoader\":[32],\"_dataunit\":[32]}],[2,\"pesquisa-tree\",{\"treeLoader\":[16],\"argument\":[1025],\"allowsNonAnalytic\":[4,\"allows-non-analytic\"],\"shouldLoadTree\":[4,\"should-load-tree\"],\"messagesBuilder\":[1040],\"items\":[32],\"applyFilter\":[64]}]]],[\"snk-pesquisa.cjs\",[[2,\"snk-pesquisa\",{\"searchLoader\":[16],\"treeLoader\":[16],\"selectItem\":[16],\"entityName\":[1,\"entity-name\"],\"argument\":[1025],\"isHierarchyEntity\":[4,\"is-hierarchy-entity\"],\"allowsNonAnalytic\":[4,\"allows-non-analytic\"],\"_itemList\":[32],\"_startLoading\":[32],\"_presentationMode\":[32],\"_currentView\":[32],\"_valideDataSource\":[32],\"executeSearch\":[64]}]]],[\"snk-application.cjs\",[[2,\"snk-application\",{\"enableLockManagerLoadingApp\":[4,\"enable-lock-manager-loading-app\"],\"messagesBuilder\":[1040],\"configName\":[1,\"config-name\"],\"gridLegacyConfigName\":[1,\"grid-legacy-config-name\"],\"formLegacyConfigName\":[1,\"form-legacy-config-name\"],\"loadByPK\":[16],\"_applicationReady\":[32],\"_templateSkeleton\":[32],\"_activeScrimWindow\":[32],\"getKeyboardManager\":[64],\"getLayoutFormConfig\":[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],\"isFeatureActive\":[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],\"preloadMangerRemoveRecord\":[64],\"executeSearch\":[64],\"executePreparedSearchPlus\":[64],\"executePreparedSearch\":[64],\"executePreparedSearchWithFullResponse\":[64],\"isDebugMode\":[64],\"getAppLabel\":[64],\"addSearchListener\":[64],\"importScript\":[64],\"getApplicationPath\":[64],\"executeSelectDistinct\":[64],\"getDataFetcher\":[64],\"whenApplicationReady\":[64],\"setSearchFilterContext\":[64],\"clearPopUpTitle\":[64],\"setPopUpTitle\":[64],\"showScrimApp\":[64],\"markToReload\":[64],\"addLoadingLock\":[64]}]]],[\"teste-pesquisa.cjs\",[[1,\"teste-pesquisa\"]]],[\"snk-grid.cjs\",[[6,\"snk-grid\",{\"columnFilterDataSource\":[1040],\"enableLockManagerLoadingComp\":[4,\"enable-lock-manager-loading-comp\"],\"enableLockManagerTaskbarClick\":[4,\"enable-lock-manager-taskbar-click\"],\"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\"],\"gridHeaderDynamicSearchSlotId\":[1,\"grid-header-dynamic-search-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\"],\"outlineMode\":[4,\"outline-mode\"],\"suppressHorizontalScroll\":[4,\"suppress-horizontal-scroll\"],\"strategyExporter\":[1025,\"strategy-exporter\"],\"useSearchColumn\":[4,\"use-search-column\"],\"multipleEditionEnabled\":[4,\"multiple-edition-enabled\"],\"paginationCounterMode\":[1,\"pagination-counter-mode\"],\"suppressCheckboxColumn\":[4,\"suppress-checkbox-column\"],\"suppressFilterColumn\":[1028,\"suppress-filter-column\"],\"compact\":[4],\"filterCustomConfig\":[16],\"filterCustomConfigInterceptor\":[16],\"_dataUnit\":[32],\"_dataState\":[32],\"_gridConfig\":[32],\"_popUpGridConfig\":[32],\"_showSnkFilterBar\":[32],\"_enableContinuousInsert\":[32],\"_filterMode\":[32],\"refreshColumnFilterDataSource\":[64],\"reloadConfig\":[64],\"showConfig\":[64],\"hideConfig\":[64],\"setConfig\":[64],\"reloadFilterBar\":[64],\"getFilterBar\":[64],\"addCustomEditor\":[64],\"addGridCustomRender\":[64],\"addCustomValueFormatter\":[64],\"removeCustomValueFormatter\":[64],\"setFocus\":[64]},[[2,\"click\",\"handleClick\"]]]]],[\"field-config_2.cjs\",[[2,\"field-item\",{\"fieldConfig\":[8,\"field-config\"],\"onLayoutConfig\":[4,\"on-layout-config\"],\"dataUnit\":[16],\"messagesBuilder\":[1040],\"fieldDescriptor\":[32]}],[2,\"field-config\",{\"dataUnit\":[16],\"fieldConfig\":[1544,\"field-config\"],\"fieldDescriptor\":[16],\"messagesBuilder\":[1040],\"fieldLabel\":[32],\"fieldLabelErrorMessage\":[32],\"fieldDefaultValue\":[32],\"fieldCleanOnCopy\":[32],\"fieldRequired\":[32],\"fieldReadOnly\":[32],\"_defaultType\":[32],\"show\":[64]}]]],[\"fields-layout.cjs\",[[2,\"fields-layout\",{\"selectedGuide\":[16],\"groupsList\":[16],\"guideNames\":[16],\"dataUnit\":[16],\"messagesBuilder\":[1040],\"isEditGuideNameActive\":[32],\"addFieldToLayout\":[64]},[[16,\"fieldConfigChanged\",\"handleFieldConfigChanged\"]]]]],[\"snk-form_2.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],\"validate\":[64]}],[2,\"snk-form-config\",{\"dataUnit\":[16],\"configManager\":[16],\"ignoreReadOnlyFormFields\":[4,\"ignore-read-only-form-fields\"],\"messagesBuilder\":[1040],\"customGuidesConfig\":[16],\"availableFields\":[32],\"guidesList\":[32],\"groupsList\":[32],\"selectedGuide\":[32],\"_formConfig\":[32],\"configOptions\":[32],\"originalConfigSelected\":[32],\"configSelected\":[32],\"hasChanges\":[32],\"optionConfigChanged\":[32]},[[16,\"fieldConfigChanged\",\"handleFieldConfigChanged\"],[16,\"formConfigOptionSelected\",\"handleFormConfigOptionSelected\"],[16,\"addFieldToGuide\",\"handleAddFieldToGuide\"],[16,\"setFieldAsAvailable\",\"handleSetFieldAsAvailable\"],[16,\"removeFieldFromAvailable\",\"handleRemoveFieldFromAvailable\"]]]]],[\"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\"],\"fieldSearch\":[16],\"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],\"entityPath\":[1,\"entity-path\"],\"_singleColumn\":[32],\"_currentFormLayout\":[32],\"showUp\":[64],\"addCustomEditor\":[64],\"setFieldProp\":[64],\"showSearchField\":[64]}]]],[\"fields-selector.cjs\",[[2,\"fields-selector\",{\"availableFields\":[16],\"dataUnit\":[16],\"messagesBuilder\":[1040],\"filterTerm\":[32]}]]],[\"config-header.cjs\",[[2,\"config-header\",{\"configOptions\":[16],\"selectedConfig\":[16],\"messagesBuilder\":[1040],\"hasChanges\":[4,\"has-changes\"],\"optionConfigChanged\":[4,\"option-config-changed\"],\"isEditingGuide\":[32],\"isEditingGroup\":[32]},[[16,\"isEditingGuideName\",\"handleIsEditingGuideName\"],[16,\"isEditingGroupName\",\"handleIsEditingGroupName\"]]]]],[\"guides-configurator.cjs\",[[2,\"guides-configurator\",{\"guidesList\":[16],\"selectedGuide\":[16],\"messagesBuilder\":[1040],\"mainGuide\":[32],\"filterTerm\":[32],\"visibleGuides\":[32],\"hiddenGuides\":[32]}]]],[\"snk-image-input.cjs\",[[1,\"snk-image-input\",{\"dataUnit\":[16],\"fieldName\":[1,\"field-name\"],\"entityName\":[1,\"entity-name\"],\"enabled\":[4],\"acceptType\":[1,\"accept-type\"],\"maxSize\":[2,\"max-size\"],\"label\":[1],\"imageValue\":[32],\"loading\":[32],\"reloadImage\":[64]}]]],[\"snk-simple-bar.cjs\",[[6,\"snk-simple-bar\",{\"label\":[1],\"breadcrumbItens\":[16],\"messagesBuilder\":[1040]}]]],[\"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\"],\"isDefaultFilter\":[4,\"is-default-filter\"],\"_filterAssistentMode\":[32],\"_filterAssistent\":[32],\"createPersonalizedFilter\":[64]}]]],[\"snk-layout-form-config.cjs\",[[2,\"snk-layout-form-config\",{\"messagesBuilder\":[16],\"layoutType\":[32],\"save\":[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\"],\"layoutFormConfig\":[4,\"layout-form-config\"],\"entityName\":[1,\"entity-name\"],\"disableNumberingConfig\":[4,\"disable-numbering-config\"],\"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]},[[0,\"snkMasterFormConfigChange\",\"onMasterFormConfigChange\"]]]]],[\"snk-filter-detail.cjs\",[[0,\"snk-filter-detail\",{\"config\":[1040],\"getMessage\":[16],\"showHardFixed\":[4,\"show-hard-fixed\"],\"removalBlocked\":[4,\"removal-blocked\"],\"setFocusField\":[64],\"clearValue\":[64]}]]],[\"snk-filter-modal-item.cjs\",[[0,\"snk-filter-modal-item\",{\"filterItem\":[1040],\"configName\":[1025,\"config-name\"],\"resourceID\":[1,\"resource-i-d\"]}]]],[\"snk-exporter-email-sender.cjs\",[[0,\"snk-exporter-email-sender\",{\"getMessage\":[16],\"_config\":[32],\"_opened\":[32],\"_currentStep\":[32],\"open\":[64],\"close\":[64]}]]],[\"snk-data-exporter.cjs\",[[2,\"snk-data-exporter\",{\"provider\":[16],\"messagesBuilder\":[1040],\"_items\":[32],\"_showDropdown\":[32]}]]],[\"snk-taskbar.cjs\",[[6,\"snk-taskbar\",{\"alignRigth\":[4,\"align-rigth\"],\"customSlotId\":[1,\"custom-slot-id\"],\"additionalSlotId\":[1,\"additional-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],\"actionsSettingsList\":[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-attach.cjs\",[[2,\"snk-attach\",{\"gridLegacyConfigName\":[1,\"grid-legacy-config-name\"],\"fetcherType\":[1025,\"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-default-filter.cjs\",[[2,\"snk-default-filter\",{\"getMessage\":[16],\"hasDefaultFilter\":[4,\"has-default-filter\"],\"_opened\":[32]}]]],[\"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\"],\"isDefaultFilter\":[4,\"is-default-filter\"],\"_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],\"isDefaultFilter\":[4,\"is-default-filter\"],\"entityURI\":[1025,\"entity-u-r-i\"],\"_showValueVariable\":[32],\"_fieldSelected\":[32],\"_optionNotNull\":[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],\"isDefaultFilter\":[4,\"is-default-filter\"]}],[2,\"snk-filter-advanced-mode\",{\"filterAssistent\":[1040],\"application\":[1040]}]]],[\"snk-filter-bar_4.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\"]]],[2,\"snk-filter-bar\",{\"enableLockManagerLoadingComp\":[4,\"enable-lock-manager-loading-comp\"],\"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\"],\"afterApplyConfig\":[16],\"filterCustomConfig\":[16],\"filterCustomConfigInterceptor\":[16],\"allowDefault\":[32],\"scrollerLocked\":[32],\"showPersonalizedFilter\":[32],\"personalizedFilterId\":[32],\"isFilterModalOpen\":[32],\"reload\":[64],\"getFilterItem\":[64],\"updateFilterItem\":[64],\"addFilterItem\":[64],\"removeFilterItem\":[64],\"getFilters\":[64],\"showFilterModal\":[64]},[[0,\"filterChange\",\"filterChangeListener\"],[8,\"ezEmptySearch\",\"emptySearchListener\"]]],[0,\"snk-filter-modal\",{\"getMessage\":[16],\"configName\":[1025,\"config-name\"],\"filterConfig\":[1040],\"opened\":[4],\"applyFilters\":[16],\"closeModal\":[16],\"addPersonalizedFilter\":[16],\"editPersonalizedFilter\":[16],\"deletePersonalizedFilter\":[16],\"filtersToDelete\":[1040],\"filterDefaultToDelete\":[1040],\"disablePersonalizedFilter\":[4,\"disable-personalized-filter\"],\"filterCustomConfigInterceptor\":[16],\"filtersWithError\":[32]},[[0,\"deleteFilter\",\"deletePersonalizedFilterListener\"]]],[2,\"snk-filter-item\",{\"config\":[1040],\"getMessage\":[16],\"showChips\":[4,\"show-chips\"],\"detailIsVisible\":[32],\"showUp\":[64],\"hideDetail\":[64]},[[0,\"filterChange\",\"filterChangeListener\"]]]]],[\"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],\"presentationMode\":[1,\"presentation-mode\"],\"_disabledButtons\":[32],\"_currentView\":[32],\"attachmentRegisterKey\":[32],\"_fieldToGetFocus\":[32],\"_hasToCreateFieldSearch\":[32],\"changeViewMode\":[64],\"configGrid\":[64],\"showUp\":[64],\"addCustomEditor\":[64],\"addGridCustomRender\":[64]},[[0,\"snkContentCardChanged\",\"onContentCardChanged\"]]]]],[\"configs-button.cjs\",[[2,\"configs-button\",{\"configOptions\":[16],\"selectedConfig\":[16],\"hasChanges\":[4,\"has-changes\"],\"messagesBuilder\":[1040]}]]],[\"snk-actions-button_8.cjs\",[[0,\"snk-simple-form-config\",{\"dataUnit\":[16],\"configName\":[1,\"config-name\"],\"messagesBuilder\":[16],\"avaliableFields\":[32],\"selectedFields\":[32],\"show\":[64]}],[2,\"snk-grid-config\",{\"selectedIndex\":[1026,\"selected-index\"],\"columns\":[1040],\"originalColumns\":[1040],\"config\":[1040],\"configName\":[1,\"config-name\"],\"resourceID\":[1,\"resource-i-d\"],\"metadata\":[16],\"_collapsibleBoxListOrder\":[32],\"_collapsibleBoxListSelect\":[32]}],[2,\"snk-numbering-config\",{\"messagesBuilder\":[16],\"entityName\":[1,\"entity-name\"],\"resourceID\":[1,\"resource-i-d\"],\"autoNumbering\":[32],\"initialNumber\":[32],\"save\":[64]}],[2,\"snk-actions-button\",{\"_items\":[32],\"_showDropdown\":[32]}],[1,\"snk-select-box\",{\"selectedOption\":[1,\"selected-option\"],\"preventAutoFocus\":[4,\"prevent-auto-focus\"]}],[2,\"snk-view-representation\",{\"mode\":[8]}],[2,\"taskbar-actions-button\",{\"title\":[1],\"enabled\":[4],\"actions\":[16],\"_showDropdown\":[32],\"showActions\":[64],\"hideActions\":[64],\"isOpened\":[64]},[[8,\"keydown\",\"handleKeyDown\"],[8,\"ezOpenModal\",\"handleClose\"]]],[2,\"taskbar-split-button\",{\"iconName\":[1,\"icon-name\"],\"action\":[16],\"name\":[1],\"className\":[1,\"class-name\"],\"dataElementId\":[1,\"data-element-id\"],\"title\":[1],\"enabled\":[4],\"actions\":[16],\"_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\":[1040],\"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],\"customGuidesConfig\":[16],\"_hasToCreateFieldSearch\":[32],\"_breadcrumbItems\":[32],\"_guides\":[32],\"_formEditorConfigManager\":[32],\"_formEditorDataUnit\":[32],\"_fieldToGetFocus\":[32],\"_customEditors\":[32],\"_customRenders\":[32],\"_fieldsProps\":[32],\"_mainForm\":[32],\"showFormConfig\":[64],\"addCustomEditor\":[64],\"addGridCustomRender\":[64],\"setFieldProp\":[64],\"setFocus\":[64],\"reloadGuides\":[64]},[[2,\"actionClick\",\"onActionClick\"],[0,\"snkContentCardChanged\",\"onContentCardChanged\"]]]]],[\"snk-crud.cjs\",[[6,\"snk-crud\",{\"enableLockManagerLoadingComp\":[4,\"enable-lock-manager-loading-comp\"],\"enableLockManagerTaskbarClick\":[4,\"enable-lock-manager-taskbar-click\"],\"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],\"strategyExporter\":[1025,\"strategy-exporter\"],\"layoutFormConfig\":[4,\"layout-form-config\"],\"multipleEditionEnabled\":[4,\"multiple-edition-enabled\"],\"paginationCounterMode\":[1,\"pagination-counter-mode\"],\"customGuidesConfig\":[16],\"showEntitySearch\":[4,\"show-entity-search\"],\"disableNumberingConfig\":[4,\"disable-numbering-config\"],\"_dataUnit\":[32],\"_dataState\":[32],\"attachmentRegisterKey\":[32],\"_currentViewMode\":[32],\"_canEdit\":[32],\"_resourceID\":[32],\"customContainerId\":[32],\"numberingConfig\":[32],\"_showMoreOnSearch\":[32],\"_entityPKField\":[32],\"goToView\":[64],\"openConfigurator\":[64],\"closeConfigurator\":[64],\"reloadFilterBar\":[64],\"getFilterBar\":[64],\"addCustomEditor\":[64],\"addGridCustomRender\":[64],\"addCustomValueFormatter\":[64],\"removeCustomValueFormatter\":[64],\"setFieldProp\":[64],\"getNumberingConfig\":[64],\"updateNumberingConfig\":[64]}]]]]"), options);
|
|
148
|
+
return index.bootstrapLazy(JSON.parse("[[\"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-custom-slot-guide.cjs\",[[6,\"snk-custom-slot-guide\",{\"slotName\":[1,\"slot-name\"]},[[8,\"snkShowGuide\",\"onGuideChange\"],[8,\"formConfigVisibilityChanged\",\"onFormConfigVisibilityChange\"]]]]],[\"snk-entity-list.cjs\",[[2,\"snk-entity-list\",{\"config\":[1040],\"rightListSlotBuilder\":[1040],\"maxHeightList\":[1,\"max-height-list\"],\"value\":[1040],\"errorMessage\":[1537,\"error-message\"],\"_ezListSource\":[32],\"reloadList\":[64]}]]],[\"snk-filter-binary-select.cjs\",[[0,\"snk-filter-binary-select\",{\"value\":[1544],\"config\":[16],\"presentationMode\":[2,\"presentation-mode\"],\"errorMessage\":[1537,\"error-message\"],\"resetValues\":[64],\"clearValue\":[64],\"setFocus\":[64]},[[0,\"ezChange\",\"ezChangeListener\"]]]]],[\"snk-filter-checkbox-list.cjs\",[[0,\"snk-filter-checkbox-list\",{\"config\":[1040],\"errorMessage\":[1537,\"error-message\"],\"optionsList\":[32],\"setFocus\":[64],\"clearValue\":[64]}]]],[\"snk-filter-multi-select.cjs\",[[0,\"snk-filter-multi-select\",{\"value\":[1544],\"config\":[16],\"errorMessage\":[1537,\"error-message\"],\"setFocus\":[64],\"clearValue\":[64]},[[0,\"ezChange\",\"ezChangeListener\"]]]]],[\"snk-filter-number.cjs\",[[0,\"snk-filter-number\",{\"config\":[16],\"getMessage\":[16],\"value\":[1026],\"presentationMode\":[2,\"presentation-mode\"],\"errorMessage\":[1537,\"error-message\"],\"show\":[64],\"setFocus\":[64],\"clearValue\":[64]},[[0,\"ezInput\",\"ezInputListener\"]]]]],[\"snk-filter-period.cjs\",[[0,\"snk-filter-period\",{\"config\":[16],\"getMessage\":[16],\"value\":[1040],\"presentationMode\":[2,\"presentation-mode\"],\"errorMessage\":[1537,\"error-message\"],\"setFocus\":[64],\"clearValue\":[64],\"show\":[64]}]]],[\"snk-filter-search.cjs\",[[0,\"snk-filter-search\",{\"config\":[16],\"value\":[16],\"errorMessage\":[1537,\"error-message\"],\"setFocus\":[64],\"clearValue\":[64]},[[0,\"ezChange\",\"ezChangeListener\"]]]]],[\"snk-filter-text.cjs\",[[0,\"snk-filter-text\",{\"config\":[16],\"value\":[1],\"errorMessage\":[1537,\"error-message\"],\"setFocus\":[64],\"clearValue\":[64]},[[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]}]]],[\"pesquisa-grid_2.cjs\",[[2,\"pesquisa-grid\",{\"metadata\":[16],\"dataSource\":[16],\"pkField\":[1,\"pk-field\"],\"descriptionField\":[1,\"description-field\"],\"entityName\":[1,\"entity-name\"],\"shouldLoadConfig\":[4,\"should-load-config\"],\"_gridConfig\":[32],\"_inMemoryLoader\":[32],\"_dataunit\":[32]}],[2,\"pesquisa-tree\",{\"treeLoader\":[16],\"argument\":[1025],\"allowsNonAnalytic\":[4,\"allows-non-analytic\"],\"shouldLoadTree\":[4,\"should-load-tree\"],\"messagesBuilder\":[1040],\"items\":[32],\"applyFilter\":[64]}]]],[\"snk-pesquisa.cjs\",[[2,\"snk-pesquisa\",{\"searchLoader\":[16],\"treeLoader\":[16],\"selectItem\":[16],\"entityName\":[1,\"entity-name\"],\"argument\":[1025],\"isHierarchyEntity\":[4,\"is-hierarchy-entity\"],\"allowsNonAnalytic\":[4,\"allows-non-analytic\"],\"_itemList\":[32],\"_startLoading\":[32],\"_presentationMode\":[32],\"_currentView\":[32],\"_valideDataSource\":[32],\"executeSearch\":[64]}]]],[\"snk-application.cjs\",[[2,\"snk-application\",{\"enableLockManagerLoadingApp\":[4,\"enable-lock-manager-loading-app\"],\"messagesBuilder\":[1040],\"configName\":[1,\"config-name\"],\"gridLegacyConfigName\":[1,\"grid-legacy-config-name\"],\"formLegacyConfigName\":[1,\"form-legacy-config-name\"],\"loadByPK\":[16],\"_applicationReady\":[32],\"_templateSkeleton\":[32],\"_activeScrimWindow\":[32],\"getKeyboardManager\":[64],\"getLayoutFormConfig\":[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],\"isFeatureActive\":[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],\"preloadMangerRemoveRecord\":[64],\"executeSearch\":[64],\"executePreparedSearchPlus\":[64],\"executePreparedSearch\":[64],\"executePreparedSearchWithFullResponse\":[64],\"isDebugMode\":[64],\"getAppLabel\":[64],\"addSearchListener\":[64],\"importScript\":[64],\"getApplicationPath\":[64],\"executeSelectDistinct\":[64],\"getDataFetcher\":[64],\"whenApplicationReady\":[64],\"setSearchFilterContext\":[64],\"clearPopUpTitle\":[64],\"setPopUpTitle\":[64],\"showScrimApp\":[64],\"markToReload\":[64],\"addLoadingLock\":[64]}]]],[\"teste-pesquisa.cjs\",[[1,\"teste-pesquisa\"]]],[\"snk-entity-search.cjs\",[[0,\"snk-entity-search\",{\"entityName\":[1,\"entity-name\"],\"dataUnit\":[16],\"messagesBuilder\":[16],\"_searchInputValue\":[32],\"_showMoreOnSearch\":[32],\"visibleOptions\":[32],\"value\":[32],\"showLoading\":[32],\"showUnder\":[64]}]]],[\"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\"],\"isDefaultFilter\":[4,\"is-default-filter\"],\"_filterAssistentMode\":[32],\"_filterAssistent\":[32],\"createPersonalizedFilter\":[64]}]]],[\"snk-grid.cjs\",[[6,\"snk-grid\",{\"columnFilterDataSource\":[1040],\"enableLockManagerLoadingComp\":[4,\"enable-lock-manager-loading-comp\"],\"enableLockManagerTaskbarClick\":[4,\"enable-lock-manager-taskbar-click\"],\"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\"],\"gridHeaderDynamicSearchSlotId\":[1,\"grid-header-dynamic-search-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\"],\"outlineMode\":[4,\"outline-mode\"],\"suppressHorizontalScroll\":[4,\"suppress-horizontal-scroll\"],\"strategyExporter\":[1025,\"strategy-exporter\"],\"useSearchColumn\":[4,\"use-search-column\"],\"multipleEditionEnabled\":[4,\"multiple-edition-enabled\"],\"paginationCounterMode\":[1,\"pagination-counter-mode\"],\"suppressCheckboxColumn\":[4,\"suppress-checkbox-column\"],\"suppressFilterColumn\":[1028,\"suppress-filter-column\"],\"compact\":[4],\"filterCustomConfig\":[16],\"filterCustomConfigInterceptor\":[16],\"hidePagination\":[516,\"hide-pagination\"],\"hideHeader\":[516,\"hide-header\"],\"hideGridTaskbar\":[516,\"hide-grid-taskbar\"],\"_dataUnit\":[32],\"_dataState\":[32],\"_gridConfig\":[32],\"_popUpGridConfig\":[32],\"_showSnkFilterBar\":[32],\"_enableContinuousInsert\":[32],\"_filterMode\":[32],\"refreshColumnFilterDataSource\":[64],\"reloadConfig\":[64],\"showConfig\":[64],\"hideConfig\":[64],\"setConfig\":[64],\"reloadFilterBar\":[64],\"getFilterBar\":[64],\"addCustomEditor\":[64],\"addGridCustomRender\":[64],\"addCustomValueFormatter\":[64],\"removeCustomValueFormatter\":[64],\"setFocus\":[64],\"handlePageChange\":[64],\"locateColumn\":[64],\"filterColumns\":[64]},[[2,\"click\",\"handleClick\"]]]]],[\"configs-button.cjs\",[[2,\"configs-button\",{\"configOptions\":[16],\"selectedConfig\":[16],\"hasChanges\":[4,\"has-changes\"],\"messagesBuilder\":[1040]}]]],[\"snk-form_2.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],\"validate\":[64]}],[2,\"snk-form-config\",{\"dataUnit\":[16],\"configManager\":[16],\"ignoreReadOnlyFormFields\":[4,\"ignore-read-only-form-fields\"],\"messagesBuilder\":[1040],\"customGuidesConfig\":[16],\"availableFields\":[32],\"guidesList\":[32],\"groupsList\":[32],\"selectedGuide\":[32],\"_formConfig\":[32],\"configOptions\":[32],\"originalConfigSelected\":[32],\"configSelected\":[32],\"hasChanges\":[32],\"optionConfigChanged\":[32]},[[16,\"fieldConfigChanged\",\"handleFieldConfigChanged\"],[16,\"formConfigOptionSelected\",\"handleFormConfigOptionSelected\"],[16,\"addFieldToGuide\",\"handleAddFieldToGuide\"],[16,\"setFieldAsAvailable\",\"handleSetFieldAsAvailable\"],[16,\"removeFieldFromAvailable\",\"handleRemoveFieldFromAvailable\"]]]]],[\"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\"],\"fieldSearch\":[16],\"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],\"entityPath\":[1,\"entity-path\"],\"_singleColumn\":[32],\"_currentFormLayout\":[32],\"showUp\":[64],\"addCustomEditor\":[64],\"setFieldProp\":[64],\"showSearchField\":[64]}]]],[\"fields-layout.cjs\",[[2,\"fields-layout\",{\"selectedGuide\":[16],\"groupsList\":[16],\"guideNames\":[16],\"dataUnit\":[16],\"messagesBuilder\":[1040],\"isEditGuideNameActive\":[32],\"addFieldToLayout\":[64]},[[16,\"fieldConfigChanged\",\"handleFieldConfigChanged\"]]]]],[\"fields-selector.cjs\",[[2,\"fields-selector\",{\"availableFields\":[16],\"dataUnit\":[16],\"messagesBuilder\":[1040],\"filterTerm\":[32]}]]],[\"config-header.cjs\",[[2,\"config-header\",{\"configOptions\":[16],\"selectedConfig\":[16],\"messagesBuilder\":[1040],\"hasChanges\":[4,\"has-changes\"],\"optionConfigChanged\":[4,\"option-config-changed\"],\"isEditingGuide\":[32],\"isEditingGroup\":[32]},[[16,\"isEditingGuideName\",\"handleIsEditingGuideName\"],[16,\"isEditingGroupName\",\"handleIsEditingGroupName\"]]]]],[\"guides-configurator.cjs\",[[2,\"guides-configurator\",{\"guidesList\":[16],\"selectedGuide\":[16],\"messagesBuilder\":[1040],\"mainGuide\":[32],\"filterTerm\":[32],\"visibleGuides\":[32],\"hiddenGuides\":[32]}]]],[\"snk-image-input.cjs\",[[1,\"snk-image-input\",{\"dataUnit\":[16],\"fieldName\":[1,\"field-name\"],\"entityName\":[1,\"entity-name\"],\"enabled\":[4],\"acceptType\":[1,\"accept-type\"],\"maxSize\":[2,\"max-size\"],\"label\":[1],\"imageValue\":[32],\"loading\":[32],\"reloadImage\":[64]}]]],[\"snk-layout-form-config.cjs\",[[2,\"snk-layout-form-config\",{\"messagesBuilder\":[16],\"layoutType\":[32],\"save\":[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\"],\"layoutFormConfig\":[4,\"layout-form-config\"],\"entityName\":[1,\"entity-name\"],\"disableNumberingConfig\":[4,\"disable-numbering-config\"],\"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]},[[0,\"snkMasterFormConfigChange\",\"onMasterFormConfigChange\"]]]]],[\"snk-default-filter.cjs\",[[2,\"snk-default-filter\",{\"getMessage\":[16],\"hasDefaultFilter\":[4,\"has-default-filter\"],\"_opened\":[32]}]]],[\"snk-filter-detail.cjs\",[[0,\"snk-filter-detail\",{\"config\":[1040],\"getMessage\":[16],\"showHardFixed\":[4,\"show-hard-fixed\"],\"removalBlocked\":[4,\"removal-blocked\"],\"setFocusField\":[64],\"clearValue\":[64]}]]],[\"snk-filter-modal-item.cjs\",[[0,\"snk-filter-modal-item\",{\"filterItem\":[1040],\"configName\":[1025,\"config-name\"],\"resourceID\":[1,\"resource-i-d\"]}]]],[\"snk-exporter-email-sender.cjs\",[[0,\"snk-exporter-email-sender\",{\"getMessage\":[16],\"_config\":[32],\"_opened\":[32],\"_currentStep\":[32],\"open\":[64],\"close\":[64]}]]],[\"snk-data-exporter.cjs\",[[2,\"snk-data-exporter\",{\"provider\":[16],\"messagesBuilder\":[1040],\"size\":[1],\"_items\":[32],\"_showDropdown\":[32]}]]],[\"snk-actions-button_9.cjs\",[[0,\"snk-simple-form-config\",{\"dataUnit\":[16],\"configName\":[1,\"config-name\"],\"messagesBuilder\":[16],\"avaliableFields\":[32],\"selectedFields\":[32],\"show\":[64]}],[2,\"snk-grid-config\",{\"selectedIndex\":[1026,\"selected-index\"],\"columns\":[1040],\"originalColumns\":[1040],\"config\":[1040],\"configName\":[1,\"config-name\"],\"resourceID\":[1,\"resource-i-d\"],\"metadata\":[16],\"_collapsibleBoxListOrder\":[32],\"_collapsibleBoxListSelect\":[32]}],[2,\"snk-numbering-config\",{\"messagesBuilder\":[16],\"entityName\":[1,\"entity-name\"],\"resourceID\":[1,\"resource-i-d\"],\"autoNumbering\":[32],\"initialNumber\":[32],\"save\":[64]}],[2,\"snk-actions-button\",{\"size\":[1],\"_items\":[32],\"_showDropdown\":[32]}],[1,\"snk-select-box\",{\"selectedOption\":[1,\"selected-option\"],\"preventAutoFocus\":[4,\"prevent-auto-focus\"]}],[2,\"snk-taskbar-skeleton\"],[2,\"snk-view-representation\",{\"mode\":[8]}],[2,\"taskbar-actions-button\",{\"title\":[1],\"enabled\":[4],\"actions\":[16],\"size\":[1],\"_showDropdown\":[32],\"_openToLeft\":[32],\"showActions\":[64],\"hideActions\":[64],\"isOpened\":[64]},[[8,\"keydown\",\"handleKeyDown\"],[8,\"ezOpenModal\",\"handleClose\"]]],[2,\"taskbar-split-button\",{\"iconName\":[1,\"icon-name\"],\"action\":[16],\"name\":[1],\"className\":[1,\"class-name\"],\"dataElementId\":[1,\"data-element-id\"],\"title\":[1],\"enabled\":[4],\"actions\":[16],\"size\":[1],\"_showDropdown\":[32]}]]],[\"snk-taskbar.cjs\",[[6,\"snk-taskbar\",{\"alignRigth\":[4,\"align-rigth\"],\"customSlotId\":[1,\"custom-slot-id\"],\"additionalSlotId\":[1,\"additional-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],\"actionsSettingsList\":[16],\"customActionsList\":[16],\"primaryButton\":[1,\"primary-button\"],\"disabledButtons\":[16],\"dataUnit\":[16],\"presentationMode\":[1537,\"presentation-mode\"],\"messagesBuilder\":[1040],\"disableSkeleton\":[4,\"disable-skeleton\"],\"sizeButtons\":[1,\"size-buttons\"],\"_hiddenActionsList\":[32],\"_isWaitingForSave\":[32],\"_isLoading\":[32]},[[8,\"snkCustomSlotElementsLoaded\",\"handleCustomSlotElementsLoaded\"],[8,\"taskbarSaveLocker\",\"handleTaskbarSaveLocker\"],[8,\"taskbarSaveUnlocker\",\"handleTaskbarSaveUnlocker\"]]]]],[\"snk-simple-crud.cjs\",[[6,\"snk-simple-crud\",{\"enableLockManagerLoadingComp\":[4,\"enable-lock-manager-loading-comp\"],\"enableLockManagerTaskbarClick\":[4,\"enable-lock-manager-taskbar-click\"],\"dataState\":[1040],\"dataUnit\":[16],\"entityName\":[1,\"entity-name\"],\"mode\":[2],\"gridConfig\":[1040],\"formConfig\":[1040],\"enableContinuousInsert\":[1028,\"enable-continuous-insert\"],\"multipleSelection\":[4,\"multiple-selection\"],\"useCancelConfirm\":[4,\"use-cancel-confirm\"],\"pageSize\":[2,\"page-size\"],\"resourceID\":[1,\"resource-i-d\"],\"enableGridInsert\":[4,\"enable-grid-insert\"],\"paginationCounterMode\":[1,\"pagination-counter-mode\"],\"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\"],\"multipleEditionEnabled\":[4,\"multiple-edition-enabled\"],\"layoutFormConfig\":[4,\"layout-form-config\"],\"disableGridEdition\":[4,\"disable-grid-edition\"],\"autoLoad\":[4,\"auto-load\"],\"outlineMode\":[4,\"outline-mode\"],\"_container\":[32],\"_showPopUpGridConfig\":[32],\"_currentViewMode\":[32],\"_config\":[32],\"_fieldToGetFocus\":[32],\"_customContainerId\":[32],\"_formFields\":[32],\"_fieldsProps\":[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\",{\"gridLegacyConfigName\":[1,\"grid-legacy-config-name\"],\"fetcherType\":[1025,\"fetcher-type\"],\"fetcher\":[16],\"dataUnit\":[16],\"dataUnitBuilder\":[16],\"registerKey\":[1,\"register-key\"],\"entityName\":[1,\"entity-name\"],\"messagesBuilder\":[1040],\"_isOpen\":[32],\"_currentFetcher\":[32],\"_currentDataUnit\":[32],\"crudConfig\":[32],\"open\":[64],\"close\":[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\"],\"isDefaultFilter\":[4,\"is-default-filter\"],\"_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],\"isDefaultFilter\":[4,\"is-default-filter\"],\"entityURI\":[1025,\"entity-u-r-i\"],\"_showValueVariable\":[32],\"_fieldSelected\":[32],\"_optionNotNull\":[32]}]]],[\"snk-filter-advanced-mode_3.cjs\",[[2,\"snk-filter-assistent-mode\",{\"filterAssistent\":[1040],\"messagesBuilder\":[1040],\"filterId\":[1025,\"filter-id\"],\"entityUri\":[1025,\"entity-uri\"],\"application\":[1040],\"isDefaultFilter\":[4,\"is-default-filter\"]}],[2,\"snk-filter-advanced-mode\",{\"filterAssistent\":[1040],\"application\":[1040]}],[6,\"snk-simple-bar\",{\"label\":[1],\"breadcrumbItens\":[16],\"messagesBuilder\":[1040]}]]],[\"snk-filter-bar_4.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\"]]],[2,\"snk-filter-bar\",{\"enableLockManagerLoadingComp\":[4,\"enable-lock-manager-loading-comp\"],\"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\"],\"afterApplyConfig\":[16],\"filterCustomConfig\":[16],\"filterCustomConfigInterceptor\":[16],\"hideFilterButton\":[4,\"hide-filter-button\"],\"sizeChips\":[1,\"size-chips\"],\"allowDefault\":[32],\"scrollerLocked\":[32],\"showPersonalizedFilter\":[32],\"personalizedFilterId\":[32],\"isFilterModalOpen\":[32],\"reload\":[64],\"getFilterItem\":[64],\"updateFilterItem\":[64],\"addFilterItem\":[64],\"removeFilterItem\":[64],\"getFilters\":[64],\"showFilterModal\":[64]},[[0,\"filterChange\",\"filterChangeListener\"],[8,\"ezEmptySearch\",\"emptySearchListener\"]]],[0,\"snk-filter-modal\",{\"getMessage\":[16],\"configName\":[1025,\"config-name\"],\"filterConfig\":[1040],\"opened\":[4],\"applyFilters\":[16],\"closeModal\":[16],\"addPersonalizedFilter\":[16],\"editPersonalizedFilter\":[16],\"deletePersonalizedFilter\":[16],\"filtersToDelete\":[1040],\"filterDefaultToDelete\":[1040],\"disablePersonalizedFilter\":[4,\"disable-personalized-filter\"],\"filterCustomConfigInterceptor\":[16],\"filtersWithError\":[32]},[[0,\"deleteFilter\",\"deletePersonalizedFilterListener\"]]],[2,\"snk-filter-item\",{\"config\":[1040],\"getMessage\":[16],\"showChips\":[4,\"show-chips\"],\"sizeChips\":[1,\"size-chips\"],\"detailIsVisible\":[32],\"showUp\":[64],\"hideDetail\":[64]},[[0,\"filterChange\",\"filterChangeListener\"]]]]],[\"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],\"presentationMode\":[1,\"presentation-mode\"],\"_disabledButtons\":[32],\"_currentView\":[32],\"attachmentRegisterKey\":[32],\"_fieldToGetFocus\":[32],\"_hasToCreateFieldSearch\":[32],\"changeViewMode\":[64],\"configGrid\":[64],\"showUp\":[64],\"addCustomEditor\":[64],\"addGridCustomRender\":[64]},[[0,\"snkContentCardChanged\",\"onContentCardChanged\"]]]]],[\"field-config_2.cjs\",[[2,\"field-item\",{\"fieldConfig\":[8,\"field-config\"],\"onLayoutConfig\":[4,\"on-layout-config\"],\"dataUnit\":[16],\"messagesBuilder\":[1040],\"fieldDescriptor\":[32]}],[2,\"field-config\",{\"dataUnit\":[16],\"fieldConfig\":[1544,\"field-config\"],\"fieldDescriptor\":[16],\"messagesBuilder\":[1040],\"fieldLabel\":[32],\"fieldLabelErrorMessage\":[32],\"fieldDefaultValue\":[32],\"fieldCleanOnCopy\":[32],\"fieldRequired\":[32],\"fieldReadOnly\":[32],\"_defaultType\":[32],\"show\":[64]}]]],[\"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\":[1040],\"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],\"customGuidesConfig\":[16],\"_hasToCreateFieldSearch\":[32],\"_breadcrumbItems\":[32],\"_guides\":[32],\"_formEditorConfigManager\":[32],\"_formEditorDataUnit\":[32],\"_fieldToGetFocus\":[32],\"_customEditors\":[32],\"_customRenders\":[32],\"_fieldsProps\":[32],\"_mainForm\":[32],\"showFormConfig\":[64],\"addCustomEditor\":[64],\"addGridCustomRender\":[64],\"setFieldProp\":[64],\"setFocus\":[64],\"reloadGuides\":[64]},[[2,\"actionClick\",\"onActionClick\"],[0,\"snkContentCardChanged\",\"onContentCardChanged\"]]]]],[\"snk-crud.cjs\",[[6,\"snk-crud\",{\"enableLockManagerLoadingComp\":[4,\"enable-lock-manager-loading-comp\"],\"enableLockManagerTaskbarClick\":[4,\"enable-lock-manager-taskbar-click\"],\"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],\"strategyExporter\":[1025,\"strategy-exporter\"],\"layoutFormConfig\":[4,\"layout-form-config\"],\"multipleEditionEnabled\":[4,\"multiple-edition-enabled\"],\"paginationCounterMode\":[1,\"pagination-counter-mode\"],\"customGuidesConfig\":[16],\"showEntitySearch\":[4,\"show-entity-search\"],\"disableNumberingConfig\":[4,\"disable-numbering-config\"],\"_dataUnit\":[32],\"_dataState\":[32],\"attachmentRegisterKey\":[32],\"_currentViewMode\":[32],\"_canEdit\":[32],\"_resourceID\":[32],\"customContainerId\":[32],\"numberingConfig\":[32],\"_filterMode\":[32],\"_enableContinuousInsert\":[32],\"_headerVisible\":[32],\"goToView\":[64],\"openConfigurator\":[64],\"closeConfigurator\":[64],\"reloadFilterBar\":[64],\"getFilterBar\":[64],\"addCustomEditor\":[64],\"addGridCustomRender\":[64],\"addCustomValueFormatter\":[64],\"removeCustomValueFormatter\":[64],\"setFieldProp\":[64],\"getNumberingConfig\":[64],\"updateNumberingConfig\":[64]},[[0,\"actionClick\",\"handleActionClick\"]]]]]]"), options);
|
|
149
149
|
});
|
|
150
150
|
|
|
151
151
|
exports.setNonce = index.setNonce;
|
|
@@ -4,24 +4,24 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
const index = require('./index-1894343a.js');
|
|
6
6
|
const core = require('@sankhyalabs/core');
|
|
7
|
-
const DataFetcher = require('./DataFetcher-
|
|
7
|
+
const DataFetcher = require('./DataFetcher-384d2ce8.js');
|
|
8
8
|
const ParamType = require('./ParamType-90b440a0.js');
|
|
9
|
-
require('./ISave-
|
|
9
|
+
require('./ISave-ecbe9336.js');
|
|
10
10
|
require('./index-e3e39724.js');
|
|
11
11
|
require('@sankhyalabs/ezui/dist/collection/utils/constants');
|
|
12
12
|
require('@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata');
|
|
13
|
-
require('./dataunit-fetcher-
|
|
13
|
+
require('./dataunit-fetcher-93f53260.js');
|
|
14
14
|
require('./filter-item-type.enum-a7ffdaa6.js');
|
|
15
|
-
const formConfigFetcher = require('./form-config-fetcher-
|
|
15
|
+
const formConfigFetcher = require('./form-config-fetcher-45d1964c.js');
|
|
16
16
|
const constants = require('./constants-6d82e405.js');
|
|
17
17
|
const GetSelectedRecordsIDsInfo = require('./GetSelectedRecordsIDsInfo-bd50caf1.js');
|
|
18
18
|
const ResourceIDUtils = require('./ResourceIDUtils-5ff86aa7.js');
|
|
19
19
|
const utils = require('@sankhyalabs/ezui/dist/collection/utils');
|
|
20
|
-
const ConfigStorage = require('./ConfigStorage-
|
|
20
|
+
const ConfigStorage = require('./ConfigStorage-a1fab5ca.js');
|
|
21
21
|
const utils$1 = require('@sankhyalabs/ezui/dist/collection/components/ez-grid/utils');
|
|
22
22
|
const ServicesNumberingConfig = require('./ServicesNumberingConfig-69038a0f.js');
|
|
23
23
|
require('./PrintUtils-bcaeb82f.js');
|
|
24
|
-
require('./SnkMessageBuilder-
|
|
24
|
+
require('./SnkMessageBuilder-a9300ebe.js');
|
|
25
25
|
require('@sankhyalabs/core/dist/utils/SortingUtils');
|
|
26
26
|
|
|
27
27
|
const SERVICE_ACTION_EXECUTE_JAVA = 'ActionButtonsSP.executeJava';
|
|
@@ -618,6 +618,7 @@ const SnkActionsButton = class {
|
|
|
618
618
|
action.execute(Object.assign({}, selectedAction));
|
|
619
619
|
this._showDropdown = false;
|
|
620
620
|
};
|
|
621
|
+
this.size = 'medium';
|
|
621
622
|
this._items = [];
|
|
622
623
|
this._showDropdown = false;
|
|
623
624
|
}
|
|
@@ -667,12 +668,13 @@ const SnkActionsButton = class {
|
|
|
667
668
|
document.addEventListener("scroll", this.positionDropdown.bind(this));
|
|
668
669
|
}
|
|
669
670
|
async componentWillLoad() {
|
|
671
|
+
var _a, _b;
|
|
670
672
|
this._application = core.ApplicationContext.getContextValue("__SNK__APPLICATION__");
|
|
671
673
|
await this.loadParameters();
|
|
672
674
|
const snkDataUnit = this._element.parentElement;
|
|
673
675
|
this._dataUnit = snkDataUnit === null || snkDataUnit === void 0 ? void 0 : snkDataUnit.dataUnit;
|
|
674
676
|
this._resourceID = snkDataUnit === null || snkDataUnit === void 0 ? void 0 : snkDataUnit.resourceID;
|
|
675
|
-
this._entityName = this._dataUnit.name.split('/')[2];
|
|
677
|
+
this._entityName = (_b = (_a = this._dataUnit) === null || _a === void 0 ? void 0 : _a.name) === null || _b === void 0 ? void 0 : _b.split('/')[2];
|
|
676
678
|
if (this._resourceID == undefined) {
|
|
677
679
|
this._resourceID = await ResourceIDUtils.ResourceIDUtils.getResourceID();
|
|
678
680
|
}
|
|
@@ -712,9 +714,9 @@ const SnkActionsButton = class {
|
|
|
712
714
|
}
|
|
713
715
|
render() {
|
|
714
716
|
return (index.h(index.Host, null, (this._actions && this._actions.length > 0) &&
|
|
715
|
-
(index.h("div", { class: `
|
|
717
|
+
(index.h("div", { class: `snk-actions-button
|
|
716
718
|
${this.canShowDropdown() ? " ez-elevation--16" : ""}
|
|
717
|
-
` }, index.h("ez-button", Object.assign({ ref: (ref) => this._ezButton = ref, iconName: "acao",
|
|
719
|
+
` }, index.h("ez-tooltip", { message: this._application.messagesBuilder.getMessage("snkActionsButton.title.actions", undefined) }, index.h("ez-button", Object.assign({ ref: (ref) => this._ezButton = ref, iconName: "acao", mode: "icon", onClick: () => this.controlDropdown(), size: this.size }, this.getElementID("button")))), index.h("div", Object.assign({ ref: (ref) => this._dropdownParent = ref, class: `${this.canShowDropdown() ?
|
|
718
720
|
"snk-actions-button__dropdown--show" :
|
|
719
721
|
"snk-actions-button__dropdown"}
|
|
720
722
|
` }, this.getElementID("dropdown")), (this.canShowDropdown()) &&
|
|
@@ -1417,6 +1419,18 @@ const SnkSimpleFormConfig = class {
|
|
|
1417
1419
|
};
|
|
1418
1420
|
SnkSimpleFormConfig.style = snkSimpleFormConfigCss;
|
|
1419
1421
|
|
|
1422
|
+
const snkTaskbarSkeletonCss = ".sc-snk-taskbar-skeleton-h{display:flex;align-items:center;height:100%;padding:0 var(--space--8, 8px)}ez-skeleton.sc-snk-taskbar-skeleton{--skeleton-width:42px;--skeleton-height:42px;--skeleton-margin-left:var(--space--4, 4px)}";
|
|
1423
|
+
|
|
1424
|
+
const SnkTaskbarSkeleton = class {
|
|
1425
|
+
constructor(hostRef) {
|
|
1426
|
+
index.registerInstance(this, hostRef);
|
|
1427
|
+
}
|
|
1428
|
+
render() {
|
|
1429
|
+
return (index.h(index.Host, null, index.h("ez-skeleton", { variant: "circle", count: 12 }), index.h("ez-skeleton", { width: "100px" })));
|
|
1430
|
+
}
|
|
1431
|
+
};
|
|
1432
|
+
SnkTaskbarSkeleton.style = snkTaskbarSkeletonCss;
|
|
1433
|
+
|
|
1420
1434
|
const snkViewRepresentationCss = ".sc-snk-view-representation-h{display:block}.svg-container.sc-snk-view-representation{display:flex;width:185px;height:125px;border-radius:8px;background-color:#f7f7f7;padding:10px 12px;box-sizing:border-box;position:relative}.svg-container__background.sc-snk-view-representation{display:flex;flex-direction:column;width:100%}.svg-container__header.sc-snk-view-representation{display:flex;gap:2px;margin-bottom:12px}.svg-container__circle.sc-snk-view-representation{width:9px;height:9px;border-radius:50%}.svg-container__circle--red.sc-snk-view-representation{background-color:#ed7678}.svg-container__circle--yellow.sc-snk-view-representation{background-color:#eddb76}.svg-container__circle--green.sc-snk-view-representation{background-color:#7ad08e}.svg-container__section.sc-snk-view-representation{width:100%}.svg-container__collumn.sc-snk-view-representation{width:100%;display:flex;flex-direction:column}.svg-container__inline.sc-snk-view-representation{display:flex;flex-direction:row;gap:6px}.svg-container__line.sc-snk-view-representation{height:13px;border-radius:4px;background-color:#d9d9d9;margin-bottom:4px}.svg-container__line--short.sc-snk-view-representation{width:39.68px;height:7px;border-radius:3.5px}.svg-container__line--long.sc-snk-view-representation{width:100%}";
|
|
1421
1435
|
|
|
1422
1436
|
const SnkViewRepresentation = class {
|
|
@@ -1438,7 +1452,7 @@ const SnkViewRepresentation = class {
|
|
|
1438
1452
|
};
|
|
1439
1453
|
SnkViewRepresentation.style = snkViewRepresentationCss;
|
|
1440
1454
|
|
|
1441
|
-
const taskbarActionsButtonCss = ".sc-taskbar-actions-button-h{--ez-dropdown--min-width:150px;display:flex;width:fit-content;height:fit-content}.ez-dropdown-container.sc-taskbar-actions-button{position:relative;display:inline-block}.ez-dropdown--sticky.sc-taskbar-actions-button{position:absolute;display:block;min-width:var(--ez-dropdown--min-width)}";
|
|
1455
|
+
const taskbarActionsButtonCss = ".sc-taskbar-actions-button-h{--ez-dropdown--min-width:150px;display:flex;width:fit-content;height:fit-content}.ez-dropdown-container.sc-taskbar-actions-button{position:relative;display:inline-block}.ez-dropdown--sticky.sc-taskbar-actions-button{position:absolute;display:block;min-width:var(--ez-dropdown--min-width);top:100%;left:0;margin-top:4px}.ez-dropdown--open-left.sc-taskbar-actions-button{left:auto;right:0}";
|
|
1442
1456
|
|
|
1443
1457
|
const TaskbarActionsButton = class {
|
|
1444
1458
|
constructor(hostRef) {
|
|
@@ -1447,9 +1461,11 @@ const TaskbarActionsButton = class {
|
|
|
1447
1461
|
this.taskbarActionsOpened = index.createEvent(this, "taskbarActionsOpened", 7);
|
|
1448
1462
|
this.taskbarActionsButtonDisconnected = index.createEvent(this, "taskbarActionsButtonDisconnected", 7);
|
|
1449
1463
|
this._showDropdown = false;
|
|
1464
|
+
this._openToLeft = false;
|
|
1450
1465
|
this.title = undefined;
|
|
1451
1466
|
this.enabled = undefined;
|
|
1452
1467
|
this.actions = undefined;
|
|
1468
|
+
this.size = 'medium';
|
|
1453
1469
|
}
|
|
1454
1470
|
async handleKeyDown(event) {
|
|
1455
1471
|
if (event.key === 'Escape' || event.key === 'Esc') {
|
|
@@ -1463,6 +1479,7 @@ const TaskbarActionsButton = class {
|
|
|
1463
1479
|
* Exibe a lista de ações.
|
|
1464
1480
|
*/
|
|
1465
1481
|
async showActions() {
|
|
1482
|
+
this.checkDropdownPosition();
|
|
1466
1483
|
this._showDropdown = true;
|
|
1467
1484
|
requestAnimationFrame(() => {
|
|
1468
1485
|
this._element.scrollIntoView({ behavior: 'smooth', block: 'nearest', inline: 'nearest' });
|
|
@@ -1481,8 +1498,19 @@ const TaskbarActionsButton = class {
|
|
|
1481
1498
|
return this._showDropdown;
|
|
1482
1499
|
}
|
|
1483
1500
|
controlDropdown() {
|
|
1501
|
+
if (!this._showDropdown) {
|
|
1502
|
+
this.checkDropdownPosition();
|
|
1503
|
+
}
|
|
1484
1504
|
this._showDropdown = !this._showDropdown;
|
|
1485
1505
|
}
|
|
1506
|
+
checkDropdownPosition() {
|
|
1507
|
+
const rect = this._element.getBoundingClientRect();
|
|
1508
|
+
const viewportWidth = window.innerWidth;
|
|
1509
|
+
const dropdownMinWidth = 150; // Largura mínima do dropdown
|
|
1510
|
+
const spaceOnRight = viewportWidth - rect.right;
|
|
1511
|
+
// Se não houver espaço suficiente à direita, abre para a esquerda
|
|
1512
|
+
this._openToLeft = spaceOnRight < dropdownMinWidth;
|
|
1513
|
+
}
|
|
1486
1514
|
loadItems() {
|
|
1487
1515
|
return this.actions.filter(action => action !== undefined).map(action => {
|
|
1488
1516
|
var _a;
|
|
@@ -1563,7 +1591,10 @@ const TaskbarActionsButton = class {
|
|
|
1563
1591
|
this.taskbarActionsButtonDisconnected.emit();
|
|
1564
1592
|
}
|
|
1565
1593
|
render() {
|
|
1566
|
-
return (index.h(index.Host, null, index.h("div", { class: `${this.canShowDropdown() ? ' ez-elevation--16' : ''} ez-dropdown-container` }, index.h("ez-
|
|
1594
|
+
return (index.h(index.Host, null, index.h("div", { class: `${this.canShowDropdown() ? ' ez-elevation--16' : ''} ez-dropdown-container` }, index.h("ez-tooltip", { message: this.title }, index.h("ez-button", { mode: 'icon', iconName: 'dots-vertical', isDisabled: !this.enabled, onClick: () => this.controlDropdown(), size: this.size })), this.canShowDropdown() && (index.h("ez-dropdown", { class: {
|
|
1595
|
+
'ez-dropdown--sticky': true,
|
|
1596
|
+
'ez-dropdown--open-left': this._openToLeft
|
|
1597
|
+
}, items: this.loadItems(), onEzClick: (evt) => this.onSelectAction(evt.detail), onEzOutsideClick: () => this._showDropdown = false, itemBuilder: (item, level) => this.dropdownItemBuilder(item, level) })))));
|
|
1567
1598
|
}
|
|
1568
1599
|
get _element() { return index.getElement(this); }
|
|
1569
1600
|
};
|
|
@@ -1583,6 +1614,7 @@ const TaskbarSplitButton = class {
|
|
|
1583
1614
|
this.title = undefined;
|
|
1584
1615
|
this.enabled = undefined;
|
|
1585
1616
|
this.actions = undefined;
|
|
1617
|
+
this.size = 'medium';
|
|
1586
1618
|
}
|
|
1587
1619
|
initializeEagerItems() {
|
|
1588
1620
|
var _a;
|
|
@@ -1623,8 +1655,15 @@ const TaskbarSplitButton = class {
|
|
|
1623
1655
|
};
|
|
1624
1656
|
});
|
|
1625
1657
|
}
|
|
1658
|
+
// Padroniza o tamanho do split button para se adequar aos demais tamanhos dos botões do taskbar
|
|
1659
|
+
ajustSizeButton() {
|
|
1660
|
+
if (!this.size || this.size === 'small') {
|
|
1661
|
+
return 'medium';
|
|
1662
|
+
}
|
|
1663
|
+
return 'large';
|
|
1664
|
+
}
|
|
1626
1665
|
render() {
|
|
1627
|
-
return (index.h(index.Host, null, index.h("ez-split-button", { ref: (ref) => this._splitButtonRef = ref, key: this.dataElementId, class: `${this.className} "ez-split-button--tertiary ez-padding--medium"`, items: this.loadItems(), mode: "icon-only",
|
|
1666
|
+
return (index.h(index.Host, null, index.h("ez-split-button", { ref: (ref) => this._splitButtonRef = ref, key: this.dataElementId, class: `${this.className} "ez-split-button--tertiary ez-padding--medium"`, items: this.loadItems(), mode: "icon-only", size: this.ajustSizeButton(), leftIconName: this.iconName, isDisabled: !this.enabled, show: this._showDropdown, onButtonClick: () => this.action(this.name), itemBuilder: (item, level) => this.dropdownItemBuilder(item, level), leftTitle: this.title })));
|
|
1628
1667
|
}
|
|
1629
1668
|
};
|
|
1630
1669
|
TaskbarSplitButton.style = taskbarSplitButtonCss;
|
|
@@ -1634,6 +1673,7 @@ exports.snk_grid_config = SnkGridConfig;
|
|
|
1634
1673
|
exports.snk_numbering_config = SnkNumberingConfig;
|
|
1635
1674
|
exports.snk_select_box = SelectBox;
|
|
1636
1675
|
exports.snk_simple_form_config = SnkSimpleFormConfig;
|
|
1676
|
+
exports.snk_taskbar_skeleton = SnkTaskbarSkeleton;
|
|
1637
1677
|
exports.snk_view_representation = SnkViewRepresentation;
|
|
1638
1678
|
exports.taskbar_actions_button = TaskbarActionsButton;
|
|
1639
1679
|
exports.taskbar_split_button = TaskbarSplitButton;
|
|
@@ -5,16 +5,16 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
const index = require('./index-1894343a.js');
|
|
6
6
|
const core = require('@sankhyalabs/core');
|
|
7
7
|
const utils = require('@sankhyalabs/ezui/dist/collection/utils');
|
|
8
|
-
const ConfigStorage = require('./ConfigStorage-
|
|
9
|
-
const DataFetcher = require('./DataFetcher-
|
|
10
|
-
const authFetcher = require('./auth-fetcher-
|
|
11
|
-
const dataunitFetcher = require('./dataunit-fetcher-
|
|
12
|
-
const ISave = require('./ISave-
|
|
13
|
-
const SnkMessageBuilder = require('./SnkMessageBuilder-
|
|
8
|
+
const ConfigStorage = require('./ConfigStorage-a1fab5ca.js');
|
|
9
|
+
const DataFetcher = require('./DataFetcher-384d2ce8.js');
|
|
10
|
+
const authFetcher = require('./auth-fetcher-6b134ec4.js');
|
|
11
|
+
const dataunitFetcher = require('./dataunit-fetcher-93f53260.js');
|
|
12
|
+
const ISave = require('./ISave-ecbe9336.js');
|
|
13
|
+
const SnkMessageBuilder = require('./SnkMessageBuilder-a9300ebe.js');
|
|
14
14
|
const constants = require('./constants-6d82e405.js');
|
|
15
15
|
require('./index-e3e39724.js');
|
|
16
16
|
require('./filter-item-type.enum-a7ffdaa6.js');
|
|
17
|
-
const formConfigFetcher = require('./form-config-fetcher-
|
|
17
|
+
const formConfigFetcher = require('./form-config-fetcher-45d1964c.js');
|
|
18
18
|
require('./PrintUtils-bcaeb82f.js');
|
|
19
19
|
require('@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata');
|
|
20
20
|
require('@sankhyalabs/ezui/dist/collection/utils/constants');
|
|
@@ -4,16 +4,16 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
const index = require('./index-1894343a.js');
|
|
6
6
|
const core = require('@sankhyalabs/core');
|
|
7
|
-
const DataFetcher = require('./DataFetcher-
|
|
8
|
-
const ISave = require('./ISave-
|
|
7
|
+
const DataFetcher = require('./DataFetcher-384d2ce8.js');
|
|
8
|
+
const ISave = require('./ISave-ecbe9336.js');
|
|
9
9
|
require('./index-e3e39724.js');
|
|
10
|
-
const dataunitFetcher = require('./dataunit-fetcher-
|
|
10
|
+
const dataunitFetcher = require('./dataunit-fetcher-93f53260.js');
|
|
11
11
|
require('./filter-item-type.enum-a7ffdaa6.js');
|
|
12
|
-
require('./form-config-fetcher-
|
|
12
|
+
require('./form-config-fetcher-45d1964c.js');
|
|
13
13
|
const constants = require('./constants-6d82e405.js');
|
|
14
|
-
const authFetcher = require('./auth-fetcher-
|
|
15
|
-
const SnkMessageBuilder = require('./SnkMessageBuilder-
|
|
16
|
-
const taskbarElements = require('./taskbar-elements-
|
|
14
|
+
const authFetcher = require('./auth-fetcher-6b134ec4.js');
|
|
15
|
+
const SnkMessageBuilder = require('./SnkMessageBuilder-a9300ebe.js');
|
|
16
|
+
const taskbarElements = require('./taskbar-elements-80eddec8.js');
|
|
17
17
|
require('./PrintUtils-bcaeb82f.js');
|
|
18
18
|
require('@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata');
|
|
19
19
|
require('@sankhyalabs/ezui/dist/collection/utils/constants');
|
|
@@ -628,7 +628,7 @@ const anexoSistemaCrudConfig = {
|
|
|
628
628
|
},
|
|
629
629
|
};
|
|
630
630
|
|
|
631
|
-
const snkAttachCss = ".snk-attach__header.sc-snk-attach
|
|
631
|
+
const snkAttachCss = ".snk-attach__header.sc-snk-attach{display:flex;justify-content:space-between;align-items:center;margin-bottom:var(--space--6, 6px)}.snk-attach__header.sc-snk-attach>section.sc-snk-attach{display:flex;align-items:center}.snk-attach__file-info.sc-snk-attach{display:flex;flex-direction:column;justify-content:center;gap:var(--space--8, 8px)}.snk-attach__main.sc-snk-attach{display:flex;flex-direction:column;height:100%}.ez-box__container.sc-snk-attach{height:100%}.snk-attach__crud-section.sc-snk-attach{padding:1px;display:flex;flex-direction:column;height:100%;width:100%}";
|
|
632
632
|
|
|
633
633
|
const RESOURCE_ID = 'AnexoSistema';
|
|
634
634
|
const DATA_UNIT_NAME = 'br.com.sankhya.core.v3.anexoSistema';
|
|
@@ -637,7 +637,7 @@ const LINKORFILE_COLUMN_NAME = "ARQUIVOOULINK";
|
|
|
637
637
|
const SnkAttach = class {
|
|
638
638
|
constructor(hostRef) {
|
|
639
639
|
index.registerInstance(this, hostRef);
|
|
640
|
-
this.
|
|
640
|
+
this.ezClosePopup = index.createEvent(this, "ezClosePopup", 7);
|
|
641
641
|
this.handleTaskbarClick = async ({ detail: taskbar }) => {
|
|
642
642
|
if (["DOWNLOAD", "LINK"].includes(taskbar))
|
|
643
643
|
return this.downloadAttachment(this._currentDataUnit.getSelectedRecord());
|
|
@@ -648,20 +648,21 @@ const SnkAttach = class {
|
|
|
648
648
|
this.handleBack = () => {
|
|
649
649
|
this._currentDataUnit.cancelEdition().then((cancelationConfirmed) => {
|
|
650
650
|
if (cancelationConfirmed)
|
|
651
|
-
this.
|
|
651
|
+
this.close();
|
|
652
652
|
});
|
|
653
653
|
};
|
|
654
654
|
this.handleFinish = () => {
|
|
655
655
|
if (!this._currentDataUnit.isDirty())
|
|
656
|
-
return this.
|
|
656
|
+
return this.close();
|
|
657
657
|
if (!this.validateAnexoSistema()) {
|
|
658
658
|
return;
|
|
659
659
|
}
|
|
660
660
|
this._currentDataUnit.saveData().then(() => {
|
|
661
661
|
this.showFinishedToast();
|
|
662
|
-
this.
|
|
662
|
+
this.close();
|
|
663
663
|
});
|
|
664
664
|
};
|
|
665
|
+
this._isOpen = false;
|
|
665
666
|
this.gridLegacyConfigName = undefined;
|
|
666
667
|
this.fetcherType = undefined;
|
|
667
668
|
this.fetcher = undefined;
|
|
@@ -674,6 +675,40 @@ const SnkAttach = class {
|
|
|
674
675
|
this._currentDataUnit = undefined;
|
|
675
676
|
this.crudConfig = undefined;
|
|
676
677
|
}
|
|
678
|
+
// Garante que o popup só abre via método open()
|
|
679
|
+
// Não há mais caminhos alternativos de abertura
|
|
680
|
+
/**
|
|
681
|
+
* Abre o popup do SnkAttach.
|
|
682
|
+
*/
|
|
683
|
+
/**
|
|
684
|
+
* Abre o popup do SnkAttach.
|
|
685
|
+
* Inicializa o componente apenas na abertura.
|
|
686
|
+
*/
|
|
687
|
+
async open() {
|
|
688
|
+
this._isOpen = true;
|
|
689
|
+
// Inicialização só ocorre na abertura
|
|
690
|
+
if (!this._currentDataUnit) {
|
|
691
|
+
await this.initAttach();
|
|
692
|
+
}
|
|
693
|
+
if (this._refPopup) {
|
|
694
|
+
this._refPopup.opened = true;
|
|
695
|
+
}
|
|
696
|
+
if (!this.fetcherType) {
|
|
697
|
+
this.fetcherType = "AnexoSistema";
|
|
698
|
+
}
|
|
699
|
+
if (this._currentDataUnit == null) {
|
|
700
|
+
this.loadAttachmentDataUnit();
|
|
701
|
+
}
|
|
702
|
+
}
|
|
703
|
+
/**
|
|
704
|
+
* Fecha o popup do SnkAttach.
|
|
705
|
+
*/
|
|
706
|
+
async close() {
|
|
707
|
+
this._isOpen = false;
|
|
708
|
+
if (this._refPopup) {
|
|
709
|
+
this._refPopup.opened = false;
|
|
710
|
+
}
|
|
711
|
+
}
|
|
677
712
|
async registerKeyWatcher(newRegisterKey, oldRegisterKey) {
|
|
678
713
|
var _a;
|
|
679
714
|
if (this._currentDataUnit == null) {
|
|
@@ -869,16 +904,9 @@ const SnkAttach = class {
|
|
|
869
904
|
}
|
|
870
905
|
async componentWillLoad() {
|
|
871
906
|
this._application = core.ApplicationContext.getContextValue("__SNK__APPLICATION__");
|
|
872
|
-
|
|
873
|
-
}
|
|
874
|
-
componentWillRender() {
|
|
875
|
-
if (!this.fetcherType) {
|
|
876
|
-
this.fetcherType = "AnexoSistema";
|
|
877
|
-
}
|
|
878
|
-
if (this._currentDataUnit == null) {
|
|
879
|
-
this.loadAttachmentDataUnit();
|
|
880
|
-
}
|
|
907
|
+
// Não inicializa DataUnit aqui, só na abertura
|
|
881
908
|
}
|
|
909
|
+
// Removido: não inicializa DataUnit no ciclo de vida, apenas na abertura
|
|
882
910
|
async handleOnDataStateChange({ detail }) {
|
|
883
911
|
if (this.fetcherType !== 'Attach')
|
|
884
912
|
return;
|
|
@@ -898,9 +926,7 @@ const SnkAttach = class {
|
|
|
898
926
|
}
|
|
899
927
|
render() {
|
|
900
928
|
var _a, _b;
|
|
901
|
-
|
|
902
|
-
return null;
|
|
903
|
-
return (index.h("main", { class: "snk-attach__main" }, index.h("header", { class: "snk-attach__header" }, index.h("snk-simple-bar", { onExit: this.handleBack, messagesBuilder: this.messagesBuilder }, index.h("div", { slot: "rightSlot" }, index.h("ez-button", { class: "ez-button--primary", label: this.getMessage("snkAttach.finish"), onClick: this.handleFinish })))), index.h("div", { class: "snk-attach__crud-section ez-size-height--full ez-size-width--full ez-flex ez-flex--column" }, index.h("div", { class: "ez-box__container" }, index.h("snk-simple-crud", { ref: (el) => this._crudElement = el, dataUnit: this._currentDataUnit, taskbarManager: buildTaskBarManager(), gridConfig: (_a = this.crudConfig) === null || _a === void 0 ? void 0 : _a.grid, formConfig: (_b = this.crudConfig) === null || _b === void 0 ? void 0 : _b.form, useCancelConfirm: false, onActionClick: this.handleTaskbarClick, messagesBuilder: this.messagesBuilder, onDataStateChange: this.handleOnDataStateChange.bind(this), multipleSelection: true, configName: this.entityName, ignoreReadOnlyFormFields: this.entityName ? true : false, gridLegacyConfigName: this.getGridLegacyConfigName() }, index.h("div", { slot: "snkSimpleCrudHeader" }, index.h("div", { class: "ez-flex ez-flex--column" }, index.h("span", { class: "ez-title--primary ez-text ez-text--large ez-text--bold ez-padding-bottom--medium" }, this.getMessage("snkAttach.title")), index.h("span", { class: "ez-text ez-text--medium ez-text--secondary ez-padding-bottom--medium" }, this.getMessage("snkAttach.description")))))))));
|
|
929
|
+
return (index.h("ez-popup", { ref: (el) => this._refPopup = el, size: 'x-large', ezTitle: this.getMessage("snkAttach.title"), useHeader: false, autoClose: false, onEzClosePopup: () => this.close() }, this._isOpen && this._currentDataUnit && (index.h("main", { class: "snk-attach__main" }, index.h("header", { class: "snk-attach__header" }, index.h("section", null, index.h("ez-button", { class: "ez-padding-right--medium", title: this.getMessage('snkSimpleBar.backTitle'), mode: 'icon', iconName: "arrow_back", size: 'medium', onClick: () => this.handleBack() }), index.h("div", { class: "snk-attach__file-info" }, index.h("span", { class: "ez-title--primary ez-text ez-text--large ez-text--bold" }, this.getMessage("snkAttach.title")), index.h("span", { class: "ez-text ez-text--medium ez-text--secondary" }, this.getMessage("snkAttach.description")))), index.h("ez-button", { class: "ez-button--primary", label: this.getMessage("snkAttach.finish"), onClick: this.handleFinish })), index.h("div", { class: "snk-attach__crud-section" }, index.h("snk-simple-crud", { ref: (el) => this._crudElement = el, dataUnit: this._currentDataUnit, taskbarManager: buildTaskBarManager(), gridConfig: (_a = this.crudConfig) === null || _a === void 0 ? void 0 : _a.grid, formConfig: (_b = this.crudConfig) === null || _b === void 0 ? void 0 : _b.form, useCancelConfirm: false, onActionClick: this.handleTaskbarClick, messagesBuilder: this.messagesBuilder, onDataStateChange: this.handleOnDataStateChange.bind(this), multipleSelection: true, configName: this.entityName, ignoreReadOnlyFormFields: this.entityName ? true : false, gridLegacyConfigName: this.getGridLegacyConfigName(), outlineMode: true }))))));
|
|
904
930
|
}
|
|
905
931
|
static get watchers() { return {
|
|
906
932
|
"registerKey": ["registerKeyWatcher"]
|