mario-teacher-student-client 9000.0.4 → 9000.0.7
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 +1 -1
- package/dist/components/Input/InputComponent.d.ts +4 -1
- package/dist/components/QuestionTypes/CheckPoint.d.ts +3 -2
- package/dist/containers/AboutMyLearning/constants/type.d.ts +1 -0
- package/dist/containers/Accommodation/constants/type.d.ts +1 -0
- package/dist/containers/ActionPoint/api/apiClient.d.ts +1 -0
- package/dist/containers/ActionPoint/components/DashBoardView/hooks/useActionPointsDB.d.ts +1 -0
- package/dist/containers/ActionPoint/components/Dialogs/hooks/useDialogRequest.d.ts +9 -3
- package/dist/containers/ActionPoint/components/Dialogs/services/dialogServices.d.ts +1 -0
- package/dist/containers/ActionPoint/components/TodoList/hooks/useTodoList.d.ts +1 -0
- package/dist/containers/ActionPoint/components/TodoList/view/TodoList.d.ts +1 -1
- package/dist/containers/Goals/constants/type.d.ts +1 -0
- package/dist/containers/Goals/hook/useGoalDetail.d.ts +3 -0
- package/dist/containers/LearningStrategies/hook/useEditLearningStrategies.d.ts +1 -0
- package/dist/containers/MyClassReflection/constants/types.d.ts +2 -2
- package/dist/containers/MyOneToOne/components/GoogleCalendar.d.ts +2 -0
- package/dist/containers/MyOneToOne/components/dialog/DialogRecurrence.d.ts +4 -3
- package/dist/containers/MyOneToOne/hooks/useSessionCompleted.d.ts +1 -0
- package/dist/containers/MyStudent/components/NewOverview/Chat/ApiClient/redinessToLearnApi.d.ts +1 -1
- package/dist/containers/PersonalLearningPlan/PersonalInterests/components/ListPersonalInterestHook.d.ts +3 -0
- package/dist/containers/PersonalLearningPlan/hook/personalInterestApi.d.ts +6 -0
- package/dist/containers/PersonalLearningPlan/hook/personalInterestsService.d.ts +6 -0
- package/dist/containers/PersonalLearningPlan/hook/usePersonalInterest.d.ts +33 -2
- package/dist/containers/StrengthsAndChallenges/views/SummaryStrengthsAndChallenges.d.ts +4 -1
- package/dist/containers/ThingTeachersCanHelp/constants/type.d.ts +1 -0
- package/dist/index.css +108 -44
- package/dist/index.d.ts +1 -2
- package/dist/index.js +878 -743
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +878 -743
- package/dist/index.modern.js.map +1 -1
- package/dist/services/OneToOne.d.ts +1 -1
- package/package.json +1 -1
- package/dist/components/Header/HeaderSurvey.d.ts +0 -11
- package/dist/components/Input/TextAreaComponent.d.ts +0 -8
- package/dist/containers/FriendCircle/views/FriendCircle.d.ts +0 -3
- package/dist/containers/MyOneToOne/components/dialog/SimpleDialog.d.ts +0 -3
- package/dist/containers/MyStudent/components/Accommodation/Accomondation.d.ts +0 -3
- package/dist/containers/MyStudent/components/Accommodation/AccomondationList.d.ts +0 -3
- package/dist/containers/MyStudent/hooks/useAccommodation.d.ts +0 -8
- package/dist/containers/MySurvey/constants/types.d.ts +0 -41
- package/dist/containers/MySurvey/hooks/useStudentList.d.ts +0 -9
- package/dist/containers/MySurvey/views/CreateSurvey.d.ts +0 -3
- package/dist/containers/MySurvey/views/Mysurvey.d.ts +0 -3
- package/dist/containers/MySurvey/views/StudentSurvey.d.ts +0 -3
|
@@ -10,5 +10,5 @@ interface Props {
|
|
|
10
10
|
titleDelete?: string;
|
|
11
11
|
handleDelete: Function;
|
|
12
12
|
}
|
|
13
|
-
declare const CardItem: ({ title, description, status, id, handleEdit, note, contentWidth,
|
|
13
|
+
declare const CardItem: ({ title, description, status, id, handleEdit, note, contentWidth, handleDelete }: Props) => JSX.Element;
|
|
14
14
|
export default CardItem;
|
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
interface Props {
|
|
3
|
+
id?: string;
|
|
3
4
|
valueText: string;
|
|
4
5
|
onChange: Function;
|
|
5
6
|
name?: string;
|
|
6
7
|
isAddIcon?: boolean;
|
|
7
8
|
handleAddItem?: Function;
|
|
9
|
+
onBlur?: any;
|
|
10
|
+
placeholder?: string;
|
|
8
11
|
}
|
|
9
|
-
declare const InputComponent: ({ valueText, onChange, name, isAddIcon, handleAddItem }: Props) => JSX.Element;
|
|
12
|
+
declare const InputComponent: ({ valueText, onChange, name, isAddIcon, handleAddItem, placeholder, onBlur, id }: Props) => JSX.Element;
|
|
10
13
|
export default InputComponent;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
interface Props {
|
|
3
|
-
point:
|
|
3
|
+
point: string;
|
|
4
|
+
target?: string;
|
|
4
5
|
status: string;
|
|
5
6
|
isProgress?: boolean;
|
|
6
7
|
}
|
|
7
|
-
export default function CheckPoint({ point, status, isProgress }: Props): JSX.Element;
|
|
8
|
+
export default function CheckPoint({ point, status, isProgress, target }: Props): JSX.Element;
|
|
8
9
|
export {};
|
|
@@ -4,3 +4,4 @@ export declare const getDataClassNameApi: () => Promise<import("axios").AxiosRes
|
|
|
4
4
|
export declare const getDataActionPointByIdApi: (id: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
5
5
|
export declare const putActionPointApi: (id: any, formData: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
6
6
|
export declare const putIsDoneApi: (id: any, isDone: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
7
|
+
export declare const deleteActionPointApi: (id: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
declare
|
|
2
|
+
declare type PropsType = {
|
|
3
|
+
actionId: number;
|
|
4
|
+
reloadRef: React.MutableRefObject<any>;
|
|
5
|
+
};
|
|
6
|
+
declare const useDialogRequest: (_props: PropsType, ref: any) => {
|
|
3
7
|
open: any;
|
|
4
8
|
isTeacher: any;
|
|
5
9
|
classList: never[];
|
|
@@ -16,9 +20,11 @@ declare const useDialogRequest: (_props: any, ref: any) => {
|
|
|
16
20
|
handleChangeNotiCount: (e: React.ChangeEvent<{
|
|
17
21
|
value: unknown;
|
|
18
22
|
}>) => void;
|
|
19
|
-
handleCreate: () => Promise<void>;
|
|
23
|
+
handleCreate: (cb?: Function | undefined) => Promise<void>;
|
|
20
24
|
handleClickClose: () => void;
|
|
21
25
|
handleCheckbox: (e: React.ChangeEvent<HTMLInputElement>) => void;
|
|
22
|
-
submitUpdate: () => Promise<void>;
|
|
26
|
+
submitUpdate: (cb?: Function | undefined) => Promise<void>;
|
|
27
|
+
handleDeleteItem: (cb?: Function | undefined) => Promise<void>;
|
|
28
|
+
handleCloseNoti: () => void;
|
|
23
29
|
};
|
|
24
30
|
export default useDialogRequest;
|
|
@@ -3,3 +3,4 @@ export declare const getDataClassName: (dispatch: any) => Promise<any>;
|
|
|
3
3
|
export declare const createActionPoint: (dispatch: any, formData: FORM_REQUEST) => Promise<void>;
|
|
4
4
|
export declare const getActionPointById: (dispatch: any, id: any) => Promise<any>;
|
|
5
5
|
export declare const updateActionPoint: (dispatch: any, id: any, formData: any) => Promise<void>;
|
|
6
|
+
export declare const deleteActionPoint: (dispatch: any, id: any) => Promise<void>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
declare const useGoalDetail: () => {
|
|
2
3
|
create: (data: any, baseLines: any, checkpoint: any) => Promise<void>;
|
|
3
4
|
update: (id: number, data: any) => Promise<void>;
|
|
@@ -8,5 +9,7 @@ declare const useGoalDetail: () => {
|
|
|
8
9
|
createCheckPoint: (id: number, data: any, isDelete: any) => Promise<void>;
|
|
9
10
|
updateCheckPoint: (goalId: number, checkPointId: number, data: any) => Promise<void>;
|
|
10
11
|
deleteCheckPoint: (goalId: number, checkPointId: number) => Promise<void>;
|
|
12
|
+
goalBaseLineItem: never[];
|
|
13
|
+
setGoalBaseLineItem: import("react").Dispatch<import("react").SetStateAction<never[]>>;
|
|
11
14
|
};
|
|
12
15
|
export default useGoalDetail;
|
|
@@ -19,8 +19,8 @@ export interface FILTER_SESSION {
|
|
|
19
19
|
sortBy: string;
|
|
20
20
|
sortOrder?: string;
|
|
21
21
|
name?: string;
|
|
22
|
-
startDate?: number;
|
|
23
|
-
endDate?: number;
|
|
22
|
+
startDate?: number | null;
|
|
23
|
+
endDate?: number | null;
|
|
24
24
|
isDone?: boolean;
|
|
25
25
|
}
|
|
26
26
|
export interface QuestionAnswer {
|
|
@@ -8,11 +8,13 @@ export interface GoogleCalendarEvent {
|
|
|
8
8
|
status: string;
|
|
9
9
|
summary: string;
|
|
10
10
|
location: string;
|
|
11
|
+
sessionId: number;
|
|
11
12
|
}
|
|
12
13
|
interface Props {
|
|
13
14
|
studentUserId: string;
|
|
14
15
|
date: MaterialUiPickersDate;
|
|
15
16
|
teacherUserId?: string;
|
|
17
|
+
isSession: boolean;
|
|
16
18
|
}
|
|
17
19
|
declare const GoogleCalendar: FC<Props>;
|
|
18
20
|
export default GoogleCalendar;
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
interface Props {
|
|
3
|
-
handleClose
|
|
3
|
+
handleClose: Function;
|
|
4
4
|
open: boolean;
|
|
5
|
-
applyValue:
|
|
5
|
+
applyValue: Function;
|
|
6
|
+
selectedDate: any;
|
|
6
7
|
}
|
|
7
8
|
export declare enum EndType {
|
|
8
9
|
Never = "Never",
|
|
9
10
|
On = "On",
|
|
10
11
|
After = "After"
|
|
11
12
|
}
|
|
12
|
-
declare const Recurrence: ({ open, handleClose, applyValue }: Props) => JSX.Element;
|
|
13
|
+
declare const Recurrence: ({ open, handleClose, applyValue, selectedDate }: Props) => JSX.Element;
|
|
13
14
|
export default Recurrence;
|
package/dist/containers/MyStudent/components/NewOverview/Chat/ApiClient/redinessToLearnApi.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const getDataRedinessToLeanApi: (
|
|
1
|
+
export declare const getDataRedinessToLeanApi: (studentId: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
declare const usePersonalInterest: (studentId: number) => {
|
|
2
3
|
upDateData: () => Promise<void>;
|
|
3
4
|
editData: (id: number) => Promise<void>;
|
|
@@ -34,5 +35,7 @@ declare const usePersonalInterest: (studentId: number) => {
|
|
|
34
35
|
deleteDataItemEdit: () => Promise<void>;
|
|
35
36
|
isAllowedEdit: boolean;
|
|
36
37
|
updateAllowToEdit: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
38
|
+
isCheckChange: boolean;
|
|
39
|
+
setIsCheckChange: import("react").Dispatch<import("react").SetStateAction<boolean>>;
|
|
37
40
|
};
|
|
38
41
|
export default usePersonalInterest;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export declare const createDataPersonalInterestApi: (body: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
2
|
+
export declare const uploadFilePersonalInterestApi: (body: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
3
|
+
export declare const getDataPersonalInterestApi: (id: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
4
|
+
export declare const editDataPersonalInterestApi: (id: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
5
|
+
export declare const updateDataPersonalInterestApi: (id: number, body: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
6
|
+
export declare const deleteDataPersonalInterestApi: (id: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export declare const createDataPersonalInterest: (dispatch: any, data: any) => Promise<void>;
|
|
2
|
+
export declare const getDataPersonalInterest: (dispatch: any, id: number) => Promise<any>;
|
|
3
|
+
export declare const upDateDataPersonalInterest: (dispatch: any, idupdate: number, dataUpload: any) => Promise<void>;
|
|
4
|
+
export declare const deleteataPersonalInterest: (dispatch: any, iddelete: number) => Promise<void>;
|
|
5
|
+
export declare const uploadFilePersonalInterest: (dispatch: any, file: string) => Promise<any>;
|
|
6
|
+
export declare const editDataPersonalInterest: (dispatch: any, id: number) => Promise<any>;
|
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
declare const usePersonalInterest: () => {
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
upDateData: () => Promise<void>;
|
|
3
|
+
editData: (id: number) => Promise<void>;
|
|
4
|
+
sendDataCreate: () => Promise<void>;
|
|
5
|
+
deleteDataItem: () => Promise<void>;
|
|
6
|
+
handleClose: () => void;
|
|
7
|
+
handleCloseEdit: () => void;
|
|
8
|
+
handUpload: (e: any) => void;
|
|
9
|
+
handleCloseDelete: () => void;
|
|
10
|
+
dataList: any;
|
|
11
|
+
handUploadEdit: (e: any) => void;
|
|
12
|
+
openModal: boolean;
|
|
13
|
+
openModalDelete: boolean;
|
|
14
|
+
openModalEdit: boolean;
|
|
15
|
+
targetImage: any;
|
|
16
|
+
fileUploadEdit: string;
|
|
17
|
+
fileAvatarEdit: string;
|
|
18
|
+
deleteData: (id: number) => void;
|
|
19
|
+
handOpenModal: () => void;
|
|
20
|
+
handCloseModalEdit: () => void;
|
|
21
|
+
handCloseModalDelete: () => void;
|
|
22
|
+
value: string;
|
|
23
|
+
fileAvatar: string;
|
|
24
|
+
valueAddActivity: string;
|
|
25
|
+
onChangeSetData: (e: any) => void;
|
|
26
|
+
onChangeSetDataNote: (e: any) => void;
|
|
27
|
+
dataEdit: {
|
|
28
|
+
id: string;
|
|
29
|
+
Title: string;
|
|
30
|
+
Note: string;
|
|
31
|
+
studentId: string;
|
|
32
|
+
};
|
|
33
|
+
onChangeSetDataEdit: (e: any) => void;
|
|
34
|
+
onChangeSetDataEditNote: (e: any) => void;
|
|
4
35
|
};
|
|
5
36
|
export default usePersonalInterest;
|
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
|
|
2
|
+
interface Props {
|
|
3
|
+
isTeacher?: boolean;
|
|
4
|
+
}
|
|
5
|
+
declare const SummaryStrengthsAndChallenges: ({ isTeacher }: Props) => JSX.Element;
|
|
3
6
|
export default SummaryStrengthsAndChallenges;
|
package/dist/index.css
CHANGED
|
@@ -341,9 +341,9 @@ p._1YLGi {
|
|
|
341
341
|
cursor: pointer; }
|
|
342
342
|
._1DtTP ._2qhHZ ._XTfSF ._3fJXr ._2I-ej > p {
|
|
343
343
|
padding-right: 5px; }
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
344
|
+
@media (max-width: 767px) {
|
|
345
|
+
._1DtTP ._2qhHZ ._XTfSF ._3fJXr {
|
|
346
|
+
display: none; } }
|
|
347
347
|
._1DtTP ._1fpsj ._2INhO {
|
|
348
348
|
font-size: 16px;
|
|
349
349
|
font-weight: 700;
|
|
@@ -363,9 +363,12 @@ p._1YLGi {
|
|
|
363
363
|
border-radius: 12px; }
|
|
364
364
|
|
|
365
365
|
._3gaSR {
|
|
366
|
-
display:
|
|
367
|
-
|
|
368
|
-
|
|
366
|
+
display: none; }
|
|
367
|
+
@media (max-width: 767px) {
|
|
368
|
+
._3gaSR {
|
|
369
|
+
display: flex;
|
|
370
|
+
align-items: center;
|
|
371
|
+
justify-content: flex-end; } }
|
|
369
372
|
._3gaSR ._368JR {
|
|
370
373
|
display: flex;
|
|
371
374
|
align-items: center;
|
|
@@ -384,10 +387,6 @@ p._1YLGi {
|
|
|
384
387
|
border-radius: 12px;
|
|
385
388
|
cursor: pointer; }
|
|
386
389
|
|
|
387
|
-
@media (min-width: 1024px) {
|
|
388
|
-
._3gaSR {
|
|
389
|
-
display: none; } }
|
|
390
|
-
|
|
391
390
|
._3Flx1 {
|
|
392
391
|
padding: 20px; }
|
|
393
392
|
._3Flx1 ._3Mi_n {
|
|
@@ -395,7 +394,7 @@ p._1YLGi {
|
|
|
395
394
|
justify-content: space-between;
|
|
396
395
|
align-items: center; }
|
|
397
396
|
._3Flx1 ._3Mi_n ._21QGx {
|
|
398
|
-
font-size:
|
|
397
|
+
font-size: 20px;
|
|
399
398
|
font-weight: 700; }
|
|
400
399
|
._3Flx1 ._3Mi_n ._2eeiS {
|
|
401
400
|
display: flex;
|
|
@@ -463,6 +462,11 @@ p._1YLGi {
|
|
|
463
462
|
width: 28px !important;
|
|
464
463
|
height: 28px !important; }
|
|
465
464
|
|
|
465
|
+
._z69mr {
|
|
466
|
+
color: #e53e3e;
|
|
467
|
+
border: 1px solid;
|
|
468
|
+
border-radius: 12px; }
|
|
469
|
+
|
|
466
470
|
@font-face {
|
|
467
471
|
font-family: "Lato-Regular";
|
|
468
472
|
src: url("/fonts/Lato-Regular.ttf");
|
|
@@ -705,6 +709,10 @@ p._1YLGi {
|
|
|
705
709
|
color: #153e75;
|
|
706
710
|
border-radius: 99px; }
|
|
707
711
|
|
|
712
|
+
._1bou9 {
|
|
713
|
+
color: #0A4DA2 !important;
|
|
714
|
+
cursor: pointer; }
|
|
715
|
+
|
|
708
716
|
._3zfpv {
|
|
709
717
|
display: flex;
|
|
710
718
|
justify-content: space-evenly;
|
|
@@ -720,6 +728,16 @@ p._1YLGi {
|
|
|
720
728
|
background-color: #308252 !important;
|
|
721
729
|
border-radius: 12px !important; }
|
|
722
730
|
|
|
731
|
+
._NLxWQ {
|
|
732
|
+
width: 50px;
|
|
733
|
+
padding: 15px 5px 15px 10px;
|
|
734
|
+
border-radius: 14px;
|
|
735
|
+
border: 1px solid grey; }
|
|
736
|
+
|
|
737
|
+
._NLxWQ::-webkit-inner-spin-button,
|
|
738
|
+
._NLxWQ::-webkit-outer-spin-button {
|
|
739
|
+
opacity: 1; }
|
|
740
|
+
|
|
723
741
|
@font-face {
|
|
724
742
|
font-family: "Lato-Regular";
|
|
725
743
|
src: url("/fonts/Lato-Regular.ttf");
|
|
@@ -1246,7 +1264,8 @@ p._1YLGi {
|
|
|
1246
1264
|
width: 95%;
|
|
1247
1265
|
border-radius: 4px;
|
|
1248
1266
|
background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 4px, #e2f1f8 4px);
|
|
1249
|
-
/* Standard syntax (must be last) */
|
|
1267
|
+
/* Standard syntax (must be last) */
|
|
1268
|
+
cursor: pointer; }
|
|
1250
1269
|
|
|
1251
1270
|
._3tAm8 {
|
|
1252
1271
|
padding: 6px; }
|
|
@@ -1426,12 +1445,17 @@ p._1YLGi {
|
|
|
1426
1445
|
._2ZL58 {
|
|
1427
1446
|
display: flex; }
|
|
1428
1447
|
|
|
1429
|
-
._31Wa2
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1448
|
+
._31Wa2 {
|
|
1449
|
+
display: flex;
|
|
1450
|
+
flex-direction: column;
|
|
1451
|
+
justify-content: flex-end;
|
|
1452
|
+
margin-left: 20px; }
|
|
1453
|
+
._31Wa2 > p {
|
|
1454
|
+
background: #edf2f7;
|
|
1455
|
+
color: #a0aec0;
|
|
1456
|
+
border-radius: 4px;
|
|
1457
|
+
padding: 5px 10px;
|
|
1458
|
+
margin: 10px 0; }
|
|
1435
1459
|
|
|
1436
1460
|
._142Ha {
|
|
1437
1461
|
width: 25px;
|
|
@@ -3539,12 +3563,13 @@ h2._1OAmb {
|
|
|
3539
3563
|
|
|
3540
3564
|
._1UciI ._23pHy {
|
|
3541
3565
|
display: flex;
|
|
3566
|
+
justify-content: space-between;
|
|
3542
3567
|
box-shadow: 0 3px 10px 2px #00000033;
|
|
3543
3568
|
border-radius: 12px;
|
|
3544
3569
|
padding: 20px;
|
|
3545
3570
|
margin-bottom: 20px; }
|
|
3546
3571
|
._1UciI ._23pHy ._4pljN {
|
|
3547
|
-
width:
|
|
3572
|
+
width: 60%; }
|
|
3548
3573
|
._1UciI ._23pHy ._4pljN ._3OZr_ {
|
|
3549
3574
|
font-size: 20px;
|
|
3550
3575
|
font-weight: 700; }
|
|
@@ -3561,24 +3586,27 @@ h2._1OAmb {
|
|
|
3561
3586
|
margin-top: 15px;
|
|
3562
3587
|
margin-bottom: 5px; }
|
|
3563
3588
|
._1UciI ._23pHy ._2_cth {
|
|
3564
|
-
width:
|
|
3589
|
+
width: 30%; }
|
|
3565
3590
|
|
|
3566
|
-
.
|
|
3591
|
+
._tOmgJ {
|
|
3567
3592
|
display: flex;
|
|
3568
|
-
|
|
3569
|
-
|
|
3570
|
-
|
|
3571
|
-
|
|
3572
|
-
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3593
|
+
justify-content: flex-end; }
|
|
3594
|
+
._tOmgJ ._3KxkK {
|
|
3595
|
+
display: flex;
|
|
3596
|
+
align-items: center;
|
|
3597
|
+
justify-content: flex-end;
|
|
3598
|
+
background: #308252;
|
|
3599
|
+
border-radius: 12px;
|
|
3600
|
+
color: #ffff;
|
|
3601
|
+
padding: 2px 10px;
|
|
3602
|
+
inline-size: -webkit-fit-content;
|
|
3603
|
+
inline-size: -moz-fit-content;
|
|
3604
|
+
inline-size: fit-content;
|
|
3605
|
+
cursor: pointer; }
|
|
3606
|
+
._tOmgJ ._3KxkK > p {
|
|
3607
|
+
font-size: 12px;
|
|
3608
|
+
font-weight: 500;
|
|
3609
|
+
margin-right: 5px; }
|
|
3582
3610
|
|
|
3583
3611
|
._3y2ts {
|
|
3584
3612
|
margin: 15px 0; }
|
|
@@ -3895,6 +3923,10 @@ h2._1OAmb {
|
|
|
3895
3923
|
font-size: 20px;
|
|
3896
3924
|
font-weight: 700; }
|
|
3897
3925
|
|
|
3926
|
+
._1xZXQ img {
|
|
3927
|
+
display: block;
|
|
3928
|
+
margin: 0 auto; }
|
|
3929
|
+
|
|
3898
3930
|
._2cDnz {
|
|
3899
3931
|
display: flex;
|
|
3900
3932
|
justify-content: space-between;
|
|
@@ -4031,6 +4063,10 @@ h2._1OAmb {
|
|
|
4031
4063
|
font-size: 20px;
|
|
4032
4064
|
font-weight: 700; }
|
|
4033
4065
|
|
|
4066
|
+
._23KdS img {
|
|
4067
|
+
display: block;
|
|
4068
|
+
margin: 0 auto; }
|
|
4069
|
+
|
|
4034
4070
|
._1sc2P {
|
|
4035
4071
|
position: relative;
|
|
4036
4072
|
margin-top: 24px;
|
|
@@ -6215,10 +6251,16 @@ h2._1KpSK {
|
|
|
6215
6251
|
border-radius: 12px;
|
|
6216
6252
|
color: #ffff; }
|
|
6217
6253
|
._3YpUx ._1HGVd ._GQOgS {
|
|
6218
|
-
display: flex;
|
|
6254
|
+
display: flex;
|
|
6255
|
+
flex-wrap: wrap; }
|
|
6219
6256
|
._3YpUx ._1HGVd ._GQOgS ._ipkfl {
|
|
6220
6257
|
margin-right: 25px;
|
|
6221
|
-
text-align: center;
|
|
6258
|
+
text-align: center;
|
|
6259
|
+
display: flex;
|
|
6260
|
+
flex-direction: column;
|
|
6261
|
+
align-items: center; }
|
|
6262
|
+
._3YpUx ._1HGVd ._GQOgS ._ipkfl ._2_YnI {
|
|
6263
|
+
margin-bottom: 14px; }
|
|
6222
6264
|
._3YpUx ._3kTV7 {
|
|
6223
6265
|
padding: 16px 0px;
|
|
6224
6266
|
border-radius: 10px; }
|
|
@@ -6238,7 +6280,8 @@ h2._1KpSK {
|
|
|
6238
6280
|
border-radius: 12px;
|
|
6239
6281
|
color: #ffff; }
|
|
6240
6282
|
._3YpUx ._3kTV7 ._3hWWs {
|
|
6241
|
-
display: flex;
|
|
6283
|
+
display: flex;
|
|
6284
|
+
flex-wrap: wrap; }
|
|
6242
6285
|
._3YpUx ._3kTV7 ._zgAk0 {
|
|
6243
6286
|
font-weight: 400;
|
|
6244
6287
|
font-size: 16px;
|
|
@@ -6653,7 +6696,7 @@ h2._1KpSK {
|
|
|
6653
6696
|
justify-content: space-between;
|
|
6654
6697
|
align-items: center; }
|
|
6655
6698
|
._3pVob ._1mHx1 ._5zvD_ {
|
|
6656
|
-
font-size:
|
|
6699
|
+
font-size: 20px;
|
|
6657
6700
|
font-weight: 700; }
|
|
6658
6701
|
._3pVob ._1mHx1 ._scSnT {
|
|
6659
6702
|
display: flex;
|
|
@@ -6813,9 +6856,20 @@ h2._1KpSK {
|
|
|
6813
6856
|
._3GVL7 ._2MK6T ._1Fx7D {
|
|
6814
6857
|
display: flex; }
|
|
6815
6858
|
._3GVL7 ._2MK6T ._1Fx7D ._AgIdY {
|
|
6816
|
-
margin-right: 10px;
|
|
6817
|
-
|
|
6818
|
-
|
|
6859
|
+
margin-right: 10px;
|
|
6860
|
+
width: 70px; }
|
|
6861
|
+
._3GVL7 ._2MK6T ._1Fx7D ._AgIdY img {
|
|
6862
|
+
width: 100%;
|
|
6863
|
+
-o-object-fit: contain;
|
|
6864
|
+
object-fit: contain; }
|
|
6865
|
+
._3GVL7 ._2MK6T ._1Fx7D ._30hUw {
|
|
6866
|
+
width: 80%; }
|
|
6867
|
+
._3GVL7 ._2MK6T ._1Fx7D ._30hUw h4 {
|
|
6868
|
+
font-weight: 700;
|
|
6869
|
+
font-size: 20px; }
|
|
6870
|
+
._3GVL7 ._2MK6T ._1Fx7D ._30hUw p {
|
|
6871
|
+
font-weight: 400;
|
|
6872
|
+
font-size: 16px; }
|
|
6819
6873
|
._3GVL7 ._2MK6T ._14vde {
|
|
6820
6874
|
display: flex; }
|
|
6821
6875
|
._3GVL7 ._2MK6T ._14vde ._QlPcx {
|
|
@@ -6850,7 +6904,9 @@ h2._1KpSK {
|
|
|
6850
6904
|
|
|
6851
6905
|
._ubnov ._rwvi_, ._ubnov ._2iFKR {
|
|
6852
6906
|
width: 508px;
|
|
6853
|
-
height: 170px;
|
|
6907
|
+
height: 170px;
|
|
6908
|
+
-o-object-fit: contain;
|
|
6909
|
+
object-fit: contain; }
|
|
6854
6910
|
|
|
6855
6911
|
._ubnov ._3RC2E {
|
|
6856
6912
|
position: relative; }
|
|
@@ -6861,6 +6917,10 @@ h2._1KpSK {
|
|
|
6861
6917
|
color: white;
|
|
6862
6918
|
background: black; }
|
|
6863
6919
|
|
|
6920
|
+
._ubnov ._38U_g {
|
|
6921
|
+
margin-bottom: 20px;
|
|
6922
|
+
color: #ff0000; }
|
|
6923
|
+
|
|
6864
6924
|
._ubnov ._1v_Kg {
|
|
6865
6925
|
margin-top: 26px;
|
|
6866
6926
|
margin-bottom: 26px; }
|
|
@@ -6881,7 +6941,7 @@ h2._1KpSK {
|
|
|
6881
6941
|
|
|
6882
6942
|
._ubnov ._7GaPj {
|
|
6883
6943
|
width: 100%;
|
|
6884
|
-
margin: 25px 0px;
|
|
6944
|
+
margin: 25px 0px 20px;
|
|
6885
6945
|
border-radius: 12px; }
|
|
6886
6946
|
|
|
6887
6947
|
._ubnov ._fxh4O {
|
|
@@ -6949,6 +7009,8 @@ h2._1KpSK {
|
|
|
6949
7009
|
border-radius: 12px;
|
|
6950
7010
|
background-color: #308252;
|
|
6951
7011
|
color: #fff; }
|
|
7012
|
+
._3uJBt ._11NhX:hover {
|
|
7013
|
+
background-color: rgba(48, 130, 82, 0.7); }
|
|
6952
7014
|
|
|
6953
7015
|
._3PqK8 {
|
|
6954
7016
|
font-size: 15px;
|
|
@@ -7910,6 +7972,8 @@ button._kb6Ui {
|
|
|
7910
7972
|
background: #308252;
|
|
7911
7973
|
color: white;
|
|
7912
7974
|
padding: 0 24px; }
|
|
7975
|
+
._21KWj ._PU8bA:hover {
|
|
7976
|
+
background: #22663e; }
|
|
7913
7977
|
._21KWj ._1nvjp {
|
|
7914
7978
|
font-size: 24px;
|
|
7915
7979
|
font-weight: bold; }
|
package/dist/index.d.ts
CHANGED
|
@@ -20,7 +20,6 @@ import UpdateStudentProfile from "./containers/MyStudent/components/UpdateStuden
|
|
|
20
20
|
import CreateStudent from "./containers/MyStudent/components/CreateStudent";
|
|
21
21
|
import ChangePassword from "./containers/MyProfile/views/ChangePassword";
|
|
22
22
|
import StageDebugPage from "./containers/StageDebug/views/StageDebugPage";
|
|
23
|
-
import NotificarionsPage from "./containers/SettingsPage/components/NotificationsPage";
|
|
24
23
|
import LearningPlan from "./containers/LearningPlan/views/LearningPlan";
|
|
25
24
|
import PersonalLearningGoal from "./containers/PersonalLearningPlan/components/PersonalLearningGoal/PersonalLearningGoal";
|
|
26
25
|
import ListPersonalinterrest from "./containers/PersonalLearningPlan/PersonalInterests/components/ListPersonalInterrest";
|
|
@@ -45,4 +44,4 @@ import GoalList from "./containers/Goals/components/GoalList";
|
|
|
45
44
|
import GoalDetail from "./containers/Goals/components/GoalDetail";
|
|
46
45
|
import NewGoal from "./containers/Goals/components/NewGoal";
|
|
47
46
|
import MyClassReflection from "./containers/MyClassReflection/components/MyClassReflection";
|
|
48
|
-
export { MainLayout, HomePage, MyOneToOne, MyConferences, ConductIndex, MyStudent, SessionResultComponent, BookSession, SessionDetail, StudentDetail, StartReflection, ResultReflection, StudentReflection, ConferenceRubric, ResultConferenceRubric, BookSessionConferences, MyProfile, NewLearningPlan, UpdateStudentProfile, CreateStudent, ChangePassword, StageDebugPage,
|
|
47
|
+
export { MainLayout, HomePage, MyOneToOne, MyConferences, ConductIndex, MyStudent, SessionResultComponent, BookSession, SessionDetail, StudentDetail, StartReflection, ResultReflection, StudentReflection, ConferenceRubric, ResultConferenceRubric, BookSessionConferences, MyProfile, NewLearningPlan, UpdateStudentProfile, CreateStudent, ChangePassword, StageDebugPage, LearningPlan, PersonalLearningGoal, ListPersonalinterrest, AccomondationList, AboutMyLearningList, ThinkTeacherCanHelpList, DetailStrengthsAndChallenges, UiCompletedOneToOne, Note, AddNote, EditNote, ViewItemNote, SettingPage, FriendCircleLearning, ListFriendCircle, ActivityCircleLearning, ListActivityLearning, LearningStrategies, LearningStrategiesSave, ActionPoint, GoalList, GoalDetail, NewGoal, MyClassReflection };
|