datastake-daf 0.6.583 → 0.6.585
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/layouts/index.js
CHANGED
|
@@ -8090,8 +8090,10 @@ const AuthLayout = ({
|
|
|
8090
8090
|
onBack,
|
|
8091
8091
|
backLabel = "Back"
|
|
8092
8092
|
}) => {
|
|
8093
|
-
|
|
8094
|
-
|
|
8093
|
+
const Wrapper = StyleComponent || "div";
|
|
8094
|
+
const wrapperClassName = formatClassname(["auth-layout", appName, containerClassName]);
|
|
8095
|
+
return /*#__PURE__*/jsxRuntime.jsxs(Wrapper, {
|
|
8096
|
+
className: wrapperClassName,
|
|
8095
8097
|
children: [showTopHeader && /*#__PURE__*/jsxRuntime.jsx(AuthNavbar, {
|
|
8096
8098
|
logo: logo,
|
|
8097
8099
|
appName: appName,
|
package/package.json
CHANGED
|
@@ -32,9 +32,7 @@ const AuthLayout = ({
|
|
|
32
32
|
]);
|
|
33
33
|
|
|
34
34
|
return (
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
<>
|
|
35
|
+
<Wrapper className={wrapperClassName}>
|
|
38
36
|
{showTopHeader && (
|
|
39
37
|
<AuthNavbar
|
|
40
38
|
logo={logo}
|
|
@@ -46,8 +44,8 @@ const AuthLayout = ({
|
|
|
46
44
|
backLabel={backLabel}
|
|
47
45
|
/>
|
|
48
46
|
)}
|
|
49
|
-
<Style>
|
|
50
|
-
|
|
47
|
+
<Style>
|
|
48
|
+
<div className="main-cont">
|
|
51
49
|
<div className={formatClassname(["d-cont left", leftClassName])}>
|
|
52
50
|
<div className="main">
|
|
53
51
|
{logo && (
|
|
@@ -78,7 +76,7 @@ const AuthLayout = ({
|
|
|
78
76
|
</div>
|
|
79
77
|
</div>
|
|
80
78
|
</Style>
|
|
81
|
-
|
|
79
|
+
</Wrapper>
|
|
82
80
|
);
|
|
83
81
|
};
|
|
84
82
|
|