datastake-daf 0.6.595 → 0.6.597
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 +2 -2
- package/dist/layouts/index.js +868 -15
- package/package.json +1 -1
- package/src/@daf/core/components/AuthForm/index.jsx +2 -2
- package/src/@daf/layouts/AuthLayout/AuthLayout.stories.js +502 -0
- package/src/@daf/layouts/AuthLayout/components/Navbar/config.js +43 -0
- package/src/@daf/layouts/AuthLayout/components/Navbar/index.jsx +76 -0
- package/src/@daf/layouts/AuthLayout/components/Navbar/style.js +305 -0
- package/src/@daf/layouts/AuthLayout/index.jsx +85 -0
- package/src/@daf/layouts/AuthLayout/style.js +401 -0
- package/src/layouts.js +2 -1
package/dist/components/index.js
CHANGED
|
@@ -40697,7 +40697,7 @@ function AuthForm(_ref) {
|
|
|
40697
40697
|
}), /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
40698
40698
|
className: "buttons",
|
|
40699
40699
|
style: {
|
|
40700
|
-
marginTop:
|
|
40700
|
+
marginTop: 0
|
|
40701
40701
|
},
|
|
40702
40702
|
children: /*#__PURE__*/jsxRuntime.jsx(BorderedButton, {
|
|
40703
40703
|
onClick: prev,
|
|
@@ -40709,7 +40709,7 @@ function AuthForm(_ref) {
|
|
|
40709
40709
|
}) : /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
40710
40710
|
className: "buttons",
|
|
40711
40711
|
style: {
|
|
40712
|
-
marginTop: 0
|
|
40712
|
+
marginTop: isMultiStep ? '16px' : 0
|
|
40713
40713
|
},
|
|
40714
40714
|
children: /*#__PURE__*/jsxRuntime.jsx(BorderedButton, {
|
|
40715
40715
|
type: "primary",
|