@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.
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firecms/core",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.0.0-canary.
|
|
4
|
+
"version": "3.0.0-canary.57",
|
|
5
5
|
"description": "Awesome Firebase/Firestore-based headless open-source CMS",
|
|
6
6
|
"funding": {
|
|
7
7
|
"url": "https://github.com/sponsors/firecmsco"
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"./package.json": "./package.json"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@firecms/formex": "^3.0.0-canary.
|
|
50
|
-
"@firecms/ui": "^3.0.0-canary.
|
|
49
|
+
"@firecms/formex": "^3.0.0-canary.57",
|
|
50
|
+
"@firecms/ui": "^3.0.0-canary.57",
|
|
51
51
|
"@fontsource/jetbrains-mono": "^5.0.20",
|
|
52
52
|
"@hello-pangea/dnd": "^16.6.0",
|
|
53
53
|
"@radix-ui/react-portal": "^1.0.4",
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"dist",
|
|
112
112
|
"src"
|
|
113
113
|
],
|
|
114
|
-
"gitHead": "
|
|
114
|
+
"gitHead": "54c0d79d2648c937d055bacab2d7d92fbd294c7b",
|
|
115
115
|
"publishConfig": {
|
|
116
116
|
"access": "public"
|
|
117
117
|
},
|
package/src/core/Scaffold.tsx
CHANGED
|
@@ -33,7 +33,7 @@ export interface ScaffoldProps<ExtraAppbarProps = object> {
|
|
|
33
33
|
/**
|
|
34
34
|
* Name of the app, displayed as the main title and in the tab title
|
|
35
35
|
*/
|
|
36
|
-
name
|
|
36
|
+
name?: React.ReactNode;
|
|
37
37
|
|
|
38
38
|
/**
|
|
39
39
|
* Logo to be displayed in the drawer of the CMS
|
|
@@ -57,8 +57,7 @@ export interface ScaffoldProps<ExtraAppbarProps = object> {
|
|
|
57
57
|
autoOpenDrawer?: boolean;
|
|
58
58
|
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
61
|
-
* `toolbarExtraWidget` has no effect if this is set.
|
|
60
|
+
* The AppBar component to be used in the scaffold.
|
|
62
61
|
*/
|
|
63
62
|
FireCMSAppBar?: React.ComponentType<FireCMSAppBarProps<ExtraAppbarProps>>;
|
|
64
63
|
|