datastake-daf 0.6.725 → 0.6.727
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 +6 -3
- package/dist/hooks/index.js +19 -4658
- package/dist/layouts/index.js +6 -3
- package/package.json +1 -1
- package/public/assets/favicons/datastake-black.svg +13 -0
- package/public/assets/favicons/datastake-blue.svg +13 -0
- package/public/assets/favicons/datastake-small.svg +4 -0
- package/public/assets/favicons/datastake-smallBlue.svg +4 -0
- package/public/assets/favicons/datastake-white.svg +13 -0
- package/src/@daf/core/components/Sidenav/index.jsx +7 -1
- package/build/favicon.ico +0 -0
- package/build/logo192.png +0 -0
- package/build/logo512.png +0 -0
- package/build/manifest.json +0 -25
- package/build/robots.txt +0 -3
package/dist/components/index.js
CHANGED
|
@@ -45473,7 +45473,8 @@ function Sidenav(_ref) {
|
|
|
45473
45473
|
poweredByLogo,
|
|
45474
45474
|
hoverContentSecond,
|
|
45475
45475
|
t = s => s,
|
|
45476
|
-
isDatastake = false
|
|
45476
|
+
isDatastake = false,
|
|
45477
|
+
logoVariant = "white"
|
|
45477
45478
|
} = _ref;
|
|
45478
45479
|
return /*#__PURE__*/jsxRuntime.jsx(antd.ConfigProvider, {
|
|
45479
45480
|
theme: {
|
|
@@ -45513,7 +45514,7 @@ function Sidenav(_ref) {
|
|
|
45513
45514
|
children: [/*#__PURE__*/jsxRuntime.jsx("h6", {
|
|
45514
45515
|
children: t("Powered By")
|
|
45515
45516
|
}), /*#__PURE__*/jsxRuntime.jsx("img", {
|
|
45516
|
-
src: poweredByLogo || "/assets/
|
|
45517
|
+
src: poweredByLogo || "/assets/favicons/datastake-".concat(logoVariant, ".svg"),
|
|
45517
45518
|
alt: "logo"
|
|
45518
45519
|
})]
|
|
45519
45520
|
}) : null]
|
|
@@ -45688,9 +45689,11 @@ Sidenav.propTypes = {
|
|
|
45688
45689
|
topHoverSecond: PropTypes__default["default"].any,
|
|
45689
45690
|
hoverItemSecond: PropTypes__default["default"].any,
|
|
45690
45691
|
widthHoverSecond: PropTypes__default["default"].any,
|
|
45692
|
+
poweredByLogo: PropTypes__default["default"].any,
|
|
45691
45693
|
hoverContentSecond: PropTypes__default["default"].any,
|
|
45692
45694
|
t: PropTypes__default["default"].any,
|
|
45693
|
-
isDatastake: PropTypes__default["default"].any
|
|
45695
|
+
isDatastake: PropTypes__default["default"].any,
|
|
45696
|
+
logoVariant: PropTypes__default["default"].oneOf(["white", "black"])
|
|
45694
45697
|
};
|
|
45695
45698
|
|
|
45696
45699
|
function Applications(_ref) {
|