mario-teacher-student-client 9000.0.23 → 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.
@@ -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;
@@ -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,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;
@@ -94,8 +95,8 @@ export interface FILTER_LEARNING {
94
95
  searchString: string;
95
96
  sortBy: string;
96
97
  sortOrder?: string;
97
- startDate?: number;
98
- endDate?: number;
98
+ startDate?: MaterialUiPickersDate | null;
99
+ endDate?: MaterialUiPickersDate | null;
99
100
  studentId?: number;
100
101
  }
101
102
  export interface LEARNING_PLAN {