@tenphi/tasty 0.0.0-snapshot.8f4d375 → 0.0.0-snapshot.9155dd5

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 (151) hide show
  1. package/README.md +129 -6
  2. package/dist/chunks/cacheKey.js +16 -8
  3. package/dist/chunks/cacheKey.js.map +1 -1
  4. package/dist/chunks/renderChunk.js +31 -32
  5. package/dist/chunks/renderChunk.js.map +1 -1
  6. package/dist/config.d.ts +45 -10
  7. package/dist/config.js +74 -13
  8. package/dist/config.js.map +1 -1
  9. package/dist/core/index.d.ts +9 -8
  10. package/dist/core/index.js +6 -5
  11. package/dist/hooks/useGlobalStyles.d.ts +3 -0
  12. package/dist/hooks/useGlobalStyles.js +28 -1
  13. package/dist/hooks/useGlobalStyles.js.map +1 -1
  14. package/dist/hooks/useKeyframes.js +18 -3
  15. package/dist/hooks/useKeyframes.js.map +1 -1
  16. package/dist/hooks/useProperty.js +36 -13
  17. package/dist/hooks/useProperty.js.map +1 -1
  18. package/dist/hooks/useRawCSS.js +13 -1
  19. package/dist/hooks/useRawCSS.js.map +1 -1
  20. package/dist/hooks/useStyles.d.ts +5 -0
  21. package/dist/hooks/useStyles.js +86 -6
  22. package/dist/hooks/useStyles.js.map +1 -1
  23. package/dist/index.d.ts +9 -8
  24. package/dist/index.js +6 -5
  25. package/dist/injector/index.d.ts +9 -1
  26. package/dist/injector/index.js +9 -1
  27. package/dist/injector/index.js.map +1 -1
  28. package/dist/injector/injector.d.ts +9 -0
  29. package/dist/injector/injector.js +20 -7
  30. package/dist/injector/injector.js.map +1 -1
  31. package/dist/injector/sheet-manager.d.ts +1 -0
  32. package/dist/injector/sheet-manager.js +1 -0
  33. package/dist/injector/sheet-manager.js.map +1 -1
  34. package/dist/parser/classify.js +2 -1
  35. package/dist/parser/classify.js.map +1 -1
  36. package/dist/parser/parser.js +1 -1
  37. package/dist/pipeline/index.d.ts +1 -1
  38. package/dist/pipeline/index.js +24 -14
  39. package/dist/pipeline/index.js.map +1 -1
  40. package/dist/pipeline/materialize.js +328 -79
  41. package/dist/pipeline/materialize.js.map +1 -1
  42. package/dist/pipeline/parseStateKey.d.ts +1 -1
  43. package/dist/pipeline/parseStateKey.js +2 -6
  44. package/dist/pipeline/parseStateKey.js.map +1 -1
  45. package/dist/plugins/okhsl-plugin.js +2 -275
  46. package/dist/plugins/okhsl-plugin.js.map +1 -1
  47. package/dist/plugins/types.d.ts +9 -2
  48. package/dist/properties/index.js +7 -5
  49. package/dist/properties/index.js.map +1 -1
  50. package/dist/properties/property-type-resolver.js +8 -0
  51. package/dist/properties/property-type-resolver.js.map +1 -1
  52. package/dist/ssr/astro.d.ts +29 -0
  53. package/dist/ssr/astro.js +65 -0
  54. package/dist/ssr/astro.js.map +1 -0
  55. package/dist/ssr/async-storage.d.ts +17 -0
  56. package/dist/ssr/async-storage.js +35 -0
  57. package/dist/ssr/async-storage.js.map +1 -0
  58. package/dist/ssr/collect-auto-properties.js +40 -0
  59. package/dist/ssr/collect-auto-properties.js.map +1 -0
  60. package/dist/ssr/collector.d.ts +85 -0
  61. package/dist/ssr/collector.js +183 -0
  62. package/dist/ssr/collector.js.map +1 -0
  63. package/dist/ssr/context.d.ts +8 -0
  64. package/dist/ssr/context.js +14 -0
  65. package/dist/ssr/context.js.map +1 -0
  66. package/dist/ssr/format-global-rules.js +22 -0
  67. package/dist/ssr/format-global-rules.js.map +1 -0
  68. package/dist/ssr/format-keyframes.js +70 -0
  69. package/dist/ssr/format-keyframes.js.map +1 -0
  70. package/dist/ssr/format-property.js +50 -0
  71. package/dist/ssr/format-property.js.map +1 -0
  72. package/dist/ssr/format-rules.js +70 -0
  73. package/dist/ssr/format-rules.js.map +1 -0
  74. package/dist/ssr/hydrate.d.ts +22 -0
  75. package/dist/ssr/hydrate.js +50 -0
  76. package/dist/ssr/hydrate.js.map +1 -0
  77. package/dist/ssr/index.d.ts +5 -0
  78. package/dist/ssr/index.js +12 -0
  79. package/dist/ssr/index.js.map +1 -0
  80. package/dist/ssr/next.d.ts +45 -0
  81. package/dist/ssr/next.js +71 -0
  82. package/dist/ssr/next.js.map +1 -0
  83. package/dist/ssr/ssr-collector-ref.js +12 -0
  84. package/dist/ssr/ssr-collector-ref.js.map +1 -0
  85. package/dist/states/index.js +10 -257
  86. package/dist/states/index.js.map +1 -1
  87. package/dist/styles/color.js +9 -5
  88. package/dist/styles/color.js.map +1 -1
  89. package/dist/styles/createStyle.js +24 -21
  90. package/dist/styles/createStyle.js.map +1 -1
  91. package/dist/styles/index.js +1 -1
  92. package/dist/styles/preset.js +1 -1
  93. package/dist/styles/preset.js.map +1 -1
  94. package/dist/styles/scrollbar.js.map +1 -1
  95. package/dist/styles/transition.js +1 -1
  96. package/dist/styles/transition.js.map +1 -1
  97. package/dist/styles/types.d.ts +14 -1
  98. package/dist/tasty.d.ts +10 -10
  99. package/dist/tasty.js +24 -11
  100. package/dist/tasty.js.map +1 -1
  101. package/dist/types.d.ts +1 -1
  102. package/dist/utils/cache-wrapper.js +4 -8
  103. package/dist/utils/cache-wrapper.js.map +1 -1
  104. package/dist/utils/color-math.d.ts +45 -0
  105. package/dist/utils/color-math.js +717 -0
  106. package/dist/utils/color-math.js.map +1 -0
  107. package/dist/utils/color-space.d.ts +5 -0
  108. package/dist/utils/color-space.js +186 -0
  109. package/dist/utils/color-space.js.map +1 -0
  110. package/dist/utils/colors.js +3 -1
  111. package/dist/utils/colors.js.map +1 -1
  112. package/dist/utils/has-keys.js +13 -0
  113. package/dist/utils/has-keys.js.map +1 -0
  114. package/dist/utils/mod-attrs.js +1 -1
  115. package/dist/utils/process-tokens.d.ts +3 -13
  116. package/dist/utils/process-tokens.js +17 -97
  117. package/dist/utils/process-tokens.js.map +1 -1
  118. package/dist/utils/styles.d.ts +2 -78
  119. package/dist/utils/styles.js +26 -533
  120. package/dist/utils/styles.js.map +1 -1
  121. package/dist/utils/typography.d.ts +24 -13
  122. package/dist/utils/typography.js +6 -16
  123. package/dist/utils/typography.js.map +1 -1
  124. package/dist/zero/babel.d.ts +48 -6
  125. package/dist/zero/babel.js +63 -5
  126. package/dist/zero/babel.js.map +1 -1
  127. package/dist/zero/next.d.ts +44 -30
  128. package/dist/zero/next.js +102 -38
  129. package/dist/zero/next.js.map +1 -1
  130. package/docs/PIPELINE.md +519 -0
  131. package/docs/adoption.md +286 -0
  132. package/docs/comparison.md +413 -0
  133. package/docs/configuration.md +62 -10
  134. package/docs/debug.md +1 -1
  135. package/docs/design-system.md +401 -0
  136. package/docs/{usage.md → dsl.md} +254 -409
  137. package/docs/getting-started.md +201 -0
  138. package/docs/injector.md +2 -2
  139. package/docs/methodology.md +501 -0
  140. package/docs/runtime.md +291 -0
  141. package/docs/ssr.md +382 -0
  142. package/docs/styles.md +3 -3
  143. package/docs/tasty-static.md +64 -20
  144. package/package.json +49 -30
  145. package/dist/tokens/typography.d.ts +0 -19
  146. package/dist/tokens/typography.js +0 -237
  147. package/dist/tokens/typography.js.map +0 -1
  148. package/dist/utils/hsl-to-rgb.js +0 -38
  149. package/dist/utils/hsl-to-rgb.js.map +0 -1
  150. package/dist/utils/okhsl-to-rgb.js +0 -296
  151. package/dist/utils/okhsl-to-rgb.js.map +0 -1
package/README.md CHANGED
@@ -29,7 +29,7 @@ That guarantee unlocks a concise, CSS-like DSL where design tokens, custom units
29
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
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
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).
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 (experimental). Same DSL, same tokens, same output.
33
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
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
35
  - **Composable and extensible by design** — Extend any component's styles with proper merge semantics, and evolve built-in behavior through configuration and plugins.
@@ -188,10 +188,21 @@ Layout components can expose flow props. Buttons can expose positioning props. E
188
188
 
189
189
  This is the core idea that makes everything else possible.
190
190
 
191
+ 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)**.
192
+
191
193
  Traditional CSS has two structural problems.
192
194
 
193
195
  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
196
 
197
+ A small example makes this tangible. Two rules for a button's background:
198
+
199
+ ```css
200
+ .btn:hover { background: dodgerblue; }
201
+ .btn[disabled] { background: gray; }
202
+ ```
203
+
204
+ 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.
205
+
195
206
  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.
196
207
 
197
208
  Tasty solves both problems at once: **every state mapping compiles into mutually exclusive selectors.**
@@ -211,7 +222,33 @@ const Text = tasty({
211
222
  });
212
223
  ```
213
224
 
214
- If `@dark` expands to `@root(schema=dark) | (!@root(schema) & @media(prefers-color-scheme: dark))`, Tasty generates:
225
+ 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:
226
+
227
+ ```css
228
+ /* First attempt — the @media branch is too broad */
229
+ .t0 { color: var(--text-color); }
230
+ :root[data-schema="dark"] .t0 { color: var(--text-on-dark-color); }
231
+ @media (prefers-color-scheme: dark) {
232
+ .t0 { color: var(--text-on-dark-color); }
233
+ }
234
+ ```
235
+
236
+ The `@media` branch fires even when `data-schema="light"` is explicitly set. Fix that:
237
+
238
+ ```css
239
+ /* Second attempt — @media is scoped, but the default is still too broad */
240
+ .t0 { color: var(--text-color); }
241
+ :root[data-schema="dark"] .t0 { color: var(--text-on-dark-color); }
242
+ @media (prefers-color-scheme: dark) {
243
+ :root:not([data-schema]) .t0 { color: var(--text-on-dark-color); }
244
+ }
245
+ ```
246
+
247
+ 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."
248
+
249
+ 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:
250
+
251
+ Tasty generates the correct version automatically:
215
252
 
216
253
  ```css
217
254
  /* Branch 1: Explicit dark schema */
@@ -243,6 +280,8 @@ Every rule is guarded by the negation of higher-priority rules. No two rules can
243
280
 
244
281
  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.
245
282
 
283
+ [Try it in the Tasty Playground →](https://cube-ui-kit.vercel.app/?path=/story/getting-started-tasty-playground--playground)
284
+
246
285
  ## Capabilities
247
286
 
248
287
  ### Design Tokens and Custom Units
@@ -408,8 +447,8 @@ import { useStyles, useGlobalStyles, useRawCSS } from '@tenphi/tasty';
408
447
 
409
448
  function App() {
410
449
  const { className } = useStyles({ padding: '2x', fill: '#surface' });
411
- useGlobalStyles(':root', { '#primary': 'purple', '$gap': '8px' });
412
- useRawCSS('body { margin: 0; }');
450
+ useGlobalStyles('body', { margin: '0' });
451
+ useRawCSS('@font-face { font-family: "Custom"; src: url(...); }');
413
452
 
414
453
  return <main className={className}>...</main>;
415
454
  }
@@ -476,6 +515,48 @@ If you choose the runtime approach, performance is usually a non-issue in practi
476
515
  - A dedicated style injector minimizes DOM/style-tag overhead.
477
516
  - This approach is validated in enterprise-scale apps where runtime styling overhead is not noticeable in normal UI flows.
478
517
 
518
+ ### Server-Side Rendering (Experimental)
519
+
520
+ 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 19+.
521
+
522
+ **Next.js setup:**
523
+
524
+ ```tsx
525
+ // app/tasty-registry.tsx
526
+ 'use client';
527
+
528
+ import { TastyRegistry } from '@tenphi/tasty/ssr/next';
529
+
530
+ export default function TastyStyleRegistry({
531
+ children,
532
+ }: {
533
+ children: React.ReactNode;
534
+ }) {
535
+ return <TastyRegistry>{children}</TastyRegistry>;
536
+ }
537
+ ```
538
+
539
+ ```tsx
540
+ // app/layout.tsx
541
+ import TastyStyleRegistry from './tasty-registry';
542
+
543
+ export default function RootLayout({
544
+ children,
545
+ }: {
546
+ children: React.ReactNode;
547
+ }) {
548
+ return (
549
+ <html>
550
+ <body>
551
+ <TastyStyleRegistry>{children}</TastyStyleRegistry>
552
+ </body>
553
+ </html>
554
+ );
555
+ }
556
+ ```
557
+
558
+ See the [full SSR guide](docs/ssr.md) for Astro integration, streaming SSR, generic framework usage, and the complete API reference.
559
+
479
560
  ## Entry Points
480
561
 
481
562
  | Import | Description | Platform |
@@ -486,6 +567,9 @@ If you choose the runtime approach, performance is usually a non-issue in practi
486
567
  | `@tenphi/tasty/babel-plugin` | Babel plugin for zero-runtime CSS extraction | Node |
487
568
  | `@tenphi/tasty/zero` | Programmatic extraction API | Node |
488
569
  | `@tenphi/tasty/next` | Next.js integration wrapper | Node |
570
+ | `@tenphi/tasty/ssr` | Core SSR API (collector, context, hydration) | Node |
571
+ | `@tenphi/tasty/ssr/next` | Next.js App Router SSR integration | Node |
572
+ | `@tenphi/tasty/ssr/astro` | Astro middleware + auto-hydration | Node / Browser |
489
573
 
490
574
  ## Ecosystem
491
575
 
@@ -528,19 +612,58 @@ Syntax highlighting for Tasty styles in TypeScript, TSX, JavaScript, and JSX. Hi
528
612
  <img src="assets/tasty-vscode-highlight.png" width="512" alt="Tasty VS Code syntax highlighting example">
529
613
  </p>
530
614
 
531
- ### [Cube UI Kit](https://github.com/cube-js/cube-ui-kit)
615
+ ## Built with Tasty
616
+
617
+ ### [tasty.style](https://tasty.style) ([source](https://github.com/tenphi/tasty.style))
618
+
619
+ 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.
620
+
621
+ ### [Cube Cloud](https://cube.dev/)
622
+
623
+ 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.
624
+
625
+ ### [Cube Cloud for Excel and Google Sheets](https://cube.dev/)
626
+
627
+ 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.
628
+
629
+ ### [Cube UI Kit](https://github.com/cube-js/cube-ui-kit) ([storybook](https://cube-ui-kit.vercel.app/))
532
630
 
533
631
  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
632
 
535
633
  ## Documentation
536
634
 
537
- - **[Usage Guide](docs/usage.md)** — Runtime styling: component creation, state mappings, sub-elements, variants, and hooks
635
+ ### Start here
636
+
637
+ - **[Getting Started](docs/getting-started.md)** — Installation, first component, configuration, ESLint plugin setup, editor tooling, and rendering mode decision tree
638
+ - **[Methodology](docs/methodology.md)** — The recommended patterns for structuring Tasty components: root + sub-elements, styleProps, tokens, styles vs style, wrapping and extension
639
+
640
+ ### Guides
641
+
642
+ - **[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
643
+ - **[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
644
+
645
+ ### Reference
646
+
647
+ - **[Style DSL](docs/dsl.md)** — The Tasty style language: state maps, tokens, units, color syntax, extending semantics, recipes, keyframes, and @property
648
+ - **[Runtime API](docs/runtime.md)** — React-specific API: `tasty()` factory, component props, variants, sub-elements, and hooks
538
649
  - **[Configuration](docs/configuration.md)** — Global configuration: tokens, recipes, custom units, style handlers, and TypeScript extensions
539
650
  - **[Style Properties](docs/styles.md)** — Complete reference for all enhanced style properties: syntax, values, modifiers, and recommendations
651
+
652
+ ### Rendering modes
653
+
540
654
  - **[Zero Runtime (tastyStatic)](docs/tasty-static.md)** — Build-time static styling: Babel plugin setup, Next.js integration, and static style patterns
655
+ - **[Server-Side Rendering](docs/ssr.md)** — SSR setup for Next.js, Astro, and generic frameworks: streaming support, cache hydration, and troubleshooting
656
+
657
+ ### Internals
658
+
659
+ - **[Style rendering pipeline](docs/PIPELINE.md)** — How `Styles` become mutually exclusive CSS rules: parse → exclusives → combinations → handlers → merge → materialize (`src/pipeline/`)
541
660
  - **[Style Injector](docs/injector.md)** — Internal CSS injection engine: `inject()`, `injectGlobal()`, `injectRawCSS()`, `keyframes()`, deduplication, reference counting, cleanup, SSR support, and Shadow DOM
542
661
  - **[Debug Utilities](docs/debug.md)** — Runtime CSS inspection via `tastyDebug`: CSS extraction, element inspection, cache metrics, chunk breakdown, and performance monitoring
543
662
 
663
+ ### Context
664
+
665
+ - **[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
666
+
544
667
  ## License
545
668
 
546
669
  [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"}
@@ -1,30 +1,12 @@
1
1
  import { extractLocalPredefinedStates } from "../states/index.js";
2
- import { renderStyles } from "../pipeline/index.js";
2
+ import { hasPipelineCacheEntry, renderStyles } from "../pipeline/index.js";
3
3
  import { CHUNK_NAMES } from "./definitions.js";
4
4
 
5
5
  //#region src/chunks/renderChunk.ts
6
6
  /**
7
- * Render styles for a specific chunk.
8
- *
9
- * Creates a filtered styles object containing only the keys for this chunk,
10
- * then delegates to the existing renderStyles function.
11
- *
12
- * IMPORTANT: Local predefined states (e.g., '@mobile': '@media(w < 600px)')
13
- * are always included in the filtered styles, regardless of which chunk is
14
- * being rendered. This ensures that state references like '@mobile' in any
15
- * chunk can be properly resolved by the pipeline.
16
- *
17
- * @param styles - The full styles object
18
- * @param chunkName - Name of the chunk being rendered
19
- * @param styleKeys - Keys of styles belonging to this chunk
20
- * @returns RenderResult with rules for this chunk
7
+ * Build a filtered styles object for a regular chunk.
21
8
  */
22
- function renderStylesForChunk(styles, chunkName, styleKeys) {
23
- if (styleKeys.length === 0) return {
24
- rules: [],
25
- className: ""
26
- };
27
- if (chunkName === CHUNK_NAMES.SUBCOMPONENTS) return renderSubcomponentsChunk(styles, styleKeys);
9
+ function buildFilteredStyles(styles, styleKeys) {
28
10
  const localPredefinedStates = extractLocalPredefinedStates(styles);
29
11
  const filteredStyles = {};
30
12
  for (const [key, value] of Object.entries(localPredefinedStates)) filteredStyles[key] = value;
@@ -32,19 +14,12 @@ function renderStylesForChunk(styles, chunkName, styleKeys) {
32
14
  const value = styles[key];
33
15
  if (value !== void 0) filteredStyles[key] = value;
34
16
  }
35
- return renderStyles(filteredStyles);
17
+ return filteredStyles;
36
18
  }
37
19
  /**
38
- * Render the subcomponents chunk.
39
- *
40
- * Subcomponents (selectors like Label, &::before, etc.) contain nested
41
- * style objects that need to be preserved in their entirety.
42
- *
43
- * @param styles - The full styles object
44
- * @param selectorKeys - Keys of selectors in this chunk
45
- * @returns RenderResult with rules for all subcomponents
20
+ * Build a filtered styles object for the subcomponents chunk.
46
21
  */
47
- function renderSubcomponentsChunk(styles, selectorKeys) {
22
+ function buildSubcomponentFilteredStyles(styles, selectorKeys) {
48
23
  const localPredefinedStates = extractLocalPredefinedStates(styles);
49
24
  const filteredStyles = {};
50
25
  for (const [key, value] of Object.entries(localPredefinedStates)) filteredStyles[key] = value;
@@ -53,7 +28,31 @@ function renderSubcomponentsChunk(styles, selectorKeys) {
53
28
  if (value !== void 0) filteredStyles[key] = value;
54
29
  }
55
30
  if (styles.$ !== void 0) filteredStyles.$ = styles.$;
56
- return renderStyles(filteredStyles);
31
+ return filteredStyles;
32
+ }
33
+ /**
34
+ * Render styles for a specific chunk.
35
+ *
36
+ * On pipeline cache hit, avoids building the filtered styles object entirely.
37
+ * Only constructs it on cache miss when the pipeline actually needs the styles.
38
+ *
39
+ * IMPORTANT: Local predefined states (e.g., '@mobile': '@media(w < 600px)')
40
+ * are always included in the filtered styles, regardless of which chunk is
41
+ * being rendered. This ensures that state references like '@mobile' in any
42
+ * chunk can be properly resolved by the pipeline.
43
+ *
44
+ * @param styles - The full styles object
45
+ * @param chunkName - Name of the chunk being rendered
46
+ * @param styleKeys - Keys of styles belonging to this chunk
47
+ * @returns RenderResult with rules for this chunk
48
+ */
49
+ function renderStylesForChunk(styles, chunkName, styleKeys, pipelineCacheKey) {
50
+ if (styleKeys.length === 0) return {
51
+ rules: [],
52
+ className: ""
53
+ };
54
+ if (pipelineCacheKey && hasPipelineCacheEntry(pipelineCacheKey)) return renderStyles(void 0, void 0, void 0, pipelineCacheKey);
55
+ return renderStyles(chunkName === CHUNK_NAMES.SUBCOMPONENTS ? buildSubcomponentFilteredStyles(styles, styleKeys) : buildFilteredStyles(styles, styleKeys), void 0, void 0, pipelineCacheKey);
57
56
  }
58
57
 
59
58
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"renderChunk.js","names":[],"sources":["../../src/chunks/renderChunk.ts"],"sourcesContent":["/**\n * Chunk-specific style rendering.\n *\n * Renders styles for a specific chunk by filtering the styles object\n * to only include relevant keys before passing to renderStyles.\n */\n\nimport type { RenderResult } from '../pipeline';\nimport { renderStyles } from '../pipeline';\nimport { extractLocalPredefinedStates } from '../states';\nimport type { Styles } from '../styles/types';\n\nimport { CHUNK_NAMES } from './definitions';\n\n/**\n * Render styles for a specific chunk.\n *\n * Creates a filtered styles object containing only the keys for this chunk,\n * then delegates to the existing renderStyles function.\n *\n * IMPORTANT: Local predefined states (e.g., '@mobile': '@media(w < 600px)')\n * are always included in the filtered styles, regardless of which chunk is\n * being rendered. This ensures that state references like '@mobile' in any\n * chunk can be properly resolved by the pipeline.\n *\n * @param styles - The full styles object\n * @param chunkName - Name of the chunk being rendered\n * @param styleKeys - Keys of styles belonging to this chunk\n * @returns RenderResult with rules for this chunk\n */\nexport function renderStylesForChunk(\n styles: Styles,\n chunkName: string,\n styleKeys: string[],\n): RenderResult {\n // Empty chunk - return empty result\n if (styleKeys.length === 0) {\n return { rules: [], className: '' };\n }\n\n // For subcomponents, we need to preserve the nested structure\n if (chunkName === CHUNK_NAMES.SUBCOMPONENTS) {\n return renderSubcomponentsChunk(styles, styleKeys);\n }\n\n // Extract local predefined states from the full styles object\n // These must be included for state resolution to work across chunks\n const localPredefinedStates = extractLocalPredefinedStates(styles);\n\n // For regular chunks, create a filtered styles object\n // This is memory-efficient: we only create a shallow copy with filtered keys\n const filteredStyles: Styles = {};\n\n // First, add local predefined states so they're available for resolution\n for (const [key, value] of Object.entries(localPredefinedStates)) {\n filteredStyles[key] = value;\n }\n\n // Then add the chunk's style keys\n for (const key of styleKeys) {\n const value = styles[key];\n if (value !== undefined) {\n filteredStyles[key] = value;\n }\n }\n\n // Delegate to existing renderStyles\n return renderStyles(filteredStyles);\n}\n\n/**\n * Render the subcomponents chunk.\n *\n * Subcomponents (selectors like Label, &::before, etc.) contain nested\n * style objects that need to be preserved in their entirety.\n *\n * @param styles - The full styles object\n * @param selectorKeys - Keys of selectors in this chunk\n * @returns RenderResult with rules for all subcomponents\n */\nfunction renderSubcomponentsChunk(\n styles: Styles,\n selectorKeys: string[],\n): RenderResult {\n // Extract local predefined states from the full styles object\n // These must be included for state resolution to work in nested styles\n const localPredefinedStates = extractLocalPredefinedStates(styles);\n\n // Create a styles object containing only the selector keys\n const filteredStyles: Styles = {};\n\n // First, add local predefined states so they're available for resolution\n for (const [key, value] of Object.entries(localPredefinedStates)) {\n filteredStyles[key] = value;\n }\n\n // Then add the selector keys\n for (const key of selectorKeys) {\n const value = styles[key];\n if (value !== undefined) {\n filteredStyles[key] = value;\n }\n }\n\n // Also copy the $ helper if present (used for selector combinators)\n if (styles.$ !== undefined) {\n filteredStyles.$ = styles.$;\n }\n\n // Delegate to existing renderStyles\n return renderStyles(filteredStyles);\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AA8BA,SAAgB,qBACd,QACA,WACA,WACc;AAEd,KAAI,UAAU,WAAW,EACvB,QAAO;EAAE,OAAO,EAAE;EAAE,WAAW;EAAI;AAIrC,KAAI,cAAc,YAAY,cAC5B,QAAO,yBAAyB,QAAQ,UAAU;CAKpD,MAAM,wBAAwB,6BAA6B,OAAO;CAIlE,MAAM,iBAAyB,EAAE;AAGjC,MAAK,MAAM,CAAC,KAAK,UAAU,OAAO,QAAQ,sBAAsB,CAC9D,gBAAe,OAAO;AAIxB,MAAK,MAAM,OAAO,WAAW;EAC3B,MAAM,QAAQ,OAAO;AACrB,MAAI,UAAU,OACZ,gBAAe,OAAO;;AAK1B,QAAO,aAAa,eAAe;;;;;;;;;;;;AAarC,SAAS,yBACP,QACA,cACc;CAGd,MAAM,wBAAwB,6BAA6B,OAAO;CAGlE,MAAM,iBAAyB,EAAE;AAGjC,MAAK,MAAM,CAAC,KAAK,UAAU,OAAO,QAAQ,sBAAsB,CAC9D,gBAAe,OAAO;AAIxB,MAAK,MAAM,OAAO,cAAc;EAC9B,MAAM,QAAQ,OAAO;AACrB,MAAI,UAAU,OACZ,gBAAe,OAAO;;AAK1B,KAAI,OAAO,MAAM,OACf,gBAAe,IAAI,OAAO;AAI5B,QAAO,aAAa,eAAe"}
1
+ {"version":3,"file":"renderChunk.js","names":[],"sources":["../../src/chunks/renderChunk.ts"],"sourcesContent":["/**\n * Chunk-specific style rendering.\n *\n * Renders styles for a specific chunk by filtering the styles object\n * to only include relevant keys before passing to renderStyles.\n */\n\nimport type { RenderResult } from '../pipeline';\nimport { hasPipelineCacheEntry, renderStyles } from '../pipeline';\nimport { extractLocalPredefinedStates } from '../states';\nimport type { Styles } from '../styles/types';\n\nimport { CHUNK_NAMES } from './definitions';\n\n/**\n * Build a filtered styles object for a regular chunk.\n */\nfunction buildFilteredStyles(styles: Styles, styleKeys: string[]): Styles {\n const localPredefinedStates = extractLocalPredefinedStates(styles);\n const filteredStyles: Styles = {};\n\n for (const [key, value] of Object.entries(localPredefinedStates)) {\n filteredStyles[key] = value;\n }\n\n for (const key of styleKeys) {\n const value = styles[key];\n if (value !== undefined) {\n filteredStyles[key] = value;\n }\n }\n\n return filteredStyles;\n}\n\n/**\n * Build a filtered styles object for the subcomponents chunk.\n */\nfunction buildSubcomponentFilteredStyles(\n styles: Styles,\n selectorKeys: string[],\n): Styles {\n const localPredefinedStates = extractLocalPredefinedStates(styles);\n const filteredStyles: Styles = {};\n\n for (const [key, value] of Object.entries(localPredefinedStates)) {\n filteredStyles[key] = value;\n }\n\n for (const key of selectorKeys) {\n const value = styles[key];\n if (value !== undefined) {\n filteredStyles[key] = value;\n }\n }\n\n if (styles.$ !== undefined) {\n filteredStyles.$ = styles.$;\n }\n\n return filteredStyles;\n}\n\n/**\n * Render styles for a specific chunk.\n *\n * On pipeline cache hit, avoids building the filtered styles object entirely.\n * Only constructs it on cache miss when the pipeline actually needs the styles.\n *\n * IMPORTANT: Local predefined states (e.g., '@mobile': '@media(w < 600px)')\n * are always included in the filtered styles, regardless of which chunk is\n * being rendered. This ensures that state references like '@mobile' in any\n * chunk can be properly resolved by the pipeline.\n *\n * @param styles - The full styles object\n * @param chunkName - Name of the chunk being rendered\n * @param styleKeys - Keys of styles belonging to this chunk\n * @returns RenderResult with rules for this chunk\n */\nexport function renderStylesForChunk(\n styles: Styles,\n chunkName: string,\n styleKeys: string[],\n pipelineCacheKey?: string,\n): RenderResult {\n if (styleKeys.length === 0) {\n return { rules: [], className: '' };\n }\n\n // Fast path: skip building filteredStyles when pipeline has a cached result\n if (pipelineCacheKey && hasPipelineCacheEntry(pipelineCacheKey)) {\n return renderStyles(undefined, undefined, undefined, pipelineCacheKey);\n }\n\n // Cache miss: build filtered styles and run pipeline\n const filteredStyles =\n chunkName === CHUNK_NAMES.SUBCOMPONENTS\n ? buildSubcomponentFilteredStyles(styles, styleKeys)\n : buildFilteredStyles(styles, styleKeys);\n\n return renderStyles(filteredStyles, undefined, undefined, pipelineCacheKey);\n}\n"],"mappings":";;;;;;;;AAiBA,SAAS,oBAAoB,QAAgB,WAA6B;CACxE,MAAM,wBAAwB,6BAA6B,OAAO;CAClE,MAAM,iBAAyB,EAAE;AAEjC,MAAK,MAAM,CAAC,KAAK,UAAU,OAAO,QAAQ,sBAAsB,CAC9D,gBAAe,OAAO;AAGxB,MAAK,MAAM,OAAO,WAAW;EAC3B,MAAM,QAAQ,OAAO;AACrB,MAAI,UAAU,OACZ,gBAAe,OAAO;;AAI1B,QAAO;;;;;AAMT,SAAS,gCACP,QACA,cACQ;CACR,MAAM,wBAAwB,6BAA6B,OAAO;CAClE,MAAM,iBAAyB,EAAE;AAEjC,MAAK,MAAM,CAAC,KAAK,UAAU,OAAO,QAAQ,sBAAsB,CAC9D,gBAAe,OAAO;AAGxB,MAAK,MAAM,OAAO,cAAc;EAC9B,MAAM,QAAQ,OAAO;AACrB,MAAI,UAAU,OACZ,gBAAe,OAAO;;AAI1B,KAAI,OAAO,MAAM,OACf,gBAAe,IAAI,OAAO;AAG5B,QAAO;;;;;;;;;;;;;;;;;;AAmBT,SAAgB,qBACd,QACA,WACA,WACA,kBACc;AACd,KAAI,UAAU,WAAW,EACvB,QAAO;EAAE,OAAO,EAAE;EAAE,WAAW;EAAI;AAIrC,KAAI,oBAAoB,sBAAsB,iBAAiB,CAC7D,QAAO,aAAa,QAAW,QAAW,QAAW,iBAAiB;AASxE,QAAO,aAJL,cAAc,YAAY,gBACtB,gCAAgC,QAAQ,UAAU,GAClD,oBAAoB,QAAQ,UAAU,EAER,QAAW,QAAW,iBAAiB"}
package/dist/config.d.ts CHANGED
@@ -1,8 +1,9 @@
1
1
  import { KeyframesSteps, PropertyDefinition } from "./injector/types.js";
2
2
  import { StyleDetails, UnitHandler } from "./parser/types.js";
3
3
  import { StyleHandlerDefinition } from "./utils/styles.js";
4
- import { RecipeStyles } from "./styles/types.js";
4
+ import { ConfigTokens, RecipeStyles } from "./styles/types.js";
5
5
  import { StyleInjector } from "./injector/injector.js";
6
+ import { ColorSpace } from "./utils/color-space.js";
6
7
  import { TastyPlugin } from "./plugins/types.js";
7
8
 
8
9
  //#region src/config.d.ts
@@ -58,6 +59,17 @@ interface TastyConfig {
58
59
  * @example { myFunc: (groups) => groups.map(g => g.output).join(' ') }
59
60
  */
60
61
  funcs?: Record<string, (groups: StyleDetails[]) => string>;
62
+ /**
63
+ * Color space used for decomposed color token companion variables.
64
+ * Controls the CSS function and suffix for alpha composition.
65
+ *
66
+ * - `'rgb'` — suffix `-rgb`, e.g. `rgb(var(--name-color-rgb) / .5)`
67
+ * - `'hsl'` — suffix `-hsl`, e.g. `hsl(var(--name-color-hsl) / .5)`
68
+ * - `'oklch'` — suffix `-oklch`, e.g. `oklch(var(--name-color-oklch) / .5)`
69
+ *
70
+ * @default 'oklch'
71
+ */
72
+ colorSpace?: ColorSpace;
61
73
  /**
62
74
  * Automatically infer and register CSS @property declarations
63
75
  * from custom property values found in styles, keyframes, and global config.
@@ -152,20 +164,43 @@ interface TastyConfig {
152
164
  */
153
165
  handlers?: Record<string, StyleHandlerDefinition>;
154
166
  /**
155
- * Predefined tokens that are replaced during style parsing.
156
- * Token values are processed through the parser (like component tokens).
167
+ * Design tokens injected as CSS custom properties on `:root`.
168
+ * Values are parsed through the Tasty DSL. Supports state maps
169
+ * for responsive/theme-aware tokens.
170
+ *
171
+ * - `$name` keys become `--name` CSS custom properties
172
+ * - `#name` keys become `--name-color` and `--name-color-{colorSpace}` properties
173
+ *
174
+ * Tokens are injected once when the first style is rendered.
175
+ *
176
+ * @example
177
+ * ```ts
178
+ * configure({
179
+ * tokens: {
180
+ * '$gap': '4px',
181
+ * '#primary': {
182
+ * '': '#purple',
183
+ * '@dark': '#light-purple',
184
+ * },
185
+ * },
186
+ * });
187
+ * ```
188
+ */
189
+ tokens?: ConfigTokens;
190
+ /**
191
+ * Predefined tokens that are replaced during style parsing (parse-time substitution).
157
192
  * Use `$name` for custom properties and `#name` for color tokens.
193
+ * Values are substituted inline before CSS generation, unlike `tokens` which
194
+ * inject CSS custom properties on `:root`.
158
195
  *
159
196
  * For color tokens (#name), boolean `true` is converted to `transparent`.
160
197
  *
161
198
  * @example
162
199
  * ```ts
163
200
  * configure({
164
- * tokens: {
201
+ * replaceTokens: {
165
202
  * $spacing: '2x',
166
- * '$card-padding': '4x',
167
203
  * '#accent': '#purple',
168
- * '#surface': '#white',
169
204
  * '#overlay': true, // → transparent
170
205
  * },
171
206
  * });
@@ -173,13 +208,13 @@ interface TastyConfig {
173
208
  * // Now use in styles - tokens are replaced at parse time:
174
209
  * const Card = tasty({
175
210
  * styles: {
176
- * padding: '$card-padding', // → calc(4 * var(--gap))
177
- * fill: '#surface', // → var(--white-color)
211
+ * padding: '$spacing', // → calc(2 * var(--gap))
212
+ * fill: '#accent', // → var(--purple-color)
178
213
  * },
179
214
  * });
180
215
  * ```
181
216
  */
182
- tokens?: Record<`$${string}`, string | number | boolean> & Record<`#${string}`, string | number | boolean>;
217
+ replaceTokens?: Record<`$${string}`, string | number | boolean> & Record<`#${string}`, string | number | boolean>;
183
218
  /**
184
219
  * Predefined style recipes -- named style bundles that can be applied via `recipe` style property.
185
220
  * Recipe values are flat tasty styles (no sub-element keys). They may contain base styles,
@@ -229,7 +264,7 @@ declare function isTestEnvironment(): boolean;
229
264
  declare function hasStylesGenerated(): boolean;
230
265
  /**
231
266
  * Check if any global keyframes are configured.
232
- * Fast path: returns false if no keyframes were ever set.
267
+ * Uses a pre-computed flag to avoid Object.keys() allocation on every call.
233
268
  */
234
269
  declare function hasGlobalKeyframes(): boolean;
235
270
  /**