touchstudy-core 0.1.144 → 0.1.145

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 (39) hide show
  1. package/dist/components/List/configs/interfaces.d.ts +1 -1
  2. package/dist/components/List/partials/VirtualListItem.d.ts +1 -1
  3. package/dist/components/Selects/CustomSelect.d.ts +1 -1
  4. package/dist/components/Tables/VirtualTableRowItem.d.ts +5 -6
  5. package/dist/components/Tables/VirtualTableView.d.ts +1 -1
  6. package/dist/components/Tables/configs/interfaces.d.ts +4 -11
  7. package/dist/containers/Notes/components/NoteItem.d.ts +0 -1
  8. package/dist/containers/PreparedTextbook/apiClients/textbookService.d.ts +1 -1
  9. package/dist/containers/PreparedTextbook/components/AcademySelector.d.ts +1 -1
  10. package/dist/containers/PreparedTextbook/components/ArticleBlock.d.ts +0 -1
  11. package/dist/containers/PreparedTextbook/components/ChapterBlock.d.ts +0 -1
  12. package/dist/containers/PreparedTextbook/components/ChapterBlockBody.d.ts +0 -1
  13. package/dist/containers/PreparedTextbook/components/CourseSelector.d.ts +1 -1
  14. package/dist/containers/PreparedTextbook/components/OwnerSelector.d.ts +2 -3
  15. package/dist/containers/PreparedTextbook/components/PreparedTextbookForm.d.ts +0 -5
  16. package/dist/containers/PreparedTextbook/components/QuestionBlock.d.ts +1 -1
  17. package/dist/containers/PreparedTextbook/components/QuestionGroupBlock.d.ts +1 -1
  18. package/dist/containers/PreparedTextbook/components/QuestionGroupBlockBody.d.ts +0 -1
  19. package/dist/containers/PreparedTextbook/components/TextbookContentsTab.d.ts +0 -1
  20. package/dist/containers/PreparedTextbook/components/TextbookInfoTab.d.ts +1 -3
  21. package/dist/containers/PreparedTextbook/components/TextbookOwnersTab.d.ts +1 -2
  22. package/dist/containers/PreparedTextbook/configs/constants.d.ts +0 -2
  23. package/dist/containers/PreparedTextbook/configs/enums.d.ts +0 -5
  24. package/dist/containers/PreparedTextbook/configs/functions.d.ts +3 -17
  25. package/dist/containers/PreparedTextbook/configs/interfaces.d.ts +0 -2
  26. package/dist/containers/PreparedTextbook/configs/types.d.ts +3 -5
  27. package/dist/containers/PreparedTextbook/hooks/useSelect.d.ts +10 -8
  28. package/dist/containers/PreparedTextbook/hooks/useTextbookManagement.d.ts +1 -8
  29. package/dist/containers/Textbooks/configs/types.d.ts +0 -2
  30. package/dist/containers/Textbooks/hooks/useTextbookList.d.ts +2 -5
  31. package/dist/containers/Textbooks/hooks/useTextbookShare.d.ts +2 -0
  32. package/dist/index.css +3 -3
  33. package/dist/index.js +749 -1342
  34. package/dist/index.js.map +1 -1
  35. package/dist/index.modern.js +761 -1345
  36. package/dist/index.modern.js.map +1 -1
  37. package/dist/utils/constants.d.ts +10 -2
  38. package/dist/utils/index.d.ts +0 -1
  39. package/package.json +2 -2
@@ -62,11 +62,19 @@ export declare const PrintTitleClassName = "print-title";
62
62
  export declare const PrintContentClassName = "print-content";
63
63
  export declare const PrintContainerClassName = "print-container";
64
64
  export declare const DEFAULT_PAGING_RESPONSE: PagingResponse;
65
- export declare const GRADE_OPTIONS: {
65
+ export declare const SCHOOL_OPTIONS: {
66
66
  label: string;
67
67
  value: number;
68
68
  }[];
69
- export declare const BRIEF_GRADE_OPTIONS: {
69
+ export declare const ELEMENTARY_GRADES: {
70
+ label: string;
71
+ value: number;
72
+ }[];
73
+ export declare const MIDDLE_GRADES: {
74
+ label: string;
75
+ value: number;
76
+ }[];
77
+ export declare const HIGH_GRADES: {
70
78
  label: string;
71
79
  value: number;
72
80
  }[];
@@ -7,6 +7,5 @@ export * from "./functions";
7
7
  export * from "./hooks";
8
8
  export { useTranslation } from "react-i18next";
9
9
  export { moment, toast };
10
- export { CellMeasurerCache, Index, MultiGrid } from "react-virtualized";
11
10
  export { OrderBy, RecentUserActionSortBy } from "./types";
12
11
  export type { LoginAccessTokenRequest, BaseSearchQuery, LoginRequest, LoginResponse, RecentUserActionQuery, RecentUserActionResponse, SearchQuery, TableHeaderType, User, UserResponse, UserSearchQuery, PagingResponse, Category, CategoryResponse, ConcurrentConnection, CourseInfo, ExamResult, Question, Student, Exam, ArticleGroup, QuestionResponse, NoteRequest, NoteResponse, QuestionData } from "./types";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "touchstudy-core",
3
- "version": "0.1.144",
3
+ "version": "0.1.145",
4
4
  "description": "Contains core components && functions for TouchStudy project",
5
5
  "author": "brss",
6
6
  "license": "MIT",
@@ -37,7 +37,7 @@
37
37
  "react-select": "^5.8.0",
38
38
  "react-slick": "^0.29.0",
39
39
  "react-toastify": "^9.1.3",
40
- "react-virtualized": "^9.22.6",
40
+ "react-virtualized": "^9.22.5",
41
41
  "tinymce": "^7.7.0",
42
42
  "yup": "^1.3.3"
43
43
  },