@integry/sdk 4.6.91 → 4.6.92
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 +5 -0
- package/dist/esm/index.csm.js +1 -1
- package/dist/umd/index.umd.d.ts +5 -0
- package/dist/umd/index.umd.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +8 -0
- package/src/types/index.ts +5 -0
package/dist/esm/index.csm.d.ts
CHANGED
|
@@ -240,6 +240,11 @@ type RenderMappingMenuOptions = {
|
|
|
240
240
|
containerId: string;
|
|
241
241
|
tagsTree: any;
|
|
242
242
|
onTagSelect: (tag: any) => void;
|
|
243
|
+
renderValuesTab?: boolean;
|
|
244
|
+
options?: {
|
|
245
|
+
[key: string]: any;
|
|
246
|
+
};
|
|
247
|
+
onOptionClick?: (option: any) => void;
|
|
243
248
|
};
|
|
244
249
|
type ShowFunctionOptions = {
|
|
245
250
|
params?: Record<string, any>;
|