@firecms/collection_editor 3.0.0-alpha.29 → 3.0.0-alpha.30
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firecms/collection_editor",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.30",
|
|
4
4
|
"main": "./dist/index.umd.js",
|
|
5
5
|
"module": "./dist/index.es.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"./package.json": "./package.json"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@firecms/data_import": "^3.0.0-alpha.
|
|
18
|
-
"@firecms/schema_inference": "^3.0.0-alpha.
|
|
17
|
+
"@firecms/data_import": "^3.0.0-alpha.30",
|
|
18
|
+
"@firecms/schema_inference": "^3.0.0-alpha.30"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"react": "^18.2.0",
|
|
@@ -76,5 +76,5 @@
|
|
|
76
76
|
"publishConfig": {
|
|
77
77
|
"access": "public"
|
|
78
78
|
},
|
|
79
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "89854d00f9088e09134623a84be752990c6cbc32"
|
|
80
80
|
}
|
|
@@ -115,8 +115,6 @@ export const ConfigControllerProvider = React.memo(
|
|
|
115
115
|
collectionEditable: boolean;
|
|
116
116
|
}>();
|
|
117
117
|
|
|
118
|
-
console.log("currentPropertyDialog", currentPropertyDialog);
|
|
119
|
-
|
|
120
118
|
const defaultConfigPermissions: CollectionEditorPermissionsBuilder = useCallback(() => ({
|
|
121
119
|
createCollections: true,
|
|
122
120
|
editCollections: true,
|
|
@@ -212,9 +210,6 @@ export const ConfigControllerProvider = React.memo(
|
|
|
212
210
|
}
|
|
213
211
|
}
|
|
214
212
|
|
|
215
|
-
console.log("aaa", getData, currentPropertyDialog?.editedCollectionPath);
|
|
216
|
-
console.log(currentPropertyDialog)
|
|
217
|
-
|
|
218
213
|
return (
|
|
219
214
|
<ConfigControllerContext.Provider value={collectionConfigController}>
|
|
220
215
|
<CollectionEditorContext.Provider
|