mario-core 2.10.2-beta → 2.10.2-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.
Files changed (81) hide show
  1. package/dist/components/Alerts/SandboxAlert.d.ts +3 -0
  2. package/dist/components/Buttons/SyncButton.d.ts +8 -0
  3. package/dist/components/Inputs/PasswordInput.d.ts +1 -0
  4. package/dist/components/Modals/ModelSelectRole.d.ts +7 -0
  5. package/dist/components/Modals/NotificationLogoutModal.d.ts +3 -0
  6. package/dist/components/Selectors/constants/constant.d.ts +1 -1
  7. package/dist/containers/EmailTemplate/hooks/useEmailTemplateDetail.d.ts +1 -0
  8. package/dist/containers/Login/constant/authConfig.d.ts +38 -0
  9. package/dist/containers/Login/constant/types.d.ts +34 -0
  10. package/dist/containers/Login/hooks/useCreatePassword.d.ts +13 -0
  11. package/dist/containers/Login/hooks/useForgotPassword.d.ts +3 -1
  12. package/dist/containers/Login/hooks/useLogin.d.ts +11 -4
  13. package/dist/containers/Login/views/Dashboard.d.ts +2 -1
  14. package/dist/containers/Login/views/Login.d.ts +1 -0
  15. package/dist/containers/Login/views/block/BlockAssignTeacherByCode.d.ts +8 -0
  16. package/dist/containers/Login/views/block/BlockBackground.d.ts +7 -0
  17. package/dist/containers/Login/views/block/BlockCreatePassword.d.ts +3 -0
  18. package/dist/containers/Login/views/block/BlockForgetPassword.d.ts +5 -1
  19. package/dist/containers/Login/views/block/BlockLogin.d.ts +14 -0
  20. package/dist/containers/Login/views/block/BlockSelectTeacher.d.ts +0 -1
  21. package/dist/containers/User/components/AssignStudentModal.d.ts +20 -0
  22. package/dist/containers/User/components/FilterPopover.d.ts +21 -0
  23. package/dist/containers/User/components/HeaderCell.d.ts +18 -0
  24. package/dist/containers/User/components/SwitchTeacherModal.d.ts +3 -0
  25. package/dist/containers/User/components/TableHeader.d.ts +11 -0
  26. package/dist/containers/User/components/TeacherSelector.d.ts +3 -0
  27. package/dist/containers/User/components/UploadCSVButton.d.ts +11 -0
  28. package/dist/containers/User/components/UserDeletedModal.d.ts +3 -0
  29. package/dist/containers/User/configs/utils.d.ts +8 -0
  30. package/dist/containers/User/constants/constants.d.ts +21 -0
  31. package/dist/containers/User/constants/types.d.ts +177 -0
  32. package/dist/containers/User/hooks/useAssignStudent.d.ts +15 -0
  33. package/dist/containers/User/hooks/useAssignStudentList.d.ts +15 -0
  34. package/dist/containers/User/hooks/useAssistantList.d.ts +10 -0
  35. package/dist/containers/User/hooks/useCSVImport.d.ts +38 -0
  36. package/dist/containers/User/hooks/useClickOutside.d.ts +2 -0
  37. package/dist/containers/User/hooks/useCounselorList.d.ts +10 -0
  38. package/dist/containers/User/hooks/useExportUsersCsv.d.ts +5 -0
  39. package/dist/containers/User/hooks/useFilterPopover.d.ts +37 -0
  40. package/dist/containers/User/hooks/useResendMail.d.ts +5 -0
  41. package/dist/containers/User/hooks/useRosterUserSelector.d.ts +8 -0
  42. package/dist/containers/User/hooks/useSecondaryTeacherList.d.ts +10 -0
  43. package/dist/containers/User/hooks/useTableHeader.d.ts +16 -0
  44. package/dist/containers/User/hooks/useTeacherList.d.ts +10 -0
  45. package/dist/containers/User/hooks/useUserDeletedList.d.ts +37 -0
  46. package/dist/containers/User/hooks/useUserDeletedModal.d.ts +14 -0
  47. package/dist/containers/User/hooks/useUserDetail.d.ts +17 -0
  48. package/dist/containers/User/hooks/useUserList.d.ts +6 -3
  49. package/dist/containers/User/hooks/userFilters.d.ts +8 -0
  50. package/dist/containers/User/views/AssignStudentList.d.ts +3 -0
  51. package/dist/containers/User/views/RosterUserSelector.d.ts +8 -0
  52. package/dist/containers/User/views/UserContainer.d.ts +3 -0
  53. package/dist/containers/User/views/UserDeletedList.d.ts +3 -0
  54. package/dist/hooks/useLanguages.d.ts +10 -0
  55. package/dist/index.css +408 -77
  56. package/dist/index.d.ts +12 -6
  57. package/dist/index.js +43906 -4457
  58. package/dist/index.js.map +1 -1
  59. package/dist/index.modern.js +43901 -4465
  60. package/dist/index.modern.js.map +1 -1
  61. package/dist/layouts/TheHeader.d.ts +4 -1
  62. package/dist/layouts/TheHeaderDropdown.d.ts +4 -1
  63. package/dist/redux/commons/action.d.ts +4 -0
  64. package/dist/redux/weeklyQuests/action.d.ts +2 -0
  65. package/dist/redux/weeklyQuests/reducer.d.ts +6 -0
  66. package/dist/rootReducer.d.ts +5 -0
  67. package/dist/services/accountService.d.ts +8 -2
  68. package/dist/services/csvImportService.d.ts +7 -0
  69. package/dist/services/emailTemplateService.d.ts +1 -0
  70. package/dist/services/schoolService.d.ts +2 -0
  71. package/dist/services/userService.d.ts +19 -1
  72. package/dist/services/weeklyQuestService.d.ts +1 -0
  73. package/dist/types/Filter.d.ts +6 -0
  74. package/dist/types/Language.d.ts +8 -0
  75. package/dist/types/Payload.d.ts +2 -0
  76. package/dist/types/WeeklyQuest.d.ts +37 -0
  77. package/dist/types/user.d.ts +3 -0
  78. package/dist/utils/constants.d.ts +11 -2
  79. package/dist/utils/getCookieValue.d.ts +2 -0
  80. package/dist/utils/getStaticFileUrl.d.ts +2 -0
  81. package/package.json +7 -4
package/dist/index.css CHANGED
@@ -10,9 +10,34 @@
10
10
 
11
11
  ._2HqmH {
12
12
  width: 100%;
13
- justify-content: center; }
13
+ justify-content: center;
14
+ border-radius: 50px !important;
15
+ border: none !important;
16
+ box-shadow: none !important;
17
+ background-color: #EFF3FC !important; }
14
18
  ._2HqmH > span {
15
- font-family: "Poppins-Regular" !important; }
19
+ font-family: "Poppins-Regular" !important;
20
+ color: #316CD9 !important;
21
+ line-height: 27px !important;
22
+ font-size: 18px !important;
23
+ font-weight: 700 !important; }
24
+ @media (max-width: 768px) {
25
+ ._2HqmH > span {
26
+ font-size: 14px !important;
27
+ line-height: 21px !important; } }
28
+ ._2HqmH > div {
29
+ padding: 0 !important; }
30
+ ._2HqmH > div > svg {
31
+ background: #EFF3FC !important;
32
+ transform: scale(1.5);
33
+ margin-right: 3px; }
34
+
35
+ ._2HqmH:hover {
36
+ background-color: #316CD9 !important; }
37
+ ._2HqmH:hover > span {
38
+ color: #ffffff !important; }
39
+ ._2HqmH:hover > div > svg {
40
+ background: #316CD9 !important; }
16
41
 
17
42
  ._2sew7 {
18
43
  top: -4px;
@@ -79,7 +104,13 @@
79
104
  opacity: 0.8; }
80
105
 
81
106
  ._38Lo1 {
82
- width: 826px; }
107
+ max-width: 524px;
108
+ overflow-y: auto;
109
+ overflow-x: hidden;
110
+ padding: 20px 0; }
111
+
112
+ ._38Lo1::-webkit-scrollbar {
113
+ display: none; }
83
114
 
84
115
  ._1OzGy {
85
116
  width: 50%;
@@ -88,17 +119,21 @@
88
119
 
89
120
  ._wWIyO {
90
121
  width: 100%;
91
- height: 100%;
92
- background-color: #ffffff;
93
- border-radius: 5px 0 0 5px;
94
- box-shadow: 0 3px 6px #00000029; }
122
+ height: 100%; }
123
+
124
+ ._3EZva {
125
+ height: 46px; }
95
126
 
96
127
  ._3nuns {
97
- font-size: 24px;
128
+ font-size: 48px;
98
129
  font-weight: bold;
99
- line-height: 28px;
100
- margin-bottom: 30px;
130
+ line-height: 56px;
131
+ margin-bottom: 15px;
101
132
  font-family: "Montserrat-Bold" !important; }
133
+ @media (max-width: 768px) {
134
+ ._3nuns {
135
+ font-size: 32px;
136
+ line-height: 40px; } }
102
137
 
103
138
  ._21qb6 {
104
139
  margin-bottom: 5px; }
@@ -127,6 +162,31 @@
127
162
  outline: none;
128
163
  width: 100%;
129
164
  font-family: "Poppins-Regular" !important; }
165
+ @media (max-width: 768px) {
166
+ ._3IL10 {
167
+ padding: 10px 27px; } }
168
+
169
+ ._2OUwW {
170
+ height: 100%;
171
+ max-height: 56px; }
172
+
173
+ ._2Owso {
174
+ font-size: 16px;
175
+ font-family: "Poppins-Regular" !important;
176
+ line-height: 24px; }
177
+ @media (max-width: 768px) {
178
+ ._2Owso {
179
+ font-size: 14px; } }
180
+
181
+ ._fx-kA {
182
+ font-size: 16px;
183
+ font-weight: 400;
184
+ line-height: 24px;
185
+ text-align: left;
186
+ opacity: 0.6; }
187
+ @media (max-width: 768px) {
188
+ ._fx-kA {
189
+ font-size: 14px; } }
130
190
 
131
191
  ._141p1 {
132
192
  bottom: 20px;
@@ -150,11 +210,29 @@
150
210
  font-size: 16px;
151
211
  display: inline-block;
152
212
  font-weight: 500;
153
- font-family: "Poppins-Regular" !important; }
213
+ font-family: "Poppins-Regular" !important;
214
+ -webkit-text-decoration: revert;
215
+ text-decoration: revert; }
154
216
  ._3bDsd:hover {
155
- color: #336dda;
156
- -webkit-text-decoration: revert;
157
- text-decoration: revert; }
217
+ color: #336dda; }
218
+ @media (max-width: 768px) {
219
+ ._3bDsd {
220
+ font-size: 14px; } }
221
+
222
+ ._I4SVu {
223
+ color: #336dda;
224
+ font-size: 16px;
225
+ display: inline-block;
226
+ font-weight: 500;
227
+ font-family: "Poppins-Regular" !important;
228
+ -webkit-text-decoration: revert;
229
+ text-decoration: revert;
230
+ margin-top: 20px; }
231
+ ._I4SVu:hover {
232
+ color: #336dda; }
233
+ @media (max-width: 768px) {
234
+ ._I4SVu {
235
+ font-size: 14px; } }
158
236
 
159
237
  ._11FZt {
160
238
  font-weight: 500; }
@@ -228,42 +306,97 @@
228
306
  ._32V6L ._3OgWF {
229
307
  width: 70%; }
230
308
 
231
- ._wWIyO {
232
- padding: 60px 50px;
233
- position: relative; }
234
- ._wWIyO label:not(._11FZt) {
235
- color: #8f9bb3;
236
- text-transform: uppercase; }
237
- ._wWIyO input[type="text"],
238
- ._wWIyO input[type="password"] {
239
- width: 100%;
240
- border-radius: 4px;
241
- background-color: #f7f9fc;
242
- height: 50px;
243
- margin-bottom: 5px;
244
- padding: 4px; }
245
- ._wWIyO ._39BJD {
246
- margin-bottom: 30px; }
247
- ._wWIyO input[type="checkbox"]._2K9b2 {
248
- margin-left: 0; }
249
- ._wWIyO ._11FZt {
250
- padding-left: 20px; }
251
- ._wWIyO ._3IL10 {
252
- margin: 30px 0;
253
- color: rgba(0, 0, 0, 0.36);
254
- font-weight: 500;
255
- font-family: "Poppins-Regular" !important; }
256
- ._wWIyO ._3IL10:hover {
257
- background-color: #2196f3;
258
- color: #ffffff; }
259
- ._wWIyO ._3LXoI {
260
- position: absolute;
261
- margin-left: auto;
262
- margin-right: auto;
263
- left: 0;
264
- right: 0;
265
- bottom: 0;
266
- text-align: center; }
309
+ ._wWIyO label:not(._11FZt) {
310
+ color: #8f9bb3;
311
+ text-transform: uppercase; }
312
+
313
+ ._wWIyO input[type="text"],
314
+ ._wWIyO input[type="password"] {
315
+ width: 100%;
316
+ border-radius: 8px;
317
+ border: 1px solid #D3D3D3;
318
+ height: 50px;
319
+ margin-bottom: 5px;
320
+ padding: 5px 15px; }
321
+
322
+ ._wWIyO input[type="text"]::-moz-placeholder, ._wWIyO input[type="password"]::-moz-placeholder {
323
+ color: #D3D3D3;
324
+ font-size: 16px;
325
+ font-weight: 400; }
326
+
327
+ ._wWIyO input[type="text"]:-ms-input-placeholder, ._wWIyO input[type="password"]:-ms-input-placeholder {
328
+ color: #D3D3D3;
329
+ font-size: 16px;
330
+ font-weight: 400; }
331
+
332
+ ._wWIyO input[type="text"]::placeholder,
333
+ ._wWIyO input[type="password"]::placeholder {
334
+ color: #D3D3D3;
335
+ font-size: 16px;
336
+ font-weight: 400; }
337
+
338
+ ._wWIyO ._1AiX0 {
339
+ transform: scale(1.3);
340
+ margin-left: 2px; }
341
+
342
+ ._wWIyO ._2uNvW {
343
+ font-size: 16px;
344
+ line-height: 27px; }
345
+ @media (max-width: 768px) {
346
+ ._wWIyO ._2uNvW {
347
+ font-size: 14px; } }
348
+
349
+ ._wWIyO ._pqn4y {
350
+ font-size: 18px;
351
+ opacity: 0.56; }
352
+ @media (max-width: 768px) {
353
+ ._wWIyO ._pqn4y {
354
+ font-size: 14px; } }
355
+
356
+ ._wWIyO ._39BJD {
357
+ margin-bottom: 30px; }
358
+ ._wWIyO ._39BJD ._ozRAq:disabled {
359
+ background: #E5E5E5; }
360
+
361
+ ._wWIyO input[type="checkbox"]._2K9b2 {
362
+ margin-left: 0; }
363
+
364
+ ._wWIyO ._11FZt {
365
+ padding-left: 20px; }
366
+
367
+ ._wWIyO ._3IL10 {
368
+ margin-top: 30px;
369
+ color: #ffffff;
370
+ font-weight: 500;
371
+ font-family: "Poppins-Regular" !important;
372
+ font-size: 18px;
373
+ font-weight: 700;
374
+ border-radius: 100px;
375
+ background-color: #316CD9;
376
+ line-height: 27px; }
377
+ ._wWIyO ._3IL10:hover {
378
+ background-color: #2196f3;
379
+ color: #ffffff; }
380
+ @media (max-width: 768px) {
381
+ ._wWIyO ._3IL10 {
382
+ font-size: 14px;
383
+ line-height: 21px; } }
384
+
385
+ ._wWIyO ._2VvIr {
386
+ border-radius: 50px; }
387
+
388
+ ._wWIyO ._2A0HF {
389
+ background: #316CD9;
390
+ color: #FFFFFF; }
391
+
392
+ ._wWIyO ._3LXoI {
393
+ position: absolute;
394
+ margin-left: auto;
395
+ margin-right: auto;
396
+ left: 0;
397
+ right: 0;
398
+ bottom: 0;
399
+ text-align: center; }
267
400
 
268
401
  ._23Sua {
269
402
  min-height: 40vh; }
@@ -291,36 +424,42 @@
291
424
  margin-left: -30px;
292
425
  margin-right: -30px; }
293
426
 
294
- ._jOY7o {
295
- background-size: cover;
296
- opacity: 0;
297
- -webkit-animation: _wnn2_ 20s step-start infinite 0s;
298
- animation: _wnn2_ 20s step-start infinite 0s; }
299
-
300
- @-webkit-keyframes _wnn2_ {
427
+ ._30npl {
428
+ width: 100%;
429
+ height: 100%;
430
+ z-index: 1; }
431
+ ._30npl img {
432
+ width: 100%;
433
+ height: 100%;
434
+ -o-object-fit: cover;
435
+ object-fit: cover;
436
+ -o-object-position: center;
437
+ object-position: center;
438
+ position: absolute;
439
+ z-index: 1;
440
+ top: 0;
441
+ left: 0; }
442
+ ._30npl img._3oAH- {
443
+ z-index: 3; }
444
+ ._30npl img._3oAH-._16rY4 {
445
+ -webkit-animation: _26nbh 1s ease-in-out forwards;
446
+ animation: _26nbh 1s ease-in-out forwards; }
447
+ ._30npl img._3A7Vv {
448
+ z-index: 2; }
449
+
450
+ @-webkit-keyframes _26nbh {
301
451
  0% {
302
- opacity: 0;
303
- background-image: url("/images/landing-page.jpg"); }
304
- 50% {
305
- opacity: 1;
306
- background-image: url("/images/landing-page2.jpg"); }
452
+ opacity: 0; }
307
453
  100% {
308
- opacity: 2;
309
- background-image: url("/images/landing-page3.jpg"); } }
454
+ opacity: 1; } }
310
455
 
311
- @keyframes _wnn2_ {
456
+ @keyframes _26nbh {
312
457
  0% {
313
- opacity: 0;
314
- background-image: url("/images/landing-page.jpg"); }
315
- 50% {
316
- opacity: 1;
317
- background-image: url("/images/landing-page2.jpg"); }
458
+ opacity: 0; }
318
459
  100% {
319
- opacity: 2;
320
- background-image: url("/images/landing-page3.jpg"); } }
460
+ opacity: 1; } }
321
461
 
322
462
  ._F-hjL {
323
- background-color: #336dda;
324
463
  background-repeat: no-repeat;
325
464
  background-size: cover;
326
465
  width: 100%;
@@ -328,14 +467,15 @@
328
467
  background-position: center; }
329
468
  @media (max-width: 768px) {
330
469
  ._F-hjL {
331
- background-color: #336dda;
332
470
  overflow: hidden; } }
333
471
  ._F-hjL ._149oA {
472
+ position: relative;
473
+ z-index: 2;
334
474
  background: rgba(0, 0, 0, 0.57);
335
475
  height: 100%;
336
476
  padding: 20px 100px; }
337
477
  ._F-hjL ._149oA ._24U3W > img {
338
- height: 40px; }
478
+ height: 60px; }
339
479
  ._F-hjL ._149oA ._3Wmco {
340
480
  padding-top: 70px; }
341
481
 
@@ -349,12 +489,16 @@
349
489
 
350
490
  ._2kOvJ {
351
491
  width: 50%;
352
- margin-bottom: 25px; }
492
+ margin-bottom: 25px;
493
+ margin-left: -30px; }
353
494
 
354
495
  ._39l0X {
355
496
  padding: 0; }
356
497
  ._39l0X > ._1BMwK {
357
498
  padding: 0; }
499
+ @media screen and (max-width: 767px) {
500
+ ._39l0X {
501
+ padding: 0 10px; } }
358
502
 
359
503
  ._1XNpH {
360
504
  padding: 4px;
@@ -384,7 +528,7 @@
384
528
 
385
529
  ._1hXpy {
386
530
  max-width: 160px;
387
- max-height: 40px; }
531
+ max-height: 60px; }
388
532
 
389
533
  ._3vb3s li > a {
390
534
  color: #808080 !important; }
@@ -409,6 +553,14 @@
409
553
  font-size: 20px;
410
554
  color: #808080; }
411
555
 
556
+ ._3846X {
557
+ height: 36px;
558
+ width: 36px;
559
+ -o-object-fit: contain;
560
+ object-fit: contain;
561
+ -o-object-position: center;
562
+ object-position: center; }
563
+
412
564
  ._1wUDG {
413
565
  background: #262626;
414
566
  cursor: pointer; }
@@ -534,6 +686,44 @@
534
686
  background-color: #f1faff;
535
687
  color: #009ef7; }
536
688
 
689
+ ._1ocBa {
690
+ cursor: pointer;
691
+ font-weight: 500; }
692
+ ._18NhM, ._1ocBa:hover {
693
+ color: #316cd9; }
694
+ ._1ocBa svg {
695
+ width: 16px;
696
+ height: 16px; }
697
+
698
+ ._2bquW {
699
+ top: 50%;
700
+ transform: translateY(-50%);
701
+ left: 12px;
702
+ font-size: 14px; }
703
+
704
+ ._3A4G4 {
705
+ padding-left: 28px !important; }
706
+
707
+ ._1MsEW {
708
+ max-height: 200px;
709
+ overflow-y: auto;
710
+ border-radius: 8px; }
711
+ ._1MsEW input {
712
+ margin-bottom: 5px; }
713
+
714
+ ._2rTzM {
715
+ border-radius: 4px;
716
+ background: #ffff; }
717
+
718
+ ._18y0w {
719
+ padding: 6px 12px 6px 0px;
720
+ border-radius: 0 4px 4px 0;
721
+ color: #fff; }
722
+
723
+ ._3cZAT {
724
+ padding: 5px 8px 7px 6px;
725
+ border-radius: 4px 0 0 4px; }
726
+
537
727
  @media (max-width: 575px) {
538
728
  ._1INnO {
539
729
  display: none; }
@@ -541,6 +731,9 @@
541
731
  width: 358px; }
542
732
  ._wWIyO {
543
733
  padding: 50px 20px !important; } }
734
+ @media (max-width: 575px) and (max-width: 768px) {
735
+ ._wWIyO {
736
+ padding-top: 30px !important; } }
544
737
 
545
738
  @media (max-width: 768px) {
546
739
  ._2v-L_ {
@@ -623,6 +816,144 @@
623
816
  ._2Zz97 ._3-yp5 {
624
817
  z-index: -1; }
625
818
 
819
+ ._1KcY7 {
820
+ padding: 10px 75px;
821
+ border-top: 1px solid #DFE0DF;
822
+ cursor: pointer;
823
+ font-size: 20px;
824
+ text-align: center;
825
+ margin-bottom: 0;
826
+ transition: background-color 0.5s ease-out; }
827
+
828
+ ._1KcY7:hover {
829
+ background: #336DDA;
830
+ color: #ffff; }
831
+
832
+ ._dOVso {
833
+ background: #336DDA;
834
+ color: #ffff; }
835
+
836
+ ._3ZqxI > div {
837
+ border-radius: 7px; }
838
+
839
+ ._3ZqxI ._g-p72 {
840
+ font-weight: 500;
841
+ line-height: 1.6;
842
+ font-size: 20px;
843
+ padding: 10px 20px; }
844
+
845
+ ._DrSlA {
846
+ background: #EFF3FC;
847
+ font-size: 15px;
848
+ color: #ad9292;
849
+ border-radius: 50px;
850
+ cursor: pointer;
851
+ display: flex;
852
+ align-items: center;
853
+ justify-content: center;
854
+ padding: 10px 0; }
855
+ ._DrSlA img {
856
+ height: 26px;
857
+ margin-right: 10px; }
858
+ ._DrSlA p {
859
+ margin-bottom: 0;
860
+ font-size: 18px;
861
+ font-weight: 700;
862
+ line-height: 27px;
863
+ text-align: left;
864
+ color: #316CD9;
865
+ font-family: "Poppins-Regular" !important; }
866
+ @media (max-width: 768px) {
867
+ ._DrSlA p {
868
+ font-size: 14px;
869
+ line-height: 21px; } }
870
+
871
+ ._DrSlA:hover {
872
+ background: #316CD9; }
873
+ ._DrSlA:hover p {
874
+ color: #ffffff; }
875
+ ._DrSlA:hover ._20YJX {
876
+ width: 32px !important; }
877
+
878
+ ._3Vgah {
879
+ padding-top: 108px;
880
+ padding-right: 16px; }
881
+ ._3Vgah > div {
882
+ display: flex;
883
+ align-items: center;
884
+ justify-content: center;
885
+ font-weight: 600;
886
+ font-size: 16px;
887
+ line-height: 24px;
888
+ color: #242424;
889
+ padding: 12px 20px;
890
+ border: none;
891
+ border-radius: 8px; }
892
+ ._1jraB > div {
893
+ background-color: #d9eee4; }
894
+
895
+ ._1sfzz {
896
+ padding: 0 12px; }
897
+
898
+ @media (max-width: 599.95px) {
899
+ ._3Vgah {
900
+ padding-right: 8px;
901
+ padding-top: 72px;
902
+ max-width: 250px;
903
+ width: -webkit-fit-content;
904
+ width: -moz-fit-content;
905
+ width: fit-content; }
906
+ ._3Vgah > div {
907
+ align-items: self-start;
908
+ font-size: 14px;
909
+ line-height: 20px; } }
910
+
911
+ @media (min-width: 599.95px) and (max-width: 1279.95px) {
912
+ ._3Vgah {
913
+ padding-right: 8px;
914
+ padding-top: 88px; } }
915
+
916
+ ._2geWX {
917
+ table-layout: fixed;
918
+ width: 100%; }
919
+ ._2geWX td p {
920
+ white-space: nowrap;
921
+ overflow: hidden;
922
+ text-overflow: ellipsis;
923
+ padding: 4px 8px;
924
+ margin: 0; }
925
+ ._2geWX div p {
926
+ white-space: nowrap;
927
+ overflow: hidden;
928
+ text-overflow: ellipsis;
929
+ padding: 2px 8px;
930
+ margin: 0; }
931
+
932
+ ._3QMZ8 {
933
+ width: 120px; }
934
+
935
+ ._2RT7O {
936
+ width: 40px; }
937
+
938
+ ._c0zqU {
939
+ width: 80px; }
940
+
941
+ ._3ewxz {
942
+ width: 20%; }
943
+
944
+ ._1HLzj {
945
+ line-height: 40px; }
946
+
947
+ ._OqRPX {
948
+ position: absolute;
949
+ z-index: 1000;
950
+ bottom: 0;
951
+ right: 0;
952
+ background: transparent;
953
+ padding: 0 7px;
954
+ letter-spacing: 2px;
955
+ color: #fff; }
956
+
626
957
  ._297lu {
627
958
  width: 100%;
628
959
  height: 100%; }
package/dist/index.d.ts CHANGED
@@ -10,18 +10,21 @@ import EmailTemplateDetail from "./containers/EmailTemplate/views/EmailTemplateD
10
10
  import FaqList from "./containers/Faq/views/FaqList";
11
11
  import SkillList from "./containers/Skill/views/SkillList";
12
12
  import UserList from "./containers/User/views/UserList";
13
+ import UserContainer from "./containers/User/views/UserContainer";
13
14
  import UserDetail from "./containers/User/views/UserDetail";
14
15
  import Loading from "./components/Loading/Loading";
15
16
  import ScrollToTop from "./components/Scroll/ScrollToTop";
16
17
  import NotificationModal from "./components/Modals/NotificationModal";
17
18
  import CommonHeader from "./components/Headers/CommonHeader";
18
19
  import CommonModal from "./components/Modals/CommonModal";
20
+ import NotificationLogoutModal from "./components/Modals/NotificationLogoutModal";
19
21
  import AddButton from "./components/Buttons/AddButton";
20
22
  import DeleteButtonIcon from "./components/Buttons/DeleteButtonIcon";
21
23
  import EditButtonIcon from "./components/Buttons/EditButtonIcon";
22
24
  import CustomPagination from "./components/Pagination/CustomPagination";
23
25
  import LinkEditButton from "./components/Buttons/LinkEditButton";
24
26
  import EmptyDataAlert from "./components/Alerts/EmptyDataAlert";
27
+ import SandboxAlert from "./components/Alerts/SandboxAlert";
25
28
  import CreatableSelector from "./components/Selectors/CreatableSelector";
26
29
  import SearchBox from "./components/Inputs/SearchBox";
27
30
  import QuestionTypeSelector from "./components/Selectors/QuestionTypeSelector";
@@ -48,11 +51,11 @@ import useGalleryList from "./containers/Gallery/hooks/useGalleryList";
48
51
  import QuitPrompt from "./components/Others/QuitPrompt";
49
52
  import AcademicClassSelector from "./components/Selectors/AcademicClassSelector";
50
53
  import SchoolList from "./containers/DistrictSchools/views/SchoolList";
51
- import { INIT_AMPLITUDE_KEY_STAGE, INIT_AMPLITUDE_KEY_PROD, isLocalhost } from "./utils/constants";
54
+ import { INIT_AMPLITUDE_KEY_STAGE, INIT_AMPLITUDE_KEY_PROD, isLocalhost, IS_USER_SESSION_BROWSER } from "./utils/constants";
52
55
  import store from "./store";
53
56
  import { api, apiUpload } from "./services/api";
54
57
  import editorConfig from "./configs/editorConfig";
55
- import { BASE_URL, DEFAULT_FILTER, LICENSE_AGGRID, TINY_MCE_API_KEY, QUESTION_TYPES, ANSWER_EDITOR_HEIGHT, CHAT_CHANNEL, NOTIFICATION_CHANNEL, DATE_RESULT, DATE_FORMAT, FULL_DATE_RESULT, ACCESS_TOKEN, GOOGLE_RECAPTCHA_KEY, EMOTIONS, QUESTION_TYPES_OPTIONS, TAB_COLORS, NOTIFICATION_ALERT_KEY } from "./utils/constants";
58
+ import { BASE_URL, DEFAULT_FILTER, LICENSE_AGGRID, TINY_MCE_API_KEY, QUESTION_TYPES, ANSWER_EDITOR_HEIGHT, CHAT_CHANNEL, NOTIFICATION_CHANNEL, DATE_RESULT, DATE_FORMAT, FULL_DATE_RESULT, ACCESS_TOKEN, GOOGLE_RECAPTCHA_KEY, EMOTIONS, QUESTION_TYPES_OPTIONS, TAB_COLORS, NOTIFICATION_ALERT_KEY, SANDBOX_NOTIFICATION, DEFAULT_LANGUAGE_CODE, LANGUAGES, SUPPORTED_LANGUAGES_CODE } from "./utils/constants";
56
59
  import firstCheckToken from "./utils/firstCheckToken";
57
60
  import canAccessRoute from "./utils/canAccessRoute";
58
61
  import { getInfo } from "./services/accountService";
@@ -61,6 +64,8 @@ import debounce from "./utils/debounce";
61
64
  import getFileUrl from "./utils/getFileUrl";
62
65
  import getTextFromHTML from "./utils/getTextFromHTML";
63
66
  import utcToLocalTime from "./utils/utcToLocalTime";
67
+ import getStaticFileUrl from "./utils/getStaticFileUrl";
68
+ import getCookieValue from "./utils/getCookieValue";
64
69
  import { uploadFile, systemStudentBadge, systemCertificateUpload } from "./services/fileServices";
65
70
  import { setLoading, setModal, setAlert, setUser, reset, setCurrentStudentId, setCurrentStudentUserId, setCurrentStudentName, setTurnOffPassWhenChangeMode, showMenuBar, showFontSize, initAmplitude } from "./redux/commons/action";
66
71
  import { setClassList } from "./redux/classes/action";
@@ -104,8 +109,9 @@ import { setDataPlayer, answerQuestionDataPlayer } from "./redux/dataPlayer/acti
104
109
  import { setFilterWidget } from "./redux/widget/action";
105
110
  import { setBandScoreList } from "./redux/bandScores/action";
106
111
  import { setStudentIdSelectedByTeacher } from "./redux/navMobile/action";
107
- import { setEnableIEP, setEnableSurvey, setConversationOneToOne, setLanguage } from "./redux/commons/action";
112
+ import { setEnableIEP, setEnableSurvey, setConversationOneToOne, setLanguage, setSandboxMode, setEnableMarioAi } from "./redux/commons/action";
108
113
  import useFilters from "./hooks/useFilters";
109
- import amplitude from "amplitude-js";
110
- declare const amplitudeClient: amplitude.AmplitudeClient;
111
- export { Login, Dashboard, TheLayout, TheContent, NotFound, EmailTemplateList, EmailTemplateDetail, FaqList, SkillList, UserList, UserDetail, Loading, NotificationModal, CommonHeader, CommonModal, AddButton, DeleteButtonIcon, EditButtonIcon, LinkEditButton, ToggleButton, EmptyDataAlert, CreatableSelector, CustomPagination, SearchBox, FileInput, QuitPrompt, QuestionTypeSelector, QuestionCategorySelector, SuggestionCategorySelector, CategorySelector, ErrorHandler, DetailActionButtons, RequiredLabel, StarRatingSelector, ReactNotification, NotificationList, CustomSelector, UploadFileButton, SearchBoxContainer, CustomTab, CommonAlert, GalleryList, MediaList, useGalleryList, AcademicClassSelector, SchoolList, store, showMenuBar, showFontSize, setLoading, setModal, setAlert, setClassList, setConferenceRubricList, setSuggestionList, setStrategyList, setSubjectList, setLearningSupportCategoryList, setQuestionList, setUserList, setStudentList, setBadgeList, setGoalExampleList, setSemesterList, setFeedbackList, setAssessmentList, setQuestionByCategory, setSelectQuestion, setMoveItemQuestion, setReflectionList, setReflectionResultList, setEditItemQuesion, setResetQuestionList, setMailCategory, setUser, setAssignmentList, setAssistantList, setSessionTemplateList, setTutorialScreenList, setSessionTemplateGeneralClassList, setCustomAlertList, setCertificateList, closeTab, addTab, editTab, clearTab, changeNote, changeTags, answerQuestion, setSessionPlayer, setStartTime, setTurnOffPassWhenChangeMode, reset, setImproveMyClass, setSchoolBlankDayList, setEnableIEP, setEnableSurvey, setConversationOneToOne, setLanguage, i18n, useTranslation, I18nextProvider, api, apiUpload, uploadFile, systemStudentBadge, systemCertificateUpload, BASE_URL, DEFAULT_FILTER, LICENSE_AGGRID, TINY_MCE_API_KEY, QUESTION_TYPES, QUESTION_TYPES_OPTIONS, ANSWER_EDITOR_HEIGHT, CHAT_CHANNEL, NOTIFICATION_CHANNEL, DATE_RESULT, DATE_FORMAT, FULL_DATE_RESULT, ACCESS_TOKEN, NOTIFICATION_ALERT_KEY, GOOGLE_RECAPTCHA_KEY, EMOTIONS, TAB_COLORS, Filter, Conversation, Message, ConversationMember, NavbarTab, editorConfig, generateRandomString, isInViewport, debounce, firstCheckToken, canAccessRoute, getFileUrl, getTextFromHTML, utcToLocalTime, getInfo, Images, setQuestionCateList, setMyStudent, setDataPlayer, answerQuestionDataPlayer, setCurrentStudentUserId, setCurrentStudentId, setCurrentStudentName, setFilterWidget, setBandScoreList, setStudentIdSelectedByTeacher, useFilters, ScrollToTop, initAmplitude, amplitudeClient, INIT_AMPLITUDE_KEY_STAGE, INIT_AMPLITUDE_KEY_PROD, isLocalhost };
114
+ import * as amplitude from "@amplitude/analytics-browser";
115
+ import { setWeeklyQuestList, setOpenModelCongratulation } from "./redux/weeklyQuests/action";
116
+ declare const amplitudeClient: typeof amplitude;
117
+ export { Login, Dashboard, TheLayout, TheContent, NotFound, EmailTemplateList, EmailTemplateDetail, FaqList, SkillList, UserList, UserContainer, UserDetail, Loading, NotificationModal, CommonHeader, CommonModal, NotificationLogoutModal, AddButton, DeleteButtonIcon, EditButtonIcon, LinkEditButton, ToggleButton, EmptyDataAlert, SandboxAlert, CreatableSelector, CustomPagination, SearchBox, FileInput, QuitPrompt, QuestionTypeSelector, QuestionCategorySelector, SuggestionCategorySelector, CategorySelector, ErrorHandler, DetailActionButtons, RequiredLabel, StarRatingSelector, ReactNotification, NotificationList, CustomSelector, UploadFileButton, SearchBoxContainer, CustomTab, CommonAlert, GalleryList, MediaList, useGalleryList, AcademicClassSelector, SchoolList, store, showMenuBar, showFontSize, setLoading, setModal, setAlert, setClassList, setConferenceRubricList, setSuggestionList, setStrategyList, setSubjectList, setLearningSupportCategoryList, setQuestionList, setUserList, setStudentList, setBadgeList, setGoalExampleList, setSemesterList, setFeedbackList, setAssessmentList, setQuestionByCategory, setSelectQuestion, setMoveItemQuestion, setReflectionList, setReflectionResultList, setEditItemQuesion, setResetQuestionList, setMailCategory, setUser, setAssignmentList, setAssistantList, setSessionTemplateList, setTutorialScreenList, setSessionTemplateGeneralClassList, setCustomAlertList, setCertificateList, closeTab, addTab, editTab, clearTab, changeNote, changeTags, answerQuestion, setSessionPlayer, setStartTime, setTurnOffPassWhenChangeMode, reset, setImproveMyClass, setSchoolBlankDayList, setEnableIEP, setEnableSurvey, setEnableMarioAi, setConversationOneToOne, setLanguage, setWeeklyQuestList, setOpenModelCongratulation, setSandboxMode, i18n, useTranslation, I18nextProvider, api, apiUpload, uploadFile, systemStudentBadge, systemCertificateUpload, BASE_URL, DEFAULT_FILTER, LICENSE_AGGRID, TINY_MCE_API_KEY, QUESTION_TYPES, QUESTION_TYPES_OPTIONS, ANSWER_EDITOR_HEIGHT, CHAT_CHANNEL, NOTIFICATION_CHANNEL, DATE_RESULT, DATE_FORMAT, FULL_DATE_RESULT, ACCESS_TOKEN, NOTIFICATION_ALERT_KEY, GOOGLE_RECAPTCHA_KEY, DEFAULT_LANGUAGE_CODE, LANGUAGES, SUPPORTED_LANGUAGES_CODE, EMOTIONS, TAB_COLORS, SANDBOX_NOTIFICATION, Filter, Conversation, Message, ConversationMember, NavbarTab, editorConfig, generateRandomString, isInViewport, debounce, firstCheckToken, canAccessRoute, getFileUrl, getTextFromHTML, utcToLocalTime, getInfo, Images, setQuestionCateList, setMyStudent, setDataPlayer, answerQuestionDataPlayer, setCurrentStudentUserId, setCurrentStudentId, setCurrentStudentName, setFilterWidget, setBandScoreList, setStudentIdSelectedByTeacher, useFilters, ScrollToTop, initAmplitude, amplitudeClient, INIT_AMPLITUDE_KEY_STAGE, INIT_AMPLITUDE_KEY_PROD, isLocalhost, getStaticFileUrl, IS_USER_SESSION_BROWSER, getCookieValue };