mario-education 2.4.7-beta → 2.4.10-beta
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/MarioFramework.Education/ClientApp/src/containers/Dashboard/configs/constants.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/configs/utils.d.ts +3 -1
- package/dist/MarioFramework.Education/ClientApp/src/services/userDeletedService.d.ts +1 -0
- package/dist/MarioFramework.Education/ClientApp/src/services/userService.d.ts +1 -0
- package/dist/index.css +24 -0
- package/dist/index.js +407 -191
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +407 -191
- package/dist/index.modern.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ApexOptions } from "apexcharts";
|
|
1
2
|
import { IOptionSelector } from "../../../components/Select/InputSelector";
|
|
2
3
|
import { IActivityCircle, IsyntheticFriendCircle, LegalGenderType } from "./types";
|
|
3
4
|
export declare const getColors: (length: number) => string[];
|
|
@@ -9,7 +10,7 @@ export declare const friendCircleItems: ({ bestFriends, friends, couldBeFriends,
|
|
|
9
10
|
width: number;
|
|
10
11
|
height: number;
|
|
11
12
|
}[];
|
|
12
|
-
export declare const activityCircleItems: ({ like, love, interested, curious
|
|
13
|
+
export declare const activityCircleItems: ({ like, love, interested, curious }: IActivityCircle) => {
|
|
13
14
|
id: number;
|
|
14
15
|
name: string;
|
|
15
16
|
number: number;
|
|
@@ -22,3 +23,4 @@ export declare const genderOptions: {
|
|
|
22
23
|
value: LegalGenderType;
|
|
23
24
|
label: string;
|
|
24
25
|
}[];
|
|
26
|
+
export declare const learningStrategyChartOptions: (labelNames: string[]) => ApexOptions;
|
|
@@ -3,3 +3,4 @@ export declare const remove: (id: string, userChangeId?: string | undefined) =>
|
|
|
3
3
|
export declare const getTeacher: () => Promise<import("axios").AxiosResponse<any>>;
|
|
4
4
|
export declare const getStudentAll: (filter: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
5
5
|
export declare const changeTeacherOfStudent: (id: number, teacherUserId: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
6
|
+
export declare const getTeachersByStudentId: (studentId: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
@@ -2,4 +2,5 @@ import { TypeStudentAssistantData } from "../containers/SwitchAssistant/utils/ty
|
|
|
2
2
|
import { IStudentWidthAssistant } from "../utils/serviceType.interface";
|
|
3
3
|
export declare const getStudentAssistant: (data: IStudentWidthAssistant) => Promise<import("axios").AxiosResponse<TypeStudentAssistantData>>;
|
|
4
4
|
export declare const getAssistant: () => Promise<import("axios").AxiosResponse<any>>;
|
|
5
|
+
export declare const getAssistantByStudentId: (studentId: number) => Promise<import("axios").AxiosResponse<any>>;
|
|
5
6
|
export declare const changeAssistantOfStudent: (id: number, assistantUserId: string) => Promise<import("axios").AxiosResponse<any>>;
|
package/dist/index.css
CHANGED
|
@@ -273,6 +273,30 @@ h6._3zOGW {
|
|
|
273
273
|
margin: 0 auto;
|
|
274
274
|
}
|
|
275
275
|
|
|
276
|
+
._2PMoX {
|
|
277
|
+
height: auto;
|
|
278
|
+
width: 100%;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
._2asi- ._muT01 ._35BzZ {
|
|
282
|
+
font-size: 20px;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
@media (min-width: 1024px) {
|
|
286
|
+
._3pkbc {
|
|
287
|
+
max-width: 60%;
|
|
288
|
+
}
|
|
289
|
+
._16MpB {
|
|
290
|
+
max-width: 70%;
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
._CHu-i {
|
|
295
|
+
font-weight: 700;
|
|
296
|
+
font-size: 24px;
|
|
297
|
+
line-height: 116%;
|
|
298
|
+
}
|
|
299
|
+
|
|
276
300
|
._2Q9xO{
|
|
277
301
|
border-radius: 50%;
|
|
278
302
|
display: flex;
|