@sankhyalabs/sankhyablocks 8.15.0-rc.2 → 8.15.0-rc.21
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-302bbbd4.js → ConfigStorage-8d4e9d53.js} +70 -7
- package/dist/cjs/{DataFetcher-ba94ed5b.js → DataFetcher-99f0f6ed.js} +5 -3
- package/dist/cjs/{SnkFormConfigManager-71c4768e.js → SnkFormConfigManager-33995e92.js} +21 -13
- package/dist/cjs/{SnkMessageBuilder-e7dcf408.js → SnkMessageBuilder-66aa2557.js} +6 -1
- package/dist/cjs/SnkMultiSelectionListDataSource-d15f7aac.js +140 -0
- package/dist/cjs/{auth-fetcher-c8467c07.js → auth-fetcher-bb8e9ae4.js} +1 -1
- package/dist/cjs/{form-config-fetcher-df043d3d.js → form-config-fetcher-d73f4449.js} +13 -1
- package/dist/cjs/index-f9e81701.js +2 -10
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/{pesquisa-fetcher-e4a7c4c3.js → pesquisa-fetcher-bdbbe9ac.js} +277 -61
- package/dist/cjs/sankhyablocks.cjs.js +1 -1
- package/dist/cjs/{snk-actions-button_2.cjs.entry.js → snk-actions-button_4.cjs.entry.js} +520 -5
- package/dist/cjs/snk-application.cjs.entry.js +13 -8
- package/dist/cjs/snk-attach.cjs.entry.js +67 -47
- package/dist/cjs/snk-crud.cjs.entry.js +16 -10
- package/dist/cjs/snk-data-exporter.cjs.entry.js +10 -6
- package/dist/cjs/{snk-data-unit-82c08a8c.js → snk-data-unit-41c29713.js} +1 -1
- package/dist/cjs/snk-data-unit.cjs.entry.js +2 -2
- package/dist/cjs/snk-detail-view.cjs.entry.js +9 -10
- package/dist/cjs/snk-entity-list.cjs.entry.js +5 -3
- package/dist/cjs/snk-filter-bar.cjs.entry.js +36 -5
- package/dist/cjs/snk-filter-detail.cjs.entry.js +4 -1
- package/dist/cjs/snk-filter-item.cjs.entry.js +10 -6
- package/dist/cjs/snk-filter-modal-item.cjs.entry.js +3 -3
- package/dist/cjs/snk-form-config.cjs.entry.js +47 -27
- package/dist/cjs/snk-form.cjs.entry.js +11 -4
- package/dist/cjs/snk-grid.cjs.entry.js +37 -22
- package/dist/cjs/{snk-guides-viewer-d32c096f.js → snk-guides-viewer-a8dd24a3.js} +15 -9
- package/dist/cjs/snk-guides-viewer.cjs.entry.js +7 -8
- package/dist/cjs/snk-personalized-filter-editor.cjs.entry.js +3 -1
- package/dist/cjs/snk-personalized-filter.cjs.entry.js +3 -3
- package/dist/cjs/snk-simple-crud.cjs.entry.js +256 -22
- package/dist/cjs/snk-taskbar.cjs.entry.js +123 -15
- package/dist/cjs/{taskbar-elements-01b85b99.js → taskbar-elements-3ecd1278.js} +9 -9
- package/dist/collection/collection-manifest.json +6 -6
- package/dist/collection/components/snk-application/__mocks__/snk-application.js +7 -0
- package/dist/collection/components/snk-application/snk-application.js +51 -11
- package/dist/collection/components/snk-attach/snk-attach.js +39 -24
- package/dist/collection/components/snk-attach/structure/builder/attach-crud-config.builder.js +1 -1
- package/dist/collection/components/snk-attach/structure/fetcher/factory/attach-fetcher-data-unit.factory.js +29 -22
- package/dist/collection/components/snk-crud/snk-crud.js +95 -3
- package/dist/collection/components/snk-crud/subcomponents/snk-detail-view/snk-detail-view.js +2 -2
- package/dist/collection/components/snk-crud/subcomponents/snk-guides-viewer.css +11 -2
- package/dist/collection/components/snk-crud/subcomponents/snk-guides-viewer.js +27 -3
- package/dist/collection/components/snk-data-exporter/snk-data-exporter.js +7 -3
- package/dist/collection/components/snk-entity-list/snk-entity-list.js +5 -3
- package/dist/collection/components/snk-filter-bar/filter-item/editors/snk-personalized-filter-editor/snk-personalized-filter-editor.js +3 -1
- package/dist/collection/components/snk-filter-bar/filter-item/snk-filter-detail.js +22 -1
- package/dist/collection/components/snk-filter-bar/filter-item/snk-filter-item.js +28 -6
- package/dist/collection/components/snk-filter-bar/snk-filter-bar.css +24 -1
- package/dist/collection/components/snk-filter-bar/snk-filter-bar.js +116 -2
- package/dist/collection/components/snk-form/snk-form.js +25 -1
- package/dist/collection/components/{snk-form → snk-form-config}/SnkFormConfigManager.js +20 -12
- package/dist/collection/components/{snk-form/subcomponents/snk-form-config → snk-form-config}/snk-form-config.js +50 -30
- package/dist/collection/components/snk-grid/snk-grid.js +100 -16
- package/dist/collection/components/{snk-grid/subcomponents/snk-grid-config → snk-grid-config}/snk-grid-config.js +130 -123
- package/dist/collection/components/{snk-grid/subcomponents → snk-grid-config}/snk-select-box/snk-select-box.js +1 -1
- package/dist/collection/components/snk-simple-crud/regular-buttons.js +3 -0
- package/dist/collection/components/snk-simple-crud/snk-simple-crud.css +10 -2
- package/dist/collection/components/snk-simple-crud/snk-simple-crud.js +421 -17
- package/dist/collection/components/snk-taskbar/elements/taskbar-actions-button/taskbar-actions-button.js +1 -1
- package/dist/collection/components/snk-taskbar/elements/taskbar-elements.js +9 -9
- package/dist/collection/components/snk-taskbar/snk-taskbar.css +17 -0
- package/dist/collection/components/snk-taskbar/snk-taskbar.js +166 -14
- package/dist/collection/lib/configs/ConfigStorage.js +63 -3
- package/dist/collection/lib/dataUnit/InMemoryLoader.js +9 -40
- package/dist/collection/lib/dataUnit/dataUnitInMemoryUtils.js +33 -0
- package/dist/collection/lib/http/data-fetcher/DataFetcher.js +5 -3
- package/dist/collection/lib/http/data-fetcher/fetchers/form-config-fetcher.js +12 -0
- package/dist/collection/lib/http/data-fetcher/fetchers/personalized-filter-fetcher.js +6 -3
- package/dist/collection/lib/http/data-fetcher/fetchers/pesquisa-fetcher.js +4 -11
- package/dist/collection/lib/message/resources/snk-data-exporter.msg.js +2 -1
- package/dist/collection/lib/message/resources/snk-simple-crud.msg.js +4 -0
- package/dist/collection/lib/utils/CrudUtils.js +13 -1
- package/dist/components/ConfigStorage.js +68 -5
- package/dist/components/DataFetcher.js +5 -3
- package/dist/components/SnkFormConfigManager.js +19 -11
- package/dist/components/SnkMessageBuilder.js +6 -1
- package/dist/components/dataunit-fetcher.js +45 -50
- package/dist/components/field-search.js +93 -3
- package/dist/components/form-config-fetcher.js +12 -0
- package/dist/components/index.d.ts +6 -6
- package/dist/components/snk-application2.js +9 -1
- package/dist/components/snk-attach2.js +115 -52
- package/dist/components/snk-crud.js +15 -3
- package/dist/components/snk-data-exporter2.js +7 -3
- package/dist/components/snk-detail-view2.js +40 -7
- package/dist/components/snk-entity-list.js +5 -3
- package/dist/components/snk-filter-bar2.js +38 -3
- package/dist/components/snk-filter-detail2.js +5 -1
- package/dist/components/snk-filter-item2.js +11 -6
- package/dist/components/snk-form-config2.js +46 -26
- package/dist/components/snk-form.js +8 -0
- package/dist/components/snk-grid-config2.js +128 -102
- package/dist/components/snk-grid2.js +38 -17
- package/dist/components/snk-personalized-filter-editor.js +3 -1
- package/dist/components/snk-simple-crud2.js +317 -29
- package/dist/components/snk-taskbar2.js +139 -25
- package/dist/components/taskbar-actions-button2.js +1 -1
- package/dist/esm/{ConfigStorage-4151acc8.js → ConfigStorage-6e241cd7.js} +70 -7
- package/dist/esm/{DataFetcher-aa159c5a.js → DataFetcher-a650ae58.js} +5 -3
- package/dist/esm/{SnkFormConfigManager-5c7d3771.js → SnkFormConfigManager-7a4e678f.js} +21 -13
- package/dist/esm/{SnkMessageBuilder-0fb796b9.js → SnkMessageBuilder-0a4becdd.js} +6 -1
- package/dist/esm/SnkMultiSelectionListDataSource-7084f3b3.js +133 -0
- package/dist/esm/{auth-fetcher-c05dc474.js → auth-fetcher-8ec448b0.js} +1 -1
- package/dist/esm/{form-config-fetcher-36219cd3.js → form-config-fetcher-765b8498.js} +13 -1
- package/dist/esm/index-a7d3d3f1.js +2 -10
- package/dist/esm/loader.js +1 -1
- package/dist/esm/{pesquisa-fetcher-fa0c2540.js → pesquisa-fetcher-96d2f351.js} +266 -54
- package/dist/esm/sankhyablocks.js +1 -1
- package/dist/esm/{snk-actions-button_2.entry.js → snk-actions-button_4.entry.js} +519 -6
- package/dist/esm/snk-application.entry.js +13 -8
- package/dist/esm/snk-attach.entry.js +66 -46
- package/dist/esm/snk-crud.entry.js +16 -10
- package/dist/esm/snk-data-exporter.entry.js +10 -6
- package/dist/esm/{snk-data-unit-5d201fb3.js → snk-data-unit-de1d140d.js} +1 -1
- package/dist/esm/snk-data-unit.entry.js +2 -2
- package/dist/esm/snk-detail-view.entry.js +9 -10
- package/dist/esm/snk-entity-list.entry.js +5 -3
- package/dist/esm/snk-filter-bar.entry.js +36 -5
- package/dist/esm/snk-filter-detail.entry.js +4 -1
- package/dist/esm/snk-filter-item.entry.js +10 -6
- package/dist/esm/snk-filter-modal-item.entry.js +3 -3
- package/dist/esm/snk-form-config.entry.js +48 -28
- package/dist/esm/snk-form.entry.js +11 -4
- package/dist/esm/snk-grid.entry.js +38 -23
- package/dist/esm/{snk-guides-viewer-f49613c6.js → snk-guides-viewer-131e9660.js} +15 -9
- package/dist/esm/snk-guides-viewer.entry.js +7 -8
- package/dist/esm/snk-personalized-filter-editor.entry.js +3 -1
- package/dist/esm/snk-personalized-filter.entry.js +3 -3
- package/dist/esm/snk-simple-crud.entry.js +257 -23
- package/dist/esm/snk-taskbar.entry.js +124 -16
- package/dist/esm/{taskbar-elements-d4d0b424.js → taskbar-elements-2473c8ac.js} +9 -9
- package/dist/sankhyablocks/p-004c356e.js +26 -0
- package/dist/sankhyablocks/p-0624f62d.js +56 -0
- package/dist/sankhyablocks/p-075bba4c.entry.js +1 -0
- package/dist/sankhyablocks/p-07a61550.entry.js +1 -0
- package/dist/sankhyablocks/p-103c5956.entry.js +1 -0
- package/dist/sankhyablocks/p-1048bd26.entry.js +1 -0
- package/dist/sankhyablocks/{p-e6380c60.js → p-125bb902.js} +1 -1
- package/dist/sankhyablocks/p-13ae1a89.entry.js +1 -0
- package/dist/sankhyablocks/{p-e0fd9555.entry.js → p-24ed6ad6.entry.js} +1 -1
- package/dist/sankhyablocks/p-32556aa6.js +1 -0
- package/dist/sankhyablocks/p-33718dfc.entry.js +1 -0
- package/dist/sankhyablocks/p-34a7f2ab.js +65 -0
- package/dist/sankhyablocks/{p-f3d1c48e.js → p-52c8e589.js} +1 -1
- package/dist/sankhyablocks/p-54a5d52a.entry.js +1 -0
- package/dist/sankhyablocks/p-5833cff9.js +1 -0
- package/dist/sankhyablocks/p-5a2e016a.entry.js +1 -0
- package/dist/sankhyablocks/p-619c5f6f.entry.js +11 -0
- package/dist/sankhyablocks/p-6f560924.entry.js +1 -0
- package/dist/sankhyablocks/p-8967fa78.js +1 -0
- package/dist/sankhyablocks/p-9b1beac5.entry.js +1 -0
- package/dist/sankhyablocks/p-a87149e4.entry.js +1 -0
- package/dist/sankhyablocks/{p-7f3c7b09.entry.js → p-ac77949b.entry.js} +1 -1
- package/dist/sankhyablocks/p-ae4fc9a9.js +1 -0
- package/dist/sankhyablocks/p-b10b9934.entry.js +1 -0
- package/dist/sankhyablocks/p-b11aa1e0.entry.js +1 -0
- package/dist/sankhyablocks/{p-9695f78b.js → p-be75153c.js} +1 -1
- package/dist/sankhyablocks/p-bf39bdb8.entry.js +1 -0
- package/dist/sankhyablocks/p-e8763234.entry.js +1 -0
- package/dist/sankhyablocks/p-efeca7ba.js +1 -0
- package/dist/sankhyablocks/p-f7d0fab9.entry.js +1 -0
- package/dist/sankhyablocks/p-f7d9d148.entry.js +1 -0
- package/dist/sankhyablocks/sankhyablocks.esm.js +1 -1
- package/dist/types/components/snk-actions-button/subcomponents/snk-actions-form.d.ts +1 -1
- package/dist/types/components/snk-application/__mocks__/snk-application.d.ts +3 -0
- package/dist/types/components/snk-application/snk-application.d.ts +8 -0
- package/dist/types/components/snk-attach/snk-attach.d.ts +2 -1
- package/dist/types/components/snk-attach/structure/builder/attach-crud-config.builder.d.ts +10 -1
- package/dist/types/components/snk-attach/structure/fetcher/factory/attach-fetcher-data-unit.factory.d.ts +5 -4
- package/dist/types/components/snk-crud/snk-crud.d.ts +21 -0
- 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-guides-viewer.d.ts +6 -1
- package/dist/types/components/snk-filter-bar/filter-item/snk-filter-detail.d.ts +4 -0
- package/dist/types/components/snk-filter-bar/filter-item/snk-filter-item.d.ts +6 -2
- package/dist/types/components/snk-filter-bar/snk-filter-bar.d.ts +20 -1
- package/dist/types/components/snk-form/snk-form.d.ts +6 -1
- package/dist/types/components/{snk-form → snk-form-config}/SnkFormConfigManager.d.ts +2 -1
- package/dist/types/components/{snk-form/subcomponents/snk-form-config → snk-form-config}/snk-form-config.d.ts +5 -3
- package/dist/types/components/snk-grid/snk-grid.d.ts +19 -1
- package/dist/types/components/{snk-grid/subcomponents/snk-grid-config → snk-grid-config}/snk-grid-config.d.ts +11 -6
- package/dist/types/components/{snk-grid/subcomponents → snk-grid-config}/snk-select-box/snk-select-box.d.ts +1 -1
- package/dist/types/components/snk-simple-crud/regular-buttons.d.ts +3 -0
- package/dist/types/components/snk-simple-crud/snk-simple-crud.d.ts +76 -3
- package/dist/types/components/snk-taskbar/snk-taskbar.d.ts +34 -1
- package/dist/types/components.d.ts +226 -12
- package/dist/types/lib/configs/ConfigStorage.d.ts +21 -1
- package/dist/types/lib/dataUnit/InMemoryLoader.d.ts +0 -2
- package/dist/types/lib/dataUnit/dataUnitInMemoryUtils.d.ts +4 -0
- package/dist/types/lib/http/data-fetcher/fetchers/form-config-fetcher.d.ts +2 -0
- package/dist/types/lib/http/data-fetcher/fetchers/personalized-filter-fetcher.d.ts +2 -1
- package/dist/types/lib/utils/CrudUtils.d.ts +3 -0
- package/package.json +9 -2
- package/dist/cjs/PreloadManager-84466da6.js +0 -224
- package/dist/cjs/SnkMultiSelectionListDataSource-ba5838c2.js +0 -49
- package/dist/cjs/snk-grid-config.cjs.entry.js +0 -483
- package/dist/cjs/snk-select-box.cjs.entry.js +0 -25
- package/dist/esm/PreloadManager-c1c2f2b4.js +0 -222
- package/dist/esm/SnkMultiSelectionListDataSource-44494b0e.js +0 -43
- package/dist/esm/snk-grid-config.entry.js +0 -479
- package/dist/esm/snk-select-box.entry.js +0 -21
- package/dist/sankhyablocks/p-02e3a45b.entry.js +0 -1
- package/dist/sankhyablocks/p-05243555.js +0 -1
- package/dist/sankhyablocks/p-094c30cb.js +0 -1
- package/dist/sankhyablocks/p-0d7863ed.js +0 -26
- package/dist/sankhyablocks/p-0ec5b2e5.js +0 -1
- package/dist/sankhyablocks/p-1d75d9f9.entry.js +0 -1
- package/dist/sankhyablocks/p-2582537c.entry.js +0 -1
- package/dist/sankhyablocks/p-282789a6.entry.js +0 -1
- package/dist/sankhyablocks/p-374d03f6.js +0 -1
- package/dist/sankhyablocks/p-3b0e4e08.js +0 -65
- package/dist/sankhyablocks/p-40915359.entry.js +0 -1
- package/dist/sankhyablocks/p-573a07c5.js +0 -1
- package/dist/sankhyablocks/p-69efa80d.entry.js +0 -1
- package/dist/sankhyablocks/p-761ed32f.entry.js +0 -1
- package/dist/sankhyablocks/p-86801b08.entry.js +0 -1
- package/dist/sankhyablocks/p-96ef14f9.entry.js +0 -1
- package/dist/sankhyablocks/p-98674137.entry.js +0 -1
- package/dist/sankhyablocks/p-9b5944a4.entry.js +0 -1
- package/dist/sankhyablocks/p-9bdbc7d8.entry.js +0 -1
- package/dist/sankhyablocks/p-a52b9254.entry.js +0 -11
- package/dist/sankhyablocks/p-aa95fb2c.js +0 -56
- package/dist/sankhyablocks/p-ac384baf.entry.js +0 -1
- package/dist/sankhyablocks/p-b05ab13d.entry.js +0 -1
- package/dist/sankhyablocks/p-c22c1d8e.js +0 -1
- package/dist/sankhyablocks/p-c4874327.entry.js +0 -1
- package/dist/sankhyablocks/p-c758265f.entry.js +0 -1
- package/dist/sankhyablocks/p-cb7419e0.entry.js +0 -1
- package/dist/sankhyablocks/p-d4f9ee17.entry.js +0 -1
- package/dist/sankhyablocks/p-d6317851.entry.js +0 -1
- /package/dist/collection/components/{snk-form/subcomponents/snk-form-config → snk-form-config}/snk-form-config.css +0 -0
- /package/dist/collection/components/{snk-form → snk-form-config}/subcomponents/snk-config-options/snk-config-options.css +0 -0
- /package/dist/collection/components/{snk-form → snk-form-config}/subcomponents/snk-config-options/snk-config-options.js +0 -0
- /package/dist/collection/components/{snk-form → snk-form-config}/subcomponents/snk-field-config/snk-field-config.css +0 -0
- /package/dist/collection/components/{snk-form → snk-form-config}/subcomponents/snk-field-config/snk-field-config.js +0 -0
- /package/dist/collection/components/{snk-form → snk-form-config}/subcomponents/snk-tab-config/snk-tab-config.css +0 -0
- /package/dist/collection/components/{snk-form → snk-form-config}/subcomponents/snk-tab-config/snk-tab-config.js +0 -0
- /package/dist/collection/components/{snk-grid/subcomponents/snk-grid-config → snk-grid-config}/snk-grid-config.css +0 -0
- /package/dist/collection/components/{snk-grid/subcomponents → snk-grid-config}/snk-select-box/snk-select-box.css +0 -0
- /package/dist/types/components/{snk-form → snk-form-config}/subcomponents/snk-config-options/snk-config-options.d.ts +0 -0
- /package/dist/types/components/{snk-form → snk-form-config}/subcomponents/snk-field-config/snk-field-config.d.ts +0 -0
- /package/dist/types/components/{snk-form → snk-form-config}/subcomponents/snk-tab-config/snk-tab-config.d.ts +0 -0
@@ -1,22 +1,35 @@
|
|
1
1
|
import { proxyCustomElement, HTMLElement, createEvent, h } from '@stencil/core/internal/client';
|
2
|
-
import {
|
2
|
+
import { StringUtils, ApplicationContext, ObjectUtils, DataType, UserInterface, JSUtils, FloatingManager, ElementIDUtils } from '@sankhyalabs/core';
|
3
|
+
import { CSSVarsUtils } from '@sankhyalabs/ezui/dist/collection/utils';
|
3
4
|
import { V as VIEW_MODE, S as SIMPLE_CRUD_MODE } from './constants.js';
|
4
5
|
import { T as TaskbarElement, d as defineCustomElement$2 } from './snk-taskbar2.js';
|
5
6
|
import './DataFetcher.js';
|
6
7
|
import { I as InMemoryLoader } from './dataunit-fetcher.js';
|
8
|
+
import { S as SnkMultiSelectionListDataSource, T as TaskbarProcessor, b as buildFieldSearch, o as openFieldSearch, C as CrudUtils } from './field-search.js';
|
7
9
|
import { P as PresentationMode } from './index2.js';
|
8
|
-
import { d as defineCustomElement$
|
10
|
+
import { d as defineCustomElement$d } from './snk-actions-button2.js';
|
9
11
|
import '@sankhyalabs/ezui/dist/collection/utils/constants';
|
10
12
|
import '@sankhyalabs/core/dist/dataunit/metadata/UnitMetadata';
|
11
13
|
import './filter-item-type.enum.js';
|
12
|
-
import './form-config-fetcher.js';
|
13
|
-
import {
|
14
|
-
import {
|
15
|
-
import { d as defineCustomElement$
|
16
|
-
import { d as defineCustomElement$
|
14
|
+
import { F as FormConfigFetcher } from './form-config-fetcher.js';
|
15
|
+
import { C as ConfigStorage } from './ConfigStorage.js';
|
16
|
+
import { S as SnkFormConfigManager } from './SnkFormConfigManager.js';
|
17
|
+
import { d as defineCustomElement$c } from './snk-config-options2.js';
|
18
|
+
import { d as defineCustomElement$b } from './snk-configurator2.js';
|
19
|
+
import { d as defineCustomElement$a } from './snk-data-exporter2.js';
|
20
|
+
import { d as defineCustomElement$9 } from './snk-data-unit2.js';
|
21
|
+
import { d as defineCustomElement$8 } from './snk-exporter-email-sender2.js';
|
22
|
+
import { d as defineCustomElement$7 } from './snk-field-config2.js';
|
23
|
+
import { d as defineCustomElement$6 } from './snk-form-config2.js';
|
24
|
+
import { d as defineCustomElement$5 } from './snk-grid-config2.js';
|
25
|
+
import { d as defineCustomElement$4 } from './snk-select-box2.js';
|
26
|
+
import { d as defineCustomElement$3 } from './snk-tab-config2.js';
|
17
27
|
import { d as defineCustomElement$1 } from './taskbar-actions-button2.js';
|
18
28
|
|
19
|
-
const
|
29
|
+
const REGULAR_DEFAULT_BTNS = ["INSERT", "REFRESH", "PREVIOUS", "NEXT", "DIVIDER", "MORE_OPTIONS"];
|
30
|
+
const REGULAR_SELECTED_BTNS = ["INSERT", "REFRESH", "PREVIOUS", "NEXT", "DIVIDER", "CLONE", "REMOVE", "DIVIDER", "MORE_OPTIONS"];
|
31
|
+
|
32
|
+
const snkSimpleCrudCss = ".sc-snk-simple-crud-h{display:flex;height:100%;width:100%;--snk-simple-crud-grid--min-height:300px}.simple-crud__container.sc-snk-simple-crud{display:grid;grid-template-rows:auto 1fr;row-gap:12px;height:100%;width:100%}.simple-crud__container-section.sc-snk-simple-crud{flex-wrap:unset;flex-direction:column}.simple-crud__form--hidden.sc-snk-simple-crud{display:none}ez-grid.sc-snk-simple-crud{--ez-grid__container--shadow:none;--ez-grid--min-height:var(--snk-simple-crud-grid--min-height)}ez-form.sc-snk-simple-crud{min-height:300px}";
|
20
33
|
|
21
34
|
const SnkSimpleCrud = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
|
22
35
|
constructor() {
|
@@ -26,20 +39,24 @@ const SnkSimpleCrud = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement
|
|
26
39
|
this.dataUnitReady = createEvent(this, "dataUnitReady", 3);
|
27
40
|
this.actionClick = createEvent(this, "actionClick", 7);
|
28
41
|
this.formItemsReady = createEvent(this, "formItemsReady", 7);
|
29
|
-
this.
|
30
|
-
this.
|
42
|
+
this.configuratorSave = createEvent(this, "configuratorSave", 7);
|
43
|
+
this.configuratorCancel = createEvent(this, "configuratorCancel", 7);
|
31
44
|
this._multiSelectionListDataSource = new SnkMultiSelectionListDataSource();
|
32
45
|
this._keyDownHandler = (event) => this.keyDownListener(event);
|
46
|
+
this._formConfigFetcher = new FormConfigFetcher();
|
33
47
|
this._taskbarProcessor = new TaskbarProcessor({
|
34
|
-
"snkSimpleCrudTaskbar.form_regular": this.
|
35
|
-
"snkSimpleCrudTaskbar.grid_regular": this.
|
36
|
-
"snkSimpleCrudTaskbar.form_selected": this.
|
37
|
-
"snkSimpleCrudTaskbar.grid_selected": this.
|
48
|
+
"snkSimpleCrudTaskbar.form_regular": this.getButtons(false, TaskbarElement.GRID_MODE),
|
49
|
+
"snkSimpleCrudTaskbar.grid_regular": this.getButtons(false, TaskbarElement.FORM_MODE),
|
50
|
+
"snkSimpleCrudTaskbar.form_selected": this.getButtons(true, TaskbarElement.GRID_MODE),
|
51
|
+
"snkSimpleCrudTaskbar.grid_selected": this.getButtons(true, TaskbarElement.FORM_MODE),
|
38
52
|
"snkSimpleCrudTaskbar.finish_edition": ["CANCEL", "SAVE"]
|
39
53
|
});
|
54
|
+
this._showPopUpGridConfig = false;
|
55
|
+
this._showFormConfig = false;
|
40
56
|
this._currentViewMode = VIEW_MODE.GRID;
|
41
57
|
this._config = undefined;
|
42
58
|
this._fieldToGetFocus = undefined;
|
59
|
+
this._customContainerId = `SNK-SIMPLE-CRUD-CUSTOM-CONTAINER-${StringUtils.generateUUID()}`;
|
43
60
|
this.dataState = undefined;
|
44
61
|
this.dataUnit = undefined;
|
45
62
|
this.mode = SIMPLE_CRUD_MODE.SERVER;
|
@@ -48,11 +65,39 @@ const SnkSimpleCrud = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement
|
|
48
65
|
this._formFields = [];
|
49
66
|
this.multipleSelection = undefined;
|
50
67
|
this.useCancelConfirm = true;
|
68
|
+
this.resourceID = undefined;
|
51
69
|
this.taskbarManager = undefined;
|
52
70
|
this.messagesBuilder = undefined;
|
53
71
|
this.useEnterLikeTab = false;
|
54
72
|
this.actionsList = undefined;
|
55
73
|
this.configName = undefined;
|
74
|
+
this.showConfiguratorButtons = undefined;
|
75
|
+
this.gridLegacyConfigName = undefined;
|
76
|
+
this.formLegacyConfigName = undefined;
|
77
|
+
this.ignoreReadOnlyFormFields = false;
|
78
|
+
}
|
79
|
+
handleResourceIDChanged(newValue, oldValue) {
|
80
|
+
if (StringUtils.isEmpty(newValue)) {
|
81
|
+
return;
|
82
|
+
}
|
83
|
+
if (newValue === oldValue) {
|
84
|
+
return;
|
85
|
+
}
|
86
|
+
this.loadFormConfig(true);
|
87
|
+
this.loadGridConfig(true);
|
88
|
+
}
|
89
|
+
getButtons(selected, changeModeBtn) {
|
90
|
+
return this.addConfigButton(this.resolveInMemoryBtns(selected ? REGULAR_SELECTED_BTNS : REGULAR_DEFAULT_BTNS)
|
91
|
+
.concat(changeModeBtn));
|
92
|
+
}
|
93
|
+
addConfigButton(buttons) {
|
94
|
+
if (this.configName === undefined) {
|
95
|
+
return buttons;
|
96
|
+
}
|
97
|
+
return buttons.concat(TaskbarElement.CONFIGURATOR);
|
98
|
+
}
|
99
|
+
get application() {
|
100
|
+
return ApplicationContext.getContextValue("__SNK__APPLICATION__");
|
56
101
|
}
|
57
102
|
resolveInMemoryBtns(taskbarButtons) {
|
58
103
|
const newTaskBarConfig = [...taskbarButtons];
|
@@ -72,7 +117,10 @@ const SnkSimpleCrud = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement
|
|
72
117
|
}
|
73
118
|
actionClickListener(evt) {
|
74
119
|
const act = evt.detail;
|
75
|
-
if (act === TaskbarElement.
|
120
|
+
if (act === TaskbarElement.CONFIGURATOR) {
|
121
|
+
this._snkConfigurator.open();
|
122
|
+
}
|
123
|
+
else if (act === TaskbarElement.GRID_MODE) {
|
76
124
|
this.goToView(VIEW_MODE.GRID);
|
77
125
|
}
|
78
126
|
else if (act === TaskbarElement.FORM_MODE) {
|
@@ -90,17 +138,129 @@ const SnkSimpleCrud = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement
|
|
90
138
|
this.dataStateChange.emit(newValue);
|
91
139
|
}
|
92
140
|
}
|
93
|
-
|
141
|
+
async observeFormLegacy(newValue, oldValue) {
|
142
|
+
await this.handleUpdateFormLegacyConfig(newValue, oldValue);
|
143
|
+
}
|
144
|
+
async observeGridLegacy(newValue, oldValue) {
|
145
|
+
await this.handleUpdateGridLegacyConfig(newValue, oldValue);
|
146
|
+
}
|
147
|
+
async handleUpdateGridLegacyConfig(newValue, oldValue) {
|
148
|
+
if (newValue == undefined || newValue == oldValue) {
|
149
|
+
return;
|
150
|
+
}
|
151
|
+
if (!this._gridConfigAlreadyLoaded) {
|
152
|
+
return;
|
153
|
+
}
|
154
|
+
await this.loadGridConfig(true);
|
155
|
+
}
|
156
|
+
async handleUpdateFormLegacyConfig(newValue, oldValue) {
|
157
|
+
if (newValue == undefined || newValue == oldValue) {
|
158
|
+
return;
|
159
|
+
}
|
160
|
+
if (!this._formConfigAlreadyLoaded) {
|
161
|
+
return;
|
162
|
+
}
|
163
|
+
this.loadFormConfig(true);
|
164
|
+
}
|
165
|
+
openConfig(viewMode) {
|
166
|
+
this._snkConfigurator.close();
|
167
|
+
if (viewMode === VIEW_MODE.GRID) {
|
168
|
+
this.openGridConfig();
|
169
|
+
}
|
170
|
+
else if (viewMode === VIEW_MODE.FORM) {
|
171
|
+
this.openFormConfig();
|
172
|
+
}
|
173
|
+
}
|
174
|
+
openGridConfig() {
|
175
|
+
this._grid.getColumnsState()
|
176
|
+
.then((gridColumns) => {
|
177
|
+
this._snkGridConfig.columns = gridColumns.filter(c => c.name);
|
178
|
+
this._snkGridConfig.selectedIndex = 0;
|
179
|
+
this._showPopUpGridConfig = true;
|
180
|
+
});
|
181
|
+
}
|
182
|
+
async openFormConfig() {
|
183
|
+
var _a, _b;
|
184
|
+
//No momento não daremos suporte para configuraçao de formulário quando houver legacy config
|
185
|
+
if (this.formLegacyConfigName) {
|
186
|
+
const title = (_a = this.messagesBuilder) === null || _a === void 0 ? void 0 : _a.getMessage("snkSimpleCrud.formConfigUnavaliable.title", undefined);
|
187
|
+
const message = (_b = this.messagesBuilder) === null || _b === void 0 ? void 0 : _b.getMessage("snkSimpleCrud.formConfigUnavaliable.message", undefined);
|
188
|
+
await this.application.alert(title, message);
|
189
|
+
return;
|
190
|
+
}
|
191
|
+
this._showFormConfig = true;
|
192
|
+
}
|
193
|
+
addGridLegacyConfigName() {
|
194
|
+
if (this.gridLegacyConfigName && this.configName) {
|
195
|
+
ConfigStorage.addGridLegacyConfig(this.configName, this.gridLegacyConfigName);
|
196
|
+
}
|
197
|
+
}
|
198
|
+
loadGridConfig(forceUpdate) {
|
199
|
+
if (this.configName === undefined) {
|
200
|
+
return;
|
201
|
+
}
|
202
|
+
if ((this.gridConfig != undefined || this._gridConfigAlreadyLoaded) && !forceUpdate) {
|
203
|
+
return;
|
204
|
+
}
|
205
|
+
this.addGridLegacyConfigName();
|
206
|
+
this._gridConfigAlreadyLoaded = true;
|
207
|
+
return new Promise((accept, reject) => {
|
208
|
+
ConfigStorage.loadGridConfig(this.configName, this.resolveResourceID())
|
209
|
+
.then(config => {
|
210
|
+
this.setGridConfig(config);
|
211
|
+
accept();
|
212
|
+
})
|
213
|
+
.catch(reason => {
|
214
|
+
reject(reason);
|
215
|
+
});
|
216
|
+
});
|
217
|
+
}
|
218
|
+
formConfigIsLoaded() {
|
219
|
+
return this.formConfig != undefined || this._formConfigAlreadyLoaded;
|
220
|
+
}
|
221
|
+
async loadFormConfig(forceLoad = false) {
|
222
|
+
if (this.configName === undefined) {
|
223
|
+
return;
|
224
|
+
}
|
225
|
+
if (this._formConfigManager == undefined) {
|
226
|
+
this._formConfigManager = new SnkFormConfigManager(this.configName, this.resolveResourceID());
|
227
|
+
this._formConfigManager.setConfig(this.formConfig);
|
228
|
+
}
|
229
|
+
if (this.formConfigIsLoaded() && !forceLoad) {
|
230
|
+
return;
|
231
|
+
}
|
232
|
+
this._formConfigAlreadyLoaded = true;
|
233
|
+
let loadedLegacyConfig = await this._formConfigFetcher.fetchLegacyConfigurableForm(this.formLegacyConfigName);
|
234
|
+
if (loadedLegacyConfig != undefined) {
|
235
|
+
this._formConfigManager.setConfig(loadedLegacyConfig);
|
236
|
+
this.setFormConfig(loadedLegacyConfig);
|
237
|
+
return;
|
238
|
+
}
|
239
|
+
this.setFormConfig(await this._formConfigManager.loadConfig());
|
240
|
+
}
|
241
|
+
async componentWillRender() {
|
242
|
+
this._resourceID = await this.application.getResourceID();
|
94
243
|
this._taskbarProcessor.process(this.getTaskBarId(), this.taskbarManager, this.dataState, this.getTaskBarDisabledButtons());
|
244
|
+
if (this.configName === undefined) {
|
245
|
+
return;
|
246
|
+
}
|
247
|
+
if (this.gridConfig != undefined || this._gridConfigAlreadyLoaded) {
|
248
|
+
return;
|
249
|
+
}
|
250
|
+
await this.addGridLegacyConfigName();
|
251
|
+
this.loadGridConfig();
|
252
|
+
this.loadFormConfig();
|
95
253
|
}
|
96
254
|
componentWillLoad() {
|
97
255
|
this.processMetadata();
|
98
256
|
this.onModeChange();
|
99
257
|
this.configDatasource();
|
100
258
|
}
|
259
|
+
componentDidLoad() {
|
260
|
+
CSSVarsUtils.applyVarsGrid(this._element, this._grid);
|
261
|
+
}
|
101
262
|
configDatasource() {
|
102
|
-
|
103
|
-
this._multiSelectionListDataSource.setApplication(application);
|
263
|
+
this._multiSelectionListDataSource.setApplication(this.application);
|
104
264
|
this._multiSelectionListDataSource.setDataUnit(this.dataUnit);
|
105
265
|
}
|
106
266
|
getTaskBarId() {
|
@@ -141,6 +301,27 @@ const SnkSimpleCrud = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement
|
|
141
301
|
getRecords() {
|
142
302
|
return Promise.resolve(this.dataUnit.records);
|
143
303
|
}
|
304
|
+
/**
|
305
|
+
* Usado para abrir o configurator do CRUD
|
306
|
+
*/
|
307
|
+
async openConfigurator() {
|
308
|
+
var _a;
|
309
|
+
(_a = this._snkConfigurator) === null || _a === void 0 ? void 0 : _a.open();
|
310
|
+
}
|
311
|
+
/**
|
312
|
+
* Usado para fechar o configurator do CRUD
|
313
|
+
*/
|
314
|
+
async closeConfigurator() {
|
315
|
+
var _a;
|
316
|
+
(_a = this._snkConfigurator) === null || _a === void 0 ? void 0 : _a.close();
|
317
|
+
}
|
318
|
+
updateConfig() {
|
319
|
+
if (this._formConfigManager == undefined) {
|
320
|
+
this._formConfigManager = new SnkFormConfigManager(this.configName, this.resolveResourceID());
|
321
|
+
}
|
322
|
+
this._formConfigManager.setConfig(this.formConfig);
|
323
|
+
return;
|
324
|
+
}
|
144
325
|
processMetadata() {
|
145
326
|
const fieldsMetadataElem = this._element.querySelectorAll("snk-field-metadata");
|
146
327
|
const fieldMetadata = [];
|
@@ -195,6 +376,14 @@ const SnkSimpleCrud = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement
|
|
195
376
|
this.dataUnit.clearSelection();
|
196
377
|
}
|
197
378
|
}
|
379
|
+
handleConfiguratorEvent(evt, type) {
|
380
|
+
evt.stopImmediatePropagation();
|
381
|
+
if (type === 'SAVE') {
|
382
|
+
this.configuratorSave.emit();
|
383
|
+
return;
|
384
|
+
}
|
385
|
+
this.configuratorCancel.emit();
|
386
|
+
}
|
198
387
|
getColumnSearch(actionButton, item) {
|
199
388
|
if (this._columnSearch != undefined) {
|
200
389
|
return this._columnSearch;
|
@@ -236,7 +425,9 @@ const SnkSimpleCrud = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement
|
|
236
425
|
return (_b = (_a = this.formConfig) === null || _a === void 0 ? void 0 : _a.fields) !== null && _b !== void 0 ? _b : this._formFields;
|
237
426
|
}
|
238
427
|
handleFormSetFields(fields) {
|
239
|
-
this._formFields
|
428
|
+
if (!ObjectUtils.equals(this._formFields, fields)) {
|
429
|
+
this._formFields = fields !== null && fields !== void 0 ? fields : [];
|
430
|
+
}
|
240
431
|
}
|
241
432
|
fieldsOptionLoader(argument) {
|
242
433
|
const searchTerm = argument === null || argument === void 0 ? void 0 : argument.toLowerCase();
|
@@ -308,45 +499,107 @@ const SnkSimpleCrud = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement
|
|
308
499
|
disconnectedCallback() {
|
309
500
|
window.removeEventListener("keydown", this._keyDownHandler);
|
310
501
|
}
|
502
|
+
gridConfigChangeHandler(evt) {
|
503
|
+
const config = evt.detail;
|
504
|
+
ConfigStorage.saveGridConfig(config, this.configName, this.resolveResourceID());
|
505
|
+
evt.stopPropagation();
|
506
|
+
}
|
507
|
+
modalConfigChangeHandler(evt) {
|
508
|
+
const config = evt.detail;
|
509
|
+
this._grid.setColumnsState(config.columns)
|
510
|
+
.then(() => {
|
511
|
+
this.setGridConfig(config);
|
512
|
+
this.closeGridConfig();
|
513
|
+
});
|
514
|
+
evt.stopPropagation();
|
515
|
+
}
|
516
|
+
setGridConfig(config) {
|
517
|
+
this.gridConfig = config;
|
518
|
+
CrudUtils.assertDefaultSorting(this.gridConfig, this.dataUnit);
|
519
|
+
}
|
520
|
+
setFormConfig(config, forceUpdate) {
|
521
|
+
if (this.formConfig && !forceUpdate)
|
522
|
+
return;
|
523
|
+
this.formConfig = config;
|
524
|
+
}
|
525
|
+
closeGridConfig() {
|
526
|
+
this._showPopUpGridConfig = false;
|
527
|
+
}
|
528
|
+
closeFormConfig() {
|
529
|
+
this._showFormConfig = false;
|
530
|
+
}
|
531
|
+
//No momento não daremos suporte para configuração de formulário quando houver formLegacyConfigName
|
532
|
+
handleShowFormConfig() {
|
533
|
+
return this._showFormConfig && !this.formLegacyConfigName;
|
534
|
+
}
|
535
|
+
resolveResourceID() {
|
536
|
+
return StringUtils.isEmpty(this.resourceID) ? this._resourceID : this.resourceID;
|
537
|
+
}
|
538
|
+
getFormConfig() {
|
539
|
+
var _a, _b;
|
540
|
+
const configFromManager = (_a = this._formConfigManager) === null || _a === void 0 ? void 0 : _a.getConfig((_b = this.dataState) === null || _b === void 0 ? void 0 : _b.insertionMode, this.dataUnit, this.ignoreReadOnlyFormFields);
|
541
|
+
if (!this.configName && !configFromManager) {
|
542
|
+
return this.formConfig;
|
543
|
+
}
|
544
|
+
return configFromManager;
|
545
|
+
}
|
546
|
+
/* istanbul ignore next */
|
311
547
|
render() {
|
312
548
|
var _a;
|
313
|
-
|
549
|
+
if (this.dataUnit == undefined) {
|
550
|
+
return;
|
551
|
+
}
|
552
|
+
return (h("snk-data-unit", { class: "simple-crud__container", dataUnit: this.dataUnit, useCancelConfirm: this.useCancelConfirm, onDataStateChange: evt => this.onDataStateChange(evt), onCancelEdition: this.handleCancelEdit.bind(this), onInsertionMode: () => this.goToView(VIEW_MODE.FORM), onDataUnitReady: (evt) => this.dataUnitReady.emit(evt.detail), ignoreSaveMessage: this._currentViewMode === VIEW_MODE.GRID, onMessagesBuilderUpdated: evt => this.messagesBuilder = evt.detail }, h("header", null, h("slot", { name: "snkSimpleCrudHeader" })), h("section", { class: "ez-box ez-box--shadow simple-crud__container-section" }, h("snk-taskbar", { class: "ez-box ez-box--shadow ez-padding--medium", dataUnit: this.dataUnit, primaryButton: ((_a = this.dataState) === null || _a === void 0 ? void 0 : _a.isDirty) ? "SAVE" : "INSERT", "data-element-id": "grid_left", messagesBuilder: this.messagesBuilder, buttons: this._taskbarProcessor.buttons, actionsList: this.getActionsList(), disabledButtons: this._taskbarProcessor.disabledButtons, customButtons: this._taskbarProcessor.customButtons, slot: "leftButtons", presentationMode: PresentationMode.SECONDARY }, h("slot", { name: "TASKBAR_CUSTOM_ELEMENTS" })), h("ez-view-stack", { ref: (ref) => this._viewStack = ref, "data-element-id": "simple-crud" }, h("stack-item", null, h("ez-grid", { class: "ez-margin-bottom--large", ref: ref => this._grid = ref, dataUnit: this.dataUnit, config: this.gridConfig, "no-header": true, multipleSelection: this.multipleSelection, onEzDoubleClick: () => this.goToView(VIEW_MODE.FORM), onConfigChange: evt => this.gridConfigChangeHandler(evt), columnfilterDataSource: this.dataUnit.name && this.dataUnit.name.includes(InMemoryLoader.IN_MEMORY_DATA_UNIT_NAME)
|
314
553
|
? undefined
|
315
|
-
: this._multiSelectionListDataSource, useEnterLikeTab: this.useEnterLikeTab }, h("div", { slot: "footer" }, h("slot", { name: "snkSimpleCrudFooter" })))), h("stack-item", null, h("ez-form", { dataUnit: this.dataUnit, config: this.
|
554
|
+
: this._multiSelectionListDataSource, useEnterLikeTab: this.useEnterLikeTab }, h("div", { slot: "footer" }, h("slot", { name: "snkSimpleCrudFooter" })))), h("stack-item", null, h("ez-form", { class: `ez-margin-top--large ${this.handleShowFormConfig() ? "simple-crud__form--hidden" : ""}`, dataUnit: this.dataUnit, config: this.getFormConfig(), fieldToFocus: this._fieldToGetFocus, onEzFormSetFields: (evt) => this.handleFormSetFields(evt.detail), onEzFormRequestClearFieldToFocus: this.clearFieldToFocusHandler.bind(this) }), this.handleShowFormConfig() && h("snk-form-config", { messagesBuilder: this.messagesBuilder, dataUnit: this.dataUnit, configManager: this._formConfigManager, onConfigClose: () => this.closeFormConfig() })), this.messagesBuilder && h("snk-configurator", { ref: (ref) => this._snkConfigurator = ref, viewMode: this._currentViewMode, messagesBuilder: this.messagesBuilder, onConfigSelected: (evt) => this.goToView(evt.detail), onOpenConfig: (evt) => this.openConfig(evt.detail), showActionButtons: this.showConfiguratorButtons, onSave: evt => this.handleConfiguratorEvent(evt, 'SAVE'), onCancel: evt => this.handleConfiguratorEvent(evt, 'CANCEL'), resourceID: this.resolveResourceID(), customContainerId: this._customContainerId })), h("div", { id: `${this._customContainerId}` }, h("slot", { name: "SnkConfigContainerSlot" }))), h("ez-modal", { modalSize: "small", closeEsc: false, closeOutsideClick: false, opened: this._showPopUpGridConfig, onEzCloseModal: () => this.closeGridConfig() }, h("snk-grid-config", { ref: ref => this._snkGridConfig = ref, config: this.gridConfig, "data-element-id": this._element.getAttribute(ElementIDUtils.DATA_ELEMENT_ID_ATTRIBUTE_NAME), selectedIndex: 0, configName: this.configName, onConfigChange: (evt) => this.modalConfigChangeHandler(evt), onConfigCancel: () => this.closeGridConfig(), resourceID: this.resolveResourceID() }))));
|
316
555
|
}
|
317
556
|
get _element() { return this; }
|
318
557
|
static get watchers() { return {
|
558
|
+
"resourceID": ["handleResourceIDChanged"],
|
319
559
|
"mode": ["onModeChange"],
|
320
|
-
"dataState": ["observeDataState"]
|
560
|
+
"dataState": ["observeDataState"],
|
561
|
+
"formLegacyConfigName": ["observeFormLegacy"],
|
562
|
+
"gridLegacyConfigName": ["observeGridLegacy"]
|
321
563
|
}; }
|
322
564
|
static get style() { return snkSimpleCrudCss; }
|
323
565
|
}, [6, "snk-simple-crud", {
|
324
566
|
"dataState": [16],
|
325
567
|
"dataUnit": [16],
|
326
568
|
"mode": [2],
|
327
|
-
"gridConfig": [
|
328
|
-
"formConfig": [
|
569
|
+
"gridConfig": [1040],
|
570
|
+
"formConfig": [1040],
|
329
571
|
"multipleSelection": [4, "multiple-selection"],
|
330
572
|
"useCancelConfirm": [4, "use-cancel-confirm"],
|
573
|
+
"resourceID": [1, "resource-i-d"],
|
331
574
|
"taskbarManager": [16],
|
332
575
|
"messagesBuilder": [1040],
|
333
576
|
"useEnterLikeTab": [4, "use-enter-like-tab"],
|
334
577
|
"actionsList": [16],
|
335
578
|
"configName": [1025, "config-name"],
|
579
|
+
"showConfiguratorButtons": [4, "show-configurator-buttons"],
|
580
|
+
"gridLegacyConfigName": [1, "grid-legacy-config-name"],
|
581
|
+
"formLegacyConfigName": [1, "form-legacy-config-name"],
|
582
|
+
"ignoreReadOnlyFormFields": [4, "ignore-read-only-form-fields"],
|
583
|
+
"_showPopUpGridConfig": [32],
|
584
|
+
"_showFormConfig": [32],
|
336
585
|
"_currentViewMode": [32],
|
337
586
|
"_config": [32],
|
338
587
|
"_fieldToGetFocus": [32],
|
588
|
+
"_customContainerId": [32],
|
339
589
|
"_formFields": [32],
|
340
590
|
"goToView": [64],
|
341
591
|
"setMetadata": [64],
|
342
592
|
"setRecords": [64],
|
343
|
-
"getRecords": [64]
|
593
|
+
"getRecords": [64],
|
594
|
+
"openConfigurator": [64],
|
595
|
+
"closeConfigurator": [64],
|
596
|
+
"updateConfig": [64]
|
344
597
|
}, [[0, "actionClick", "actionClickListener"]]]);
|
345
598
|
function defineCustomElement() {
|
346
599
|
if (typeof customElements === "undefined") {
|
347
600
|
return;
|
348
601
|
}
|
349
|
-
const components = ["snk-simple-crud", "snk-actions-button", "snk-data-exporter", "snk-data-unit", "snk-exporter-email-sender", "snk-taskbar", "taskbar-actions-button"];
|
602
|
+
const components = ["snk-simple-crud", "snk-actions-button", "snk-config-options", "snk-configurator", "snk-data-exporter", "snk-data-unit", "snk-exporter-email-sender", "snk-field-config", "snk-form-config", "snk-grid-config", "snk-select-box", "snk-tab-config", "snk-taskbar", "taskbar-actions-button"];
|
350
603
|
components.forEach(tagName => { switch (tagName) {
|
351
604
|
case "snk-simple-crud":
|
352
605
|
if (!customElements.get(tagName)) {
|
@@ -355,20 +608,55 @@ function defineCustomElement() {
|
|
355
608
|
break;
|
356
609
|
case "snk-actions-button":
|
357
610
|
if (!customElements.get(tagName)) {
|
358
|
-
defineCustomElement$
|
611
|
+
defineCustomElement$d();
|
612
|
+
}
|
613
|
+
break;
|
614
|
+
case "snk-config-options":
|
615
|
+
if (!customElements.get(tagName)) {
|
616
|
+
defineCustomElement$c();
|
617
|
+
}
|
618
|
+
break;
|
619
|
+
case "snk-configurator":
|
620
|
+
if (!customElements.get(tagName)) {
|
621
|
+
defineCustomElement$b();
|
359
622
|
}
|
360
623
|
break;
|
361
624
|
case "snk-data-exporter":
|
362
625
|
if (!customElements.get(tagName)) {
|
363
|
-
defineCustomElement$
|
626
|
+
defineCustomElement$a();
|
364
627
|
}
|
365
628
|
break;
|
366
629
|
case "snk-data-unit":
|
367
630
|
if (!customElements.get(tagName)) {
|
368
|
-
defineCustomElement$
|
631
|
+
defineCustomElement$9();
|
369
632
|
}
|
370
633
|
break;
|
371
634
|
case "snk-exporter-email-sender":
|
635
|
+
if (!customElements.get(tagName)) {
|
636
|
+
defineCustomElement$8();
|
637
|
+
}
|
638
|
+
break;
|
639
|
+
case "snk-field-config":
|
640
|
+
if (!customElements.get(tagName)) {
|
641
|
+
defineCustomElement$7();
|
642
|
+
}
|
643
|
+
break;
|
644
|
+
case "snk-form-config":
|
645
|
+
if (!customElements.get(tagName)) {
|
646
|
+
defineCustomElement$6();
|
647
|
+
}
|
648
|
+
break;
|
649
|
+
case "snk-grid-config":
|
650
|
+
if (!customElements.get(tagName)) {
|
651
|
+
defineCustomElement$5();
|
652
|
+
}
|
653
|
+
break;
|
654
|
+
case "snk-select-box":
|
655
|
+
if (!customElements.get(tagName)) {
|
656
|
+
defineCustomElement$4();
|
657
|
+
}
|
658
|
+
break;
|
659
|
+
case "snk-tab-config":
|
372
660
|
if (!customElements.get(tagName)) {
|
373
661
|
defineCustomElement$3();
|
374
662
|
}
|