@firecms/core 3.0.0-canary.124 → 3.0.0-canary.125
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 +12 -9
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +12 -9
- package/dist/index.umd.js.map +1 -1
- package/package.json +5 -5
- package/src/app/Scaffold.tsx +3 -4
- package/src/components/EntityCollectionView/EntityCollectionView.tsx +5 -2
- package/src/components/EntityPreview.tsx +3 -3
- package/src/core/DefaultDrawer.tsx +2 -2
- package/src/core/DrawerNavigationItem.tsx +1 -1
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.125",
|
|
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.125",
|
|
50
|
+
"@firecms/formex": "^3.0.0-canary.125",
|
|
51
|
+
"@firecms/ui": "^3.0.0-canary.125",
|
|
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": "
|
|
103
|
+
"gitHead": "501db4cb508b17b75c72c1244cdf88e25f8c1e47",
|
|
104
104
|
"publishConfig": {
|
|
105
105
|
"access": "public"
|
|
106
106
|
},
|
package/src/app/Scaffold.tsx
CHANGED
|
@@ -166,10 +166,9 @@ function DrawerWrapper(props: {
|
|
|
166
166
|
<Tooltip title="Open menu"
|
|
167
167
|
side="right"
|
|
168
168
|
sideOffset={12}
|
|
169
|
-
asChild={true}
|
|
170
|
-
>
|
|
169
|
+
asChild={true}>
|
|
171
170
|
<div
|
|
172
|
-
className="fixed top-2 left-3 !bg-gray-50 dark:!bg-gray-900 rounded-full w-fit z-20">
|
|
171
|
+
className="ml-2 fixed top-2 left-3 !bg-gray-50 dark:!bg-gray-900 rounded-full w-fit z-20">
|
|
173
172
|
<IconButton
|
|
174
173
|
color="inherit"
|
|
175
174
|
aria-label="Open menu"
|
|
@@ -211,7 +210,7 @@ function DrawerWrapper(props: {
|
|
|
211
210
|
aria-label="Open drawer"
|
|
212
211
|
onClick={() => props.setDrawerOpen(true)}
|
|
213
212
|
size="large"
|
|
214
|
-
className="absolute top-2 left-
|
|
213
|
+
className="absolute top-2 left-5"
|
|
215
214
|
>
|
|
216
215
|
<MenuIcon/>
|
|
217
216
|
</IconButton>
|
|
@@ -45,7 +45,7 @@ import { EntityCollectionViewActions } from "./EntityCollectionViewActions";
|
|
|
45
45
|
import {
|
|
46
46
|
AddIcon,
|
|
47
47
|
Button,
|
|
48
|
-
cls,
|
|
48
|
+
cls, focusedDisabled,
|
|
49
49
|
IconButton,
|
|
50
50
|
KeyboardTabIcon,
|
|
51
51
|
Markdown,
|
|
@@ -785,6 +785,9 @@ function EntityIdHeaderWidget({
|
|
|
785
785
|
<Popover
|
|
786
786
|
open={openPopup}
|
|
787
787
|
onOpenChange={setOpenPopup}
|
|
788
|
+
sideOffset={0}
|
|
789
|
+
align={"start"}
|
|
790
|
+
alignOffset={-117}
|
|
788
791
|
trigger={
|
|
789
792
|
<IconButton size={"small"}>
|
|
790
793
|
<SearchIcon size={"small"}/>
|
|
@@ -814,7 +817,7 @@ function EntityIdHeaderWidget({
|
|
|
814
817
|
setSearchString(e.target.value);
|
|
815
818
|
}}
|
|
816
819
|
value={searchString}
|
|
817
|
-
className={"flex-grow bg-transparent outline-none p-1"}/>
|
|
820
|
+
className={"flex-grow bg-transparent outline-none p-1 " + focusedDisabled}/>
|
|
818
821
|
<Button variant={"outlined"}
|
|
819
822
|
disabled={!(searchString.trim())}
|
|
820
823
|
type={"submit"}
|
|
@@ -77,7 +77,7 @@ export function EntityPreview({
|
|
|
77
77
|
return <EntityPreviewContainer onClick={disabled ? undefined : onClick}
|
|
78
78
|
hover={disabled ? undefined : hover}
|
|
79
79
|
size={size}>
|
|
80
|
-
<div className={cls("flex w-10 h-10 mr-2 shrink-0
|
|
80
|
+
<div className={cls("flex w-10 h-10 mr-2 shrink-0", size === "smallest" ? "my-0.5" : "m-2 self-start")}>
|
|
81
81
|
{imageProperty && <PropertyPreview property={imageProperty}
|
|
82
82
|
propertyKey={imagePropertyKey as string}
|
|
83
83
|
size={"smallest"}
|
|
@@ -86,7 +86,7 @@ export function EntityPreview({
|
|
|
86
86
|
</div>
|
|
87
87
|
|
|
88
88
|
|
|
89
|
-
<div className={"flex flex-col
|
|
89
|
+
<div className={"flex flex-col grow-1 w-full max-w-full m-1"}>
|
|
90
90
|
|
|
91
91
|
{size !== "smallest" && includeId && (
|
|
92
92
|
entity
|
|
@@ -205,7 +205,7 @@ export const EntityPreviewContainer = React.forwardRef<HTMLDivElement, EntityPre
|
|
|
205
205
|
fullwidth ? "w-full" : "",
|
|
206
206
|
"items-center",
|
|
207
207
|
hover ? "hover:bg-slate-50 dark:hover:bg-gray-800 group-hover:bg-slate-50 dark:group-hover:bg-gray-800" : "",
|
|
208
|
-
size === "smallest" ? "p-1" : "
|
|
208
|
+
size === "smallest" ? "p-1" : "px-2 py-1",
|
|
209
209
|
"flex border rounded-lg",
|
|
210
210
|
onClick ? "cursor-pointer" : "",
|
|
211
211
|
defaultBorderMixin,
|
|
@@ -161,9 +161,9 @@ export function DrawerLogo({ logo }: {
|
|
|
161
161
|
return <div
|
|
162
162
|
style={{
|
|
163
163
|
transition: "padding 100ms cubic-bezier(0.4, 0, 0.6, 1) 0ms",
|
|
164
|
-
padding: drawerOpen ? "32px 144px 0px 24px" : "72px
|
|
164
|
+
padding: drawerOpen ? "32px 144px 0px 24px" : "72px 12px 0px 12px"
|
|
165
165
|
}}
|
|
166
|
-
className={cls("cursor-pointer")}>
|
|
166
|
+
className={cls("cursor-pointer ml-4")}>
|
|
167
167
|
|
|
168
168
|
<Tooltip title={"Home"}
|
|
169
169
|
sideOffset={20}
|
|
@@ -34,7 +34,7 @@ export function DrawerNavigationItem({
|
|
|
34
34
|
transition: drawerOpen ? "width 150ms ease-in" : undefined
|
|
35
35
|
}}
|
|
36
36
|
className={({ isActive }: any) => cls("rounded-lg truncate",
|
|
37
|
-
"hover:bg-slate-300 hover:bg-opacity-75 dark:hover:bg-
|
|
37
|
+
"hover:bg-slate-300 hover:bg-opacity-75 dark:hover:bg-slate-800 dark:hover:bg-opacity-75 text-gray-800 dark:text-gray-200 hover:text-gray-900 hover:dark:text-white",
|
|
38
38
|
"flex flex-row items-center mr-8",
|
|
39
39
|
// "transition-all ease-in-out delay-100 duration-300",
|
|
40
40
|
// drawerOpen ? "w-full" : "w-18",
|