@integry/sdk 4.8.63 → 4.8.65
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/umd/index.umd.d.ts
CHANGED
|
@@ -277,6 +277,19 @@ type RenderFlowStepOptions = {
|
|
|
277
277
|
enableExpandedTextarea?: boolean;
|
|
278
278
|
requireAuthentication?: boolean;
|
|
279
279
|
};
|
|
280
|
+
type RenderFunctionFormOptions = {
|
|
281
|
+
containerId: string;
|
|
282
|
+
functionName: string;
|
|
283
|
+
onChange?: (val: any) => void;
|
|
284
|
+
value?: any;
|
|
285
|
+
tagsTree?: any;
|
|
286
|
+
hideMappingMenu?: boolean;
|
|
287
|
+
isReadOnly?: boolean;
|
|
288
|
+
fieldName?: string;
|
|
289
|
+
label?: string;
|
|
290
|
+
description?: string;
|
|
291
|
+
enableExpandedTextarea?: boolean;
|
|
292
|
+
};
|
|
280
293
|
type RenderMappingMenuOptions = {
|
|
281
294
|
containerId: string;
|
|
282
295
|
tagsTree: any;
|
|
@@ -840,6 +853,7 @@ declare class IntegryJS {
|
|
|
840
853
|
isReadOnly?: boolean | undefined;
|
|
841
854
|
hideMappingMenu?: boolean | undefined;
|
|
842
855
|
}) => void;
|
|
856
|
+
renderFunctionForm: (options?: RenderFunctionFormOptions) => void;
|
|
843
857
|
renderFunctionField: (containerId: string, functionFieldProps: FunctionFieldType) => void;
|
|
844
858
|
renderAppAuthorizations: (options?: RenderAppAuthrozationsOptions) => Promise<void>;
|
|
845
859
|
renderFlowStep: (options?: RenderFlowStepOptions) => void;
|