@sankhyalabs/sankhyablocks 8.15.0-rc.1 → 8.15.0-rc.10
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-34be11ce.js} +70 -7
- package/dist/cjs/{DataFetcher-ba94ed5b.js → DataFetcher-99f0f6ed.js} +5 -3
- package/dist/cjs/{SnkFormConfigManager-71c4768e.js → SnkFormConfigManager-6211fb28.js} +7 -2
- package/dist/cjs/{SnkMessageBuilder-e7dcf408.js → SnkMessageBuilder-141aa18d.js} +2 -1
- package/dist/cjs/SnkMultiSelectionListDataSource-5213120b.js +140 -0
- package/dist/cjs/{auth-fetcher-c8467c07.js → auth-fetcher-5161d082.js} +1 -1
- package/dist/cjs/{form-config-fetcher-df043d3d.js → form-config-fetcher-9f1a13ca.js} +1 -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-94f6b316.js} +235 -24
- 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 +34 -8
- package/dist/cjs/snk-attach.cjs.entry.js +7 -8
- package/dist/cjs/snk-crud.cjs.entry.js +16 -10
- package/dist/cjs/snk-data-exporter.cjs.entry.js +8 -4
- package/dist/cjs/{snk-data-unit-82c08a8c.js → snk-data-unit-6026a9f7.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 -7
- 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 +40 -22
- package/dist/cjs/{snk-guides-viewer-d32c096f.js → snk-guides-viewer-508bb6fe.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 +214 -23
- package/dist/cjs/snk-taskbar.cjs.entry.js +100 -14
- 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-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 +5 -1
- 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/snk-filter-bar.css +23 -1
- package/dist/collection/components/snk-filter-bar/snk-filter-bar.js +116 -4
- package/dist/collection/components/snk-form/snk-form.js +25 -1
- package/dist/collection/components/{snk-form → snk-form-config}/SnkFormConfigManager.js +6 -1
- 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 +103 -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 +5 -0
- package/dist/collection/components/snk-simple-crud/snk-simple-crud.js +325 -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 +139 -13
- package/dist/collection/lib/configs/ConfigStorage.js +63 -3
- package/dist/collection/lib/http/data-fetcher/DataFetcher.js +5 -3
- 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 +4 -11
- package/dist/collection/lib/message/resources/snk-data-exporter.msg.js +2 -1
- 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 +5 -0
- package/dist/components/SnkMessageBuilder.js +2 -1
- package/dist/components/dataunit-fetcher.js +4 -11
- package/dist/components/field-search.js +93 -3
- package/dist/components/index.d.ts +6 -6
- package/dist/components/snk-application2.js +30 -1
- package/dist/components/snk-attach2.js +54 -12
- package/dist/components/snk-crud.js +15 -3
- package/dist/components/snk-data-exporter2.js +5 -1
- 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 -5
- 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 +41 -17
- package/dist/components/snk-personalized-filter-editor.js +3 -1
- package/dist/components/snk-simple-crud2.js +270 -28
- package/dist/components/snk-taskbar2.js +114 -24
- package/dist/components/taskbar-actions-button2.js +1 -1
- package/dist/esm/{ConfigStorage-4151acc8.js → ConfigStorage-101a2b4c.js} +70 -7
- package/dist/esm/{DataFetcher-aa159c5a.js → DataFetcher-a650ae58.js} +5 -3
- package/dist/esm/{SnkFormConfigManager-5c7d3771.js → SnkFormConfigManager-d86ba46f.js} +7 -2
- package/dist/esm/{SnkMessageBuilder-0fb796b9.js → SnkMessageBuilder-9747ddd2.js} +2 -1
- package/dist/esm/SnkMultiSelectionListDataSource-7e7eada5.js +133 -0
- package/dist/esm/{auth-fetcher-c05dc474.js → auth-fetcher-17dc5b5e.js} +1 -1
- package/dist/esm/{form-config-fetcher-36219cd3.js → form-config-fetcher-f121f880.js} +1 -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-f05a12ca.js} +226 -16
- 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 +34 -8
- package/dist/esm/snk-attach.entry.js +6 -7
- package/dist/esm/snk-crud.entry.js +16 -10
- package/dist/esm/snk-data-exporter.entry.js +8 -4
- package/dist/esm/{snk-data-unit-5d201fb3.js → snk-data-unit-4c343635.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 -7
- 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 +41 -23
- package/dist/esm/{snk-guides-viewer-f49613c6.js → snk-guides-viewer-18859840.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 +215 -24
- package/dist/esm/snk-taskbar.entry.js +101 -15
- package/dist/esm/{taskbar-elements-d4d0b424.js → taskbar-elements-2473c8ac.js} +9 -9
- package/dist/sankhyablocks/p-1f3174cb.entry.js +1 -0
- package/dist/sankhyablocks/p-1fa5a18c.entry.js +11 -0
- package/dist/sankhyablocks/p-20b46647.entry.js +1 -0
- package/dist/sankhyablocks/p-2897fb8c.js +1 -0
- package/dist/sankhyablocks/{p-05243555.js → p-2936303b.js} +1 -1
- package/dist/sankhyablocks/p-2b909f08.entry.js +1 -0
- package/dist/sankhyablocks/p-33718dfc.entry.js +1 -0
- package/dist/sankhyablocks/p-50783a8b.js +1 -0
- package/dist/sankhyablocks/p-5c0b53ce.js +56 -0
- package/dist/sankhyablocks/p-5dbc1a3f.js +1 -0
- package/dist/sankhyablocks/p-60fa6c7a.js +1 -0
- package/dist/sankhyablocks/p-64c1b368.entry.js +1 -0
- package/dist/sankhyablocks/{p-7f3c7b09.entry.js → p-6b28cc74.entry.js} +1 -1
- package/dist/sankhyablocks/{p-e0fd9555.entry.js → p-7ddd95b6.entry.js} +1 -1
- package/dist/sankhyablocks/p-7e05bd83.entry.js +1 -0
- package/dist/sankhyablocks/p-7f97fee2.entry.js +1 -0
- package/dist/sankhyablocks/{p-f3d1c48e.js → p-9a5d1b39.js} +1 -1
- package/dist/sankhyablocks/{p-0d7863ed.js → p-a13ccb86.js} +1 -1
- package/dist/sankhyablocks/p-ae4fc9a9.js +1 -0
- package/dist/sankhyablocks/p-b11aa1e0.entry.js +1 -0
- package/dist/sankhyablocks/p-b41a622a.entry.js +1 -0
- package/dist/sankhyablocks/p-b4de81ac.entry.js +1 -0
- package/dist/sankhyablocks/p-ba4871b5.entry.js +1 -0
- package/dist/sankhyablocks/{p-9695f78b.js → p-be75153c.js} +1 -1
- package/dist/sankhyablocks/p-d01ceda6.entry.js +1 -0
- package/dist/sankhyablocks/p-d304659d.entry.js +1 -0
- package/dist/sankhyablocks/p-d78d4062.js +65 -0
- package/dist/sankhyablocks/p-e4fb3308.entry.js +1 -0
- package/dist/sankhyablocks/p-e7dbe53a.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-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/snk-filter-bar.d.ts +19 -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 +1 -0
- 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 +20 -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 +61 -3
- package/dist/types/components/snk-taskbar/snk-taskbar.d.ts +28 -1
- package/dist/types/components.d.ts +193 -12
- package/dist/types/lib/configs/ConfigStorage.d.ts +21 -1
- 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/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-094c30cb.js +0 -1
- 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-62896624.entry.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-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-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-e6380c60.js +0 -1
- package/dist/sankhyablocks/p-e817f254.entry.js +0 -11
- /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
@@ -3,7 +3,7 @@ import { ApplicationUtils } from "@sankhyalabs/ezui/dist/collection/utils";
|
|
3
3
|
import { h } from "@stencil/core";
|
4
4
|
import AppletCaller from "../../lib/applet-caller/applet-caller";
|
5
5
|
import MGEAuthorization from '../../lib/auth/mgeauthorization.module';
|
6
|
-
import { ConfigStorage } from
|
6
|
+
import { ConfigStorage } from '../../lib/configs/ConfigStorage';
|
7
7
|
import { DataFetcher } from "../../lib/http/data-fetcher/DataFetcher";
|
8
8
|
import AuthFetcher, { AutorizationType } from "../../lib/http/data-fetcher/fetchers/auth-fetcher";
|
9
9
|
import DataUnitFetcher from "../../lib/http/data-fetcher/fetchers/data-unit/dataunit-fetcher";
|
@@ -33,6 +33,8 @@ export class SnkApplication {
|
|
33
33
|
this._isLoadedByPk = false;
|
34
34
|
this.messagesBuilder = undefined;
|
35
35
|
this.configName = undefined;
|
36
|
+
this.gridLegacyConfigName = undefined;
|
37
|
+
this.formLegacyConfigName = undefined;
|
36
38
|
this.loadByPK = undefined;
|
37
39
|
}
|
38
40
|
async processPendingActions(actionsLocker) {
|
@@ -941,7 +943,11 @@ export class SnkApplication {
|
|
941
943
|
ApplicationContext.setContextValue("__EZUI__GRID_LICENSE__", agGridLicense);
|
942
944
|
this.registerPkChangeListener();
|
943
945
|
ErrorTracking.init();
|
944
|
-
|
946
|
+
let legacyConfig = {
|
947
|
+
gridLegacyConfig: this.gridLegacyConfigName,
|
948
|
+
formLegacyConfig: this.formLegacyConfigName
|
949
|
+
};
|
950
|
+
ConfigStorage.preload(this.applicationResourceID, this.configName, legacyConfig);
|
945
951
|
document.addEventListener("click", () => Workspace.applicationClick());
|
946
952
|
this._waitingAppReady.forEach(resolve => resolve());
|
947
953
|
}
|
@@ -1030,6 +1036,40 @@ export class SnkApplication {
|
|
1030
1036
|
"attribute": "config-name",
|
1031
1037
|
"reflect": false
|
1032
1038
|
},
|
1039
|
+
"gridLegacyConfigName": {
|
1040
|
+
"type": "string",
|
1041
|
+
"mutable": false,
|
1042
|
+
"complexType": {
|
1043
|
+
"original": "string",
|
1044
|
+
"resolved": "string",
|
1045
|
+
"references": {}
|
1046
|
+
},
|
1047
|
+
"required": false,
|
1048
|
+
"optional": false,
|
1049
|
+
"docs": {
|
1050
|
+
"tags": [],
|
1051
|
+
"text": "Chave da configura\u00E7\u00E3o legado da grade."
|
1052
|
+
},
|
1053
|
+
"attribute": "grid-legacy-config-name",
|
1054
|
+
"reflect": false
|
1055
|
+
},
|
1056
|
+
"formLegacyConfigName": {
|
1057
|
+
"type": "string",
|
1058
|
+
"mutable": false,
|
1059
|
+
"complexType": {
|
1060
|
+
"original": "string",
|
1061
|
+
"resolved": "string",
|
1062
|
+
"references": {}
|
1063
|
+
},
|
1064
|
+
"required": false,
|
1065
|
+
"optional": false,
|
1066
|
+
"docs": {
|
1067
|
+
"tags": [],
|
1068
|
+
"text": "Chave da configura\u00E7\u00E3o legado do formul\u00E1rio."
|
1069
|
+
},
|
1070
|
+
"attribute": "form-legacy-config-name",
|
1071
|
+
"reflect": false
|
1072
|
+
},
|
1033
1073
|
"loadByPK": {
|
1034
1074
|
"type": "unknown",
|
1035
1075
|
"mutable": false,
|
@@ -2150,6 +2190,10 @@ export class SnkApplication {
|
|
2150
2190
|
"Promise": {
|
2151
2191
|
"location": "global"
|
2152
2192
|
},
|
2193
|
+
"IOption": {
|
2194
|
+
"location": "import",
|
2195
|
+
"path": "@sankhyalabs/ezui/dist/types/components/ez-search/ez-search"
|
2196
|
+
},
|
2153
2197
|
"ISearchArgument": {
|
2154
2198
|
"location": "import",
|
2155
2199
|
"path": "@sankhyalabs/ezui/dist/types/components/ez-search/ez-search"
|
@@ -2161,16 +2205,12 @@ export class SnkApplication {
|
|
2161
2205
|
"Array": {
|
2162
2206
|
"location": "global"
|
2163
2207
|
},
|
2164
|
-
"IOption": {
|
2165
|
-
"location": "import",
|
2166
|
-
"path": "@sankhyalabs/ezui/dist/types/components/ez-search/ez-search"
|
2167
|
-
},
|
2168
2208
|
"SearchCriteria": {
|
2169
2209
|
"location": "import",
|
2170
2210
|
"path": "../../lib/http/data-fetcher/fetchers/pesquisa-fetcher"
|
2171
2211
|
}
|
2172
2212
|
},
|
2173
|
-
"return": "Promise<
|
2213
|
+
"return": "Promise<IOption | IOption[]>"
|
2174
2214
|
},
|
2175
2215
|
"docs": {
|
2176
2216
|
"text": "Obt\u00E9m as op\u00E7\u00F5es em componentes de pesquisa\nEx.: snk-config-options",
|
@@ -2194,18 +2234,18 @@ export class SnkApplication {
|
|
2194
2234
|
"Promise": {
|
2195
2235
|
"location": "global"
|
2196
2236
|
},
|
2197
|
-
"Array": {
|
2198
|
-
"location": "global"
|
2199
|
-
},
|
2200
2237
|
"IOption": {
|
2201
2238
|
"location": "import",
|
2202
2239
|
"path": "@sankhyalabs/ezui/dist/types/components/ez-search/ez-search"
|
2203
2240
|
},
|
2241
|
+
"Array": {
|
2242
|
+
"location": "global"
|
2243
|
+
},
|
2204
2244
|
"HTMLSnkPesquisaElement": {
|
2205
2245
|
"location": "global"
|
2206
2246
|
}
|
2207
2247
|
},
|
2208
|
-
"return": "Promise<
|
2248
|
+
"return": "Promise<IOption | IOption[]>"
|
2209
2249
|
},
|
2210
2250
|
"docs": {
|
2211
2251
|
"text": "Obt\u00E9m as op\u00E7\u00F5es em componentes de pesquisa\nEx.: snk-config-options",
|
@@ -20,6 +20,7 @@ export class SnkCrud {
|
|
20
20
|
this._canEdit = undefined;
|
21
21
|
this._resourceID = undefined;
|
22
22
|
this.configName = undefined;
|
23
|
+
this.filterBarTitle = undefined;
|
23
24
|
this.selectionToastConfig = undefined;
|
24
25
|
this.showActionButtons = false;
|
25
26
|
this.actionsList = undefined;
|
@@ -30,6 +31,10 @@ export class SnkCrud {
|
|
30
31
|
this.presentationMode = PresentationMode.PRIMARY;
|
31
32
|
this.messagesBuilder = undefined;
|
32
33
|
this.useEnterLikeTab = false;
|
34
|
+
this.gridLegacyConfigName = undefined;
|
35
|
+
this.filterBarLegacyConfigName = undefined;
|
36
|
+
this.formLegacyConfigName = undefined;
|
37
|
+
this.disablePersonalizedFilter = undefined;
|
33
38
|
this.customContainerId = `SNK-CRUD-CUSTOM-CONTAINER-${StringUtils.generateUUID()}`;
|
34
39
|
}
|
35
40
|
/**
|
@@ -162,7 +167,8 @@ export class SnkCrud {
|
|
162
167
|
window.removeEventListener("keydown", this._keyDownHandler);
|
163
168
|
}
|
164
169
|
async initKeyboardManager() {
|
165
|
-
|
170
|
+
var _a;
|
171
|
+
const keyboardManager = await ((_a = this._application) === null || _a === void 0 ? void 0 : _a.getKeyboardManager());
|
166
172
|
if (keyboardManager) {
|
167
173
|
const dataUnit = this._dataUnit || await this._snkDataUnit.getDataUnit();
|
168
174
|
async function saveDataUnitHandlingFocus() {
|
@@ -211,7 +217,8 @@ export class SnkCrud {
|
|
211
217
|
}
|
212
218
|
}
|
213
219
|
async removeShortcuts() {
|
214
|
-
|
220
|
+
var _a;
|
221
|
+
const keyboardManager = await ((_a = this._application) === null || _a === void 0 ? void 0 : _a.getKeyboardManager());
|
215
222
|
if (keyboardManager) {
|
216
223
|
keyboardManager
|
217
224
|
.unbind("F6")
|
@@ -278,7 +285,7 @@ export class SnkCrud {
|
|
278
285
|
return;
|
279
286
|
}
|
280
287
|
this._snkDataUnit.ignoreSaveMessage = this._currentViewMode === VIEW_MODE.GRID;
|
281
|
-
return (h(Host, null, h("ez-view-stack", { ref: (ref) => this._viewStack = ref, "data-element-id": "crud" }, h("stack-item", null, h("snk-grid", { ref: (ref) => this._snkGrid = ref, "data-element-id": "crud_grid", configName: this.configName, onGridDoubleClick: () => this.gridToForm(true), taskbarManager: this.taskbarManager, onActionClick: evt => this.executeAction(evt.detail), messagesBuilder: this.messagesBuilder, actionsList: this.actionsList, statusResolver: this.statusResolver, multipleSelection: this.multipleSelection, presentationMode: this.presentationMode, recordsValidator: this.recordsValidator, selectionToastConfig: this.selectionToastConfig, useEnterLikeTab: this.useEnterLikeTab, canEdit: this._canEdit, resourceID: this._resourceID }, h("slot", { name: "GRID_TASKBAR_CUSTOM_ELEMENTS" }), h("slot", { name: "GRID_HEADER_CUSTOM_ELEMENTS" }), h("slot", { name: "SnkGridHeader" }), h("slot", { name: "SnkGridFooter" }), h("slot", { name: "SnkGridTaskBar" }))), h("stack-item", null, h("snk-guides-viewer", { ref: ref => this._guidesViewer = ref, entityPath: this._snkDataUnit.entityName, messagesBuilder: this.messagesBuilder, onExit: () => this.setViewMode(VIEW_MODE.GRID), dataState: this._dataState, dataUnit: this._dataUnit, actionsList: this.actionsList, taskbarManager: this.taskbarManager, configName: this.configName, onActionClick: evt => this.executeAction(evt.detail), presentationMode: this.presentationMode, "data-element-id": "crud_form", canEdit: this._canEdit, recordsValidator: this.recordsValidator, resourceID: this._resourceID, detailTaskbarCustomContainerId: this.customContainerId }, h("slot", { name: "GUIDES_VIEWER_TASKBAR_CUSTOM_ELEMENTS" }), h("slot", { name: "SnkFormTaskBar" }))), h("stack-item", null, h("snk-attach", { registerKey: this.attachmentRegisterKey, messagesBuilder: this.messagesBuilder, entityName: this._snkDataUnit.entityName, onBack: this.backView.bind(this) })), h("snk-configurator", { ref: (ref) => this._snkConfigurator = ref, viewMode: this._currentViewMode, messagesBuilder: this.messagesBuilder, onConfigSelected: (evt) => this.setViewMode(evt.detail), onOpenConfig: (evt) => this.openConfig(evt.detail), showActionButtons: this.showActionButtons, onSave: evt => this.handleConfiguratorEvent(evt, 'SAVE'), onCancel: evt => this.handleConfiguratorEvent(evt, 'CANCEL'), resourceID: this._resourceID, customContainerId: this.customContainerId })), h("div", { id: `${this.customContainerId}` }, h("slot", { name: "SnkConfigContainerSlot" }), h("slot", { name: "DETAIL_GRID_HEADER_CUSTOM_ELEMENTS" }), h("slot", { name: "DETAIL_GRID_TASKBAR_CUSTOM_ELEMENTS" }), h("slot", { name: "DETAIL_TASKBAR_CUSTOM_ELEMENTS" }))));
|
288
|
+
return (h(Host, null, h("ez-view-stack", { ref: (ref) => this._viewStack = ref, "data-element-id": "crud" }, h("stack-item", null, h("snk-grid", { ref: (ref) => this._snkGrid = ref, filterBarTitle: this.filterBarTitle, "data-element-id": "crud_grid", configName: this.configName, onGridDoubleClick: () => this.gridToForm(true), taskbarManager: this.taskbarManager, onActionClick: evt => this.executeAction(evt.detail), messagesBuilder: this.messagesBuilder, actionsList: this.actionsList, statusResolver: this.statusResolver, multipleSelection: this.multipleSelection, presentationMode: this.presentationMode, recordsValidator: this.recordsValidator, selectionToastConfig: this.selectionToastConfig, useEnterLikeTab: this.useEnterLikeTab, canEdit: this._canEdit, resourceID: this._resourceID, disablePersonalizedFilter: this.disablePersonalizedFilter, gridLegacyConfigName: this.gridLegacyConfigName, filterBarLegacyConfigName: this.filterBarLegacyConfigName }, h("slot", { name: "GRID_TASKBAR_CUSTOM_ELEMENTS" }), h("slot", { name: "GRID_HEADER_CUSTOM_ELEMENTS" }), h("slot", { name: "SnkGridHeader" }), h("slot", { name: "SnkGridFooter" }), h("slot", { name: "SnkGridTaskBar" }))), h("stack-item", null, h("snk-guides-viewer", { ref: ref => this._guidesViewer = ref, entityPath: this._snkDataUnit.entityName, messagesBuilder: this.messagesBuilder, onExit: () => this.setViewMode(VIEW_MODE.GRID), dataState: this._dataState, dataUnit: this._dataUnit, actionsList: this.actionsList, taskbarManager: this.taskbarManager, configName: this.configName, onActionClick: evt => this.executeAction(evt.detail), presentationMode: this.presentationMode, "data-element-id": "crud_form", canEdit: this._canEdit, recordsValidator: this.recordsValidator, resourceID: this._resourceID, detailTaskbarCustomContainerId: this.customContainerId, formLegacyConfigName: this.formLegacyConfigName }, h("slot", { name: "GUIDES_VIEWER_TASKBAR_CUSTOM_ELEMENTS" }), h("slot", { name: "SnkFormTaskBar" }))), h("stack-item", null, h("snk-attach", { registerKey: this.attachmentRegisterKey, messagesBuilder: this.messagesBuilder, entityName: this._snkDataUnit.entityName, onBack: this.backView.bind(this) })), h("snk-configurator", { ref: (ref) => this._snkConfigurator = ref, viewMode: this._currentViewMode, messagesBuilder: this.messagesBuilder, onConfigSelected: (evt) => this.setViewMode(evt.detail), onOpenConfig: (evt) => this.openConfig(evt.detail), showActionButtons: this.showActionButtons, onSave: evt => this.handleConfiguratorEvent(evt, 'SAVE'), onCancel: evt => this.handleConfiguratorEvent(evt, 'CANCEL'), resourceID: this._resourceID, customContainerId: this.customContainerId })), h("div", { id: `${this.customContainerId}` }, h("slot", { name: "SnkConfigContainerSlot" }), h("slot", { name: "DETAIL_GRID_HEADER_CUSTOM_ELEMENTS" }), h("slot", { name: "DETAIL_GRID_TASKBAR_CUSTOM_ELEMENTS" }), h("slot", { name: "DETAIL_TASKBAR_CUSTOM_ELEMENTS" }))));
|
282
289
|
}
|
283
290
|
static get is() { return "snk-crud"; }
|
284
291
|
static get encapsulation() { return "scoped"; }
|
@@ -311,6 +318,23 @@ export class SnkCrud {
|
|
311
318
|
"attribute": "config-name",
|
312
319
|
"reflect": false
|
313
320
|
},
|
321
|
+
"filterBarTitle": {
|
322
|
+
"type": "string",
|
323
|
+
"mutable": false,
|
324
|
+
"complexType": {
|
325
|
+
"original": "string",
|
326
|
+
"resolved": "string",
|
327
|
+
"references": {}
|
328
|
+
},
|
329
|
+
"required": false,
|
330
|
+
"optional": false,
|
331
|
+
"docs": {
|
332
|
+
"tags": [],
|
333
|
+
"text": "T\u00EDtulo que ser\u00E1 apresentado na barra de filtros"
|
334
|
+
},
|
335
|
+
"attribute": "filter-bar-title",
|
336
|
+
"reflect": false
|
337
|
+
},
|
314
338
|
"selectionToastConfig": {
|
315
339
|
"type": "unknown",
|
316
340
|
"mutable": false,
|
@@ -514,6 +538,74 @@ export class SnkCrud {
|
|
514
538
|
"attribute": "use-enter-like-tab",
|
515
539
|
"reflect": false,
|
516
540
|
"defaultValue": "false"
|
541
|
+
},
|
542
|
+
"gridLegacyConfigName": {
|
543
|
+
"type": "string",
|
544
|
+
"mutable": false,
|
545
|
+
"complexType": {
|
546
|
+
"original": "string",
|
547
|
+
"resolved": "string",
|
548
|
+
"references": {}
|
549
|
+
},
|
550
|
+
"required": false,
|
551
|
+
"optional": false,
|
552
|
+
"docs": {
|
553
|
+
"tags": [],
|
554
|
+
"text": "Chave da configura\u00E7\u00E3o legado da grade."
|
555
|
+
},
|
556
|
+
"attribute": "grid-legacy-config-name",
|
557
|
+
"reflect": false
|
558
|
+
},
|
559
|
+
"filterBarLegacyConfigName": {
|
560
|
+
"type": "string",
|
561
|
+
"mutable": false,
|
562
|
+
"complexType": {
|
563
|
+
"original": "string",
|
564
|
+
"resolved": "string",
|
565
|
+
"references": {}
|
566
|
+
},
|
567
|
+
"required": false,
|
568
|
+
"optional": false,
|
569
|
+
"docs": {
|
570
|
+
"tags": [],
|
571
|
+
"text": "Chave da configura\u00E7\u00E3o legado da barra de filtros."
|
572
|
+
},
|
573
|
+
"attribute": "filter-bar-legacy-config-name",
|
574
|
+
"reflect": false
|
575
|
+
},
|
576
|
+
"formLegacyConfigName": {
|
577
|
+
"type": "string",
|
578
|
+
"mutable": false,
|
579
|
+
"complexType": {
|
580
|
+
"original": "string",
|
581
|
+
"resolved": "string",
|
582
|
+
"references": {}
|
583
|
+
},
|
584
|
+
"required": false,
|
585
|
+
"optional": false,
|
586
|
+
"docs": {
|
587
|
+
"tags": [],
|
588
|
+
"text": "Chave da configura\u00E7\u00E3o legado do formul\u00E1rio."
|
589
|
+
},
|
590
|
+
"attribute": "form-legacy-config-name",
|
591
|
+
"reflect": false
|
592
|
+
},
|
593
|
+
"disablePersonalizedFilter": {
|
594
|
+
"type": "boolean",
|
595
|
+
"mutable": false,
|
596
|
+
"complexType": {
|
597
|
+
"original": "boolean",
|
598
|
+
"resolved": "boolean",
|
599
|
+
"references": {}
|
600
|
+
},
|
601
|
+
"required": false,
|
602
|
+
"optional": false,
|
603
|
+
"docs": {
|
604
|
+
"tags": [],
|
605
|
+
"text": "Desabilita a apresenta\u00E7\u00E3o da op\u00E7\u00E3o de filtros personalizados na filter bar (chip de filtros)\ne no modal lateral de filtros (container de filtros personalizados)."
|
606
|
+
},
|
607
|
+
"attribute": "disable-personalized-filter",
|
608
|
+
"reflect": false
|
517
609
|
}
|
518
610
|
};
|
519
611
|
}
|
package/dist/collection/components/snk-crud/subcomponents/snk-detail-view/snk-detail-view.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import { Action } from '@sankhyalabs/core';
|
2
2
|
import { Host, forceUpdate, h } from '@stencil/core';
|
3
|
-
import { SnkFormConfigManager } from '../../../snk-form/SnkFormConfigManager';
|
3
|
+
import { SnkFormConfigManager } from '../../../snk-form-config/SnkFormConfigManager';
|
4
4
|
import { buildFormMetadata } from "@sankhyalabs/ezui/dist/collection/utils/form";
|
5
5
|
import { PresentationMode } from '../../../../lib';
|
6
6
|
import { TaskbarElement } from '../../../snk-taskbar/elements/taskbar-elements';
|
@@ -236,7 +236,7 @@ export class SnkDetailView {
|
|
236
236
|
"references": {
|
237
237
|
"SnkFormConfigManager": {
|
238
238
|
"location": "import",
|
239
|
-
"path": "../../../snk-form/SnkFormConfigManager"
|
239
|
+
"path": "../../../snk-form-config/SnkFormConfigManager"
|
240
240
|
}
|
241
241
|
}
|
242
242
|
},
|
@@ -25,7 +25,7 @@ snk-form-view {
|
|
25
25
|
position: relative;
|
26
26
|
padding-left: 0px;
|
27
27
|
padding-top: 0px;
|
28
|
-
|
28
|
+
|
29
29
|
/*public*/
|
30
30
|
padding-right: var(--snk-guides-viewer--space-large);
|
31
31
|
padding-bottom: var(--snk-guides-viewer--space-large);
|
@@ -57,6 +57,15 @@ snk-form-view {
|
|
57
57
|
margin-bottom: var(--snk-guides-viewer--space-medium);
|
58
58
|
}
|
59
59
|
|
60
|
+
.snk-guides-viewer__header-breadcrumb{
|
61
|
+
width: 25%;
|
62
|
+
display: flex;
|
63
|
+
}
|
64
|
+
|
65
|
+
.snk-guides-viewer__header-taskbar{
|
66
|
+
width: 75%;
|
67
|
+
}
|
68
|
+
|
60
69
|
.snk-guides-viewer__container {
|
61
70
|
/*private*/
|
62
71
|
display: grid;
|
@@ -88,4 +97,4 @@ snk-form-view {
|
|
88
97
|
min-height: 100%;
|
89
98
|
align-items: flex-start;
|
90
99
|
align-content: flex-start;
|
91
|
-
}
|
100
|
+
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { Action as DUAction, ElementIDUtils } from '@sankhyalabs/core';
|
2
2
|
import { Fragment, h } from '@stencil/core';
|
3
|
-
import { SnkFormConfigManager } from '../../snk-form/SnkFormConfigManager';
|
3
|
+
import { SnkFormConfigManager } from '../../snk-form-config/SnkFormConfigManager';
|
4
4
|
import { buildFormMetadata, FormMetadata } from '@sankhyalabs/ezui/dist/collection/utils/form';
|
5
5
|
import TaskbarProcessor from '../../snk-taskbar/processor/taskbar-processor';
|
6
6
|
import { TaskbarElement } from '../../snk-taskbar/elements/taskbar-elements';
|
@@ -26,6 +26,7 @@ export class SnkGuidesViewer {
|
|
26
26
|
this.presentationMode = undefined;
|
27
27
|
this.resourceID = undefined;
|
28
28
|
this.detailTaskbarCustomContainerId = undefined;
|
29
|
+
this.formLegacyConfigName = undefined;
|
29
30
|
this._hasToCreateFieldSearch = true;
|
30
31
|
this._breadcrumbItems = [];
|
31
32
|
this._guides = undefined;
|
@@ -323,11 +324,17 @@ export class SnkGuidesViewer {
|
|
323
324
|
var _a;
|
324
325
|
return this.selectedGuide === undefined || '__main' === ((_a = this.selectedGuide) === null || _a === void 0 ? void 0 : _a.id);
|
325
326
|
}
|
327
|
+
addFormLegacyConfigName() {
|
328
|
+
if (this.formLegacyConfigName) {
|
329
|
+
this._configManager.addFormLegacyConfig(this.formLegacyConfigName);
|
330
|
+
}
|
331
|
+
}
|
326
332
|
componentWillLoad() {
|
327
333
|
if (this.resourceID == undefined) {
|
328
334
|
throw new Error("Erro interno: resourceID não informado");
|
329
335
|
}
|
330
336
|
this._configManager = new SnkFormConfigManager(this.configName, this.resourceID, config => this.masterFormConfig = config);
|
337
|
+
this.addFormLegacyConfigName();
|
331
338
|
this._configManager.loadConfig();
|
332
339
|
}
|
333
340
|
componentDidRender() {
|
@@ -383,7 +390,7 @@ export class SnkGuidesViewer {
|
|
383
390
|
}
|
384
391
|
buildTaskBar() {
|
385
392
|
var _a;
|
386
|
-
return h("div", { class: `
|
393
|
+
return h("div", { class: `snk-guides-viewer__header-taskbar ${this.presentationMode != PresentationMode.SECONDARY ? 'ez-align--right' : 'ez-padding-bottom--medium'}` }, h("snk-taskbar", { key: "guideViewerTaskbar", "data-element-id": "guideViewer", configName: this.configName, buttons: this._taskbarProcessor.buttons, disabledButtons: this._taskbarProcessor.disabledButtons, customButtons: this._taskbarProcessor.customButtons, actionsList: this.getActionsList(), messagesBuilder: this.messagesBuilder, presentationMode: this.presentationMode, primaryButton: ((_a = this.dataState) === null || _a === void 0 ? void 0 : _a.isDirty) ? "SAVE" : "INSERT", "data-taskbar-owner": "master", dataUnit: this.dataUnit, resourceID: this.resourceID, customSlotId: "GUIDES_VIEWER_TASKBAR_CUSTOM_ELEMENTS", alignRigth: true }, h("slot", { name: "GUIDES_VIEWER_TASKBAR_CUSTOM_ELEMENTS" })));
|
387
394
|
}
|
388
395
|
async dataUnitActionHandler(action) {
|
389
396
|
var _a;
|
@@ -442,7 +449,7 @@ export class SnkGuidesViewer {
|
|
442
449
|
}
|
443
450
|
this.loadTaskbarProcessor();
|
444
451
|
const showGuides = this._guides && (this._guides.length > 1);
|
445
|
-
return (h("section", { class: "snk-guides-viewer" }, h("div", { class: "ez-row snk-guides-viewer__header" }, h("div", { class: "
|
452
|
+
return (h("section", { class: "snk-guides-viewer" }, h("div", { class: "ez-row snk-guides-viewer__header" }, h("div", { class: "snk-guides-viewer__header-breadcrumb ez-flex--align-items-center ez-flex-item--align-center ez-padding-left--large", key: "header" }, h("ez-button", { onClick: () => this.exitViewer(), title: this.getMessage("snkCrud.goBackTitle"), mode: "icon", iconName: "arrow_back", class: "ez-padding-right--medium", size: "small" }), h("div", { class: "ez-flex ez-flex--column ez-flex-item--auto" }, h("h1", { class: "ez-title ez-title--primary ez-title--xlarge" }, this.getMessage("snkCrud.title")), ((_a = this._breadcrumbItems) === null || _a === void 0 ? void 0 : _a.length) > 1 &&
|
446
453
|
h("div", { class: "ez-margin-top--extra-small" }, h("ez-breadcrumb", Object.assign({ items: this._breadcrumbItems, onSelectedItem: (evt) => this.onBreadcrumbClickHandler(evt === null || evt === void 0 ? void 0 : evt.detail) }, { [ElementIDUtils.DATA_ELEMENT_ID_ATTRIBUTE_NAME]: `${ElementIDUtils.getInternalIDInfo("breadcrumb")}` }))))), this.presentationMode != PresentationMode.SECONDARY && this.buildTaskBar()), h("div", { class: "snk-guides-viewer__container" }, showGuides ?
|
447
454
|
h("ez-guide-navigator", { ref: (ref) => this._guideNavigator = ref, class: "snk-guides-viewer__guide-navigator", items: this._guides, selectedId: this.selectedGuide ? this.selectedGuide.id : undefined, onEzSelectionChange: evt => this.updateSelectedGuideHandler(evt.detail) })
|
448
455
|
:
|
@@ -740,6 +747,23 @@ export class SnkGuidesViewer {
|
|
740
747
|
},
|
741
748
|
"attribute": "detail-taskbar-custom-container-id",
|
742
749
|
"reflect": false
|
750
|
+
},
|
751
|
+
"formLegacyConfigName": {
|
752
|
+
"type": "string",
|
753
|
+
"mutable": false,
|
754
|
+
"complexType": {
|
755
|
+
"original": "string",
|
756
|
+
"resolved": "string",
|
757
|
+
"references": {}
|
758
|
+
},
|
759
|
+
"required": false,
|
760
|
+
"optional": false,
|
761
|
+
"docs": {
|
762
|
+
"tags": [],
|
763
|
+
"text": "Chave da configura\u00E7\u00E3o legado do formul\u00E1rio."
|
764
|
+
},
|
765
|
+
"attribute": "form-legacy-config-name",
|
766
|
+
"reflect": false
|
743
767
|
}
|
744
768
|
};
|
745
769
|
}
|
@@ -120,7 +120,11 @@ export class SnkDataExporter {
|
|
120
120
|
}
|
121
121
|
fetchDataExporter(params)
|
122
122
|
.then((result) => callbackResolver(result))
|
123
|
-
.catch((exception) =>
|
123
|
+
.catch((exception) => {
|
124
|
+
console.error(exception);
|
125
|
+
let { title, message, statusMessage } = exception || {};
|
126
|
+
ApplicationUtils.error(title || this.getMessage("snkDataExporter.message.exportError"), statusMessage || message || this.getMessage("snkDataExporter.message.unknownFailure"));
|
127
|
+
});
|
124
128
|
}
|
125
129
|
getOptionKey(option) {
|
126
130
|
return Object.keys(DataExporterOption)
|
@@ -56,16 +56,18 @@ export class SnkEntityList {
|
|
56
56
|
this.loadListSource();
|
57
57
|
}
|
58
58
|
optionLoader(searchArgument) {
|
59
|
-
var _a, _b, _c, _d;
|
59
|
+
var _a, _b, _c, _d, _e, _f;
|
60
60
|
const { mode, argument } = searchArgument;
|
61
61
|
if (this._application === undefined) {
|
62
62
|
return;
|
63
63
|
}
|
64
64
|
const searchOptions = (_c = (_b = (_a = this.config) === null || _a === void 0 ? void 0 : _a.props) === null || _b === void 0 ? void 0 : _b.searchContext) === null || _c === void 0 ? void 0 : _c.searchOptions;
|
65
|
+
const criteria = (_e = (_d = this.config) === null || _d === void 0 ? void 0 : _d.props) === null || _e === void 0 ? void 0 : _e.criteria;
|
65
66
|
const options = {
|
66
|
-
entityDescription: (
|
67
|
+
entityDescription: (_f = this.config) === null || _f === void 0 ? void 0 : _f.label,
|
67
68
|
entity: this._entityName,
|
68
|
-
searchOptions: searchOptions
|
69
|
+
searchOptions: searchOptions,
|
70
|
+
criteria,
|
69
71
|
};
|
70
72
|
return this._application.executePreparedSearch(mode, argument, options);
|
71
73
|
}
|
@@ -55,8 +55,10 @@ export class SnkFilterPersonalized {
|
|
55
55
|
return this.presentationMode === EPresentationMode.MODAL;
|
56
56
|
}
|
57
57
|
doSearch(mode, argument, param) {
|
58
|
+
const context = Object.assign({}, param.searchContext);
|
59
|
+
context.searchOptions = Object.assign(Object.assign({}, context.searchOptions), { showInactives: "true" });
|
58
60
|
return new Promise((resolve, reject) => {
|
59
|
-
this._application.executePreparedSearch(mode, argument,
|
61
|
+
this._application.executePreparedSearch(mode, argument, context)
|
60
62
|
.then(result => {
|
61
63
|
resolve(result);
|
62
64
|
}).catch(reason => {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
:host {
|
2
2
|
display: grid;
|
3
|
-
grid-template-columns: minmax(100px, 100%) 1fr 1fr;
|
3
|
+
grid-template-columns: 1fr minmax(100px, 100%) 1fr 1fr;
|
4
4
|
|
5
5
|
/*@doc Define o z-index do componente.*/
|
6
6
|
--snk-personalized-filter--z-index: var(--elevation--20, 20);
|
@@ -8,6 +8,28 @@
|
|
8
8
|
--snk-personalized-filter--background-color: var(--background--xlight, #fff);
|
9
9
|
}
|
10
10
|
|
11
|
+
.snk-filter-bar__title {
|
12
|
+
max-width: 260px;
|
13
|
+
display: inline-block;
|
14
|
+
text-overflow: ellipsis;
|
15
|
+
overflow: hidden;
|
16
|
+
white-space: nowrap;
|
17
|
+
font-size: 16px;
|
18
|
+
font-family: var(--font-pattern, Arial);
|
19
|
+
font-weight: var(--text-weight--large, 600);
|
20
|
+
color: var(--color--title-primary, #2B3A54);
|
21
|
+
margin-top: 8px;
|
22
|
+
}
|
23
|
+
|
24
|
+
:host([data-mode="hidden"]) {
|
25
|
+
display: none;
|
26
|
+
}
|
27
|
+
|
28
|
+
:host([data-mode="button"]) {
|
29
|
+
grid-template-columns: 1fr;
|
30
|
+
width: fit-content;
|
31
|
+
}
|
32
|
+
|
11
33
|
.snk-filter__popover-container{
|
12
34
|
/*private*/
|
13
35
|
display: flex;
|