datastake-daf 0.6.594 → 0.6.596
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/components/index.js
CHANGED
|
@@ -40498,6 +40498,8 @@ const Navigation = _ref => {
|
|
|
40498
40498
|
};
|
|
40499
40499
|
|
|
40500
40500
|
const SelectStyle = dt.div`
|
|
40501
|
+
width: 100%;
|
|
40502
|
+
|
|
40501
40503
|
.ant-select-arrow {
|
|
40502
40504
|
margin-top: 1px !important;
|
|
40503
40505
|
}
|
|
@@ -40695,7 +40697,7 @@ function AuthForm(_ref) {
|
|
|
40695
40697
|
}), /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
40696
40698
|
className: "buttons",
|
|
40697
40699
|
style: {
|
|
40698
|
-
marginTop:
|
|
40700
|
+
marginTop: 0
|
|
40699
40701
|
},
|
|
40700
40702
|
children: /*#__PURE__*/jsxRuntime.jsx(BorderedButton, {
|
|
40701
40703
|
onClick: prev,
|
|
@@ -40707,7 +40709,7 @@ function AuthForm(_ref) {
|
|
|
40707
40709
|
}) : /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
40708
40710
|
className: "buttons",
|
|
40709
40711
|
style: {
|
|
40710
|
-
marginTop: 0
|
|
40712
|
+
marginTop: isMultiStep ? '16px' : 0
|
|
40711
40713
|
},
|
|
40712
40714
|
children: /*#__PURE__*/jsxRuntime.jsx(BorderedButton, {
|
|
40713
40715
|
type: "primary",
|
package/package.json
CHANGED
|
@@ -210,14 +210,14 @@ function AuthForm ({
|
|
|
210
210
|
);
|
|
211
211
|
}}
|
|
212
212
|
</Form.Item>
|
|
213
|
-
<div className="buttons" style={{ marginTop:
|
|
213
|
+
<div className="buttons" style={{ marginTop: 0}}>
|
|
214
214
|
<BorderedButton onClick={prev} block className="normal-br">
|
|
215
215
|
{t("Back")}
|
|
216
216
|
</BorderedButton>
|
|
217
217
|
</div>
|
|
218
218
|
</div>
|
|
219
219
|
) : (
|
|
220
|
-
<div className="buttons" style={{ marginTop: 0}}>
|
|
220
|
+
<div className="buttons" style={{ marginTop: isMultiStep ? '16px' : 0}}>
|
|
221
221
|
<BorderedButton type="primary" htmlType="submit" block className="normal-br">
|
|
222
222
|
{isMultiStep ? t("Next") : submitText}
|
|
223
223
|
</BorderedButton>
|