@integry/sdk 4.6.47 → 4.6.49
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 +6 -0
- package/dist/esm/index.csm.js +1 -1
- package/dist/umd/index.umd.d.ts +6 -0
- package/dist/umd/index.umd.js +1 -1
- package/package.json +1 -1
- package/src/components/form/FunctionField/styles.module.scss +3 -1
- package/src/components/form/ObjectField/index.ts +6 -0
- package/src/features/common/AuthSelectorV2/styles.module.scss +3 -0
- package/src/features/common/DynamicTypedField/index.ts +4 -1
- package/src/features/common/DynamicTypedField/styles.module.scss +6 -0
- package/src/features/common/FunctionForm/index.ts +2 -0
- package/src/index.ts +41 -0
- package/src/types/index.ts +5 -0
package/dist/esm/index.csm.d.ts
CHANGED
|
@@ -234,6 +234,11 @@ type RenderFlowStepOptions = {
|
|
|
234
234
|
tagsTree: any;
|
|
235
235
|
showMappingMenu?: boolean;
|
|
236
236
|
};
|
|
237
|
+
type RenderMappingMenuOptions = {
|
|
238
|
+
containerId: string;
|
|
239
|
+
tagsTree: any;
|
|
240
|
+
onTagSelect: (tag: any) => void;
|
|
241
|
+
};
|
|
237
242
|
type ShowFunctionOptions = {
|
|
238
243
|
params?: Record<string, any>;
|
|
239
244
|
payload?: Record<string, any>;
|
|
@@ -720,6 +725,7 @@ declare class IntegryJS {
|
|
|
720
725
|
multipurposeFieldProps: MultipurposeFieldType;
|
|
721
726
|
}) => void;
|
|
722
727
|
renderFlowStep: (options?: RenderFlowStepOptions) => void;
|
|
728
|
+
renderMappingMenu: (options?: RenderMappingMenuOptions) => void;
|
|
723
729
|
verifyAuthConfig: () => Promise<{
|
|
724
730
|
config_verified: boolean;
|
|
725
731
|
meta: any;
|