mario-core 2.9.144-up → 2.9.145-up
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/Alerts/ReactNotification.d.ts +2 -2
- package/dist/components/Image/UploadImage.d.ts +2 -2
- package/dist/components/Modals/NotificationLogoutModal.d.ts +2 -2
- package/dist/components/Modals/NotificationModal.d.ts +2 -2
- package/dist/components/Others/QuitPrompt.d.ts +2 -2
- package/dist/components/Pagination/CustomPagination.d.ts +2 -2
- package/dist/components/Selectors/AcademicClassSelector.d.ts +2 -2
- package/dist/components/Selectors/CategorySelector.d.ts +2 -2
- package/dist/components/Selectors/CreatableSelector.d.ts +2 -2
- package/dist/components/Selectors/CustomSelector.d.ts +2 -2
- package/dist/components/Selectors/MailCategorySelectors.d.ts +2 -2
- package/dist/components/Selectors/QuestionCategorySelector.d.ts +2 -2
- package/dist/components/Selectors/QuestionTypeSelector.d.ts +2 -2
- package/dist/components/Selectors/StarRatingSelector.d.ts +2 -2
- package/dist/components/Selectors/SuggestionCategorySelector.d.ts +2 -2
- package/dist/components/Tabs/CustomTab.d.ts +2 -2
- package/dist/containers/Login/views/Dashboard.d.ts +2 -2
- package/dist/containers/Login/views/Login.d.ts +2 -2
- package/dist/containers/Login/views/block/BlockForgetPassword.d.ts +2 -2
- package/dist/containers/Login/views/block/BlockResetPassword.d.ts +2 -2
- package/dist/containers/Login/views/block/BlockTwoFactorLogin.d.ts +2 -2
- package/dist/containers/Login/views/block/QuoteContent.d.ts +2 -2
- package/dist/containers/Notifications/views/NotificationList.d.ts +2 -2
- package/dist/containers/Skill/components/SkillSelector.d.ts +2 -2
- package/dist/containers/User/views/UserDetail.d.ts +2 -2
- package/dist/containers/User/views/UserList.d.ts +2 -2
- package/dist/index.css +1 -13
- package/dist/index.js +671 -1221
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +671 -1221
- package/dist/index.modern.js.map +1 -1
- package/dist/layouts/TheContent.d.ts +1 -1
- package/dist/layouts/TheFooter.d.ts +1 -1
- package/dist/layouts/TheHeader.d.ts +2 -2
- package/dist/layouts/TheHeaderDropdown.d.ts +2 -2
- package/dist/layouts/TheLanguageDropdown.d.ts +2 -2
- package/dist/layouts/TheLayout.d.ts +2 -2
- package/dist/layouts/TheSidebar.d.ts +2 -2
- package/dist/redux/assessments/reducer.d.ts +2 -2
- package/dist/redux/assignment/reducer.d.ts +1 -1
- package/dist/redux/assistants/reducer.d.ts +1 -1
- package/dist/redux/badges/reducer.d.ts +1 -1
- package/dist/redux/bandScores/reducer.d.ts +1 -1
- package/dist/redux/certificate/reducer.d.ts +1 -1
- package/dist/redux/classes/reducer.d.ts +1 -1
- package/dist/redux/commons/reducer.d.ts +1 -1
- package/dist/redux/conferenceRubrics/reducer.d.ts +1 -1
- package/dist/redux/customAlert/reducer.d.ts +1 -1
- package/dist/redux/dashboard/reducer.d.ts +1 -1
- package/dist/redux/dataPlayer/reducer.d.ts +1 -1
- package/dist/redux/emailTemplates/reducer.d.ts +1 -1
- package/dist/redux/faqs/reducer.d.ts +1 -1
- package/dist/redux/feedback/reducer.d.ts +1 -1
- package/dist/redux/gallery/reducer.d.ts +1 -1
- package/dist/redux/goalExamples/reducer.d.ts +1 -1
- package/dist/redux/improveMyClass/reducer.d.ts +1 -1
- package/dist/redux/learningStrategies/reducer.d.ts +1 -1
- package/dist/redux/learningSupportCategories/reducer.d.ts +1 -1
- package/dist/redux/mailCategories/reducer.d.ts +1 -1
- package/dist/redux/navMobile/reducer.d.ts +1 -1
- package/dist/redux/notifications/reducer.d.ts +1 -1
- package/dist/redux/questionBanks/reducer.d.ts +1 -1
- package/dist/redux/questionByCategory/reducer.d.ts +1 -1
- package/dist/redux/questionCategory/reducer.d.ts +1 -1
- package/dist/redux/reflectionForms/reducer.d.ts +1 -1
- package/dist/redux/reflectionResults/reducer.d.ts +1 -1
- package/dist/redux/schoolBlankDays/reducer.d.ts +1 -1
- package/dist/redux/semester/reducer.d.ts +1 -1
- package/dist/redux/sessionPlayers/reducer.d.ts +1 -1
- package/dist/redux/sessionTemplateGeneralClasses/reducer.d.ts +1 -1
- package/dist/redux/sessionTemplates/reducer.d.ts +1 -1
- package/dist/redux/skills/reducer.d.ts +1 -1
- package/dist/redux/subjects/reducer.d.ts +1 -1
- package/dist/redux/suggestionBanks/reducer.d.ts +1 -1
- package/dist/redux/teacher/myStudent/reducer.d.ts +1 -1
- package/dist/redux/tutorialScreen/reducer.d.ts +2 -2
- package/dist/redux/users/reducer.d.ts +1 -1
- package/dist/redux/widget/reducer.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare const UploadImage: () => JSX.Element;
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const UploadImage: () => React.JSX.Element;
|
|
3
3
|
export default UploadImage;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare const NotificationLogoutModal: () => JSX.Element;
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const NotificationLogoutModal: () => React.JSX.Element;
|
|
3
3
|
export default NotificationLogoutModal;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare const NotificationModal: () => JSX.Element;
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const NotificationModal: () => React.JSX.Element;
|
|
3
3
|
export default NotificationModal;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export default function QuitPrompt(props: any): JSX.Element;
|
|
1
|
+
import React from "react";
|
|
2
|
+
export default function QuitPrompt(props: any): React.JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare const CustomPagination: (props: any) => JSX.Element;
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const CustomPagination: (props: any) => React.JSX.Element;
|
|
3
3
|
export default CustomPagination;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare const AcademicClassSelector: (props: any) => JSX.Element;
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const AcademicClassSelector: (props: any) => React.JSX.Element;
|
|
3
3
|
export default AcademicClassSelector;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare const CategorySelector: ({ value, ...rest }: any) => JSX.Element;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const CategorySelector: ({ value, ...rest }: any) => React.JSX.Element;
|
|
3
3
|
export default CategorySelector;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare const CreatableSelector: (props: any) => JSX.Element;
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const CreatableSelector: (props: any) => React.JSX.Element;
|
|
3
3
|
export default CreatableSelector;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare const CustomSelector: ({ defaultValue, options, isDisabled, scrollBottom, ...rest }: any) => JSX.Element;
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const CustomSelector: ({ defaultValue, options, isDisabled, scrollBottom, ...rest }: any) => React.JSX.Element;
|
|
3
3
|
export default CustomSelector;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare const MailCategorySelector: (props: any) => JSX.Element;
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const MailCategorySelector: (props: any) => React.JSX.Element;
|
|
3
3
|
export default MailCategorySelector;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare const QuestionCategorySelector: (props: any) => JSX.Element;
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const QuestionCategorySelector: (props: any) => React.JSX.Element;
|
|
3
3
|
export default QuestionCategorySelector;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare const QuestionTypeSelector: (props: any) => JSX.Element;
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const QuestionTypeSelector: (props: any) => React.JSX.Element;
|
|
3
3
|
export default QuestionTypeSelector;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare const StarRatingSelector: (props: any) => JSX.Element;
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const StarRatingSelector: (props: any) => React.JSX.Element;
|
|
3
3
|
export default StarRatingSelector;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare const SuggestionCategorySelector: (props: any) => JSX.Element;
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const SuggestionCategorySelector: (props: any) => React.JSX.Element;
|
|
3
3
|
export default SuggestionCategorySelector;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare const CustomTabs: (props: any) => JSX.Element;
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const CustomTabs: (props: any) => React.JSX.Element;
|
|
3
3
|
export default CustomTabs;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare const Dashboard: () => JSX.Element;
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const Dashboard: () => React.JSX.Element;
|
|
3
3
|
export default Dashboard;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
import React from "react";
|
|
2
2
|
interface loginProps {
|
|
3
3
|
isLogin?: boolean;
|
|
4
4
|
isForgotPassword?: boolean;
|
|
5
5
|
isResetPassword?: boolean;
|
|
6
6
|
isLoginTwoFactor?: boolean;
|
|
7
7
|
}
|
|
8
|
-
declare const Login: (props: loginProps) => JSX.Element;
|
|
8
|
+
declare const Login: (props: loginProps) => React.JSX.Element;
|
|
9
9
|
export default Login;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare const BlockForgetPassword: () => JSX.Element;
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const BlockForgetPassword: () => React.JSX.Element;
|
|
3
3
|
export default BlockForgetPassword;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare const BlockResetPassword: () => JSX.Element;
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const BlockResetPassword: () => React.JSX.Element;
|
|
3
3
|
export default BlockResetPassword;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare const BlockTwoFactorLogin: () => JSX.Element;
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const BlockTwoFactorLogin: () => React.JSX.Element;
|
|
3
3
|
export default BlockTwoFactorLogin;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare const QuoteContent: () => JSX.Element;
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const QuoteContent: () => React.JSX.Element;
|
|
3
3
|
export default QuoteContent;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare const NotificationList: () => JSX.Element;
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const NotificationList: () => React.JSX.Element;
|
|
3
3
|
export default NotificationList;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare const SkillSelector: (props: any) => JSX.Element;
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const SkillSelector: (props: any) => React.JSX.Element;
|
|
3
3
|
export default SkillSelector;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare const UserDetail: () => JSX.Element;
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const UserDetail: () => React.JSX.Element;
|
|
3
3
|
export default UserDetail;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare const UserList: () => JSX.Element;
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const UserList: () => React.JSX.Element;
|
|
3
3
|
export default UserList;
|
package/dist/index.css
CHANGED
|
@@ -294,19 +294,7 @@
|
|
|
294
294
|
._jOY7o {
|
|
295
295
|
background-size: cover;
|
|
296
296
|
opacity: 0;
|
|
297
|
-
|
|
298
|
-
animation: _wnn2_ 20s step-start infinite 0s; }
|
|
299
|
-
|
|
300
|
-
@-webkit-keyframes _wnn2_ {
|
|
301
|
-
0% {
|
|
302
|
-
opacity: 0;
|
|
303
|
-
background-image: url("~/public/images/landing-page.jpg"); }
|
|
304
|
-
50% {
|
|
305
|
-
opacity: 1;
|
|
306
|
-
background-image: url("~/public/images/landing-page2.jpg"); }
|
|
307
|
-
100% {
|
|
308
|
-
opacity: 2;
|
|
309
|
-
background-image: url("~/public/images/landing-page3.jpg"); } }
|
|
297
|
+
animation: _wnn2_ 20s step-start infinite 0s; }
|
|
310
298
|
|
|
311
299
|
@keyframes _wnn2_ {
|
|
312
300
|
0% {
|