@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/umd/index.umd.d.ts
CHANGED
|
@@ -233,6 +233,11 @@ type RenderFlowStepOptions = {
|
|
|
233
233
|
tagsTree: any;
|
|
234
234
|
showMappingMenu?: boolean;
|
|
235
235
|
};
|
|
236
|
+
type RenderMappingMenuOptions = {
|
|
237
|
+
containerId: string;
|
|
238
|
+
tagsTree: any;
|
|
239
|
+
onTagSelect: (tag: any) => void;
|
|
240
|
+
};
|
|
236
241
|
type ShowFunctionOptions = {
|
|
237
242
|
params?: Record<string, any>;
|
|
238
243
|
payload?: Record<string, any>;
|
|
@@ -711,6 +716,7 @@ declare class IntegryJS {
|
|
|
711
716
|
multipurposeFieldProps: MultipurposeFieldType;
|
|
712
717
|
}) => void;
|
|
713
718
|
renderFlowStep: (options?: RenderFlowStepOptions) => void;
|
|
719
|
+
renderMappingMenu: (options?: RenderMappingMenuOptions) => void;
|
|
714
720
|
verifyAuthConfig: () => Promise<{
|
|
715
721
|
config_verified: boolean;
|
|
716
722
|
meta: any;
|