@godxjp/ui 13.16.2 → 13.16.3

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.
@@ -23,7 +23,12 @@
23
23
  * `var(--radius-2xl)` directly; without a generated utility Tailwind drops the unused var). */
24
24
  @source inline("rounded-{xs,xl,2xl}");
25
25
  @source inline("text-2xs");
26
- @source "../**/*.{tsx,ts}";
26
+ /* `.js` matters: the published package ships only compiled JS under dist (no
27
+ * .tsx sources), and this file is copied verbatim into dist/styles — without
28
+ * it Tailwind finds no component classes in consumers (unstyled popovers and
29
+ * selects, and Radix scroll-lock freezes the page because pointer-events-auto
30
+ * is never emitted). In-repo the glob scans src; published, it scans dist. */
31
+ @source "../**/*.{tsx,ts,js}";
27
32
  @import "../tokens/base.css";
28
33
  @import "./density.css";
29
34
  @import "./shell-layout.css";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@godxjp/ui",
3
- "version": "13.16.2",
3
+ "version": "13.16.3",
4
4
  "type": "module",
5
5
  "packageManager": "pnpm@10.29.1",
6
6
  "sideEffects": false,