datastake-daf 0.6.725 → 0.6.726
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 +3 -2
- package/dist/hooks/index.js +19 -4658
- package/dist/layouts/index.js +3 -2
- package/package.json +1 -1
- 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 +11 -4
- 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
|
@@ -45513,7 +45513,7 @@ function Sidenav(_ref) {
|
|
|
45513
45513
|
children: [/*#__PURE__*/jsxRuntime.jsx("h6", {
|
|
45514
45514
|
children: t("Powered By")
|
|
45515
45515
|
}), /*#__PURE__*/jsxRuntime.jsx("img", {
|
|
45516
|
-
src: poweredByLogo
|
|
45516
|
+
src: poweredByLogo ? poweredByLogo : logoVariant === "blue" ? "/assets/images/datastake-white.svg" : "/assets/favicons/datastake-blue.svg",
|
|
45517
45517
|
alt: "logo"
|
|
45518
45518
|
})]
|
|
45519
45519
|
}) : null]
|
|
@@ -45690,7 +45690,8 @@ Sidenav.propTypes = {
|
|
|
45690
45690
|
widthHoverSecond: PropTypes__default["default"].any,
|
|
45691
45691
|
hoverContentSecond: PropTypes__default["default"].any,
|
|
45692
45692
|
t: PropTypes__default["default"].any,
|
|
45693
|
-
isDatastake: PropTypes__default["default"].any
|
|
45693
|
+
isDatastake: PropTypes__default["default"].any,
|
|
45694
|
+
logoVariant: PropTypes__default["default"].oneOf(["blue", "white"])
|
|
45694
45695
|
};
|
|
45695
45696
|
|
|
45696
45697
|
function Applications(_ref) {
|