@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/dist/index.umd.js
CHANGED
|
@@ -298,6 +298,7 @@
|
|
|
298
298
|
ui.Select,
|
|
299
299
|
{
|
|
300
300
|
name: "defaultSize",
|
|
301
|
+
size: "large",
|
|
301
302
|
label: "Default row size",
|
|
302
303
|
position: "item-aligned",
|
|
303
304
|
onChange: handleChange,
|
|
@@ -319,6 +320,7 @@
|
|
|
319
320
|
name: "customId",
|
|
320
321
|
label: "Document IDs generation",
|
|
321
322
|
position: "item-aligned",
|
|
323
|
+
size: "large",
|
|
322
324
|
disabled: customIdValue === "code_defined",
|
|
323
325
|
onValueChange: (v) => {
|
|
324
326
|
if (v === "code_defined")
|
|
@@ -411,7 +413,7 @@
|
|
|
411
413
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
412
414
|
ui.TextField,
|
|
413
415
|
{
|
|
414
|
-
size: "
|
|
416
|
+
size: "small",
|
|
415
417
|
invisible: true,
|
|
416
418
|
inputClassName: "text-end",
|
|
417
419
|
value: databaseId ?? "",
|
|
@@ -1090,6 +1092,7 @@
|
|
|
1090
1092
|
onValueChange: (value) => {
|
|
1091
1093
|
setFieldValue("defaultValue", value);
|
|
1092
1094
|
},
|
|
1095
|
+
size: "large",
|
|
1093
1096
|
label: "Default value",
|
|
1094
1097
|
value: defaultValue ?? "",
|
|
1095
1098
|
children: enumValues.filter((enumValue) => Boolean(enumValue?.id)).map((enumValue) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -2362,6 +2365,7 @@
|
|
|
2362
2365
|
value: value ?? "",
|
|
2363
2366
|
position: "item-aligned",
|
|
2364
2367
|
name: pathPath,
|
|
2368
|
+
size: "large",
|
|
2365
2369
|
onChange: handleChange,
|
|
2366
2370
|
label: "Target collection",
|
|
2367
2371
|
renderValue: (selected) => {
|
|
@@ -2456,6 +2460,7 @@
|
|
|
2456
2460
|
name: modePath,
|
|
2457
2461
|
value: modeValue ?? "date",
|
|
2458
2462
|
error: Boolean(modeError),
|
|
2463
|
+
size: "large",
|
|
2459
2464
|
onValueChange: (v) => setFieldValue(modePath, v),
|
|
2460
2465
|
label: "Mode",
|
|
2461
2466
|
renderValue: (v) => {
|
|
@@ -2483,6 +2488,7 @@
|
|
|
2483
2488
|
{
|
|
2484
2489
|
name: autoValuePath,
|
|
2485
2490
|
disabled,
|
|
2491
|
+
size: "large",
|
|
2486
2492
|
value: autoValueValue ?? "",
|
|
2487
2493
|
onValueChange: (v) => setFieldValue(autoValuePath, v === "none" ? null : v),
|
|
2488
2494
|
renderValue: (v) => {
|
|
@@ -5315,6 +5321,7 @@
|
|
|
5315
5321
|
open: selectOpen,
|
|
5316
5322
|
onOpenChange: setSelectOpen,
|
|
5317
5323
|
invisible: true,
|
|
5324
|
+
size: "large",
|
|
5318
5325
|
className: "w-full",
|
|
5319
5326
|
disabled,
|
|
5320
5327
|
error: !widget,
|