@firecms/core 3.0.0-canary.208 → 3.0.0-canary.209
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/index.es.js +2 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +5 -5
- package/src/app/Scaffold.tsx +2 -2
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.209",
|
|
5
5
|
"description": "Awesome Firebase/Firestore-based headless open-source CMS",
|
|
6
6
|
"funding": {
|
|
7
7
|
"url": "https://github.com/sponsors/firecmsco"
|
|
@@ -50,9 +50,9 @@
|
|
|
50
50
|
"./package.json": "./package.json"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@firecms/editor": "^3.0.0-canary.
|
|
54
|
-
"@firecms/formex": "^3.0.0-canary.
|
|
55
|
-
"@firecms/ui": "^3.0.0-canary.
|
|
53
|
+
"@firecms/editor": "^3.0.0-canary.209",
|
|
54
|
+
"@firecms/formex": "^3.0.0-canary.209",
|
|
55
|
+
"@firecms/ui": "^3.0.0-canary.209",
|
|
56
56
|
"@hello-pangea/dnd": "^17.0.0",
|
|
57
57
|
"@radix-ui/react-portal": "^1.1.3",
|
|
58
58
|
"clsx": "^2.1.1",
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
"dist",
|
|
105
105
|
"src"
|
|
106
106
|
],
|
|
107
|
-
"gitHead": "
|
|
107
|
+
"gitHead": "9e3b4e8746ea9405f8c7b51e058a1a8c5a63f86b",
|
|
108
108
|
"publishConfig": {
|
|
109
109
|
"access": "public"
|
|
110
110
|
},
|
package/src/app/Scaffold.tsx
CHANGED
|
@@ -126,9 +126,9 @@ export const Scaffold = React.memo<PropsWithChildren<ScaffoldProps>>(
|
|
|
126
126
|
{hasAppBar && <DrawerHeader/>}
|
|
127
127
|
|
|
128
128
|
<div
|
|
129
|
-
className={cls(defaultBorderMixin, "flex-grow overflow-auto m-0
|
|
129
|
+
className={cls(defaultBorderMixin, "flex-grow overflow-auto m-0 ", {
|
|
130
130
|
"lg:mt-4": !hasAppBar,
|
|
131
|
-
"lg:m-0 lg:mx-4 lg:mb-4 lg:rounded-lg lg:border lg:border-solid": padding,
|
|
131
|
+
"mt-1 lg:m-0 lg:mx-4 lg:mb-4 lg:rounded-lg lg:border lg:border-solid": padding,
|
|
132
132
|
"border-t": hasAppBar && !padding,
|
|
133
133
|
})}>
|
|
134
134
|
|