@integry/sdk 4.8.63 → 4.8.64
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/esm/index.csm.d.ts +14 -0
- package/dist/esm/index.csm.js +1 -1
- package/dist/umd/index.umd.d.ts +14 -0
- package/dist/umd/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/esm/index.csm.d.ts
CHANGED
|
@@ -278,6 +278,19 @@ type RenderFlowStepOptions = {
|
|
|
278
278
|
enableExpandedTextarea?: boolean;
|
|
279
279
|
requireAuthentication?: boolean;
|
|
280
280
|
};
|
|
281
|
+
type RenderFunctionFormOptions = {
|
|
282
|
+
containerId: string;
|
|
283
|
+
functionName: string;
|
|
284
|
+
onChange?: (val: any) => void;
|
|
285
|
+
value?: any;
|
|
286
|
+
tagsTree?: any;
|
|
287
|
+
hideMappingMenu?: boolean;
|
|
288
|
+
isReadOnly?: boolean;
|
|
289
|
+
fieldName?: string;
|
|
290
|
+
label?: string;
|
|
291
|
+
description?: string;
|
|
292
|
+
enableExpandedTextarea?: boolean;
|
|
293
|
+
};
|
|
281
294
|
type RenderMappingMenuOptions = {
|
|
282
295
|
containerId: string;
|
|
283
296
|
tagsTree: any;
|
|
@@ -849,6 +862,7 @@ declare class IntegryJS {
|
|
|
849
862
|
isReadOnly?: boolean | undefined;
|
|
850
863
|
hideMappingMenu?: boolean | undefined;
|
|
851
864
|
}) => void;
|
|
865
|
+
renderFunctionForm: (options?: RenderFunctionFormOptions) => void;
|
|
852
866
|
renderFunctionField: (containerId: string, functionFieldProps: FunctionFieldType) => void;
|
|
853
867
|
renderAppAuthorizations: (options?: RenderAppAuthrozationsOptions) => Promise<void>;
|
|
854
868
|
renderFlowStep: (options?: RenderFlowStepOptions) => void;
|