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.
@@ -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: '8px'
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "datastake-daf",
3
- "version": "0.6.594",
3
+ "version": "0.6.596",
4
4
  "dependencies": {
5
5
  "@ant-design/icons": "^5.2.5",
6
6
  "@antv/g2": "^5.1.1",
@@ -210,14 +210,14 @@ function AuthForm ({
210
210
  );
211
211
  }}
212
212
  </Form.Item>
213
- <div className="buttons" style={{ marginTop: '8px'}}>
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>
@@ -1,6 +1,8 @@
1
1
  import styled from "styled-components";
2
2
 
3
3
  export const SelectStyle = styled.div`
4
+ width: 100%;
5
+
4
6
  .ant-select-arrow {
5
7
  margin-top: 1px !important;
6
8
  }