@firecms/core 3.0.0-canary.173 → 3.0.0-canary.174
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 +1 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +5 -5
- package/src/core/EntityEditView.tsx +1 -3
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.174",
|
|
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.174",
|
|
54
|
+
"@firecms/formex": "^3.0.0-canary.174",
|
|
55
|
+
"@firecms/ui": "^3.0.0-canary.174",
|
|
56
56
|
"@hello-pangea/dnd": "^17.0.0",
|
|
57
57
|
"@radix-ui/react-portal": "^1.1.2",
|
|
58
58
|
"clsx": "^2.1.1",
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
"dist",
|
|
105
105
|
"src"
|
|
106
106
|
],
|
|
107
|
-
"gitHead": "
|
|
107
|
+
"gitHead": "268a99741b93a8b745422740faf90aa808da97fb",
|
|
108
108
|
"publishConfig": {
|
|
109
109
|
"access": "public"
|
|
110
110
|
},
|
|
@@ -1042,13 +1042,11 @@ export function EntityEditViewInner<M extends Record<string, any>>({
|
|
|
1042
1042
|
|
|
1043
1043
|
</div>
|
|
1044
1044
|
|
|
1045
|
-
{mainViewVisible && shouldShowEntityActions && !actionsAtTheBottom && dialogActions}
|
|
1046
|
-
|
|
1047
1045
|
{customViewsView}
|
|
1048
1046
|
|
|
1049
1047
|
{subCollectionsViews}
|
|
1050
1048
|
|
|
1051
|
-
{shouldShowEntityActions &&
|
|
1049
|
+
{shouldShowEntityActions && dialogActions}
|
|
1052
1050
|
|
|
1053
1051
|
</form>
|
|
1054
1052
|
|