mario-teacher-student-client 9000.0.24 → 9000.0.25
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/Card/CardItem.d.ts +2 -1
- package/dist/components/Card/CardSwitch.d.ts +2 -1
- package/dist/components/Circle/Circle.d.ts +2 -1
- package/dist/components/Circle/ItemCircle.d.ts +2 -1
- package/dist/containers/AboutMyLearning/hook/useAboutMyLearning.d.ts +1 -0
- package/dist/containers/Accommodation/hook/useAccommodation.d.ts +1 -0
- package/dist/containers/ActivityCircle/hooks/useTotalActivity.d.ts +1 -0
- package/dist/containers/ConductOneToOne/components/ConductTop/ConductTop.d.ts +1 -0
- package/dist/containers/ConferenceRubric/components/RubricTable.d.ts +1 -0
- package/dist/containers/ConferenceRubric/components/StartRubric.d.ts +1 -0
- package/dist/containers/ConferenceRubric/hooks/useConferenceRubric.d.ts +1 -0
- package/dist/containers/FriendCircle/hooks/useTotalFriends.d.ts +1 -0
- package/dist/containers/Goals/components/GoalProgress.d.ts +5 -1
- package/dist/containers/Goals/hook/useGoals.d.ts +1 -0
- package/dist/containers/LearningStrategies/hook/useAddLearningStrategies.d.ts +3 -2
- package/dist/containers/LearningStrategies/hook/useEditLearningStrategies.d.ts +1 -0
- package/dist/containers/MyClassReflection/hooks/useClassReflectionList.d.ts +1 -0
- package/dist/containers/MyStudent/components/InformationUser.d.ts +1 -1
- package/dist/containers/MyStudent/components/NewOverview/Chat/view/ChartOneToOne.d.ts +2 -1
- package/dist/containers/MyStudent/components/NewOverview/Chat/view/ChatClassReflection.d.ts +2 -1
- package/dist/containers/MyStudent/components/NewOverview/Chat/view/ChatConference.d.ts +2 -1
- package/dist/containers/MyStudent/components/NewOverview/Chat/view/ChatLearningProgress.d.ts +2 -1
- package/dist/containers/MyStudent/components/NewOverview/Chat/view/ReadinessToLearn.d.ts +2 -1
- package/dist/containers/MyStudent/components/NewOverview/TopLearningStrategies/view/TopLearningStrategiesChart.d.ts +5 -1
- package/dist/containers/MyStudent/components/OverviewTop.d.ts +1 -0
- package/dist/containers/MyStudent/hooks/useClassReflectionList.d.ts +1 -0
- package/dist/containers/MyStudent/hooks/useLearningPlanList.d.ts +1 -0
- package/dist/containers/MyStudent/hooks/useOverview.d.ts +1 -0
- package/dist/containers/MyStudent/hooks/useResultReflection.d.ts +1 -0
- package/dist/containers/MyStudent/hooks/useStartReflection.d.ts +1 -0
- package/dist/containers/MyStudent/hooks/useStudentConference.d.ts +1 -0
- package/dist/containers/MyStudent/hooks/useStudentHistory.d.ts +1 -0
- package/dist/containers/MyStudent/hooks/useStudentList.d.ts +1 -0
- package/dist/containers/MyStudent/hooks/useStudentOneToOne.d.ts +1 -0
- package/dist/containers/MyStudent/hooks/useStudentToDo.d.ts +1 -0
- package/dist/containers/PersonalLearningPlan/PersonalInterests/components/ListPersonalInterestHook.d.ts +1 -0
- package/dist/containers/PersonalLearningPlan/components/PersonalLearningGoal/usePersonalInterest.d.ts +1 -0
- package/dist/containers/SettingPageV1/hook/useSettingPage.d.ts +2 -0
- package/dist/containers/StrengthsAndChallenges/hook/useStrengthsChallenges.d.ts +1 -0
- package/dist/containers/ThingTeachersCanHelp/hook/useThingTeachersCanHelp.d.ts +1 -0
- package/dist/index.css +641 -4
- package/dist/index.js +974 -243
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +974 -243
- package/dist/index.modern.js.map +1 -1
- 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;
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
|
|
2
|
+
interface GoalProgressProps {
|
|
3
|
+
studentId: any;
|
|
4
|
+
classFontSize: string;
|
|
5
|
+
}
|
|
6
|
+
declare const GoalProgress: (props: GoalProgressProps) => JSX.Element;
|
|
3
7
|
export default GoalProgress;
|
|
@@ -4,7 +4,7 @@ interface Props {
|
|
|
4
4
|
name: string;
|
|
5
5
|
id: number;
|
|
6
6
|
}
|
|
7
|
-
declare const
|
|
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
|
|
25
|
+
export default useAddLearningStrategies;
|
|
@@ -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;
|
package/dist/containers/MyStudent/components/NewOverview/Chat/view/ChatLearningProgress.d.ts
CHANGED
|
@@ -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
|
-
|
|
2
|
+
interface TopLearningStrategiesChartProps {
|
|
3
|
+
studentId: any;
|
|
4
|
+
classFontSize: string;
|
|
5
|
+
}
|
|
6
|
+
declare const TopLearningStrategiesChart: (props: TopLearningStrategiesChartProps) => JSX.Element;
|
|
3
7
|
export default TopLearningStrategiesChart;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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;
|