@cosmicdrift/kumiko-renderer-web 0.104.0 → 0.105.1
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 +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-renderer-web",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.105.1",
|
|
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.
|
|
20
|
-
"@cosmicdrift/kumiko-headless": "0.
|
|
21
|
-
"@cosmicdrift/kumiko-renderer": "0.
|
|
19
|
+
"@cosmicdrift/kumiko-dispatcher-live": "0.105.1",
|
|
20
|
+
"@cosmicdrift/kumiko-headless": "0.105.1",
|
|
21
|
+
"@cosmicdrift/kumiko-renderer": "0.105.1",
|
|
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
|
@@ -48,6 +48,7 @@ import {
|
|
|
48
48
|
} from "lucide-react";
|
|
49
49
|
import {
|
|
50
50
|
type ChangeEvent,
|
|
51
|
+
type CSSProperties,
|
|
51
52
|
createContext,
|
|
52
53
|
type ReactNode,
|
|
53
54
|
useContext,
|
|
@@ -1490,7 +1491,7 @@ function DefaultGrid({ columns, children, testId }: GridProps): ReactNode {
|
|
|
1490
1491
|
<div
|
|
1491
1492
|
data-testid={testId}
|
|
1492
1493
|
className="grid gap-4 grid-cols-1 sm:[grid-template-columns:var(--grid-cols)]"
|
|
1493
|
-
style={{ "--grid-cols": `repeat(${columns}, minmax(0, 1fr))` } as
|
|
1494
|
+
style={{ "--grid-cols": `repeat(${columns}, minmax(0, 1fr))` } as unknown as CSSProperties}
|
|
1494
1495
|
>
|
|
1495
1496
|
{children}
|
|
1496
1497
|
</div>
|