@integry/sdk 4.6.79 → 4.6.81

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.79",
3
+ "version": "4.6.81",
4
4
  "description": "Integry SDK",
5
5
  "main": "dist/umd/index.umd.js",
6
6
  "module": "dist/esm/index.csm.js",
@@ -1734,8 +1734,8 @@ class ActionForm extends Component<ActionFormPropsType, ActionFormStateType> {
1734
1734
  allowTagsInText=${el.allow_tags_in_text}
1735
1735
  labelTags=${getFieldLabelTags(el, false)}
1736
1736
  fieldId=${
1737
- el.activity_field?.id ||
1738
1737
  el.activity_field?.machine_name ||
1738
+ el.activity_field?.id ||
1739
1739
  el.id
1740
1740
  }
1741
1741
  refreshRootStepData=${
@@ -1777,7 +1777,9 @@ class ActionForm extends Component<ActionFormPropsType, ActionFormStateType> {
1777
1777
  html`
1778
1778
  <div id=${`integry-action-field-wrap-${
1779
1779
  el?.activity_field?.machine_name || ''
1780
- }`} class=${`integry-action-field-wrap`}>
1780
+ }`} class=${`integry-action-field-wrap ${
1781
+ el.is_visible ? '' : styles.fNotVisible
1782
+ }`}>
1781
1783
  <${ConfigureFieldWrapper}
1782
1784
  field=${el}
1783
1785
  stepId=${step.id}
@@ -1895,7 +1897,9 @@ class ActionForm extends Component<ActionFormPropsType, ActionFormStateType> {
1895
1897
  id=${`integry-action-field-wrap-${
1896
1898
  el?.activity_field?.machine_name || ''
1897
1899
  }`}
1898
- class=${`integry-action-field-wrap`}
1900
+ class=${`integry-action-field-wrap ${
1901
+ el.is_visible ? '' : styles.fNotVisible
1902
+ }`}
1899
1903
  >
1900
1904
  <${DynamicField}
1901
1905
  stepId=${selectedStep.id}
@@ -2007,7 +2011,9 @@ class ActionForm extends Component<ActionFormPropsType, ActionFormStateType> {
2007
2011
  id=${`integry-action-field-wrap-${
2008
2012
  el?.activity_field?.machine_name || ''
2009
2013
  }`}
2010
- class=${`integry-action-field-wrap`}
2014
+ class=${`integry-action-field-wrap ${
2015
+ el.is_visible ? '' : styles.fNotVisible
2016
+ }`}
2011
2017
  >
2012
2018
  <${DynamicTypedField}
2013
2019
  dynamicField=${el}
@@ -2302,9 +2308,9 @@ class ActionForm extends Component<ActionFormPropsType, ActionFormStateType> {
2302
2308
  isEditable=${el.is_editable}
2303
2309
  allowTagsInText=${el.allow_tags_in_text}
2304
2310
  fieldId=${
2311
+ el?.activity_field?.machine_name ||
2305
2312
  el.activity_field?.id ||
2306
- el.id ||
2307
- el?.activity_field?.machine_name
2313
+ el.id
2308
2314
  }
2309
2315
  refreshRootStepData=${
2310
2316
  this.refreshRootStepData