mario-teacher-student-client 2.2.552-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.
@@ -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: (isCreate?: boolean | undefined) => void;
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[];
@@ -0,0 +1,4 @@
1
+ declare const useCurrentLanguage: () => {
2
+ currentLanguage: any;
3
+ };
4
+ export default useCurrentLanguage;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mario-teacher-student-client",
3
- "version": "2.2.552-release",
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.352-release",
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,7 +0,0 @@
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;
@@ -1,7 +0,0 @@
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;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare function RouterPrompt(): JSX.Element;
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- declare const RouterPrompt: () => JSX.Element;
3
- export default RouterPrompt;
@@ -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,4 +0,0 @@
1
- /// <reference types="react" />
2
- import { IIntervention } from "../constants/types";
3
- declare const Intervention: ({ interventionQuestion, goBack, onGetIntervention }: IIntervention) => JSX.Element;
4
- export default Intervention;
@@ -1,4 +0,0 @@
1
- /// <reference types="react" />
2
- import { IInterventionQuestion } from "../constants/types";
3
- declare const InterventionQuestion: ({ intervention, maxHeight }: IInterventionQuestion) => JSX.Element;
4
- export default InterventionQuestion;
@@ -1,2 +0,0 @@
1
- export declare const getInfoEnableGenderSchool: () => Promise<import("axios").AxiosResponse<any>>;
2
- export declare const getInformationStudent: (roles: string[]) => Promise<import("axios").AxiosResponse<any>>;
@@ -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;
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- declare const StudentProfile: () => JSX.Element;
3
- export default StudentProfile;