@integry/sdk 4.6.80 → 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
|
@@ -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}
|