@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marimo-team/islands",
3
- "version": "0.23.1-dev13",
3
+ "version": "0.23.1-dev2",
4
4
  "main": "dist/main.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",
@@ -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
- Explorer
130
+ Explore
131
131
  </Button>
132
132
  )}
133
133
  {downloadAs && <ExportMenu downloadAs={downloadAs} />}
@@ -139,7 +139,7 @@ export const TableExplorerPanel: React.FC<TableExplorerPanelProps> = ({
139
139
  : inactiveClassName,
140
140
  )}
141
141
  >
142
- Explorer
142
+ Columns
143
143
  </Button>
144
144
  </div>
145
145
  </Fill>
package/src/css/table.css CHANGED
@@ -17,6 +17,10 @@
17
17
  padding-right: var(--marimo-table-edge-padding, 0.375rem);
18
18
  }
19
19
 
20
+ [part="label"] {
21
+ padding-left: var(--marimo-table-edge-padding, 0);
22
+ }
23
+
20
24
  .markdown table,
21
25
  table.dataframe {
22
26
  display: block;
@@ -44,9 +44,11 @@ export const Labeled: React.FC<PropsWithChildren<Props>> = ({
44
44
  }
45
45
 
46
46
  const labelElement = (
47
- <Label htmlFor={id} className={cn("font-prose", labelClassName)}>
48
- {renderHTML({ html: label })}
49
- </Label>
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 (