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.js
CHANGED
|
@@ -39742,7 +39742,9 @@ var DASHBOARD_TITLE = "Dashboard";
|
|
|
39742
39742
|
var ROOT_TITLE = "Mario Education";
|
|
39743
39743
|
var BG_IMAGES = ["images/landing-page.jpg", "images/landing-page2.jpg", "images/landing-page3.jpg"];
|
|
39744
39744
|
|
|
39745
|
-
var Dashboard = function Dashboard() {
|
|
39745
|
+
var Dashboard = function Dashboard(_ref) {
|
|
39746
|
+
var version = _ref.version;
|
|
39747
|
+
|
|
39746
39748
|
var _useState = React.useState(false),
|
|
39747
39749
|
isOpen = _useState[0],
|
|
39748
39750
|
setIsOpen = _useState[1];
|
|
@@ -39813,7 +39815,7 @@ var Dashboard = function Dashboard() {
|
|
|
39813
39815
|
}, React__default.createElement("img", {
|
|
39814
39816
|
src: getStaticFileUrl("/images/STUDENT.png"),
|
|
39815
39817
|
alt: "icon"
|
|
39816
|
-
})))));
|
|
39818
|
+
})))), React__default.createElement("span", null, version));
|
|
39817
39819
|
};
|
|
39818
39820
|
|
|
39819
39821
|
var Images = {
|