@firecms/collection_editor 3.0.0-canary.151 → 3.0.0-canary.153
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 +8 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +8 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +8 -8
- package/src/ui/collection_editor/CollectionDetailsForm.tsx +3 -1
- package/src/ui/collection_editor/import/CollectionEditorImportMapping.tsx +1 -0
- package/src/ui/collection_editor/properties/DateTimePropertyField.tsx +2 -0
- package/src/ui/collection_editor/properties/EnumPropertyField.tsx +1 -0
- package/src/ui/collection_editor/properties/ReferencePropertyField.tsx +1 -0
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.
|
|
4
|
+
"version": "3.0.0-canary.153",
|
|
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.
|
|
11
|
-
"@firecms/data_import": "^3.0.0-canary.
|
|
12
|
-
"@firecms/data_import_export": "^3.0.0-canary.
|
|
13
|
-
"@firecms/formex": "^3.0.0-canary.
|
|
14
|
-
"@firecms/schema_inference": "^3.0.0-canary.
|
|
15
|
-
"@firecms/ui": "^3.0.0-canary.
|
|
10
|
+
"@firecms/data_export": "^3.0.0-canary.153",
|
|
11
|
+
"@firecms/data_import": "^3.0.0-canary.153",
|
|
12
|
+
"@firecms/data_import_export": "^3.0.0-canary.153",
|
|
13
|
+
"@firecms/formex": "^3.0.0-canary.153",
|
|
14
|
+
"@firecms/schema_inference": "^3.0.0-canary.153",
|
|
15
|
+
"@firecms/ui": "^3.0.0-canary.153",
|
|
16
16
|
"json5": "^2.2.3",
|
|
17
17
|
"prism-react-renderer": "^2.4.0"
|
|
18
18
|
},
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"publishConfig": {
|
|
68
68
|
"access": "public"
|
|
69
69
|
},
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "373e77fdfca9d30631a08d14f14b3638f6ad56e5"
|
|
71
71
|
}
|
|
@@ -298,6 +298,7 @@ export function CollectionDetailsForm({
|
|
|
298
298
|
<div className={"col-span-12"}>
|
|
299
299
|
<Select
|
|
300
300
|
name="defaultSize"
|
|
301
|
+
size={"large"}
|
|
301
302
|
label="Default row size"
|
|
302
303
|
position={"item-aligned"}
|
|
303
304
|
onChange={handleChange}
|
|
@@ -318,6 +319,7 @@ export function CollectionDetailsForm({
|
|
|
318
319
|
name="customId"
|
|
319
320
|
label="Document IDs generation"
|
|
320
321
|
position={"item-aligned"}
|
|
322
|
+
size={"large"}
|
|
321
323
|
disabled={customIdValue === "code_defined"}
|
|
322
324
|
onValueChange={(v) => {
|
|
323
325
|
if (v === "code_defined")
|
|
@@ -416,7 +418,7 @@ function DefaultDatabaseField({
|
|
|
416
418
|
return <Tooltip title={"Database ID"}
|
|
417
419
|
side={"top"}
|
|
418
420
|
align={"start"}>
|
|
419
|
-
<TextField size={"
|
|
421
|
+
<TextField size={"small"}
|
|
420
422
|
invisible={true}
|
|
421
423
|
inputClassName={"text-end"}
|
|
422
424
|
value={databaseId ?? ""}
|
|
@@ -31,6 +31,7 @@ export function DateTimePropertyField({ disabled }: {
|
|
|
31
31
|
<Select name={modePath}
|
|
32
32
|
value={modeValue ?? "date"}
|
|
33
33
|
error={Boolean(modeError)}
|
|
34
|
+
size={"large"}
|
|
34
35
|
onValueChange={(v) => setFieldValue(modePath, v)}
|
|
35
36
|
label={"Mode"}
|
|
36
37
|
renderValue={(v) => {
|
|
@@ -54,6 +55,7 @@ export function DateTimePropertyField({ disabled }: {
|
|
|
54
55
|
<div>
|
|
55
56
|
<Select name={autoValuePath}
|
|
56
57
|
disabled={disabled}
|
|
58
|
+
size={"large"}
|
|
57
59
|
value={autoValueValue ?? ""}
|
|
58
60
|
onValueChange={(v) => setFieldValue(autoValuePath, v === "none" ? null : v)}
|
|
59
61
|
renderValue={(v) => {
|