mario-education 2.4.5-beta → 2.4.7-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/components/CustomBarChart.d.ts +1 -1
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/hooks/useDashboard.d.ts +7 -4
- package/dist/MarioFramework.Education/ClientApp/src/containers/LearningStrategy/hooks/useStrategyDetail.d.ts +1 -0
- package/dist/index.css +30 -9
- package/dist/index.js +214 -251
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +215 -252
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/hooks/useDashboard.d.ts
CHANGED
|
@@ -7,15 +7,18 @@ declare const useDashboard: () => {
|
|
|
7
7
|
readinessToLearning: any;
|
|
8
8
|
topLearningStrategies: any;
|
|
9
9
|
studentByGrade: undefined;
|
|
10
|
-
chartOneToOneData:
|
|
11
|
-
chartClassReflection:
|
|
12
|
-
chartConference:
|
|
13
|
-
learningProgress:
|
|
10
|
+
chartOneToOneData: never[];
|
|
11
|
+
chartClassReflection: never[];
|
|
12
|
+
chartConference: never[];
|
|
13
|
+
learningProgress: never[];
|
|
14
14
|
friendCircles: IsyntheticFriendCircle | undefined;
|
|
15
15
|
activityCircles: IActivityCircle | undefined;
|
|
16
16
|
studentBySpecialNeed: undefined;
|
|
17
17
|
studentByAge: undefined;
|
|
18
18
|
studentByGender: undefined;
|
|
19
19
|
grades: string[];
|
|
20
|
+
safety: never[];
|
|
21
|
+
topSkill: never[];
|
|
22
|
+
getConvertMinuteToHour: (timeSecond: any) => string;
|
|
20
23
|
};
|
|
21
24
|
export default useDashboard;
|
package/dist/index.css
CHANGED
|
@@ -124,11 +124,14 @@ h6._3zOGW {
|
|
|
124
124
|
}
|
|
125
125
|
|
|
126
126
|
._1Jgr2 {
|
|
127
|
-
border: 1px solid grey;
|
|
128
127
|
padding: 16px;
|
|
129
128
|
min-height: 450px;
|
|
130
129
|
display: flex;
|
|
131
130
|
flex-direction: column;
|
|
131
|
+
background: #ffffff;
|
|
132
|
+
border: 1px solid #ebeff2;
|
|
133
|
+
box-shadow: 6px 0px 18px rgba(0, 0, 0, 0.06);
|
|
134
|
+
border-radius: 8px;
|
|
132
135
|
}
|
|
133
136
|
|
|
134
137
|
._3Thdy {
|
|
@@ -197,18 +200,18 @@ h6._3zOGW {
|
|
|
197
200
|
|
|
198
201
|
._3XXJp {
|
|
199
202
|
width: 35px;
|
|
200
|
-
color: #
|
|
203
|
+
color: #0d9994;
|
|
201
204
|
text-align: center;
|
|
202
205
|
}
|
|
203
206
|
|
|
204
207
|
._LCuWQ {
|
|
205
|
-
background: #
|
|
206
|
-
color: #
|
|
208
|
+
background: #cef7f5;
|
|
209
|
+
color: #0d9994;
|
|
207
210
|
border-radius: 8px;
|
|
208
211
|
}
|
|
209
212
|
|
|
210
213
|
._3x9D7 {
|
|
211
|
-
color: #
|
|
214
|
+
color: #1da370;
|
|
212
215
|
}
|
|
213
216
|
|
|
214
217
|
._2In63 {
|
|
@@ -246,10 +249,28 @@ h6._3zOGW {
|
|
|
246
249
|
}
|
|
247
250
|
|
|
248
251
|
._31VDE,
|
|
249
|
-
._1Pm1w{
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
252
|
+
._1Pm1w {
|
|
253
|
+
min-width: 200px;
|
|
254
|
+
margin-left: 20px;
|
|
255
|
+
margin-bottom: 10px;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
._3hSow {
|
|
259
|
+
background: #ffffff;
|
|
260
|
+
border: 1px solid #ebeff2;
|
|
261
|
+
box-shadow: 6px 0px 18px rgba(0, 0, 0, 0.06);
|
|
262
|
+
border-radius: 8px;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
._1yuC9 {
|
|
266
|
+
min-width: 220px;
|
|
267
|
+
}
|
|
268
|
+
._1yuC9:last-child {
|
|
269
|
+
padding: 1.2rem !important;
|
|
270
|
+
}
|
|
271
|
+
._1yuC9:last-child div {
|
|
272
|
+
width: 80%;
|
|
273
|
+
margin: 0 auto;
|
|
253
274
|
}
|
|
254
275
|
|
|
255
276
|
._2Q9xO{
|