@integry/sdk 4.6.35 → 4.6.37
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/.vscode/launch.json +1 -1
- package/dist/esm/index.csm.d.ts +1 -1
- package/dist/esm/index.csm.js +1 -1
- package/dist/umd/index.umd.d.ts +1 -1
- package/dist/umd/index.umd.js +1 -1
- package/package.json +1 -1
- package/src/components/MultipurposeField/index.tsx +40 -0
- package/src/components/MultipurposeField/styles.module.scss +18 -0
- package/src/components/TagsMenu/index.ts +69 -9
- package/src/components/TagsMenu/styles.module.scss +11 -0
- package/src/features/containers/MarkeplaceApps/index.ts +2 -1
- package/src/features/containers/MarketplaceAppsCompact/index.ts +2 -1
- package/src/features/containers/MarketplaceAppsContainer/index.ts +4 -0
- package/src/index.ts +2 -0
- package/src/modules/api/index.ts +2 -1
package/.vscode/launch.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"request": "launch",
|
|
10
10
|
"name": "Open Integry SDK sample code (44).html",
|
|
11
11
|
// "file": "/Users/yasir/Downloads/Integry SDK sample code (44).html"
|
|
12
|
-
"file": "/Users/yasir/Downloads/
|
|
12
|
+
"file": "/Users/yasir/Downloads/Integry SDK sample code (47).html"
|
|
13
13
|
}
|
|
14
14
|
]
|
|
15
15
|
}
|
package/dist/esm/index.csm.d.ts
CHANGED
|
@@ -713,7 +713,7 @@ declare class IntegryJS {
|
|
|
713
713
|
renderMarketplace: (marketplaceConfig: MarketplaceConfig) => void;
|
|
714
714
|
renderAppFlows: (appFlowConfig: InitConfig) => void;
|
|
715
715
|
showApp: (appName: string, renderMode?: RenderModes, containerId?: string, layout?: Layouts) => void;
|
|
716
|
-
showApps: (renderMode?: RenderModes, containerId?: string, layout?: Layouts) => void;
|
|
716
|
+
showApps: (renderMode?: RenderModes, containerId?: string, layout?: Layouts, fetchAll?: boolean) => void;
|
|
717
717
|
showConnectedAccounts: (appName: string, renderMode?: RenderModes, containerId?: string, layout?: Layouts) => void;
|
|
718
718
|
renderMultipurposeField: ({ containerId, multipurposeFieldProps, }: {
|
|
719
719
|
containerId: string;
|