mario-core 2.9.366-release → 2.9.367-release
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/containers/Login/constant/types.d.ts +3 -0
- package/dist/containers/Login/views/Dashboard.d.ts +2 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +4 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/services/weeklyQuestService.d.ts +1 -0
- package/dist/types/WeeklyQuest.d.ts +37 -0
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -39740,7 +39740,9 @@ var DASHBOARD_TITLE = "Dashboard";
|
|
|
39740
39740
|
var ROOT_TITLE = "Mario Education";
|
|
39741
39741
|
var BG_IMAGES = ["images/landing-page.jpg", "images/landing-page2.jpg", "images/landing-page3.jpg"];
|
|
39742
39742
|
|
|
39743
|
-
var Dashboard = function Dashboard() {
|
|
39743
|
+
var Dashboard = function Dashboard(_ref) {
|
|
39744
|
+
var version = _ref.version;
|
|
39745
|
+
|
|
39744
39746
|
var _useState = useState(false),
|
|
39745
39747
|
isOpen = _useState[0],
|
|
39746
39748
|
setIsOpen = _useState[1];
|
|
@@ -39811,7 +39813,7 @@ var Dashboard = function Dashboard() {
|
|
|
39811
39813
|
}, React.createElement("img", {
|
|
39812
39814
|
src: getStaticFileUrl("/images/STUDENT.png"),
|
|
39813
39815
|
alt: "icon"
|
|
39814
|
-
})))));
|
|
39816
|
+
})))), React.createElement("span", null, version));
|
|
39815
39817
|
};
|
|
39816
39818
|
|
|
39817
39819
|
var Images = {
|