mario-education 2.5.4-release → 2.5.6-release
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/Classes/components/StudentItemSelector.d.ts +1 -0
- package/dist/containers/Dashboard/components/StudentsMissingConversationModal.d.ts +8 -0
- package/dist/containers/Dashboard/configs/types.d.ts +8 -0
- package/dist/containers/SyncData/hooks/useSyncData.d.ts +1 -0
- package/dist/index.css +81 -59
- package/dist/index.js +1445 -188
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +1445 -188
- package/dist/index.modern.js.map +1 -1
- package/dist/services/syncDataService.d.ts +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IMissedReviewStudents } from '../configs/types';
|
|
2
|
+
interface IProps {
|
|
3
|
+
students: IMissedReviewStudents[];
|
|
4
|
+
openPopoverListStudent: boolean;
|
|
5
|
+
handleCloseListStudentModal: Function;
|
|
6
|
+
}
|
|
7
|
+
declare const StudentsMissingConversationModal: ({ students, openPopoverListStudent, handleCloseListStudentModal }: IProps) => JSX.Element;
|
|
8
|
+
export default StudentsMissingConversationModal;
|
|
@@ -663,10 +663,18 @@ export interface ILowMetricStudent {
|
|
|
663
663
|
orderWeek: number;
|
|
664
664
|
orderMonth: number;
|
|
665
665
|
}
|
|
666
|
+
export interface IMissedReviewStudents {
|
|
667
|
+
studentId: number;
|
|
668
|
+
studentName: string;
|
|
669
|
+
studentProfileImage: string;
|
|
670
|
+
grade?: string;
|
|
671
|
+
conversationDate?: string;
|
|
672
|
+
}
|
|
666
673
|
export interface IConversationKpi {
|
|
667
674
|
conversationTarget: number;
|
|
668
675
|
conversationTeacherAvg: number;
|
|
669
676
|
avgStudentReview: number;
|
|
670
677
|
sessionReviewSkipped: number;
|
|
678
|
+
missedReviewStudents: IMissedReviewStudents[];
|
|
671
679
|
}
|
|
672
680
|
export {};
|
|
@@ -10,5 +10,6 @@ declare const useSyncData: () => {
|
|
|
10
10
|
toUser: Student | null;
|
|
11
11
|
setToUser: import("react").Dispatch<import("react").SetStateAction<Student | null>>;
|
|
12
12
|
handleMergeData: () => Promise<void>;
|
|
13
|
+
handleTransferData: () => Promise<void>;
|
|
13
14
|
};
|
|
14
15
|
export default useSyncData;
|
package/dist/index.css
CHANGED
|
@@ -3004,10 +3004,28 @@ h6._3zOGW {
|
|
|
3004
3004
|
align-items: flex-end;
|
|
3005
3005
|
margin-bottom: 11px; }
|
|
3006
3006
|
._3qqfp ._37g7J ._39CQ_ ._2Ch9s {
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
|
|
3007
|
+
display: flex;
|
|
3008
|
+
align-items: flex-end;
|
|
3009
|
+
gap: 8px; }
|
|
3010
|
+
._3qqfp ._37g7J ._39CQ_ ._12pup {
|
|
3011
|
+
font-size: 24px;
|
|
3012
|
+
font-weight: 600;
|
|
3013
|
+
line-height: 32px; }
|
|
3014
|
+
._3qqfp ._37g7J ._39CQ_ ._3G1lN {
|
|
3015
|
+
font-size: 16px;
|
|
3016
|
+
font-weight: 400;
|
|
3017
|
+
line-height: 24px;
|
|
3018
|
+
color: #242424;
|
|
3019
|
+
opacity: 0.56;
|
|
3020
|
+
margin-right: 8px; }
|
|
3021
|
+
._3qqfp ._37g7J ._39CQ_ ._2xaBy {
|
|
3022
|
+
font-size: 16px;
|
|
3023
|
+
font-weight: 600;
|
|
3024
|
+
line-height: 24px;
|
|
3025
|
+
color: #316CD9;
|
|
3026
|
+
cursor: pointer;
|
|
3027
|
+
display: flex;
|
|
3028
|
+
gap: 6px; }
|
|
3011
3029
|
._3qqfp ._37g7J ._39CQ_ ._142hC {
|
|
3012
3030
|
font-size: 16px;
|
|
3013
3031
|
line-height: 24px;
|
|
@@ -3161,6 +3179,10 @@ h6._3zOGW {
|
|
|
3161
3179
|
font-size: 36px;
|
|
3162
3180
|
line-height: 44px;
|
|
3163
3181
|
letter-spacing: 0px; }
|
|
3182
|
+
._35Gjq {
|
|
3183
|
+
font-family: "Montserrat-Bold";
|
|
3184
|
+
font-size: 24px;
|
|
3185
|
+
letter-spacing: 0px; }
|
|
3164
3186
|
._2C4LY {
|
|
3165
3187
|
display: flex;
|
|
3166
3188
|
align-items: center;
|
|
@@ -6400,6 +6422,61 @@ p._1YLGi {
|
|
|
6400
6422
|
background-color: #eff3fc !important;
|
|
6401
6423
|
transition: background-color 0.3s ease;
|
|
6402
6424
|
}
|
|
6425
|
+
._32WAl {
|
|
6426
|
+
padding-top: 52px;
|
|
6427
|
+
display: flex;
|
|
6428
|
+
flex-direction: column;
|
|
6429
|
+
align-items: center;
|
|
6430
|
+
width: 100%;
|
|
6431
|
+
height: 100%;
|
|
6432
|
+
}
|
|
6433
|
+
._34LGL {
|
|
6434
|
+
padding-inline: 48px;
|
|
6435
|
+
padding-bottom: 52px;
|
|
6436
|
+
}
|
|
6437
|
+
._294gr {
|
|
6438
|
+
margin-bottom: 32px;
|
|
6439
|
+
cursor: pointer;
|
|
6440
|
+
svg{
|
|
6441
|
+
width: 56px;
|
|
6442
|
+
height: 56px;
|
|
6443
|
+
}
|
|
6444
|
+
}
|
|
6445
|
+
._DKokt {
|
|
6446
|
+
background-color: #fff;
|
|
6447
|
+
border-radius: 24px;
|
|
6448
|
+
box-shadow: 0px 24px 80px rgba(0, 0, 0, 0.64);
|
|
6449
|
+
overflow: hidden;
|
|
6450
|
+
}
|
|
6451
|
+
._2FOVK{
|
|
6452
|
+
overflow: unset;
|
|
6453
|
+
}
|
|
6454
|
+
._1ztjY {
|
|
6455
|
+
margin-top: 52px;
|
|
6456
|
+
background-color: transparent;
|
|
6457
|
+
color: transparent;
|
|
6458
|
+
width: 100%;
|
|
6459
|
+
text-align: center;
|
|
6460
|
+
-webkit-user-select: none; /* Safari */
|
|
6461
|
+
-ms-user-select: none; /* IE 10 and IE 11 */
|
|
6462
|
+
-moz-user-select: none;
|
|
6463
|
+
user-select: none; /* Standard syntax */
|
|
6464
|
+
}
|
|
6465
|
+
|
|
6466
|
+
@media (max-width: 575.95px) {
|
|
6467
|
+
._34LGL {
|
|
6468
|
+
padding: 36px 0;
|
|
6469
|
+
}
|
|
6470
|
+
._1ztjY{
|
|
6471
|
+
margin-top: 36px;
|
|
6472
|
+
}
|
|
6473
|
+
}
|
|
6474
|
+
|
|
6475
|
+
@media (min-width: 575.95px) and (max-width: 1199.95px) {
|
|
6476
|
+
._34LGL {
|
|
6477
|
+
padding-inline: 0px;
|
|
6478
|
+
}
|
|
6479
|
+
}
|
|
6403
6480
|
._1yt_V {
|
|
6404
6481
|
padding: 10px;
|
|
6405
6482
|
border-radius: 8px;
|
|
@@ -7351,61 +7428,6 @@ p._1YLGi {
|
|
|
7351
7428
|
._qn8Nf {
|
|
7352
7429
|
max-height: 550px; }
|
|
7353
7430
|
|
|
7354
|
-
._32WAl {
|
|
7355
|
-
padding-top: 52px;
|
|
7356
|
-
display: flex;
|
|
7357
|
-
flex-direction: column;
|
|
7358
|
-
align-items: center;
|
|
7359
|
-
width: 100%;
|
|
7360
|
-
height: 100%;
|
|
7361
|
-
}
|
|
7362
|
-
._34LGL {
|
|
7363
|
-
padding-inline: 48px;
|
|
7364
|
-
padding-bottom: 52px;
|
|
7365
|
-
}
|
|
7366
|
-
._294gr {
|
|
7367
|
-
margin-bottom: 32px;
|
|
7368
|
-
cursor: pointer;
|
|
7369
|
-
svg{
|
|
7370
|
-
width: 56px;
|
|
7371
|
-
height: 56px;
|
|
7372
|
-
}
|
|
7373
|
-
}
|
|
7374
|
-
._DKokt {
|
|
7375
|
-
background-color: #fff;
|
|
7376
|
-
border-radius: 24px;
|
|
7377
|
-
box-shadow: 0px 24px 80px rgba(0, 0, 0, 0.64);
|
|
7378
|
-
overflow: hidden;
|
|
7379
|
-
}
|
|
7380
|
-
._2FOVK{
|
|
7381
|
-
overflow: unset;
|
|
7382
|
-
}
|
|
7383
|
-
._1ztjY {
|
|
7384
|
-
margin-top: 52px;
|
|
7385
|
-
background-color: transparent;
|
|
7386
|
-
color: transparent;
|
|
7387
|
-
width: 100%;
|
|
7388
|
-
text-align: center;
|
|
7389
|
-
-webkit-user-select: none; /* Safari */
|
|
7390
|
-
-ms-user-select: none; /* IE 10 and IE 11 */
|
|
7391
|
-
-moz-user-select: none;
|
|
7392
|
-
user-select: none; /* Standard syntax */
|
|
7393
|
-
}
|
|
7394
|
-
|
|
7395
|
-
@media (max-width: 575.95px) {
|
|
7396
|
-
._34LGL {
|
|
7397
|
-
padding: 36px 0;
|
|
7398
|
-
}
|
|
7399
|
-
._1ztjY{
|
|
7400
|
-
margin-top: 36px;
|
|
7401
|
-
}
|
|
7402
|
-
}
|
|
7403
|
-
|
|
7404
|
-
@media (min-width: 575.95px) and (max-width: 1199.95px) {
|
|
7405
|
-
._34LGL {
|
|
7406
|
-
padding-inline: 0px;
|
|
7407
|
-
}
|
|
7408
|
-
}
|
|
7409
7431
|
._1g-gv {
|
|
7410
7432
|
-webkit-animation: _aoKNi 0.6s infinite linear;
|
|
7411
7433
|
animation: _aoKNi 0.6s infinite linear;
|