@boyernick/standard-ui-react 0.4.2-canary.54 → 0.4.2-canary.55

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/table.tsx +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@boyernick/standard-ui-react",
3
- "version": "0.4.2-canary.54",
3
+ "version": "0.4.2-canary.55",
4
4
  "description": "React components for StandardUI",
5
5
  "license": "MIT",
6
6
  "type": "module",
package/src/table.tsx CHANGED
@@ -72,7 +72,9 @@ export const Table = ({
72
72
  }: TableProps) => (
73
73
  <div
74
74
  className={cn(
75
- "w-full overflow-auto rounded-lg border border-border-primary bg-surface",
75
+ // rounded-2xl, the image frame's radius, so a table and an image on the
76
+ // same page share one corner.
77
+ "w-full overflow-auto rounded-2xl border border-border-primary bg-surface",
76
78
  containerClassName,
77
79
  )}
78
80
  >