@firecms/collection_editor 3.0.0-canary.205 → 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,18 +1,18 @@
1
1
  {
2
2
  "name": "@firecms/collection_editor",
3
3
  "type": "module",
4
- "version": "3.0.0-canary.205",
4
+ "version": "3.0.0-canary.207",
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.0.0-canary.205",
11
- "@firecms/data_import": "^3.0.0-canary.205",
12
- "@firecms/data_import_export": "^3.0.0-canary.205",
13
- "@firecms/formex": "^3.0.0-canary.205",
14
- "@firecms/schema_inference": "^3.0.0-canary.205",
15
- "@firecms/ui": "^3.0.0-canary.205",
10
+ "@firecms/data_export": "^3.0.0-canary.207",
11
+ "@firecms/data_import": "^3.0.0-canary.207",
12
+ "@firecms/data_import_export": "^3.0.0-canary.207",
13
+ "@firecms/formex": "^3.0.0-canary.207",
14
+ "@firecms/schema_inference": "^3.0.0-canary.207",
15
+ "@firecms/ui": "^3.0.0-canary.207",
16
16
  "@hello-pangea/dnd": "^17.0.0",
17
17
  "json5": "^2.2.3",
18
18
  "prism-react-renderer": "^2.4.1"
@@ -70,5 +70,5 @@
70
70
  "publishConfig": {
71
71
  "access": "public"
72
72
  },
73
- "gitHead": "b3a2a795ce5eb7edc68efea5caa69b8d477901be"
73
+ "gitHead": "04f84602ba162577101f88759b0c56d429c73ff8"
74
74
  }
@@ -294,7 +294,7 @@ export function CollectionDetailsForm({
294
294
  value={values.description ?? ""}
295
295
  onChange={handleChange}
296
296
  multiline
297
- rows={2}
297
+ minRows={2}
298
298
  aria-describedby="description-helper-text"
299
299
  label="Description"
300
300
  />
@@ -228,8 +228,6 @@ export function CollectionPropertiesEditorForm({
228
228
  namespace
229
229
  }: OnPropertyChangedParams) => {
230
230
 
231
- console.log("!!!!!! onPropertyChanged", property)
232
-
233
231
  const fullId = id ? getFullId(id, namespace) : undefined;
234
232
  const propertyPath = fullId ? idToPropertiesPath(fullId) : undefined;
235
233