@firecms/collection_editor 3.0.0-canary.240 → 3.0.0-canary.241
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.
|
|
4
|
+
"version": "3.0.0-canary.241",
|
|
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.241",
|
|
11
|
+
"@firecms/data_import": "^3.0.0-canary.241",
|
|
12
|
+
"@firecms/data_import_export": "^3.0.0-canary.241",
|
|
13
|
+
"@firecms/formex": "^3.0.0-canary.241",
|
|
14
|
+
"@firecms/schema_inference": "^3.0.0-canary.241",
|
|
15
|
+
"@firecms/ui": "^3.0.0-canary.241",
|
|
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": "
|
|
73
|
+
"gitHead": "5d3c3928250947d0363073d612a8c15f9bc10459"
|
|
74
74
|
}
|
|
@@ -310,8 +310,9 @@ export function CollectionPropertiesEditorForm({
|
|
|
310
310
|
};
|
|
311
311
|
|
|
312
312
|
const body = (
|
|
313
|
-
<div className={"grid grid-cols-12 gap-2 h-full bg-
|
|
313
|
+
<div className={"grid grid-cols-12 gap-2 h-full bg-white dark:bg-surface-950"}>
|
|
314
314
|
<div className={cls(
|
|
315
|
+
"bg-surface-50 dark:bg-surface-900",
|
|
315
316
|
"p-4 md:p-8 pb-20 md:pb-20",
|
|
316
317
|
"col-span-12 lg:col-span-5 h-full overflow-auto",
|
|
317
318
|
!asDialog && "border-r " + defaultBorderMixin
|
|
@@ -401,8 +402,8 @@ export function CollectionPropertiesEditorForm({
|
|
|
401
402
|
|
|
402
403
|
{!asDialog &&
|
|
403
404
|
<div className={"col-span-12 lg:col-span-7 p-4 md:py-8 md:px-4 h-full overflow-auto pb-20 md:pb-20"}>
|
|
404
|
-
<
|
|
405
|
-
className="sticky top-8
|
|
405
|
+
<div
|
|
406
|
+
className="sticky top-8 min-h-full w-full flex flex-col justify-center">
|
|
406
407
|
|
|
407
408
|
{selectedPropertyFullId &&
|
|
408
409
|
selectedProperty &&
|
|
@@ -446,7 +447,7 @@ export function CollectionPropertiesEditorForm({
|
|
|
446
447
|
<Typography variant={"label"} className="flex items-center justify-center">
|
|
447
448
|
{"This property is defined as a property builder in code"}
|
|
448
449
|
</Typography>}
|
|
449
|
-
</
|
|
450
|
+
</div>
|
|
450
451
|
</div>}
|
|
451
452
|
|
|
452
453
|
{asDialog && <PropertyFormDialog
|