mario-teacher-student-client 9000.0.21 → 9000.0.24
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/Button/AddButton.d.ts +1 -0
- package/dist/components/Header/HeaderComponent.d.ts +3 -0
- package/dist/containers/ActionPoint/components/CardItem/hooks/useCardItem.d.ts +1 -0
- package/dist/containers/ActionPoint/components/DashBoardView/hooks/useActionPointsDB.d.ts +1 -0
- package/dist/containers/ActionPoint/components/DashBoardView/hooks/useCard.d.ts +1 -0
- package/dist/containers/ActionPoint/components/TodoList/hooks/useTodoList.d.ts +1 -0
- package/dist/containers/ActionPoint/constants/types.d.ts +1 -1
- package/dist/containers/ConductOneToOne/hooks/useConductOne.d.ts +1 -0
- package/dist/containers/ConferenceRubric/hooks/useConferenceRubric.d.ts +2 -0
- package/dist/containers/ConferenceRubric/hooks/useCoutdownConference.d.ts +1 -1
- package/dist/containers/Home/hooks/getEventCalendar.d.ts +1 -0
- package/dist/containers/Home/hooks/getListEvent.d.ts +1 -0
- package/dist/containers/LearningStrategies/hook/useAddLearningStrategies.d.ts +7 -1
- package/dist/containers/MyOneToOne/hooks/useSessionCompleted.d.ts +1 -0
- package/dist/containers/MyOneToOne/hooks/useUpComing.d.ts +1 -0
- package/dist/containers/MyStudent/constants/types.d.ts +4 -2
- package/dist/index.css +1919 -1705
- package/dist/index.js +9181 -8636
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +9182 -8637
- package/dist/index.modern.js.map +1 -1
- package/dist/services/ConferenceService.d.ts +1 -0
- package/package.json +2 -2
|
@@ -17,6 +17,9 @@ interface Props {
|
|
|
17
17
|
hour?: number;
|
|
18
18
|
isTeacher?: boolean;
|
|
19
19
|
isClassReflection?: boolean;
|
|
20
|
+
isShowButtonEdit?: boolean;
|
|
21
|
+
onEditConference?: Function;
|
|
22
|
+
numberOfEdit?: boolean;
|
|
20
23
|
}
|
|
21
24
|
declare const HeaderComponent: FC<Props>;
|
|
22
25
|
export default HeaderComponent;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TypeTime } from "../configs/types";
|
|
2
|
-
declare const useCountdownConference: (typeTime: TypeTime, conferenceAnswerId: number) => {
|
|
2
|
+
declare const useCountdownConference: (typeTime: TypeTime, conferenceAnswerId: number, numberOfEdit: number) => {
|
|
3
3
|
hour: number;
|
|
4
4
|
minute: number;
|
|
5
5
|
second: number;
|
|
@@ -2,5 +2,6 @@ import { GoogleCalendarEvent } from "../constants/types";
|
|
|
2
2
|
declare const getListEvent: (formatedDate: string, teacherUserId: string | undefined) => {
|
|
3
3
|
isLoading: boolean;
|
|
4
4
|
response: GoogleCalendarEvent[] | undefined;
|
|
5
|
+
classFontSize: string;
|
|
5
6
|
};
|
|
6
7
|
export default getListEvent;
|
|
@@ -1,6 +1,12 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
bestfit: string;
|
|
3
|
+
content: string;
|
|
4
|
+
name: string;
|
|
5
|
+
id: number;
|
|
6
|
+
}
|
|
1
7
|
declare const useEditLearningStrategies: () => {
|
|
2
8
|
learningStrategyData: any;
|
|
3
|
-
selectLearning: (checked: boolean,
|
|
9
|
+
selectLearning: (checked: boolean, data: Props) => void;
|
|
4
10
|
handleChangeNote: (e: string, id: number) => void;
|
|
5
11
|
changeFilters: (e: string) => void;
|
|
6
12
|
filters: {
|
|
@@ -5,5 +5,6 @@ declare const useSessionCompleted: () => {
|
|
|
5
5
|
selectFavourite: (itemID: string) => Promise<void>;
|
|
6
6
|
changRouteQuestion: (studentId: number) => Promise<void>;
|
|
7
7
|
convertTimeSecond: (timeSecond: any) => string;
|
|
8
|
+
classFontSize: string;
|
|
8
9
|
};
|
|
9
10
|
export default useSessionCompleted;
|
|
@@ -20,5 +20,6 @@ declare const useUpComing: () => {
|
|
|
20
20
|
getAllNoteConference: (sessionId: any) => Promise<void>;
|
|
21
21
|
updateConferenceRubricPrivateNote: (privateNote: any, conferenceId: any) => Promise<void>;
|
|
22
22
|
deleteNoteConference: (noteId: any, sessionId: any) => Promise<void>;
|
|
23
|
+
classFontSize: string;
|
|
23
24
|
};
|
|
24
25
|
export default useUpComing;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { MaterialUiPickersDate } from "@material-ui/pickers/typings/date";
|
|
1
2
|
export interface FILTER_STUDENT_SESSION {
|
|
2
3
|
currentPage: number;
|
|
3
4
|
pageSize: number;
|
|
@@ -65,6 +66,7 @@ export interface CLASS_REFLECTION {
|
|
|
65
66
|
teacherAvatar?: string;
|
|
66
67
|
IsDescending?: boolean;
|
|
67
68
|
studentName?: string;
|
|
69
|
+
receiviedDate?: any;
|
|
68
70
|
}
|
|
69
71
|
export interface QuestionAnswer {
|
|
70
72
|
id: number;
|
|
@@ -93,8 +95,8 @@ export interface FILTER_LEARNING {
|
|
|
93
95
|
searchString: string;
|
|
94
96
|
sortBy: string;
|
|
95
97
|
sortOrder?: string;
|
|
96
|
-
startDate?:
|
|
97
|
-
endDate?:
|
|
98
|
+
startDate?: MaterialUiPickersDate | null;
|
|
99
|
+
endDate?: MaterialUiPickersDate | null;
|
|
98
100
|
studentId?: number;
|
|
99
101
|
}
|
|
100
102
|
export interface LEARNING_PLAN {
|