mario-education 2.4.160-level → 2.4.162-level
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/MarioFramework.Education/ClientApp/src/containers/Classes/components/StudentItemSelector.d.ts +2 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/ReadinessToLearn.d.ts +7 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/SwitchCounselor/hooks/useSwitchAssistant.d.ts +18 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/SwitchSecondaryTeacher/components/SwitchCounselorModal.d.ts +4 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/SwitchSecondaryTeacher/hooks/useSwitchCounselor.d.ts +18 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/UserRevert/hooks/useRevertUser.d.ts +13 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/UserRevert/views/RevertUser.d.ts +3 -0
- package/dist/MarioFramework.Education/ClientApp/src/index.d.ts +2 -1
- package/dist/MarioFramework.Education/ClientApp/src/services/revertUserService.d.ts +2 -0
- package/dist/index.css +2179 -2179
- package/dist/index.js +179 -17
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +179 -18
- package/dist/index.modern.js.map +1 -1
- package/package.json +98 -98
- /package/dist/MarioFramework.Education/ClientApp/src/utils/{serviceType.interface.d.ts → servicetype.interface.d.ts} +0 -0
|
@@ -6,6 +6,7 @@ interface Props {
|
|
|
6
6
|
studentDefault?: Student;
|
|
7
7
|
teacherUserId?: string;
|
|
8
8
|
placeholder?: string;
|
|
9
|
+
isDeleted?: boolean;
|
|
9
10
|
}
|
|
10
11
|
export interface Student {
|
|
11
12
|
studentId: number;
|
|
@@ -16,6 +17,7 @@ export interface Student {
|
|
|
16
17
|
value?: string;
|
|
17
18
|
gender?: string;
|
|
18
19
|
mtss?: string;
|
|
20
|
+
deletedAt?: string;
|
|
19
21
|
}
|
|
20
22
|
declare const StudentItemSelector: FC<Props>;
|
|
21
23
|
export default StudentItemSelector;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IOptions, IStudentAssistantItem } from "../utils/type.interface";
|
|
3
|
+
declare const useSwitchAssistant: () => {
|
|
4
|
+
userList: IStudentAssistantItem[];
|
|
5
|
+
totalItems: number;
|
|
6
|
+
filters: import("mario-core").Filter;
|
|
7
|
+
changeFilters: (updatedFilters: any) => void;
|
|
8
|
+
modal: import("react").MutableRefObject<any>;
|
|
9
|
+
userChoiced: IStudentAssistantItem;
|
|
10
|
+
options: IOptions[];
|
|
11
|
+
setAssistantChangeId: import("react").Dispatch<import("react").SetStateAction<string>>;
|
|
12
|
+
assistantChangeId: string;
|
|
13
|
+
removeData: (teacherUserId: string, studentId: number) => Promise<void>;
|
|
14
|
+
resetData: () => void;
|
|
15
|
+
choiceUser: (userChoiced: IStudentAssistantItem) => void;
|
|
16
|
+
onDeleteAssistant: (studentId: number) => Promise<void>;
|
|
17
|
+
};
|
|
18
|
+
export default useSwitchAssistant;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IOptions, IStudentCounselorItem } from "../utils/type.interface";
|
|
3
|
+
declare const useSwitchCounselor: () => {
|
|
4
|
+
userList: IStudentCounselorItem[];
|
|
5
|
+
totalItems: number;
|
|
6
|
+
filters: import("mario-core").Filter;
|
|
7
|
+
changeFilters: (updatedFilters: any) => void;
|
|
8
|
+
modal: import("react").MutableRefObject<any>;
|
|
9
|
+
userChoiced: IStudentCounselorItem;
|
|
10
|
+
options: IOptions[];
|
|
11
|
+
setCounselorChangeId: import("react").Dispatch<import("react").SetStateAction<string>>;
|
|
12
|
+
counselorChangeId: string;
|
|
13
|
+
removeData: (counselorId: string, studentId: number) => Promise<void>;
|
|
14
|
+
resetData: () => void;
|
|
15
|
+
choiceUser: (userChoiced: IStudentCounselorItem) => void;
|
|
16
|
+
onDeleteCounselor: (studentId: number) => Promise<void>;
|
|
17
|
+
};
|
|
18
|
+
export default useSwitchCounselor;
|
package/dist/MarioFramework.Education/ClientApp/src/containers/UserRevert/hooks/useRevertUser.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { Student } from "../../Classes/components/StudentItemSelector";
|
|
3
|
+
declare const useRevertUser: () => {
|
|
4
|
+
user: Student | null;
|
|
5
|
+
setUser: import("react").Dispatch<import("react").SetStateAction<Student | null>>;
|
|
6
|
+
handelRevertUser: (id: string) => Promise<void>;
|
|
7
|
+
userFrom: Student | null;
|
|
8
|
+
setUserFrom: import("react").Dispatch<import("react").SetStateAction<Student | null>>;
|
|
9
|
+
userTo: Student | null;
|
|
10
|
+
setUserTo: import("react").Dispatch<import("react").SetStateAction<Student | null>>;
|
|
11
|
+
handelMergeDataUser: () => Promise<void>;
|
|
12
|
+
};
|
|
13
|
+
export default useRevertUser;
|
|
@@ -36,4 +36,5 @@ import TemplateStartBuild from "./containers/TemplateSystem/views/TemplateStartB
|
|
|
36
36
|
import LoadLanguage from "./components/Loading/LoadLanguage";
|
|
37
37
|
import AdminTraining from "./containers/AdminTraining/views/AdminTraining";
|
|
38
38
|
import SurveyDashboard from "./containers/SurveyDashboard/views/SurveyDashboard";
|
|
39
|
-
|
|
39
|
+
import RevertUser from "./containers/UserRevert/views/RevertUser";
|
|
40
|
+
export { ClassList, ConferenceRubricList, ConferenceRubricDetail, SuggestionList, LearningStrategyList, SetupContainer, QuestionBankList, ReflectionFormList, ReflectionContainer, QuestionDetail, SubjectList, LearningSupportCategoryList, BadgeList, GoalExampleList, TutorialScreenContainer, FeedbackList, AssessmentList, QuestionBankContainer, SurveyQuestionContainer, QuestionCategoryList, AssignmentList, AssessmentAssignmentContainer, SessionTemplateContainer, SessionTemplateDetail, SessionTemplateGeneralClassDetail, CustomAlertList, CertificateContainer, CompareTeacher, AssetLog, SessionTemplateList, SessionTemplateGeneralClassList, Dashboard, LoadLanguage, AdminTraining, TemplateContainer, TemplateBuilderPage, TemplateStartBuild, SurveyDashboard, RevertUser };
|