mario-teacher-student-client 9000.0.8 → 9000.0.11
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/containers/Accommodation/hook/useAccommodation.d.ts +8 -0
- package/dist/containers/ActionPoint/api/apiClient.d.ts +1 -1
- package/dist/containers/ActionPoint/components/CardItem/hooks/useCardItem.d.ts +1 -1
- package/dist/containers/ActionPoint/components/CardItem/services/services.d.ts +1 -1
- package/dist/containers/ActionPoint/components/DashBoardView/hooks/useCard.d.ts +2 -2
- package/dist/containers/Goals/hook/useGoals.d.ts +1 -0
- package/dist/containers/MyOneToOne/components/dialog/DialogRecurrence.d.ts +2 -2
- package/dist/index.css +11 -5
- package/dist/index.js +324 -141
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +324 -141
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -3,5 +3,5 @@ export declare const postDataActionPointApi: (data: any) => Promise<import("axio
|
|
|
3
3
|
export declare const getDataClassNameApi: () => Promise<import("axios").AxiosResponse<any>>;
|
|
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
|
-
export declare const putIsDoneApi: (id: any
|
|
6
|
+
export declare const putIsDoneApi: (id: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
7
7
|
export declare const deleteActionPointApi: (id: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const useCardItem: (actionPoints: any) => {
|
|
2
2
|
clickOpenEdit: (actionPointId: any, refConduct: any) => Promise<void>;
|
|
3
3
|
actionId: number;
|
|
4
|
-
handleChangeIsDone: (
|
|
4
|
+
handleChangeIsDone: (id: any) => Promise<void>;
|
|
5
5
|
data: any;
|
|
6
6
|
};
|
|
7
7
|
export default useCardItem;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const updateIsDone: (dispatch: any, id: any
|
|
1
|
+
export declare const updateIsDone: (dispatch: any, id: any) => Promise<void>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare const useCard: (
|
|
2
|
+
declare const useCard: () => {
|
|
3
3
|
actionId: number;
|
|
4
4
|
clickOpenEdit: (actionPointId: any) => Promise<void>;
|
|
5
|
-
handleChangeIsDone: (_id: any,
|
|
5
|
+
handleChangeIsDone: (_id: any, onReloading: Function) => Promise<void>;
|
|
6
6
|
refConduct: import("react").MutableRefObject<any>;
|
|
7
7
|
};
|
|
8
8
|
export default useCard;
|
|
@@ -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;
|
package/dist/index.css
CHANGED
|
@@ -4054,6 +4054,13 @@ h2._1OAmb {
|
|
|
4054
4054
|
line-height: 18px !important;
|
|
4055
4055
|
cursor: pointer; }
|
|
4056
4056
|
|
|
4057
|
+
._3VC7c {
|
|
4058
|
+
padding: 20px; }
|
|
4059
|
+
._3VC7c > p {
|
|
4060
|
+
font-size: 14px;
|
|
4061
|
+
font-style: normal;
|
|
4062
|
+
font-weight: 700; }
|
|
4063
|
+
|
|
4057
4064
|
._2OFNj {
|
|
4058
4065
|
background-color: #ffffff;
|
|
4059
4066
|
border-radius: 12px;
|
|
@@ -6833,6 +6840,8 @@ h2._1KpSK {
|
|
|
6833
6840
|
color: white;
|
|
6834
6841
|
padding: 10px 30px;
|
|
6835
6842
|
border-radius: 12px; }
|
|
6843
|
+
._miWXB ._1mdHa:hover {
|
|
6844
|
+
background-color: #22663e; }
|
|
6836
6845
|
._miWXB ._2GCRD {
|
|
6837
6846
|
font-size: 24px;
|
|
6838
6847
|
font-weight: bold; }
|
|
@@ -6846,8 +6855,7 @@ h2._1KpSK {
|
|
|
6846
6855
|
margin-left: 15px; }
|
|
6847
6856
|
|
|
6848
6857
|
._3GVL7 {
|
|
6849
|
-
padding: 24px 16px;
|
|
6850
|
-
background: #efefef; }
|
|
6858
|
+
padding: 24px 16px; }
|
|
6851
6859
|
._3GVL7 ._2O_7x {
|
|
6852
6860
|
justify-content: flex-end;
|
|
6853
6861
|
display: flex; }
|
|
@@ -7848,7 +7856,6 @@ button._kb6Ui {
|
|
|
7848
7856
|
margin-left: 5px; }
|
|
7849
7857
|
|
|
7850
7858
|
._26Nh9 {
|
|
7851
|
-
background: #efefef;
|
|
7852
7859
|
padding: 16px 0px; }
|
|
7853
7860
|
._26Nh9 ._2ogUR {
|
|
7854
7861
|
display: flex;
|
|
@@ -7962,8 +7969,7 @@ button._kb6Ui {
|
|
|
7962
7969
|
|
|
7963
7970
|
._PvIMZ {
|
|
7964
7971
|
display: flex;
|
|
7965
|
-
justify-content: flex-end;
|
|
7966
|
-
background: #efefef; }
|
|
7972
|
+
justify-content: flex-end; }
|
|
7967
7973
|
._PvIMZ ._2ogUR {
|
|
7968
7974
|
margin-top: 10px; }
|
|
7969
7975
|
|