@integry/sdk 4.6.69 → 4.6.70

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integry/sdk",
3
- "version": "4.6.69",
3
+ "version": "4.6.70",
4
4
  "description": "Integry SDK",
5
5
  "main": "dist/umd/index.umd.js",
6
6
  "module": "dist/esm/index.csm.js",
@@ -1901,6 +1901,9 @@ class ActionForm extends Component<ActionFormPropsType, ActionFormStateType> {
1901
1901
  }
1902
1902
  }
1903
1903
  : null}
1904
+ tagsTree=${this.props.showMappingMenu
1905
+ ? this.props.tagsTree
1906
+ : null}
1904
1907
  />
1905
1908
  </div>
1906
1909
  `;
@@ -29,6 +29,7 @@ export type DynamicFieldsProps = {
29
29
  parentFieldChanged?: boolean;
30
30
  onChangeCallback?: (val: any) => void;
31
31
  objectValue?: any;
32
+ tagsTree?: any;
32
33
  } & StoreType;
33
34
 
34
35
  interface DynamicDataItem {
@@ -56,6 +57,7 @@ const DynamicFields = (props: DynamicFieldsProps) => {
56
57
  parentFieldChanged = false,
57
58
  onChangeCallback = () => null,
58
59
  objectValue = null,
60
+ tagsTree = null,
59
61
  } = props;
60
62
  const [dynamicItems, setDynamicItems] = useState<DynamicDataItem[]>([]);
61
63
  const [loading, setLoading] = useState<boolean>(true);
@@ -214,6 +216,7 @@ const DynamicFields = (props: DynamicFieldsProps) => {
214
216
  activityOutputDataRaw=${activityOutputDataRaw}
215
217
  refreshRootStepData=${refreshRootStepData}
216
218
  fieldId=${el.id || ''}
219
+ tagsTree=${tagsTree}
217
220
  />
218
221
  </div>
219
222
  `;