@firecms/core 3.0.0-canary.116 → 3.0.0-canary.118

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@firecms/core",
3
3
  "type": "module",
4
- "version": "3.0.0-canary.116",
4
+ "version": "3.0.0-canary.118",
5
5
  "description": "Awesome Firebase/Firestore-based headless open-source CMS",
6
6
  "funding": {
7
7
  "url": "https://github.com/sponsors/firecmsco"
@@ -46,9 +46,9 @@
46
46
  "./package.json": "./package.json"
47
47
  },
48
48
  "dependencies": {
49
- "@firecms/editor": "^3.0.0-canary.116",
50
- "@firecms/formex": "^3.0.0-canary.116",
51
- "@firecms/ui": "^3.0.0-canary.116",
49
+ "@firecms/editor": "^3.0.0-canary.118",
50
+ "@firecms/formex": "^3.0.0-canary.118",
51
+ "@firecms/ui": "^3.0.0-canary.118",
52
52
  "@hello-pangea/dnd": "^16.6.0",
53
53
  "@radix-ui/react-portal": "^1.1.1",
54
54
  "clsx": "^2.1.1",
@@ -100,7 +100,7 @@
100
100
  "dist",
101
101
  "src"
102
102
  ],
103
- "gitHead": "f97cc64e8606eee69e0d237c3cdec01029badb38",
103
+ "gitHead": "91168e34bae600c45320b3092a153bc4d60d0018",
104
104
  "publishConfig": {
105
105
  "access": "public"
106
106
  },
@@ -54,7 +54,7 @@ export function ArrayOfMapsPreview({
54
54
  values.map((v, index) => {
55
55
  return (
56
56
  <div key={`table_${v}_${index}`}
57
- className="border-b last:border-b-0">
57
+ className="border-b last:border-b-0 py-2">
58
58
  {mapProperties && mapProperties.map(
59
59
  (key) => (
60
60
  <div
@@ -49,7 +49,7 @@ export function ArrayOneOfPreview({
49
49
  values.map((value, index) =>
50
50
  <React.Fragment
51
51
  key={"preview_array_" + value + "_" + index}>
52
- <div className={cls(defaultBorderMixin, "m-1 border-b last:border-b-0")}>
52
+ <div className={cls(defaultBorderMixin, "m-1 border-b last:border-b-0 py-2")}>
53
53
  <ErrorBoundary>
54
54
  {value && <PropertyPreview
55
55
  propertyKey={propertyKey}