mario-teacher-student-client 2.0.8 → 9000.0.0

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.
@@ -1,3 +1,7 @@
1
1
  /// <reference types="react" />
2
+ export declare const ICON_NAV: {
3
+ name: string;
4
+ icon: JSX.Element;
5
+ }[];
2
6
  declare const HeaderSideBar: ({ children, navigations }: any) => JSX.Element;
3
7
  export default HeaderSideBar;
@@ -17,6 +17,5 @@ declare const useUpComing: () => {
17
17
  nextSession: any;
18
18
  nextTimeMeeting: () => Promise<void>;
19
19
  getStudentSelector: () => Promise<void>;
20
- studentNameReq: string | null;
21
20
  };
22
21
  export default useUpComing;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export default function CustomizedSlider(): JSX.Element;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const UiCompletedOneToOne: () => JSX.Element;
3
+ export default UiCompletedOneToOne;
@@ -1,3 +1,3 @@
1
- import React from "react";
2
- declare const _default: React.MemoExoticComponent<(props: any) => JSX.Element>;
3
- export default _default;
1
+ /// <reference types="react" />
2
+ declare const DialogNodes: (props: any) => JSX.Element;
3
+ export default DialogNodes;
@@ -20,6 +20,5 @@ declare const useUpComing: () => {
20
20
  getAllNoteConference: (sessionId: any) => Promise<void>;
21
21
  updateConferenceRubricPrivateNote: (privateNote: any, conferenceId: any) => Promise<void>;
22
22
  deleteNoteConference: (noteId: any, sessionId: any) => Promise<void>;
23
- studentNameReq: string | null;
24
23
  };
25
24
  export default useUpComing;
@@ -1,15 +1,10 @@
1
- import * as yup from "yup";
2
1
  declare const schema: import("yup/lib/object").OptionalObjectSchema<{
3
2
  firstName: import("yup/lib/string").RequiredStringSchema<string | undefined, Record<string, any>>;
4
3
  lastName: import("yup/lib/string").RequiredStringSchema<string | undefined, Record<string, any>>;
5
4
  email: import("yup/lib/string").RequiredStringSchema<string | undefined, Record<string, any>>;
6
- secondaryEmail: yup.StringSchema<string | undefined, Record<string, any>, string | undefined>;
7
- thirdEmail: yup.StringSchema<string | undefined, Record<string, any>, string | undefined>;
8
5
  }, Record<string, any>, import("yup/lib/object").TypeOfShape<{
9
6
  firstName: import("yup/lib/string").RequiredStringSchema<string | undefined, Record<string, any>>;
10
7
  lastName: import("yup/lib/string").RequiredStringSchema<string | undefined, Record<string, any>>;
11
8
  email: import("yup/lib/string").RequiredStringSchema<string | undefined, Record<string, any>>;
12
- secondaryEmail: yup.StringSchema<string | undefined, Record<string, any>, string | undefined>;
13
- thirdEmail: yup.StringSchema<string | undefined, Record<string, any>, string | undefined>;
14
9
  }>>;
15
10
  export default schema;
@@ -99,3 +99,9 @@ export interface LEARNING_PLAN {
99
99
  profileImageTeacher: string;
100
100
  teacherName: string;
101
101
  }
102
+ export interface ACCOMMODATION_TYPE {
103
+ id: number;
104
+ title: string;
105
+ description: string;
106
+ type: string;
107
+ }
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const AddNote: () => JSX.Element;
3
+ export default AddNote;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const Note: () => JSX.Element;
3
+ export default Note;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const ViewItemNote: () => JSX.Element;
3
+ export default ViewItemNote;
@@ -0,0 +1,10 @@
1
+ import { MaterialUiPickersDate } from "@material-ui/pickers/typings/date";
2
+ declare const useNote: () => {
3
+ changeEndDate: (date: MaterialUiPickersDate | null) => void;
4
+ changeStartDate: (date: MaterialUiPickersDate | null) => void;
5
+ startDate: any;
6
+ endDate: any;
7
+ onChangeSetData: (e: any) => void;
8
+ valueNoteAdd: string;
9
+ };
10
+ export default useNote;
@@ -0,0 +1,5 @@
1
+ declare const useSettingPage: () => {
2
+ handleChangeRadio: (event: React.ChangeEvent<HTMLInputElement>) => void;
3
+ valueRadio: any;
4
+ };
5
+ export default useSettingPage;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export default function SettingPage(): JSX.Element;