@sylphx/flow 2.28.7 → 2.28.8
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @sylphx/flow
|
|
2
2
|
|
|
3
|
+
## 2.28.8 (2026-01-05)
|
|
4
|
+
|
|
5
|
+
Switch back to Tailwind CSS, require Turbopack, use Iconify Icon web component
|
|
6
|
+
|
|
7
|
+
### 📚 Documentation
|
|
8
|
+
|
|
9
|
+
- switch to Tailwind CSS, Turbopack, Iconify Icon web component ([1d5dbff](https://github.com/SylphxAI/flow/commit/1d5dbff0f6664175b6de0cd4a8247add4cfe9547))
|
|
10
|
+
|
|
3
11
|
## 2.28.7 (2026-01-04)
|
|
4
12
|
|
|
5
13
|
Align all skills with platform-led SSOT principles:
|
|
@@ -7,10 +7,10 @@ description: UI/UX - design system, accessibility. Use when building interfaces.
|
|
|
7
7
|
|
|
8
8
|
## Tech Stack
|
|
9
9
|
|
|
10
|
-
* **Framework**: Next.js
|
|
10
|
+
* **Framework**: Next.js (with Turbopack)
|
|
11
11
|
* **Components**: Radix UI
|
|
12
|
-
* **Styling**:
|
|
13
|
-
* **Icons**: Iconify
|
|
12
|
+
* **Styling**: Tailwind CSS
|
|
13
|
+
* **Icons**: Iconify Icon web component
|
|
14
14
|
|
|
15
15
|
## Radix UI Everywhere
|
|
16
16
|
|
|
@@ -35,15 +35,15 @@ When similar UI problems arise, solve once with Radix, then reuse.
|
|
|
35
35
|
|
|
36
36
|
* WCAG AA accessibility compliance
|
|
37
37
|
* Radix UI for all interactive components
|
|
38
|
-
*
|
|
39
|
-
* Iconify for all icons
|
|
38
|
+
* Tailwind CSS for styling
|
|
39
|
+
* Iconify Icon web component for all icons
|
|
40
40
|
* Responsive design for all viewports
|
|
41
41
|
|
|
42
42
|
## Context
|
|
43
43
|
|
|
44
44
|
UI/UX determines how users perceive and interact with the product. A great UI isn't just "correct" — it's delightful, intuitive, and makes complex tasks feel simple.
|
|
45
45
|
|
|
46
|
-
Radix provides accessible, unstyled primitives.
|
|
46
|
+
Radix provides accessible, unstyled primitives. Tailwind provides utility-first styling. Iconify Icon web component provides unified icon access. Together they enable consistent, accessible UI without reinventing components.
|
|
47
47
|
|
|
48
48
|
## Driving Questions
|
|
49
49
|
|
|
@@ -116,11 +116,11 @@ The platform is the source of truth. Third-party services sync FROM the platform
|
|
|
116
116
|
## Technologies
|
|
117
117
|
|
|
118
118
|
All must be used correctly, consistently, and idiomatically:
|
|
119
|
-
tRPC, Next.js, Radix UI, next-intl, Drizzle,
|
|
119
|
+
tRPC, Next.js (with Turbopack), Radix UI, next-intl, Drizzle,
|
|
120
120
|
Better Auth, Stripe, Upstash, Neon, Vercel,
|
|
121
121
|
Resend (email), Vercel Blob (storage),
|
|
122
122
|
AI SDK with OpenRouter provider,
|
|
123
|
-
|
|
123
|
+
Tailwind CSS (styling), Iconify Icon web component (icons),
|
|
124
124
|
Bun, Biome, Bun test,
|
|
125
125
|
Responsive Web Design.
|
|
126
126
|
|
package/package.json
CHANGED