@marimo-team/islands 0.23.9-dev2 → 0.23.9-dev3
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/{code-visibility-Dt0Aq6-t.js → code-visibility-BKxrBMod.js} +1 -1
- package/dist/main.js +2 -2
- package/dist/{reveal-component-Cj2fUG1Q.js → reveal-component-BMyi2UMr.js} +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/dependency-graph/minimap-content.tsx +2 -2
package/package.json
CHANGED
|
@@ -68,7 +68,7 @@ const MinimapCell: React.FC<MinimapCellProps> = (props) => {
|
|
|
68
68
|
className={cn(
|
|
69
69
|
"group bg-transparent text-left w-full flex relative justify-between items-center",
|
|
70
70
|
"border-none rounded cursor-pointer",
|
|
71
|
-
"h-[21px] pl-[
|
|
71
|
+
"h-[21px] pl-[65px] font-inherit",
|
|
72
72
|
isSelected
|
|
73
73
|
? "text-primary-foreground"
|
|
74
74
|
: "text-(--gray-8) hover:text-(--gray-9)",
|
|
@@ -106,7 +106,7 @@ const MinimapCell: React.FC<MinimapCellProps> = (props) => {
|
|
|
106
106
|
</div>
|
|
107
107
|
<svg
|
|
108
108
|
className={cn(
|
|
109
|
-
"absolute overflow-visible top-[10.5px] left-[calc(var(--spacing-extra-small,8px)+
|
|
109
|
+
"absolute overflow-visible top-[10.5px] left-[calc(var(--spacing-extra-small,8px)+31px)] pointer-events-none",
|
|
110
110
|
isSelected ? "z-[1]" : "z-0",
|
|
111
111
|
getTextColor({ cell, selectedCell }),
|
|
112
112
|
)}
|