@firecms/core 3.0.0-canary.55 → 3.0.0-canary.57
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/FireCMSAppBar.d.ts +1 -1
- package/dist/core/Scaffold.d.ts +2 -3
- package/dist/index.es.js +1149 -1148
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +3 -3
- package/dist/index.umd.js.map +1 -1
- package/dist/types/collections.d.ts +1 -1
- package/dist/util/objects.d.ts +1 -1
- package/package.json +4 -4
- package/src/components/FireCMSAppBar.tsx +1 -1
- package/src/components/SearchIconsView.tsx +1 -1
- package/src/core/Scaffold.tsx +2 -3
- package/src/core/field_configs.tsx +1 -1
- package/src/hooks/useBuildLocalConfigurationPersistence.tsx +2 -3
- package/src/hooks/useBuildNavigationController.tsx +1 -1
- package/src/types/collections.ts +5 -2
- package/src/util/objects.ts +8 -7
package/dist/core/Scaffold.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export interface ScaffoldProps<ExtraAppbarProps = object> {
|
|
|
10
10
|
/**
|
|
11
11
|
* Name of the app, displayed as the main title and in the tab title
|
|
12
12
|
*/
|
|
13
|
-
name
|
|
13
|
+
name?: React.ReactNode;
|
|
14
14
|
/**
|
|
15
15
|
* Logo to be displayed in the drawer of the CMS
|
|
16
16
|
*/
|
|
@@ -29,8 +29,7 @@ export interface ScaffoldProps<ExtraAppbarProps = object> {
|
|
|
29
29
|
*/
|
|
30
30
|
autoOpenDrawer?: boolean;
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
33
|
-
* `toolbarExtraWidget` has no effect if this is set.
|
|
32
|
+
* The AppBar component to be used in the scaffold.
|
|
34
33
|
*/
|
|
35
34
|
FireCMSAppBar?: React.ComponentType<FireCMSAppBarProps<ExtraAppbarProps>>;
|
|
36
35
|
/**
|