@arquimedes.co/eureka-forms 1.9.110 → 1.9.112-test
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/FormComponents/Step/CheckBoxStep/MaterialCheckBoxStep/MaterialCheckBoxStep.js +1 -1
- package/dist/FormComponents/Step/ClassifierSelectorStep/MaterialClassifierSelectorStep/MaterialClassifierSelectorStep.js +1 -1
- package/dist/FormComponents/Step/EntityValueStep/MaterialEntityValuePickerStep/MaterialEntityValuePickerStep.js +1 -1
- package/dist/FormComponents/Step/SelectorStep/MaterialSelectorStep/MaterialSelectorStep.js +1 -1
- package/dist/FormComponents/Step/TextAreaStep/MaterialTextAreaStep/MaterialTextAreaStep.js +1 -0
- package/package.json +1 -1
|
@@ -76,7 +76,7 @@ function CheckBox(_a) {
|
|
|
76
76
|
} }, "SEPARATOR"))] })));
|
|
77
77
|
}
|
|
78
78
|
else {
|
|
79
|
-
return (_jsxs(React.Fragment, { children: [renderCheckbox(), renderNested(), level === 0 && _jsx("div", { className: styles.separator })] }));
|
|
79
|
+
return (_jsxs(React.Fragment, { children: [renderCheckbox(), renderNested(), level === 0 && step.maxSize && (_jsx("div", { className: styles.separator }))] }));
|
|
80
80
|
}
|
|
81
81
|
}
|
|
82
82
|
function CheckBoxStep(props) {
|
|
@@ -105,7 +105,7 @@ function ClassifierSelector(_a) {
|
|
|
105
105
|
} }, "SEPARATOR"))] })));
|
|
106
106
|
}
|
|
107
107
|
else {
|
|
108
|
-
return (_jsxs(React.Fragment, { children: [renderSelect(), mapNestedOption(), level === 0 && _jsx("div", { className: styles.separator })] }));
|
|
108
|
+
return (_jsxs(React.Fragment, { children: [renderSelect(), mapNestedOption(), level === 0 && step.maxSize && (_jsx("div", { className: styles.separator }))] }));
|
|
109
109
|
}
|
|
110
110
|
}
|
|
111
111
|
export default ClassifierSelectorStep;
|
|
@@ -181,7 +181,7 @@ function EntityValuePicker(_a) {
|
|
|
181
181
|
} }, "SEPARATOR"))] })));
|
|
182
182
|
}
|
|
183
183
|
else {
|
|
184
|
-
return (_jsxs(React.Fragment, { children: [renderSelect(), mapNestedOption(), level === 0 && _jsx("div", { className: styles.separator })] }));
|
|
184
|
+
return (_jsxs(React.Fragment, { children: [renderSelect(), mapNestedOption(), level === 0 && step.maxSize && (_jsx("div", { className: styles.separator }))] }));
|
|
185
185
|
}
|
|
186
186
|
}
|
|
187
187
|
export default EntityValuePickerStep;
|
|
@@ -88,7 +88,7 @@ function Selector(_a) {
|
|
|
88
88
|
} }))] })));
|
|
89
89
|
}
|
|
90
90
|
else {
|
|
91
|
-
return (_jsxs(React.Fragment, { children: [renderSelect(), mapNestedOption(), level === 0 && _jsx("div", { className: styles.separator })] }));
|
|
91
|
+
return (_jsxs(React.Fragment, { children: [renderSelect(), mapNestedOption(), level === 0 && step.maxSize && (_jsx("div", { className: styles.separator }))] }));
|
|
92
92
|
}
|
|
93
93
|
}
|
|
94
94
|
function SelectorStep(props) {
|
|
@@ -145,6 +145,7 @@ function TextAreaStep(_a) {
|
|
|
145
145
|
} }));
|
|
146
146
|
} }) })) })), _jsx("div", __assign({ className: styles.errorMsg, style: {
|
|
147
147
|
color: formStyle.errorColor,
|
|
148
|
+
height: !postview && editable ? '0.75rem' : 0,
|
|
148
149
|
} }, { children: !!errors[step.id] && 'Este campo es obligatorio' }))] })));
|
|
149
150
|
}
|
|
150
151
|
else {
|
package/package.json
CHANGED