@firecms/core 3.0.0-canary.56 → 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.
@@ -1,7 +1,7 @@
1
1
  import React from "react";
2
2
  import { User } from "../types";
3
3
  export type FireCMSAppBarProps<ADDITIONAL_PROPS = object> = {
4
- title: React.ReactNode;
4
+ title?: React.ReactNode;
5
5
  /**
6
6
  * A component that gets rendered on the upper side of the main toolbar
7
7
  */
@@ -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: React.ReactNode;
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
- * A component that gets rendered on the upper side of the main toolbar.
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
  /**