@firecms/collection_editor 3.3.0-canary.3afa809 → 3.3.0-canary.42ba35b
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,22 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firecms/collection_editor",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.3.0-canary.
|
|
4
|
+
"version": "3.3.0-canary.42ba35b",
|
|
5
5
|
"main": "./dist/index.umd.js",
|
|
6
6
|
"module": "./dist/index.es.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
8
8
|
"source": "src/index.ts",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@firecms/data_export": "^3.3.0-canary.
|
|
11
|
-
"@firecms/data_import": "^3.3.0-canary.
|
|
12
|
-
"@firecms/data_import_export": "^3.3.0-canary.
|
|
13
|
-
"@firecms/
|
|
14
|
-
"@firecms/schema_inference": "^3.3.0-canary.3afa809",
|
|
15
|
-
"@firecms/ui": "^3.3.0-canary.3afa809",
|
|
10
|
+
"@firecms/data_export": "^3.3.0-canary.42ba35b",
|
|
11
|
+
"@firecms/data_import": "^3.3.0-canary.42ba35b",
|
|
12
|
+
"@firecms/data_import_export": "^3.3.0-canary.42ba35b",
|
|
13
|
+
"@firecms/schema_inference": "^3.3.0-canary.42ba35b",
|
|
16
14
|
"json5": "^2.2.3",
|
|
17
15
|
"prism-react-renderer": "^2.4.1"
|
|
18
16
|
},
|
|
19
17
|
"peerDependencies": {
|
|
18
|
+
"@firecms/core": "^3.3.0",
|
|
19
|
+
"@firecms/formex": "^3.3.0",
|
|
20
|
+
"@firecms/ui": "^3.3.0",
|
|
20
21
|
"react": ">=18.3.1 || >=19.0.0",
|
|
21
22
|
"react-dom": ">=18.3.1 || >=19.0.0",
|
|
22
23
|
"react-router": "^6.28.0",
|
|
@@ -49,6 +50,9 @@
|
|
|
49
50
|
]
|
|
50
51
|
},
|
|
51
52
|
"devDependencies": {
|
|
53
|
+
"@firecms/core": "^3.3.0-canary.42ba35b",
|
|
54
|
+
"@firecms/formex": "^3.3.0-canary.42ba35b",
|
|
55
|
+
"@firecms/ui": "^3.3.0-canary.42ba35b",
|
|
52
56
|
"@jest/globals": "^30.2.0",
|
|
53
57
|
"@types/react": "^19.2.3",
|
|
54
58
|
"@types/react-dom": "^19.2.3",
|
|
@@ -503,7 +503,7 @@ export function CollectionPropertiesEditorForm({
|
|
|
503
503
|
!isPropertyBuilder(selectedProperty) &&
|
|
504
504
|
<PropertyForm
|
|
505
505
|
inArray={false}
|
|
506
|
-
key={`edit_view_${
|
|
506
|
+
key={`edit_view_${selectedPropertyFullId}_${generationCounter}`}
|
|
507
507
|
existingProperty={!isNewCollection}
|
|
508
508
|
autoUpdateId={false}
|
|
509
509
|
allowDataInference={!isNewCollection}
|
|
@@ -547,7 +547,7 @@ export function CollectionPropertiesEditorForm({
|
|
|
547
547
|
{asDialog && <PropertyFormDialog
|
|
548
548
|
inArray={false}
|
|
549
549
|
open={selectedPropertyIndex !== undefined}
|
|
550
|
-
key={`edit_view_${
|
|
550
|
+
key={`edit_view_${selectedPropertyFullId}_${generationCounter}`}
|
|
551
551
|
autoUpdateId={!selectedProperty}
|
|
552
552
|
allowDataInference={!isNewCollection}
|
|
553
553
|
existingProperty={true}
|