mario-teacher-student-client 2.2.595-feedback → 2.2.596-feedback
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/Charts/RadialBarChartSVG.d.ts +7 -0
- package/dist/components/Dialog/ModelCongratulationsMissionAccomplished.d.ts +7 -0
- package/dist/containers/ClassLinkLogin/apiClients/index.d.ts +1 -0
- package/dist/containers/ClassLinkLogin/hooks/useClassLinkLogin.d.ts +2 -0
- package/dist/containers/ClassLinkLogin/views/ClassLinkLogin.d.ts +3 -0
- package/dist/containers/ConductOneToOne/components/ModelConfirmBackPage.d.ts +2 -0
- package/dist/containers/ConductOneToOne/components/RouterPrompt.d.ts +3 -0
- package/dist/containers/ConferenceRubric/styles/styles.d.ts +1 -0
- package/dist/containers/Home/hooks/useWeeklyQuest.d.ts +8 -0
- package/dist/containers/PLP/components/SummarizeQuestion.d.ts +3 -0
- package/dist/containers/Surveys/components/Intervention.d.ts +4 -0
- package/dist/containers/Surveys/components/InterventionQuestion.d.ts +4 -0
- package/dist/containers/UserProfile/apiClient/profileService.d.ts +2 -0
- package/dist/containers/UserProfile/constants/constants.d.ts +6 -0
- package/dist/containers/UserProfile/constants/types.d.ts +34 -0
- package/dist/containers/UserProfile/hook/useStudentProfile.d.ts +10 -0
- package/dist/containers/UserProfile/views/StudentProfile.d.ts +3 -0
- package/package.json +2 -2
- /package/dist/components/Dialog/{GuideCheckIn.d.ts → GuideCheckin.d.ts} +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const apiGetAccessToken: (query: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const useCollapseStyles: (props?: any) => Record<"svg" | "polygon" | "root" | "container" | "paper", string>;
|
|
@@ -0,0 +1,8 @@
|
|
|
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;
|
|
@@ -0,0 +1,6 @@
|
|
|
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;
|
|
@@ -0,0 +1,34 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
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;
|
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.596-feedback",
|
|
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.381-feedback",
|
|
94
94
|
"material-ui": "^0.20.2",
|
|
95
95
|
"moment": "^2.29.1",
|
|
96
96
|
"node-sass": "^5.0.0",
|
|
File without changes
|