@tenphi/tasty 0.0.0-snapshot.ed55ce5 → 0.0.0-snapshot.ef8cc29

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.
Files changed (169) hide show
  1. package/README.md +286 -47
  2. package/dist/chunks/cacheKey.js +16 -8
  3. package/dist/chunks/cacheKey.js.map +1 -1
  4. package/dist/chunks/definitions.js +1 -2
  5. package/dist/chunks/definitions.js.map +1 -1
  6. package/dist/chunks/renderChunk.js +31 -32
  7. package/dist/chunks/renderChunk.js.map +1 -1
  8. package/dist/config.d.ts +45 -10
  9. package/dist/config.js +75 -13
  10. package/dist/config.js.map +1 -1
  11. package/dist/core/index.d.ts +9 -8
  12. package/dist/core/index.js +7 -6
  13. package/dist/debug.d.ts +26 -141
  14. package/dist/debug.js +356 -635
  15. package/dist/debug.js.map +1 -1
  16. package/dist/hooks/useGlobalStyles.d.ts +3 -0
  17. package/dist/hooks/useGlobalStyles.js +28 -1
  18. package/dist/hooks/useGlobalStyles.js.map +1 -1
  19. package/dist/hooks/useKeyframes.js +18 -3
  20. package/dist/hooks/useKeyframes.js.map +1 -1
  21. package/dist/hooks/useProperty.js +36 -13
  22. package/dist/hooks/useProperty.js.map +1 -1
  23. package/dist/hooks/useRawCSS.js +13 -1
  24. package/dist/hooks/useRawCSS.js.map +1 -1
  25. package/dist/hooks/useStyles.d.ts +5 -0
  26. package/dist/hooks/useStyles.js +86 -6
  27. package/dist/hooks/useStyles.js.map +1 -1
  28. package/dist/index.d.ts +9 -8
  29. package/dist/index.js +7 -6
  30. package/dist/injector/index.d.ts +9 -1
  31. package/dist/injector/index.js +9 -1
  32. package/dist/injector/index.js.map +1 -1
  33. package/dist/injector/injector.d.ts +9 -0
  34. package/dist/injector/injector.js +20 -7
  35. package/dist/injector/injector.js.map +1 -1
  36. package/dist/injector/sheet-manager.d.ts +1 -0
  37. package/dist/injector/sheet-manager.js +1 -0
  38. package/dist/injector/sheet-manager.js.map +1 -1
  39. package/dist/parser/classify.js +2 -1
  40. package/dist/parser/classify.js.map +1 -1
  41. package/dist/parser/parser.js +1 -1
  42. package/dist/pipeline/index.d.ts +1 -1
  43. package/dist/pipeline/index.js +45 -24
  44. package/dist/pipeline/index.js.map +1 -1
  45. package/dist/pipeline/materialize.js +380 -119
  46. package/dist/pipeline/materialize.js.map +1 -1
  47. package/dist/pipeline/parseStateKey.d.ts +1 -1
  48. package/dist/pipeline/parseStateKey.js +20 -11
  49. package/dist/pipeline/parseStateKey.js.map +1 -1
  50. package/dist/plugins/okhsl-plugin.js +2 -275
  51. package/dist/plugins/okhsl-plugin.js.map +1 -1
  52. package/dist/plugins/types.d.ts +9 -2
  53. package/dist/properties/index.js +14 -9
  54. package/dist/properties/index.js.map +1 -1
  55. package/dist/properties/property-type-resolver.js +8 -0
  56. package/dist/properties/property-type-resolver.js.map +1 -1
  57. package/dist/ssr/astro.d.ts +29 -0
  58. package/dist/ssr/astro.js +65 -0
  59. package/dist/ssr/astro.js.map +1 -0
  60. package/dist/ssr/async-storage.d.ts +17 -0
  61. package/dist/ssr/async-storage.js +35 -0
  62. package/dist/ssr/async-storage.js.map +1 -0
  63. package/dist/ssr/collect-auto-properties.js +40 -0
  64. package/dist/ssr/collect-auto-properties.js.map +1 -0
  65. package/dist/ssr/collector.d.ts +85 -0
  66. package/dist/ssr/collector.js +183 -0
  67. package/dist/ssr/collector.js.map +1 -0
  68. package/dist/ssr/context.d.ts +8 -0
  69. package/dist/ssr/context.js +14 -0
  70. package/dist/ssr/context.js.map +1 -0
  71. package/dist/ssr/format-global-rules.js +22 -0
  72. package/dist/ssr/format-global-rules.js.map +1 -0
  73. package/dist/ssr/format-keyframes.js +70 -0
  74. package/dist/ssr/format-keyframes.js.map +1 -0
  75. package/dist/ssr/format-property.js +50 -0
  76. package/dist/ssr/format-property.js.map +1 -0
  77. package/dist/ssr/format-rules.js +70 -0
  78. package/dist/ssr/format-rules.js.map +1 -0
  79. package/dist/ssr/hydrate.d.ts +22 -0
  80. package/dist/ssr/hydrate.js +50 -0
  81. package/dist/ssr/hydrate.js.map +1 -0
  82. package/dist/ssr/index.d.ts +5 -0
  83. package/dist/ssr/index.js +12 -0
  84. package/dist/ssr/index.js.map +1 -0
  85. package/dist/ssr/next.d.ts +45 -0
  86. package/dist/ssr/next.js +71 -0
  87. package/dist/ssr/next.js.map +1 -0
  88. package/dist/ssr/ssr-collector-ref.js +12 -0
  89. package/dist/ssr/ssr-collector-ref.js.map +1 -0
  90. package/dist/states/index.js +10 -257
  91. package/dist/states/index.js.map +1 -1
  92. package/dist/styles/color.js +9 -5
  93. package/dist/styles/color.js.map +1 -1
  94. package/dist/styles/createStyle.js +24 -21
  95. package/dist/styles/createStyle.js.map +1 -1
  96. package/dist/styles/index.js +1 -1
  97. package/dist/styles/predefined.d.ts +0 -2
  98. package/dist/styles/predefined.js +1 -4
  99. package/dist/styles/predefined.js.map +1 -1
  100. package/dist/styles/preset.js +1 -1
  101. package/dist/styles/preset.js.map +1 -1
  102. package/dist/styles/scrollbar.d.ts +9 -5
  103. package/dist/styles/scrollbar.js +25 -89
  104. package/dist/styles/scrollbar.js.map +1 -1
  105. package/dist/styles/transition.js +1 -1
  106. package/dist/styles/transition.js.map +1 -1
  107. package/dist/styles/types.d.ts +42 -17
  108. package/dist/tasty.d.ts +12 -13
  109. package/dist/tasty.js +24 -11
  110. package/dist/tasty.js.map +1 -1
  111. package/dist/types.d.ts +1 -1
  112. package/dist/utils/cache-wrapper.js +4 -8
  113. package/dist/utils/cache-wrapper.js.map +1 -1
  114. package/dist/utils/color-math.d.ts +46 -0
  115. package/dist/utils/color-math.js +749 -0
  116. package/dist/utils/color-math.js.map +1 -0
  117. package/dist/utils/color-space.d.ts +5 -0
  118. package/dist/utils/color-space.js +229 -0
  119. package/dist/utils/color-space.js.map +1 -0
  120. package/dist/utils/colors.js +3 -1
  121. package/dist/utils/colors.js.map +1 -1
  122. package/dist/utils/has-keys.js +13 -0
  123. package/dist/utils/has-keys.js.map +1 -0
  124. package/dist/utils/mod-attrs.js +2 -2
  125. package/dist/utils/mod-attrs.js.map +1 -1
  126. package/dist/utils/process-tokens.d.ts +3 -13
  127. package/dist/utils/process-tokens.js +18 -98
  128. package/dist/utils/process-tokens.js.map +1 -1
  129. package/dist/utils/selector-transform.js +32 -0
  130. package/dist/utils/selector-transform.js.map +1 -0
  131. package/dist/utils/styles.d.ts +2 -79
  132. package/dist/utils/styles.js +28 -556
  133. package/dist/utils/styles.js.map +1 -1
  134. package/dist/utils/typography.d.ts +24 -13
  135. package/dist/utils/typography.js +6 -16
  136. package/dist/utils/typography.js.map +1 -1
  137. package/dist/zero/babel.d.ts +48 -6
  138. package/dist/zero/babel.js +63 -5
  139. package/dist/zero/babel.js.map +1 -1
  140. package/dist/zero/next.d.ts +44 -30
  141. package/dist/zero/next.js +102 -38
  142. package/dist/zero/next.js.map +1 -1
  143. package/docs/PIPELINE.md +519 -0
  144. package/docs/README.md +31 -0
  145. package/docs/adoption.md +296 -0
  146. package/docs/comparison.md +420 -0
  147. package/docs/configuration.md +66 -12
  148. package/docs/debug.md +152 -339
  149. package/docs/design-system.md +401 -0
  150. package/docs/dsl.md +582 -0
  151. package/docs/getting-started.md +217 -0
  152. package/docs/injector.md +4 -4
  153. package/docs/methodology.md +503 -0
  154. package/docs/runtime.md +317 -0
  155. package/docs/ssr.md +382 -0
  156. package/docs/styles.md +21 -14
  157. package/docs/tasty-static.md +77 -22
  158. package/package.json +50 -30
  159. package/dist/styles/styledScrollbar.d.ts +0 -47
  160. package/dist/styles/styledScrollbar.js +0 -38
  161. package/dist/styles/styledScrollbar.js.map +0 -1
  162. package/dist/tokens/typography.d.ts +0 -19
  163. package/dist/tokens/typography.js +0 -237
  164. package/dist/tokens/typography.js.map +0 -1
  165. package/dist/utils/hsl-to-rgb.js +0 -38
  166. package/dist/utils/hsl-to-rgb.js.map +0 -1
  167. package/dist/utils/okhsl-to-rgb.js +0 -296
  168. package/dist/utils/okhsl-to-rgb.js.map +0 -1
  169. package/docs/usage.md +0 -643
package/README.md CHANGED
@@ -5,8 +5,8 @@
5
5
  <h1 align="center">Tasty</h1>
6
6
 
7
7
  <p align="center">
8
- <strong>The styling engine built for design systems.</strong><br>
9
- Deterministic CSS generation. State-aware DSL. Zero specificity conflicts. Ever.
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,23 +17,41 @@
17
17
 
18
18
  ---
19
19
 
20
- Most CSS-in-JS libraries emit rules that compete through cascade and specificity. Tasty emits **mutually exclusive CSS selectors** — for any component state combination, exactly one selector matches each property at a time. No cascade conflicts, no specificity wars, no `!important` escapes. Components compose and extend without breaking each other.
20
+ Tasty is a styling engine for design systems that generates deterministic CSS for stateful components.
21
21
 
22
- That guarantee unlocks a concise, CSS-like DSL where design tokens, custom units, responsive states, container queries, sub-element styling, and theming all compose without surprises — one coherent system that scales from a single component to an enterprise design system.
22
+ It compiles state maps into **mutually exclusive selectors**, so for a given property and component state, one branch wins by construction instead of competing through cascade and specificity.
23
+
24
+ That is the core guarantee: component styling resolves from declared state logic, not from source-order accidents or specificity fights.
25
+
26
+ Tasty fits best when you are building a design system or component library with intersecting states, variants, tokens, sub-elements, responsive rules, and extension semantics that need to stay predictable over time.
27
+
28
+ On top of that foundation, Tasty gives teams a governed styling model: a CSS-like DSL, tokens, recipes, typed style props, sub-elements, and multiple rendering modes.
29
+
30
+ - **New here?** Start with [Comparison](docs/comparison.md) if you are evaluating fit.
31
+ - **Adopting Tasty?** Read the [Adoption Guide](docs/adoption.md).
32
+ - **Want the mechanism first?** Jump to [How It Actually Works](#how-it-actually-works).
33
+ - **Ready to build?** Go to [Getting Started](docs/getting-started.md).
23
34
 
24
35
  ## Why Tasty
25
36
 
26
- - **Deterministic at any scale** — Exclusive selector generation eliminates the entire class of cascade/specificity bugs. Every state combination resolves to exactly one CSS rule per property. Refactor freely. See [How It Actually Works](#how-it-actually-works).
27
- - **AI-friendly by design** — Style definitions are declarative, self-contained, and structurally consistent. AI tools can read, understand, and refactor even advanced state bindings as confidently as a human — because there's no hidden cascade logic or implicit ordering to second-guess.
28
- - **DSL that feels like CSS** Property names you already know (`padding`, `color`, `display`) with syntax sugar that removes boilerplate. Learn the DSL in minutes, not days. See [Style Properties](docs/styles.md).
29
- - **CSS properties as normal component 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).
30
- - **Design-system native** — Color tokens (`#primary`), spacing units (`2x`), typography presets (`h1`, `t2`), border radius (`1r`), and recipes are first-class primitives, not afterthoughts. See [Configuration](docs/configuration.md).
31
- - **Near-complete modern CSS coverage** — Media queries, container queries, `@supports`, `:has()`, `@starting-style`, `@property`, `@keyframes`, etc. Some features that don't fit Tasty's component model (such as `@layer` and `!important`) are intentionally omitted, but real-world use cases are covered almost completely.
32
- - **Runtime or zero-runtime — your call** — Use `tasty()` for dynamic React components with runtime injection, or `tastyStatic()` with the Babel plugin for zero-runtime CSS extraction. Same DSL, same tokens, same output. See [Zero Runtime](docs/tasty-static.md).
33
- - **Only generate what is used** — In runtime mode, Tasty injects CSS on demand for mounted components/variants, so your app avoids shipping style rules for UI states that are never rendered.
34
- - **Runtime performance that holds at scale** — The runtime path is tested against enterprise-scale applications and tuned with multi-level caching, chunk-level style reuse, style garbage collection, and a dedicated injector.
35
- - **Composable and extensible by design** — Extend any component's styles with proper merge semantics, and evolve built-in behavior through configuration and plugins.
36
- - **TypeScript-first** — Full type definitions, module augmentation for custom properties, and autocomplete for tokens, presets, and themes. See [Configuration](docs/configuration.md).
37
+ - **Deterministic composition, not cascade fights** — Stateful styles resolve from the state map you declared, not from selector competition. See [How It Actually Works](#how-it-actually-works).
38
+ - **Built for design-system teams** — Best fit for reusable component systems with complex state interactions.
39
+ - **A governed styling model, not just syntax sugar** Design-system authors define the styling language product teams consume.
40
+ - **DSL that still feels like CSS** — Familiar property names, less selector boilerplate. Start with the [Style DSL](docs/dsl.md), then use [Style Properties](docs/styles.md) as the handler reference.
41
+
42
+ ### Supporting capabilities
43
+
44
+ - **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).
45
+ - **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.
46
+ - **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.
47
+ - **Performance and caching** — Runtime mode injects CSS on demand, reuses chunks aggressively, and relies on multi-level caching so large component systems stay practical.
48
+ - **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.
49
+
50
+ ## Why It Exists
51
+
52
+ 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.
53
+
54
+ Tasty replaces that competition with explicit state-map resolution. Each property compiles into mutually exclusive branches, so component styling stays deterministic as systems grow. For the full mechanism, jump to [How It Actually Works](#how-it-actually-works).
37
55
 
38
56
  ## Installation
39
57
 
@@ -41,6 +59,30 @@ That guarantee unlocks a concise, CSS-like DSL where design tokens, custom units
41
59
  pnpm add @tenphi/tasty
42
60
  ```
43
61
 
62
+ Requirements:
63
+
64
+ - Node.js 20+
65
+ - React 18+ (peer dependency for the React entry points)
66
+ - `pnpm`, `npm`, or `yarn`
67
+
68
+ Other package managers:
69
+
70
+ ```bash
71
+ npm add @tenphi/tasty
72
+ yarn add @tenphi/tasty
73
+ ```
74
+
75
+ ## Start Here
76
+
77
+ For the fuller docs map beyond the quick routes above, start here:
78
+
79
+ - **[Comparison](docs/comparison.md)** — read this first if you are evaluating whether Tasty fits your team's styling model
80
+ - **[Adoption Guide](docs/adoption.md)** — understand who Tasty is for, where it fits, and how to introduce it incrementally
81
+ - **[Getting Started](docs/getting-started.md)** — the canonical onboarding path: install, first component, optional shared `configure()`, ESLint, editor tooling, and rendering mode selection
82
+ - **[Style rendering pipeline](docs/PIPELINE.md)** — see the selector model behind deterministic style resolution
83
+ - **[Docs Hub](docs/README.md)** — choose docs by role and task: runtime, zero-runtime, runtime SSR integration, design-system authoring, internals, and debugging
84
+ - **[Methodology](docs/methodology.md)** — the recommended component model and public API conventions for design-system code
85
+
44
86
  ## Quick Start
45
87
 
46
88
  ### Create a styled component
@@ -53,11 +95,12 @@ const Card = tasty({
53
95
  styles: {
54
96
  display: 'flex',
55
97
  flow: 'column',
56
- padding: '4x',
57
- gap: '2x',
58
- fill: '#surface',
59
- border: '#border bottom',
60
- radius: '1r',
98
+ padding: '24px',
99
+ gap: '12px',
100
+ fill: 'white',
101
+ color: '#222',
102
+ border: '1px solid #ddd',
103
+ radius: '12px',
61
104
  },
62
105
  });
63
106
 
@@ -65,7 +108,11 @@ const Card = tasty({
65
108
  <Card>Hello World</Card>
66
109
  ```
67
110
 
68
- Every value maps to CSS you'd recognize but with tokens and units that keep your design system consistent by default.
111
+ Every value maps to CSS you'd recognize. This example is intentionally a simple first contact, not a tour of the whole DSL.
112
+
113
+ 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.
114
+
115
+ 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).
69
116
 
70
117
  ### Add state-driven styles
71
118
 
@@ -112,7 +159,7 @@ const DangerButton = tasty(Button, {
112
159
 
113
160
  Child styles merge with parent styles intelligently — state maps can extend or replace parent states per-property.
114
161
 
115
- ### Configure once, use everywhere
162
+ ### Optional: configure shared conventions
116
163
 
117
164
  ```tsx
118
165
  import { configure } from '@tenphi/tasty';
@@ -129,13 +176,13 @@ configure({
129
176
  });
130
177
  ```
131
178
 
132
- Predefined states turn complex selector logic into single tokens. Use `@mobile` instead of writing media query expressions in every component.
179
+ 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.
133
180
 
134
181
  ### CSS properties as props
135
182
 
136
- With `styleProps`, a component can expose the styles you choose as normal typed props. That means you can adjust layout, spacing, alignment, or positioning right where the component is used, instead of introducing wrapper elements or reaching for a separate styling API.
183
+ 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.
137
184
 
138
- This is especially good for prototyping and fast UI iteration: you can shape interfaces quickly, while still staying inside a typed, design-system-aware component API that scales to production.
185
+ 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.
139
186
 
140
187
  ```tsx
141
188
  import { tasty, FLOW_STYLES, POSITION_STYLES } from '@tenphi/tasty';
@@ -182,17 +229,43 @@ The same props also support state maps, so responsive values use the exact same
182
229
  </Space>
183
230
  ```
184
231
 
185
- 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()`.
232
+ 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 keeping tokens, custom units, and state maps fully typed. This works in runtime `tasty()` components, not in `tastyStatic()`.
233
+
234
+ ## Choose a Styling Approach
235
+
236
+ Once you understand the component model, pick the rendering mode that matches your app.
237
+
238
+ | Approach | Entry point | Best for | Trade-off |
239
+ |----------|-------------|----------|-----------|
240
+ | **Runtime** | `@tenphi/tasty` | Interactive apps with reusable stateful components and design systems | Full feature set; CSS is generated on demand at runtime |
241
+ | **Zero-runtime** | `@tenphi/tasty/static` | Static sites, SSG, landing pages | Requires the Babel plugin; no component-level `styleProps` or runtime-only APIs |
242
+
243
+ 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).
186
244
 
187
245
  ## How It Actually Works
188
246
 
189
247
  This is the core idea that makes everything else possible.
190
248
 
191
- Traditional CSS has two structural problems.
249
+ 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)**.
250
+
251
+ ### The structural problem with normal CSS
192
252
 
193
253
  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.
194
254
 
195
- Second, **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.
255
+ A small example makes this tangible. Two rules for a button's background:
256
+
257
+ ```css
258
+ .btn:hover { background: dodgerblue; }
259
+ .btn[disabled] { background: gray; }
260
+ ```
261
+
262
+ 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.
263
+
264
+ ### Why real state logic is hard to author by hand
265
+
266
+ 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.
267
+
268
+ ### What Tasty generates instead
196
269
 
197
270
  Tasty solves both problems at once: **every state mapping compiles into mutually exclusive selectors.**
198
271
 
@@ -211,7 +284,31 @@ const Text = tasty({
211
284
  });
212
285
  ```
213
286
 
214
- If `@dark` expands to `@root(schema=dark) | (!@root(schema) & @media(prefers-color-scheme: dark))`, Tasty generates:
287
+ 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:
288
+
289
+ ```css
290
+ /* First attempt — the @media branch is too broad */
291
+ .t0 { color: var(--text-color); }
292
+ :root[data-schema="dark"] .t0 { color: var(--text-on-dark-color); }
293
+ @media (prefers-color-scheme: dark) {
294
+ .t0 { color: var(--text-on-dark-color); }
295
+ }
296
+ ```
297
+
298
+ The `@media` branch fires even when `data-schema="light"` is explicitly set. Fix that:
299
+
300
+ ```css
301
+ /* Second attempt — @media is scoped, but the default is still too broad */
302
+ .t0 { color: var(--text-color); }
303
+ :root[data-schema="dark"] .t0 { color: var(--text-on-dark-color); }
304
+ @media (prefers-color-scheme: dark) {
305
+ :root:not([data-schema]) .t0 { color: var(--text-on-dark-color); }
306
+ }
307
+ ```
308
+
309
+ 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."
310
+
311
+ 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:
215
312
 
216
313
  ```css
217
314
  /* Branch 1: Explicit dark schema */
@@ -239,12 +336,18 @@ If `@dark` expands to `@root(schema=dark) | (!@root(schema) & @media(prefers-col
239
336
  }
240
337
  ```
241
338
 
339
+ ### What guarantee that gives you
340
+
242
341
  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.
243
342
 
244
- 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 doesn't limit CSS; it unlocks its full potential by removing the complexity that held teams back.
343
+ 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.
344
+
345
+ [Try it in the Cube UI Kit Storybook playground →](https://cube-ui-kit.vercel.app/?path=/story/getting-started-tasty-playground--playground)
245
346
 
246
347
  ## Capabilities
247
348
 
349
+ This section is a quick product tour. For the canonical guides and references, start from the [Docs Hub](docs/README.md).
350
+
248
351
  ### Design Tokens and Custom Units
249
352
 
250
353
  Tokens are first-class. Colors use `#name` syntax. Spacing, radius, and border width use multiplier units tied to CSS custom properties:
@@ -280,7 +383,7 @@ Every style property accepts a state mapping object. Keys can be combined with b
280
383
  | Class selector (supported) | `.is-active` | `.is-active` |
281
384
  | Media query | `@media(w < 768px)` | `@media (width < 768px)` |
282
385
  | Container query | `@(panel, w >= 300px)` | `@container panel (width >= 300px)` |
283
- | Root state | `@root(theme=dark)` | `:root[data-theme="dark"]` |
386
+ | Root state | `@root(schema=dark)` | `:root[data-schema="dark"]` |
284
387
  | Parent state | `@parent(theme=danger)` | `:is([data-theme="danger"] *)` |
285
388
  | Feature query | `@supports(display: grid)` | `@supports (display: grid)` |
286
389
  | Entry animation | `@starting` | `@starting-style` |
@@ -408,8 +511,8 @@ import { useStyles, useGlobalStyles, useRawCSS } from '@tenphi/tasty';
408
511
 
409
512
  function App() {
410
513
  const { className } = useStyles({ padding: '2x', fill: '#surface' });
411
- useGlobalStyles(':root', { '#primary': 'purple', '$gap': '8px' });
412
- useRawCSS('body { margin: 0; }');
514
+ useGlobalStyles('body', { margin: '0' });
515
+ useRawCSS('@font-face { font-family: "Custom"; src: url(...); }');
413
516
 
414
517
  return <main className={className}>...</main>;
415
518
  }
@@ -441,7 +544,7 @@ module.exports = {
441
544
  ['@tenphi/tasty/babel-plugin', {
442
545
  output: 'public/tasty.css',
443
546
  config: {
444
- states: { '@dark': '@root(theme=dark)' },
547
+ states: { '@dark': '@root(schema=dark)' },
445
548
  },
446
549
  }],
447
550
  ],
@@ -460,21 +563,51 @@ module.exports = {
460
563
  | **Sub-elements** | Built-in (`<C.Title>`) | Manual (`data-element`) |
461
564
  | **Variants** | Built-in (`variants` option) | Separate static styles |
462
565
  | **Framework** | React | Any (requires Babel) |
463
- | **Best for** | Interactive apps, design systems | Static sites, SSG, landing pages |
566
+ | **Best for** | Interactive apps with reusable stateful components, design systems | Static sites, SSG, landing pages |
464
567
 
465
568
  Both share the same DSL, tokens, units, state mappings, and recipes.
466
569
 
467
- ### Runtime Performance
570
+ ### Server-Side Rendering
468
571
 
469
- If you choose the runtime approach, performance is usually a non-issue in practice:
572
+ 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+.
470
573
 
471
- - CSS is generated and injected only when styles are actually used.
472
- - Multi-level caching avoids repeated parsing and style recomputation.
473
- - Styles are split into reusable chunks and applied as multiple class names, so matching chunks can be reused across components instead of re-injected.
474
- - Style normalization guarantees equivalent style input resolves to the same chunks, improving deduplication hit rates.
475
- - A style garbage collector removes unused styles/chunks over time.
476
- - A dedicated style injector minimizes DOM/style-tag overhead.
477
- - This approach is validated in enterprise-scale apps where runtime styling overhead is not noticeable in normal UI flows.
574
+ **Next.js setup:**
575
+
576
+ ```tsx
577
+ // app/tasty-registry.tsx
578
+ 'use client';
579
+
580
+ import { TastyRegistry } from '@tenphi/tasty/ssr/next';
581
+
582
+ export default function TastyStyleRegistry({
583
+ children,
584
+ }: {
585
+ children: React.ReactNode;
586
+ }) {
587
+ return <TastyRegistry>{children}</TastyRegistry>;
588
+ }
589
+ ```
590
+
591
+ ```tsx
592
+ // app/layout.tsx
593
+ import TastyStyleRegistry from './tasty-registry';
594
+
595
+ export default function RootLayout({
596
+ children,
597
+ }: {
598
+ children: React.ReactNode;
599
+ }) {
600
+ return (
601
+ <html>
602
+ <body>
603
+ <TastyStyleRegistry>{children}</TastyStyleRegistry>
604
+ </body>
605
+ </html>
606
+ );
607
+ }
608
+ ```
609
+
610
+ See the [full SSR guide](docs/ssr.md) for Astro integration, streaming SSR, generic framework usage, troubleshooting, and the current requirements.
478
611
 
479
612
  ## Entry Points
480
613
 
@@ -486,6 +619,69 @@ If you choose the runtime approach, performance is usually a non-issue in practi
486
619
  | `@tenphi/tasty/babel-plugin` | Babel plugin for zero-runtime CSS extraction | Node |
487
620
  | `@tenphi/tasty/zero` | Programmatic extraction API | Node |
488
621
  | `@tenphi/tasty/next` | Next.js integration wrapper | Node |
622
+ | `@tenphi/tasty/ssr` | Core SSR API (collector, context, hydration) | Node |
623
+ | `@tenphi/tasty/ssr/next` | Next.js App Router SSR integration | Node |
624
+ | `@tenphi/tasty/ssr/astro` | Astro middleware + auto-hydration | Node / Browser |
625
+
626
+ ## Browser Requirements
627
+
628
+ Tasty's exclusive selector system relies on modern CSS pseudo-class syntax:
629
+
630
+ - **`:is()`** — available across all major browsers since January 2021 ([MDN Baseline](https://developer.mozilla.org/en-US/docs/Web/CSS/:is)).
631
+ - **Level-4 `:not()` with selector lists** — Chrome/Edge 88+, Firefox 84+, Safari 9+, Opera 75+.
632
+ - **Not supported:** IE 11.
633
+
634
+ ## Performance
635
+
636
+ ### Bundle Size
637
+
638
+ All sizes measured with [size-limit](https://github.com/ai/size-limit) — minified and brotli-compressed, including all dependencies.
639
+
640
+ | Entry point | Size |
641
+ |-------------|------|
642
+ | `@tenphi/tasty` (runtime + SSR) | ~44 kB |
643
+ | `@tenphi/tasty/core` (runtime, no SSR) | ~41 kB |
644
+ | `@tenphi/tasty/static` (zero-runtime) | ~1.5 kB |
645
+
646
+ Run `pnpm size` for exact up-to-date numbers.
647
+
648
+ ### Runtime Benchmarks
649
+
650
+ 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).
651
+
652
+ | Operation | ops/sec | Latency (mean) |
653
+ |-----------|--------:|---------------:|
654
+ | `renderStyles` — 5 flat properties (cold) | ~72,000 | ~14 us |
655
+ | `renderStyles` — state map with media/hover/modifier (cold) | ~22,000 | ~46 us |
656
+ | `renderStyles` — same styles (cached) | ~7,200,000 | ~0.14 us |
657
+ | `parseStateKey` — simple key like `:hover` (cold) | ~1,200,000 | ~0.9 us |
658
+ | `parseStateKey` — complex OR/AND/NOT key (cold) | ~190,000 | ~5 us |
659
+ | `parseStateKey` — any key (cached) | ~3,300,000–8,900,000 | ~0.1–0.3 us |
660
+ | `parseStyle` — value tokens like `2x 4x` (cold) | ~345,000 | ~3 us |
661
+ | `parseStyle` — color tokens (cold) | ~525,000 | ~1.9 us |
662
+ | `parseStyle` — any value (cached) | ~15,500,000 | ~0.06 us |
663
+
664
+ "Cold" benchmarks use unique inputs to bypass all caches. Cached benchmarks reuse a single input and measure the LRU hot path.
665
+
666
+ Run `pnpm bench` to reproduce.
667
+
668
+ #### What This Means in Practice
669
+
670
+ - **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.
671
+ - **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.
672
+ - **Cache multipliers are 30x–100x.** This confirms the multi-level LRU architecture (parser, state-key, simplify, condition, pipeline) is delivering real value.
673
+ - **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).
674
+ - **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.
675
+
676
+ ### How It Stays Fast
677
+
678
+ - CSS is generated and injected only when styles are actually used.
679
+ - Multi-level caching avoids repeated parsing and style recomputation.
680
+ - Styles are split into reusable chunks and applied as multiple class names, so matching chunks can be reused across components instead of re-injected.
681
+ - Style normalization guarantees equivalent style input resolves to the same chunks, improving deduplication hit rates.
682
+ - A style garbage collector removes unused styles/chunks over time.
683
+ - A dedicated style injector minimizes DOM/style-tag overhead.
684
+ - This approach is validated in enterprise-scale apps where runtime styling overhead is not noticeable in normal UI flows.
489
685
 
490
686
  ## Ecosystem
491
687
 
@@ -493,7 +689,7 @@ Tasty is the core of a production-ready styling platform. These companion tools
493
689
 
494
690
  ### [ESLint Plugin](https://github.com/tenphi/eslint-plugin-tasty)
495
691
 
496
- `@tenphi/eslint-plugin-tasty` — 27 lint rules that validate style property names, value syntax, token existence, state keys, and enforce best practices. Catch typos and invalid styles at lint time, not at runtime.
692
+ `@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.
497
693
 
498
694
  ```bash
499
695
  pnpm add -D @tenphi/eslint-plugin-tasty
@@ -528,19 +724,62 @@ Syntax highlighting for Tasty styles in TypeScript, TSX, JavaScript, and JSX. Hi
528
724
  <img src="assets/tasty-vscode-highlight.png" width="512" alt="Tasty VS Code syntax highlighting example">
529
725
  </p>
530
726
 
531
- ### [Cube UI Kit](https://github.com/cube-js/cube-ui-kit)
727
+ ## Built with Tasty
728
+
729
+ ### [tasty.style](https://tasty.style) ([source](https://github.com/tenphi/tasty.style))
730
+
731
+ 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.
732
+
733
+ ### [Cube Cloud](https://cube.dev/)
734
+
735
+ 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.
736
+
737
+ ### [Cube Cloud for Excel and Google Sheets](https://cube.dev/)
738
+
739
+ 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.
740
+
741
+ ### [Cube UI Kit](https://github.com/cube-js/cube-ui-kit) ([storybook](https://cube-ui-kit.vercel.app/))
532
742
 
533
743
  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.
534
744
 
535
745
  ## Documentation
536
746
 
537
- - **[Usage Guide](docs/usage.md)** Runtime styling: component creation, state mappings, sub-elements, variants, and hooks
747
+ Start from the docs hub if you want the shortest path to the right guide for your role or styling approach.
748
+
749
+ - **[Docs Hub](docs/README.md)** — audience-based navigation across onboarding, design-system authoring, runtime, zero-runtime, runtime SSR integration, debugging, and internals
750
+
751
+ ### Start here
752
+
753
+ - **[Getting Started](docs/getting-started.md)** — Installation, first component, optional shared configuration, ESLint plugin setup, editor tooling, and rendering mode decision tree
754
+ - **[Methodology](docs/methodology.md)** — The recommended patterns for structuring Tasty components: root + sub-elements, styleProps, tokens, styles vs style, wrapping and extension
755
+
756
+ ### Guides
757
+
758
+ - **[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
759
+ - **[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
760
+
761
+ ### Reference
762
+
763
+ - **[Style DSL](docs/dsl.md)** — The Tasty style language: state maps, tokens, units, color syntax, extending semantics, recipes, keyframes, and @property
764
+ - **[Runtime API](docs/runtime.md)** — React-specific API: `tasty()` factory, component props, variants, sub-elements, and hooks
538
765
  - **[Configuration](docs/configuration.md)** — Global configuration: tokens, recipes, custom units, style handlers, and TypeScript extensions
539
766
  - **[Style Properties](docs/styles.md)** — Complete reference for all enhanced style properties: syntax, values, modifiers, and recommendations
767
+
768
+ ### Rendering modes
769
+
540
770
  - **[Zero Runtime (tastyStatic)](docs/tasty-static.md)** — Build-time static styling: Babel plugin setup, Next.js integration, and static style patterns
771
+ - **[Server-Side Rendering](docs/ssr.md)** — SSR setup for Next.js, Astro, and generic frameworks: streaming support, cache hydration, and troubleshooting
772
+
773
+ ### Internals
774
+
775
+ - **[Style rendering pipeline](docs/PIPELINE.md)** — How `Styles` become mutually exclusive CSS rules: parse → exclusives → combinations → handlers → merge → materialize (`src/pipeline/`)
541
776
  - **[Style Injector](docs/injector.md)** — Internal CSS injection engine: `inject()`, `injectGlobal()`, `injectRawCSS()`, `keyframes()`, deduplication, reference counting, cleanup, SSR support, and Shadow DOM
542
777
  - **[Debug Utilities](docs/debug.md)** — Runtime CSS inspection via `tastyDebug`: CSS extraction, element inspection, cache metrics, chunk breakdown, and performance monitoring
543
778
 
779
+ ### Context
780
+
781
+ - **[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
782
+
544
783
  ## License
545
784
 
546
785
  [MIT](LICENSE)
@@ -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
- if (Array.isArray(value)) return "[" + value.map(stableStringify).join(",") + "]";
23
- const obj = value;
24
- const sortedKeys = Object.keys(obj).sort();
25
- const parts = [];
26
- for (const key of sortedKeys) if (obj[key] !== void 0) parts.push(`${JSON.stringify(key)}:${stableStringify(obj[key])}`);
27
- return "{" + parts.join(",") + "}";
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 sortedKeys) {
55
+ for (const key of styleKeys) {
48
56
  const value = styles[key];
49
57
  if (value !== void 0) {
50
58
  const serialized = stableStringify(value);
@@ -1 +1 @@
1
- {"version":3,"file":"cacheKey.js","names":[],"sources":["../../src/chunks/cacheKey.ts"],"sourcesContent":["/**\n * Chunk-specific cache key generation.\n *\n * Generates cache keys that only include styles relevant to a specific chunk,\n * enabling more granular caching and reuse.\n *\n * Enhanced to support predefined states:\n * - Global predefined states don't affect cache keys (constant across app)\n * - Local predefined states only affect cache keys if referenced in the chunk\n */\n\nimport {\n extractLocalPredefinedStates,\n extractPredefinedStateRefs,\n} from '../states';\nimport type { Styles } from '../styles/types';\n\n/**\n * Recursively serialize a value with sorted keys for stable output.\n * This ensures that {a: 1, b: 2} and {b: 2, a: 1} produce the same string.\n */\nfunction stableStringify(value: unknown): string {\n if (value === null) {\n return 'null';\n }\n if (value === undefined) {\n return 'undefined';\n }\n if (typeof value !== 'object') {\n return JSON.stringify(value);\n }\n if (Array.isArray(value)) {\n return '[' + value.map(stableStringify).join(',') + ']';\n }\n // Object: sort keys for stable order\n const obj = value as Record<string, unknown>;\n const sortedKeys = Object.keys(obj).sort();\n const parts: string[] = [];\n for (const key of sortedKeys) {\n if (obj[key] !== undefined) {\n parts.push(`${JSON.stringify(key)}:${stableStringify(obj[key])}`);\n }\n }\n return '{' + parts.join(',') + '}';\n}\n\n/**\n * Generate a cache key for a specific chunk.\n *\n * Only includes the styles that belong to this chunk, allowing\n * chunks to be cached independently.\n *\n * Also includes relevant local predefined states that are referenced\n * by this chunk's styles.\n *\n * @param styles - The full styles object\n * @param chunkName - Name of the chunk\n * @param styleKeys - Keys of styles belonging to this chunk\n * @returns A stable cache key string\n */\nexport function generateChunkCacheKey(\n styles: Styles,\n chunkName: string,\n styleKeys: string[],\n): string {\n // Start with chunk name for namespace separation\n const parts: string[] = [chunkName];\n\n // Sort keys for stable ordering\n const sortedKeys = styleKeys.slice().sort();\n\n // Build the chunk-specific styles string for predefined state detection\n let chunkStylesStr = '';\n\n for (const key of sortedKeys) {\n const value = styles[key];\n if (value !== undefined) {\n // Use stable stringify for consistent serialization regardless of key order\n const serialized = stableStringify(value);\n parts.push(`${key}:${serialized}`);\n chunkStylesStr += serialized;\n }\n }\n\n // Extract local predefined states from the full styles object\n const localStates = extractLocalPredefinedStates(styles);\n\n // Only include local predefined states that are actually referenced in this chunk\n if (Object.keys(localStates).length > 0) {\n const referencedStates = extractPredefinedStateRefs(chunkStylesStr);\n const relevantLocalStates: string[] = [];\n\n for (const stateName of referencedStates) {\n if (localStates[stateName]) {\n relevantLocalStates.push(`${stateName}=${localStates[stateName]}`);\n }\n }\n\n // Add relevant local states to the cache key (sorted for stability)\n if (relevantLocalStates.length > 0) {\n relevantLocalStates.sort();\n parts.unshift(`[states:${relevantLocalStates.join('|')}]`);\n }\n }\n\n // Use null character as separator (safe, not in JSON output)\n return parts.join('\\0');\n}\n"],"mappings":";;;;;;;;;;;;;;;;;AAqBA,SAAS,gBAAgB,OAAwB;AAC/C,KAAI,UAAU,KACZ,QAAO;AAET,KAAI,UAAU,OACZ,QAAO;AAET,KAAI,OAAO,UAAU,SACnB,QAAO,KAAK,UAAU,MAAM;AAE9B,KAAI,MAAM,QAAQ,MAAM,CACtB,QAAO,MAAM,MAAM,IAAI,gBAAgB,CAAC,KAAK,IAAI,GAAG;CAGtD,MAAM,MAAM;CACZ,MAAM,aAAa,OAAO,KAAK,IAAI,CAAC,MAAM;CAC1C,MAAM,QAAkB,EAAE;AAC1B,MAAK,MAAM,OAAO,WAChB,KAAI,IAAI,SAAS,OACf,OAAM,KAAK,GAAG,KAAK,UAAU,IAAI,CAAC,GAAG,gBAAgB,IAAI,KAAK,GAAG;AAGrE,QAAO,MAAM,MAAM,KAAK,IAAI,GAAG;;;;;;;;;;;;;;;;AAiBjC,SAAgB,sBACd,QACA,WACA,WACQ;CAER,MAAM,QAAkB,CAAC,UAAU;CAGnC,MAAM,aAAa,UAAU,OAAO,CAAC,MAAM;CAG3C,IAAI,iBAAiB;AAErB,MAAK,MAAM,OAAO,YAAY;EAC5B,MAAM,QAAQ,OAAO;AACrB,MAAI,UAAU,QAAW;GAEvB,MAAM,aAAa,gBAAgB,MAAM;AACzC,SAAM,KAAK,GAAG,IAAI,GAAG,aAAa;AAClC,qBAAkB;;;CAKtB,MAAM,cAAc,6BAA6B,OAAO;AAGxD,KAAI,OAAO,KAAK,YAAY,CAAC,SAAS,GAAG;EACvC,MAAM,mBAAmB,2BAA2B,eAAe;EACnE,MAAM,sBAAgC,EAAE;AAExC,OAAK,MAAM,aAAa,iBACtB,KAAI,YAAY,WACd,qBAAoB,KAAK,GAAG,UAAU,GAAG,YAAY,aAAa;AAKtE,MAAI,oBAAoB,SAAS,GAAG;AAClC,uBAAoB,MAAM;AAC1B,SAAM,QAAQ,WAAW,oBAAoB,KAAK,IAAI,CAAC,GAAG;;;AAK9D,QAAO,MAAM,KAAK,KAAK"}
1
+ {"version":3,"file":"cacheKey.js","names":[],"sources":["../../src/chunks/cacheKey.ts"],"sourcesContent":["/**\n * Chunk-specific cache key generation.\n *\n * Generates cache keys that only include styles relevant to a specific chunk,\n * enabling more granular caching and reuse.\n *\n * Enhanced to support predefined states:\n * - Global predefined states don't affect cache keys (constant across app)\n * - Local predefined states only affect cache keys if referenced in the chunk\n */\n\nimport {\n extractLocalPredefinedStates,\n extractPredefinedStateRefs,\n} from '../states';\nimport type { Styles } from '../styles/types';\n\nconst _stableStringifyCache = new WeakMap<object, string>();\n\n/**\n * Recursively serialize a value with sorted keys for stable output.\n * This ensures that {a: 1, b: 2} and {b: 2, a: 1} produce the same string.\n * Uses a WeakMap cache for object values to avoid re-serializing the same references.\n */\nfunction stableStringify(value: unknown): string {\n if (value === null) {\n return 'null';\n }\n if (value === undefined) {\n return 'undefined';\n }\n if (typeof value !== 'object') {\n return JSON.stringify(value);\n }\n\n const cached = _stableStringifyCache.get(value as object);\n if (cached !== undefined) return cached;\n\n let result: string;\n if (Array.isArray(value)) {\n result = '[' + value.map(stableStringify).join(',') + ']';\n } else {\n const obj = value as Record<string, unknown>;\n const sortedKeys = Object.keys(obj).sort();\n const parts: string[] = [];\n for (const key of sortedKeys) {\n if (obj[key] !== undefined) {\n parts.push(`${JSON.stringify(key)}:${stableStringify(obj[key])}`);\n }\n }\n result = '{' + parts.join(',') + '}';\n }\n\n _stableStringifyCache.set(value as object, result);\n return result;\n}\n\n/**\n * Generate a cache key for a specific chunk.\n *\n * Only includes the styles that belong to this chunk, allowing\n * chunks to be cached independently.\n *\n * Also includes relevant local predefined states that are referenced\n * by this chunk's styles.\n *\n * @param styles - The full styles object\n * @param chunkName - Name of the chunk\n * @param styleKeys - Keys of styles belonging to this chunk\n * @returns A stable cache key string\n */\nexport function generateChunkCacheKey(\n styles: Styles,\n chunkName: string,\n styleKeys: string[],\n): string {\n // Start with chunk name for namespace separation\n const parts: string[] = [chunkName];\n\n // styleKeys are already sorted by categorizeStyleKeys\n let chunkStylesStr = '';\n\n for (const key of styleKeys) {\n const value = styles[key];\n if (value !== undefined) {\n // Use stable stringify for consistent serialization regardless of key order\n const serialized = stableStringify(value);\n parts.push(`${key}:${serialized}`);\n chunkStylesStr += serialized;\n }\n }\n\n // Extract local predefined states from the full styles object\n const localStates = extractLocalPredefinedStates(styles);\n\n // Only include local predefined states that are actually referenced in this chunk\n if (Object.keys(localStates).length > 0) {\n const referencedStates = extractPredefinedStateRefs(chunkStylesStr);\n const relevantLocalStates: string[] = [];\n\n for (const stateName of referencedStates) {\n if (localStates[stateName]) {\n relevantLocalStates.push(`${stateName}=${localStates[stateName]}`);\n }\n }\n\n // Add relevant local states to the cache key (sorted for stability)\n if (relevantLocalStates.length > 0) {\n relevantLocalStates.sort();\n parts.unshift(`[states:${relevantLocalStates.join('|')}]`);\n }\n }\n\n // Use null character as separator (safe, not in JSON output)\n return parts.join('\\0');\n}\n"],"mappings":";;;;;;;;;;;;;AAiBA,MAAM,wCAAwB,IAAI,SAAyB;;;;;;AAO3D,SAAS,gBAAgB,OAAwB;AAC/C,KAAI,UAAU,KACZ,QAAO;AAET,KAAI,UAAU,OACZ,QAAO;AAET,KAAI,OAAO,UAAU,SACnB,QAAO,KAAK,UAAU,MAAM;CAG9B,MAAM,SAAS,sBAAsB,IAAI,MAAgB;AACzD,KAAI,WAAW,OAAW,QAAO;CAEjC,IAAI;AACJ,KAAI,MAAM,QAAQ,MAAM,CACtB,UAAS,MAAM,MAAM,IAAI,gBAAgB,CAAC,KAAK,IAAI,GAAG;MACjD;EACL,MAAM,MAAM;EACZ,MAAM,aAAa,OAAO,KAAK,IAAI,CAAC,MAAM;EAC1C,MAAM,QAAkB,EAAE;AAC1B,OAAK,MAAM,OAAO,WAChB,KAAI,IAAI,SAAS,OACf,OAAM,KAAK,GAAG,KAAK,UAAU,IAAI,CAAC,GAAG,gBAAgB,IAAI,KAAK,GAAG;AAGrE,WAAS,MAAM,MAAM,KAAK,IAAI,GAAG;;AAGnC,uBAAsB,IAAI,OAAiB,OAAO;AAClD,QAAO;;;;;;;;;;;;;;;;AAiBT,SAAgB,sBACd,QACA,WACA,WACQ;CAER,MAAM,QAAkB,CAAC,UAAU;CAGnC,IAAI,iBAAiB;AAErB,MAAK,MAAM,OAAO,WAAW;EAC3B,MAAM,QAAQ,OAAO;AACrB,MAAI,UAAU,QAAW;GAEvB,MAAM,aAAa,gBAAgB,MAAM;AACzC,SAAM,KAAK,GAAG,IAAI,GAAG,aAAa;AAClC,qBAAkB;;;CAKtB,MAAM,cAAc,6BAA6B,OAAO;AAGxD,KAAI,OAAO,KAAK,YAAY,CAAC,SAAS,GAAG;EACvC,MAAM,mBAAmB,2BAA2B,eAAe;EACnE,MAAM,sBAAgC,EAAE;AAExC,OAAK,MAAM,aAAa,iBACtB,KAAI,YAAY,WACd,qBAAoB,KAAK,GAAG,UAAU,GAAG,YAAY,aAAa;AAKtE,MAAI,oBAAoB,SAAS,GAAG;AAClC,uBAAoB,MAAM;AAC1B,SAAM,QAAQ,WAAW,oBAAoB,KAAK,IAAI,CAAC,GAAG;;;AAK9D,QAAO,MAAM,KAAK,KAAK"}
@@ -130,8 +130,7 @@ const DISPLAY_CHUNK_STYLES = [
130
130
  "whiteSpace",
131
131
  "flow",
132
132
  "gap",
133
- "scrollbar",
134
- "styledScrollbar"
133
+ "scrollbar"
135
134
  ];
136
135
  /**
137
136
  * Layout chunk - flex/grid alignment and grid templates