@firecms/core 3.0.0-canary.206 → 3.0.0-canary.207
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.207",
|
|
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.207",
|
|
54
|
+
"@firecms/formex": "^3.0.0-canary.207",
|
|
55
|
+
"@firecms/ui": "^3.0.0-canary.207",
|
|
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": "04f84602ba162577101f88759b0c56d429c73ff8",
|
|
108
108
|
"publishConfig": {
|
|
109
109
|
"access": "public"
|
|
110
110
|
},
|
|
@@ -212,7 +212,7 @@ export function useBuildNavigationController<EC extends EntityCollection, USER e
|
|
|
212
212
|
let shouldUpdateTopLevelNav = false;
|
|
213
213
|
if (!areCollectionListsEqual(collectionsRef.current ?? [], resolvedCollections)) {
|
|
214
214
|
collectionsRef.current = resolvedCollections;
|
|
215
|
-
console.
|
|
215
|
+
console.debug("Collections have changed", resolvedCollections);
|
|
216
216
|
shouldUpdateTopLevelNav = true;
|
|
217
217
|
}
|
|
218
218
|
if (collectionsRef.current === undefined) {
|
|
@@ -202,7 +202,6 @@ function EntityFullScreenRoute({
|
|
|
202
202
|
selectedTab={selectedTab ?? undefined}
|
|
203
203
|
onValuesModified={(modified) => blocked.current = modified}
|
|
204
204
|
onSaved={(params) => {
|
|
205
|
-
console.log("Entity saved", params);
|
|
206
205
|
const newSelectedTab = params.selectedTab;
|
|
207
206
|
const newEntityId = params.entityId;
|
|
208
207
|
if (newSelectedTab) {
|