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.
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ interface Props {
3
+ numberOfRings: number;
4
+ centerImage: string;
5
+ }
6
+ declare const RadialBarChartSVG: React.FC<Props>;
7
+ export default RadialBarChartSVG;
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ interface IProps {
3
+ open: boolean;
4
+ onClose: Function;
5
+ }
6
+ declare const _default: React.MemoExoticComponent<({ open, onClose }: IProps) => JSX.Element>;
7
+ export default _default;
@@ -0,0 +1 @@
1
+ export declare const apiGetAccessToken: (query: any) => Promise<import("axios").AxiosResponse<any>>;
@@ -0,0 +1,2 @@
1
+ declare const useClassLinkLogin: () => void;
2
+ export default useClassLinkLogin;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const ClassLinkLogin: () => JSX.Element;
3
+ export default ClassLinkLogin;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare function RouterPrompt(): JSX.Element;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const RouterPrompt: () => JSX.Element;
3
+ export default RouterPrompt;
@@ -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,3 @@
1
+ /// <reference types="react" />
2
+ declare const SummarizeQuestionList: () => JSX.Element;
3
+ export default SummarizeQuestionList;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { IIntervention } from "../constants/types";
3
+ declare const Intervention: ({ interventionQuestion, goBack, onGetIntervention }: IIntervention) => JSX.Element;
4
+ export default Intervention;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { IInterventionQuestion } from "../constants/types";
3
+ declare const InterventionQuestion: ({ intervention, maxHeight }: IInterventionQuestion) => JSX.Element;
4
+ export default InterventionQuestion;
@@ -0,0 +1,2 @@
1
+ export declare const getInfoEnableGenderSchool: () => Promise<import("axios").AxiosResponse<any>>;
2
+ export declare const getInformationStudent: (roles: string[]) => Promise<import("axios").AxiosResponse<any>>;
@@ -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;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const StudentProfile: () => JSX.Element;
3
+ export default StudentProfile;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mario-teacher-student-client",
3
- "version": "2.2.595-feedback",
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.380-feedback",
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",