datastake-daf 0.6.147 → 0.6.148
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/.vscode/settings.json +13 -0
- package/dist/components/index.css +1 -1
- package/dist/components/index.js +251 -155
- package/dist/utils/index.js +22 -5
- package/package.json +1 -1
- package/src/@daf/core/components/Dashboard/Globe/hook.js +1 -106
- package/src/@daf/core/components/Dashboard/Globe/index.jsx +1 -13
- package/src/@daf/core/components/Dashboard/Globe/style.js +0 -11
- package/src/@daf/core/components/Dashboard/Widget/KeyIndicators/index.jsx +4 -3
- package/src/@daf/core/components/Dashboard/Widget/ProjectWidget/ProjectWidget.stories.jsx +72 -0
- package/src/@daf/core/components/Dashboard/Widget/ProjectWidget/index.jsx +84 -0
- package/src/@daf/core/components/Dashboard/Widget/ProjectWidget/style.js +74 -0
- package/src/@daf/core/components/Dashboard/Widget/SDGWidget/SDGWidget.stories.jsx +33 -17
- package/src/@daf/core/components/Dashboard/Widget/SDGWidget/config.js +4 -22
- package/src/@daf/core/components/Dashboard/Widget/SDGWidget/index.jsx +3 -3
- package/src/@daf/core/components/Dashboard/Widget/index.jsx +95 -82
- package/src/@daf/core/components/ProgressTabs/_index.scss +1 -11
- package/src/constants/SDGs.js +92 -0
- package/src/constants/locales/en/translation.js +1357 -1269
- package/src/index.js +11 -6
package/src/index.js
CHANGED
|
@@ -26,10 +26,10 @@ export { default as CustomIcon } from "./@daf/core/components/Icon/CustomIcon.js
|
|
|
26
26
|
|
|
27
27
|
// Filters
|
|
28
28
|
export {
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
29
|
+
default as SelectFilters,
|
|
30
|
+
CustomSelect as SelectFiltersSelect,
|
|
31
|
+
Timeframe as SelectFiltersTimeFrame,
|
|
32
|
+
AjaxSelect as SelectFiltersAjaxSelect,
|
|
33
33
|
} from "./@daf/core/components/Filters/selectFilters/index.jsx";
|
|
34
34
|
export { default as SearchFilters } from "./@daf/core/components/Filters/searchFilters/index.jsx";
|
|
35
35
|
|
|
@@ -68,8 +68,10 @@ export { default as DashboardLayout } from "./@daf/core/components/Dashboard/Das
|
|
|
68
68
|
export { default as DafDashboardDetails } from "./@daf/core/components/Dashboard/Widget/Details/index.jsx";
|
|
69
69
|
export { default as KeyIndicatorsDetails } from "./@daf/core/components/Dashboard/Widget/Details/KeyIndicatorsDetails.jsx";
|
|
70
70
|
export { default as DetailsSection } from "./@daf/core/components/Dashboard/Widget/DetailsSection/index.jsx";
|
|
71
|
+
export { default as SDGWidget } from "./@daf/core/components/Dashboard/Widget/SDGWidget/index.jsx";
|
|
71
72
|
export { default as ComponentWithFocus } from "./@daf/core/components/Dashboard/ComponentWithFocus/index.jsx";
|
|
72
|
-
export { default as
|
|
73
|
+
export { default as ProjectWidget } from "./@daf/core/components/Dashboard/Widget/ProjectWidget/index.jsx";
|
|
74
|
+
// export { default as WidgetCatalogue } from "./@daf/core/components/Dashboard/Widget/WidgetCatalogue/index.jsx";
|
|
73
75
|
|
|
74
76
|
// Forms
|
|
75
77
|
export { default as ViewForm } from "./@daf/core/components/ViewForm/content.jsx";
|
|
@@ -100,7 +102,10 @@ export { default as ProjectVisualisationSelect } from "./@daf/core/components/Pr
|
|
|
100
102
|
export { default as ProjectVisualisationAlert } from "./@daf/core/components/ProjectVisualisation/Alert/index.js";
|
|
101
103
|
|
|
102
104
|
// Sidenav
|
|
103
|
-
export {
|
|
105
|
+
export {
|
|
106
|
+
default as Sidenav,
|
|
107
|
+
useMenu,
|
|
108
|
+
} from "./@daf/core/components/Sidenav/index.jsx";
|
|
104
109
|
export { default as SidenavMenu } from "./@daf/core/components/Sidenav/Menu.jsx";
|
|
105
110
|
|
|
106
111
|
// Other
|