@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.
- package/dist/styles/index.css +6 -1
- package/package.json +1 -1
package/dist/styles/index.css
CHANGED
|
@@ -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
|
-
|
|
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";
|