@sankhyalabs/sankhyablocks 8.15.0-dev.6 → 8.15.0-dev.60
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-8009ecb2.js → ConfigStorage-7df9d3bb.js} +102 -30
- package/dist/cjs/IExporterProvider-1ed8e92a.js +187 -0
- package/dist/cjs/{ISave-d68ce3cd.js → ISave-e91b70a7.js} +1 -0
- package/dist/cjs/RecordIDUtils-3735135c.js +43 -0
- package/dist/cjs/{SnkFormConfigManager-7d850fbc.js → SnkFormConfigManager-4259edbe.js} +21 -13
- package/dist/cjs/{SnkMessageBuilder-7293d0ad.js → SnkMessageBuilder-66aa2557.js} +19 -1
- package/dist/cjs/{auth-fetcher-c8467c07.js → auth-fetcher-e6112be7.js} +1 -1
- package/dist/cjs/{DataFetcher-ba94ed5b.js → form-config-fetcher-3c4daeb5.js} +258 -4
- package/dist/cjs/index-f9e81701.js +2 -10
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/{dataunit-fetcher-bd4c52da.js → pesquisa-fetcher-cb768be1.js} +520 -86
- 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} +529 -13
- package/dist/cjs/snk-application.cjs.entry.js +62 -28
- package/dist/cjs/snk-attach.cjs.entry.js +422 -62
- package/dist/cjs/snk-crud.cjs.entry.js +17 -12
- package/dist/cjs/snk-data-exporter.cjs.entry.js +204 -82
- package/dist/cjs/{snk-data-unit-1bc69073.js → snk-data-unit-abd2113f.js} +3 -38
- package/dist/cjs/snk-data-unit.cjs.entry.js +3 -2
- package/dist/cjs/snk-detail-view.cjs.entry.js +10 -12
- package/dist/cjs/snk-entity-list.cjs.entry.js +5 -3
- package/dist/cjs/snk-filter-bar.cjs.entry.js +65 -10
- package/dist/cjs/snk-filter-detail.cjs.entry.js +4 -1
- package/dist/cjs/snk-filter-item.cjs.entry.js +13 -6
- package/dist/cjs/snk-filter-modal-item.cjs.entry.js +2 -3
- package/dist/cjs/snk-filter-modal.cjs.entry.js +2 -1
- package/dist/cjs/snk-filter-multi-select.cjs.entry.js +2 -1
- package/dist/cjs/snk-form-config.cjs.entry.js +46 -27
- package/dist/cjs/snk-form.cjs.entry.js +10 -4
- package/dist/cjs/snk-grid.cjs.entry.js +95 -116
- package/dist/cjs/{snk-guides-viewer-cb176c4d.js → snk-guides-viewer-bec9c1a5.js} +15 -11
- package/dist/cjs/snk-guides-viewer.cjs.entry.js +8 -10
- package/dist/cjs/snk-personalized-filter-editor.cjs.entry.js +3 -1
- package/dist/cjs/snk-personalized-filter.cjs.entry.js +2 -3
- package/dist/cjs/snk-pesquisa.cjs.entry.js +1 -1
- package/dist/cjs/snk-simple-crud.cjs.entry.js +367 -38
- package/dist/cjs/snk-taskbar.cjs.entry.js +124 -15
- package/dist/cjs/{taskbar-elements-01b85b99.js → taskbar-elements-d9392685.js} +11 -11
- package/dist/collection/collection-manifest.json +7 -7
- package/dist/collection/components/snk-application/__mocks__/snk-application.js +7 -0
- package/dist/collection/components/snk-application/snk-application.js +85 -2
- package/dist/collection/components/snk-attach/snk-attach.js +212 -39
- package/dist/collection/components/snk-attach/structure/{crud-config-builder.js → builder/anexo-sistema-crud-config.builder.js} +1 -1
- package/dist/collection/components/snk-attach/structure/builder/attach-crud-config.builder.js +62 -0
- package/dist/collection/components/snk-attach/structure/{taskbar-builder.js → builder/taskbar-builder.js} +1 -1
- package/dist/collection/components/snk-attach/structure/fetcher/facade/fetcher.facade.js +1 -0
- package/dist/collection/components/snk-attach/structure/{data-unit-builder.js → fetcher/factory/anexo-sistema-data-unit.factory.js} +14 -11
- package/dist/collection/components/snk-attach/structure/fetcher/factory/attach-fetcher-data-unit.factory.js +118 -0
- package/dist/collection/components/snk-attach/structure/index.js +6 -3
- 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/exporter-strategy/ClientSideExporterStrategy.js +90 -0
- package/dist/collection/components/snk-data-exporter/exporter-strategy/ServerSideExporterStrategy.js +68 -0
- package/dist/collection/components/snk-data-exporter/interfaces/IExporterProvider.js +48 -1
- package/dist/collection/components/snk-data-exporter/interfaces/IExporterStrategy.js +1 -0
- package/dist/collection/components/snk-data-exporter/providers/ClientSideExporterProvider.js +53 -0
- package/dist/collection/components/snk-data-exporter/providers/ServerSideExporterProvider.js +55 -0
- package/dist/collection/components/snk-data-exporter/snk-data-exporter.js +42 -48
- package/dist/collection/components/snk-data-exporter/test/resources/ClientSideExporterStrategyResources.js +88 -0
- package/dist/collection/components/snk-data-exporter/utils/RecordIDUtils.js +38 -0
- package/dist/collection/components/snk-data-unit/snk-data-unit.js +3 -42
- package/dist/collection/components/snk-entity-list/snk-entity-list.js +5 -3
- package/dist/collection/components/snk-filter-bar/filter-item/editors/snk-filter-multi-select.js +2 -1
- 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 +31 -6
- package/dist/collection/components/snk-filter-bar/filter-modal/snk-filter-modal.js +19 -1
- package/dist/collection/components/snk-filter-bar/snk-filter-bar.css +24 -1
- package/dist/collection/components/snk-filter-bar/snk-filter-bar.js +159 -5
- package/dist/collection/components/snk-filter-bar/utils/SnkFilterModalFactory.js +3 -1
- 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 +102 -109
- 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-pesquisa/snk-pesquisa.css +2 -4
- 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 +548 -20
- package/dist/collection/components/snk-taskbar/elements/taskbar-actions-button/taskbar-actions-button.js +4 -2
- package/dist/collection/components/snk-taskbar/elements/taskbar-elements.js +11 -11
- package/dist/collection/components/snk-taskbar/snk-taskbar.css +17 -0
- package/dist/collection/components/snk-taskbar/snk-taskbar.js +167 -14
- package/dist/collection/lib/configs/ConfigStorage.js +86 -16
- 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 +7 -4
- package/dist/collection/lib/http/data-fetcher/fetchers/{attach-fetcher.js → AttachFetcher/anexo-sistema-fetcher.js} +16 -15
- package/dist/collection/lib/http/data-fetcher/fetchers/AttachFetcher/attach-fetcher.js +90 -0
- package/dist/collection/lib/http/data-fetcher/fetchers/AttachFetcher/facade/attach-fetcher.facade.js +1 -0
- package/dist/collection/lib/http/data-fetcher/fetchers/AttachFetcher/index.js +2 -0
- package/dist/collection/lib/http/data-fetcher/fetchers/AttachFetcher/interfaces/IDelete.js +1 -0
- package/dist/collection/lib/http/data-fetcher/fetchers/AttachFetcher/interfaces/IDownloadKey.js +1 -0
- package/dist/collection/lib/http/data-fetcher/fetchers/{fecthAttach → AttachFetcher}/interfaces/ISave.js +1 -0
- package/dist/collection/lib/http/data-fetcher/fetchers/data-unit/DataUnitDataLoader.js +3 -0
- package/dist/collection/lib/http/data-fetcher/fetchers/data-unit/cache/ArrayRepository.js +4 -0
- package/dist/collection/lib/http/data-fetcher/fetchers/data-unit/cache/PreloadManager.js +11 -13
- package/dist/collection/lib/http/data-fetcher/fetchers/data-unit/dataunit-fetcher.js +32 -3
- package/dist/collection/lib/http/data-fetcher/fetchers/data-unit/loadstrategy/DatasetStrategy.js +36 -23
- package/dist/collection/lib/http/data-fetcher/fetchers/form-config-fetcher.js +12 -0
- package/dist/collection/lib/http/data-fetcher/fetchers/parameters-fecher.js +21 -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 +12 -13
- package/dist/collection/lib/index.js +1 -1
- package/dist/collection/lib/message/resources/snk-attach.msg.js +13 -0
- 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 +93 -21
- package/dist/components/IExporterProvider.js +256 -0
- package/dist/components/ISave.js +42 -0
- package/dist/components/SnkFormConfigManager.js +19 -11
- package/dist/components/SnkMessageBuilder.js +19 -1
- package/dist/components/dataunit-fetcher.js +138 -91
- package/dist/components/form-config-fetcher.js +7035 -3
- package/dist/components/index.d.ts +6 -6
- package/dist/components/index2.js +198 -33
- package/dist/components/snk-actions-button2.js +3 -11
- package/dist/components/snk-application2.js +42 -3
- package/dist/components/snk-attach2.js +478 -70
- package/dist/components/snk-crud.js +18 -7
- package/dist/components/snk-data-exporter2.js +199 -82
- package/dist/components/snk-data-unit2.js +41 -39
- package/dist/components/snk-detail-view2.js +44 -12
- package/dist/components/snk-entity-list.js +5 -3
- package/dist/components/snk-expression-item2.js +1 -1
- package/dist/components/snk-filter-bar2.js +69 -8
- package/dist/components/snk-filter-detail2.js +5 -1
- package/dist/components/snk-filter-item2.js +14 -6
- package/dist/components/snk-filter-modal.js +4 -2
- package/dist/components/snk-filter-multi-select.js +2 -1
- package/dist/components/snk-form-config2.js +47 -27
- package/dist/components/snk-form.js +8 -0
- package/dist/components/snk-grid-config2.js +128 -102
- package/dist/components/snk-grid2.js +96 -112
- package/dist/components/snk-personalized-filter-editor.js +3 -1
- package/dist/components/snk-personalized-filter2.js +1 -1
- package/dist/components/snk-pesquisa2.js +1 -1
- package/dist/components/snk-simple-crud2.js +421 -34
- package/dist/components/snk-taskbar2.js +144 -29
- package/dist/components/taskbar-actions-button2.js +4 -2
- package/dist/esm/{ConfigStorage-1244b8b0.js → ConfigStorage-928c3bf4.js} +93 -21
- package/dist/esm/IExporterProvider-ceabfb7e.js +179 -0
- package/dist/esm/{ISave-4412b20c.js → ISave-d8c8bc59.js} +1 -0
- package/dist/esm/RecordIDUtils-87d02110.js +41 -0
- package/dist/esm/{SnkFormConfigManager-9be0e7d4.js → SnkFormConfigManager-a87ade7a.js} +21 -13
- package/dist/esm/{SnkMessageBuilder-ca843d1b.js → SnkMessageBuilder-0a4becdd.js} +19 -1
- package/dist/esm/{auth-fetcher-c05dc474.js → auth-fetcher-e1cb288f.js} +1 -1
- package/dist/esm/{DataFetcher-aa159c5a.js → form-config-fetcher-e3094014.js} +257 -5
- package/dist/esm/index-a7d3d3f1.js +2 -10
- package/dist/esm/loader.js +1 -1
- package/dist/esm/{dataunit-fetcher-65714f21.js → pesquisa-fetcher-72125b13.js} +494 -69
- package/dist/esm/sankhyablocks.js +1 -1
- package/dist/esm/{snk-actions-button_2.entry.js → snk-actions-button_4.entry.js} +523 -9
- package/dist/esm/snk-application.entry.js +43 -9
- package/dist/esm/snk-attach.entry.js +422 -62
- package/dist/esm/snk-crud.entry.js +17 -12
- package/dist/esm/snk-data-exporter.entry.js +204 -82
- package/dist/esm/{snk-data-unit-6208ebf0.js → snk-data-unit-29eba11a.js} +4 -39
- package/dist/esm/snk-data-unit.entry.js +3 -2
- package/dist/esm/snk-detail-view.entry.js +10 -12
- package/dist/esm/snk-entity-list.entry.js +5 -3
- package/dist/esm/snk-filter-bar.entry.js +65 -10
- package/dist/esm/snk-filter-detail.entry.js +4 -1
- package/dist/esm/snk-filter-item.entry.js +13 -6
- package/dist/esm/snk-filter-modal-item.entry.js +2 -3
- package/dist/esm/snk-filter-modal.entry.js +2 -1
- package/dist/esm/snk-filter-multi-select.entry.js +2 -1
- package/dist/esm/snk-form-config.entry.js +47 -28
- package/dist/esm/snk-form.entry.js +10 -4
- package/dist/esm/snk-grid.entry.js +95 -116
- package/dist/esm/{snk-guides-viewer-eeb8f354.js → snk-guides-viewer-303aafb4.js} +15 -11
- package/dist/esm/snk-guides-viewer.entry.js +8 -10
- package/dist/esm/snk-personalized-filter-editor.entry.js +3 -1
- package/dist/esm/snk-personalized-filter.entry.js +2 -3
- package/dist/esm/snk-pesquisa.entry.js +1 -1
- package/dist/esm/snk-simple-crud.entry.js +359 -30
- package/dist/esm/snk-taskbar.entry.js +125 -16
- package/dist/esm/{taskbar-elements-d4d0b424.js → taskbar-elements-ad766858.js} +11 -11
- package/dist/sankhyablocks/p-029bfc09.js +1 -0
- package/dist/sankhyablocks/p-07825198.js +1 -0
- package/dist/sankhyablocks/p-0e8702f0.js +1 -0
- package/dist/sankhyablocks/p-13ea113d.entry.js +1 -0
- package/dist/sankhyablocks/p-1fa244c0.entry.js +1 -0
- package/dist/sankhyablocks/{p-9e7d65a4.js → p-21749402.js} +1 -1
- package/dist/sankhyablocks/p-2d972c2e.entry.js +1 -0
- package/dist/sankhyablocks/p-314e2d1a.entry.js +1 -0
- package/dist/sankhyablocks/p-32556aa6.js +1 -0
- package/dist/sankhyablocks/p-33718dfc.entry.js +1 -0
- package/dist/sankhyablocks/p-3494a28e.entry.js +1 -0
- package/dist/sankhyablocks/p-35bd4df7.entry.js +1 -0
- package/dist/sankhyablocks/p-536eeb16.js +26 -0
- package/dist/sankhyablocks/p-54a5d52a.entry.js +1 -0
- package/dist/sankhyablocks/p-563701f3.js +1 -0
- package/dist/sankhyablocks/p-61984566.entry.js +1 -0
- package/dist/sankhyablocks/p-61dd89eb.js +1 -0
- package/dist/sankhyablocks/p-64977b22.entry.js +1 -0
- package/dist/sankhyablocks/p-65b6dba3.entry.js +1 -0
- package/dist/sankhyablocks/p-6bc64fb0.entry.js +1 -0
- package/dist/sankhyablocks/p-70a4af56.entry.js +1 -0
- package/dist/sankhyablocks/p-9863d682.js +1 -0
- package/dist/sankhyablocks/p-aedf37fb.js +65 -0
- package/dist/sankhyablocks/p-b11aa1e0.entry.js +1 -0
- package/dist/sankhyablocks/p-b233f5aa.entry.js +1 -0
- package/dist/sankhyablocks/p-b86ea293.entry.js +1 -0
- package/dist/sankhyablocks/p-bf2acf72.entry.js +1 -0
- package/dist/sankhyablocks/p-c73482cf.js +1 -0
- package/dist/sankhyablocks/p-cb3c7b4a.entry.js +11 -0
- package/dist/sankhyablocks/p-cfb98f51.entry.js +1 -0
- package/dist/sankhyablocks/{p-247a8b36.entry.js → p-d1791da2.entry.js} +1 -1
- package/dist/sankhyablocks/p-d911a023.entry.js +1 -0
- package/dist/sankhyablocks/p-e27496ed.js +56 -0
- package/dist/sankhyablocks/p-e8763234.entry.js +1 -0
- package/dist/sankhyablocks/p-fa84e72f.entry.js +1 -0
- package/dist/sankhyablocks/sankhyablocks.esm.js +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 +15 -0
- package/dist/types/components/snk-attach/{structure/crud-config-builder.d.ts → interfaces/ICrudConfig.d.ts} +1 -2
- package/dist/types/components/snk-attach/interfaces/TFetcherType.d.ts +1 -0
- package/dist/types/components/snk-attach/snk-attach.d.ts +29 -6
- package/dist/types/components/snk-attach/structure/builder/anexo-sistema-crud-config.builder.d.ts +2 -0
- package/dist/types/components/snk-attach/structure/builder/attach-crud-config.builder.d.ts +40 -0
- package/dist/types/components/snk-attach/structure/{taskbar-builder.d.ts → builder/taskbar-builder.d.ts} +1 -1
- package/dist/types/components/snk-attach/structure/fetcher/facade/fetcher.facade.d.ts +11 -0
- package/dist/types/components/snk-attach/structure/fetcher/factory/anexo-sistema-data-unit.factory.d.ts +17 -0
- package/dist/types/components/snk-attach/structure/fetcher/factory/attach-fetcher-data-unit.factory.d.ts +16 -0
- package/dist/types/components/snk-attach/structure/index.d.ts +6 -3
- 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-data-exporter/exporter-strategy/ClientSideExporterStrategy.d.ts +13 -0
- package/dist/types/components/snk-data-exporter/exporter-strategy/ServerSideExporterStrategy.d.ts +11 -0
- package/dist/types/components/snk-data-exporter/interfaces/IExporterProvider.d.ts +21 -4
- package/dist/types/components/snk-data-exporter/interfaces/IExporterStrategy.d.ts +5 -0
- package/dist/types/components/snk-data-exporter/providers/ClientSideExporterProvider.d.ts +17 -0
- package/dist/types/components/snk-data-exporter/providers/ServerSideExporterProvider.d.ts +17 -0
- package/dist/types/components/snk-data-exporter/snk-data-exporter.d.ts +3 -1
- package/dist/types/components/snk-data-exporter/test/resources/ClientSideExporterStrategyResources.d.ts +77 -0
- package/dist/types/components/snk-data-exporter/utils/RecordIDUtils.d.ts +3 -0
- 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 +7 -3
- package/dist/types/components/snk-filter-bar/filter-modal/snk-filter-modal.d.ts +5 -0
- package/dist/types/components/snk-filter-bar/snk-filter-bar.d.ts +27 -1
- package/dist/types/components/snk-filter-bar/utils/SnkFilterModalFactory.d.ts +3 -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 -4
- 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 +98 -4
- package/dist/types/components/snk-taskbar/elements/taskbar-elements.d.ts +1 -1
- package/dist/types/components/snk-taskbar/snk-taskbar.d.ts +34 -1
- package/dist/types/components.d.ts +314 -12
- package/dist/types/lib/configs/ConfigStorage.d.ts +25 -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/DataFetcher.d.ts +1 -1
- package/dist/types/lib/http/data-fetcher/fetchers/{attach-fetcher.d.ts → AttachFetcher/anexo-sistema-fetcher.d.ts} +3 -2
- package/dist/types/lib/http/data-fetcher/fetchers/AttachFetcher/attach-fetcher.d.ts +11 -0
- package/dist/types/lib/http/data-fetcher/fetchers/AttachFetcher/facade/attach-fetcher.facade.d.ts +8 -0
- package/dist/types/lib/http/data-fetcher/fetchers/AttachFetcher/index.d.ts +3 -0
- package/dist/types/lib/http/data-fetcher/fetchers/{fecthAttach → AttachFetcher}/interfaces/ISave.d.ts +2 -1
- package/dist/types/lib/http/data-fetcher/fetchers/data-unit/DataUnitDataLoader.d.ts +2 -1
- package/dist/types/lib/http/data-fetcher/fetchers/data-unit/cache/ArrayRepository.d.ts +1 -0
- package/dist/types/lib/http/data-fetcher/fetchers/data-unit/cache/PreloadManager.d.ts +1 -0
- package/dist/types/lib/http/data-fetcher/fetchers/data-unit/dataunit-fetcher.d.ts +2 -0
- package/dist/types/lib/http/data-fetcher/fetchers/data-unit/loadstrategy/DatasetStrategy.d.ts +1 -0
- package/dist/types/lib/http/data-fetcher/fetchers/fetchDataExporter/interfaces/IExporterColumnMetadata.d.ts +1 -0
- package/dist/types/lib/http/data-fetcher/fetchers/form-config-fetcher.d.ts +2 -0
- package/dist/types/lib/http/data-fetcher/fetchers/parameters-fecher.d.ts +1 -0
- package/dist/types/lib/http/data-fetcher/fetchers/personalized-filter-fetcher.d.ts +2 -1
- package/dist/types/lib/index.d.ts +1 -1
- package/dist/types/lib/utils/CrudUtils.d.ts +3 -0
- package/package.json +15 -6
- package/dist/cjs/PreloadManager-84466da6.js +0 -224
- package/dist/cjs/SnkMultiSelectionListDataSource-ba5838c2.js +0 -49
- package/dist/cjs/form-config-fetcher-df043d3d.js +0 -244
- package/dist/cjs/pesquisa-fetcher-ef050a47.js +0 -167
- package/dist/cjs/snk-grid-config.cjs.entry.js +0 -483
- package/dist/cjs/snk-select-box.cjs.entry.js +0 -25
- package/dist/collection/lib/http/data-fetcher/fetchers/fetchDataExporter/index.js +0 -34
- package/dist/components/DataFetcher.js +0 -7021
- package/dist/components/field-search.js +0 -121
- package/dist/components/index3.js +0 -199
- package/dist/esm/PreloadManager-c1c2f2b4.js +0 -222
- package/dist/esm/SnkMultiSelectionListDataSource-44494b0e.js +0 -43
- package/dist/esm/form-config-fetcher-36219cd3.js +0 -241
- package/dist/esm/pesquisa-fetcher-dd3ca0a5.js +0 -165
- package/dist/esm/snk-grid-config.entry.js +0 -479
- package/dist/esm/snk-select-box.entry.js +0 -21
- package/dist/sankhyablocks/p-0874adb5.entry.js +0 -1
- package/dist/sankhyablocks/p-094c30cb.js +0 -1
- package/dist/sankhyablocks/p-0d7863ed.js +0 -26
- package/dist/sankhyablocks/p-0dca29cb.entry.js +0 -1
- package/dist/sankhyablocks/p-11081798.entry.js +0 -1
- package/dist/sankhyablocks/p-20726710.entry.js +0 -1
- package/dist/sankhyablocks/p-29804fc5.js +0 -60
- package/dist/sankhyablocks/p-32f0935f.js +0 -1
- package/dist/sankhyablocks/p-3520c088.entry.js +0 -1
- package/dist/sankhyablocks/p-374d03f6.js +0 -1
- package/dist/sankhyablocks/p-4775a293.entry.js +0 -1
- package/dist/sankhyablocks/p-585294ee.js +0 -56
- package/dist/sankhyablocks/p-6977a26c.entry.js +0 -1
- package/dist/sankhyablocks/p-69efa80d.entry.js +0 -1
- package/dist/sankhyablocks/p-6d20d38c.entry.js +0 -1
- package/dist/sankhyablocks/p-776ee8e3.js +0 -1
- package/dist/sankhyablocks/p-7d51d949.entry.js +0 -11
- package/dist/sankhyablocks/p-809f367d.entry.js +0 -1
- package/dist/sankhyablocks/p-95a3778f.entry.js +0 -1
- package/dist/sankhyablocks/p-9695f78b.js +0 -1
- package/dist/sankhyablocks/p-98674137.entry.js +0 -1
- package/dist/sankhyablocks/p-a9e5b094.entry.js +0 -1
- package/dist/sankhyablocks/p-b146a9f0.entry.js +0 -1
- package/dist/sankhyablocks/p-bedb8ad6.entry.js +0 -1
- package/dist/sankhyablocks/p-c22c1d8e.js +0 -1
- package/dist/sankhyablocks/p-c758265f.entry.js +0 -1
- package/dist/sankhyablocks/p-ca4d337a.entry.js +0 -1
- package/dist/sankhyablocks/p-cb7419e0.entry.js +0 -1
- package/dist/sankhyablocks/p-d1f5bc50.js +0 -1
- package/dist/sankhyablocks/p-d4f9ee17.entry.js +0 -1
- package/dist/sankhyablocks/p-d6317851.entry.js +0 -1
- package/dist/sankhyablocks/p-d9bb09b3.js +0 -6
- package/dist/sankhyablocks/p-e6380c60.js +0 -1
- package/dist/sankhyablocks/p-f2056f66.entry.js +0 -1
- package/dist/sankhyablocks/p-f514913b.entry.js +0 -1
- package/dist/sankhyablocks/p-fd8814b9.entry.js +0 -1
- package/dist/sankhyablocks/p-ff6064e7.js +0 -1
- package/dist/types/components/snk-attach/structure/data-unit-builder.d.ts +0 -15
- package/dist/types/lib/http/data-fetcher/fetchers/fetchDataExporter/index.d.ts +0 -3
- /package/dist/collection/{lib/http/data-fetcher/fetchers/fecthAttach/interfaces/IDelete.js → components/snk-attach/interfaces/ICrudConfig.js} +0 -0
- /package/dist/collection/{lib/http/data-fetcher/fetchers/fecthAttach/interfaces/IDownloadKey.js → components/snk-attach/interfaces/TFetcherType.js} +0 -0
- /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/collection/lib/http/data-fetcher/fetchers/{fecthAttach → AttachFetcher}/interfaces/index.js +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
- /package/dist/types/lib/http/data-fetcher/fetchers/{fecthAttach → AttachFetcher}/interfaces/IDelete.d.ts +0 -0
- /package/dist/types/lib/http/data-fetcher/fetchers/{fecthAttach → AttachFetcher}/interfaces/IDownloadKey.d.ts +0 -0
- /package/dist/types/lib/http/data-fetcher/fetchers/{fecthAttach → AttachFetcher}/interfaces/index.d.ts +0 -0
@@ -17,16 +17,18 @@ import { IDataFetcherRecaller } from "./lib/http/data-fetcher/recaller/IDataFetc
|
|
17
17
|
import { DialogType, MessageOptions } from "@sankhyalabs/ezui/dist/collection/utils";
|
18
18
|
import { IOption, ISearchArgument } from "@sankhyalabs/ezui/dist/types/components/ez-search/ez-search";
|
19
19
|
import { IRemoveSearchListener, ISearchListener, SearchCriteria } from "./lib/http/data-fetcher/fetchers/pesquisa-fetcher";
|
20
|
+
import { TFetcherType } from "./components/snk-attach/interfaces/TFetcherType";
|
21
|
+
import { AttachFetcherFacadeInterface, PresentationMode } from "./lib";
|
22
|
+
import { FetcherFacade } from "./components/snk-attach/structure";
|
20
23
|
import { IFieldConfig, IFormCardConfig, IFormConfig, IRecordValidator, ISummaryField } from "@sankhyalabs/ezui/dist/types/utils/form/interfaces";
|
21
24
|
import { SIMPLE_CRUD_MODE, VIEW_MODE } from "./lib/utils/constants";
|
22
25
|
import { ISelectionToastConfig } from "@sankhyalabs/ezui/dist/types/components/ez-grid/interfaces";
|
23
26
|
import { Action, TaskbarManager } from "./components/snk-taskbar/snk-taskbar";
|
24
27
|
import { EzGridColumn, IGridConfig, IStatusResolver, StatusResolverFunction } from "@sankhyalabs/ezui/dist/types/components/ez-grid/controller/EzGridController";
|
25
|
-
import { PresentationMode } from "./lib";
|
26
28
|
import { IExporterProvider } from "./components/snk-data-exporter/interfaces/IExporterProvider";
|
27
29
|
import { DataState } from "./components/snk-data-unit/snk-data-unit";
|
28
30
|
import { IRecordID } from "./components/snk-data-exporter/interfaces/IRecordID";
|
29
|
-
import { SnkFormConfigManager } from "./components/snk-form/SnkFormConfigManager";
|
31
|
+
import { SnkFormConfigManager } from "./components/snk-form-config/SnkFormConfigManager";
|
30
32
|
import { IGuideItem } from "@sankhyalabs/ezui/dist/types/components/ez-guide-navigator/interfaces";
|
31
33
|
import { DataState as DataState1 } from "./components/snk-data-unit/snk-data-unit";
|
32
34
|
import { GuideBuilder } from "./components/snk-crud/subcomponents/GuideBuilder";
|
@@ -38,6 +40,7 @@ import { IExportConfig } from "./components/snk-data-exporter/data/export-config
|
|
38
40
|
import { IExpressionGroup, IExpressionItem } from "./components/snk-personalized-filter/interfaces/IExpressionItem";
|
39
41
|
import { IPersonalizedFilter } from "./components/snk-personalized-filter/interfaces/IPersonalizedFilter";
|
40
42
|
import { SnkApplication } from "./components/snk-application/snk-application";
|
43
|
+
import { SnkFilterModalFactoryParams } from "./components/snk-filter-bar/utils/SnkFilterModalFactory";
|
41
44
|
import { EPresentationMode } from "./components/snk-filter-bar/filter-item/editors/enum/presentationMode";
|
42
45
|
import { FilterFieldsDataSource, IFilterField, IFilterLink } from "./components/snk-filter-field-search/interfaces";
|
43
46
|
import { IEzPopoverAnchorOptions } from "@sankhyalabs/ezui/dist/types/components/ez-popover/ez-popover";
|
@@ -51,7 +54,7 @@ import { PresentationMode as PresentationMode1 } from "./lib/@types";
|
|
51
54
|
import { PrintSelectorResponse } from "./components/snk-print-selector/snk-print-selector";
|
52
55
|
import { PendingPrintJobData } from "./lib/utils/PrintUtils";
|
53
56
|
import { IBreadcrumbItem } from "@sankhyalabs/ezui/dist/types/components/ez-breadcrumb/ez-breadcrumb";
|
54
|
-
import { ITab } from "./components/snk-form/subcomponents/snk-tab-config/snk-tab-config";
|
57
|
+
import { ITab } from "./components/snk-form-config/subcomponents/snk-tab-config/snk-tab-config";
|
55
58
|
import { Action as Action1, CustomButton } from "./components/snk-taskbar/snk-taskbar";
|
56
59
|
export namespace Components {
|
57
60
|
interface SnkActionsButton {
|
@@ -134,6 +137,10 @@ export namespace Components {
|
|
134
137
|
* Com base em um campo realiza um "select distinct" respeitando os filtros atuais do dataUnit e um critério de filtro para a própria coluna.
|
135
138
|
*/
|
136
139
|
"executeSelectDistinct": (dataUnit: DataUnit, fieldName: string, argument: string) => Promise<Array<any>>;
|
140
|
+
/**
|
141
|
+
* Chave da configuração legado do formulário.
|
142
|
+
*/
|
143
|
+
"formLegacyConfigName": string;
|
137
144
|
/**
|
138
145
|
* Obtém todos os acessos do usuário logado.
|
139
146
|
*/
|
@@ -196,6 +203,10 @@ export namespace Components {
|
|
196
203
|
* Obtém o UserId da tela em questão.
|
197
204
|
*/
|
198
205
|
"getUserID": () => Promise<string>;
|
206
|
+
/**
|
207
|
+
* Chave da configuração legado da grade.
|
208
|
+
*/
|
209
|
+
"gridLegacyConfigName": string;
|
199
210
|
/**
|
200
211
|
* Obtém `true` caso o usuário logado tem permissão pra determinada ação.
|
201
212
|
*/
|
@@ -254,6 +265,12 @@ export namespace Components {
|
|
254
265
|
* Salva a configuração de determinado recurso.
|
255
266
|
*/
|
256
267
|
"saveConfig": (key: string, data: Object) => Promise<any>;
|
268
|
+
/**
|
269
|
+
* Atribui valor para parâmetros de contexto no componente de pesquisa.
|
270
|
+
* @param name - Nome do parâmetro
|
271
|
+
* @param value - String conversível de acordo com o tipo do parâmetro
|
272
|
+
*/
|
273
|
+
"setSearchFilterContext": (name: string, value: string) => Promise<void>;
|
257
274
|
/**
|
258
275
|
* Apresenta uma lista de alertas, geralmente é utilizado para apresentar resultados de processamentos em lote.
|
259
276
|
*/
|
@@ -295,10 +312,26 @@ export namespace Components {
|
|
295
312
|
"whenApplicationReady": () => Promise<SnkApplication>;
|
296
313
|
}
|
297
314
|
interface SnkAttach {
|
315
|
+
/**
|
316
|
+
* DataUnit responsável por carregar os dados.
|
317
|
+
*/
|
318
|
+
"dataUnit": DataUnit;
|
319
|
+
/**
|
320
|
+
* DataUnitBuilder responsável por implementar dados a serem utilizados no DataUnit.
|
321
|
+
*/
|
322
|
+
"dataUnitBuilder": FetcherFacade;
|
298
323
|
/**
|
299
324
|
* Nome da entidade à ser utilizada para relacionar o anexo ao DataUnit pai.
|
300
325
|
*/
|
301
326
|
"entityName": string;
|
327
|
+
/**
|
328
|
+
* Fetcher responsável por carregar os dados do DataUnit.
|
329
|
+
*/
|
330
|
+
"fetcher": AttachFetcherFacadeInterface;
|
331
|
+
/**
|
332
|
+
* FetcherType define o tipo de fetcher responsável por carregar os dados do DataUnit.
|
333
|
+
*/
|
334
|
+
"fetcherType": TFetcherType;
|
302
335
|
/**
|
303
336
|
* Responsável por flexibilizar e padronizar o uso de mensagens nos blocos de construção.
|
304
337
|
*/
|
@@ -395,6 +428,22 @@ export namespace Components {
|
|
395
428
|
* Usado para salvar as configurações dos blocos de construção.
|
396
429
|
*/
|
397
430
|
"configName": string;
|
431
|
+
/**
|
432
|
+
* Desabilita a apresentação da opção de filtros personalizados na filter bar (chip de filtros) e no modal lateral de filtros (container de filtros personalizados).
|
433
|
+
*/
|
434
|
+
"disablePersonalizedFilter": boolean;
|
435
|
+
/**
|
436
|
+
* Chave da configuração legado da barra de filtros.
|
437
|
+
*/
|
438
|
+
"filterBarLegacyConfigName": string;
|
439
|
+
/**
|
440
|
+
* Título que será apresentado na barra de filtros
|
441
|
+
*/
|
442
|
+
"filterBarTitle": string;
|
443
|
+
/**
|
444
|
+
* Chave da configuração legado do formulário.
|
445
|
+
*/
|
446
|
+
"formLegacyConfigName": string;
|
398
447
|
/**
|
399
448
|
* Retorna o elemento da filter-bar da grade.
|
400
449
|
*/
|
@@ -403,6 +452,10 @@ export namespace Components {
|
|
403
452
|
* Usado para alternar a visão entre GRID e FORM externamente.
|
404
453
|
*/
|
405
454
|
"goToView": (mode: string) => Promise<void>;
|
455
|
+
/**
|
456
|
+
* Chave da configuração legado da grade.
|
457
|
+
*/
|
458
|
+
"gridLegacyConfigName": string;
|
406
459
|
/**
|
407
460
|
* Responsável por flexibilizar e padronizar o uso de mensagens nos blocos de construção.
|
408
461
|
*/
|
@@ -710,6 +763,14 @@ export namespace Components {
|
|
710
763
|
* Recebe o DataUnit do ambiente. Se não for informado, procura pela referência do SnkDataUnit. Necessário para se registrar como provedor de filtros.
|
711
764
|
*/
|
712
765
|
"dataUnit": DataUnit;
|
766
|
+
/**
|
767
|
+
* Desabilita a apresentação da opção de filtros personalizados na filter bar (chip de filtros) e no modal lateral de filtros (container de filtros personalizados).
|
768
|
+
*/
|
769
|
+
"disablePersonalizedFilter": boolean;
|
770
|
+
/**
|
771
|
+
* Chave da configuração legado da barra de filtros.
|
772
|
+
*/
|
773
|
+
"filterBarLegacyConfigName": string;
|
713
774
|
/**
|
714
775
|
* Lista todos os filtros disponíveis ao usuário.
|
715
776
|
*/
|
@@ -722,6 +783,10 @@ export namespace Components {
|
|
722
783
|
* Responsável por flexibilizar e padronizar o uso de mensagens nos blocos de construção.
|
723
784
|
*/
|
724
785
|
"messagesBuilder": SnkMessageBuilder;
|
786
|
+
/**
|
787
|
+
* Modo de apresentação da filterbar.
|
788
|
+
*/
|
789
|
+
"mode": "regular" | "button" | "hidden";
|
725
790
|
/**
|
726
791
|
* Faz o recarregamento da filterbar buscando o state no servidor.
|
727
792
|
*/
|
@@ -736,6 +801,14 @@ export namespace Components {
|
|
736
801
|
* Identificador de recursos como configurações e acesso.
|
737
802
|
*/
|
738
803
|
"resourceID": string;
|
804
|
+
/**
|
805
|
+
* Abre o modal de filtros
|
806
|
+
*/
|
807
|
+
"showFilterModal": () => Promise<void>;
|
808
|
+
/**
|
809
|
+
* Título que será apresentado na barra de filtros
|
810
|
+
*/
|
811
|
+
"title": string;
|
739
812
|
/**
|
740
813
|
* Atualiza um item do filtro.
|
741
814
|
* @param filterItem - Item com as informações atualizadas, caso o item não seja encontrado no array ele mão será modificado
|
@@ -779,6 +852,10 @@ export namespace Components {
|
|
779
852
|
* Exibe o componente snk-filter-detail.
|
780
853
|
*/
|
781
854
|
"show": () => Promise<void>;
|
855
|
+
/**
|
856
|
+
* Controla a visibilidade do botão de fixar elemento
|
857
|
+
*/
|
858
|
+
"showHardFixed": boolean;
|
782
859
|
}
|
783
860
|
interface SnkFilterFieldSearch {
|
784
861
|
/**
|
@@ -815,6 +892,10 @@ export namespace Components {
|
|
815
892
|
* Oculta os detalhes de um item da lista.
|
816
893
|
*/
|
817
894
|
"hideDetail": () => Promise<void>;
|
895
|
+
/**
|
896
|
+
* Usado para controlar a visibilidade dos chips de filtros
|
897
|
+
*/
|
898
|
+
"showChips": boolean;
|
818
899
|
/**
|
819
900
|
* Exibe os detalhes de um item da lista.
|
820
901
|
*/
|
@@ -875,6 +956,10 @@ export namespace Components {
|
|
875
956
|
* Ação executada ao deletar um filtro personalizado
|
876
957
|
*/
|
877
958
|
"deletePersonalizedFilter": (filter: IPersonalizedFilter, configName: string) => void;
|
959
|
+
/**
|
960
|
+
* Desabilita a apresentação da opção de filtros personalizados na filter bar (chip de filtros) e no modal lateral de filtros (container de filtros personalizados).
|
961
|
+
*/
|
962
|
+
"disablePersonalizedFilter": boolean;
|
878
963
|
/**
|
879
964
|
* Ação executada ao editar um filtro personalizado
|
880
965
|
*/
|
@@ -1004,6 +1089,10 @@ export namespace Components {
|
|
1004
1089
|
* Nome usado para guardar/recuperar as configurações do formulário.
|
1005
1090
|
*/
|
1006
1091
|
"configName": string;
|
1092
|
+
/**
|
1093
|
+
* Chave da configuração legado do formulário.
|
1094
|
+
*/
|
1095
|
+
"formLegacyConfigName": string;
|
1007
1096
|
/**
|
1008
1097
|
* Fecha a janela de configurações do formulário.
|
1009
1098
|
*/
|
@@ -1119,6 +1208,18 @@ export namespace Components {
|
|
1119
1208
|
* Nome usado para salvar/recuperar a configuração.
|
1120
1209
|
*/
|
1121
1210
|
"configName": string;
|
1211
|
+
/**
|
1212
|
+
* Desabilita a apresentação da opção de filtros personalizados na filter bar (chip de filtros) e no modal lateral de filtros (container de filtros personalizados).
|
1213
|
+
*/
|
1214
|
+
"disablePersonalizedFilter": boolean;
|
1215
|
+
/**
|
1216
|
+
* Chave da configuração legado da barra de filtros.
|
1217
|
+
*/
|
1218
|
+
"filterBarLegacyConfigName": string;
|
1219
|
+
/**
|
1220
|
+
* Título que será apresentado na barra de filtros
|
1221
|
+
*/
|
1222
|
+
"filterBarTitle": string;
|
1122
1223
|
/**
|
1123
1224
|
* Abre o localizador de colunas
|
1124
1225
|
*/
|
@@ -1131,6 +1232,10 @@ export namespace Components {
|
|
1131
1232
|
* Nome do slot de elementos customizados da Taskbar do cabeçalho da grade.
|
1132
1233
|
*/
|
1133
1234
|
"gridHeaderCustomSlotId": string;
|
1235
|
+
/**
|
1236
|
+
* Chave da configuração legado da grade.
|
1237
|
+
*/
|
1238
|
+
"gridLegacyConfigName": string;
|
1134
1239
|
/**
|
1135
1240
|
* Fecha a janela de configurações da grade.
|
1136
1241
|
*/
|
@@ -1197,10 +1302,6 @@ export namespace Components {
|
|
1197
1302
|
"useEnterLikeTab": boolean;
|
1198
1303
|
}
|
1199
1304
|
interface SnkGridConfig {
|
1200
|
-
/**
|
1201
|
-
* Referência para o SnkApplication
|
1202
|
-
*/
|
1203
|
-
"application": SnkApplication;
|
1204
1305
|
/**
|
1205
1306
|
* Colunas da grade.
|
1206
1307
|
*/
|
@@ -1255,6 +1356,10 @@ export namespace Components {
|
|
1255
1356
|
* Abre o localizador de campos
|
1256
1357
|
*/
|
1257
1358
|
"findField": () => Promise<void>;
|
1359
|
+
/**
|
1360
|
+
* Chave da configuração legado do formulário.
|
1361
|
+
*/
|
1362
|
+
"formLegacyConfigName": string;
|
1258
1363
|
/**
|
1259
1364
|
* Configuração do formulário master.
|
1260
1365
|
*/
|
@@ -1372,15 +1477,43 @@ export namespace Components {
|
|
1372
1477
|
"messagesBuilder": SnkMessageBuilder;
|
1373
1478
|
}
|
1374
1479
|
interface SnkSimpleCrud {
|
1480
|
+
/**
|
1481
|
+
* Ações a serem colocadas no botão "Mais opções" do componente snk-taskbar.
|
1482
|
+
*/
|
1483
|
+
"actionsList": Array<Action>;
|
1484
|
+
/**
|
1485
|
+
* Usado para fechar o configurator do CRUD
|
1486
|
+
*/
|
1487
|
+
"closeConfigurator": () => Promise<void>;
|
1488
|
+
/**
|
1489
|
+
* Usado para salvar as configurações dos blocos de construção.
|
1490
|
+
*/
|
1491
|
+
"configName": string;
|
1375
1492
|
"dataState": DataState1;
|
1376
1493
|
"dataUnit": DataUnit;
|
1494
|
+
/**
|
1495
|
+
* Define o nome da entidade que o componente vai utilizar para fazer as operações de CRUD
|
1496
|
+
*/
|
1497
|
+
"entityName": string;
|
1377
1498
|
"formConfig": IFormConfig;
|
1499
|
+
/**
|
1500
|
+
* Chave da configuração legado do formulário.
|
1501
|
+
*/
|
1502
|
+
"formLegacyConfigName": string;
|
1378
1503
|
"getRecords": () => Promise<Array<Record>>;
|
1379
1504
|
/**
|
1380
1505
|
* Usado para alternar a visão entre GRID e FORM externamente.
|
1381
1506
|
*/
|
1382
1507
|
"goToView": (view: VIEW_MODE) => Promise<void>;
|
1383
1508
|
"gridConfig": IGridConfig;
|
1509
|
+
/**
|
1510
|
+
* Chave da configuração legado da grade.
|
1511
|
+
*/
|
1512
|
+
"gridLegacyConfigName": string;
|
1513
|
+
/**
|
1514
|
+
* Ignora os campos "somente leitura" no modo de inserção.
|
1515
|
+
*/
|
1516
|
+
"ignoreReadOnlyFormFields": boolean;
|
1384
1517
|
/**
|
1385
1518
|
* Responsável por flexibilizar e padronizar o uso de mensagens nos blocos de construção.
|
1386
1519
|
*/
|
@@ -1390,12 +1523,29 @@ export namespace Components {
|
|
1390
1523
|
* Determina se pode haver mais de uma linha selecionada na grade.
|
1391
1524
|
*/
|
1392
1525
|
"multipleSelection": boolean;
|
1526
|
+
/**
|
1527
|
+
* Usado para abrir o configurator do CRUD
|
1528
|
+
*/
|
1529
|
+
"openConfigurator": () => Promise<void>;
|
1530
|
+
/**
|
1531
|
+
* Determina quantas linhas são retornadas por página.
|
1532
|
+
*/
|
1533
|
+
"pageSize": number;
|
1534
|
+
/**
|
1535
|
+
* Identificador de recursos como configurações e acesso.
|
1536
|
+
*/
|
1537
|
+
"resourceID": string;
|
1393
1538
|
"setMetadata": (metadata: UnitMetadata) => Promise<void>;
|
1394
1539
|
"setRecords": (records: Array<Record>) => Promise<void>;
|
1540
|
+
/**
|
1541
|
+
* Usado para exibir os botões de ação do snk-configurator.
|
1542
|
+
*/
|
1543
|
+
"showConfiguratorButtons": boolean;
|
1395
1544
|
/**
|
1396
1545
|
* Gerenciador das barras de tarefas. É possível determinar botões específicos ou mesmo gerenciar o estado dos botões.
|
1397
1546
|
*/
|
1398
1547
|
"taskbarManager": TaskbarManager;
|
1548
|
+
"updateConfig": () => Promise<void>;
|
1399
1549
|
"useCancelConfirm": boolean;
|
1400
1550
|
/**
|
1401
1551
|
* Quando verdadeiro, o ENTER fará a navegação como se fosse a tecla TAB na grade.
|
@@ -1429,6 +1579,10 @@ export namespace Components {
|
|
1429
1579
|
* Lista de ações que devem ser usadas no botão "Mais opções" do componente snk-taskbar.
|
1430
1580
|
*/
|
1431
1581
|
"actionsList": Array<Action>;
|
1582
|
+
/**
|
1583
|
+
* Usado para determinar O alinhamento dos items na taskbar.
|
1584
|
+
*/
|
1585
|
+
"alignRigth": boolean;
|
1432
1586
|
/**
|
1433
1587
|
* Lista separada por virgula, contendo todos os elementos a serem criados.
|
1434
1588
|
*/
|
@@ -1461,6 +1615,10 @@ export namespace Components {
|
|
1461
1615
|
* Responsável por flexibilizar e padronizar o uso de mensagens nos blocos de construção.
|
1462
1616
|
*/
|
1463
1617
|
"messagesBuilder": SnkMessageBuilder;
|
1618
|
+
/**
|
1619
|
+
* Define como será o comportamento da taskbar quando ocorrer overflow
|
1620
|
+
*/
|
1621
|
+
"overflowStrategy": 'hiddenItems' | 'none';
|
1464
1622
|
/**
|
1465
1623
|
* Altera o modo de apresentação dos botões do snk-taskbar.
|
1466
1624
|
*/
|
@@ -2049,6 +2207,14 @@ declare namespace LocalJSX {
|
|
2049
2207
|
* Usado para salvar as configurações dos blocos de construção.
|
2050
2208
|
*/
|
2051
2209
|
"configName"?: string;
|
2210
|
+
/**
|
2211
|
+
* Chave da configuração legado do formulário.
|
2212
|
+
*/
|
2213
|
+
"formLegacyConfigName"?: string;
|
2214
|
+
/**
|
2215
|
+
* Chave da configuração legado da grade.
|
2216
|
+
*/
|
2217
|
+
"gridLegacyConfigName"?: string;
|
2052
2218
|
/**
|
2053
2219
|
* Usado para receber um parâmetro na inicialização da tela, e utilizá-lo conforme necessário caso a tela receba um parâmetro, e, esta propriedade não seja informada é criado um filtro de forma automática através do método defaultLoadByPk
|
2054
2220
|
*/
|
@@ -2064,10 +2230,26 @@ declare namespace LocalJSX {
|
|
2064
2230
|
"onApplicationLoading"?: (event: SnkApplicationCustomEvent<boolean>) => void;
|
2065
2231
|
}
|
2066
2232
|
interface SnkAttach {
|
2233
|
+
/**
|
2234
|
+
* DataUnit responsável por carregar os dados.
|
2235
|
+
*/
|
2236
|
+
"dataUnit"?: DataUnit;
|
2237
|
+
/**
|
2238
|
+
* DataUnitBuilder responsável por implementar dados a serem utilizados no DataUnit.
|
2239
|
+
*/
|
2240
|
+
"dataUnitBuilder"?: FetcherFacade;
|
2067
2241
|
/**
|
2068
2242
|
* Nome da entidade à ser utilizada para relacionar o anexo ao DataUnit pai.
|
2069
2243
|
*/
|
2070
|
-
"entityName"
|
2244
|
+
"entityName"?: string;
|
2245
|
+
/**
|
2246
|
+
* Fetcher responsável por carregar os dados do DataUnit.
|
2247
|
+
*/
|
2248
|
+
"fetcher"?: AttachFetcherFacadeInterface;
|
2249
|
+
/**
|
2250
|
+
* FetcherType define o tipo de fetcher responsável por carregar os dados do DataUnit.
|
2251
|
+
*/
|
2252
|
+
"fetcherType"?: TFetcherType;
|
2071
2253
|
/**
|
2072
2254
|
* Responsável por flexibilizar e padronizar o uso de mensagens nos blocos de construção.
|
2073
2255
|
*/
|
@@ -2172,6 +2354,26 @@ declare namespace LocalJSX {
|
|
2172
2354
|
* Usado para salvar as configurações dos blocos de construção.
|
2173
2355
|
*/
|
2174
2356
|
"configName"?: string;
|
2357
|
+
/**
|
2358
|
+
* Desabilita a apresentação da opção de filtros personalizados na filter bar (chip de filtros) e no modal lateral de filtros (container de filtros personalizados).
|
2359
|
+
*/
|
2360
|
+
"disablePersonalizedFilter"?: boolean;
|
2361
|
+
/**
|
2362
|
+
* Chave da configuração legado da barra de filtros.
|
2363
|
+
*/
|
2364
|
+
"filterBarLegacyConfigName"?: string;
|
2365
|
+
/**
|
2366
|
+
* Título que será apresentado na barra de filtros
|
2367
|
+
*/
|
2368
|
+
"filterBarTitle"?: string;
|
2369
|
+
/**
|
2370
|
+
* Chave da configuração legado do formulário.
|
2371
|
+
*/
|
2372
|
+
"formLegacyConfigName"?: string;
|
2373
|
+
/**
|
2374
|
+
* Chave da configuração legado da grade.
|
2375
|
+
*/
|
2376
|
+
"gridLegacyConfigName"?: string;
|
2175
2377
|
/**
|
2176
2378
|
* Responsável por flexibilizar e padronizar o uso de mensagens nos blocos de construção.
|
2177
2379
|
*/
|
@@ -2524,6 +2726,14 @@ declare namespace LocalJSX {
|
|
2524
2726
|
* Recebe o DataUnit do ambiente. Se não for informado, procura pela referência do SnkDataUnit. Necessário para se registrar como provedor de filtros.
|
2525
2727
|
*/
|
2526
2728
|
"dataUnit"?: DataUnit;
|
2729
|
+
/**
|
2730
|
+
* Desabilita a apresentação da opção de filtros personalizados na filter bar (chip de filtros) e no modal lateral de filtros (container de filtros personalizados).
|
2731
|
+
*/
|
2732
|
+
"disablePersonalizedFilter"?: boolean;
|
2733
|
+
/**
|
2734
|
+
* Chave da configuração legado da barra de filtros.
|
2735
|
+
*/
|
2736
|
+
"filterBarLegacyConfigName"?: string;
|
2527
2737
|
/**
|
2528
2738
|
* Lista todos os filtros disponíveis ao usuário.
|
2529
2739
|
*/
|
@@ -2532,11 +2742,19 @@ declare namespace LocalJSX {
|
|
2532
2742
|
* Responsável por flexibilizar e padronizar o uso de mensagens nos blocos de construção.
|
2533
2743
|
*/
|
2534
2744
|
"messagesBuilder"?: SnkMessageBuilder;
|
2745
|
+
/**
|
2746
|
+
* Modo de apresentação da filterbar.
|
2747
|
+
*/
|
2748
|
+
"mode"?: "regular" | "button" | "hidden";
|
2535
2749
|
"onConfigUpdated"?: (event: SnkFilterBarCustomEvent<SnkFilterItemConfig[]>) => void;
|
2536
2750
|
/**
|
2537
2751
|
* Identificador de recursos como configurações e acesso.
|
2538
2752
|
*/
|
2539
2753
|
"resourceID"?: string;
|
2754
|
+
/**
|
2755
|
+
* Título que será apresentado na barra de filtros
|
2756
|
+
*/
|
2757
|
+
"title"?: string;
|
2540
2758
|
}
|
2541
2759
|
interface SnkFilterBinarySelect {
|
2542
2760
|
/**
|
@@ -2579,6 +2797,10 @@ declare namespace LocalJSX {
|
|
2579
2797
|
* Emitido quando há uma alteração nos filtros.
|
2580
2798
|
*/
|
2581
2799
|
"onFilterChange"?: (event: SnkFilterDetailCustomEvent<SnkFilterItemConfig>) => void;
|
2800
|
+
/**
|
2801
|
+
* Controla a visibilidade do botão de fixar elemento
|
2802
|
+
*/
|
2803
|
+
"showHardFixed"?: boolean;
|
2582
2804
|
}
|
2583
2805
|
interface SnkFilterFieldSearch {
|
2584
2806
|
/**
|
@@ -2612,6 +2834,10 @@ declare namespace LocalJSX {
|
|
2612
2834
|
* Emitido quando o detalhe de um item da lista é aberto ou fechado.
|
2613
2835
|
*/
|
2614
2836
|
"onVisibleChanged"?: (event: SnkFilterItemCustomEvent<boolean>) => void;
|
2837
|
+
/**
|
2838
|
+
* Usado para controlar a visibilidade dos chips de filtros
|
2839
|
+
*/
|
2840
|
+
"showChips"?: boolean;
|
2615
2841
|
}
|
2616
2842
|
interface SnkFilterList {
|
2617
2843
|
/**
|
@@ -2668,6 +2894,10 @@ declare namespace LocalJSX {
|
|
2668
2894
|
* Ação executada ao deletar um filtro personalizado
|
2669
2895
|
*/
|
2670
2896
|
"deletePersonalizedFilter"?: (filter: IPersonalizedFilter, configName: string) => void;
|
2897
|
+
/**
|
2898
|
+
* Desabilita a apresentação da opção de filtros personalizados na filter bar (chip de filtros) e no modal lateral de filtros (container de filtros personalizados).
|
2899
|
+
*/
|
2900
|
+
"disablePersonalizedFilter"?: boolean;
|
2671
2901
|
/**
|
2672
2902
|
* Ação executada ao editar um filtro personalizado
|
2673
2903
|
*/
|
@@ -2796,6 +3026,10 @@ declare namespace LocalJSX {
|
|
2796
3026
|
* Nome usado para guardar/recuperar as configurações do formulário.
|
2797
3027
|
*/
|
2798
3028
|
"configName"?: string;
|
3029
|
+
/**
|
3030
|
+
* Chave da configuração legado do formulário.
|
3031
|
+
*/
|
3032
|
+
"formLegacyConfigName"?: string;
|
2799
3033
|
/**
|
2800
3034
|
* Responsável por flexibilizar e padronizar o uso de mensagens nos blocos de construção.
|
2801
3035
|
*/
|
@@ -2934,10 +3168,26 @@ declare namespace LocalJSX {
|
|
2934
3168
|
* Nome usado para salvar/recuperar a configuração.
|
2935
3169
|
*/
|
2936
3170
|
"configName"?: string;
|
3171
|
+
/**
|
3172
|
+
* Desabilita a apresentação da opção de filtros personalizados na filter bar (chip de filtros) e no modal lateral de filtros (container de filtros personalizados).
|
3173
|
+
*/
|
3174
|
+
"disablePersonalizedFilter"?: boolean;
|
3175
|
+
/**
|
3176
|
+
* Chave da configuração legado da barra de filtros.
|
3177
|
+
*/
|
3178
|
+
"filterBarLegacyConfigName"?: string;
|
3179
|
+
/**
|
3180
|
+
* Título que será apresentado na barra de filtros
|
3181
|
+
*/
|
3182
|
+
"filterBarTitle"?: string;
|
2937
3183
|
/**
|
2938
3184
|
* Nome do slot de elementos customizados da Taskbar do cabeçalho da grade.
|
2939
3185
|
*/
|
2940
3186
|
"gridHeaderCustomSlotId"?: string;
|
3187
|
+
/**
|
3188
|
+
* Chave da configuração legado da grade.
|
3189
|
+
*/
|
3190
|
+
"gridLegacyConfigName"?: string;
|
2941
3191
|
/**
|
2942
3192
|
* Determina se a grade está vinculada a um detalhe.
|
2943
3193
|
*/
|
@@ -2996,10 +3246,6 @@ declare namespace LocalJSX {
|
|
2996
3246
|
"useEnterLikeTab"?: boolean;
|
2997
3247
|
}
|
2998
3248
|
interface SnkGridConfig {
|
2999
|
-
/**
|
3000
|
-
* Referência para o SnkApplication
|
3001
|
-
*/
|
3002
|
-
"application"?: SnkApplication;
|
3003
3249
|
/**
|
3004
3250
|
* Colunas da grade.
|
3005
3251
|
*/
|
@@ -3058,6 +3304,10 @@ declare namespace LocalJSX {
|
|
3058
3304
|
* Determina todo o caminho de entidades.
|
3059
3305
|
*/
|
3060
3306
|
"entityPath"?: string;
|
3307
|
+
/**
|
3308
|
+
* Chave da configuração legado do formulário.
|
3309
|
+
*/
|
3310
|
+
"formLegacyConfigName"?: string;
|
3061
3311
|
/**
|
3062
3312
|
* Configuração do formulário master.
|
3063
3313
|
*/
|
@@ -3198,10 +3448,34 @@ declare namespace LocalJSX {
|
|
3198
3448
|
"onExit"?: (event: SnkSimpleBarCustomEvent<void>) => void;
|
3199
3449
|
}
|
3200
3450
|
interface SnkSimpleCrud {
|
3451
|
+
/**
|
3452
|
+
* Ações a serem colocadas no botão "Mais opções" do componente snk-taskbar.
|
3453
|
+
*/
|
3454
|
+
"actionsList"?: Array<Action>;
|
3455
|
+
/**
|
3456
|
+
* Usado para salvar as configurações dos blocos de construção.
|
3457
|
+
*/
|
3458
|
+
"configName"?: string;
|
3201
3459
|
"dataState"?: DataState1;
|
3202
3460
|
"dataUnit"?: DataUnit;
|
3461
|
+
/**
|
3462
|
+
* Define o nome da entidade que o componente vai utilizar para fazer as operações de CRUD
|
3463
|
+
*/
|
3464
|
+
"entityName"?: string;
|
3203
3465
|
"formConfig"?: IFormConfig;
|
3466
|
+
/**
|
3467
|
+
* Chave da configuração legado do formulário.
|
3468
|
+
*/
|
3469
|
+
"formLegacyConfigName"?: string;
|
3204
3470
|
"gridConfig"?: IGridConfig;
|
3471
|
+
/**
|
3472
|
+
* Chave da configuração legado da grade.
|
3473
|
+
*/
|
3474
|
+
"gridLegacyConfigName"?: string;
|
3475
|
+
/**
|
3476
|
+
* Ignora os campos "somente leitura" no modo de inserção.
|
3477
|
+
*/
|
3478
|
+
"ignoreReadOnlyFormFields"?: boolean;
|
3205
3479
|
/**
|
3206
3480
|
* Responsável por flexibilizar e padronizar o uso de mensagens nos blocos de construção.
|
3207
3481
|
*/
|
@@ -3215,6 +3489,14 @@ declare namespace LocalJSX {
|
|
3215
3489
|
* Emitido sempre que houver click de botão ou ação.
|
3216
3490
|
*/
|
3217
3491
|
"onActionClick"?: (event: SnkSimpleCrudCustomEvent<string>) => void;
|
3492
|
+
/**
|
3493
|
+
* Emitido quando cancela o salvamento da configuração no configurator do CRUD.
|
3494
|
+
*/
|
3495
|
+
"onConfiguratorCancel"?: (event: SnkSimpleCrudCustomEvent<any>) => void;
|
3496
|
+
/**
|
3497
|
+
* Emitido quando salva a configuração no configurator do CRUD.
|
3498
|
+
*/
|
3499
|
+
"onConfiguratorSave"?: (event: SnkSimpleCrudCustomEvent<any>) => void;
|
3218
3500
|
/**
|
3219
3501
|
* Emitido quando há qualquer mudança de estado no DataUnit.
|
3220
3502
|
*/
|
@@ -3227,6 +3509,18 @@ declare namespace LocalJSX {
|
|
3227
3509
|
* Responsável por notificar quando ocorrer a renderização de itens do formulário.
|
3228
3510
|
*/
|
3229
3511
|
"onFormItemsReady"?: (event: SnkSimpleCrudCustomEvent<Array<HTMLElement>>) => void;
|
3512
|
+
/**
|
3513
|
+
* Determina quantas linhas são retornadas por página.
|
3514
|
+
*/
|
3515
|
+
"pageSize"?: number;
|
3516
|
+
/**
|
3517
|
+
* Identificador de recursos como configurações e acesso.
|
3518
|
+
*/
|
3519
|
+
"resourceID"?: string;
|
3520
|
+
/**
|
3521
|
+
* Usado para exibir os botões de ação do snk-configurator.
|
3522
|
+
*/
|
3523
|
+
"showConfiguratorButtons"?: boolean;
|
3230
3524
|
/**
|
3231
3525
|
* Gerenciador das barras de tarefas. É possível determinar botões específicos ou mesmo gerenciar o estado dos botões.
|
3232
3526
|
*/
|
@@ -3288,6 +3582,10 @@ declare namespace LocalJSX {
|
|
3288
3582
|
* Lista de ações que devem ser usadas no botão "Mais opções" do componente snk-taskbar.
|
3289
3583
|
*/
|
3290
3584
|
"actionsList"?: Array<Action>;
|
3585
|
+
/**
|
3586
|
+
* Usado para determinar O alinhamento dos items na taskbar.
|
3587
|
+
*/
|
3588
|
+
"alignRigth"?: boolean;
|
3291
3589
|
/**
|
3292
3590
|
* Lista separada por virgula, contendo todos os elementos a serem criados.
|
3293
3591
|
*/
|
@@ -3324,6 +3622,10 @@ declare namespace LocalJSX {
|
|
3324
3622
|
* Emitido sempre que houver click de botão ou ação.
|
3325
3623
|
*/
|
3326
3624
|
"onActionClick"?: (event: SnkTaskbarCustomEvent<string>) => void;
|
3625
|
+
/**
|
3626
|
+
* Define como será o comportamento da taskbar quando ocorrer overflow
|
3627
|
+
*/
|
3628
|
+
"overflowStrategy"?: 'hiddenItems' | 'none';
|
3327
3629
|
/**
|
3328
3630
|
* Altera o modo de apresentação dos botões do snk-taskbar.
|
3329
3631
|
*/
|
@@ -3,13 +3,30 @@ import { SnkFilterItemConfig } from "../../components/snk-filter-bar/filter-item
|
|
3
3
|
import { IFormCardConfig, IFormConfig } from "@sankhyalabs/ezui/dist/types/utils/form/interfaces";
|
4
4
|
import { ISaveResourceResponse } from "../http/data-fetcher/fetchers/resource-fetcher";
|
5
5
|
import { IPersonalizedFilter, IValidateFilter } from "../../components/snk-personalized-filter/interfaces/IPersonalizedFilter";
|
6
|
+
export declare enum CONFIG_SOURCE {
|
7
|
+
form = "form",
|
8
|
+
grid = "grid",
|
9
|
+
filterBar = "filterBar"
|
10
|
+
}
|
11
|
+
export interface ILegacyConfigNameParams {
|
12
|
+
gridLegacyConfig?: string;
|
13
|
+
formLegacyConfig?: string;
|
14
|
+
}
|
6
15
|
export declare class ConfigStorage {
|
16
|
+
private static readonly CONFIG_NAME_ERROR_MESSAGE;
|
17
|
+
private static readonly LEGACY_CONFIG_NAME_ERROR_MESSAGE;
|
18
|
+
private static filterBarLegacyConfig;
|
19
|
+
private static formLegacyConfig;
|
20
|
+
private static gridLegacyConfig;
|
7
21
|
private static configById;
|
8
22
|
private static filterBarConfigFetcher;
|
9
23
|
private static formConfigFetcher;
|
10
24
|
private static gridConfigFetcher;
|
11
25
|
private static personalizedFilterFetcher;
|
12
|
-
static
|
26
|
+
static addFilterBarLegacyConfig(configName: string, legacyConfigName: string): void;
|
27
|
+
static addFormLegacyConfig(configName: string, legacyConfigName: string): void;
|
28
|
+
static addGridLegacyConfig(configName: string, legacyConfigName: string): void;
|
29
|
+
static preload(resourceID: string, configName: string, legacyConfigs?: ILegacyConfigNameParams): void;
|
13
30
|
static loadFilterBarConfig(name: string, resourceID: string, urlParams?: object): Promise<Array<SnkFilterItemConfig>>;
|
14
31
|
static loadFormConfig(name: string, resourceID: string): Promise<IFormConfig>;
|
15
32
|
static loadGridConfig(name: string, resourceID: string): Promise<IGridConfig>;
|
@@ -21,5 +38,12 @@ export declare class ConfigStorage {
|
|
21
38
|
static savePersonalizedFilter(personalizedFilter: IPersonalizedFilter, resourceID: string, configName?: string): Promise<IPersonalizedFilter>;
|
22
39
|
static removePersonalizedFilter(personalizedFilter: IPersonalizedFilter, resourceID: string, configName?: string): Promise<IPersonalizedFilter>;
|
23
40
|
static validatePersonalizedFilter(dataUnitName: string, expression: string): Promise<IValidateFilter>;
|
41
|
+
static deleteGridConfigCache(name: string, resourceID: string): Promise<void>;
|
42
|
+
static deleteFormConfigCache(name: string, resourceID: string): Promise<void>;
|
43
|
+
static deleteFilterBarConfigCache(name: string, resourceID: string): Promise<void>;
|
44
|
+
private static validateConfigName;
|
45
|
+
private static handleLegacyConfig;
|
46
|
+
private static handleLegacyConfigAsString;
|
47
|
+
private static deleteConfigCache;
|
24
48
|
private static buildCacheID;
|
25
49
|
}
|