mario-teacher-student-client 2.2.553-release → 2.2.554-release
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/containers/AboutMyLearning/hook/useAboutMyLearning.d.ts +0 -2
- package/dist/containers/GoalPage/hook/useGoals.d.ts +1 -1
- package/dist/hooks/useCurrentLanguage.d.ts +4 -0
- package/package.json +2 -2
- package/dist/components/Charts/RadialBarChartSVG.d.ts +0 -7
- package/dist/components/Dialog/ModelCongratulationsMissionAccomplished.d.ts +0 -7
- package/dist/containers/ConductOneToOne/components/ModelConfirmBackPage.d.ts +0 -2
- package/dist/containers/ConductOneToOne/components/RouterPrompt.d.ts +0 -3
- package/dist/containers/ConferenceRubric/styles/styles.d.ts +0 -1
- package/dist/containers/Home/hooks/useWeeklyQuest.d.ts +0 -8
- package/dist/containers/Surveys/components/Intervention.d.ts +0 -4
- package/dist/containers/Surveys/components/InterventionQuestion.d.ts +0 -4
- package/dist/containers/UserProfile/apiClient/profileService.d.ts +0 -2
- package/dist/containers/UserProfile/constants/constants.d.ts +0 -6
- package/dist/containers/UserProfile/constants/types.d.ts +0 -34
- package/dist/containers/UserProfile/hook/useStudentProfile.d.ts +0 -10
- package/dist/containers/UserProfile/views/StudentProfile.d.ts +0 -3
- /package/dist/components/Dialog/{GuideCheckin.d.ts → GuideCheckIn.d.ts} +0 -0
|
@@ -7,7 +7,6 @@ declare const useAboutMyLearning: () => {
|
|
|
7
7
|
updateAllow: (data: any) => Promise<void>;
|
|
8
8
|
listData: any;
|
|
9
9
|
dataItem: {
|
|
10
|
-
id: null;
|
|
11
10
|
title: string;
|
|
12
11
|
sectionFields: {
|
|
13
12
|
title: string;
|
|
@@ -18,7 +17,6 @@ declare const useAboutMyLearning: () => {
|
|
|
18
17
|
studentId: any;
|
|
19
18
|
isTeacher: any;
|
|
20
19
|
setDataItem: import("react").Dispatch<import("react").SetStateAction<{
|
|
21
|
-
id: null;
|
|
22
20
|
title: string;
|
|
23
21
|
sectionFields: {
|
|
24
22
|
title: string;
|
|
@@ -7,7 +7,7 @@ declare const useGoals: () => {
|
|
|
7
7
|
handleChangeStep: (isBackStep?: boolean | undefined, isTarget?: boolean | undefined) => void;
|
|
8
8
|
openModelWarning: boolean;
|
|
9
9
|
openModelCreate: boolean;
|
|
10
|
-
handleToggleModelCreate: (
|
|
10
|
+
handleToggleModelCreate: () => void;
|
|
11
11
|
goalFormCreate: IGoal;
|
|
12
12
|
handleChangeValueForm: (value: string, name: string, index?: number | undefined, secondName?: string | undefined) => void;
|
|
13
13
|
handleReturnCategoryOptions: () => string[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mario-teacher-student-client",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.554-release",
|
|
4
4
|
"description": "Made with create-react-library",
|
|
5
5
|
"author": "brss",
|
|
6
6
|
"license": "MIT",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"fullcalendar": "^5.10.1",
|
|
91
91
|
"jspdf": "^2.5.0",
|
|
92
92
|
"lodash": "^4.17.21",
|
|
93
|
-
"mario-core": "2.9.
|
|
93
|
+
"mario-core": "2.9.354-release",
|
|
94
94
|
"material-ui": "^0.20.2",
|
|
95
95
|
"moment": "^2.29.1",
|
|
96
96
|
"node-sass": "^5.0.0",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const useCollapseStyles: (props?: any) => Record<"svg" | "polygon" | "root" | "container" | "paper", string>;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { IWeeklyQuest, SourceWeeklyQuests } from "../../../types/types";
|
|
2
|
-
declare const useWeeklyQuest: () => {
|
|
3
|
-
weeklyQuests: IWeeklyQuest[];
|
|
4
|
-
handleGetLinkQuest: (source: SourceWeeklyQuests) => string | undefined;
|
|
5
|
-
handleGetStepStatus: (quests: IWeeklyQuest[]) => boolean[];
|
|
6
|
-
handleCompleteTheQuest: (src: string) => void;
|
|
7
|
-
};
|
|
8
|
-
export default useWeeklyQuest;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { IStudentProfile } from "./types";
|
|
2
|
-
export declare const mtssOptions: string[];
|
|
3
|
-
export declare const MAX_SIZE = 20097152;
|
|
4
|
-
export declare const gradeLevels: string[];
|
|
5
|
-
export declare const genders: string[];
|
|
6
|
-
export declare const initialProfile: IStudentProfile;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
export interface IDesignation {
|
|
2
|
-
name: string;
|
|
3
|
-
id: number;
|
|
4
|
-
}
|
|
5
|
-
export interface IStudentProfile {
|
|
6
|
-
firstNameParent1: string;
|
|
7
|
-
lastNameParent1: string;
|
|
8
|
-
roleParent1: string;
|
|
9
|
-
phoneNumberParent1: string;
|
|
10
|
-
emailParent1: string;
|
|
11
|
-
isSaved1: boolean;
|
|
12
|
-
secondary: string;
|
|
13
|
-
firstNameParent2: string;
|
|
14
|
-
lastNameParent2: string;
|
|
15
|
-
roleParent2: string;
|
|
16
|
-
phoneNumberParent2: string;
|
|
17
|
-
emailParent2: string;
|
|
18
|
-
isSaved2: boolean;
|
|
19
|
-
third: string;
|
|
20
|
-
designationId?: number;
|
|
21
|
-
address: string;
|
|
22
|
-
email: string;
|
|
23
|
-
lastName: string;
|
|
24
|
-
firstName: string;
|
|
25
|
-
note?: string;
|
|
26
|
-
healthNote?: string;
|
|
27
|
-
mtss?: string;
|
|
28
|
-
gradeLevel?: string;
|
|
29
|
-
calendarId?: string;
|
|
30
|
-
phoneNumber?: number;
|
|
31
|
-
dateOfBirth?: string;
|
|
32
|
-
legalGender?: string;
|
|
33
|
-
studentProfileImage?: string;
|
|
34
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { IStudentProfile } from "../constants/types";
|
|
3
|
-
declare const useStudentProfile: () => {
|
|
4
|
-
isGender: boolean;
|
|
5
|
-
studentProfile: IStudentProfile;
|
|
6
|
-
setStudentProfile: import("react").Dispatch<import("react").SetStateAction<IStudentProfile>>;
|
|
7
|
-
handleImgChange: (e: any) => void;
|
|
8
|
-
imagePreviewUrl: any;
|
|
9
|
-
};
|
|
10
|
-
export default useStudentProfile;
|
|
File without changes
|