@flipdish/ui-library 0.13.0 → 0.13.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/dist/styles.css +10 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -30,6 +30,16 @@
|
|
|
30
30
|
*/
|
|
31
31
|
@source ".";
|
|
32
32
|
|
|
33
|
+
/*
|
|
34
|
+
* ...but not the React Native tree. Without these, a class used only by a `.native`
|
|
35
|
+
* component generates a utility in every web app's CSS — the one way native code can
|
|
36
|
+
* cost web consumers bytes, since the native JS itself is unreachable through the
|
|
37
|
+
* `exports` map. Two exclusions because the scan root differs: `native` is the built
|
|
38
|
+
* tree an installed consumer sees, `*.native.tsx` the sources scanned in dev/Storybook.
|
|
39
|
+
*/
|
|
40
|
+
@source not "./native";
|
|
41
|
+
@source not "./**/*.native.tsx";
|
|
42
|
+
|
|
33
43
|
/*
|
|
34
44
|
* Untitled UI runtime plugins (per https://www.untitledui.com/react/integrations/vite).
|
|
35
45
|
*/
|