datastake-daf 0.6.727 → 0.6.729
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/build/favicon.ico +0 -0
- package/build/logo192.png +0 -0
- package/build/logo512.png +0 -0
- package/build/manifest.json +25 -0
- package/build/robots.txt +3 -0
- package/dist/components/index.js +31 -30
- package/dist/hooks/index.js +4872 -192
- package/dist/layouts/index.js +3 -6
- package/dist/pages/index.js +15809 -252
- package/dist/services/index.js +213 -0
- package/dist/utils/index.js +23 -0
- package/package.json +1 -1
- package/src/@daf/core/components/Sidenav/index.jsx +1 -7
- package/src/@daf/core/components/Table/index.jsx +28 -22
- package/src/@daf/hooks/useFilters.js +1 -1
- package/src/@daf/hooks/useGetQueryParams.js +26 -0
- package/src/@daf/pages/dashboards/AllInformation/Stakeholders/columns.js +129 -0
- package/src/@daf/pages/dashboards/AllInformation/Stakeholders/config.js +31 -0
- package/src/@daf/pages/dashboards/AllInformation/Stakeholders/create.jsx +103 -0
- package/src/@daf/pages/dashboards/AllInformation/Stakeholders/index.jsx +140 -0
- package/src/@daf/pages/dashboards/UserDashboard/components/DataCompilation/index.jsx +0 -1
- package/src/@daf/pages/pages/TablePageWithTabs/index.jsx +128 -0
- package/src/@daf/services/LinkedSubjects.js +131 -0
- package/src/@daf/utils/object.js +12 -0
- package/src/hooks.js +2 -1
- package/src/pages.js +6 -1
- package/src/services.js +2 -1
- package/src/utils.js +1 -1
- package/public/assets/favicons/datastake-black.svg +0 -13
- package/public/assets/favicons/datastake-blue.svg +0 -13
- package/public/assets/favicons/datastake-small.svg +0 -4
- package/public/assets/favicons/datastake-smallBlue.svg +0 -4
- package/public/assets/favicons/datastake-white.svg +0 -13
package/dist/layouts/index.js
CHANGED
|
@@ -4973,8 +4973,7 @@ function Sidenav$1({
|
|
|
4973
4973
|
poweredByLogo,
|
|
4974
4974
|
hoverContentSecond,
|
|
4975
4975
|
t = s => s,
|
|
4976
|
-
isDatastake = false
|
|
4977
|
-
logoVariant = "white"
|
|
4976
|
+
isDatastake = false
|
|
4978
4977
|
}) {
|
|
4979
4978
|
return /*#__PURE__*/jsxRuntime.jsx(antd.ConfigProvider, {
|
|
4980
4979
|
theme: {
|
|
@@ -5014,7 +5013,7 @@ function Sidenav$1({
|
|
|
5014
5013
|
children: [/*#__PURE__*/jsxRuntime.jsx("h6", {
|
|
5015
5014
|
children: t("Powered By")
|
|
5016
5015
|
}), /*#__PURE__*/jsxRuntime.jsx("img", {
|
|
5017
|
-
src: poweredByLogo ||
|
|
5016
|
+
src: poweredByLogo || "/assets/images/datastake-white.svg",
|
|
5018
5017
|
alt: "logo"
|
|
5019
5018
|
})]
|
|
5020
5019
|
}) : null]
|
|
@@ -5188,11 +5187,9 @@ Sidenav$1.propTypes = {
|
|
|
5188
5187
|
topHoverSecond: PropTypes__default["default"].any,
|
|
5189
5188
|
hoverItemSecond: PropTypes__default["default"].any,
|
|
5190
5189
|
widthHoverSecond: PropTypes__default["default"].any,
|
|
5191
|
-
poweredByLogo: PropTypes__default["default"].any,
|
|
5192
5190
|
hoverContentSecond: PropTypes__default["default"].any,
|
|
5193
5191
|
t: PropTypes__default["default"].any,
|
|
5194
|
-
isDatastake: PropTypes__default["default"].any
|
|
5195
|
-
logoVariant: PropTypes__default["default"].oneOf(["white", "black"])
|
|
5192
|
+
isDatastake: PropTypes__default["default"].any
|
|
5196
5193
|
};
|
|
5197
5194
|
|
|
5198
5195
|
/* eslint-disable react/prop-types */
|