mario-teacher-student-client 3.0.9-admin → 3.0.10-admin
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/QuestionTypes/SingleChoiceComponent.d.ts +1 -0
- package/dist/components/layouts/NotificationAlert.d.ts +10 -0
- package/dist/components/layouts/constants/constants.d.ts +3 -0
- package/dist/components/layouts/constants/types.d.ts +12 -0
- package/dist/components/layouts/hooks/useAnimation.d.ts +9 -0
- package/dist/components/layouts/hooks/useNotificationAlert.d.ts +7 -0
- package/dist/containers/ConductOneToOne/constant/types.d.ts +0 -6
- package/dist/containers/ConferenceRubric/configs/constants.d.ts +0 -6
- package/dist/containers/ExternalSurvey/hooks/useExternalSurvey.d.ts +1 -0
- package/dist/containers/MyStudent/hooks/useStudentList.d.ts +0 -2
- package/dist/index.css +91 -18
- package/dist/index.js +3472 -3393
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +3433 -3354
- package/dist/index.modern.js.map +1 -1
- package/dist/services/MyStudent.d.ts +0 -1
- package/dist/services/NotificationAlert.d.ts +1 -0
- package/package.json +107 -107
- package/dist/components/Dialog/ModalCounselor.d.ts +0 -10
- package/dist/components/selector/CounselorSelector.d.ts +0 -3
|
@@ -34,7 +34,6 @@ export declare const postDataActionPointApi: (data: any) => Promise<import("axio
|
|
|
34
34
|
export declare const postExternalDataActionPointApi: (studentId: number, token: string, data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
35
35
|
export declare const deleteActionPointApi: (id: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
36
36
|
export declare const updateTeacherAssignStudent: (body: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
37
|
-
export declare const updateTeacherAssignCounselor: (body: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
38
37
|
export declare const getAllEduTeacher: () => Promise<import("axios").AxiosResponse<any>>;
|
|
39
38
|
export declare const getEduTeacherByStudentId: (studentId: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
40
39
|
export declare const selectEduTeacher: (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const getBySchool: () => Promise<import("axios").AxiosResponse<any>>;
|
package/package.json
CHANGED
|
@@ -1,107 +1,107 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "mario-teacher-student-client",
|
|
3
|
-
"version": "3.0.
|
|
4
|
-
"description": "Made with create-react-library",
|
|
5
|
-
"author": "brss",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"repository": "brss/mario-chat",
|
|
8
|
-
"main": "dist/index.js",
|
|
9
|
-
"module": "dist/index.modern.js",
|
|
10
|
-
"source": "src/index.tsx",
|
|
11
|
-
"engines": {
|
|
12
|
-
"node": ">=10"
|
|
13
|
-
},
|
|
14
|
-
"scripts": {
|
|
15
|
-
"build": "microbundle-crl --no-compress --format modern,cjs",
|
|
16
|
-
"start": "microbundle-crl watch --no-compress --format modern,cjs",
|
|
17
|
-
"prepare": "run-s build",
|
|
18
|
-
"test": "run-s test:unit test:lint test:build",
|
|
19
|
-
"test:build": "run-s build",
|
|
20
|
-
"test:lint": "eslint .",
|
|
21
|
-
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
|
|
22
|
-
"test:watch": "react-scripts test --env=jsdom",
|
|
23
|
-
"predeploy": "cd example && npm install && npm run build",
|
|
24
|
-
"deploy": "gh-pages -d example/build"
|
|
25
|
-
},
|
|
26
|
-
"peerDependencies": {
|
|
27
|
-
"axios": "*",
|
|
28
|
-
"react": "*",
|
|
29
|
-
"react-dom": "*",
|
|
30
|
-
"react-redux": "*",
|
|
31
|
-
"react-router-dom": "*"
|
|
32
|
-
},
|
|
33
|
-
"devDependencies": {
|
|
34
|
-
"@rollup/plugin-commonjs": "11.0.2",
|
|
35
|
-
"@testing-library/jest-dom": "^4.2.4",
|
|
36
|
-
"@testing-library/react": "^9.5.0",
|
|
37
|
-
"@testing-library/user-event": "^7.2.1",
|
|
38
|
-
"@types/dom-mediacapture-record": "^1.0.7",
|
|
39
|
-
"@types/jest": "^25.1.4",
|
|
40
|
-
"@types/node": "^12.12.38",
|
|
41
|
-
"@types/react-datepicker": "^4.3.4",
|
|
42
|
-
"@types/react-redux": "^7.1.16",
|
|
43
|
-
"@types/react-router-dom": "^5.1.7",
|
|
44
|
-
"@types/yup": "^0.29.11",
|
|
45
|
-
"@typescript-eslint/eslint-plugin": "^2.26.0",
|
|
46
|
-
"@typescript-eslint/parser": "^2.26.0",
|
|
47
|
-
"babel-eslint": "^10.0.3",
|
|
48
|
-
"cross-env": "^7.0.2",
|
|
49
|
-
"eslint": "^6.8.0",
|
|
50
|
-
"eslint-config-prettier": "^6.7.0",
|
|
51
|
-
"eslint-config-standard": "^14.1.0",
|
|
52
|
-
"eslint-config-standard-react": "^9.2.0",
|
|
53
|
-
"eslint-plugin-import": "^2.18.2",
|
|
54
|
-
"eslint-plugin-node": "^11.0.0",
|
|
55
|
-
"eslint-plugin-prettier": "^3.1.1",
|
|
56
|
-
"eslint-plugin-promise": "^4.2.1",
|
|
57
|
-
"eslint-plugin-react": "^7.17.0",
|
|
58
|
-
"eslint-plugin-standard": "^4.0.1",
|
|
59
|
-
"gh-pages": "^2.2.0",
|
|
60
|
-
"microbundle-crl": "^0.13.10",
|
|
61
|
-
"npm-run-all": "^4.1.5",
|
|
62
|
-
"prettier": "^2.0.4",
|
|
63
|
-
"react-scripts": "^3.4.1",
|
|
64
|
-
"typescript": "^3.7.5"
|
|
65
|
-
},
|
|
66
|
-
"files": [
|
|
67
|
-
"dist"
|
|
68
|
-
],
|
|
69
|
-
"dependencies": {
|
|
70
|
-
"@date-io/date-fns": "^1.3.13",
|
|
71
|
-
"@date-io/moment": "^1.3.13",
|
|
72
|
-
"@emotion/react": "^11.6.0",
|
|
73
|
-
"@emotion/styled": "^11.6.0",
|
|
74
|
-
"@fullcalendar/daygrid": "^5.10.1",
|
|
75
|
-
"@fullcalendar/moment": "^5.10.1",
|
|
76
|
-
"@fullcalendar/react": "^5.10.1",
|
|
77
|
-
"@fullcalendar/timegrid": "^5.10.1",
|
|
78
|
-
"@material-ui/core": "^4.12.3",
|
|
79
|
-
"@material-ui/data-grid": "^4.0.0-alpha.37",
|
|
80
|
-
"@material-ui/icons": "^4.11.2",
|
|
81
|
-
"@material-ui/lab": "^4.0.0-alpha.60",
|
|
82
|
-
"@material-ui/pickers": "^3.2.8",
|
|
83
|
-
"@types/chart.js": "^2.9.35",
|
|
84
|
-
"@types/react": "^17.0.35",
|
|
85
|
-
"@types/react-dom": "^17.0.11",
|
|
86
|
-
"apexcharts": "^3.33.1",
|
|
87
|
-
"array-move": "^4.0.0",
|
|
88
|
-
"chart.js": "^2.9.4",
|
|
89
|
-
"date-fns": "^2.19.0",
|
|
90
|
-
"formik": "^2.2.6",
|
|
91
|
-
"fullcalendar": "^5.10.1",
|
|
92
|
-
"jspdf": "^2.5.0",
|
|
93
|
-
"lodash": "^4.17.21",
|
|
94
|
-
"mario-chat": "^1.7.9",
|
|
95
|
-
"mario-core": "
|
|
96
|
-
"material-ui": "^0.20.2",
|
|
97
|
-
"moment": "^2.29.1",
|
|
98
|
-
"node-sass": "^5.0.0",
|
|
99
|
-
"pusher-js": "^7.0.3",
|
|
100
|
-
"react-apexcharts": "^1.3.9",
|
|
101
|
-
"react-datepicker": "^4.5.0",
|
|
102
|
-
"react-draggable": "^4.4.4",
|
|
103
|
-
"react-select": "^5.2.1",
|
|
104
|
-
"react-smooth-dnd": "^0.11.1",
|
|
105
|
-
"yup": "^0.32.9"
|
|
106
|
-
}
|
|
107
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "mario-teacher-student-client",
|
|
3
|
+
"version": "3.0.10-admin",
|
|
4
|
+
"description": "Made with create-react-library",
|
|
5
|
+
"author": "brss",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": "brss/mario-chat",
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"module": "dist/index.modern.js",
|
|
10
|
+
"source": "src/index.tsx",
|
|
11
|
+
"engines": {
|
|
12
|
+
"node": ">=10"
|
|
13
|
+
},
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "microbundle-crl --no-compress --format modern,cjs",
|
|
16
|
+
"start": "microbundle-crl watch --no-compress --format modern,cjs",
|
|
17
|
+
"prepare": "run-s build",
|
|
18
|
+
"test": "run-s test:unit test:lint test:build",
|
|
19
|
+
"test:build": "run-s build",
|
|
20
|
+
"test:lint": "eslint .",
|
|
21
|
+
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
|
|
22
|
+
"test:watch": "react-scripts test --env=jsdom",
|
|
23
|
+
"predeploy": "cd example && npm install && npm run build",
|
|
24
|
+
"deploy": "gh-pages -d example/build"
|
|
25
|
+
},
|
|
26
|
+
"peerDependencies": {
|
|
27
|
+
"axios": "*",
|
|
28
|
+
"react": "*",
|
|
29
|
+
"react-dom": "*",
|
|
30
|
+
"react-redux": "*",
|
|
31
|
+
"react-router-dom": "*"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@rollup/plugin-commonjs": "11.0.2",
|
|
35
|
+
"@testing-library/jest-dom": "^4.2.4",
|
|
36
|
+
"@testing-library/react": "^9.5.0",
|
|
37
|
+
"@testing-library/user-event": "^7.2.1",
|
|
38
|
+
"@types/dom-mediacapture-record": "^1.0.7",
|
|
39
|
+
"@types/jest": "^25.1.4",
|
|
40
|
+
"@types/node": "^12.12.38",
|
|
41
|
+
"@types/react-datepicker": "^4.3.4",
|
|
42
|
+
"@types/react-redux": "^7.1.16",
|
|
43
|
+
"@types/react-router-dom": "^5.1.7",
|
|
44
|
+
"@types/yup": "^0.29.11",
|
|
45
|
+
"@typescript-eslint/eslint-plugin": "^2.26.0",
|
|
46
|
+
"@typescript-eslint/parser": "^2.26.0",
|
|
47
|
+
"babel-eslint": "^10.0.3",
|
|
48
|
+
"cross-env": "^7.0.2",
|
|
49
|
+
"eslint": "^6.8.0",
|
|
50
|
+
"eslint-config-prettier": "^6.7.0",
|
|
51
|
+
"eslint-config-standard": "^14.1.0",
|
|
52
|
+
"eslint-config-standard-react": "^9.2.0",
|
|
53
|
+
"eslint-plugin-import": "^2.18.2",
|
|
54
|
+
"eslint-plugin-node": "^11.0.0",
|
|
55
|
+
"eslint-plugin-prettier": "^3.1.1",
|
|
56
|
+
"eslint-plugin-promise": "^4.2.1",
|
|
57
|
+
"eslint-plugin-react": "^7.17.0",
|
|
58
|
+
"eslint-plugin-standard": "^4.0.1",
|
|
59
|
+
"gh-pages": "^2.2.0",
|
|
60
|
+
"microbundle-crl": "^0.13.10",
|
|
61
|
+
"npm-run-all": "^4.1.5",
|
|
62
|
+
"prettier": "^2.0.4",
|
|
63
|
+
"react-scripts": "^3.4.1",
|
|
64
|
+
"typescript": "^3.7.5"
|
|
65
|
+
},
|
|
66
|
+
"files": [
|
|
67
|
+
"dist"
|
|
68
|
+
],
|
|
69
|
+
"dependencies": {
|
|
70
|
+
"@date-io/date-fns": "^1.3.13",
|
|
71
|
+
"@date-io/moment": "^1.3.13",
|
|
72
|
+
"@emotion/react": "^11.6.0",
|
|
73
|
+
"@emotion/styled": "^11.6.0",
|
|
74
|
+
"@fullcalendar/daygrid": "^5.10.1",
|
|
75
|
+
"@fullcalendar/moment": "^5.10.1",
|
|
76
|
+
"@fullcalendar/react": "^5.10.1",
|
|
77
|
+
"@fullcalendar/timegrid": "^5.10.1",
|
|
78
|
+
"@material-ui/core": "^4.12.3",
|
|
79
|
+
"@material-ui/data-grid": "^4.0.0-alpha.37",
|
|
80
|
+
"@material-ui/icons": "^4.11.2",
|
|
81
|
+
"@material-ui/lab": "^4.0.0-alpha.60",
|
|
82
|
+
"@material-ui/pickers": "^3.2.8",
|
|
83
|
+
"@types/chart.js": "^2.9.35",
|
|
84
|
+
"@types/react": "^17.0.35",
|
|
85
|
+
"@types/react-dom": "^17.0.11",
|
|
86
|
+
"apexcharts": "^3.33.1",
|
|
87
|
+
"array-move": "^4.0.0",
|
|
88
|
+
"chart.js": "^2.9.4",
|
|
89
|
+
"date-fns": "^2.19.0",
|
|
90
|
+
"formik": "^2.2.6",
|
|
91
|
+
"fullcalendar": "^5.10.1",
|
|
92
|
+
"jspdf": "^2.5.0",
|
|
93
|
+
"lodash": "^4.17.21",
|
|
94
|
+
"mario-chat": "^1.7.9",
|
|
95
|
+
"mario-core": "3.0.10-admin",
|
|
96
|
+
"material-ui": "^0.20.2",
|
|
97
|
+
"moment": "^2.29.1",
|
|
98
|
+
"node-sass": "^5.0.0",
|
|
99
|
+
"pusher-js": "^7.0.3",
|
|
100
|
+
"react-apexcharts": "^1.3.9",
|
|
101
|
+
"react-datepicker": "^4.5.0",
|
|
102
|
+
"react-draggable": "^4.4.4",
|
|
103
|
+
"react-select": "^5.2.1",
|
|
104
|
+
"react-smooth-dnd": "^0.11.1",
|
|
105
|
+
"yup": "^0.32.9"
|
|
106
|
+
}
|
|
107
|
+
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { FC } from "react";
|
|
2
|
-
interface IConfirmCancel {
|
|
3
|
-
title: string;
|
|
4
|
-
isOpen: boolean;
|
|
5
|
-
confirmAndClose: () => void;
|
|
6
|
-
onChangeCounselor: Function;
|
|
7
|
-
handleConfirm: Function;
|
|
8
|
-
}
|
|
9
|
-
declare const ModalCounselor: FC<IConfirmCancel>;
|
|
10
|
-
export default ModalCounselor;
|