mario-education 2.4.52-beta → 2.4.53-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/types.d.ts +1 -0
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +9 -1
- package/dist/index.modern.js.map +1 -1
- package/package.json +2 -2
package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/configs/constants.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ export declare const INITIAl_STUDENT_DASHBOARD: {
|
|
|
33
33
|
totalOneToOne: number;
|
|
34
34
|
totalTimeConference: number;
|
|
35
35
|
totalTimeOneToOne: number;
|
|
36
|
+
totalCheckIn: number;
|
|
36
37
|
};
|
|
37
38
|
export declare const INITIAL_AVG: number[];
|
|
38
39
|
export declare const COLOR_CHART_AND_PERCENTS: string[];
|
package/dist/index.js
CHANGED
|
@@ -21320,7 +21320,8 @@ var INITIAl_STUDENT_DASHBOARD = {
|
|
|
21320
21320
|
totalConference: 0,
|
|
21321
21321
|
totalOneToOne: 0,
|
|
21322
21322
|
totalTimeConference: 0,
|
|
21323
|
-
totalTimeOneToOne: 0
|
|
21323
|
+
totalTimeOneToOne: 0,
|
|
21324
|
+
totalCheckIn: 0
|
|
21324
21325
|
};
|
|
21325
21326
|
var INITIAL_AVG = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
|
|
21326
21327
|
var COLOR_CHART_AND_PERCENTS = ["#73C8E5", "#97AFB9", "#FFB04F", "#FF7670", "#00B8B2", "#00B8FF", "#C6A762", "#C94645", "#006E60", "#336DDA", "#994700"];
|
|
@@ -29181,6 +29182,13 @@ var useChartDatas = function useChartDatas() {
|
|
|
29181
29182
|
isUp: true,
|
|
29182
29183
|
deviant: "2",
|
|
29183
29184
|
filter: "this week"
|
|
29185
|
+
}, {
|
|
29186
|
+
icon: "images/icon_chart.png",
|
|
29187
|
+
title: "total_check_in",
|
|
29188
|
+
value: listTotalTime === null || listTotalTime === void 0 ? void 0 : listTotalTime.totalCheckIn,
|
|
29189
|
+
isUp: true,
|
|
29190
|
+
deviant: "2",
|
|
29191
|
+
filter: "this week"
|
|
29184
29192
|
}, {
|
|
29185
29193
|
icon: "images/icon_watch.png",
|
|
29186
29194
|
title: "total_1_to_1_time",
|