mario-teacher-student-client 9000.0.9 → 9000.0.12
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/Card/CardItem.d.ts +4 -1
- package/dist/containers/Accommodation/hook/useAccommodation.d.ts +8 -0
- package/dist/containers/Goals/hook/useGoalDetail.d.ts +2 -0
- package/dist/containers/Goals/hook/useGoals.d.ts +1 -0
- package/dist/containers/MyOneToOne/components/dialog/DialogRecurrence.d.ts +2 -2
- package/dist/containers/MyStudent/hooks/useStudentList.d.ts +1 -0
- package/dist/index.css +797 -764
- package/dist/index.js +1037 -783
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +1037 -783
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
|
@@ -9,6 +9,9 @@ interface Props {
|
|
|
9
9
|
contentWidth?: number;
|
|
10
10
|
titleDelete?: string;
|
|
11
11
|
handleDelete: Function;
|
|
12
|
+
isTeacher?: boolean;
|
|
13
|
+
isAllowedEdit?: boolean;
|
|
14
|
+
isAccommodationIEP?: boolean;
|
|
12
15
|
}
|
|
13
|
-
declare const CardItem: ({ title, description, status, id, handleEdit, note, contentWidth, handleDelete }: Props) => JSX.Element;
|
|
16
|
+
declare const CardItem: ({ title, description, status, id, handleEdit, note, contentWidth, handleDelete, isTeacher, isAllowedEdit, isAccommodationIEP }: Props) => JSX.Element;
|
|
14
17
|
export default CardItem;
|
|
@@ -22,5 +22,13 @@ declare const useAccommodation: () => {
|
|
|
22
22
|
studentId: number;
|
|
23
23
|
type: number;
|
|
24
24
|
}>>;
|
|
25
|
+
setFilters: import("react").Dispatch<import("react").SetStateAction<{
|
|
26
|
+
studentId: any;
|
|
27
|
+
type: string;
|
|
28
|
+
}>>;
|
|
29
|
+
filters: {
|
|
30
|
+
studentId: any;
|
|
31
|
+
type: string;
|
|
32
|
+
};
|
|
25
33
|
};
|
|
26
34
|
export default useAccommodation;
|
|
@@ -11,5 +11,7 @@ declare const useGoalDetail: () => {
|
|
|
11
11
|
deleteCheckPoint: (goalId: number, checkPointId: number) => Promise<void>;
|
|
12
12
|
goalBaseLineItem: never[];
|
|
13
13
|
setGoalBaseLineItem: import("react").Dispatch<import("react").SetStateAction<never[]>>;
|
|
14
|
+
isTeacher: any;
|
|
15
|
+
isAllowedEdit: boolean;
|
|
14
16
|
};
|
|
15
17
|
export default useGoalDetail;
|
|
@@ -3,12 +3,12 @@ interface Props {
|
|
|
3
3
|
handleClose: Function;
|
|
4
4
|
open: boolean;
|
|
5
5
|
applyValue: Function;
|
|
6
|
-
selectedDate
|
|
6
|
+
selectedDate?: any;
|
|
7
7
|
}
|
|
8
8
|
export declare enum EndType {
|
|
9
9
|
Never = "Never",
|
|
10
10
|
On = "On",
|
|
11
11
|
After = "After"
|
|
12
12
|
}
|
|
13
|
-
declare const Recurrence: ({ open, handleClose, applyValue
|
|
13
|
+
declare const Recurrence: ({ open, handleClose, applyValue }: Props) => JSX.Element;
|
|
14
14
|
export default Recurrence;
|
|
@@ -6,5 +6,6 @@ declare const useStudentList: () => {
|
|
|
6
6
|
importStudentCsv: (file: any, teacherID: string, cb: any) => Promise<void>;
|
|
7
7
|
getData: () => Promise<void>;
|
|
8
8
|
selectAssistStudent: (studentId: number) => Promise<void>;
|
|
9
|
+
convertTimeSecond: (timeSecond: any) => string;
|
|
9
10
|
};
|
|
10
11
|
export default useStudentList;
|