@firecms/core 3.0.0-canary.152 → 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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firecms/core",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.0.0-canary.
|
|
4
|
+
"version": "3.0.0-canary.153",
|
|
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.
|
|
50
|
-
"@firecms/formex": "^3.0.0-canary.
|
|
51
|
-
"@firecms/ui": "^3.0.0-canary.
|
|
49
|
+
"@firecms/editor": "^3.0.0-canary.153",
|
|
50
|
+
"@firecms/formex": "^3.0.0-canary.153",
|
|
51
|
+
"@firecms/ui": "^3.0.0-canary.153",
|
|
52
52
|
"@hello-pangea/dnd": "^17.0.0",
|
|
53
53
|
"@radix-ui/react-portal": "^1.1.2",
|
|
54
54
|
"clsx": "^2.1.1",
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
"dist",
|
|
101
101
|
"src"
|
|
102
102
|
],
|
|
103
|
-
"gitHead": "
|
|
103
|
+
"gitHead": "373e77fdfca9d30631a08d14f14b3638f6ad56e5",
|
|
104
104
|
"publishConfig": {
|
|
105
105
|
"access": "public"
|
|
106
106
|
},
|
|
@@ -89,15 +89,13 @@ export function EntityPreview({
|
|
|
89
89
|
</div>
|
|
90
90
|
|
|
91
91
|
|
|
92
|
-
<div className={"flex flex-col grow-1 w-full
|
|
92
|
+
<div className={"flex flex-col grow-1 w-full m-1 shrink-1"} style={{
|
|
93
|
+
"maxWidth": "calc(100% - 96px)"
|
|
94
|
+
}}>
|
|
93
95
|
|
|
94
96
|
{size !== "small" && includeId && (
|
|
95
97
|
entity
|
|
96
|
-
? <div className={
|
|
97
|
-
size !== "large"
|
|
98
|
-
? "block whitespace-nowrap overflow-hidden truncate"
|
|
99
|
-
: ""
|
|
100
|
-
}`}>
|
|
98
|
+
? <div className={"block whitespace-nowrap overflow-hidden truncate"}>
|
|
101
99
|
<Typography variant={"caption"}
|
|
102
100
|
color={"disabled"}
|
|
103
101
|
className={"font-mono"}>
|
|
@@ -147,7 +145,7 @@ export function EntityPreview({
|
|
|
147
145
|
</div>
|
|
148
146
|
|
|
149
147
|
{entity && includeEntityLink &&
|
|
150
|
-
<Tooltip title={`See details for ${entity.id}`}>
|
|
148
|
+
<Tooltip title={`See details for ${entity.id}`} className={"shrink-0"}>
|
|
151
149
|
<IconButton
|
|
152
150
|
color={"inherit"}
|
|
153
151
|
size={"medium"}
|