@tenphi/tasty 0.0.0-snapshot.a3ac603 → 0.0.0-snapshot.af1baa9

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 (200) hide show
  1. package/README.md +304 -34
  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 +53 -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 +91 -11
  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 +58 -32
  35. package/dist/injector/injector.js.map +1 -1
  36. package/dist/injector/sheet-manager.d.ts +16 -7
  37. package/dist/injector/sheet-manager.js +24 -9
  38. package/dist/injector/sheet-manager.js.map +1 -1
  39. package/dist/injector/types.d.ts +9 -0
  40. package/dist/parser/classify.js +2 -1
  41. package/dist/parser/classify.js.map +1 -1
  42. package/dist/parser/parser.js +1 -1
  43. package/dist/pipeline/conditions.js +14 -8
  44. package/dist/pipeline/conditions.js.map +1 -1
  45. package/dist/pipeline/index.d.ts +1 -1
  46. package/dist/pipeline/index.js +83 -54
  47. package/dist/pipeline/index.js.map +1 -1
  48. package/dist/pipeline/materialize.js +404 -207
  49. package/dist/pipeline/materialize.js.map +1 -1
  50. package/dist/pipeline/parseStateKey.d.ts +1 -1
  51. package/dist/pipeline/parseStateKey.js +37 -20
  52. package/dist/pipeline/parseStateKey.js.map +1 -1
  53. package/dist/pipeline/simplify.js +111 -152
  54. package/dist/pipeline/simplify.js.map +1 -1
  55. package/dist/pipeline/warnings.js +18 -0
  56. package/dist/pipeline/warnings.js.map +1 -0
  57. package/dist/plugins/okhsl-plugin.js +2 -275
  58. package/dist/plugins/okhsl-plugin.js.map +1 -1
  59. package/dist/plugins/types.d.ts +9 -2
  60. package/dist/properties/index.js +82 -17
  61. package/dist/properties/index.js.map +1 -1
  62. package/dist/properties/property-type-resolver.d.ts +24 -0
  63. package/dist/properties/property-type-resolver.js +91 -0
  64. package/dist/properties/property-type-resolver.js.map +1 -0
  65. package/dist/ssr/astro.d.ts +29 -0
  66. package/dist/ssr/astro.js +65 -0
  67. package/dist/ssr/astro.js.map +1 -0
  68. package/dist/ssr/async-storage.d.ts +17 -0
  69. package/dist/ssr/async-storage.js +35 -0
  70. package/dist/ssr/async-storage.js.map +1 -0
  71. package/dist/ssr/collect-auto-properties.js +40 -0
  72. package/dist/ssr/collect-auto-properties.js.map +1 -0
  73. package/dist/ssr/collector.d.ts +85 -0
  74. package/dist/ssr/collector.js +183 -0
  75. package/dist/ssr/collector.js.map +1 -0
  76. package/dist/ssr/context.d.ts +8 -0
  77. package/dist/ssr/context.js +14 -0
  78. package/dist/ssr/context.js.map +1 -0
  79. package/dist/ssr/format-global-rules.js +22 -0
  80. package/dist/ssr/format-global-rules.js.map +1 -0
  81. package/dist/ssr/format-keyframes.js +70 -0
  82. package/dist/ssr/format-keyframes.js.map +1 -0
  83. package/dist/ssr/format-property.js +50 -0
  84. package/dist/ssr/format-property.js.map +1 -0
  85. package/dist/ssr/format-rules.js +70 -0
  86. package/dist/ssr/format-rules.js.map +1 -0
  87. package/dist/ssr/hydrate.d.ts +22 -0
  88. package/dist/ssr/hydrate.js +50 -0
  89. package/dist/ssr/hydrate.js.map +1 -0
  90. package/dist/ssr/index.d.ts +5 -0
  91. package/dist/ssr/index.js +12 -0
  92. package/dist/ssr/index.js.map +1 -0
  93. package/dist/ssr/next.d.ts +45 -0
  94. package/dist/ssr/next.js +71 -0
  95. package/dist/ssr/next.js.map +1 -0
  96. package/dist/ssr/ssr-collector-ref.js +12 -0
  97. package/dist/ssr/ssr-collector-ref.js.map +1 -0
  98. package/dist/states/index.js +10 -257
  99. package/dist/states/index.js.map +1 -1
  100. package/dist/styles/align.d.ts +1 -1
  101. package/dist/styles/align.js.map +1 -1
  102. package/dist/styles/border.d.ts +1 -1
  103. package/dist/styles/border.js.map +1 -1
  104. package/dist/styles/color.d.ts +2 -2
  105. package/dist/styles/color.js +9 -5
  106. package/dist/styles/color.js.map +1 -1
  107. package/dist/styles/createStyle.js +25 -22
  108. package/dist/styles/createStyle.js.map +1 -1
  109. package/dist/styles/fade.d.ts +1 -1
  110. package/dist/styles/fade.js.map +1 -1
  111. package/dist/styles/fill.d.ts +14 -16
  112. package/dist/styles/fill.js +6 -5
  113. package/dist/styles/fill.js.map +1 -1
  114. package/dist/styles/flow.d.ts +3 -3
  115. package/dist/styles/flow.js.map +1 -1
  116. package/dist/styles/index.js +1 -1
  117. package/dist/styles/justify.d.ts +1 -1
  118. package/dist/styles/justify.js.map +1 -1
  119. package/dist/styles/predefined.d.ts +0 -2
  120. package/dist/styles/predefined.js +1 -4
  121. package/dist/styles/predefined.js.map +1 -1
  122. package/dist/styles/preset.js +1 -1
  123. package/dist/styles/preset.js.map +1 -1
  124. package/dist/styles/radius.d.ts +1 -1
  125. package/dist/styles/radius.js.map +1 -1
  126. package/dist/styles/scrollbar.d.ts +9 -5
  127. package/dist/styles/scrollbar.js +25 -82
  128. package/dist/styles/scrollbar.js.map +1 -1
  129. package/dist/styles/shadow.d.ts +2 -2
  130. package/dist/styles/shadow.js.map +1 -1
  131. package/dist/styles/transition.d.ts +1 -1
  132. package/dist/styles/transition.js +1 -1
  133. package/dist/styles/transition.js.map +1 -1
  134. package/dist/styles/types.d.ts +24 -14
  135. package/dist/tasty.d.ts +67 -68
  136. package/dist/tasty.js +40 -12
  137. package/dist/tasty.js.map +1 -1
  138. package/dist/types.d.ts +1 -1
  139. package/dist/utils/cache-wrapper.js +4 -8
  140. package/dist/utils/cache-wrapper.js.map +1 -1
  141. package/dist/utils/color-math.d.ts +46 -0
  142. package/dist/utils/color-math.js +749 -0
  143. package/dist/utils/color-math.js.map +1 -0
  144. package/dist/utils/color-space.d.ts +5 -0
  145. package/dist/utils/color-space.js +229 -0
  146. package/dist/utils/color-space.js.map +1 -0
  147. package/dist/utils/colors.d.ts +1 -1
  148. package/dist/utils/colors.js +3 -1
  149. package/dist/utils/colors.js.map +1 -1
  150. package/dist/utils/dotize.d.ts +1 -1
  151. package/dist/utils/has-keys.js +13 -0
  152. package/dist/utils/has-keys.js.map +1 -0
  153. package/dist/utils/mod-attrs.js +2 -2
  154. package/dist/utils/mod-attrs.js.map +1 -1
  155. package/dist/utils/process-tokens.d.ts +3 -13
  156. package/dist/utils/process-tokens.js +18 -98
  157. package/dist/utils/process-tokens.js.map +1 -1
  158. package/dist/utils/selector-transform.js +32 -0
  159. package/dist/utils/selector-transform.js.map +1 -0
  160. package/dist/utils/string.js.map +1 -1
  161. package/dist/utils/styles.d.ts +4 -86
  162. package/dist/utils/styles.js +34 -396
  163. package/dist/utils/styles.js.map +1 -1
  164. package/dist/utils/typography.d.ts +24 -13
  165. package/dist/utils/typography.js +6 -16
  166. package/dist/utils/typography.js.map +1 -1
  167. package/dist/zero/babel.d.ts +53 -6
  168. package/dist/zero/babel.js +76 -12
  169. package/dist/zero/babel.js.map +1 -1
  170. package/dist/zero/extractor.js +66 -1
  171. package/dist/zero/extractor.js.map +1 -1
  172. package/dist/zero/next.d.ts +44 -30
  173. package/dist/zero/next.js +102 -38
  174. package/dist/zero/next.js.map +1 -1
  175. package/docs/PIPELINE.md +519 -0
  176. package/docs/README.md +30 -0
  177. package/docs/adoption.md +294 -0
  178. package/docs/comparison.md +415 -0
  179. package/docs/configuration.md +265 -0
  180. package/docs/debug.md +318 -0
  181. package/docs/design-system.md +401 -0
  182. package/docs/dsl.md +542 -0
  183. package/docs/getting-started.md +215 -0
  184. package/docs/injector.md +528 -0
  185. package/docs/methodology.md +501 -0
  186. package/docs/runtime.md +341 -0
  187. package/docs/ssr.md +382 -0
  188. package/docs/styles.md +574 -0
  189. package/docs/tasty-static.md +431 -0
  190. package/package.json +95 -28
  191. package/dist/styles/styledScrollbar.d.ts +0 -47
  192. package/dist/styles/styledScrollbar.js +0 -38
  193. package/dist/styles/styledScrollbar.js.map +0 -1
  194. package/dist/tokens/typography.d.ts +0 -19
  195. package/dist/tokens/typography.js +0 -237
  196. package/dist/tokens/typography.js.map +0 -1
  197. package/dist/utils/hsl-to-rgb.js +0 -38
  198. package/dist/utils/hsl-to-rgb.js.map +0 -1
  199. package/dist/utils/okhsl-to-rgb.js +0 -296
  200. package/dist/utils/okhsl-to-rgb.js.map +0 -1
package/README.md CHANGED
@@ -17,22 +17,23 @@
17
17
 
18
18
  ---
19
19
 
20
- Most CSS-in-JS libraries generate CSS. Tasty generates **mutually exclusive CSS** — for any combination of states, exactly one rule matches per property. No cascade conflicts, no specificity wars, no `!important` hacks. Components compose and extend without breaking each other. That's the foundation everything else is built on.
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.
21
21
 
22
- On top of that foundation, Tasty gives you a concise, CSS-like DSL with design tokens, custom units, responsive states, container queries, dark mode, sub-element styling, and zero-runtime extraction all in one coherent system that scales from a single component to an enterprise design system.
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.
23
23
 
24
24
  ## Why Tasty
25
25
 
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.
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
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.
29
- - **Design-system native** — Color tokens (`#primary`), spacing units (`2x`), typography presets (`h1`, `t2`), border radius (`1r`), and recipes are first-class primitives, not afterthoughts.
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. Start with the [Style DSL](docs/dsl.md), then use [Style Properties](docs/styles.md) as the handler reference.
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).
30
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.
31
- - **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.
32
+ - **Runtime, zero-runtime, or SSR — your call** — Use `tasty()` for dynamic React components with runtime injection, `tastyStatic()` with the Babel plugin for zero-runtime CSS extraction, or enable SSR with zero-cost client hydration for Next.js, Astro, or any React framework. Same DSL, same tokens, same output.
32
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.
33
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.
34
35
  - **Composable and extensible by design** — Extend any component's styles with proper merge semantics, and evolve built-in behavior through configuration and plugins.
35
- - **TypeScript-first** — Full type definitions, module augmentation for custom properties, and autocomplete for tokens, presets, and themes.
36
+ - **TypeScript-first** — Full type definitions, module augmentation for custom properties, and autocomplete for tokens, presets, and themes. See [Configuration](docs/configuration.md).
36
37
 
37
38
  ## Installation
38
39
 
@@ -40,6 +41,35 @@ On top of that foundation, Tasty gives you a concise, CSS-like DSL with design t
40
41
  pnpm add @tenphi/tasty
41
42
  ```
42
43
 
44
+ Requirements:
45
+
46
+ - Node.js 20+
47
+ - React 18+ (peer dependency for the React entry points)
48
+ - `pnpm`, `npm`, or `yarn`
49
+
50
+ Other package managers:
51
+
52
+ ```bash
53
+ npm add @tenphi/tasty
54
+ yarn add @tenphi/tasty
55
+ ```
56
+
57
+ ## Start Here
58
+
59
+ - **[Getting Started](docs/getting-started.md)** — the canonical onboarding path: install, first component, `configure()`, ESLint, editor tooling, and rendering mode selection
60
+ - **[Docs Hub](docs/README.md)** — choose docs by role and task: runtime, zero-runtime, SSR, design-system authoring, internals, and debugging
61
+ - **[Methodology](docs/methodology.md)** — the recommended component model and public API conventions for design-system code
62
+
63
+ ## Choose a Rendering Mode
64
+
65
+ | Mode | Entry point | Best for | Trade-off |
66
+ |------|-------------|----------|-----------|
67
+ | **Runtime** | `@tenphi/tasty` | Interactive apps and design systems | Full feature set; CSS is generated on demand at runtime |
68
+ | **Zero-runtime** | `@tenphi/tasty/static` | Static sites, SSG, landing pages | Requires the Babel plugin; no component-level `styleProps` or runtime-only APIs |
69
+ | **SSR** | `@tenphi/tasty/ssr/*` | Next.js, Astro, and other streaming React SSR setups | Uses runtime `tasty()` with server-collected CSS and hydration cache transfer |
70
+
71
+ All three share the same DSL, tokens, units, and state mappings. See [Getting Started](docs/getting-started.md#choosing-a-rendering-mode), [Zero Runtime](docs/tasty-static.md), and [Server-Side Rendering](docs/ssr.md).
72
+
43
73
  ## Quick Start
44
74
 
45
75
  ### Create a styled component
@@ -66,6 +96,8 @@ const Card = tasty({
66
96
 
67
97
  Every value maps to CSS you'd recognize — but with tokens and units that keep your design system consistent by default.
68
98
 
99
+ The examples below assume you'll define your own tokens and shared state aliases with `configure()`. For a copy-paste setup that works end-to-end, follow [Getting Started](docs/getting-started.md).
100
+
69
101
  ### Add state-driven styles
70
102
 
71
103
  ```tsx
@@ -130,14 +162,78 @@ configure({
130
162
 
131
163
  Predefined states turn complex selector logic into single tokens. Use `@mobile` instead of writing media query expressions in every component.
132
164
 
165
+ ### CSS properties as props
166
+
167
+ 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.
168
+
169
+ 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.
170
+
171
+ ```tsx
172
+ import { tasty, FLOW_STYLES, POSITION_STYLES } from '@tenphi/tasty';
173
+
174
+ const Space = tasty({
175
+ styles: {
176
+ display: 'flex',
177
+ flow: 'column',
178
+ gap: '1x',
179
+ },
180
+ styleProps: FLOW_STYLES,
181
+ });
182
+
183
+ const Button = tasty({
184
+ as: 'button',
185
+ styles: {
186
+ padding: '1.5x 3x',
187
+ fill: '#primary',
188
+ color: '#primary-text',
189
+ radius: true,
190
+ },
191
+ styleProps: POSITION_STYLES,
192
+ });
193
+ ```
194
+
195
+ Now you can compose layout and tweak component positioning directly in JSX:
196
+
197
+ ```tsx
198
+ <Space flow="row" gap="2x" placeItems="center">
199
+ <Title>Dashboard</Title>
200
+ <Button placeSelf="end">Add Item</Button>
201
+ </Space>
202
+ ```
203
+
204
+ The same props also support state maps, so responsive values use the exact same API:
205
+
206
+ ```tsx
207
+ <Space
208
+ flow={{ '': 'column', '@tablet': 'row' }}
209
+ gap={{ '': '2x', '@tablet': '4x' }}
210
+ >
211
+ <Sidebar />
212
+ <Content />
213
+ </Space>
214
+ ```
215
+
216
+ 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()`.
217
+
133
218
  ## How It Actually Works
134
219
 
135
220
  This is the core idea that makes everything else possible.
136
221
 
222
+ 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)**.
223
+
137
224
  Traditional CSS has two structural problems.
138
225
 
139
226
  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.
140
227
 
228
+ A small example makes this tangible. Two rules for a button's background:
229
+
230
+ ```css
231
+ .btn:hover { background: dodgerblue; }
232
+ .btn[disabled] { background: gray; }
233
+ ```
234
+
235
+ 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.
236
+
141
237
  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.
142
238
 
143
239
  Tasty solves both problems at once: **every state mapping compiles into mutually exclusive selectors.**
@@ -157,7 +253,33 @@ const Text = tasty({
157
253
  });
158
254
  ```
159
255
 
160
- If `@dark` expands to `@root(schema=dark) | (!@root(schema) & @media(prefers-color-scheme: dark))`, Tasty generates:
256
+ 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:
257
+
258
+ ```css
259
+ /* First attempt — the @media branch is too broad */
260
+ .t0 { color: var(--text-color); }
261
+ :root[data-schema="dark"] .t0 { color: var(--text-on-dark-color); }
262
+ @media (prefers-color-scheme: dark) {
263
+ .t0 { color: var(--text-on-dark-color); }
264
+ }
265
+ ```
266
+
267
+ The `@media` branch fires even when `data-schema="light"` is explicitly set. Fix that:
268
+
269
+ ```css
270
+ /* Second attempt — @media is scoped, but the default is still too broad */
271
+ .t0 { color: var(--text-color); }
272
+ :root[data-schema="dark"] .t0 { color: var(--text-on-dark-color); }
273
+ @media (prefers-color-scheme: dark) {
274
+ :root:not([data-schema]) .t0 { color: var(--text-on-dark-color); }
275
+ }
276
+ ```
277
+
278
+ 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."
279
+
280
+ 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:
281
+
282
+ Tasty generates the correct version automatically:
161
283
 
162
284
  ```css
163
285
  /* Branch 1: Explicit dark schema */
@@ -189,8 +311,12 @@ Every rule is guarded by the negation of higher-priority rules. No two rules can
189
311
 
190
312
  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.
191
313
 
314
+ [Try it in the Cube UI Kit Storybook playground →](https://cube-ui-kit.vercel.app/?path=/story/getting-started-tasty-playground--playground)
315
+
192
316
  ## Capabilities
193
317
 
318
+ This section is a quick product tour. For the canonical guides and references, start from the [Docs Hub](docs/README.md).
319
+
194
320
  ### Design Tokens and Custom Units
195
321
 
196
322
  Tokens are first-class. Colors use `#name` syntax. Spacing, radius, and border width use multiplier units tied to CSS custom properties:
@@ -226,7 +352,7 @@ Every style property accepts a state mapping object. Keys can be combined with b
226
352
  | Class selector (supported) | `.is-active` | `.is-active` |
227
353
  | Media query | `@media(w < 768px)` | `@media (width < 768px)` |
228
354
  | Container query | `@(panel, w >= 300px)` | `@container panel (width >= 300px)` |
229
- | Root state | `@root(theme=dark)` | `:root[data-theme="dark"]` |
355
+ | Root state | `@root(schema=dark)` | `:root[data-schema="dark"]` |
230
356
  | Parent state | `@parent(theme=danger)` | `:is([data-theme="danger"] *)` |
231
357
  | Feature query | `@supports(display: grid)` | `@supports (display: grid)` |
232
358
  | Entry animation | `@starting` | `@starting-style` |
@@ -310,22 +436,15 @@ const ProfileCard = tasty({
310
436
 
311
437
  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'`.
312
438
 
313
- ### Keyframes and `@property`
439
+ ### Auto-Inferred `@property`
314
440
 
315
- Modern CSS features are natively supported:
441
+ 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>`.
316
442
 
317
- Color tokens are automatically registered as typed properties (`<color>`), so token-based transitions work without extra setup.
443
+ 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:
318
444
 
319
445
  ```tsx
320
446
  const Pulse = tasty({
321
447
  styles: {
322
- '@properties': {
323
- '$pulse-scale': {
324
- syntax: '<number>',
325
- inherits: false,
326
- initialValue: 1,
327
- },
328
- },
329
448
  animation: 'pulse 2s infinite',
330
449
  transform: 'scale($pulse-scale)',
331
450
  '@keyframes': {
@@ -338,6 +457,20 @@ const Pulse = tasty({
338
457
  });
339
458
  ```
340
459
 
460
+ 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.
461
+
462
+ If you prefer full manual control, disable auto-inference globally with `configure({ autoPropertyTypes: false })`.
463
+
464
+ ### Explicit `@properties`
465
+
466
+ Declare `@properties` yourself only when you need to override the defaults, for example to set `inherits: false` or provide a custom `initialValue`:
467
+
468
+ ```tsx
469
+ '@properties': {
470
+ '$pulse-scale': { syntax: '<number>', inherits: false, initialValue: 1 },
471
+ },
472
+ ```
473
+
341
474
  ### React Hooks
342
475
 
343
476
  For cases where you don't need a full component:
@@ -347,8 +480,8 @@ import { useStyles, useGlobalStyles, useRawCSS } from '@tenphi/tasty';
347
480
 
348
481
  function App() {
349
482
  const { className } = useStyles({ padding: '2x', fill: '#surface' });
350
- useGlobalStyles(':root', { '#primary': 'purple', '$gap': '8px' });
351
- useRawCSS('body { margin: 0; }');
483
+ useGlobalStyles('body', { margin: '0' });
484
+ useRawCSS('@font-face { font-family: "Custom"; src: url(...); }');
352
485
 
353
486
  return <main className={className}>...</main>;
354
487
  }
@@ -380,7 +513,7 @@ module.exports = {
380
513
  ['@tenphi/tasty/babel-plugin', {
381
514
  output: 'public/tasty.css',
382
515
  config: {
383
- states: { '@dark': '@root(theme=dark)' },
516
+ states: { '@dark': '@root(schema=dark)' },
384
517
  },
385
518
  }],
386
519
  ],
@@ -403,17 +536,47 @@ module.exports = {
403
536
 
404
537
  Both share the same DSL, tokens, units, state mappings, and recipes.
405
538
 
406
- ### Runtime Performance
539
+ ### Server-Side Rendering
407
540
 
408
- If you choose the runtime approach, performance is usually a non-issue in practice:
541
+ 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+.
409
542
 
410
- - CSS is generated and injected only when styles are actually used.
411
- - Multi-level caching avoids repeated parsing and style recomputation.
412
- - Styles are split into reusable chunks and applied as multiple class names, so matching chunks can be reused across components instead of re-injected.
413
- - Style normalization guarantees equivalent style input resolves to the same chunks, improving deduplication hit rates.
414
- - A style garbage collector removes unused styles/chunks over time.
415
- - A dedicated style injector minimizes DOM/style-tag overhead.
416
- - This approach is validated in enterprise-scale apps where runtime styling overhead is not noticeable in normal UI flows.
543
+ **Next.js setup:**
544
+
545
+ ```tsx
546
+ // app/tasty-registry.tsx
547
+ 'use client';
548
+
549
+ import { TastyRegistry } from '@tenphi/tasty/ssr/next';
550
+
551
+ export default function TastyStyleRegistry({
552
+ children,
553
+ }: {
554
+ children: React.ReactNode;
555
+ }) {
556
+ return <TastyRegistry>{children}</TastyRegistry>;
557
+ }
558
+ ```
559
+
560
+ ```tsx
561
+ // app/layout.tsx
562
+ import TastyStyleRegistry from './tasty-registry';
563
+
564
+ export default function RootLayout({
565
+ children,
566
+ }: {
567
+ children: React.ReactNode;
568
+ }) {
569
+ return (
570
+ <html>
571
+ <body>
572
+ <TastyStyleRegistry>{children}</TastyStyleRegistry>
573
+ </body>
574
+ </html>
575
+ );
576
+ }
577
+ ```
578
+
579
+ See the [full SSR guide](docs/ssr.md) for Astro integration, streaming SSR, generic framework usage, troubleshooting, and the current requirements.
417
580
 
418
581
  ## Entry Points
419
582
 
@@ -425,6 +588,69 @@ If you choose the runtime approach, performance is usually a non-issue in practi
425
588
  | `@tenphi/tasty/babel-plugin` | Babel plugin for zero-runtime CSS extraction | Node |
426
589
  | `@tenphi/tasty/zero` | Programmatic extraction API | Node |
427
590
  | `@tenphi/tasty/next` | Next.js integration wrapper | Node |
591
+ | `@tenphi/tasty/ssr` | Core SSR API (collector, context, hydration) | Node |
592
+ | `@tenphi/tasty/ssr/next` | Next.js App Router SSR integration | Node |
593
+ | `@tenphi/tasty/ssr/astro` | Astro middleware + auto-hydration | Node / Browser |
594
+
595
+ ## Browser Requirements
596
+
597
+ Tasty's exclusive selector system relies on modern CSS pseudo-class syntax:
598
+
599
+ - **`:is()`** — available across all major browsers since January 2021 ([MDN Baseline](https://developer.mozilla.org/en-US/docs/Web/CSS/:is)).
600
+ - **Level-4 `:not()` with selector lists** — Chrome/Edge 88+, Firefox 84+, Safari 9+, Opera 75+.
601
+ - **Not supported:** IE 11.
602
+
603
+ ## Performance
604
+
605
+ ### Bundle Size
606
+
607
+ All sizes measured with [size-limit](https://github.com/ai/size-limit) — minified and brotli-compressed, including all dependencies.
608
+
609
+ | Entry point | Size |
610
+ |-------------|------|
611
+ | `@tenphi/tasty` (runtime + SSR) | ~44 kB |
612
+ | `@tenphi/tasty/core` (runtime, no SSR) | ~41 kB |
613
+ | `@tenphi/tasty/static` (zero-runtime) | ~1.5 kB |
614
+
615
+ Run `pnpm size` for exact up-to-date numbers.
616
+
617
+ ### Runtime Benchmarks
618
+
619
+ 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).
620
+
621
+ | Operation | ops/sec | Latency (mean) |
622
+ |-----------|--------:|---------------:|
623
+ | `renderStyles` — 5 flat properties (cold) | ~72,000 | ~14 us |
624
+ | `renderStyles` — state map with media/hover/modifier (cold) | ~22,000 | ~46 us |
625
+ | `renderStyles` — same styles (cached) | ~7,200,000 | ~0.14 us |
626
+ | `parseStateKey` — simple key like `:hover` (cold) | ~1,200,000 | ~0.9 us |
627
+ | `parseStateKey` — complex OR/AND/NOT key (cold) | ~190,000 | ~5 us |
628
+ | `parseStateKey` — any key (cached) | ~3,300,000–8,900,000 | ~0.1–0.3 us |
629
+ | `parseStyle` — value tokens like `2x 4x` (cold) | ~345,000 | ~3 us |
630
+ | `parseStyle` — color tokens (cold) | ~525,000 | ~1.9 us |
631
+ | `parseStyle` — any value (cached) | ~15,500,000 | ~0.06 us |
632
+
633
+ "Cold" benchmarks use unique inputs to bypass all caches. Cached benchmarks reuse a single input and measure the LRU hot path.
634
+
635
+ Run `pnpm bench` to reproduce.
636
+
637
+ #### What This Means in Practice
638
+
639
+ - **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.
640
+ - **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.
641
+ - **Cache multipliers are 30x–100x.** This confirms the multi-level LRU architecture (parser, state-key, simplify, condition, pipeline) is delivering real value.
642
+ - **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).
643
+ - **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.
644
+
645
+ ### How It Stays Fast
646
+
647
+ - CSS is generated and injected only when styles are actually used.
648
+ - Multi-level caching avoids repeated parsing and style recomputation.
649
+ - Styles are split into reusable chunks and applied as multiple class names, so matching chunks can be reused across components instead of re-injected.
650
+ - Style normalization guarantees equivalent style input resolves to the same chunks, improving deduplication hit rates.
651
+ - A style garbage collector removes unused styles/chunks over time.
652
+ - A dedicated style injector minimizes DOM/style-tag overhead.
653
+ - This approach is validated in enterprise-scale apps where runtime styling overhead is not noticeable in normal UI flows.
428
654
 
429
655
  ## Ecosystem
430
656
 
@@ -432,7 +658,7 @@ Tasty is the core of a production-ready styling platform. These companion tools
432
658
 
433
659
  ### [ESLint Plugin](https://github.com/tenphi/eslint-plugin-tasty)
434
660
 
435
- `@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.
661
+ `@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.
436
662
 
437
663
  ```bash
438
664
  pnpm add -D @tenphi/eslint-plugin-tasty
@@ -467,18 +693,62 @@ Syntax highlighting for Tasty styles in TypeScript, TSX, JavaScript, and JSX. Hi
467
693
  <img src="assets/tasty-vscode-highlight.png" width="512" alt="Tasty VS Code syntax highlighting example">
468
694
  </p>
469
695
 
470
- ### [Cube UI Kit](https://github.com/cube-js/cube-ui-kit)
696
+ ## Built with Tasty
697
+
698
+ ### [tasty.style](https://tasty.style) ([source](https://github.com/tenphi/tasty.style))
699
+
700
+ 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.
701
+
702
+ ### [Cube Cloud](https://cube.dev/)
703
+
704
+ 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.
705
+
706
+ ### [Cube Cloud for Excel and Google Sheets](https://cube.dev/)
707
+
708
+ 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.
709
+
710
+ ### [Cube UI Kit](https://github.com/cube-js/cube-ui-kit) ([storybook](https://cube-ui-kit.vercel.app/))
471
711
 
472
712
  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.
473
713
 
474
714
  ## Documentation
475
715
 
476
- - **[Runtime API (tasty)](docs/tasty.md)** Full runtime styling documentation: component creation, state mappings, sub-elements, variants, hooks, and configuration
716
+ Start from the docs hub if you want the shortest path to the right guide for your role or rendering mode.
717
+
718
+ - **[Docs Hub](docs/README.md)** — audience-based navigation across onboarding, design-system authoring, runtime, zero-runtime, SSR, debugging, and internals
719
+
720
+ ### Start here
721
+
722
+ - **[Getting Started](docs/getting-started.md)** — Installation, first component, configuration, ESLint plugin setup, editor tooling, and rendering mode decision tree
723
+ - **[Methodology](docs/methodology.md)** — The recommended patterns for structuring Tasty components: root + sub-elements, styleProps, tokens, styles vs style, wrapping and extension
724
+
725
+ ### Guides
726
+
727
+ - **[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
728
+ - **[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
729
+
730
+ ### Reference
731
+
732
+ - **[Style DSL](docs/dsl.md)** — The Tasty style language: state maps, tokens, units, color syntax, extending semantics, recipes, keyframes, and @property
733
+ - **[Runtime API](docs/runtime.md)** — React-specific API: `tasty()` factory, component props, variants, sub-elements, and hooks
734
+ - **[Configuration](docs/configuration.md)** — Global configuration: tokens, recipes, custom units, style handlers, and TypeScript extensions
477
735
  - **[Style Properties](docs/styles.md)** — Complete reference for all enhanced style properties: syntax, values, modifiers, and recommendations
736
+
737
+ ### Rendering modes
738
+
478
739
  - **[Zero Runtime (tastyStatic)](docs/tasty-static.md)** — Build-time static styling: Babel plugin setup, Next.js integration, and static style patterns
740
+ - **[Server-Side Rendering](docs/ssr.md)** — SSR setup for Next.js, Astro, and generic frameworks: streaming support, cache hydration, and troubleshooting
741
+
742
+ ### Internals
743
+
744
+ - **[Style rendering pipeline](docs/PIPELINE.md)** — How `Styles` become mutually exclusive CSS rules: parse → exclusives → combinations → handlers → merge → materialize (`src/pipeline/`)
479
745
  - **[Style Injector](docs/injector.md)** — Internal CSS injection engine: `inject()`, `injectGlobal()`, `injectRawCSS()`, `keyframes()`, deduplication, reference counting, cleanup, SSR support, and Shadow DOM
480
746
  - **[Debug Utilities](docs/debug.md)** — Runtime CSS inspection via `tastyDebug`: CSS extraction, element inspection, cache metrics, chunk breakdown, and performance monitoring
481
747
 
748
+ ### Context
749
+
750
+ - **[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
751
+
482
752
  ## License
483
753
 
484
754
  [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