mui-toolpad-extended-tuni 2.0.0 → 2.1.0
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/README.md +17 -0
- package/dist/LMSToolpad/LMSProvider.d.ts +14 -8
- package/dist/LMSToolpad/components/CenteredHeading.d.ts +7 -0
- package/dist/LMSToolpad/components/Courses/CourseCodeLoader.d.ts +15 -0
- package/dist/LMSToolpad/components/Courses/CourseInstanceLoader.d.ts +16 -0
- package/dist/LMSToolpad/components/Courses/CourseInstanceSelector.d.ts +15 -0
- package/dist/LMSToolpad/components/Courses/CourseItem.d.ts +18 -2
- package/dist/LMSToolpad/components/Courses/CourseList.d.ts +16 -1
- package/dist/LMSToolpad/components/Courses/CourseSelector.d.ts +21 -1
- package/dist/LMSToolpad/components/Courses/CourseTools.d.ts +20 -1
- package/dist/LMSToolpad/components/Courses/LayoutToggle.d.ts +7 -0
- package/dist/LMSToolpad/components/Home.d.ts +10 -0
- package/dist/LMSToolpad/components/MicroserviceNavigationBuilder.d.ts +45 -0
- package/dist/LMSToolpad/components/MicroserviceRoutes.d.ts +30 -5
- package/dist/LMSToolpad/components/ToolCard.d.ts +8 -0
- package/dist/LMSToolpad/components/ToolDisplayer.d.ts +21 -0
- package/dist/LMSToolpad/components/sidebar/Footer.d.ts +2 -1
- package/dist/LMSToolpad/constants.d.ts +1 -0
- package/dist/LMSToolpad/hooks/useCustomRouter.d.ts +1 -0
- package/dist/LMSToolpad/network/axiosConfig.d.ts +1 -0
- package/dist/LMSToolpad/store/useCourseStore.d.ts +23 -7
- package/dist/LMSToolpad/store/useNavigationStore.d.ts +14 -0
- package/dist/LMSToolpad/utils/courseFilters.d.ts +14 -0
- package/dist/index.cjs +83 -83
- package/dist/index.d.ts +2 -0
- package/dist/index.es.js +5758 -5148
- package/package.json +1 -1
- package/dist/LMSToolpad/components/Courses/CourseLoader.d.ts +0 -7
- package/dist/LMSToolpad/utils/slugify.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
/** @format */
|
|
2
|
-
/**
|
|
3
|
-
* @description - This component is responsible for loading the course data and rendering the course tools
|
|
4
|
-
* @returns {React.ReactElement} - Returns the course loader component
|
|
5
|
-
*/
|
|
6
|
-
declare const CourseLoader: () => import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
export default CourseLoader;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const slugify: (text: string) => string;
|