mario-teacher-student-client 9000.0.11 → 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/Goals/hook/useGoalDetail.d.ts +2 -0
- package/dist/containers/MyStudent/hooks/useStudentList.d.ts +1 -0
- package/dist/index.css +476 -449
- package/dist/index.js +983 -832
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +983 -832
- 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;
|
|
@@ -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;
|
|
@@ -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;
|