@firecms/core 3.0.0-alpha.52 → 3.0.0-alpha.54
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/components/index.d.ts +0 -1
- package/dist/core/NavigationRoutes.d.ts +0 -16
- package/dist/hooks/index.d.ts +0 -1
- package/dist/index.es.js +2675 -2813
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +5 -5
- package/dist/index.umd.js.map +1 -1
- package/package.json +4 -4
- package/src/components/index.tsx +0 -1
- package/src/core/FireCMS.tsx +59 -36
- package/src/core/NavigationRoutes.tsx +11 -70
- package/src/hooks/index.tsx +0 -1
- package/src/preview/components/DatePreview.tsx +1 -1
- package/dist/components/BreadcrumbUpdater.d.ts +0 -14
- package/dist/contexts/BreacrumbsContext.d.ts +0 -8
- package/dist/hooks/useBreadcrumbsContext.d.ts +0 -26
- package/src/components/BreadcrumbUpdater.tsx +0 -35
- package/src/contexts/BreacrumbsContext.tsx +0 -38
- package/src/hooks/useBreadcrumbsContext.tsx +0 -31
|
@@ -9,7 +9,6 @@ export * from "./HomePage";
|
|
|
9
9
|
export * from "./EntityCollectionView/EntityCollectionView";
|
|
10
10
|
export * from "./FieldConfigBadge";
|
|
11
11
|
export * from "./EntityCollectionTable";
|
|
12
|
-
export * from "./BreadcrumbUpdater";
|
|
13
12
|
export * from "./NotFoundPage";
|
|
14
13
|
export * from "./VirtualTable";
|
|
15
14
|
export * from "./ErrorBoundary";
|
|
@@ -19,19 +19,3 @@ export type NavigationRoutesProps = {
|
|
|
19
19
|
* @group Components
|
|
20
20
|
*/
|
|
21
21
|
export declare const NavigationRoutes: React.NamedExoticComponent<NavigationRoutesProps>;
|
|
22
|
-
interface RouteWrapperProps {
|
|
23
|
-
title: string;
|
|
24
|
-
path: string;
|
|
25
|
-
type: "collection" | "view" | "home";
|
|
26
|
-
}
|
|
27
|
-
/**
|
|
28
|
-
* This component updates the breadcrumb in the app bar when rendered
|
|
29
|
-
* @param children
|
|
30
|
-
* @param title
|
|
31
|
-
* @param path
|
|
32
|
-
* @param type
|
|
33
|
-
* @constructor
|
|
34
|
-
* @group Components
|
|
35
|
-
*/
|
|
36
|
-
export declare const RouteWrapper: React.NamedExoticComponent<React.PropsWithChildren<RouteWrapperProps>>;
|
|
37
|
-
export {};
|
package/dist/hooks/index.d.ts
CHANGED
|
@@ -14,7 +14,6 @@ export * from "./useFireCMSContext";
|
|
|
14
14
|
export * from "./useSnackbarController";
|
|
15
15
|
export * from "./useModeController";
|
|
16
16
|
export * from "./useClipboard";
|
|
17
|
-
export * from "./useBreadcrumbsContext";
|
|
18
17
|
export * from "./useLargeLayout";
|
|
19
18
|
export * from "./useReferenceDialog";
|
|
20
19
|
export * from "./useBrowserTitleAndIcon";
|