@marimo-team/islands 0.23.1-dev13 → 0.23.1-dev2
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/main.js +11 -7
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/data-table/TableTopBar.tsx +1 -1
- package/src/components/data-table/table-explorer-panel/table-explorer-panel.tsx +1 -1
- package/src/css/table.css +4 -0
- package/src/plugins/impl/common/labeled.tsx +5 -3
package/package.json
CHANGED
|
@@ -127,7 +127,7 @@ export const TableTopBar: React.FC<TableTopBarProps> = ({
|
|
|
127
127
|
onClick={() => togglePanel(PANEL_TYPES.ROW_VIEWER)}
|
|
128
128
|
>
|
|
129
129
|
<PanelRightIcon className="w-3.5 h-3.5" />
|
|
130
|
-
|
|
130
|
+
Explore
|
|
131
131
|
</Button>
|
|
132
132
|
)}
|
|
133
133
|
{downloadAs && <ExportMenu downloadAs={downloadAs} />}
|
package/src/css/table.css
CHANGED
|
@@ -44,9 +44,11 @@ export const Labeled: React.FC<PropsWithChildren<Props>> = ({
|
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
const labelElement = (
|
|
47
|
-
<
|
|
48
|
-
{
|
|
49
|
-
|
|
47
|
+
<div part="label" className="m-0 p-0">
|
|
48
|
+
<Label htmlFor={id} className={cn("font-prose", labelClassName)}>
|
|
49
|
+
{renderHTML({ html: label })}
|
|
50
|
+
</Label>
|
|
51
|
+
</div>
|
|
50
52
|
);
|
|
51
53
|
|
|
52
54
|
return (
|