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.
- package/dist/components/layouts/HeaderSideBar.d.ts +4 -0
- package/dist/containers/MyConferences/hooks/useUpComing.d.ts +0 -1
- package/dist/containers/MyOneToOne/components/SliderRange.d.ts +2 -0
- package/dist/containers/MyOneToOne/components/UiCompletedOneToOne.d.ts +3 -0
- package/dist/containers/MyOneToOne/components/dialog/DialogNodes.d.ts +3 -3
- package/dist/containers/MyOneToOne/hooks/useUpComing.d.ts +0 -1
- package/dist/containers/MyStudent/configs/createStudentSchema.d.ts +0 -5
- package/dist/containers/MyStudent/constants/types.d.ts +6 -0
- package/dist/containers/Note/components/AddNew.d.ts +3 -0
- package/dist/containers/Note/components/Note.d.ts +3 -0
- package/dist/containers/Note/components/ViewItemNote.d.ts +3 -0
- package/dist/containers/Note/hook/useNote.d.ts +10 -0
- package/dist/containers/SettingPageV1/hook/useSettingPage.d.ts +5 -0
- package/dist/containers/SettingPageV1/view/SettingPage.d.ts +2 -0
- package/dist/index.css +1436 -25
- package/dist/index.d.ts +14 -2
- package/dist/index.js +4534 -1504
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +4506 -1487
- package/dist/index.modern.js.map +1 -1
- package/dist/services/MyStudent.d.ts +7 -0
- package/package.json +4 -2
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare const
|
|
3
|
-
export 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;
|
|
@@ -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;
|