mario-teacher-student-client 9000.0.23 → 9000.0.26

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.
Files changed (58) hide show
  1. package/dist/components/Card/CardItem.d.ts +2 -1
  2. package/dist/components/Card/CardSwitch.d.ts +2 -1
  3. package/dist/components/Circle/Circle.d.ts +2 -1
  4. package/dist/components/Circle/ItemCircle.d.ts +2 -1
  5. package/dist/components/Header/HeaderComponent.d.ts +3 -0
  6. package/dist/components/Input/TextFieldComponent.d.ts +2 -1
  7. package/dist/containers/AboutMyLearning/hook/useAboutMyLearning.d.ts +1 -0
  8. package/dist/containers/Accommodation/hook/useAccommodation.d.ts +1 -0
  9. package/dist/containers/ActionPoint/components/CardItem/hooks/useCardItem.d.ts +1 -0
  10. package/dist/containers/ActionPoint/components/DashBoardView/hooks/useActionPointsDB.d.ts +1 -0
  11. package/dist/containers/ActionPoint/components/DashBoardView/hooks/useCard.d.ts +1 -0
  12. package/dist/containers/ActionPoint/components/TodoList/hooks/useTodoList.d.ts +1 -0
  13. package/dist/containers/ActivityCircle/hooks/useTotalActivity.d.ts +1 -0
  14. package/dist/containers/ConductOneToOne/components/ConductTop/ConductTop.d.ts +1 -0
  15. package/dist/containers/ConferenceRubric/components/RubricTable.d.ts +1 -0
  16. package/dist/containers/ConferenceRubric/components/StartRubric.d.ts +1 -0
  17. package/dist/containers/ConferenceRubric/hooks/useConferenceRubric.d.ts +3 -0
  18. package/dist/containers/ConferenceRubric/hooks/useCoutdownConference.d.ts +1 -1
  19. package/dist/containers/FriendCircle/hooks/useTotalFriends.d.ts +1 -0
  20. package/dist/containers/Goals/components/GoalProgress.d.ts +5 -1
  21. package/dist/containers/Goals/hook/useGoals.d.ts +1 -0
  22. package/dist/containers/Home/components/CurrentFullCalendar.d.ts +1 -0
  23. package/dist/containers/Home/hooks/getEventCalendar.d.ts +1 -0
  24. package/dist/containers/Home/hooks/getListEvent.d.ts +1 -0
  25. package/dist/containers/LearningStrategies/hook/useAddLearningStrategies.d.ts +3 -2
  26. package/dist/containers/LearningStrategies/hook/useEditLearningStrategies.d.ts +1 -0
  27. package/dist/containers/MyClassReflection/hooks/useClassReflectionList.d.ts +1 -0
  28. package/dist/containers/MyStudent/components/InformationUser.d.ts +1 -1
  29. package/dist/containers/MyStudent/components/NewOverview/Chat/view/ChartOneToOne.d.ts +2 -1
  30. package/dist/containers/MyStudent/components/NewOverview/Chat/view/ChatClassReflection.d.ts +2 -1
  31. package/dist/containers/MyStudent/components/NewOverview/Chat/view/ChatConference.d.ts +2 -1
  32. package/dist/containers/MyStudent/components/NewOverview/Chat/view/ChatLearningProgress.d.ts +2 -1
  33. package/dist/containers/MyStudent/components/NewOverview/Chat/view/ReadinessToLearn.d.ts +2 -1
  34. package/dist/containers/MyStudent/components/NewOverview/TopLearningStrategies/view/TopLearningStrategiesChart.d.ts +5 -1
  35. package/dist/containers/MyStudent/components/OverviewTop.d.ts +1 -0
  36. package/dist/containers/MyStudent/constants/types.d.ts +3 -2
  37. package/dist/containers/MyStudent/hooks/useClassReflectionList.d.ts +1 -0
  38. package/dist/containers/MyStudent/hooks/useLearningPlanList.d.ts +1 -0
  39. package/dist/containers/MyStudent/hooks/useOverview.d.ts +1 -0
  40. package/dist/containers/MyStudent/hooks/useResultReflection.d.ts +1 -0
  41. package/dist/containers/MyStudent/hooks/useStartReflection.d.ts +1 -0
  42. package/dist/containers/MyStudent/hooks/useStudentConference.d.ts +1 -0
  43. package/dist/containers/MyStudent/hooks/useStudentHistory.d.ts +1 -0
  44. package/dist/containers/MyStudent/hooks/useStudentList.d.ts +1 -0
  45. package/dist/containers/MyStudent/hooks/useStudentOneToOne.d.ts +1 -0
  46. package/dist/containers/MyStudent/hooks/useStudentToDo.d.ts +1 -0
  47. package/dist/containers/PersonalLearningPlan/PersonalInterests/components/ListPersonalInterestHook.d.ts +1 -0
  48. package/dist/containers/PersonalLearningPlan/components/PersonalLearningGoal/usePersonalInterest.d.ts +1 -0
  49. package/dist/containers/SettingPageV1/hook/useSettingPage.d.ts +2 -0
  50. package/dist/containers/StrengthsAndChallenges/hook/useStrengthsChallenges.d.ts +1 -0
  51. package/dist/containers/ThingTeachersCanHelp/hook/useThingTeachersCanHelp.d.ts +1 -0
  52. package/dist/index.css +2454 -1732
  53. package/dist/index.js +9518 -8408
  54. package/dist/index.js.map +1 -1
  55. package/dist/index.modern.js +9518 -8408
  56. package/dist/index.modern.js.map +1 -1
  57. package/dist/services/ConferenceService.d.ts +1 -0
  58. package/package.json +1 -1
@@ -12,6 +12,7 @@ interface Props {
12
12
  isTeacher?: boolean;
13
13
  isAllowedEdit?: boolean;
14
14
  isAccommodationIEP?: boolean;
15
+ classFontSize?: any;
15
16
  }
16
- declare const CardItem: ({ title, description, status, id, handleEdit, note, contentWidth, handleDelete, isTeacher, isAllowedEdit, isAccommodationIEP }: Props) => JSX.Element;
17
+ declare const CardItem: ({ title, description, status, id, handleEdit, note, contentWidth, handleDelete, isTeacher, isAllowedEdit, isAccommodationIEP, classFontSize }: Props) => JSX.Element;
17
18
  export default CardItem;
@@ -6,6 +6,7 @@ interface Props {
6
6
  isAllowedEdit?: boolean;
7
7
  updateAllow: Function;
8
8
  isTeacher?: boolean;
9
+ classFontSize?: any;
9
10
  }
10
- declare const CardSwitch: ({ title, handleClickOpen, isAllowedEdit, updateAllow, isTeacher }: Props) => JSX.Element;
11
+ declare const CardSwitch: ({ title, handleClickOpen, isAllowedEdit, updateAllow, isTeacher, classFontSize }: Props) => JSX.Element;
11
12
  export default CardSwitch;
@@ -6,6 +6,7 @@ interface Props {
6
6
  width: number;
7
7
  height: number;
8
8
  key?: number;
9
+ classFontSize?: any;
9
10
  }
10
- declare const Circle: ({ title, numberFriend, width, height, background, key }: Props) => JSX.Element;
11
+ declare const Circle: ({ title, numberFriend, width, height, background, key, classFontSize }: Props) => JSX.Element;
11
12
  export default Circle;
@@ -2,6 +2,7 @@
2
2
  interface Props {
3
3
  background: string;
4
4
  title: string;
5
+ classFontSize?: any;
5
6
  }
6
- declare const ItemCircle: ({ background, title }: Props) => JSX.Element;
7
+ declare const ItemCircle: ({ background, title, classFontSize }: Props) => JSX.Element;
7
8
  export default ItemCircle;
@@ -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;
@@ -4,6 +4,7 @@ interface Props {
4
4
  valueText: string;
5
5
  onChangeQuestionAnswer?: (questionId: number, value: string) => void;
6
6
  isPageResult?: boolean;
7
+ isPageSessionResult?: boolean;
7
8
  }
8
- declare const TextFieldComponent: ({ questionId, valueText, onChangeQuestionAnswer, isPageResult }: Props) => JSX.Element;
9
+ declare const TextFieldComponent: ({ questionId, valueText, onChangeQuestionAnswer, isPageResult, isPageSessionResult }: Props) => JSX.Element;
9
10
  export default TextFieldComponent;
@@ -22,5 +22,6 @@ declare const useAboutMyLearning: () => {
22
22
  title: string;
23
23
  }[];
24
24
  }>>;
25
+ classFontSize: string;
25
26
  };
26
27
  export default useAboutMyLearning;
@@ -30,5 +30,6 @@ declare const useAccommodation: () => {
30
30
  studentId: any;
31
31
  type: string;
32
32
  };
33
+ classFontSize: string;
33
34
  };
34
35
  export default useAccommodation;
@@ -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;
@@ -1,4 +1,5 @@
1
1
  declare const useTotalActivity: () => {
2
2
  totalActivity: any;
3
+ classFontSize: string;
3
4
  };
4
5
  export default useTotalActivity;
@@ -11,6 +11,7 @@ interface Props {
11
11
  clickOpenProfileDialog?: any;
12
12
  isConference?: boolean;
13
13
  sessionType?: string;
14
+ classFontSize?: string;
14
15
  }
15
16
  declare const ConductTop: FC<Props>;
16
17
  export default ConductTop;
@@ -12,6 +12,7 @@ interface Props {
12
12
  imageTeacher: string;
13
13
  imageStudent: string;
14
14
  isPageResultConference?: boolean;
15
+ classFontSize: string;
15
16
  }
16
17
  declare const RubricTable: FC<Props>;
17
18
  export default RubricTable;
@@ -12,6 +12,7 @@ interface Props {
12
12
  imageTeacher: string;
13
13
  imageStudent: string;
14
14
  isPageResultConference?: boolean;
15
+ classFontSize: string;
15
16
  }
16
17
  declare const StartRubric: FC<Props>;
17
18
  export default StartRubric;
@@ -46,5 +46,8 @@ declare const useConferenceRubric: () => {
46
46
  minute: number;
47
47
  second: number;
48
48
  startTime: string;
49
+ onEditConference: (cb: Function) => Promise<void>;
50
+ numberOfEdit: number;
51
+ classFontSize: string;
49
52
  };
50
53
  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 useTotalFriends: () => {
2
2
  totalFriends: any;
3
+ classFontSize: string;
3
4
  };
4
5
  export default useTotalFriends;
@@ -1,3 +1,7 @@
1
1
  /// <reference types="react" />
2
- declare const GoalProgress: ({ studentId }: any) => JSX.Element;
2
+ interface GoalProgressProps {
3
+ studentId: any;
4
+ classFontSize: string;
5
+ }
6
+ declare const GoalProgress: (props: GoalProgressProps) => JSX.Element;
3
7
  export default GoalProgress;
@@ -7,5 +7,6 @@ declare const useGoals: () => {
7
7
  setIsAllowedEdit: import("react").Dispatch<import("react").SetStateAction<boolean>>;
8
8
  isTeacher: any;
9
9
  currentId: any;
10
+ classFontSize: string;
10
11
  };
11
12
  export default useGoals;
@@ -2,6 +2,7 @@
2
2
  interface myProp {
3
3
  eventList: any[];
4
4
  isTeacher: boolean;
5
+ newDate?: any;
5
6
  }
6
7
  declare const CurrentFullCalendar: (props: myProp) => JSX.Element;
7
8
  export default CurrentFullCalendar;
@@ -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;
@@ -4,7 +4,7 @@ interface Props {
4
4
  name: string;
5
5
  id: number;
6
6
  }
7
- declare const useEditLearningStrategies: () => {
7
+ declare const useAddLearningStrategies: () => {
8
8
  learningStrategyData: any;
9
9
  selectLearning: (checked: boolean, data: Props) => void;
10
10
  handleChangeNote: (e: string, id: number) => void;
@@ -20,5 +20,6 @@ declare const useEditLearningStrategies: () => {
20
20
  handleCheckSelectItem: (id: number) => boolean;
21
21
  handleShowNote: (id: number) => any;
22
22
  handleShowSelectItemCount: () => number;
23
+ classFontSize: string;
23
24
  };
24
- export default useEditLearningStrategies;
25
+ export default useAddLearningStrategies;
@@ -15,5 +15,6 @@ declare const useEditLearningStrategies: () => {
15
15
  openConfirmDelete: boolean;
16
16
  idItem: any;
17
17
  isTeacher: any;
18
+ classFontSize: string;
18
19
  };
19
20
  export default useEditLearningStrategies;
@@ -5,5 +5,6 @@ declare const useClassReflectionList: () => {
5
5
  sendDate: (id: number) => Promise<void>;
6
6
  getDataClassReflections: () => Promise<void>;
7
7
  classReflectionData: any;
8
+ classFontSize: string;
8
9
  };
9
10
  export default useClassReflectionList;
@@ -4,5 +4,5 @@ interface Props {
4
4
  isTeacher?: boolean;
5
5
  clickOpenProfileDialog?: any;
6
6
  }
7
- declare const InformationUser: ({ informationUser, isTeacher, clickOpenProfileDialog }: Props) => JSX.Element;
7
+ declare const InformationUser: ({ informationUser, isTeacher, clickOpenProfileDialog, }: Props) => JSX.Element;
8
8
  export default InformationUser;
@@ -13,6 +13,7 @@ interface Props {
13
13
  timeEnd: any;
14
14
  timeStart: any;
15
15
  options: any;
16
+ classFontSize: string;
16
17
  }
17
- declare const ChartOneToOne: ({ title, series, widthChartOne, heightChartOne, handleChangeStartDate, handleChangeEndDate, timeEnd, timeStart, options }: Props) => JSX.Element;
18
+ declare const ChartOneToOne: ({ title, series, widthChartOne, heightChartOne, handleChangeStartDate, handleChangeEndDate, timeEnd, timeStart, options, classFontSize }: Props) => JSX.Element;
18
19
  export default ChartOneToOne;
@@ -10,6 +10,7 @@ interface Props {
10
10
  handleChangeEndDateClassReflection: Function;
11
11
  timeEndClassReflection: any;
12
12
  timeStartClassReflection: any;
13
+ classFontSize: string;
13
14
  }
14
- declare const ChatClassReflection: ({ title, studentId }: Props) => JSX.Element;
15
+ declare const ChatClassReflection: ({ title, studentId, classFontSize }: Props) => JSX.Element;
15
16
  export default ChatClassReflection;
@@ -10,6 +10,7 @@ interface Props {
10
10
  timeEndConference: any;
11
11
  timeStartConference: any;
12
12
  optionConference: any;
13
+ classFontSize: string;
13
14
  }
14
- declare const ChatConference: ({ title, seriesConference, widthChartConference, heightChartConference, handleChangeStartDateConference, handleChangeEndDateConference, timeEndConference, optionConference, timeStartConference, }: Props) => JSX.Element;
15
+ declare const ChatConference: ({ title, seriesConference, widthChartConference, heightChartConference, handleChangeStartDateConference, handleChangeEndDateConference, timeEndConference, optionConference, timeStartConference, classFontSize }: Props) => JSX.Element;
15
16
  export default ChatConference;
@@ -10,6 +10,7 @@ interface Props {
10
10
  timeEndLearningProgress: any;
11
11
  timeStartLearningProgress: any;
12
12
  optionLearningProgress: any;
13
+ classFontSize: string;
13
14
  }
14
- declare const ChatLearningProgress: ({ title, seriesLearningProgress, widthChartLearningProgress, heightChartLearningProgress, handleChangeStartLearningProgress, handleChangeEndLearningProgress, timeEndLearningProgress, timeStartLearningProgress, optionLearningProgress }: Props) => JSX.Element;
15
+ declare const ChatLearningProgress: ({ title, seriesLearningProgress, widthChartLearningProgress, heightChartLearningProgress, handleChangeStartLearningProgress, handleChangeEndLearningProgress, timeEndLearningProgress, timeStartLearningProgress, optionLearningProgress, classFontSize }: Props) => JSX.Element;
15
16
  export default ChatLearningProgress;
@@ -7,6 +7,7 @@ interface Props {
7
7
  handleClick: any;
8
8
  handleClose: any;
9
9
  dataOfChart: any;
10
+ classFontSize: string;
10
11
  }
11
- declare const ReadinessToLearn: ({ widthChart, heightChart, options, dataOfChart, }: Props) => JSX.Element;
12
+ declare const ReadinessToLearn: ({ widthChart, heightChart, options, dataOfChart, classFontSize }: Props) => JSX.Element;
12
13
  export default ReadinessToLearn;
@@ -1,3 +1,7 @@
1
1
  /// <reference types="react" />
2
- declare const TopLearningStrategiesChart: (studentId: any) => JSX.Element;
2
+ interface TopLearningStrategiesChartProps {
3
+ studentId: any;
4
+ classFontSize: string;
5
+ }
6
+ declare const TopLearningStrategiesChart: (props: TopLearningStrategiesChartProps) => JSX.Element;
3
7
  export default TopLearningStrategiesChart;
@@ -1,6 +1,7 @@
1
1
  import { FC } from "react";
2
2
  interface Props {
3
3
  informationDashboard: any;
4
+ classFontSize: string;
4
5
  }
5
6
  declare const OverviewTop: FC<Props>;
6
7
  export default OverviewTop;
@@ -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 {
@@ -4,5 +4,6 @@ declare const useClassReflectionList: () => {
4
4
  filters: FILTER_SESSION;
5
5
  getDataClassReflections: (filters: any, studentId: any) => Promise<void>;
6
6
  classReflectionData: any;
7
+ classFontSize: string;
7
8
  };
8
9
  export default useClassReflectionList;
@@ -3,5 +3,6 @@ declare const useLearningPlanList: () => {
3
3
  changeFilters: (updatedFilters: any) => void;
4
4
  filters: FILTER_LEARNING;
5
5
  learningData: any;
6
+ classFontSize: string;
6
7
  };
7
8
  export default useLearningPlanList;
@@ -6,5 +6,6 @@ declare const useOverview: (studentId: number) => {
6
6
  changeFilters: (updatedFilters: any) => void;
7
7
  informationWellbeing: any;
8
8
  getInformationWellbeing: (type: number, startDate?: any, endDate?: any) => Promise<void>;
9
+ classFontSize: string;
9
10
  };
10
11
  export default useOverview;
@@ -6,5 +6,6 @@ declare const useResultReflection: () => {
6
6
  noteReflection: QuestionAnswer[];
7
7
  isTeacher: any;
8
8
  dataActionPoint: never[];
9
+ classFontSize: string;
9
10
  };
10
11
  export default useResultReflection;
@@ -15,5 +15,6 @@ declare const useStartReflection: () => {
15
15
  getDataActionPoint: (searchParam: any) => Promise<any>;
16
16
  createActionPoint: (formRequest: any) => Promise<void>;
17
17
  deleteActionPoint: (id: number) => Promise<void>;
18
+ classFontSize: string;
18
19
  };
19
20
  export default useStartReflection;
@@ -12,5 +12,6 @@ declare const useStudentConference: () => {
12
12
  filter: FILTER_SESSION;
13
13
  changeFilters: (updatedFilters: any) => void;
14
14
  getStudentConference: () => Promise<void>;
15
+ classFontSize: string;
15
16
  };
16
17
  export default useStudentConference;
@@ -3,5 +3,6 @@ declare const useStudentHistory: () => {
3
3
  changeFilters: (updatedFilters: any) => void;
4
4
  filters: FILTER_STUDENT_SESSION;
5
5
  studentReflectionHistory: any;
6
+ classFontSize: string;
6
7
  };
7
8
  export default useStudentHistory;
@@ -7,5 +7,6 @@ declare const useStudentList: () => {
7
7
  getData: () => Promise<void>;
8
8
  selectAssistStudent: (studentId: number) => Promise<void>;
9
9
  convertTimeSecond: (timeSecond: any) => string;
10
+ classFontSize: string;
10
11
  };
11
12
  export default useStudentList;
@@ -14,5 +14,6 @@ declare const useStudentOneToOne: () => {
14
14
  filter: FILTER_SESSION;
15
15
  changeFilters: (updatedFilters: any) => void;
16
16
  getStudentOneToOne: () => Promise<void>;
17
+ classFontSize: string;
17
18
  };
18
19
  export default useStudentOneToOne;
@@ -3,5 +3,6 @@ declare const useStudentToDo: () => {
3
3
  changeFilters: (updatedFilters: any) => void;
4
4
  filters: FILTER_STUDENT_SESSION;
5
5
  studentReflectionToDo: any;
6
+ classFontSize: string;
6
7
  };
7
8
  export default useStudentToDo;
@@ -37,5 +37,6 @@ declare const usePersonalInterest: (studentId: number) => {
37
37
  updateAllowToEdit: (event: React.ChangeEvent<HTMLInputElement>) => void;
38
38
  isCheckChange: boolean;
39
39
  setIsCheckChange: import("react").Dispatch<import("react").SetStateAction<boolean>>;
40
+ classFontSize: string;
40
41
  };
41
42
  export default usePersonalInterest;
@@ -7,5 +7,6 @@ declare const usePersonalInterest: (studentId: number) => {
7
7
  listLearningStrategories: any;
8
8
  allowToEdit: AllowToEdit;
9
9
  updateAllowToEdit: (event: React.ChangeEvent<HTMLInputElement>) => void;
10
+ classFontSize: string;
10
11
  };
11
12
  export default usePersonalInterest;
@@ -3,5 +3,7 @@ declare const useSettingPage: () => {
3
3
  dataGet: any;
4
4
  handleChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
5
5
  saveSetting: () => Promise<void>;
6
+ classFontSize: string;
7
+ defaultFont: any;
6
8
  };
7
9
  export default useSettingPage;
@@ -10,5 +10,6 @@ declare const useStrengthsChallenges: () => {
10
10
  studentId: any;
11
11
  handleUpdateAllow: (event: React.ChangeEvent<HTMLInputElement>) => void;
12
12
  isAllowedEdit: boolean;
13
+ classFontSize: string;
13
14
  };
14
15
  export default useStrengthsChallenges;
@@ -11,5 +11,6 @@ declare const useThingTeachersCanHelp: () => {
11
11
  setIsAllowedEdit: import("react").Dispatch<import("react").SetStateAction<boolean>>;
12
12
  studentId: any;
13
13
  isTeacher: any;
14
+ classFontSize: string;
14
15
  };
15
16
  export default useThingTeachersCanHelp;