@sankhyalabs/sankhyablocks 0.0.0-bugfix-dev-KB-78242.2 → 0.0.0-bugfix-dev-KB-80932.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/{ConfigStorage-f079f5fd.js → ConfigStorage-d024aec8.js} +2 -2
- package/dist/cjs/{ContinuousInsertUtils-64e47516.js → ContinuousInsertUtils-54d44192.js} +5 -5
- package/dist/cjs/{DataFetcher-e059eb72.js → DataFetcher-65879b2c.js} +188 -56
- package/dist/cjs/{SnkFormConfigManager-63369164.js → SnkFormConfigManager-ae3185b2.js} +2 -2
- package/dist/cjs/{auth-fetcher-4f853233.js → auth-fetcher-8480751c.js} +1 -1
- package/dist/cjs/{dataunit-fetcher-228016f4.js → dataunit-fetcher-8ea97d88.js} +2 -2
- package/dist/cjs/{form-config-fetcher-39397ac5.js → form-config-fetcher-90126e4c.js} +38 -1
- package/dist/cjs/index-f9e81701.js +8 -4
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/{pesquisa-fetcher-a9bfeb22.js → pesquisa-fetcher-f3454c23.js} +179 -1
- package/dist/cjs/pesquisa-grid_2.cjs.entry.js +133 -0
- package/dist/cjs/sankhyablocks.cjs.js +1 -1
- package/dist/cjs/{snk-actions-button_4.cjs.entry.js → snk-actions-button_5.cjs.entry.js} +99 -9
- package/dist/cjs/snk-application.cjs.entry.js +144 -21
- package/dist/cjs/snk-attach.cjs.entry.js +13 -9
- package/dist/cjs/snk-config-options_3.cjs.entry.js +4 -4
- package/dist/cjs/snk-crud.cjs.entry.js +8 -7
- package/dist/cjs/snk-data-exporter.cjs.entry.js +29 -18
- package/dist/cjs/{snk-data-unit-3d9b6ed4.js → snk-data-unit-72ef8777.js} +1 -1
- package/dist/cjs/snk-data-unit.cjs.entry.js +3 -3
- package/dist/cjs/snk-detail-view.cjs.entry.js +7 -7
- package/dist/cjs/snk-filter-bar_4.cjs.entry.js +27 -11
- package/dist/cjs/snk-filter-modal-item.cjs.entry.js +3 -3
- package/dist/cjs/snk-grid.cjs.entry.js +9 -8
- package/dist/cjs/{snk-guides-viewer-2139481c.js → snk-guides-viewer-ea5d0907.js} +5 -5
- package/dist/cjs/snk-guides-viewer.cjs.entry.js +7 -7
- package/dist/cjs/snk-personalized-filter.cjs.entry.js +3 -3
- package/dist/cjs/snk-pesquisa.cjs.entry.js +105 -31
- package/dist/cjs/snk-simple-crud.cjs.entry.js +27 -29
- package/dist/collection/collection-manifest.json +3 -0
- package/dist/collection/components/snk-actions-button/actions/index.js +4 -4
- package/dist/collection/components/snk-application/request-listener/DebouncedRequestListener.js +4 -3
- package/dist/collection/components/snk-application/snk-application.css +34 -0
- package/dist/collection/components/snk-application/snk-application.js +197 -14
- package/dist/collection/components/snk-attach/structure/builder/taskbar-builder.js +8 -4
- package/dist/collection/components/snk-crud/snk-crud.js +39 -20
- package/dist/collection/components/snk-data-exporter/exporter-strategy/ClientSideExporterStrategy.js +11 -5
- package/dist/collection/components/snk-data-exporter/exporter-strategy/ServerSideExporterStrategy.js +11 -4
- package/dist/collection/components/snk-data-exporter/interfaces/IExporterProvider.js +1 -1
- package/dist/collection/components/snk-data-exporter/snk-data-exporter.js +1 -3
- package/dist/collection/components/snk-data-exporter/utils/ParserExport.js +1 -1
- package/dist/collection/components/snk-filter-bar/filter-modal/snk-filter-modal.js +3 -1
- package/dist/collection/components/snk-filter-bar/snk-filter-bar.js +40 -8
- package/dist/collection/components/snk-grid/snk-grid.js +39 -20
- package/dist/collection/components/snk-pesquisa/pesquisa-grid/pesquisa-grid.css +10 -0
- package/dist/collection/components/snk-pesquisa/pesquisa-grid/pesquisa-grid.js +190 -0
- package/dist/collection/components/snk-pesquisa/pesquisa-tree/pesquisa-tree.css +25 -0
- package/dist/collection/components/snk-pesquisa/pesquisa-tree/pesquisa-tree.js +179 -0
- package/dist/collection/components/snk-pesquisa/pesquisaHelper.js +89 -0
- package/dist/collection/components/snk-pesquisa/snk-pesquisa.css +24 -5
- package/dist/collection/components/snk-pesquisa/snk-pesquisa.js +168 -32
- package/dist/collection/components/snk-simple-crud/snk-simple-crud.js +56 -41
- package/dist/collection/components/snk-simple-form-config/snk-simple-form-config.css +22 -0
- package/dist/collection/components/snk-simple-form-config/snk-simple-form-config.js +181 -0
- package/dist/collection/lib/dataUnit/dataUnitInMemoryUtils.js +1 -1
- package/dist/collection/lib/http/data-fetcher/fetchers/form-config-fetcher.js +41 -4
- package/dist/collection/lib/http/data-fetcher/fetchers/pesquisa-fetcher.js +92 -3
- package/dist/components/ContinuousInsertUtils.js +2 -3
- package/dist/components/DataFetcher.js +188 -56
- package/dist/components/ISave.js +346 -1
- package/dist/components/dataunit-fetcher.js +1 -1
- package/dist/components/form-config-fetcher.js +37 -0
- package/dist/components/index.d.ts +3 -0
- package/dist/components/index.js +3 -0
- package/dist/components/pesquisa-grid.d.ts +11 -0
- package/dist/components/pesquisa-grid.js +6 -0
- package/dist/components/pesquisa-grid2.js +86 -0
- package/dist/components/pesquisa-tree.d.ts +11 -0
- package/dist/components/pesquisa-tree.js +6 -0
- package/dist/components/pesquisa-tree2.js +82 -0
- package/dist/components/snk-actions-button2.js +4 -5
- package/dist/components/snk-application2.js +159 -20
- package/dist/components/snk-attach2.js +20 -35
- package/dist/components/snk-crud.js +66 -59
- package/dist/components/snk-data-exporter2.js +25 -15
- package/dist/components/snk-detail-view2.js +84 -94
- package/dist/components/snk-filter-bar2.js +23 -8
- package/dist/components/snk-filter-modal.js +3 -1
- package/dist/components/snk-grid2.js +5 -4
- package/dist/components/snk-pesquisa2.js +118 -33
- package/dist/components/snk-simple-crud2.js +35 -56
- package/dist/components/snk-simple-form-config.d.ts +11 -0
- package/dist/components/snk-simple-form-config.js +6 -0
- package/dist/components/snk-simple-form-config2.js +120 -0
- package/dist/components/teste-pesquisa.js +13 -1
- package/dist/esm/{ConfigStorage-6514d66e.js → ConfigStorage-373bb440.js} +2 -2
- package/dist/esm/{ContinuousInsertUtils-b62906f9.js → ContinuousInsertUtils-25e7bd9a.js} +5 -5
- package/dist/esm/{DataFetcher-5034df59.js → DataFetcher-5221b992.js} +188 -56
- package/dist/esm/{SnkFormConfigManager-b409c745.js → SnkFormConfigManager-b65e6db0.js} +2 -2
- package/dist/esm/{auth-fetcher-ca5d3a49.js → auth-fetcher-e32fe8a4.js} +1 -1
- package/dist/esm/{dataunit-fetcher-56cb648b.js → dataunit-fetcher-8dd93d8b.js} +2 -2
- package/dist/esm/{form-config-fetcher-a7d3e277.js → form-config-fetcher-126e2471.js} +38 -1
- package/dist/esm/index-a7d3d3f1.js +8 -4
- package/dist/esm/loader.js +1 -1
- package/dist/{components/pesquisa-fetcher.js → esm/pesquisa-fetcher-0af41f09.js} +180 -3
- package/dist/esm/pesquisa-grid_2.entry.js +128 -0
- package/dist/esm/sankhyablocks.js +1 -1
- package/dist/esm/{snk-actions-button_4.entry.js → snk-actions-button_5.entry.js} +99 -10
- package/dist/esm/snk-application.entry.js +146 -23
- package/dist/esm/snk-attach.entry.js +13 -9
- package/dist/esm/snk-config-options_3.entry.js +4 -4
- package/dist/esm/snk-crud.entry.js +8 -7
- package/dist/esm/snk-data-exporter.entry.js +29 -18
- package/dist/esm/{snk-data-unit-9fa7d2b9.js → snk-data-unit-11a49fc3.js} +1 -1
- package/dist/esm/snk-data-unit.entry.js +3 -3
- package/dist/esm/snk-detail-view.entry.js +7 -7
- package/dist/esm/snk-filter-bar_4.entry.js +28 -12
- package/dist/esm/snk-filter-modal-item.entry.js +3 -3
- package/dist/esm/snk-grid.entry.js +9 -8
- package/dist/esm/{snk-guides-viewer-b7ed39eb.js → snk-guides-viewer-830f5fb9.js} +5 -5
- package/dist/esm/snk-guides-viewer.entry.js +7 -7
- package/dist/esm/snk-personalized-filter.entry.js +3 -3
- package/dist/esm/snk-pesquisa.entry.js +105 -31
- package/dist/esm/snk-simple-crud.entry.js +27 -29
- package/dist/sankhyablocks/{p-0e206e62.js → p-05b6ff91.js} +1 -1
- package/dist/sankhyablocks/p-09067bee.entry.js +1 -0
- package/dist/sankhyablocks/p-0cda2226.entry.js +11 -0
- package/dist/sankhyablocks/p-1435701f.js +26 -0
- package/dist/sankhyablocks/{p-e97be1c8.js → p-171b7623.js} +1 -1
- package/dist/sankhyablocks/{p-9ffd9fc7.js → p-19dc71e9.js} +1 -1
- package/dist/sankhyablocks/{p-0d2a2e9e.entry.js → p-1a91d1f3.entry.js} +1 -1
- package/dist/sankhyablocks/{p-aa003d4e.entry.js → p-1cf39cfd.entry.js} +1 -1
- package/dist/sankhyablocks/{p-bb8ef149.entry.js → p-254c59d2.entry.js} +1 -1
- package/dist/sankhyablocks/p-422eb699.entry.js +1 -0
- package/dist/sankhyablocks/{p-a2c790ac.entry.js → p-469384a2.entry.js} +1 -1
- package/dist/sankhyablocks/p-54f5354a.entry.js +1 -0
- package/dist/sankhyablocks/{p-342eeb3b.js → p-60e4db34.js} +1 -1
- package/dist/sankhyablocks/p-618a29ed.entry.js +1 -0
- package/dist/sankhyablocks/p-798386c7.js +6 -0
- package/dist/sankhyablocks/{p-fca0e5cc.entry.js → p-82ee6dc3.entry.js} +1 -1
- package/dist/sankhyablocks/{p-e4391e16.js → p-8a1ee5b5.js} +1 -1
- package/dist/sankhyablocks/p-8bd86610.entry.js +1 -0
- package/dist/sankhyablocks/p-b50a0753.entry.js +1 -0
- package/dist/sankhyablocks/p-d62228fb.js +1 -0
- package/dist/sankhyablocks/p-d92d4f91.entry.js +1 -0
- package/dist/sankhyablocks/{p-47d24ac8.js → p-ddefbbc7.js} +1 -1
- package/dist/sankhyablocks/p-e5430b29.entry.js +1 -0
- package/dist/sankhyablocks/p-f0b9303b.js +1 -0
- package/dist/sankhyablocks/p-f258690a.entry.js +1 -0
- package/dist/sankhyablocks/{p-ec43fcc8.entry.js → p-f975370f.entry.js} +1 -1
- package/dist/sankhyablocks/sankhyablocks.esm.js +1 -1
- package/dist/types/components/snk-application/snk-application.d.ts +22 -4
- package/dist/types/components/snk-crud/snk-crud.d.ts +8 -4
- package/dist/types/components/snk-data-exporter/exporter-strategy/ClientSideExporterStrategy.d.ts +1 -0
- package/dist/types/components/snk-data-exporter/exporter-strategy/ServerSideExporterStrategy.d.ts +1 -0
- package/dist/types/components/snk-data-exporter/utils/ParserExport.d.ts +1 -1
- package/dist/types/components/snk-filter-bar/snk-filter-bar.d.ts +6 -1
- package/dist/types/components/snk-grid/snk-grid.d.ts +8 -4
- package/dist/types/components/snk-pesquisa/pesquisa-grid/pesquisa-grid.d.ts +38 -0
- package/dist/types/components/snk-pesquisa/pesquisa-tree/pesquisa-tree.d.ts +29 -0
- package/dist/types/components/snk-pesquisa/pesquisaHelper.d.ts +19 -0
- package/dist/types/components/snk-pesquisa/snk-pesquisa.d.ts +35 -1
- package/dist/types/components/snk-simple-crud/snk-simple-crud.d.ts +10 -4
- package/dist/types/components/snk-simple-form-config/snk-simple-form-config.d.ts +34 -0
- package/dist/types/components.d.ts +244 -23
- package/dist/types/lib/http/data-fetcher/fetchers/form-config-fetcher.d.ts +8 -2
- package/dist/types/lib/http/data-fetcher/fetchers/pesquisa-fetcher.d.ts +10 -1
- package/package.json +1 -1
- package/react/components.d.ts +3 -0
- package/react/components.js +3 -0
- package/react/components.js.map +1 -1
- package/dist/esm/pesquisa-fetcher-6bc2e41a.js +0 -169
- package/dist/sankhyablocks/p-00278e07.js +0 -1
- package/dist/sankhyablocks/p-0387d9d7.entry.js +0 -1
- package/dist/sankhyablocks/p-126c58ea.js +0 -26
- package/dist/sankhyablocks/p-1d3ce0d9.entry.js +0 -1
- package/dist/sankhyablocks/p-341465ce.js +0 -6
- package/dist/sankhyablocks/p-3728d2aa.entry.js +0 -11
- package/dist/sankhyablocks/p-4138da61.entry.js +0 -1
- package/dist/sankhyablocks/p-5d9788b3.entry.js +0 -1
- package/dist/sankhyablocks/p-7075b789.entry.js +0 -1
- package/dist/sankhyablocks/p-aaf94476.js +0 -1
- package/dist/sankhyablocks/p-af7f7b3e.entry.js +0 -1
- package/dist/sankhyablocks/p-d1791da2.entry.js +0 -1
- package/dist/sankhyablocks/p-eb7c9cf4.entry.js +0 -1
|
@@ -5,9 +5,11 @@
|
|
|
5
5
|
* It contains typing information for all components that exist in this project.
|
|
6
6
|
*/
|
|
7
7
|
import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
|
|
8
|
+
import { DataUnit, Filter, KeyboardManager, Record, UnitMetadata } from "@sankhyalabs/core";
|
|
9
|
+
import { IOption } from "@sankhyalabs/ezui/.diststorybook/types/components/ez-combo-box/ez-combo-box";
|
|
10
|
+
import { ITreeItem } from "@sankhyalabs/ezui/.diststorybook/types/components/ez-tree/interfaces/ITreeItem";
|
|
8
11
|
import { IAction } from "./components/snk-actions-button/actions/interfaces/IAction";
|
|
9
12
|
import { SnkMessageBuilder } from "./lib/message/SnkMessageBuilder";
|
|
10
|
-
import { DataUnit, Filter, KeyboardManager, Record, UnitMetadata } from "@sankhyalabs/core";
|
|
11
13
|
import { DataFetcher, Options } from "./lib/http/data-fetcher/DataFetcher";
|
|
12
14
|
import { AutorizationType } from "./lib/http/data-fetcher/fetchers/auth-fetcher";
|
|
13
15
|
import { AlertItem } from "@sankhyalabs/ezui/dist/types/components/ez-alert-list/ez-alert-list";
|
|
@@ -15,7 +17,7 @@ import { IAppletCallerParams } from "./lib/applet-caller/applet-caller";
|
|
|
15
17
|
import { IClientEventResponse } from "./lib/http/data-fetcher/interfaces/IClientEventResponse";
|
|
16
18
|
import { IDataFetcherRecaller } from "./lib/http/data-fetcher/recaller/IDataFetcherRecaller";
|
|
17
19
|
import { DialogType, MessageOptions } from "@sankhyalabs/ezui/dist/collection/utils";
|
|
18
|
-
import { IOption, ISearchArgument } from "@sankhyalabs/ezui/dist/types/components/ez-search/ez-search";
|
|
20
|
+
import { IOption as IOption1, ISearchArgument } from "@sankhyalabs/ezui/dist/types/components/ez-search/ez-search";
|
|
19
21
|
import { IRemoveSearchListener, ISearchListener, SearchCriteria } from "./lib/http/data-fetcher/fetchers/pesquisa-fetcher";
|
|
20
22
|
import { TFetcherType } from "./components/snk-attach/interfaces/TFetcherType";
|
|
21
23
|
import { AttachFetcherFacadeInterface, PresentationMode } from "./lib";
|
|
@@ -49,7 +51,7 @@ import { FilterFieldsDataSource, IFilterField, IFilterLink } from "./components/
|
|
|
49
51
|
import { IEzPopoverAnchorOptions } from "@sankhyalabs/ezui/dist/types/components/ez-popover/ez-popover";
|
|
50
52
|
import { SnkFilterItemConfig as SnkFilterItemConfig1 } from "./components/snk-filter-bar/filter-item/snk-filter-item";
|
|
51
53
|
import { ListItem as ListItem1 } from "./components/snk-filter-bar/filter-list/snk-filter-list";
|
|
52
|
-
import { IOption as
|
|
54
|
+
import { IOption as IOption2 } from "@sankhyalabs/ezui/dist/types/components/ez-combo-box/ez-combo-box";
|
|
53
55
|
import { IFormViewField } from "@sankhyalabs/ezui/dist/types/components/ez-form-view/interfaces/IFormViewField";
|
|
54
56
|
import { FormMetadata } from "@sankhyalabs/ezui/dist/collection/utils/form";
|
|
55
57
|
import { ICustomEditor as ICustomEditor1 } from "@sankhyalabs/ezui/dist/types/utils/customEditor/interfaces/ICustomEditor";
|
|
@@ -61,6 +63,43 @@ import { IBreadcrumbItem } from "@sankhyalabs/ezui/dist/types/components/ez-brea
|
|
|
61
63
|
import { ITab } from "./components/snk-form-config/subcomponents/snk-tab-config/snk-tab-config";
|
|
62
64
|
import { Action as Action1, CustomButton } from "./components/snk-taskbar/snk-taskbar";
|
|
63
65
|
export namespace Components {
|
|
66
|
+
interface PesquisaGrid {
|
|
67
|
+
/**
|
|
68
|
+
* Registros da grade
|
|
69
|
+
*/
|
|
70
|
+
"dataSource": Record[];
|
|
71
|
+
/**
|
|
72
|
+
* Campo que representa a descrição do registro
|
|
73
|
+
*/
|
|
74
|
+
"descriptionField": string;
|
|
75
|
+
/**
|
|
76
|
+
* Nome da entidade representada na grade
|
|
77
|
+
*/
|
|
78
|
+
"entityName": string;
|
|
79
|
+
/**
|
|
80
|
+
* Campos que representam as colunas da grade.
|
|
81
|
+
*/
|
|
82
|
+
"metadata": UnitMetadata;
|
|
83
|
+
/**
|
|
84
|
+
* Campo que representa a chave primária do registro
|
|
85
|
+
*/
|
|
86
|
+
"pkField": string;
|
|
87
|
+
}
|
|
88
|
+
interface PesquisaTree {
|
|
89
|
+
/**
|
|
90
|
+
* Define se permite seleção de items não analíticos
|
|
91
|
+
*/
|
|
92
|
+
"allowsNonAnalytic": boolean;
|
|
93
|
+
"applyFilter": () => Promise<void>;
|
|
94
|
+
/**
|
|
95
|
+
* Argumentos que serão usados ao chamar a função treeLoader.
|
|
96
|
+
*/
|
|
97
|
+
"argument": string;
|
|
98
|
+
/**
|
|
99
|
+
* Função responsável por carregar a árvore hierárquica do componente
|
|
100
|
+
*/
|
|
101
|
+
"treeLoader"?: (text: string) => Promise<Array<ITreeItem>>;
|
|
102
|
+
}
|
|
64
103
|
interface SnkActionsButton {
|
|
65
104
|
}
|
|
66
105
|
interface SnkActionsForm {
|
|
@@ -84,6 +123,7 @@ export namespace Components {
|
|
|
84
123
|
* @param handler - Função de callback que será chamada quando o client event ocorrer.
|
|
85
124
|
*/
|
|
86
125
|
"addClientEvent": (eventID: String, handler: (clientEvent: IClientEventResponse, dataFetcherReacaller: IDataFetcherRecaller) => void) => Promise<void>;
|
|
126
|
+
"addLoadingLock": (forceReady?: boolean) => Promise<() => void>;
|
|
87
127
|
/**
|
|
88
128
|
* Adiciona uma ação pendente que deve ser executada por um determinado locker.
|
|
89
129
|
* @param actionsLocker nome do locker da ação que será adicionada
|
|
@@ -125,6 +165,10 @@ export namespace Components {
|
|
|
125
165
|
* Cria o DataUnit a partir do nome da entidade. É possível armazená-lo no cache passando o dataUnitName, assim, se mais de uma chamada for feita, o mesmo DataUnit será usado.
|
|
126
166
|
*/
|
|
127
167
|
"createDataunit": (entityName: string, dataUnitName?: string, parentDataUnit?: DataUnit, configName?: string, resourceID?: string) => Promise<DataUnit>;
|
|
168
|
+
/**
|
|
169
|
+
* Define se o componente deve usar o LockManager para controle de carregamento da aplicação
|
|
170
|
+
*/
|
|
171
|
+
"enableLockManagerLoadingApp": boolean;
|
|
128
172
|
/**
|
|
129
173
|
* Exibe o diálogo de erro de acordo com os parâmetros passados.
|
|
130
174
|
*/
|
|
@@ -132,11 +176,11 @@ export namespace Components {
|
|
|
132
176
|
/**
|
|
133
177
|
* Obtém as opções em componentes de pesquisa Ex.: snk-config-options
|
|
134
178
|
*/
|
|
135
|
-
"executePreparedSearch": (mode: string, argument: string, options: any) => Promise<Array<
|
|
179
|
+
"executePreparedSearch": (mode: string, argument: string, options: any) => Promise<Array<IOption1> | IOption1>;
|
|
136
180
|
/**
|
|
137
181
|
* Obtém as opções em componentes de pesquisa Ex.: snk-config-options
|
|
138
182
|
*/
|
|
139
|
-
"executeSearch": (searchArgument: ISearchArgument, fieldName: string, dataUnit: DataUnit) => Promise<Array<
|
|
183
|
+
"executeSearch": (searchArgument: ISearchArgument, fieldName: string, dataUnit: DataUnit, ctxOptions?: any) => Promise<Array<IOption1> | IOption1>;
|
|
140
184
|
/**
|
|
141
185
|
* 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.
|
|
142
186
|
*/
|
|
@@ -251,6 +295,7 @@ export namespace Components {
|
|
|
251
295
|
* Obtém os totalizadores da grade.
|
|
252
296
|
*/
|
|
253
297
|
"loadTotals": (name: string, resourceID: string, filters: Array<Filter>) => Promise<Map<string, number>>;
|
|
298
|
+
"markToReload": () => Promise<void>;
|
|
254
299
|
/**
|
|
255
300
|
* Exibe um diálogo de mensagem comum
|
|
256
301
|
*/
|
|
@@ -469,9 +514,13 @@ export namespace Components {
|
|
|
469
514
|
*/
|
|
470
515
|
"enableGridInsert"?: boolean;
|
|
471
516
|
/**
|
|
472
|
-
*
|
|
517
|
+
* Define se o componente deve usar o LockManager para controle de carregamento da aplicação
|
|
518
|
+
*/
|
|
519
|
+
"enableLockManagerLoadingComp"?: boolean;
|
|
520
|
+
/**
|
|
521
|
+
* Ativa o gerenciamento de locks na grade pela Taskbar.
|
|
473
522
|
*/
|
|
474
|
-
"
|
|
523
|
+
"enableLockManagerTaskbarClick"?: boolean;
|
|
475
524
|
/**
|
|
476
525
|
* Chave da configuração legado da barra de filtros.
|
|
477
526
|
*/
|
|
@@ -867,6 +916,10 @@ export namespace Components {
|
|
|
867
916
|
* 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).
|
|
868
917
|
*/
|
|
869
918
|
"disablePersonalizedFilter": boolean;
|
|
919
|
+
/**
|
|
920
|
+
* Define se o componente deve usar o LockManager para controle de carregamento
|
|
921
|
+
*/
|
|
922
|
+
"enableLockManagerLoadingComp"?: boolean;
|
|
870
923
|
/**
|
|
871
924
|
* Chave da configuração legado da barra de filtros.
|
|
872
925
|
*/
|
|
@@ -1172,7 +1225,7 @@ export namespace Components {
|
|
|
1172
1225
|
/**
|
|
1173
1226
|
* Define o valor do componente snk-filter-search
|
|
1174
1227
|
*/
|
|
1175
|
-
"value":
|
|
1228
|
+
"value": IOption2;
|
|
1176
1229
|
}
|
|
1177
1230
|
interface SnkFilterText {
|
|
1178
1231
|
/**
|
|
@@ -1365,9 +1418,13 @@ export namespace Components {
|
|
|
1365
1418
|
*/
|
|
1366
1419
|
"enableGridInsert"?: boolean;
|
|
1367
1420
|
/**
|
|
1368
|
-
*
|
|
1421
|
+
* Define se o componente deve usar o LockManager para controle de carregamento da aplicação
|
|
1369
1422
|
*/
|
|
1370
|
-
"
|
|
1423
|
+
"enableLockManagerLoadingComp"?: boolean;
|
|
1424
|
+
/**
|
|
1425
|
+
* Ativa o gerenciamento de locks na grade pela Taskbar.
|
|
1426
|
+
*/
|
|
1427
|
+
"enableLockManagerTaskbarClick"?: boolean;
|
|
1371
1428
|
/**
|
|
1372
1429
|
* Chave da configuração legado da barra de filtros.
|
|
1373
1430
|
*/
|
|
@@ -1633,13 +1690,25 @@ export namespace Components {
|
|
|
1633
1690
|
/**
|
|
1634
1691
|
* Controla o valor do componente.
|
|
1635
1692
|
*/
|
|
1636
|
-
"value": Array<
|
|
1693
|
+
"value": Array<IOption2|boolean|string|number|Date>;
|
|
1637
1694
|
}
|
|
1638
1695
|
interface SnkPesquisa {
|
|
1696
|
+
/**
|
|
1697
|
+
* Define se permite seleção de items não analíticos
|
|
1698
|
+
*/
|
|
1699
|
+
"allowsNonAnalytic": boolean;
|
|
1639
1700
|
/**
|
|
1640
1701
|
* Argumentos que serão usados ao chamar a função searchLoader.
|
|
1641
1702
|
*/
|
|
1642
1703
|
"argument": string;
|
|
1704
|
+
/**
|
|
1705
|
+
* Nome da entidade onde a pesquisa é aplicada.
|
|
1706
|
+
*/
|
|
1707
|
+
"entityName": string;
|
|
1708
|
+
/**
|
|
1709
|
+
* Define se a popup de pesquisa possuirá ou não modo Hierarquico.
|
|
1710
|
+
*/
|
|
1711
|
+
"isHierarchyEntity": boolean;
|
|
1643
1712
|
/**
|
|
1644
1713
|
* Função responsável em carregar os itens do componente snk-pesquisa.
|
|
1645
1714
|
*/
|
|
@@ -1647,7 +1716,11 @@ export namespace Components {
|
|
|
1647
1716
|
/**
|
|
1648
1717
|
* Função disparada ao selecionar um item.
|
|
1649
1718
|
*/
|
|
1650
|
-
"selectItem": (option:
|
|
1719
|
+
"selectItem": (option: IOption2) => void;
|
|
1720
|
+
/**
|
|
1721
|
+
* Função responsável por carregar a árvore hierárquica do componente
|
|
1722
|
+
*/
|
|
1723
|
+
"treeLoader"?: (text: string) => Promise<any>;
|
|
1651
1724
|
}
|
|
1652
1725
|
interface SnkPrintSelector {
|
|
1653
1726
|
"openPrintSelector": (printJobData: PendingPrintJobData) => Promise<PrintSelectorResponse>;
|
|
@@ -1656,7 +1729,7 @@ export namespace Components {
|
|
|
1656
1729
|
/**
|
|
1657
1730
|
* Determina a opção selecionada.
|
|
1658
1731
|
*/
|
|
1659
|
-
"selectedOption":
|
|
1732
|
+
"selectedOption": IOption2 | string;
|
|
1660
1733
|
}
|
|
1661
1734
|
interface SnkSimpleBar {
|
|
1662
1735
|
/**
|
|
@@ -1715,7 +1788,14 @@ export namespace Components {
|
|
|
1715
1788
|
* Ativa inserção de registros no modo grade.
|
|
1716
1789
|
*/
|
|
1717
1790
|
"enableGridInsert"?: boolean;
|
|
1718
|
-
|
|
1791
|
+
/**
|
|
1792
|
+
* Define se o componente deve usar o LockManager para controle de carregamento da aplicação
|
|
1793
|
+
*/
|
|
1794
|
+
"enableLockManagerLoadingComp"?: boolean;
|
|
1795
|
+
/**
|
|
1796
|
+
* Ativa o gerenciamento de locks na grade pela Taskbar.
|
|
1797
|
+
*/
|
|
1798
|
+
"enableLockManagerTaskbarClick"?: boolean;
|
|
1719
1799
|
/**
|
|
1720
1800
|
* Define o nome da entidade que o componente vai utilizar para fazer as operações de CRUD
|
|
1721
1801
|
*/
|
|
@@ -1789,6 +1869,20 @@ export namespace Components {
|
|
|
1789
1869
|
*/
|
|
1790
1870
|
"useEnterLikeTab": boolean;
|
|
1791
1871
|
}
|
|
1872
|
+
interface SnkSimpleFormConfig {
|
|
1873
|
+
/**
|
|
1874
|
+
* Chave que representa a configuração do formulário
|
|
1875
|
+
*/
|
|
1876
|
+
"configName": string;
|
|
1877
|
+
/**
|
|
1878
|
+
* Data unit responsável pelos campos disponíveis
|
|
1879
|
+
*/
|
|
1880
|
+
"dataUnit": DataUnit;
|
|
1881
|
+
/**
|
|
1882
|
+
* Responsável por abrir o configurador.
|
|
1883
|
+
*/
|
|
1884
|
+
"show": () => Promise<void>;
|
|
1885
|
+
}
|
|
1792
1886
|
interface SnkTabConfig {
|
|
1793
1887
|
/**
|
|
1794
1888
|
* Responsável por flexibilizar e padronizar o uso de mensagens nos blocos de construção.
|
|
@@ -1898,6 +1992,14 @@ export namespace Components {
|
|
|
1898
1992
|
interface TestePesquisa {
|
|
1899
1993
|
}
|
|
1900
1994
|
}
|
|
1995
|
+
export interface PesquisaGridCustomEvent<T> extends CustomEvent<T> {
|
|
1996
|
+
detail: T;
|
|
1997
|
+
target: HTMLPesquisaGridElement;
|
|
1998
|
+
}
|
|
1999
|
+
export interface PesquisaTreeCustomEvent<T> extends CustomEvent<T> {
|
|
2000
|
+
detail: T;
|
|
2001
|
+
target: HTMLPesquisaTreeElement;
|
|
2002
|
+
}
|
|
1901
2003
|
export interface SnkApplicationCustomEvent<T> extends CustomEvent<T> {
|
|
1902
2004
|
detail: T;
|
|
1903
2005
|
target: HTMLSnkApplicationElement;
|
|
@@ -2050,6 +2152,10 @@ export interface SnkSimpleCrudCustomEvent<T> extends CustomEvent<T> {
|
|
|
2050
2152
|
detail: T;
|
|
2051
2153
|
target: HTMLSnkSimpleCrudElement;
|
|
2052
2154
|
}
|
|
2155
|
+
export interface SnkSimpleFormConfigCustomEvent<T> extends CustomEvent<T> {
|
|
2156
|
+
detail: T;
|
|
2157
|
+
target: HTMLSnkSimpleFormConfigElement;
|
|
2158
|
+
}
|
|
2053
2159
|
export interface SnkTabConfigCustomEvent<T> extends CustomEvent<T> {
|
|
2054
2160
|
detail: T;
|
|
2055
2161
|
target: HTMLSnkTabConfigElement;
|
|
@@ -2063,6 +2169,18 @@ export interface TaskbarActionsButtonCustomEvent<T> extends CustomEvent<T> {
|
|
|
2063
2169
|
target: HTMLTaskbarActionsButtonElement;
|
|
2064
2170
|
}
|
|
2065
2171
|
declare global {
|
|
2172
|
+
interface HTMLPesquisaGridElement extends Components.PesquisaGrid, HTMLStencilElement {
|
|
2173
|
+
}
|
|
2174
|
+
var HTMLPesquisaGridElement: {
|
|
2175
|
+
prototype: HTMLPesquisaGridElement;
|
|
2176
|
+
new (): HTMLPesquisaGridElement;
|
|
2177
|
+
};
|
|
2178
|
+
interface HTMLPesquisaTreeElement extends Components.PesquisaTree, HTMLStencilElement {
|
|
2179
|
+
}
|
|
2180
|
+
var HTMLPesquisaTreeElement: {
|
|
2181
|
+
prototype: HTMLPesquisaTreeElement;
|
|
2182
|
+
new (): HTMLPesquisaTreeElement;
|
|
2183
|
+
};
|
|
2066
2184
|
interface HTMLSnkActionsButtonElement extends Components.SnkActionsButton, HTMLStencilElement {
|
|
2067
2185
|
}
|
|
2068
2186
|
var HTMLSnkActionsButtonElement: {
|
|
@@ -2351,6 +2469,12 @@ declare global {
|
|
|
2351
2469
|
prototype: HTMLSnkSimpleCrudElement;
|
|
2352
2470
|
new (): HTMLSnkSimpleCrudElement;
|
|
2353
2471
|
};
|
|
2472
|
+
interface HTMLSnkSimpleFormConfigElement extends Components.SnkSimpleFormConfig, HTMLStencilElement {
|
|
2473
|
+
}
|
|
2474
|
+
var HTMLSnkSimpleFormConfigElement: {
|
|
2475
|
+
prototype: HTMLSnkSimpleFormConfigElement;
|
|
2476
|
+
new (): HTMLSnkSimpleFormConfigElement;
|
|
2477
|
+
};
|
|
2354
2478
|
interface HTMLSnkTabConfigElement extends Components.SnkTabConfig, HTMLStencilElement {
|
|
2355
2479
|
}
|
|
2356
2480
|
var HTMLSnkTabConfigElement: {
|
|
@@ -2376,6 +2500,8 @@ declare global {
|
|
|
2376
2500
|
new (): HTMLTestePesquisaElement;
|
|
2377
2501
|
};
|
|
2378
2502
|
interface HTMLElementTagNameMap {
|
|
2503
|
+
"pesquisa-grid": HTMLPesquisaGridElement;
|
|
2504
|
+
"pesquisa-tree": HTMLPesquisaTreeElement;
|
|
2379
2505
|
"snk-actions-button": HTMLSnkActionsButtonElement;
|
|
2380
2506
|
"snk-actions-form": HTMLSnkActionsFormElement;
|
|
2381
2507
|
"snk-application": HTMLSnkApplicationElement;
|
|
@@ -2424,6 +2550,7 @@ declare global {
|
|
|
2424
2550
|
"snk-select-box": HTMLSnkSelectBoxElement;
|
|
2425
2551
|
"snk-simple-bar": HTMLSnkSimpleBarElement;
|
|
2426
2552
|
"snk-simple-crud": HTMLSnkSimpleCrudElement;
|
|
2553
|
+
"snk-simple-form-config": HTMLSnkSimpleFormConfigElement;
|
|
2427
2554
|
"snk-tab-config": HTMLSnkTabConfigElement;
|
|
2428
2555
|
"snk-taskbar": HTMLSnkTaskbarElement;
|
|
2429
2556
|
"taskbar-actions-button": HTMLTaskbarActionsButtonElement;
|
|
@@ -2431,6 +2558,44 @@ declare global {
|
|
|
2431
2558
|
}
|
|
2432
2559
|
}
|
|
2433
2560
|
declare namespace LocalJSX {
|
|
2561
|
+
interface PesquisaGrid {
|
|
2562
|
+
/**
|
|
2563
|
+
* Registros da grade
|
|
2564
|
+
*/
|
|
2565
|
+
"dataSource"?: Record[];
|
|
2566
|
+
/**
|
|
2567
|
+
* Campo que representa a descrição do registro
|
|
2568
|
+
*/
|
|
2569
|
+
"descriptionField"?: string;
|
|
2570
|
+
/**
|
|
2571
|
+
* Nome da entidade representada na grade
|
|
2572
|
+
*/
|
|
2573
|
+
"entityName"?: string;
|
|
2574
|
+
/**
|
|
2575
|
+
* Campos que representam as colunas da grade.
|
|
2576
|
+
*/
|
|
2577
|
+
"metadata"?: UnitMetadata;
|
|
2578
|
+
"onPesquisaGridSelectItem"?: (event: PesquisaGridCustomEvent<IOption>) => void;
|
|
2579
|
+
/**
|
|
2580
|
+
* Campo que representa a chave primária do registro
|
|
2581
|
+
*/
|
|
2582
|
+
"pkField"?: string;
|
|
2583
|
+
}
|
|
2584
|
+
interface PesquisaTree {
|
|
2585
|
+
/**
|
|
2586
|
+
* Define se permite seleção de items não analíticos
|
|
2587
|
+
*/
|
|
2588
|
+
"allowsNonAnalytic"?: boolean;
|
|
2589
|
+
/**
|
|
2590
|
+
* Argumentos que serão usados ao chamar a função treeLoader.
|
|
2591
|
+
*/
|
|
2592
|
+
"argument"?: string;
|
|
2593
|
+
"onPesquisaTreeSelectItem"?: (event: PesquisaTreeCustomEvent<IOption>) => void;
|
|
2594
|
+
/**
|
|
2595
|
+
* Função responsável por carregar a árvore hierárquica do componente
|
|
2596
|
+
*/
|
|
2597
|
+
"treeLoader"?: (text: string) => Promise<Array<ITreeItem>>;
|
|
2598
|
+
}
|
|
2434
2599
|
interface SnkActionsButton {
|
|
2435
2600
|
}
|
|
2436
2601
|
interface SnkActionsForm {
|
|
@@ -2448,6 +2613,10 @@ declare namespace LocalJSX {
|
|
|
2448
2613
|
* Usado para salvar as configurações dos blocos de construção.
|
|
2449
2614
|
*/
|
|
2450
2615
|
"configName"?: string;
|
|
2616
|
+
/**
|
|
2617
|
+
* Define se o componente deve usar o LockManager para controle de carregamento da aplicação
|
|
2618
|
+
*/
|
|
2619
|
+
"enableLockManagerLoadingApp"?: boolean;
|
|
2451
2620
|
/**
|
|
2452
2621
|
* Chave da configuração legado do formulário.
|
|
2453
2622
|
*/
|
|
@@ -2616,9 +2785,13 @@ declare namespace LocalJSX {
|
|
|
2616
2785
|
*/
|
|
2617
2786
|
"enableGridInsert"?: boolean;
|
|
2618
2787
|
/**
|
|
2619
|
-
*
|
|
2788
|
+
* Define se o componente deve usar o LockManager para controle de carregamento da aplicação
|
|
2789
|
+
*/
|
|
2790
|
+
"enableLockManagerLoadingComp"?: boolean;
|
|
2791
|
+
/**
|
|
2792
|
+
* Ativa o gerenciamento de locks na grade pela Taskbar.
|
|
2620
2793
|
*/
|
|
2621
|
-
"
|
|
2794
|
+
"enableLockManagerTaskbarClick"?: boolean;
|
|
2622
2795
|
/**
|
|
2623
2796
|
* Chave da configuração legado da barra de filtros.
|
|
2624
2797
|
*/
|
|
@@ -3032,6 +3205,10 @@ declare namespace LocalJSX {
|
|
|
3032
3205
|
* 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).
|
|
3033
3206
|
*/
|
|
3034
3207
|
"disablePersonalizedFilter"?: boolean;
|
|
3208
|
+
/**
|
|
3209
|
+
* Define se o componente deve usar o LockManager para controle de carregamento
|
|
3210
|
+
*/
|
|
3211
|
+
"enableLockManagerLoadingComp"?: boolean;
|
|
3035
3212
|
/**
|
|
3036
3213
|
* Chave da configuração legado da barra de filtros.
|
|
3037
3214
|
*/
|
|
@@ -3307,7 +3484,7 @@ declare namespace LocalJSX {
|
|
|
3307
3484
|
/**
|
|
3308
3485
|
* Define o valor do componente snk-filter-search
|
|
3309
3486
|
*/
|
|
3310
|
-
"value"?:
|
|
3487
|
+
"value"?: IOption2;
|
|
3311
3488
|
}
|
|
3312
3489
|
interface SnkFilterText {
|
|
3313
3490
|
/**
|
|
@@ -3499,9 +3676,13 @@ declare namespace LocalJSX {
|
|
|
3499
3676
|
*/
|
|
3500
3677
|
"enableGridInsert"?: boolean;
|
|
3501
3678
|
/**
|
|
3502
|
-
*
|
|
3679
|
+
* Define se o componente deve usar o LockManager para controle de carregamento da aplicação
|
|
3680
|
+
*/
|
|
3681
|
+
"enableLockManagerLoadingComp"?: boolean;
|
|
3682
|
+
/**
|
|
3683
|
+
* Ativa o gerenciamento de locks na grade pela Taskbar.
|
|
3503
3684
|
*/
|
|
3504
|
-
"
|
|
3685
|
+
"enableLockManagerTaskbarClick"?: boolean;
|
|
3505
3686
|
/**
|
|
3506
3687
|
* Chave da configuração legado da barra de filtros.
|
|
3507
3688
|
*/
|
|
@@ -3743,13 +3924,25 @@ declare namespace LocalJSX {
|
|
|
3743
3924
|
/**
|
|
3744
3925
|
* Controla o valor do componente.
|
|
3745
3926
|
*/
|
|
3746
|
-
"value"?: Array<
|
|
3927
|
+
"value"?: Array<IOption2|boolean|string|number|Date>;
|
|
3747
3928
|
}
|
|
3748
3929
|
interface SnkPesquisa {
|
|
3930
|
+
/**
|
|
3931
|
+
* Define se permite seleção de items não analíticos
|
|
3932
|
+
*/
|
|
3933
|
+
"allowsNonAnalytic"?: boolean;
|
|
3749
3934
|
/**
|
|
3750
3935
|
* Argumentos que serão usados ao chamar a função searchLoader.
|
|
3751
3936
|
*/
|
|
3752
3937
|
"argument"?: string;
|
|
3938
|
+
/**
|
|
3939
|
+
* Nome da entidade onde a pesquisa é aplicada.
|
|
3940
|
+
*/
|
|
3941
|
+
"entityName"?: string;
|
|
3942
|
+
/**
|
|
3943
|
+
* Define se a popup de pesquisa possuirá ou não modo Hierarquico.
|
|
3944
|
+
*/
|
|
3945
|
+
"isHierarchyEntity"?: boolean;
|
|
3753
3946
|
/**
|
|
3754
3947
|
* Função responsável em carregar os itens do componente snk-pesquisa.
|
|
3755
3948
|
*/
|
|
@@ -3757,7 +3950,11 @@ declare namespace LocalJSX {
|
|
|
3757
3950
|
/**
|
|
3758
3951
|
* Função disparada ao selecionar um item.
|
|
3759
3952
|
*/
|
|
3760
|
-
"selectItem"?: (option:
|
|
3953
|
+
"selectItem"?: (option: IOption2) => void;
|
|
3954
|
+
/**
|
|
3955
|
+
* Função responsável por carregar a árvore hierárquica do componente
|
|
3956
|
+
*/
|
|
3957
|
+
"treeLoader"?: (text: string) => Promise<any>;
|
|
3761
3958
|
}
|
|
3762
3959
|
interface SnkPrintSelector {
|
|
3763
3960
|
}
|
|
@@ -3769,7 +3966,7 @@ declare namespace LocalJSX {
|
|
|
3769
3966
|
/**
|
|
3770
3967
|
* Determina a opção selecionada.
|
|
3771
3968
|
*/
|
|
3772
|
-
"selectedOption"?:
|
|
3969
|
+
"selectedOption"?: IOption2 | string;
|
|
3773
3970
|
}
|
|
3774
3971
|
interface SnkSimpleBar {
|
|
3775
3972
|
/**
|
|
@@ -3820,7 +4017,14 @@ declare namespace LocalJSX {
|
|
|
3820
4017
|
* Ativa inserção de registros no modo grade.
|
|
3821
4018
|
*/
|
|
3822
4019
|
"enableGridInsert"?: boolean;
|
|
3823
|
-
|
|
4020
|
+
/**
|
|
4021
|
+
* Define se o componente deve usar o LockManager para controle de carregamento da aplicação
|
|
4022
|
+
*/
|
|
4023
|
+
"enableLockManagerLoadingComp"?: boolean;
|
|
4024
|
+
/**
|
|
4025
|
+
* Ativa o gerenciamento de locks na grade pela Taskbar.
|
|
4026
|
+
*/
|
|
4027
|
+
"enableLockManagerTaskbarClick"?: boolean;
|
|
3824
4028
|
/**
|
|
3825
4029
|
* Define o nome da entidade que o componente vai utilizar para fazer as operações de CRUD
|
|
3826
4030
|
*/
|
|
@@ -3898,6 +4102,17 @@ declare namespace LocalJSX {
|
|
|
3898
4102
|
*/
|
|
3899
4103
|
"useEnterLikeTab"?: boolean;
|
|
3900
4104
|
}
|
|
4105
|
+
interface SnkSimpleFormConfig {
|
|
4106
|
+
/**
|
|
4107
|
+
* Chave que representa a configuração do formulário
|
|
4108
|
+
*/
|
|
4109
|
+
"configName"?: string;
|
|
4110
|
+
/**
|
|
4111
|
+
* Data unit responsável pelos campos disponíveis
|
|
4112
|
+
*/
|
|
4113
|
+
"dataUnit"?: DataUnit;
|
|
4114
|
+
"onSnkConfigSaved"?: (event: SnkSimpleFormConfigCustomEvent<void>) => void;
|
|
4115
|
+
}
|
|
3901
4116
|
interface SnkTabConfig {
|
|
3902
4117
|
/**
|
|
3903
4118
|
* Responsável por flexibilizar e padronizar o uso de mensagens nos blocos de construção.
|
|
@@ -4043,6 +4258,8 @@ declare namespace LocalJSX {
|
|
|
4043
4258
|
interface TestePesquisa {
|
|
4044
4259
|
}
|
|
4045
4260
|
interface IntrinsicElements {
|
|
4261
|
+
"pesquisa-grid": PesquisaGrid;
|
|
4262
|
+
"pesquisa-tree": PesquisaTree;
|
|
4046
4263
|
"snk-actions-button": SnkActionsButton;
|
|
4047
4264
|
"snk-actions-form": SnkActionsForm;
|
|
4048
4265
|
"snk-application": SnkApplication;
|
|
@@ -4091,6 +4308,7 @@ declare namespace LocalJSX {
|
|
|
4091
4308
|
"snk-select-box": SnkSelectBox;
|
|
4092
4309
|
"snk-simple-bar": SnkSimpleBar;
|
|
4093
4310
|
"snk-simple-crud": SnkSimpleCrud;
|
|
4311
|
+
"snk-simple-form-config": SnkSimpleFormConfig;
|
|
4094
4312
|
"snk-tab-config": SnkTabConfig;
|
|
4095
4313
|
"snk-taskbar": SnkTaskbar;
|
|
4096
4314
|
"taskbar-actions-button": TaskbarActionsButton;
|
|
@@ -4101,6 +4319,8 @@ export { LocalJSX as JSX };
|
|
|
4101
4319
|
declare module "@stencil/core" {
|
|
4102
4320
|
export namespace JSX {
|
|
4103
4321
|
interface IntrinsicElements {
|
|
4322
|
+
"pesquisa-grid": LocalJSX.PesquisaGrid & JSXBase.HTMLAttributes<HTMLPesquisaGridElement>;
|
|
4323
|
+
"pesquisa-tree": LocalJSX.PesquisaTree & JSXBase.HTMLAttributes<HTMLPesquisaTreeElement>;
|
|
4104
4324
|
"snk-actions-button": LocalJSX.SnkActionsButton & JSXBase.HTMLAttributes<HTMLSnkActionsButtonElement>;
|
|
4105
4325
|
"snk-actions-form": LocalJSX.SnkActionsForm & JSXBase.HTMLAttributes<HTMLSnkActionsFormElement>;
|
|
4106
4326
|
"snk-application": LocalJSX.SnkApplication & JSXBase.HTMLAttributes<HTMLSnkApplicationElement>;
|
|
@@ -4149,6 +4369,7 @@ declare module "@stencil/core" {
|
|
|
4149
4369
|
"snk-select-box": LocalJSX.SnkSelectBox & JSXBase.HTMLAttributes<HTMLSnkSelectBoxElement>;
|
|
4150
4370
|
"snk-simple-bar": LocalJSX.SnkSimpleBar & JSXBase.HTMLAttributes<HTMLSnkSimpleBarElement>;
|
|
4151
4371
|
"snk-simple-crud": LocalJSX.SnkSimpleCrud & JSXBase.HTMLAttributes<HTMLSnkSimpleCrudElement>;
|
|
4372
|
+
"snk-simple-form-config": LocalJSX.SnkSimpleFormConfig & JSXBase.HTMLAttributes<HTMLSnkSimpleFormConfigElement>;
|
|
4152
4373
|
"snk-tab-config": LocalJSX.SnkTabConfig & JSXBase.HTMLAttributes<HTMLSnkTabConfigElement>;
|
|
4153
4374
|
"snk-taskbar": LocalJSX.SnkTaskbar & JSXBase.HTMLAttributes<HTMLSnkTaskbarElement>;
|
|
4154
4375
|
"taskbar-actions-button": LocalJSX.TaskbarActionsButton & JSXBase.HTMLAttributes<HTMLTaskbarActionsButtonElement>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { IFormCardConfig, IFormConfig, ITabConfig } from
|
|
2
|
-
import { ResourceFetcher } from
|
|
1
|
+
import { IFormCardConfig, IFormConfig, ITabConfig } from '@sankhyalabs/ezui/dist/types/utils/form/interfaces';
|
|
2
|
+
import { ResourceFetcher } from './resource-fetcher';
|
|
3
3
|
export declare class FormConfigFetcher extends ResourceFetcher {
|
|
4
4
|
private queryConfig;
|
|
5
5
|
constructor();
|
|
@@ -13,6 +13,12 @@ export declare class FormConfigFetcher extends ResourceFetcher {
|
|
|
13
13
|
fetchDefaultConfig(formName: string, resourceID: string): Promise<IFormConfig>;
|
|
14
14
|
private getPath;
|
|
15
15
|
fetchLegacyConfigurableForm(configName: string): Promise<IFormConfig>;
|
|
16
|
+
fetchSimpleFormConfig(configName: string): Promise<Array<string>>;
|
|
17
|
+
saveSimpleFormConfig(configName: string, fieldList: string[]): Promise<void>;
|
|
18
|
+
private processConfig;
|
|
19
|
+
private getResponseAsArray;
|
|
20
|
+
private buildSaveSimpleFormConfigPayload;
|
|
21
|
+
restoreFormConfig(configName: string): Promise<void>;
|
|
16
22
|
private buildLegacyConfigurableForm;
|
|
17
23
|
}
|
|
18
24
|
export declare enum UserConfigType {
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { IGridConfig } from '@sankhyalabs/ezui/.diststorybook/types/components/ez-grid/controller/EzGridController';
|
|
2
|
+
import { EzGridColumnConfig } from '@sankhyalabs/ezui/src/components/ez-grid/controller/EzGridController';
|
|
3
|
+
import { ITreeItem } from '@sankhyalabs/ezui/src/components/ez-tree/interfaces/ITreeItem';
|
|
4
|
+
import { DataType } from '@sankhyalabs/core';
|
|
2
5
|
export declare class PesquisaFetcher {
|
|
3
6
|
private _defaultPageSize;
|
|
4
7
|
private _templateByQuery;
|
|
@@ -9,6 +12,12 @@ export declare class PesquisaFetcher {
|
|
|
9
12
|
loadAdvancedSearch(entityName: string, argument: string, criteria?: SearchCriteria, searchOptions?: SearchOptions): Promise<any>;
|
|
10
13
|
addSearchListener(entityName: string, dataUnitID: DataUnitID, listener: ISearchListener): IRemoveSearchListener;
|
|
11
14
|
private applySearchListener;
|
|
15
|
+
loadPresentationConfig(entityName: string): Promise<string>;
|
|
16
|
+
savePresentationConfig(entityName: string, lastUsedMode: string): Promise<void>;
|
|
17
|
+
loadPesquisaGridConfig(entityName: string): Promise<IGridConfig | undefined>;
|
|
18
|
+
savePesquisaGridConfig(entityName: string, columns: Array<EzGridColumnConfig>): Promise<void>;
|
|
19
|
+
loadTree(entityName: string, argument: string, criteria?: SearchCriteria, searchOptions?: SearchOptions): Promise<Array<ITreeItem>>;
|
|
20
|
+
private buildLoadTreeRequestBody;
|
|
12
21
|
}
|
|
13
22
|
export interface SearchCriteria {
|
|
14
23
|
expression: string;
|
package/package.json
CHANGED
package/react/components.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import type { JSX } from '@sankhyalabs/sankhyablocks';
|
|
3
|
+
export declare const PesquisaGrid: import("react").ForwardRefExoticComponent<JSX.PesquisaGrid & Omit<import("react").HTMLAttributes<HTMLPesquisaGridElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLPesquisaGridElement>>;
|
|
4
|
+
export declare const PesquisaTree: import("react").ForwardRefExoticComponent<JSX.PesquisaTree & Omit<import("react").HTMLAttributes<HTMLPesquisaTreeElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLPesquisaTreeElement>>;
|
|
3
5
|
export declare const SnkActionsButton: import("react").ForwardRefExoticComponent<JSX.SnkActionsButton & Omit<import("react").HTMLAttributes<HTMLSnkActionsButtonElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLSnkActionsButtonElement>>;
|
|
4
6
|
export declare const SnkActionsForm: import("react").ForwardRefExoticComponent<JSX.SnkActionsForm & Omit<import("react").HTMLAttributes<HTMLSnkActionsFormElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLSnkActionsFormElement>>;
|
|
5
7
|
export declare const SnkApplication: import("react").ForwardRefExoticComponent<JSX.SnkApplication & Omit<import("react").HTMLAttributes<HTMLSnkApplicationElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLSnkApplicationElement>>;
|
|
@@ -48,6 +50,7 @@ export declare const SnkPrintSelector: import("react").ForwardRefExoticComponent
|
|
|
48
50
|
export declare const SnkSelectBox: import("react").ForwardRefExoticComponent<JSX.SnkSelectBox & Omit<import("react").HTMLAttributes<HTMLSnkSelectBoxElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLSnkSelectBoxElement>>;
|
|
49
51
|
export declare const SnkSimpleBar: import("react").ForwardRefExoticComponent<JSX.SnkSimpleBar & Omit<import("react").HTMLAttributes<HTMLSnkSimpleBarElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLSnkSimpleBarElement>>;
|
|
50
52
|
export declare const SnkSimpleCrud: import("react").ForwardRefExoticComponent<JSX.SnkSimpleCrud & Omit<import("react").HTMLAttributes<HTMLSnkSimpleCrudElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLSnkSimpleCrudElement>>;
|
|
53
|
+
export declare const SnkSimpleFormConfig: import("react").ForwardRefExoticComponent<JSX.SnkSimpleFormConfig & Omit<import("react").HTMLAttributes<HTMLSnkSimpleFormConfigElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLSnkSimpleFormConfigElement>>;
|
|
51
54
|
export declare const SnkTabConfig: import("react").ForwardRefExoticComponent<JSX.SnkTabConfig & Omit<import("react").HTMLAttributes<HTMLSnkTabConfigElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLSnkTabConfigElement>>;
|
|
52
55
|
export declare const SnkTaskbar: import("react").ForwardRefExoticComponent<JSX.SnkTaskbar & Omit<import("react").HTMLAttributes<HTMLSnkTaskbarElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLSnkTaskbarElement>>;
|
|
53
56
|
export declare const TaskbarActionsButton: import("react").ForwardRefExoticComponent<JSX.TaskbarActionsButton & Omit<import("react").HTMLAttributes<HTMLTaskbarActionsButtonElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLTaskbarActionsButtonElement>>;
|
package/react/components.js
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* auto-generated react proxies */
|
|
4
4
|
import { createReactComponent } from './react-component-lib';
|
|
5
|
+
export const PesquisaGrid = /*@__PURE__*/ createReactComponent('pesquisa-grid');
|
|
6
|
+
export const PesquisaTree = /*@__PURE__*/ createReactComponent('pesquisa-tree');
|
|
5
7
|
export const SnkActionsButton = /*@__PURE__*/ createReactComponent('snk-actions-button');
|
|
6
8
|
export const SnkActionsForm = /*@__PURE__*/ createReactComponent('snk-actions-form');
|
|
7
9
|
export const SnkApplication = /*@__PURE__*/ createReactComponent('snk-application');
|
|
@@ -50,6 +52,7 @@ export const SnkPrintSelector = /*@__PURE__*/ createReactComponent('snk-print-se
|
|
|
50
52
|
export const SnkSelectBox = /*@__PURE__*/ createReactComponent('snk-select-box');
|
|
51
53
|
export const SnkSimpleBar = /*@__PURE__*/ createReactComponent('snk-simple-bar');
|
|
52
54
|
export const SnkSimpleCrud = /*@__PURE__*/ createReactComponent('snk-simple-crud');
|
|
55
|
+
export const SnkSimpleFormConfig = /*@__PURE__*/ createReactComponent('snk-simple-form-config');
|
|
53
56
|
export const SnkTabConfig = /*@__PURE__*/ createReactComponent('snk-tab-config');
|
|
54
57
|
export const SnkTaskbar = /*@__PURE__*/ createReactComponent('snk-taskbar');
|
|
55
58
|
export const TaskbarActionsButton = /*@__PURE__*/ createReactComponent('taskbar-actions-button');
|
package/react/components.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"components.js","sourceRoot":"","sources":["../src/components.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB,kCAAkC;AAClC,OAAO,EAAE,oBAAoB,EAAE,MAAM,uBAAuB,CAAC;AAM7D,MAAM,CAAC,MAAM,gBAAgB,GAAG,aAAa,CAAA,oBAAoB,CAAoD,oBAAoB,CAAC,CAAC;AAC3I,MAAM,CAAC,MAAM,cAAc,GAAG,aAAa,CAAA,oBAAoB,CAAgD,kBAAkB,CAAC,CAAC;AACnI,MAAM,CAAC,MAAM,cAAc,GAAG,aAAa,CAAA,oBAAoB,CAAgD,iBAAiB,CAAC,CAAC;AAClI,MAAM,CAAC,MAAM,SAAS,GAAG,aAAa,CAAA,oBAAoB,CAAsC,YAAY,CAAC,CAAC;AAC9G,MAAM,CAAC,MAAM,gBAAgB,GAAG,aAAa,CAAA,oBAAoB,CAAoD,oBAAoB,CAAC,CAAC;AAC3I,MAAM,CAAC,MAAM,gBAAgB,GAAG,aAAa,CAAA,oBAAoB,CAAoD,oBAAoB,CAAC,CAAC;AAC3I,MAAM,CAAC,MAAM,eAAe,GAAG,aAAa,CAAA,oBAAoB,CAAkD,kBAAkB,CAAC,CAAC;AACtI,MAAM,CAAC,MAAM,OAAO,GAAG,aAAa,CAAA,oBAAoB,CAAkC,UAAU,CAAC,CAAC;AACtG,MAAM,CAAC,MAAM,qBAAqB,GAAG,aAAa,CAAA,oBAAoB,CAA8D,0BAA0B,CAAC,CAAC;AAChK,MAAM,CAAC,MAAM,eAAe,GAAG,aAAa,CAAA,oBAAoB,CAAkD,mBAAmB,CAAC,CAAC;AACvI,MAAM,CAAC,MAAM,WAAW,GAAG,aAAa,CAAA,oBAAoB,CAA0C,eAAe,CAAC,CAAC;AACvH,MAAM,CAAC,MAAM,aAAa,GAAG,aAAa,CAAA,oBAAoB,CAA8C,iBAAiB,CAAC,CAAC;AAC/H,MAAM,CAAC,MAAM,aAAa,GAAG,aAAa,CAAA,oBAAoB,CAA8C,iBAAiB,CAAC,CAAC;AAC/H,MAAM,CAAC,MAAM,sBAAsB,GAAG,aAAa,CAAA,oBAAoB,CAAgE,2BAA2B,CAAC,CAAC;AACpK,MAAM,CAAC,MAAM,kBAAkB,GAAG,aAAa,CAAA,oBAAoB,CAAwD,sBAAsB,CAAC,CAAC;AACnJ,MAAM,CAAC,MAAM,iBAAiB,GAAG,aAAa,CAAA,oBAAoB,CAAsD,qBAAqB,CAAC,CAAC;AAC/I,MAAM,CAAC,MAAM,cAAc,GAAG,aAAa,CAAA,oBAAoB,CAAgD,kBAAkB,CAAC,CAAC;AACnI,MAAM,CAAC,MAAM,qBAAqB,GAAG,aAAa,CAAA,oBAAoB,CAA8D,0BAA0B,CAAC,CAAC;AAChK,MAAM,CAAC,MAAM,sBAAsB,GAAG,aAAa,CAAA,oBAAoB,CAAgE,2BAA2B,CAAC,CAAC;AACpK,MAAM,CAAC,MAAM,YAAY,GAAG,aAAa,CAAA,oBAAoB,CAA4C,gBAAgB,CAAC,CAAC;AAC3H,MAAM,CAAC,MAAM,qBAAqB,GAAG,aAAa,CAAA,oBAAoB,CAA8D,0BAA0B,CAAC,CAAC;AAChK,MAAM,CAAC,MAAM,qBAAqB,GAAG,aAAa,CAAA,oBAAoB,CAA8D,0BAA0B,CAAC,CAAC;AAChK,MAAM,CAAC,MAAM,eAAe,GAAG,aAAa,CAAA,oBAAoB,CAAkD,mBAAmB,CAAC,CAAC;AACvI,MAAM,CAAC,MAAM,oBAAoB,GAAG,aAAa,CAAA,oBAAoB,CAA4D,yBAAyB,CAAC,CAAC;AAC5J,MAAM,CAAC,MAAM,aAAa,GAAG,aAAa,CAAA,oBAAoB,CAA8C,iBAAiB,CAAC,CAAC;AAC/H,MAAM,CAAC,MAAM,aAAa,GAAG,aAAa,CAAA,oBAAoB,CAA8C,iBAAiB,CAAC,CAAC;AAC/H,MAAM,CAAC,MAAM,cAAc,GAAG,aAAa,CAAA,oBAAoB,CAAgD,kBAAkB,CAAC,CAAC;AACnI,MAAM,CAAC,MAAM,kBAAkB,GAAG,aAAa,CAAA,oBAAoB,CAAwD,uBAAuB,CAAC,CAAC;AACpJ,MAAM,CAAC,MAAM,oBAAoB,GAAG,aAAa,CAAA,oBAAoB,CAA4D,yBAAyB,CAAC,CAAC;AAC5J,MAAM,CAAC,MAAM,eAAe,GAAG,aAAa,CAAA,oBAAoB,CAAkD,mBAAmB,CAAC,CAAC;AACvI,MAAM,CAAC,MAAM,oBAAoB,GAAG,aAAa,CAAA,oBAAoB,CAA4D,yBAAyB,CAAC,CAAC;AAC5J,MAAM,CAAC,MAAM,eAAe,GAAG,aAAa,CAAA,oBAAoB,CAAkD,mBAAmB,CAAC,CAAC;AACvI,MAAM,CAAC,MAAM,eAAe,GAAG,aAAa,CAAA,oBAAoB,CAAkD,mBAAmB,CAAC,CAAC;AACvI,MAAM,CAAC,MAAM,aAAa,GAAG,aAAa,CAAA,oBAAoB,CAA8C,iBAAiB,CAAC,CAAC;AAC/H,MAAM,CAAC,MAAM,OAAO,GAAG,aAAa,CAAA,oBAAoB,CAAkC,UAAU,CAAC,CAAC;AACtG,MAAM,CAAC,MAAM,aAAa,GAAG,aAAa,CAAA,oBAAoB,CAA8C,iBAAiB,CAAC,CAAC;AAC/H,MAAM,CAAC,MAAM,cAAc,GAAG,aAAa,CAAA,oBAAoB,CAAgD,kBAAkB,CAAC,CAAC;AACnI,MAAM,CAAC,MAAM,WAAW,GAAG,aAAa,CAAA,oBAAoB,CAA0C,eAAe,CAAC,CAAC;AACvH,MAAM,CAAC,MAAM,OAAO,GAAG,aAAa,CAAA,oBAAoB,CAAkC,UAAU,CAAC,CAAC;AACtG,MAAM,CAAC,MAAM,aAAa,GAAG,aAAa,CAAA,oBAAoB,CAA8C,iBAAiB,CAAC,CAAC;AAC/H,MAAM,CAAC,MAAM,eAAe,GAAG,aAAa,CAAA,oBAAoB,CAAkD,mBAAmB,CAAC,CAAC;AACvI,MAAM,CAAC,MAAM,qBAAqB,GAAG,aAAa,CAAA,oBAAoB,CAA8D,yBAAyB,CAAC,CAAC;AAC/J,MAAM,CAAC,MAAM,2BAA2B,GAAG,aAAa,CAAA,oBAAoB,CAA0E,gCAAgC,CAAC,CAAC;AACxL,MAAM,CAAC,MAAM,WAAW,GAAG,aAAa,CAAA,oBAAoB,CAA0C,cAAc,CAAC,CAAC;AACtH,MAAM,CAAC,MAAM,gBAAgB,GAAG,aAAa,CAAA,oBAAoB,CAAoD,oBAAoB,CAAC,CAAC;AAC3I,MAAM,CAAC,MAAM,YAAY,GAAG,aAAa,CAAA,oBAAoB,CAA4C,gBAAgB,CAAC,CAAC;AAC3H,MAAM,CAAC,MAAM,YAAY,GAAG,aAAa,CAAA,oBAAoB,CAA4C,gBAAgB,CAAC,CAAC;AAC3H,MAAM,CAAC,MAAM,aAAa,GAAG,aAAa,CAAA,oBAAoB,CAA8C,iBAAiB,CAAC,CAAC;AAC/H,MAAM,CAAC,MAAM,YAAY,GAAG,aAAa,CAAA,oBAAoB,CAA4C,gBAAgB,CAAC,CAAC;AAC3H,MAAM,CAAC,MAAM,UAAU,GAAG,aAAa,CAAA,oBAAoB,CAAwC,aAAa,CAAC,CAAC;AAClH,MAAM,CAAC,MAAM,oBAAoB,GAAG,aAAa,CAAA,oBAAoB,CAA4D,wBAAwB,CAAC,CAAC;AAC3J,MAAM,CAAC,MAAM,aAAa,GAAG,aAAa,CAAA,oBAAoB,CAA8C,gBAAgB,CAAC,CAAC"}
|
|
1
|
+
{"version":3,"file":"components.js","sourceRoot":"","sources":["../src/components.ts"],"names":[],"mappings":"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"}
|