mario-core 2.9.63-beta → 2.9.67-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/containers/User/hooks/useUserList.d.ts +1 -0
- package/dist/index.d.ts +2 -3
- package/dist/index.js +756 -798
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +754 -797
- package/dist/index.modern.js.map +1 -1
- package/dist/services/questionCategoryService.d.ts +1 -3
- package/dist/services/userService.d.ts +1 -0
- package/dist/utils/constants.d.ts +3 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -27,7 +27,6 @@ import SearchBox from "./components/Inputs/SearchBox";
|
|
|
27
27
|
import QuestionTypeSelector from "./components/Selectors/QuestionTypeSelector";
|
|
28
28
|
import SuggestionCategorySelector from "./components/Selectors/SuggestionCategorySelector";
|
|
29
29
|
import QuestionCategorySelector from "./components/Selectors/QuestionCategorySelector";
|
|
30
|
-
import CategorySelector from "./components/Selectors/CategorySelector";
|
|
31
30
|
import ErrorHandler from "./components/Alerts/ErrorHandler";
|
|
32
31
|
import DetailActionButtons from "./components/Buttons/DetailActionButtons";
|
|
33
32
|
import RequiredLabel from "./components/Labels/RequiredLabel";
|
|
@@ -48,7 +47,7 @@ import useGalleryList from "./containers/Gallery/hooks/useGalleryList";
|
|
|
48
47
|
import QuitPrompt from "./components/Others/QuitPrompt";
|
|
49
48
|
import AcademicClassSelector from "./components/Selectors/AcademicClassSelector";
|
|
50
49
|
import SchoolList from "./containers/DistrictSchools/views/SchoolList";
|
|
51
|
-
import {
|
|
50
|
+
import { INIT_AMPLITUDE_KEY_STAGE, INIT_AMPLITUDE_KEY_PROD, isLocalhost } from "./utils/constants";
|
|
52
51
|
import store from "./store";
|
|
53
52
|
import { api, apiUpload } from "./services/api";
|
|
54
53
|
import editorConfig from "./configs/editorConfig";
|
|
@@ -108,4 +107,4 @@ import { setEnableIEP, setEnableSurvey, setConversationOneToOne, setLanguage } f
|
|
|
108
107
|
import useFilters from "./hooks/useFilters";
|
|
109
108
|
import amplitude from "amplitude-js";
|
|
110
109
|
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,
|
|
110
|
+
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, 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 };
|