@rizom/site-rizom 0.2.0-alpha.180 → 0.2.0-alpha.181

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": "@rizom/site-rizom",
3
- "version": "0.2.0-alpha.180",
3
+ "version": "0.2.0-alpha.181",
4
4
  "description": "Shared Rizom site core — structural base for rizom.ai, rizom.foundation, and rizom.work",
5
5
  "type": "module",
6
6
  "exports": {
@@ -26,7 +26,7 @@
26
26
  "typecheck": "tsc --noEmit"
27
27
  },
28
28
  "dependencies": {
29
- "@rizom/site": "0.2.0-alpha.180",
29
+ "@rizom/site": "0.2.0-alpha.181",
30
30
  "clsx": "^2.1.0",
31
31
  "preact": "^10.27.2",
32
32
  "tailwind-merge": "^3.6.0"
@@ -1,3 +1,4 @@
1
+ /** @jsxImportSource preact */
1
2
  import type { JSX } from "preact";
2
3
  import { RizomFrame, type RizomLayoutProps } from "../ui";
3
4
 
package/src/ui/Badge.tsx CHANGED
@@ -1,3 +1,4 @@
1
+ /** @jsxImportSource preact */
1
2
  import type { JSX, ComponentChildren } from "preact";
2
3
  import { cn } from "./cn";
3
4
 
package/src/ui/Button.tsx CHANGED
@@ -1,3 +1,4 @@
1
+ /** @jsxImportSource preact */
1
2
  import type { JSX, ComponentChildren } from "preact";
2
3
  import { cn } from "./cn";
3
4
 
@@ -1,3 +1,4 @@
1
+ /** @jsxImportSource preact */
1
2
  import type { JSX } from "preact";
2
3
  import { cn } from "./cn";
3
4
 
package/src/ui/Footer.tsx CHANGED
@@ -1,3 +1,4 @@
1
+ /** @jsxImportSource preact */
1
2
  import type { JSX } from "preact";
2
3
  import { cn } from "./cn";
3
4
  import { externalLinkProps } from "./external-link";
package/src/ui/Header.tsx CHANGED
@@ -1,3 +1,4 @@
1
+ /** @jsxImportSource preact */
1
2
  import type { JSX } from "preact";
2
3
  import { externalLinkProps } from "./external-link";
3
4
  import type { RizomBrandSuffix, RizomLink } from "./types";
@@ -1,3 +1,4 @@
1
+ /** @jsxImportSource preact */
1
2
  import type { JSX, ComponentChildren } from "preact";
2
3
  import { cn } from "./cn";
3
4
 
@@ -1,3 +1,4 @@
1
+ /** @jsxImportSource preact */
1
2
  import type { JSX } from "preact";
2
3
  import type { RizomSideNavItem } from "./types";
3
4
 
package/src/ui/frame.tsx CHANGED
@@ -1,3 +1,4 @@
1
+ /** @jsxImportSource preact */
1
2
  import type { JSX, ComponentChildren } from "preact";
2
3
 
3
4
  export type { RizomLayoutProps } from "@rizom/site";
@@ -1,3 +1,4 @@
1
+ /** @jsxImportSource preact */
1
2
  import { Fragment, type JSX } from "preact";
2
3
 
3
4
  const EMPHASIS_PATTERN = /(\*[^*]+\*)/;