mario-core 2.9.227-layout → 2.9.227-sso

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.
@@ -5,8 +5,27 @@ export interface ICreatePassword {
5
5
  userId: string;
6
6
  token: string;
7
7
  }
8
+ export declare enum TypeLogin {
9
+ Google = 0,
10
+ ClassLink = 1,
11
+ MicrosoftSSO = 2
12
+ }
13
+ export interface IInformationUser {
14
+ firstName: string;
15
+ lastName: string;
16
+ fullName: string;
17
+ imageUrl: string | null;
18
+ email: string;
19
+ accessToken: string;
20
+ googleId: string;
21
+ }
8
22
  export declare enum LoginType {
9
23
  Default = 0,
10
24
  Google = 1,
11
25
  Impersonate = 2
12
26
  }
27
+ export interface ISchool {
28
+ schoolName: string;
29
+ schoolLogo: string;
30
+ schoolId: number;
31
+ }
@@ -1,9 +1,11 @@
1
1
  /// <reference types="react" />
2
+ import { TypeLogin, ISchool } from "../constant/types";
2
3
  declare type LoginInfo = {
3
4
  email: string;
4
5
  password: string;
5
6
  captcha: string;
6
7
  rememberMe: boolean;
8
+ isSessionUserBrowser?: boolean;
7
9
  };
8
10
  declare const useLogin: () => {
9
11
  defaultInfo: LoginInfo;
@@ -12,15 +14,16 @@ declare const useLogin: () => {
12
14
  toggle: () => void;
13
15
  isShowPassword: boolean;
14
16
  setIsShowPassword: import("react").Dispatch<import("react").SetStateAction<boolean>>;
15
- fnIsCheckLogin: (data: any, token: string, clickHandler: any) => Promise<void>;
16
- isLoginGoogle: boolean;
17
+ fnIsCheckLogin: (type: TypeLogin, data: any, token: string, clickHandler?: any) => Promise<void>;
18
+ isLoginGoogle: any;
17
19
  infoUser: any;
18
- setInfoUser: import("react").Dispatch<any>;
19
20
  submitLogin: (teacherId: number, clickHandler: any) => Promise<void>;
20
- setIsLoginGoogle: import("react").Dispatch<import("react").SetStateAction<boolean>>;
21
21
  googleClientId: string;
22
22
  googleRecaptchaId: string;
23
23
  handleCancelModelAssign: () => void;
24
24
  openModelAssign: boolean;
25
+ fnLoginSSO: (clickHandler?: any) => Promise<void>;
26
+ handleLoginWidthClever: () => void;
27
+ school: ISchool;
25
28
  };
26
29
  export default useLogin;
@@ -1,3 +1,7 @@
1
1
  /// <reference types="react" />
2
- declare const BlockForgetPassword: () => JSX.Element;
2
+ import { ISchool } from "../../constant/types";
3
+ interface Props {
4
+ school: ISchool;
5
+ }
6
+ declare const BlockForgetPassword: ({ school }: Props) => JSX.Element;
3
7
  export default BlockForgetPassword;
@@ -1,9 +1,20 @@
1
1
  import { FC } from "react";
2
+ import { ISchool } from "../../constant/types";
2
3
  interface Props {
3
4
  defaultInfo?: any;
4
5
  userLogin?: any;
5
6
  onCancelModelAssign: Function;
6
7
  openModelAssign: boolean;
8
+ school: ISchool;
9
+ isShowPassword: boolean;
10
+ setIsShowPassword: Function;
11
+ fnIsCheckLogin: Function;
12
+ isLoginGoogle: boolean;
13
+ submitLogin: Function;
14
+ infoUser: any;
15
+ googleClientId: string;
16
+ onLoginWidthClever: Function;
17
+ fnLoginSSO: Function;
7
18
  }
8
19
  declare const BlockLogin: FC<Props>;
9
20
  export default BlockLogin;
@@ -6,7 +6,6 @@ interface Props {
6
6
  onSubmit: any;
7
7
  token: string;
8
8
  email: string;
9
- setOpenModal: any;
10
9
  }
11
10
  declare const _default: React.ForwardRefExoticComponent<Props & React.RefAttributes<unknown>>;
12
11
  export default _default;
@@ -7,5 +7,8 @@ declare const useAssignStudent: (teacherSelected?: object | undefined, assistant
7
7
  handleChangeStaffBulk: (name: string, id: string) => void;
8
8
  staffBulkAssign: IStaffAssign;
9
9
  handleAssignStaffToStudents: (listUserIds: string[]) => void;
10
+ handleToggleInactiveModal: (listUserIds?: string[] | undefined) => void;
11
+ openInactiveModal: boolean;
12
+ handleInactiveStudents: (listStudentIds: string[], callback: () => void) => Promise<void>;
10
13
  };
11
14
  export default useAssignStudent;
@@ -8,7 +8,7 @@ declare const useUserList: () => {
8
8
  removeData: (id: string) => void;
9
9
  changeFilters: (updatedFilters: any) => void;
10
10
  reDirectDetailPage: (id?: number | undefined) => void;
11
- swicthUser: (id: string) => Promise<void>;
11
+ switchUser: (id: string) => Promise<void>;
12
12
  handleSyncRosterUsers: () => Promise<void>;
13
13
  rosterUserInfo: (record: any) => string;
14
14
  };
@@ -0,0 +1,10 @@
1
+ /// <reference types="react" />
2
+ declare const useLanguages: () => {
3
+ languageList: any;
4
+ toggle: () => void;
5
+ dropdownOpen: boolean;
6
+ currentLang: string;
7
+ changeLanguageApp: (lang: string) => Promise<void>;
8
+ setCurrentLang: import("react").Dispatch<import("react").SetStateAction<string>>;
9
+ };
10
+ export default useLanguages;
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,49 +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 ._39BJD ._ozRAq:disabled {
248
- background: #E5E5E5; }
249
- ._wWIyO input[type="checkbox"]._2K9b2 {
250
- margin-left: 0; }
251
- ._wWIyO ._11FZt {
252
- padding-left: 20px; }
253
- ._wWIyO ._3IL10 {
254
- margin: 30px 0;
255
- color: rgba(0, 0, 0, 0.36);
256
- font-weight: 500;
257
- font-family: "Poppins-Regular" !important; }
258
- ._wWIyO ._3IL10:hover {
259
- background-color: #2196f3;
260
- color: #ffffff; }
261
- ._wWIyO ._2VvIr {
262
- border-radius: 50px; }
263
- ._wWIyO ._2A0HF {
264
- background: #316CD9;
265
- color: #FFFFFF; }
266
- ._wWIyO ._3LXoI {
267
- position: absolute;
268
- margin-left: auto;
269
- margin-right: auto;
270
- left: 0;
271
- right: 0;
272
- bottom: 0;
273
- 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; }
274
400
 
275
401
  ._23Sua {
276
402
  min-height: 40vh; }
@@ -334,7 +460,6 @@
334
460
  opacity: 1; } }
335
461
 
336
462
  ._F-hjL {
337
- background-color: #336dda;
338
463
  background-repeat: no-repeat;
339
464
  background-size: cover;
340
465
  width: 100%;
@@ -342,7 +467,6 @@
342
467
  background-position: center; }
343
468
  @media (max-width: 768px) {
344
469
  ._F-hjL {
345
- background-color: #336dda;
346
470
  overflow: hidden; } }
347
471
  ._F-hjL ._149oA {
348
472
  position: relative;
@@ -604,6 +728,9 @@
604
728
  width: 358px; }
605
729
  ._wWIyO {
606
730
  padding: 50px 20px !important; } }
731
+ @media (max-width: 575px) and (max-width: 768px) {
732
+ ._wWIyO {
733
+ padding-top: 30px !important; } }
607
734
 
608
735
  @media (max-width: 768px) {
609
736
  ._2v-L_ {
@@ -713,15 +840,37 @@
713
840
  padding: 10px 20px; }
714
841
 
715
842
  ._DrSlA {
716
- text-align: center;
717
- background: #e5e5e5;
843
+ background: #EFF3FC;
718
844
  font-size: 15px;
719
845
  color: #ad9292;
720
- border-radius: 8px;
721
- cursor: pointer; }
846
+ border-radius: 50px;
847
+ cursor: pointer;
848
+ display: flex;
849
+ align-items: center;
850
+ justify-content: center;
851
+ padding: 10px 0; }
722
852
  ._DrSlA img {
723
- width: 65px;
724
- height: auto; }
853
+ height: 26px;
854
+ margin-right: 10px; }
855
+ ._DrSlA p {
856
+ margin-bottom: 0;
857
+ font-size: 18px;
858
+ font-weight: 700;
859
+ line-height: 27px;
860
+ text-align: left;
861
+ color: #316CD9;
862
+ font-family: "Poppins-Regular" !important; }
863
+ @media (max-width: 768px) {
864
+ ._DrSlA p {
865
+ font-size: 14px;
866
+ line-height: 21px; } }
867
+
868
+ ._DrSlA:hover {
869
+ background: #316CD9; }
870
+ ._DrSlA:hover p {
871
+ color: #ffffff; }
872
+ ._DrSlA:hover ._20YJX {
873
+ width: 32px !important; }
725
874
 
726
875
  ._3Vgah {
727
876
  padding-top: 108px;
package/dist/index.d.ts CHANGED
@@ -51,7 +51,7 @@ import useGalleryList from "./containers/Gallery/hooks/useGalleryList";
51
51
  import QuitPrompt from "./components/Others/QuitPrompt";
52
52
  import AcademicClassSelector from "./components/Selectors/AcademicClassSelector";
53
53
  import SchoolList from "./containers/DistrictSchools/views/SchoolList";
54
- 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";
55
55
  import store from "./store";
56
56
  import { api, apiUpload } from "./services/api";
57
57
  import editorConfig from "./configs/editorConfig";
@@ -65,6 +65,7 @@ import getFileUrl from "./utils/getFileUrl";
65
65
  import getTextFromHTML from "./utils/getTextFromHTML";
66
66
  import utcToLocalTime from "./utils/utcToLocalTime";
67
67
  import getStaticFileUrl from "./utils/getStaticFileUrl";
68
+ import getCookieValue from "./utils/getCookieValue";
68
69
  import { uploadFile, systemStudentBadge, systemCertificateUpload } from "./services/fileServices";
69
70
  import { setLoading, setModal, setAlert, setUser, reset, setCurrentStudentId, setCurrentStudentUserId, setCurrentStudentName, setTurnOffPassWhenChangeMode, showMenuBar, showFontSize, initAmplitude } from "./redux/commons/action";
70
71
  import { setClassList } from "./redux/classes/action";
@@ -111,5 +112,6 @@ import { setStudentIdSelectedByTeacher } from "./redux/navMobile/action";
111
112
  import { setEnableIEP, setEnableSurvey, setConversationOneToOne, setLanguage, setSandboxMode } from "./redux/commons/action";
112
113
  import useFilters from "./hooks/useFilters";
113
114
  import amplitude from "amplitude-js";
115
+ import { setWeeklyQuestList, setOpenModelCongratulation } from "./redux/weeklyQuests/action";
114
116
  declare const amplitudeClient: amplitude.AmplitudeClient;
115
- 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, setConversationOneToOne, setLanguage, 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 };
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, 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 };