mario-core 2.9.221-release → 2.9.221-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.
@@ -1,3 +1,4 @@
1
+ import { LogLevel } from "@azure/msal-browser";
1
2
  /**
2
3
  * Configuration object to be passed to MSAL instance on creation.
3
4
  * For a full list of MSAL.js configuration parameters, visit:
@@ -15,7 +16,7 @@ export declare const msalConfig: {
15
16
  };
16
17
  system: {
17
18
  loggerOptions: {
18
- loggerCallback: (level: any, message: string, containsPii: any) => void;
19
+ loggerCallback: (level: LogLevel, message: string, containsPii: any) => void;
19
20
  };
20
21
  };
21
22
  };
@@ -5,8 +5,26 @@ 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
+ }
@@ -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,19 @@
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;
7
17
  }
8
18
  declare const BlockLogin: FC<Props>;
9
19
  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,7 @@
79
104
  opacity: 0.8; }
80
105
 
81
106
  ._38Lo1 {
82
- width: 826px; }
107
+ max-width: 524px; }
83
108
 
84
109
  ._1OzGy {
85
110
  width: 50%;
@@ -88,17 +113,21 @@
88
113
 
89
114
  ._wWIyO {
90
115
  width: 100%;
91
- height: 100%;
92
- background-color: #ffffff;
93
- border-radius: 5px 0 0 5px;
94
- box-shadow: 0 3px 6px #00000029; }
116
+ height: 100%; }
117
+
118
+ ._3EZva {
119
+ height: 46px; }
95
120
 
96
121
  ._3nuns {
97
- font-size: 24px;
122
+ font-size: 48px;
98
123
  font-weight: bold;
99
- line-height: 28px;
100
- margin-bottom: 30px;
124
+ line-height: 56px;
125
+ margin-bottom: 15px;
101
126
  font-family: "Montserrat-Bold" !important; }
127
+ @media (max-width: 768px) {
128
+ ._3nuns {
129
+ font-size: 32px;
130
+ line-height: 40px; } }
102
131
 
103
132
  ._21qb6 {
104
133
  margin-bottom: 5px; }
@@ -127,6 +156,31 @@
127
156
  outline: none;
128
157
  width: 100%;
129
158
  font-family: "Poppins-Regular" !important; }
159
+ @media (max-width: 768px) {
160
+ ._3IL10 {
161
+ padding: 10px 27px; } }
162
+
163
+ ._2OUwW {
164
+ height: 100%;
165
+ max-height: 56px; }
166
+
167
+ ._2Owso {
168
+ font-size: 16px;
169
+ font-family: "Poppins-Regular" !important;
170
+ line-height: 24px; }
171
+ @media (max-width: 768px) {
172
+ ._2Owso {
173
+ font-size: 14px; } }
174
+
175
+ ._fx-kA {
176
+ font-size: 16px;
177
+ font-weight: 400;
178
+ line-height: 24px;
179
+ text-align: left;
180
+ opacity: 0.6; }
181
+ @media (max-width: 768px) {
182
+ ._fx-kA {
183
+ font-size: 14px; } }
130
184
 
131
185
  ._141p1 {
132
186
  bottom: 20px;
@@ -150,11 +204,29 @@
150
204
  font-size: 16px;
151
205
  display: inline-block;
152
206
  font-weight: 500;
153
- font-family: "Poppins-Regular" !important; }
207
+ font-family: "Poppins-Regular" !important;
208
+ -webkit-text-decoration: revert;
209
+ text-decoration: revert; }
154
210
  ._3bDsd:hover {
155
- color: #336dda;
156
- -webkit-text-decoration: revert;
157
- text-decoration: revert; }
211
+ color: #336dda; }
212
+ @media (max-width: 768px) {
213
+ ._3bDsd {
214
+ font-size: 14px; } }
215
+
216
+ ._I4SVu {
217
+ color: #336dda;
218
+ font-size: 16px;
219
+ display: inline-block;
220
+ font-weight: 500;
221
+ font-family: "Poppins-Regular" !important;
222
+ -webkit-text-decoration: revert;
223
+ text-decoration: revert;
224
+ margin-top: 20px; }
225
+ ._I4SVu:hover {
226
+ color: #336dda; }
227
+ @media (max-width: 768px) {
228
+ ._I4SVu {
229
+ font-size: 14px; } }
158
230
 
159
231
  ._11FZt {
160
232
  font-weight: 500; }
@@ -228,49 +300,97 @@
228
300
  ._32V6L ._3OgWF {
229
301
  width: 70%; }
230
302
 
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; }
303
+ ._wWIyO label:not(._11FZt) {
304
+ color: #8f9bb3;
305
+ text-transform: uppercase; }
306
+
307
+ ._wWIyO input[type="text"],
308
+ ._wWIyO input[type="password"] {
309
+ width: 100%;
310
+ border-radius: 8px;
311
+ border: 1px solid #D3D3D3;
312
+ height: 50px;
313
+ margin-bottom: 5px;
314
+ padding: 5px 15px; }
315
+
316
+ ._wWIyO input[type="text"]::-moz-placeholder, ._wWIyO input[type="password"]::-moz-placeholder {
317
+ color: #D3D3D3;
318
+ font-size: 16px;
319
+ font-weight: 400; }
320
+
321
+ ._wWIyO input[type="text"]:-ms-input-placeholder, ._wWIyO input[type="password"]:-ms-input-placeholder {
322
+ color: #D3D3D3;
323
+ font-size: 16px;
324
+ font-weight: 400; }
325
+
326
+ ._wWIyO input[type="text"]::placeholder,
327
+ ._wWIyO input[type="password"]::placeholder {
328
+ color: #D3D3D3;
329
+ font-size: 16px;
330
+ font-weight: 400; }
331
+
332
+ ._wWIyO ._1AiX0 {
333
+ transform: scale(1.3);
334
+ margin-left: 2px; }
335
+
336
+ ._wWIyO ._2uNvW {
337
+ font-size: 16px;
338
+ line-height: 27px; }
339
+ @media (max-width: 768px) {
340
+ ._wWIyO ._2uNvW {
341
+ font-size: 14px; } }
342
+
343
+ ._wWIyO ._pqn4y {
344
+ font-size: 18px;
345
+ opacity: 0.56; }
346
+ @media (max-width: 768px) {
347
+ ._wWIyO ._pqn4y {
348
+ font-size: 14px; } }
349
+
350
+ ._wWIyO ._39BJD {
351
+ margin-bottom: 30px; }
352
+ ._wWIyO ._39BJD ._ozRAq:disabled {
353
+ background: #E5E5E5; }
354
+
355
+ ._wWIyO input[type="checkbox"]._2K9b2 {
356
+ margin-left: 0; }
357
+
358
+ ._wWIyO ._11FZt {
359
+ padding-left: 20px; }
360
+
361
+ ._wWIyO ._3IL10 {
362
+ margin-top: 30px;
363
+ color: #ffffff;
364
+ font-weight: 500;
365
+ font-family: "Poppins-Regular" !important;
366
+ font-size: 18px;
367
+ font-weight: 700;
368
+ border-radius: 100px;
369
+ background-color: #316CD9;
370
+ line-height: 27px; }
371
+ ._wWIyO ._3IL10:hover {
372
+ background-color: #2196f3;
373
+ color: #ffffff; }
374
+ @media (max-width: 768px) {
375
+ ._wWIyO ._3IL10 {
376
+ font-size: 14px;
377
+ line-height: 21px; } }
378
+
379
+ ._wWIyO ._2VvIr {
380
+ border-radius: 50px; }
381
+
382
+ ._wWIyO ._2A0HF {
383
+ background: #316CD9;
384
+ color: #FFFFFF; }
385
+
386
+ ._wWIyO ._3LXoI {
387
+ position: absolute;
388
+ margin-left: auto;
389
+ margin-right: auto;
390
+ left: 0;
391
+ right: 0;
392
+ bottom: 0;
393
+ text-align: center; }
274
394
 
275
395
  ._23Sua {
276
396
  min-height: 40vh; }
@@ -334,7 +454,6 @@
334
454
  opacity: 1; } }
335
455
 
336
456
  ._F-hjL {
337
- background-color: #336dda;
338
457
  background-repeat: no-repeat;
339
458
  background-size: cover;
340
459
  width: 100%;
@@ -342,7 +461,6 @@
342
461
  background-position: center; }
343
462
  @media (max-width: 768px) {
344
463
  ._F-hjL {
345
- background-color: #336dda;
346
464
  overflow: hidden; } }
347
465
  ._F-hjL ._149oA {
348
466
  position: relative;
@@ -604,6 +722,9 @@
604
722
  width: 358px; }
605
723
  ._wWIyO {
606
724
  padding: 50px 20px !important; } }
725
+ @media (max-width: 575px) and (max-width: 768px) {
726
+ ._wWIyO {
727
+ padding-top: 30px !important; } }
607
728
 
608
729
  @media (max-width: 768px) {
609
730
  ._2v-L_ {
@@ -713,15 +834,37 @@
713
834
  padding: 10px 20px; }
714
835
 
715
836
  ._DrSlA {
716
- text-align: center;
717
- background: #e5e5e5;
837
+ background: #EFF3FC;
718
838
  font-size: 15px;
719
839
  color: #ad9292;
720
- border-radius: 8px;
721
- cursor: pointer; }
840
+ border-radius: 50px;
841
+ cursor: pointer;
842
+ display: flex;
843
+ align-items: center;
844
+ justify-content: center;
845
+ padding: 10px 0; }
722
846
  ._DrSlA img {
723
- width: 65px;
724
- height: auto; }
847
+ height: 26px;
848
+ margin-right: 10px; }
849
+ ._DrSlA p {
850
+ margin-bottom: 0;
851
+ font-size: 18px;
852
+ font-weight: 700;
853
+ line-height: 27px;
854
+ text-align: left;
855
+ color: #316CD9;
856
+ font-family: "Poppins-Regular" !important; }
857
+ @media (max-width: 768px) {
858
+ ._DrSlA p {
859
+ font-size: 14px;
860
+ line-height: 21px; } }
861
+
862
+ ._DrSlA:hover {
863
+ background: #316CD9; }
864
+ ._DrSlA:hover p {
865
+ color: #ffffff; }
866
+ ._DrSlA:hover ._20YJX {
867
+ width: 32px !important; }
725
868
 
726
869
  ._3Vgah {
727
870
  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 };