@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/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -2055,6 +2055,11 @@ export class IntegryJS {
|
|
|
2055
2055
|
onTagSelect: () => {
|
|
2056
2056
|
// Placeholder function for future implementation
|
|
2057
2057
|
},
|
|
2058
|
+
renderValuesTab: false,
|
|
2059
|
+
options: [],
|
|
2060
|
+
onOptionClick: () => {
|
|
2061
|
+
// Placeholder function for future implementation
|
|
2062
|
+
},
|
|
2058
2063
|
},
|
|
2059
2064
|
) => {
|
|
2060
2065
|
const target = document.getElementById(options.containerId);
|
|
@@ -2074,6 +2079,9 @@ export class IntegryJS {
|
|
|
2074
2079
|
<${TagsMenu}
|
|
2075
2080
|
tagsTree=${options.tagsTree}
|
|
2076
2081
|
onSelect=${options.onTagSelect}
|
|
2082
|
+
renderValuesTab=${options.renderValuesTab}
|
|
2083
|
+
options=${options.options}
|
|
2084
|
+
onOptionClick=${options.onOptionClick}
|
|
2077
2085
|
/>
|
|
2078
2086
|
<//>
|
|
2079
2087
|
<//>
|
package/src/types/index.ts
CHANGED
|
@@ -304,6 +304,11 @@ export type RenderMappingMenuOptions = {
|
|
|
304
304
|
containerId: string;
|
|
305
305
|
tagsTree: any;
|
|
306
306
|
onTagSelect: (tag: any) => void;
|
|
307
|
+
renderValuesTab?: boolean;
|
|
308
|
+
options?: {
|
|
309
|
+
[key: string]: any;
|
|
310
|
+
};
|
|
311
|
+
onOptionClick?: (option: any) => void;
|
|
307
312
|
};
|
|
308
313
|
export type ShowFunctionOptions = {
|
|
309
314
|
params?: Record<string, any>;
|