@awc-ui/react 0.0.0-snapshot.20260820120614.cae27aa

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/src/index.ts ADDED
@@ -0,0 +1,8 @@
1
+ // Auto-generated React proxies for AWC UI components
2
+ // This file will be populated by @stencil/react-output-target after build
3
+
4
+ // Re-export everything from the generated components file
5
+ // After building core, this file will be at ./components.ts
6
+ // (.js extension: node16 ESM consumers resolve the emitted d.ts/js verbatim,
7
+ // so the specifier must be extension-qualified.)
8
+ export * from './components.js';
package/src/server.ts ADDED
@@ -0,0 +1,5 @@
1
+ // SSR entry — React wrappers that server-render each component's Declarative
2
+ // Shadow DOM via @awc-ui/core/hydrate, then hydrate on the client. Import these
3
+ // (instead of the client components from '@awc-ui/react') when you want styled
4
+ // server markup on first paint, e.g. in a Next.js App Router server component.
5
+ export * from './components.server.js';