@cosmicdrift/kumiko-renderer-web 0.123.1 → 0.123.2
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 +4 -4
- package/src/primitives/index.tsx +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-renderer-web",
|
|
3
|
-
"version": "0.123.
|
|
3
|
+
"version": "0.123.2",
|
|
4
4
|
"description": "Web-platform bindings for @cosmicdrift/kumiko-renderer. HTML default-primitives, browser history-based navigation, EventSource-backed live events, and a one-call createKumikoApp that mounts the whole stack via react-dom.",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"./styles.css": "./src/styles.css"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@cosmicdrift/kumiko-dispatcher-live": "0.123.
|
|
20
|
-
"@cosmicdrift/kumiko-headless": "0.123.
|
|
21
|
-
"@cosmicdrift/kumiko-renderer": "0.123.
|
|
19
|
+
"@cosmicdrift/kumiko-dispatcher-live": "0.123.2",
|
|
20
|
+
"@cosmicdrift/kumiko-headless": "0.123.2",
|
|
21
|
+
"@cosmicdrift/kumiko-renderer": "0.123.2",
|
|
22
22
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
23
23
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
24
24
|
"@radix-ui/react-label": "^2.1.8",
|
package/src/primitives/index.tsx
CHANGED
|
@@ -517,9 +517,11 @@ function DefaultDataTable({
|
|
|
517
517
|
{emptyState ?? <span>No entries.</span>}
|
|
518
518
|
</div>
|
|
519
519
|
) : (
|
|
520
|
-
// dashboard-01-Muster:
|
|
521
|
-
//
|
|
522
|
-
|
|
520
|
+
// dashboard-01-Muster: `rounded-lg border`-Rahmen, die Header-Zeile
|
|
521
|
+
// trägt den bg-muted-Grauton. `bg-card` (statt transparent) → die Liste
|
|
522
|
+
// sitzt auf derselben Card-Fläche wie Forms; auf Themes mit farbigem
|
|
523
|
+
// Page-Background (z.B. Cream) matchen Listen sonst nicht die Cards.
|
|
524
|
+
<div className="overflow-hidden rounded-lg border bg-card">
|
|
523
525
|
<Table data-testid={testId}>
|
|
524
526
|
{tableInner(columns, rows, onRowClick, sort, onSortChange, rowActions, rowActionMode)}
|
|
525
527
|
</Table>
|