@tenphi/tasty 0.0.0-snapshot.e5c8361 → 0.0.0-snapshot.e9718c0
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 +366 -60
- package/dist/chunks/cacheKey.js +16 -8
- package/dist/chunks/cacheKey.js.map +1 -1
- package/dist/chunks/definitions.js +1 -2
- package/dist/chunks/definitions.js.map +1 -1
- package/dist/chunks/renderChunk.js +31 -32
- package/dist/chunks/renderChunk.js.map +1 -1
- package/dist/config.d.ts +53 -10
- package/dist/config.js +75 -13
- package/dist/config.js.map +1 -1
- package/dist/core/index.d.ts +11 -8
- package/dist/core/index.js +8 -6
- package/dist/debug.d.ts +26 -141
- package/dist/debug.js +356 -635
- package/dist/debug.js.map +1 -1
- package/dist/hooks/useGlobalStyles.d.ts +3 -0
- package/dist/hooks/useGlobalStyles.js +28 -1
- package/dist/hooks/useGlobalStyles.js.map +1 -1
- package/dist/hooks/useKeyframes.js +18 -3
- package/dist/hooks/useKeyframes.js.map +1 -1
- package/dist/hooks/useProperty.js +36 -13
- package/dist/hooks/useProperty.js.map +1 -1
- package/dist/hooks/useRawCSS.js +13 -1
- package/dist/hooks/useRawCSS.js.map +1 -1
- package/dist/hooks/useStyles.d.ts +5 -0
- package/dist/hooks/useStyles.js +91 -11
- package/dist/hooks/useStyles.js.map +1 -1
- package/dist/index.d.ts +20 -9
- package/dist/index.js +8 -6
- package/dist/injector/index.d.ts +9 -1
- package/dist/injector/index.js +9 -1
- package/dist/injector/index.js.map +1 -1
- package/dist/injector/injector.d.ts +9 -0
- package/dist/injector/injector.js +58 -32
- package/dist/injector/injector.js.map +1 -1
- package/dist/injector/sheet-manager.d.ts +16 -7
- package/dist/injector/sheet-manager.js +24 -9
- package/dist/injector/sheet-manager.js.map +1 -1
- package/dist/injector/types.d.ts +9 -0
- package/dist/parser/classify.js +2 -1
- package/dist/parser/classify.js.map +1 -1
- package/dist/parser/parser.js +1 -1
- package/dist/pipeline/conditions.d.ts +134 -0
- package/dist/pipeline/conditions.js +28 -20
- package/dist/pipeline/conditions.js.map +1 -1
- package/dist/pipeline/index.d.ts +3 -1
- package/dist/pipeline/index.js +84 -56
- package/dist/pipeline/index.js.map +1 -1
- package/dist/pipeline/materialize.js +508 -297
- package/dist/pipeline/materialize.js.map +1 -1
- package/dist/pipeline/parseStateKey.d.ts +15 -0
- package/dist/pipeline/parseStateKey.js +45 -37
- package/dist/pipeline/parseStateKey.js.map +1 -1
- package/dist/pipeline/simplify.js +111 -152
- package/dist/pipeline/simplify.js.map +1 -1
- package/dist/pipeline/warnings.js +18 -0
- package/dist/pipeline/warnings.js.map +1 -0
- package/dist/plugins/okhsl-plugin.js +2 -275
- package/dist/plugins/okhsl-plugin.js.map +1 -1
- package/dist/plugins/types.d.ts +9 -2
- package/dist/properties/index.js +82 -17
- package/dist/properties/index.js.map +1 -1
- package/dist/properties/property-type-resolver.d.ts +24 -0
- package/dist/properties/property-type-resolver.js +91 -0
- package/dist/properties/property-type-resolver.js.map +1 -0
- package/dist/ssr/astro.d.ts +29 -0
- package/dist/ssr/astro.js +65 -0
- package/dist/ssr/astro.js.map +1 -0
- package/dist/ssr/async-storage.d.ts +17 -0
- package/dist/ssr/async-storage.js +35 -0
- package/dist/ssr/async-storage.js.map +1 -0
- package/dist/ssr/collect-auto-properties.js +40 -0
- package/dist/ssr/collect-auto-properties.js.map +1 -0
- package/dist/ssr/collector.d.ts +85 -0
- package/dist/ssr/collector.js +183 -0
- package/dist/ssr/collector.js.map +1 -0
- package/dist/ssr/context.d.ts +8 -0
- package/dist/ssr/context.js +14 -0
- package/dist/ssr/context.js.map +1 -0
- package/dist/ssr/format-global-rules.js +22 -0
- package/dist/ssr/format-global-rules.js.map +1 -0
- package/dist/ssr/format-keyframes.js +70 -0
- package/dist/ssr/format-keyframes.js.map +1 -0
- package/dist/ssr/format-property.js +50 -0
- package/dist/ssr/format-property.js.map +1 -0
- package/dist/ssr/format-rules.js +70 -0
- package/dist/ssr/format-rules.js.map +1 -0
- package/dist/ssr/hydrate.d.ts +22 -0
- package/dist/ssr/hydrate.js +50 -0
- package/dist/ssr/hydrate.js.map +1 -0
- package/dist/ssr/index.d.ts +5 -0
- package/dist/ssr/index.js +12 -0
- package/dist/ssr/index.js.map +1 -0
- package/dist/ssr/next.d.ts +45 -0
- package/dist/ssr/next.js +71 -0
- package/dist/ssr/next.js.map +1 -0
- package/dist/ssr/ssr-collector-ref.js +12 -0
- package/dist/ssr/ssr-collector-ref.js.map +1 -0
- package/dist/states/index.d.ts +7 -1
- package/dist/states/index.js +10 -257
- package/dist/states/index.js.map +1 -1
- package/dist/styles/align.d.ts +1 -1
- package/dist/styles/align.js.map +1 -1
- package/dist/styles/border.d.ts +1 -1
- package/dist/styles/border.js.map +1 -1
- package/dist/styles/color.d.ts +2 -2
- package/dist/styles/color.js +9 -5
- package/dist/styles/color.js.map +1 -1
- package/dist/styles/createStyle.js +25 -22
- package/dist/styles/createStyle.js.map +1 -1
- package/dist/styles/fade.d.ts +1 -1
- package/dist/styles/fade.js.map +1 -1
- package/dist/styles/fill.d.ts +14 -16
- package/dist/styles/fill.js +6 -5
- package/dist/styles/fill.js.map +1 -1
- package/dist/styles/flow.d.ts +3 -3
- package/dist/styles/flow.js.map +1 -1
- package/dist/styles/index.js +1 -1
- package/dist/styles/inset.d.ts +3 -1
- package/dist/styles/inset.js +48 -40
- package/dist/styles/inset.js.map +1 -1
- package/dist/styles/justify.d.ts +1 -1
- package/dist/styles/justify.js.map +1 -1
- package/dist/styles/margin.d.ts +1 -5
- package/dist/styles/margin.js +48 -40
- package/dist/styles/margin.js.map +1 -1
- package/dist/styles/padding.d.ts +1 -5
- package/dist/styles/padding.js +48 -40
- package/dist/styles/padding.js.map +1 -1
- package/dist/styles/predefined.d.ts +0 -2
- package/dist/styles/predefined.js +1 -4
- package/dist/styles/predefined.js.map +1 -1
- package/dist/styles/preset.js +1 -1
- package/dist/styles/preset.js.map +1 -1
- package/dist/styles/radius.d.ts +1 -1
- package/dist/styles/radius.js.map +1 -1
- package/dist/styles/scrollbar.d.ts +9 -5
- package/dist/styles/scrollbar.js +25 -82
- package/dist/styles/scrollbar.js.map +1 -1
- package/dist/styles/shadow.d.ts +2 -2
- package/dist/styles/shadow.js.map +1 -1
- package/dist/styles/transition.d.ts +1 -1
- package/dist/styles/transition.js +27 -7
- package/dist/styles/transition.js.map +1 -1
- package/dist/styles/types.d.ts +42 -17
- package/dist/tasty.d.ts +68 -69
- package/dist/tasty.js +41 -13
- package/dist/tasty.js.map +1 -1
- package/dist/types.d.ts +3 -3
- package/dist/utils/cache-wrapper.js +4 -8
- package/dist/utils/cache-wrapper.js.map +1 -1
- package/dist/utils/color-math.d.ts +46 -0
- package/dist/utils/color-math.js +749 -0
- package/dist/utils/color-math.js.map +1 -0
- package/dist/utils/color-space.d.ts +5 -0
- package/dist/utils/color-space.js +229 -0
- package/dist/utils/color-space.js.map +1 -0
- package/dist/utils/colors.d.ts +1 -1
- package/dist/utils/colors.js +3 -1
- package/dist/utils/colors.js.map +1 -1
- package/dist/utils/css-types.d.ts +1 -1
- package/dist/utils/dotize.d.ts +1 -1
- package/dist/utils/has-keys.js +13 -0
- package/dist/utils/has-keys.js.map +1 -0
- package/dist/utils/is-valid-element-type.js +15 -0
- package/dist/utils/is-valid-element-type.js.map +1 -0
- package/dist/utils/mod-attrs.js +2 -2
- package/dist/utils/mod-attrs.js.map +1 -1
- package/dist/utils/process-tokens.d.ts +3 -13
- package/dist/utils/process-tokens.js +18 -98
- package/dist/utils/process-tokens.js.map +1 -1
- package/dist/utils/selector-transform.js +32 -0
- package/dist/utils/selector-transform.js.map +1 -0
- package/dist/utils/string.js.map +1 -1
- package/dist/utils/styles.d.ts +4 -86
- package/dist/utils/styles.js +34 -396
- package/dist/utils/styles.js.map +1 -1
- package/dist/utils/typography.d.ts +24 -13
- package/dist/utils/typography.js +6 -16
- package/dist/utils/typography.js.map +1 -1
- package/dist/zero/babel.d.ts +53 -6
- package/dist/zero/babel.js +76 -12
- package/dist/zero/babel.js.map +1 -1
- package/dist/zero/extractor.js +66 -1
- package/dist/zero/extractor.js.map +1 -1
- package/dist/zero/next.d.ts +44 -30
- package/dist/zero/next.js +102 -38
- package/dist/zero/next.js.map +1 -1
- package/docs/PIPELINE.md +519 -0
- package/docs/README.md +31 -0
- package/docs/adoption.md +296 -0
- package/docs/comparison.md +420 -0
- package/docs/configuration.md +265 -0
- package/docs/debug.md +318 -0
- package/docs/design-system.md +401 -0
- package/docs/dsl.md +542 -0
- package/docs/getting-started.md +217 -0
- package/docs/injector.md +528 -0
- package/docs/methodology.md +503 -0
- package/docs/runtime.md +341 -0
- package/docs/ssr.md +382 -0
- package/docs/styles.md +574 -0
- package/docs/tasty-static.md +431 -0
- package/package.json +112 -35
- package/tasty.config.ts +14 -0
- package/dist/styles/styledScrollbar.d.ts +0 -47
- package/dist/styles/styledScrollbar.js +0 -38
- package/dist/styles/styledScrollbar.js.map +0 -1
- package/dist/tokens/typography.d.ts +0 -19
- package/dist/tokens/typography.js +0 -237
- package/dist/tokens/typography.js.map +0 -1
- package/dist/utils/hsl-to-rgb.js +0 -38
- package/dist/utils/hsl-to-rgb.js.map +0 -1
- package/dist/utils/okhsl-to-rgb.js +0 -296
- package/dist/utils/okhsl-to-rgb.js.map +0 -1
package/README.md
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
<h1 align="center">Tasty</h1>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
|
-
<strong>
|
|
9
|
-
|
|
8
|
+
<strong>Deterministic styling for stateful component systems.</strong><br>
|
|
9
|
+
A design-system styling engine that compiles component states into mutually exclusive selectors.
|
|
10
10
|
</p>
|
|
11
11
|
|
|
12
12
|
<p align="center">
|
|
@@ -17,21 +17,30 @@
|
|
|
17
17
|
|
|
18
18
|
---
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
Tasty is a styling engine for design systems that generates deterministic CSS for stateful components. It compiles state maps into **mutually exclusive selectors**, so each property resolves from declared state logic instead of selector competition.
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
It fits best when a team is defining a house styling language for reusable components: tokens, style props, state aliases, recipes, and sub-element rules that need to stay predictable as the system grows.
|
|
23
23
|
|
|
24
24
|
## Why Tasty
|
|
25
25
|
|
|
26
|
-
- **Deterministic
|
|
27
|
-
- **
|
|
28
|
-
- **
|
|
29
|
-
- **
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
- **
|
|
34
|
-
- **
|
|
26
|
+
- **Deterministic composition, not cascade fights** — Tasty generates mutually exclusive selectors, so stateful styles resolve from the state map you declared rather than source order or specificity accidents. See [How It Actually Works](#how-it-actually-works).
|
|
27
|
+
- **Built for design-system teams** — Best fit for teams building reusable components with intersecting states, variants, tokens, sub-elements, responsive rules, and extension semantics that must stay predictable over time.
|
|
28
|
+
- **A governed styling model, not just syntax sugar** — Tasty is not just a syntax layer. It gives design-system teams a way to define the styling language product teams consume: tokens, units, recipes, style props, state aliases, and sub-element rules.
|
|
29
|
+
- **DSL that still feels like CSS** — Property names you already know (`padding`, `color`, `display`) with syntax sugar that removes boilerplate. Learn the DSL in minutes, not days. Start with the [Style DSL](docs/dsl.md), then use [Style Properties](docs/styles.md) as the handler reference.
|
|
30
|
+
|
|
31
|
+
### Supporting capabilities
|
|
32
|
+
|
|
33
|
+
- **Typed style props** — `styleProps` lets you expose selected styles as typed React props. Use `<Button placeSelf="end">` or `<Space flow="row" gap="2x">` without extra wrappers, utility classes, or `styles` overrides. The same props also accept state maps, so responsive values work with the same API. See [CSS properties as props](#css-properties-as-props).
|
|
34
|
+
- **Runtime, SSR, and zero-runtime options** — Use `tasty()` for runtime React components, add SSR integrations when your framework renders that runtime on the server, or use `tastyStatic()` when you specifically want build-time extraction instead of runtime styling.
|
|
35
|
+
- **Broad modern CSS coverage** — Media queries, container queries, `@supports`, `:has()`, `@starting-style`, `@property`, `@keyframes`, and more. Features that do not fit the component model (such as `@layer` and `!important`) are intentionally left out.
|
|
36
|
+
- **Performance and caching** — Runtime mode injects CSS on demand, reuses chunks aggressively, and relies on multi-level caching so large component systems stay practical.
|
|
37
|
+
- **TypeScript-first and AI-friendly** — Style definitions are declarative, structurally consistent, and fully typed, which helps both humans and tooling understand advanced stateful styles without hidden cascade logic.
|
|
38
|
+
|
|
39
|
+
## Why It Exists
|
|
40
|
+
|
|
41
|
+
Modern component styling becomes fragile when multiple selectors can still win for the same property. Hover, disabled, theme, breakpoint, parent state, and root state rules start competing through specificity and source order.
|
|
42
|
+
|
|
43
|
+
Tasty replaces that competition with explicit state-map resolution. Each property compiles into mutually exclusive branches, so reusable component styling stays deterministic as systems grow. For the full mechanism, jump to [How It Actually Works](#how-it-actually-works).
|
|
35
44
|
|
|
36
45
|
## Installation
|
|
37
46
|
|
|
@@ -39,6 +48,28 @@ On top of that foundation, Tasty gives you a concise, CSS-like DSL with design t
|
|
|
39
48
|
pnpm add @tenphi/tasty
|
|
40
49
|
```
|
|
41
50
|
|
|
51
|
+
Requirements:
|
|
52
|
+
|
|
53
|
+
- Node.js 20+
|
|
54
|
+
- React 18+ (peer dependency for the React entry points)
|
|
55
|
+
- `pnpm`, `npm`, or `yarn`
|
|
56
|
+
|
|
57
|
+
Other package managers:
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
npm add @tenphi/tasty
|
|
61
|
+
yarn add @tenphi/tasty
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
## Start Here
|
|
65
|
+
|
|
66
|
+
- **[Comparison](docs/comparison.md)** — read this first if you are evaluating whether Tasty fits your team's styling model
|
|
67
|
+
- **[Adoption Guide](docs/adoption.md)** — understand who Tasty is for, where it fits, and how to introduce it incrementally
|
|
68
|
+
- **[Getting Started](docs/getting-started.md)** — the canonical onboarding path: install, first component, optional shared `configure()`, ESLint, editor tooling, and rendering mode selection
|
|
69
|
+
- **[Style rendering pipeline](docs/PIPELINE.md)** — see the selector model behind deterministic style resolution
|
|
70
|
+
- **[Docs Hub](docs/README.md)** — choose docs by role and task: runtime, zero-runtime, runtime SSR integration, design-system authoring, internals, and debugging
|
|
71
|
+
- **[Methodology](docs/methodology.md)** — the recommended component model and public API conventions for design-system code
|
|
72
|
+
|
|
42
73
|
## Quick Start
|
|
43
74
|
|
|
44
75
|
### Create a styled component
|
|
@@ -51,11 +82,12 @@ const Card = tasty({
|
|
|
51
82
|
styles: {
|
|
52
83
|
display: 'flex',
|
|
53
84
|
flow: 'column',
|
|
54
|
-
padding: '
|
|
55
|
-
gap: '
|
|
56
|
-
fill: '
|
|
57
|
-
|
|
58
|
-
|
|
85
|
+
padding: '24px',
|
|
86
|
+
gap: '12px',
|
|
87
|
+
fill: 'white',
|
|
88
|
+
color: '#222',
|
|
89
|
+
border: '1px solid #ddd',
|
|
90
|
+
radius: '12px',
|
|
59
91
|
},
|
|
60
92
|
});
|
|
61
93
|
|
|
@@ -63,7 +95,9 @@ const Card = tasty({
|
|
|
63
95
|
<Card>Hello World</Card>
|
|
64
96
|
```
|
|
65
97
|
|
|
66
|
-
Every value maps to CSS you'd recognize
|
|
98
|
+
Every value maps to CSS you'd recognize. This example is intentionally plain and config-free. When you want a more design-system-shaped authoring model, Tasty also supports built-in units, tokens, recipes, state aliases, and color values such as `okhsl(...)` without extra runtime libraries.
|
|
99
|
+
|
|
100
|
+
Use `configure()` when you want to define shared tokens, state aliases, recipes, or other conventions for your app or design system. For a fuller onboarding path, follow [Getting Started](docs/getting-started.md).
|
|
67
101
|
|
|
68
102
|
### Add state-driven styles
|
|
69
103
|
|
|
@@ -110,7 +144,7 @@ const DangerButton = tasty(Button, {
|
|
|
110
144
|
|
|
111
145
|
Child styles merge with parent styles intelligently — state maps can extend or replace parent states per-property.
|
|
112
146
|
|
|
113
|
-
###
|
|
147
|
+
### Optional: configure shared conventions
|
|
114
148
|
|
|
115
149
|
```tsx
|
|
116
150
|
import { configure } from '@tenphi/tasty';
|
|
@@ -119,7 +153,7 @@ configure({
|
|
|
119
153
|
states: {
|
|
120
154
|
'@mobile': '@media(w < 768px)',
|
|
121
155
|
'@tablet': '@media(w < 1024px)',
|
|
122
|
-
'@dark': '@root(schema=dark) | @media(prefers-color-scheme: dark)',
|
|
156
|
+
'@dark': '@root(schema=dark) | (!@root(schema) & @media(prefers-color-scheme: dark))',
|
|
123
157
|
},
|
|
124
158
|
recipes: {
|
|
125
159
|
card: { padding: '4x', fill: '#surface', radius: '1r', border: true },
|
|
@@ -127,15 +161,98 @@ configure({
|
|
|
127
161
|
});
|
|
128
162
|
```
|
|
129
163
|
|
|
130
|
-
Predefined states turn complex selector logic into single tokens
|
|
164
|
+
Use `configure()` once when your app or design system needs shared aliases, tokens, recipes, or parser extensions. Predefined states turn complex selector logic into single tokens, so teams can write `@mobile` instead of repeating media query expressions in every component.
|
|
165
|
+
|
|
166
|
+
### CSS properties as props
|
|
167
|
+
|
|
168
|
+
Beyond state resolution, Tasty can also expose selected style controls as typed component props. That lets design systems keep layout and composition inside governed component APIs instead of pushing teams toward wrapper elements or ad hoc styling escapes.
|
|
169
|
+
|
|
170
|
+
With `styleProps`, a component can expose the styles you choose as normal typed props. You can adjust layout, spacing, alignment, or positioning where the component is used while staying inside a typed, design-system-aware API.
|
|
171
|
+
|
|
172
|
+
```tsx
|
|
173
|
+
import { tasty, FLOW_STYLES, POSITION_STYLES } from '@tenphi/tasty';
|
|
174
|
+
|
|
175
|
+
const Space = tasty({
|
|
176
|
+
styles: {
|
|
177
|
+
display: 'flex',
|
|
178
|
+
flow: 'column',
|
|
179
|
+
gap: '1x',
|
|
180
|
+
},
|
|
181
|
+
styleProps: FLOW_STYLES,
|
|
182
|
+
});
|
|
183
|
+
|
|
184
|
+
const Button = tasty({
|
|
185
|
+
as: 'button',
|
|
186
|
+
styles: {
|
|
187
|
+
padding: '1.5x 3x',
|
|
188
|
+
fill: '#primary',
|
|
189
|
+
color: '#primary-text',
|
|
190
|
+
radius: true,
|
|
191
|
+
},
|
|
192
|
+
styleProps: POSITION_STYLES,
|
|
193
|
+
});
|
|
194
|
+
```
|
|
195
|
+
|
|
196
|
+
Now you can compose layout and tweak component positioning directly in JSX:
|
|
197
|
+
|
|
198
|
+
```tsx
|
|
199
|
+
<Space flow="row" gap="2x" placeItems="center">
|
|
200
|
+
<Title>Dashboard</Title>
|
|
201
|
+
<Button placeSelf="end">Add Item</Button>
|
|
202
|
+
</Space>
|
|
203
|
+
```
|
|
204
|
+
|
|
205
|
+
The same props also support state maps, so responsive values use the exact same API:
|
|
206
|
+
|
|
207
|
+
```tsx
|
|
208
|
+
<Space
|
|
209
|
+
flow={{ '': 'column', '@tablet': 'row' }}
|
|
210
|
+
gap={{ '': '2x', '@tablet': '4x' }}
|
|
211
|
+
>
|
|
212
|
+
<Sidebar />
|
|
213
|
+
<Content />
|
|
214
|
+
</Space>
|
|
215
|
+
```
|
|
216
|
+
|
|
217
|
+
Layout components can expose flow props. Buttons can expose positioning props. Each component can offer only the style props that make sense for its role, while still keeping tokens, custom units, and state maps fully typed. This works in runtime `tasty()` components, not in `tastyStatic()`.
|
|
218
|
+
|
|
219
|
+
## Choose a Styling Approach
|
|
220
|
+
|
|
221
|
+
Once you understand the component model, pick the rendering mode that matches your app.
|
|
222
|
+
|
|
223
|
+
| Approach | Entry point | Best for | Trade-off |
|
|
224
|
+
|----------|-------------|----------|-----------|
|
|
225
|
+
| **Runtime** | `@tenphi/tasty` | Interactive apps with reusable stateful components and design systems | Full feature set; CSS is generated on demand at runtime |
|
|
226
|
+
| **Zero-runtime** | `@tenphi/tasty/static` | Static sites, SSG, landing pages | Requires the Babel plugin; no component-level `styleProps` or runtime-only APIs |
|
|
227
|
+
|
|
228
|
+
If your framework can execute runtime React code on the server, you can also add **SSR on top of runtime** with `@tenphi/tasty/ssr/*`. This uses the same `tasty()` pipeline, but collects CSS during server rendering and hydrates the cache on the client. That is the model for Next.js, generic React SSR, and Astro islands. See [Getting Started](docs/getting-started.md#choosing-a-rendering-mode), [Zero Runtime](docs/tasty-static.md), and [Server-Side Rendering](docs/ssr.md).
|
|
131
229
|
|
|
132
230
|
## How It Actually Works
|
|
133
231
|
|
|
134
232
|
This is the core idea that makes everything else possible.
|
|
135
233
|
|
|
136
|
-
|
|
234
|
+
For the end-to-end architecture — parsing state keys, building exclusive conditions, merging by output, and materializing selectors and at-rules — see **[Style rendering pipeline](docs/PIPELINE.md)**.
|
|
235
|
+
|
|
236
|
+
### The structural problem with normal CSS
|
|
237
|
+
|
|
238
|
+
First, the **cascade** resolves conflicts by specificity and source order: when multiple selectors match, the one with the highest specificity wins, or — if specificity is equal — the last one in source order wins. That makes styles inherently fragile. Reordering imports, adding a media query, or composing components from different libraries can silently break styling.
|
|
239
|
+
|
|
240
|
+
A small example makes this tangible. Two rules for a button's background:
|
|
241
|
+
|
|
242
|
+
```css
|
|
243
|
+
.btn:hover { background: dodgerblue; }
|
|
244
|
+
.btn[disabled] { background: gray; }
|
|
245
|
+
```
|
|
246
|
+
|
|
247
|
+
Both selectors have specificity `(0, 1, 1)`. When the button is hovered **and** disabled, both match — and the last rule in source order wins. Swap the two lines and a hovered disabled button silently turns blue instead of gray. This class of bug is invisible in code review because the logic is correct; only the ordering is wrong.
|
|
248
|
+
|
|
249
|
+
### Why real state logic is hard to author by hand
|
|
250
|
+
|
|
251
|
+
Authoring selectors that capture real-world state logic is fundamentally hard. A single state like "dark mode" may depend on a root attribute, an OS preference, or both — each branch needing its own selector, proper negation of competing branches, and correct `@media` nesting. The example below shows the CSS you'd write by hand for just *one* property with *one* state. Scale that across dozens of properties, then add breakpoints and container queries, and the selector logic quickly becomes unmanageable.
|
|
252
|
+
|
|
253
|
+
### What Tasty generates instead
|
|
137
254
|
|
|
138
|
-
Tasty
|
|
255
|
+
Tasty solves both problems at once: **every state mapping compiles into mutually exclusive selectors.**
|
|
139
256
|
|
|
140
257
|
```tsx
|
|
141
258
|
const Text = tasty({
|
|
@@ -152,33 +269,70 @@ const Text = tasty({
|
|
|
152
269
|
});
|
|
153
270
|
```
|
|
154
271
|
|
|
155
|
-
If `@dark` expands to `@root(schema=dark) | @media(prefers-color-scheme: dark)`,
|
|
272
|
+
If `@dark` expands to `@root(schema=dark) | (!@root(schema) & @media(prefers-color-scheme: dark))`, try writing the CSS by hand. A first attempt might look like this:
|
|
156
273
|
|
|
157
274
|
```css
|
|
158
|
-
/*
|
|
275
|
+
/* First attempt — the @media branch is too broad */
|
|
276
|
+
.t0 { color: var(--text-color); }
|
|
277
|
+
:root[data-schema="dark"] .t0 { color: var(--text-on-dark-color); }
|
|
278
|
+
@media (prefers-color-scheme: dark) {
|
|
279
|
+
.t0 { color: var(--text-on-dark-color); }
|
|
280
|
+
}
|
|
281
|
+
```
|
|
282
|
+
|
|
283
|
+
The `@media` branch fires even when `data-schema="light"` is explicitly set. Fix that:
|
|
284
|
+
|
|
285
|
+
```css
|
|
286
|
+
/* Second attempt — @media is scoped, but the default is still too broad */
|
|
287
|
+
.t0 { color: var(--text-color); }
|
|
288
|
+
:root[data-schema="dark"] .t0 { color: var(--text-on-dark-color); }
|
|
289
|
+
@media (prefers-color-scheme: dark) {
|
|
290
|
+
:root:not([data-schema]) .t0 { color: var(--text-on-dark-color); }
|
|
291
|
+
}
|
|
292
|
+
```
|
|
293
|
+
|
|
294
|
+
Better — but the bare `.t0` default still matches unconditionally. It matches in dark mode, it matches when `data-schema="dark"` is set, and it can beat the attribute selector by source order if another rule re-declares it later. There is no selector that says "apply this default only when none of the dark branches win."
|
|
295
|
+
|
|
296
|
+
This is just *one* property with *one* state, and getting it right already takes multiple iterations. The correct selectors require negating every other branch — which is exactly what Tasty generates automatically:
|
|
297
|
+
|
|
298
|
+
```css
|
|
299
|
+
/* Branch 1: Explicit dark schema */
|
|
159
300
|
:root[data-schema="dark"] .t0.t0 {
|
|
160
301
|
color: var(--text-on-dark-color);
|
|
161
302
|
}
|
|
162
303
|
|
|
163
|
-
/*
|
|
304
|
+
/* Branch 2: No schema attribute + OS prefers dark */
|
|
164
305
|
@media (prefers-color-scheme: dark) {
|
|
165
|
-
:root:not([data-schema
|
|
306
|
+
:root:not([data-schema]) .t0.t0 {
|
|
166
307
|
color: var(--text-on-dark-color);
|
|
167
308
|
}
|
|
168
309
|
}
|
|
169
310
|
|
|
170
|
-
/*
|
|
311
|
+
/* Default: no schema + OS does not prefer dark */
|
|
171
312
|
@media (not (prefers-color-scheme: dark)) {
|
|
172
313
|
:root:not([data-schema="dark"]) .t0.t0 {
|
|
173
314
|
color: var(--text-color);
|
|
174
315
|
}
|
|
175
316
|
}
|
|
317
|
+
|
|
318
|
+
/* Default: schema is set but not dark (any OS preference) */
|
|
319
|
+
:root:not([data-schema="dark"])[data-schema] .t0.t0 {
|
|
320
|
+
color: var(--text-color);
|
|
321
|
+
}
|
|
176
322
|
```
|
|
177
323
|
|
|
178
|
-
|
|
324
|
+
### What guarantee that gives you
|
|
325
|
+
|
|
326
|
+
Every rule is guarded by the negation of higher-priority rules. No two rules can match at the same time. No specificity arithmetic. No source-order dependence. Components compose and extend without collisions.
|
|
327
|
+
|
|
328
|
+
By absorbing selector complexity, Tasty makes advanced CSS patterns practical again — nested container queries, multi-condition `@supports` gates, and combined root-state/media branches. You stay in pure CSS instead of relying on JavaScript workarounds, so the browser can optimize layout, painting, and transitions natively. Tasty keeps the solution in CSS while removing much of the selector bookkeeping that is hard to maintain by hand.
|
|
329
|
+
|
|
330
|
+
[Try it in the Cube UI Kit Storybook playground →](https://cube-ui-kit.vercel.app/?path=/story/getting-started-tasty-playground--playground)
|
|
179
331
|
|
|
180
332
|
## Capabilities
|
|
181
333
|
|
|
334
|
+
This section is a quick product tour. For the canonical guides and references, start from the [Docs Hub](docs/README.md).
|
|
335
|
+
|
|
182
336
|
### Design Tokens and Custom Units
|
|
183
337
|
|
|
184
338
|
Tokens are first-class. Colors use `#name` syntax. Spacing, radius, and border width use multiplier units tied to CSS custom properties:
|
|
@@ -214,7 +368,7 @@ Every style property accepts a state mapping object. Keys can be combined with b
|
|
|
214
368
|
| Class selector (supported) | `.is-active` | `.is-active` |
|
|
215
369
|
| Media query | `@media(w < 768px)` | `@media (width < 768px)` |
|
|
216
370
|
| Container query | `@(panel, w >= 300px)` | `@container panel (width >= 300px)` |
|
|
217
|
-
| Root state | `@root(
|
|
371
|
+
| Root state | `@root(schema=dark)` | `:root[data-schema="dark"]` |
|
|
218
372
|
| Parent state | `@parent(theme=danger)` | `:is([data-theme="danger"] *)` |
|
|
219
373
|
| Feature query | `@supports(display: grid)` | `@supports (display: grid)` |
|
|
220
374
|
| Entry animation | `@starting` | `@starting-style` |
|
|
@@ -298,22 +452,15 @@ const ProfileCard = tasty({
|
|
|
298
452
|
|
|
299
453
|
Use `/` to post-apply recipes after local styles when you need recipe states/styles to win the final merge order. Use `none` to skip base recipes: `recipe: 'none / disabled'`.
|
|
300
454
|
|
|
301
|
-
###
|
|
455
|
+
### Auto-Inferred `@property`
|
|
302
456
|
|
|
303
|
-
|
|
457
|
+
CSS custom properties do not animate smoothly by default because the browser does not know how to interpolate their values. The [`@property`](https://developer.mozilla.org/en-US/docs/Web/CSS/@property) at-rule fixes that by declaring a property's syntax, such as `<number>` or `<color>`.
|
|
304
458
|
|
|
305
|
-
|
|
459
|
+
In Tasty, you usually do not need to declare `@property` manually. When a custom property is assigned a concrete value, Tasty infers the syntax and registers the matching `@property` for you:
|
|
306
460
|
|
|
307
461
|
```tsx
|
|
308
462
|
const Pulse = tasty({
|
|
309
463
|
styles: {
|
|
310
|
-
'@properties': {
|
|
311
|
-
'$pulse-scale': {
|
|
312
|
-
syntax: '<number>',
|
|
313
|
-
inherits: false,
|
|
314
|
-
initialValue: 1,
|
|
315
|
-
},
|
|
316
|
-
},
|
|
317
464
|
animation: 'pulse 2s infinite',
|
|
318
465
|
transform: 'scale($pulse-scale)',
|
|
319
466
|
'@keyframes': {
|
|
@@ -326,6 +473,20 @@ const Pulse = tasty({
|
|
|
326
473
|
});
|
|
327
474
|
```
|
|
328
475
|
|
|
476
|
+
Here, `$pulse-scale: 1` is inferred as `<number>`, so Tasty injects `@property --pulse-scale` automatically before using it in the animation. Numeric types (`<number>`, `<length>`, `<percentage>`, `<angle>`, `<time>`) are inferred from values; `<color>` is inferred from the `#name` token convention.
|
|
477
|
+
|
|
478
|
+
If you prefer full manual control, disable auto-inference globally with `configure({ autoPropertyTypes: false })`.
|
|
479
|
+
|
|
480
|
+
### Explicit `@properties`
|
|
481
|
+
|
|
482
|
+
Declare `@properties` yourself only when you need to override the defaults, for example to set `inherits: false` or provide a custom `initialValue`:
|
|
483
|
+
|
|
484
|
+
```tsx
|
|
485
|
+
'@properties': {
|
|
486
|
+
'$pulse-scale': { syntax: '<number>', inherits: false, initialValue: 1 },
|
|
487
|
+
},
|
|
488
|
+
```
|
|
489
|
+
|
|
329
490
|
### React Hooks
|
|
330
491
|
|
|
331
492
|
For cases where you don't need a full component:
|
|
@@ -335,8 +496,8 @@ import { useStyles, useGlobalStyles, useRawCSS } from '@tenphi/tasty';
|
|
|
335
496
|
|
|
336
497
|
function App() {
|
|
337
498
|
const { className } = useStyles({ padding: '2x', fill: '#surface' });
|
|
338
|
-
useGlobalStyles('
|
|
339
|
-
useRawCSS('
|
|
499
|
+
useGlobalStyles('body', { margin: '0' });
|
|
500
|
+
useRawCSS('@font-face { font-family: "Custom"; src: url(...); }');
|
|
340
501
|
|
|
341
502
|
return <main className={className}>...</main>;
|
|
342
503
|
}
|
|
@@ -368,7 +529,7 @@ module.exports = {
|
|
|
368
529
|
['@tenphi/tasty/babel-plugin', {
|
|
369
530
|
output: 'public/tasty.css',
|
|
370
531
|
config: {
|
|
371
|
-
states: { '@dark': '@root(
|
|
532
|
+
states: { '@dark': '@root(schema=dark)' },
|
|
372
533
|
},
|
|
373
534
|
}],
|
|
374
535
|
],
|
|
@@ -387,13 +548,117 @@ module.exports = {
|
|
|
387
548
|
| **Sub-elements** | Built-in (`<C.Title>`) | Manual (`data-element`) |
|
|
388
549
|
| **Variants** | Built-in (`variants` option) | Separate static styles |
|
|
389
550
|
| **Framework** | React | Any (requires Babel) |
|
|
390
|
-
| **Best for** | Interactive apps, design systems | Static sites, SSG, landing pages |
|
|
551
|
+
| **Best for** | Interactive apps with reusable stateful components, design systems | Static sites, SSG, landing pages |
|
|
391
552
|
|
|
392
553
|
Both share the same DSL, tokens, units, state mappings, and recipes.
|
|
393
554
|
|
|
394
|
-
###
|
|
555
|
+
### Server-Side Rendering
|
|
556
|
+
|
|
557
|
+
SSR with zero-cost client hydration. Existing `tasty()` components work unchanged — SSR is opt-in and requires no per-component modifications. Supports Next.js (App Router with streaming), Astro (middleware + islands), and any React-based framework via the core API. Requires React 18+.
|
|
558
|
+
|
|
559
|
+
**Next.js setup:**
|
|
560
|
+
|
|
561
|
+
```tsx
|
|
562
|
+
// app/tasty-registry.tsx
|
|
563
|
+
'use client';
|
|
564
|
+
|
|
565
|
+
import { TastyRegistry } from '@tenphi/tasty/ssr/next';
|
|
566
|
+
|
|
567
|
+
export default function TastyStyleRegistry({
|
|
568
|
+
children,
|
|
569
|
+
}: {
|
|
570
|
+
children: React.ReactNode;
|
|
571
|
+
}) {
|
|
572
|
+
return <TastyRegistry>{children}</TastyRegistry>;
|
|
573
|
+
}
|
|
574
|
+
```
|
|
575
|
+
|
|
576
|
+
```tsx
|
|
577
|
+
// app/layout.tsx
|
|
578
|
+
import TastyStyleRegistry from './tasty-registry';
|
|
579
|
+
|
|
580
|
+
export default function RootLayout({
|
|
581
|
+
children,
|
|
582
|
+
}: {
|
|
583
|
+
children: React.ReactNode;
|
|
584
|
+
}) {
|
|
585
|
+
return (
|
|
586
|
+
<html>
|
|
587
|
+
<body>
|
|
588
|
+
<TastyStyleRegistry>{children}</TastyStyleRegistry>
|
|
589
|
+
</body>
|
|
590
|
+
</html>
|
|
591
|
+
);
|
|
592
|
+
}
|
|
593
|
+
```
|
|
594
|
+
|
|
595
|
+
See the [full SSR guide](docs/ssr.md) for Astro integration, streaming SSR, generic framework usage, troubleshooting, and the current requirements.
|
|
596
|
+
|
|
597
|
+
## Entry Points
|
|
598
|
+
|
|
599
|
+
| Import | Description | Platform |
|
|
600
|
+
|--------|-------------|----------|
|
|
601
|
+
| `@tenphi/tasty` | Runtime style engine (`tasty`, hooks, `configure`) | Browser |
|
|
602
|
+
| `@tenphi/tasty/static` | Zero-runtime static styles (`tastyStatic`) | Browser |
|
|
603
|
+
| `@tenphi/tasty/core` | Lower-level internals (config, parser, pipeline, injector, style handlers) for tooling and advanced use | Browser / Node |
|
|
604
|
+
| `@tenphi/tasty/babel-plugin` | Babel plugin for zero-runtime CSS extraction | Node |
|
|
605
|
+
| `@tenphi/tasty/zero` | Programmatic extraction API | Node |
|
|
606
|
+
| `@tenphi/tasty/next` | Next.js integration wrapper | Node |
|
|
607
|
+
| `@tenphi/tasty/ssr` | Core SSR API (collector, context, hydration) | Node |
|
|
608
|
+
| `@tenphi/tasty/ssr/next` | Next.js App Router SSR integration | Node |
|
|
609
|
+
| `@tenphi/tasty/ssr/astro` | Astro middleware + auto-hydration | Node / Browser |
|
|
610
|
+
|
|
611
|
+
## Browser Requirements
|
|
612
|
+
|
|
613
|
+
Tasty's exclusive selector system relies on modern CSS pseudo-class syntax:
|
|
614
|
+
|
|
615
|
+
- **`:is()`** — available across all major browsers since January 2021 ([MDN Baseline](https://developer.mozilla.org/en-US/docs/Web/CSS/:is)).
|
|
616
|
+
- **Level-4 `:not()` with selector lists** — Chrome/Edge 88+, Firefox 84+, Safari 9+, Opera 75+.
|
|
617
|
+
- **Not supported:** IE 11.
|
|
618
|
+
|
|
619
|
+
## Performance
|
|
620
|
+
|
|
621
|
+
### Bundle Size
|
|
622
|
+
|
|
623
|
+
All sizes measured with [size-limit](https://github.com/ai/size-limit) — minified and brotli-compressed, including all dependencies.
|
|
624
|
+
|
|
625
|
+
| Entry point | Size |
|
|
626
|
+
|-------------|------|
|
|
627
|
+
| `@tenphi/tasty` (runtime + SSR) | ~44 kB |
|
|
628
|
+
| `@tenphi/tasty/core` (runtime, no SSR) | ~41 kB |
|
|
629
|
+
| `@tenphi/tasty/static` (zero-runtime) | ~1.5 kB |
|
|
395
630
|
|
|
396
|
-
|
|
631
|
+
Run `pnpm size` for exact up-to-date numbers.
|
|
632
|
+
|
|
633
|
+
### Runtime Benchmarks
|
|
634
|
+
|
|
635
|
+
If you choose the runtime approach, performance is usually a non-issue in practice. The numbers below show single-call throughput for the core pipeline stages, measured with `vitest bench` on an Apple M1 Max (Node 22).
|
|
636
|
+
|
|
637
|
+
| Operation | ops/sec | Latency (mean) |
|
|
638
|
+
|-----------|--------:|---------------:|
|
|
639
|
+
| `renderStyles` — 5 flat properties (cold) | ~72,000 | ~14 us |
|
|
640
|
+
| `renderStyles` — state map with media/hover/modifier (cold) | ~22,000 | ~46 us |
|
|
641
|
+
| `renderStyles` — same styles (cached) | ~7,200,000 | ~0.14 us |
|
|
642
|
+
| `parseStateKey` — simple key like `:hover` (cold) | ~1,200,000 | ~0.9 us |
|
|
643
|
+
| `parseStateKey` — complex OR/AND/NOT key (cold) | ~190,000 | ~5 us |
|
|
644
|
+
| `parseStateKey` — any key (cached) | ~3,300,000–8,900,000 | ~0.1–0.3 us |
|
|
645
|
+
| `parseStyle` — value tokens like `2x 4x` (cold) | ~345,000 | ~3 us |
|
|
646
|
+
| `parseStyle` — color tokens (cold) | ~525,000 | ~1.9 us |
|
|
647
|
+
| `parseStyle` — any value (cached) | ~15,500,000 | ~0.06 us |
|
|
648
|
+
|
|
649
|
+
"Cold" benchmarks use unique inputs to bypass all caches. Cached benchmarks reuse a single input and measure the LRU hot path.
|
|
650
|
+
|
|
651
|
+
Run `pnpm bench` to reproduce.
|
|
652
|
+
|
|
653
|
+
#### What This Means in Practice
|
|
654
|
+
|
|
655
|
+
- **Cached path dominates production.** After a component's first render, subsequent renders with stable styles skip the pipeline entirely (React `useMemo` + LRU cache hits at every level). All cached operations are sub-microsecond — effectively free.
|
|
656
|
+
- **Cold path is fast enough.** The heaviest cold operation — a complex state map with media queries, hover, and modifiers — takes ~46 us. Even a page with 100 unique styled components adds only ~5 ms of total style computation on first render, negligible next to React reconciliation and DOM work.
|
|
657
|
+
- **Cache multipliers are 30x–100x.** This confirms the multi-level LRU architecture (parser, state-key, simplify, condition, pipeline) is delivering real value.
|
|
658
|
+
- **Comparable to lighter systems.** Emotion's `css()` is typically 5–20 us for simple styles; Tasty's cold `renderStyles` at ~14 us for 5 properties is in the same range despite doing significantly more work (state maps, design tokens, sub-elements, chunking).
|
|
659
|
+
- **On slower devices.** The benchmarks above are from an M1 Max (Geekbench 6 SC ~2,400). A mid-range consumer laptop (~1,800 SC) is roughly 1.3x slower; a mid-range phone (~1,200 SC) is roughly 2x slower; a budget phone (~700 SC) is roughly 3–4x slower. Even at 4x, the heaviest cold operation stays under 200 us and 100 unique components under 20 ms — still well within a single frame budget. The cached path remains sub-microsecond on all devices.
|
|
660
|
+
|
|
661
|
+
### How It Stays Fast
|
|
397
662
|
|
|
398
663
|
- CSS is generated and injected only when styles are actually used.
|
|
399
664
|
- Multi-level caching avoids repeated parsing and style recomputation.
|
|
@@ -403,23 +668,13 @@ If you choose the runtime approach, performance is usually a non-issue in practi
|
|
|
403
668
|
- A dedicated style injector minimizes DOM/style-tag overhead.
|
|
404
669
|
- This approach is validated in enterprise-scale apps where runtime styling overhead is not noticeable in normal UI flows.
|
|
405
670
|
|
|
406
|
-
## Entry Points
|
|
407
|
-
|
|
408
|
-
| Import | Description | Platform |
|
|
409
|
-
|--------|-------------|----------|
|
|
410
|
-
| `@tenphi/tasty` | Runtime style engine | Browser |
|
|
411
|
-
| `@tenphi/tasty/static` | Zero-runtime static styles | Browser |
|
|
412
|
-
| `@tenphi/tasty/babel-plugin` | Babel plugin for CSS extraction | Node |
|
|
413
|
-
| `@tenphi/tasty/zero` | Programmatic extraction API | Node |
|
|
414
|
-
| `@tenphi/tasty/next` | Next.js integration | Node |
|
|
415
|
-
|
|
416
671
|
## Ecosystem
|
|
417
672
|
|
|
418
673
|
Tasty is the core of a production-ready styling platform. These companion tools complete the picture:
|
|
419
674
|
|
|
420
675
|
### [ESLint Plugin](https://github.com/tenphi/eslint-plugin-tasty)
|
|
421
676
|
|
|
422
|
-
`@tenphi/eslint-plugin-tasty` — 27 lint rules
|
|
677
|
+
`@tenphi/eslint-plugin-tasty` — 27 total lint rules for style property names, value syntax, token existence, state keys, and best practices. The `recommended` preset enables 18 of them as a practical default. Catch typos and invalid styles at lint time, not at runtime.
|
|
423
678
|
|
|
424
679
|
```bash
|
|
425
680
|
pnpm add -D @tenphi/eslint-plugin-tasty
|
|
@@ -450,14 +705,65 @@ const tokens = theme.tasty(); // Ready-to-use Tasty tokens
|
|
|
450
705
|
|
|
451
706
|
Syntax highlighting for Tasty styles in TypeScript, TSX, JavaScript, and JSX. Highlights color tokens, custom units, state keys, presets, and style properties inside `tasty()`, `tastyStatic()`, and related APIs.
|
|
452
707
|
|
|
453
|
-
|
|
708
|
+
<p align="center">
|
|
709
|
+
<img src="assets/tasty-vscode-highlight.png" width="512" alt="Tasty VS Code syntax highlighting example">
|
|
710
|
+
</p>
|
|
711
|
+
|
|
712
|
+
## Built with Tasty
|
|
713
|
+
|
|
714
|
+
### [tasty.style](https://tasty.style) ([source](https://github.com/tenphi/tasty.style))
|
|
715
|
+
|
|
716
|
+
The official Tasty documentation and landing page — itself built entirely with Tasty. A showcase for zero-runtime styling via `tastyStatic`, SSR with Next.js, and OKHSL color theming with Glaze.
|
|
717
|
+
|
|
718
|
+
### [Cube Cloud](https://cube.dev/)
|
|
719
|
+
|
|
720
|
+
Enterprise universal semantic layer platform by Cube Dev, Inc. Cube Cloud unifies data modeling, caching, access control, and APIs (REST, GraphQL, SQL, AI) for analytics at scale. Tasty has powered its frontend for over 5 years in production.
|
|
721
|
+
|
|
722
|
+
### [Cube Cloud for Excel and Google Sheets](https://cube.dev/)
|
|
723
|
+
|
|
724
|
+
A single spreadsheet add-in deployed to both [Microsoft Excel](https://marketplace.microsoft.com/en-us/product/office/WA200008486) and [Google Sheets](https://workspace.google.com/u/0/marketplace/app/cube_cloud_for_sheets/641460343379). Connects spreadsheets to any cloud data platform (BigQuery, Databricks, Snowflake, Redshift, and more) via Cube Cloud's universal semantic layer.
|
|
725
|
+
|
|
726
|
+
### [Cube UI Kit](https://github.com/cube-js/cube-ui-kit) ([storybook](https://cube-ui-kit.vercel.app/))
|
|
454
727
|
|
|
455
728
|
Open-source React UI kit built on Tasty + React Aria. 100+ production components proving Tasty works at design-system scale. A reference implementation and a ready-to-use component library.
|
|
456
729
|
|
|
457
730
|
## Documentation
|
|
458
731
|
|
|
459
|
-
|
|
732
|
+
Start from the docs hub if you want the shortest path to the right guide for your role or styling approach.
|
|
733
|
+
|
|
734
|
+
- **[Docs Hub](docs/README.md)** — audience-based navigation across onboarding, design-system authoring, runtime, zero-runtime, runtime SSR integration, debugging, and internals
|
|
735
|
+
|
|
736
|
+
### Start here
|
|
737
|
+
|
|
738
|
+
- **[Getting Started](docs/getting-started.md)** — Installation, first component, optional shared configuration, ESLint plugin setup, editor tooling, and rendering mode decision tree
|
|
739
|
+
- **[Methodology](docs/methodology.md)** — The recommended patterns for structuring Tasty components: root + sub-elements, styleProps, tokens, styles vs style, wrapping and extension
|
|
740
|
+
|
|
741
|
+
### Guides
|
|
742
|
+
|
|
743
|
+
- **[Building a Design System](docs/design-system.md)** — Practical guide to building a DS layer: token vocabulary, state aliases, recipes, primitives, compound components, override contracts
|
|
744
|
+
- **[Adoption Guide](docs/adoption.md)** — Where Tasty sits in the stack, who should adopt it, what you define yourself, and how to introduce it incrementally into an existing design system
|
|
745
|
+
|
|
746
|
+
### Reference
|
|
747
|
+
|
|
748
|
+
- **[Style DSL](docs/dsl.md)** — The Tasty style language: state maps, tokens, units, color syntax, extending semantics, recipes, keyframes, and @property
|
|
749
|
+
- **[Runtime API](docs/runtime.md)** — React-specific API: `tasty()` factory, component props, variants, sub-elements, and hooks
|
|
750
|
+
- **[Configuration](docs/configuration.md)** — Global configuration: tokens, recipes, custom units, style handlers, and TypeScript extensions
|
|
751
|
+
- **[Style Properties](docs/styles.md)** — Complete reference for all enhanced style properties: syntax, values, modifiers, and recommendations
|
|
752
|
+
|
|
753
|
+
### Rendering modes
|
|
754
|
+
|
|
460
755
|
- **[Zero Runtime (tastyStatic)](docs/tasty-static.md)** — Build-time static styling: Babel plugin setup, Next.js integration, and static style patterns
|
|
756
|
+
- **[Server-Side Rendering](docs/ssr.md)** — SSR setup for Next.js, Astro, and generic frameworks: streaming support, cache hydration, and troubleshooting
|
|
757
|
+
|
|
758
|
+
### Internals
|
|
759
|
+
|
|
760
|
+
- **[Style rendering pipeline](docs/PIPELINE.md)** — How `Styles` become mutually exclusive CSS rules: parse → exclusives → combinations → handlers → merge → materialize (`src/pipeline/`)
|
|
761
|
+
- **[Style Injector](docs/injector.md)** — Internal CSS injection engine: `inject()`, `injectGlobal()`, `injectRawCSS()`, `keyframes()`, deduplication, reference counting, cleanup, SSR support, and Shadow DOM
|
|
762
|
+
- **[Debug Utilities](docs/debug.md)** — Runtime CSS inspection via `tastyDebug`: CSS extraction, element inspection, cache metrics, chunk breakdown, and performance monitoring
|
|
763
|
+
|
|
764
|
+
### Context
|
|
765
|
+
|
|
766
|
+
- **[Comparison](docs/comparison.md)** — How Tasty compares to Tailwind, Panda CSS, vanilla-extract, StyleX, Stitches, and Emotion: positioning, trade-offs, and when each tool fits best
|
|
461
767
|
|
|
462
768
|
## License
|
|
463
769
|
|
package/dist/chunks/cacheKey.js
CHANGED
|
@@ -11,20 +11,29 @@ import { extractLocalPredefinedStates, extractPredefinedStateRefs } from "../sta
|
|
|
11
11
|
* - Global predefined states don't affect cache keys (constant across app)
|
|
12
12
|
* - Local predefined states only affect cache keys if referenced in the chunk
|
|
13
13
|
*/
|
|
14
|
+
const _stableStringifyCache = /* @__PURE__ */ new WeakMap();
|
|
14
15
|
/**
|
|
15
16
|
* Recursively serialize a value with sorted keys for stable output.
|
|
16
17
|
* This ensures that {a: 1, b: 2} and {b: 2, a: 1} produce the same string.
|
|
18
|
+
* Uses a WeakMap cache for object values to avoid re-serializing the same references.
|
|
17
19
|
*/
|
|
18
20
|
function stableStringify(value) {
|
|
19
21
|
if (value === null) return "null";
|
|
20
22
|
if (value === void 0) return "undefined";
|
|
21
23
|
if (typeof value !== "object") return JSON.stringify(value);
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
24
|
+
const cached = _stableStringifyCache.get(value);
|
|
25
|
+
if (cached !== void 0) return cached;
|
|
26
|
+
let result;
|
|
27
|
+
if (Array.isArray(value)) result = "[" + value.map(stableStringify).join(",") + "]";
|
|
28
|
+
else {
|
|
29
|
+
const obj = value;
|
|
30
|
+
const sortedKeys = Object.keys(obj).sort();
|
|
31
|
+
const parts = [];
|
|
32
|
+
for (const key of sortedKeys) if (obj[key] !== void 0) parts.push(`${JSON.stringify(key)}:${stableStringify(obj[key])}`);
|
|
33
|
+
result = "{" + parts.join(",") + "}";
|
|
34
|
+
}
|
|
35
|
+
_stableStringifyCache.set(value, result);
|
|
36
|
+
return result;
|
|
28
37
|
}
|
|
29
38
|
/**
|
|
30
39
|
* Generate a cache key for a specific chunk.
|
|
@@ -42,9 +51,8 @@ function stableStringify(value) {
|
|
|
42
51
|
*/
|
|
43
52
|
function generateChunkCacheKey(styles, chunkName, styleKeys) {
|
|
44
53
|
const parts = [chunkName];
|
|
45
|
-
const sortedKeys = styleKeys.slice().sort();
|
|
46
54
|
let chunkStylesStr = "";
|
|
47
|
-
for (const key of
|
|
55
|
+
for (const key of styleKeys) {
|
|
48
56
|
const value = styles[key];
|
|
49
57
|
if (value !== void 0) {
|
|
50
58
|
const serialized = stableStringify(value);
|