@sankhyalabs/sankhyablocks 2.12.0 → 2.12.1
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.
|
@@ -1104,7 +1104,8 @@ export class SnkApplication {
|
|
|
1104
1104
|
"location": "global"
|
|
1105
1105
|
},
|
|
1106
1106
|
"IAppletCallerParams": {
|
|
1107
|
-
"location": "
|
|
1107
|
+
"location": "import",
|
|
1108
|
+
"path": "../../lib/applet-caller/applet-caller"
|
|
1108
1109
|
}
|
|
1109
1110
|
},
|
|
1110
1111
|
"return": "Promise<void>"
|
|
@@ -13,11 +13,11 @@ import { SnkMessageBuilder } from "../../lib/message/SnkMessageBuilder";
|
|
|
13
13
|
import { SnkFilterItemConfig } from "../snk-filter-bar/filter-item/snk-filter-item";
|
|
14
14
|
import { DefaultValuesFetcher } from "../../lib/http/data-fetcher/fetchers/default-values-fetcher";
|
|
15
15
|
import DataUnitFetcher from "../../lib/http/data-fetcher/fetchers/dataunit-fetcher";
|
|
16
|
+
import { IAppletCallerParams } from "../../lib/applet-caller/applet-caller";
|
|
16
17
|
import ParametersFetcher from "../../lib/http/data-fetcher/fetchers/parameters-fecher";
|
|
17
18
|
import GridConfigFetcher from "../../lib/http/data-fetcher/fetchers/grid-config-fetcher";
|
|
18
19
|
import AuthFetcher, { AutorizationType } from "../../lib/http/data-fetcher/fetchers/auth-fetcher";
|
|
19
20
|
import FilterBarConfigFetcher from "../../lib/http/data-fetcher/fetchers/filter-bar-config-fetcher";
|
|
20
|
-
import IAppletCallerParams from "../../lib/applet-caller/interfaces/IAppletCallerParams";
|
|
21
21
|
export declare class SnkApplication {
|
|
22
22
|
_parameters: ParametersFetcher;
|
|
23
23
|
_urlParams: Map<string, any>;
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
|
|
8
8
|
import { SnkMessageBuilder } from "./lib/message/SnkMessageBuilder";
|
|
9
9
|
import { AutorizationType } from "./lib/http/data-fetcher/fetchers/auth-fetcher";
|
|
10
|
+
import { IAppletCallerParams } from "./lib/applet-caller/applet-caller";
|
|
10
11
|
import { DataUnit, Filter } from "@sankhyalabs/core";
|
|
11
12
|
import { DialogType, MessageOptions } from "@sankhyalabs/ezui/dist/collection/utils";
|
|
12
13
|
import { IFieldConfig, IFormConfig, IRecordValidator } from "@sankhyalabs/ezui/dist/types/components/ez-form/interfaces";
|
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
import IAppletCallerParams from "./interfaces/IAppletCallerParams";
|
|
2
1
|
export default class AppletCaller {
|
|
3
2
|
static webConnectionCaller(port: string, methodName: string, params: IAppletCallerParams): void;
|
|
4
3
|
}
|
|
4
|
+
export interface IAppletCallerParams {
|
|
5
|
+
chaveArquivo: string;
|
|
6
|
+
permiteImprimir: string;
|
|
7
|
+
permiteExportar: string;
|
|
8
|
+
contentType: string;
|
|
9
|
+
}
|