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.
@@ -4,6 +4,7 @@ interface Props {
4
4
  label: string;
5
5
  backgroundColor?: string;
6
6
  handleClickOpen?: any;
7
+ width?: string;
7
8
  }
8
9
  declare const AddButton: FC<Props>;
9
10
  export default AddButton;
@@ -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;
@@ -3,5 +3,6 @@ declare const useCardItem: (actionPoints: any) => {
3
3
  actionId: number;
4
4
  handleChangeIsDone: (id: any) => Promise<void>;
5
5
  data: any;
6
+ classFontSize: string;
6
7
  };
7
8
  export default useCardItem;
@@ -4,5 +4,6 @@ declare const useActionPointsDB: () => {
4
4
  openDialog: import("react").MutableRefObject<any>;
5
5
  clickOpenModal: () => void;
6
6
  onReloading: () => void;
7
+ classFontSize: string;
7
8
  };
8
9
  export default useActionPointsDB;
@@ -4,5 +4,6 @@ declare const useCard: () => {
4
4
  clickOpenEdit: (actionPointId: any) => Promise<void>;
5
5
  handleChangeIsDone: (_id: any, onReloading: Function) => Promise<void>;
6
6
  refConduct: import("react").MutableRefObject<any>;
7
+ classFontSize: string;
7
8
  };
8
9
  export default useCard;
@@ -13,5 +13,6 @@ declare const useTodoList: () => {
13
13
  handleChangeSearchString: (e: React.ChangeEvent<HTMLInputElement>) => void;
14
14
  getActionPointList: () => Promise<void>;
15
15
  isTeacher: any;
16
+ classFontSize: string;
16
17
  };
17
18
  export default useTodoList;
@@ -18,7 +18,7 @@ export interface FORM_REQUEST {
18
18
  teacherId?: number;
19
19
  title?: string;
20
20
  class?: string;
21
- deadline?: number;
21
+ deadline?: number | null;
22
22
  notiCount?: number;
23
23
  notiDuration?: string;
24
24
  isDone?: boolean;
@@ -27,5 +27,6 @@ declare const useConductOne: () => {
27
27
  second: number;
28
28
  category: string;
29
29
  setCategory: import("react").Dispatch<import("react").SetStateAction<string>>;
30
+ classFontSize: string;
30
31
  };
31
32
  export default useConductOne;
@@ -46,5 +46,7 @@ declare const useConferenceRubric: () => {
46
46
  minute: number;
47
47
  second: number;
48
48
  startTime: string;
49
+ onEditConference: (cb: Function) => Promise<void>;
50
+ numberOfEdit: number;
49
51
  };
50
52
  export default useConferenceRubric;
@@ -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;
@@ -1,4 +1,5 @@
1
1
  declare const getEventFullCalendar: (userId: string, year: number, month: number) => {
2
2
  dataEvent: any;
3
+ classFontSize: string;
3
4
  };
4
5
  export default getEventFullCalendar;
@@ -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, id: number) => void;
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?: number;
97
- endDate?: number;
98
+ startDate?: MaterialUiPickersDate | null;
99
+ endDate?: MaterialUiPickersDate | null;
98
100
  studentId?: number;
99
101
  }
100
102
  export interface LEARNING_PLAN {