@flipdish/ui-library 0.13.0 → 0.13.2
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/README.md +6 -5
- package/dist/styles.css +10 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -6,11 +6,12 @@ Atomic-design React component library for Flipdish products, built on **Tailwind
|
|
|
6
6
|
|
|
7
7
|
**Part of the Flipdish Design System:**
|
|
8
8
|
|
|
9
|
-
| Package
|
|
10
|
-
|
|
|
11
|
-
| [`@flipdish/ui-tokens`](https://www.npmjs.com/package/@flipdish/ui-tokens)
|
|
12
|
-
| [`@flipdish/ui-icons`](https://www.npmjs.com/package/@flipdish/ui-icons)
|
|
13
|
-
| **`@flipdish/ui-library`**
|
|
9
|
+
| Package | Purpose |
|
|
10
|
+
| -------------------------------------------------------------------------------- | -------------------------------------------- |
|
|
11
|
+
| [`@flipdish/ui-tokens`](https://www.npmjs.com/package/@flipdish/ui-tokens) | Design tokens — colours, type scale, spacing |
|
|
12
|
+
| [`@flipdish/ui-icons`](https://www.npmjs.com/package/@flipdish/ui-icons) | Icon set |
|
|
13
|
+
| **`@flipdish/ui-library`** | Components (this package) |
|
|
14
|
+
| [`@flipdish/ui-connected`](https://www.npmjs.com/package/@flipdish/ui-connected) | API-connected components |
|
|
14
15
|
|
|
15
16
|
## Installation
|
|
16
17
|
|
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
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flipdish/ui-library",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.2",
|
|
4
4
|
"description": "Flipdish Design System — atomic-design component library (Tailwind v4 + UntitledUI + React Aria).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": [
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
"react-error-boundary": "^4.1.2",
|
|
96
96
|
"tailwindcss-animate": "^1.0.7",
|
|
97
97
|
"tailwindcss-react-aria-components": "^2.1.1",
|
|
98
|
-
"@flipdish/ui-icons": "^0.3.
|
|
98
|
+
"@flipdish/ui-icons": "^0.3.3"
|
|
99
99
|
},
|
|
100
100
|
"peerDependencies": {
|
|
101
101
|
"@expo/metro-config": ">=54.0.0",
|