@firecms/core 3.0.0-canary.171 → 3.0.0-canary.172
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 -0
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +2 -0
- package/dist/index.umd.js.map +1 -1
- package/package.json +5 -5
- package/src/routes/FireCMSRoute.tsx +2 -0
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.172",
|
|
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.172",
|
|
54
|
+
"@firecms/formex": "^3.0.0-canary.172",
|
|
55
|
+
"@firecms/ui": "^3.0.0-canary.172",
|
|
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": "538f682b9f89bfd08db9891b57cb71f618f4764b",
|
|
108
108
|
"publishConfig": {
|
|
109
109
|
"access": "public"
|
|
110
110
|
},
|
|
@@ -211,9 +211,11 @@ function EntityFullScreenRoute({
|
|
|
211
211
|
selectedTab={selectedTab ?? undefined}
|
|
212
212
|
onValuesModified={(modified) => blocked.current = modified}
|
|
213
213
|
onSaved={(params) => {
|
|
214
|
+
console.log("EntityEditView Saved", params);
|
|
214
215
|
updateUrl(params.entityId, params.selectedTab, true, params.path, isNew);
|
|
215
216
|
}}
|
|
216
217
|
onTabChange={(params) => {
|
|
218
|
+
console.log("EntityEditView onTabChange", params);
|
|
217
219
|
updateUrl(params.entityId, params.selectedTab, !isNew, params.path, isNew);
|
|
218
220
|
setSelectedTab(params.selectedTab);
|
|
219
221
|
}}
|