@tenphi/tasty 0.0.0-snapshot.aef860d → 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 (84) hide show
  1. package/README.md +109 -21
  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 +14 -2
  7. package/dist/config.js +11 -4
  8. package/dist/config.js.map +1 -1
  9. package/dist/core/index.d.ts +6 -4
  10. package/dist/core/index.js +5 -4
  11. package/dist/debug.d.ts +26 -141
  12. package/dist/debug.js +356 -635
  13. package/dist/debug.js.map +1 -1
  14. package/dist/hooks/useStyles.js +4 -3
  15. package/dist/hooks/useStyles.js.map +1 -1
  16. package/dist/index.d.ts +6 -4
  17. package/dist/index.js +5 -4
  18. package/dist/parser/classify.js +2 -1
  19. package/dist/parser/classify.js.map +1 -1
  20. package/dist/parser/parser.js +1 -1
  21. package/dist/pipeline/index.d.ts +1 -1
  22. package/dist/pipeline/index.js +16 -7
  23. package/dist/pipeline/index.js.map +1 -1
  24. package/dist/pipeline/parseStateKey.d.ts +1 -1
  25. package/dist/pipeline/parseStateKey.js +2 -6
  26. package/dist/pipeline/parseStateKey.js.map +1 -1
  27. package/dist/plugins/okhsl-plugin.js +2 -275
  28. package/dist/plugins/okhsl-plugin.js.map +1 -1
  29. package/dist/plugins/types.d.ts +1 -1
  30. package/dist/properties/index.js +2 -15
  31. package/dist/properties/index.js.map +1 -1
  32. package/dist/ssr/format-property.js +9 -7
  33. package/dist/ssr/format-property.js.map +1 -1
  34. package/dist/states/index.js +10 -257
  35. package/dist/states/index.js.map +1 -1
  36. package/dist/styles/color.js +9 -5
  37. package/dist/styles/color.js.map +1 -1
  38. package/dist/styles/createStyle.js +24 -21
  39. package/dist/styles/createStyle.js.map +1 -1
  40. package/dist/styles/index.js +1 -1
  41. package/dist/styles/predefined.js +1 -1
  42. package/dist/styles/predefined.js.map +1 -1
  43. package/dist/styles/types.d.ts +1 -1
  44. package/dist/tasty.js +24 -11
  45. package/dist/tasty.js.map +1 -1
  46. package/dist/types.d.ts +1 -1
  47. package/dist/utils/cache-wrapper.js +4 -8
  48. package/dist/utils/cache-wrapper.js.map +1 -1
  49. package/dist/utils/color-math.d.ts +46 -0
  50. package/dist/utils/color-math.js +749 -0
  51. package/dist/utils/color-math.js.map +1 -0
  52. package/dist/utils/color-space.d.ts +5 -0
  53. package/dist/utils/color-space.js +229 -0
  54. package/dist/utils/color-space.js.map +1 -0
  55. package/dist/utils/colors.js +3 -1
  56. package/dist/utils/colors.js.map +1 -1
  57. package/dist/utils/has-keys.js +13 -0
  58. package/dist/utils/has-keys.js.map +1 -0
  59. package/dist/utils/mod-attrs.js +2 -2
  60. package/dist/utils/mod-attrs.js.map +1 -1
  61. package/dist/utils/process-tokens.d.ts +3 -13
  62. package/dist/utils/process-tokens.js +18 -98
  63. package/dist/utils/process-tokens.js.map +1 -1
  64. package/dist/utils/styles.d.ts +2 -78
  65. package/dist/utils/styles.js +28 -535
  66. package/dist/utils/styles.js.map +1 -1
  67. package/docs/PIPELINE.md +519 -0
  68. package/docs/README.md +30 -0
  69. package/docs/adoption.md +10 -2
  70. package/docs/comparison.md +2 -0
  71. package/docs/configuration.md +26 -3
  72. package/docs/debug.md +152 -339
  73. package/docs/dsl.md +3 -1
  74. package/docs/getting-started.md +16 -2
  75. package/docs/injector.md +1 -1
  76. package/docs/runtime.md +59 -9
  77. package/docs/ssr.md +2 -2
  78. package/docs/styles.md +1 -1
  79. package/docs/tasty-static.md +13 -2
  80. package/package.json +4 -3
  81. package/dist/utils/hsl-to-rgb.js +0 -38
  82. package/dist/utils/hsl-to-rgb.js.map +0 -1
  83. package/dist/utils/okhsl-to-rgb.js +0 -296
  84. package/dist/utils/okhsl-to-rgb.js.map +0 -1
package/README.md CHANGED
@@ -25,11 +25,11 @@ That guarantee unlocks a concise, CSS-like DSL where design tokens, custom units
25
25
 
26
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. See [Style Properties](docs/styles.md).
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
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, 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.
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.
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.
@@ -41,6 +41,35 @@ That guarantee unlocks a concise, CSS-like DSL where design tokens, custom units
41
41
  pnpm add @tenphi/tasty
42
42
  ```
43
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
+
44
73
  ## Quick Start
45
74
 
46
75
  ### Create a styled component
@@ -67,6 +96,8 @@ const Card = tasty({
67
96
 
68
97
  Every value maps to CSS you'd recognize — but with tokens and units that keep your design system consistent by default.
69
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
+
70
101
  ### Add state-driven styles
71
102
 
72
103
  ```tsx
@@ -188,6 +219,8 @@ Layout components can expose flow props. Buttons can expose positioning props. E
188
219
 
189
220
  This is the core idea that makes everything else possible.
190
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
+
191
224
  Traditional CSS has two structural problems.
192
225
 
193
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.
@@ -278,10 +311,12 @@ Every rule is guarded by the negation of higher-priority rules. No two rules can
278
311
 
279
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.
280
313
 
281
- [Try it in the Tasty Playground →](https://cube-ui-kit.vercel.app/?path=/story/getting-started-tasty-playground--playground)
314
+ [Try it in the Cube UI Kit Storybook playground →](https://cube-ui-kit.vercel.app/?path=/story/getting-started-tasty-playground--playground)
282
315
 
283
316
  ## Capabilities
284
317
 
318
+ This section is a quick product tour. For the canonical guides and references, start from the [Docs Hub](docs/README.md).
319
+
285
320
  ### Design Tokens and Custom Units
286
321
 
287
322
  Tokens are first-class. Colors use `#name` syntax. Spacing, radius, and border width use multiplier units tied to CSS custom properties:
@@ -317,7 +352,7 @@ Every style property accepts a state mapping object. Keys can be combined with b
317
352
  | Class selector (supported) | `.is-active` | `.is-active` |
318
353
  | Media query | `@media(w < 768px)` | `@media (width < 768px)` |
319
354
  | Container query | `@(panel, w >= 300px)` | `@container panel (width >= 300px)` |
320
- | Root state | `@root(theme=dark)` | `:root[data-theme="dark"]` |
355
+ | Root state | `@root(schema=dark)` | `:root[data-schema="dark"]` |
321
356
  | Parent state | `@parent(theme=danger)` | `:is([data-theme="danger"] *)` |
322
357
  | Feature query | `@supports(display: grid)` | `@supports (display: grid)` |
323
358
  | Entry animation | `@starting` | `@starting-style` |
@@ -478,7 +513,7 @@ module.exports = {
478
513
  ['@tenphi/tasty/babel-plugin', {
479
514
  output: 'public/tasty.css',
480
515
  config: {
481
- states: { '@dark': '@root(theme=dark)' },
516
+ states: { '@dark': '@root(schema=dark)' },
482
517
  },
483
518
  }],
484
519
  ],
@@ -501,21 +536,9 @@ module.exports = {
501
536
 
502
537
  Both share the same DSL, tokens, units, state mappings, and recipes.
503
538
 
504
- ### Runtime Performance
505
-
506
- If you choose the runtime approach, performance is usually a non-issue in practice:
507
-
508
- - CSS is generated and injected only when styles are actually used.
509
- - Multi-level caching avoids repeated parsing and style recomputation.
510
- - Styles are split into reusable chunks and applied as multiple class names, so matching chunks can be reused across components instead of re-injected.
511
- - Style normalization guarantees equivalent style input resolves to the same chunks, improving deduplication hit rates.
512
- - A style garbage collector removes unused styles/chunks over time.
513
- - A dedicated style injector minimizes DOM/style-tag overhead.
514
- - This approach is validated in enterprise-scale apps where runtime styling overhead is not noticeable in normal UI flows.
515
-
516
- ### Server-Side Rendering (Experimental)
539
+ ### Server-Side Rendering
517
540
 
518
- 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+.
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+.
519
542
 
520
543
  **Next.js setup:**
521
544
 
@@ -553,7 +576,7 @@ export default function RootLayout({
553
576
  }
554
577
  ```
555
578
 
556
- See the [full SSR guide](docs/ssr.md) for Astro integration, streaming SSR, generic framework usage, and the complete API reference.
579
+ See the [full SSR guide](docs/ssr.md) for Astro integration, streaming SSR, generic framework usage, troubleshooting, and the current requirements.
557
580
 
558
581
  ## Entry Points
559
582
 
@@ -569,13 +592,73 @@ See the [full SSR guide](docs/ssr.md) for Astro integration, streaming SSR, gene
569
592
  | `@tenphi/tasty/ssr/next` | Next.js App Router SSR integration | Node |
570
593
  | `@tenphi/tasty/ssr/astro` | Astro middleware + auto-hydration | Node / Browser |
571
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.
654
+
572
655
  ## Ecosystem
573
656
 
574
657
  Tasty is the core of a production-ready styling platform. These companion tools complete the picture:
575
658
 
576
659
  ### [ESLint Plugin](https://github.com/tenphi/eslint-plugin-tasty)
577
660
 
578
- `@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.
579
662
 
580
663
  ```bash
581
664
  pnpm add -D @tenphi/eslint-plugin-tasty
@@ -630,6 +713,10 @@ Open-source React UI kit built on Tasty + React Aria. 100+ production components
630
713
 
631
714
  ## Documentation
632
715
 
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
+
633
720
  ### Start here
634
721
 
635
722
  - **[Getting Started](docs/getting-started.md)** — Installation, first component, configuration, ESLint plugin setup, editor tooling, and rendering mode decision tree
@@ -654,6 +741,7 @@ Open-source React UI kit built on Tasty + React Aria. 100+ production components
654
741
 
655
742
  ### Internals
656
743
 
744
+ - **[Style rendering pipeline](docs/PIPELINE.md)** — How `Styles` become mutually exclusive CSS rules: parse → exclusives → combinations → handlers → merge → materialize (`src/pipeline/`)
657
745
  - **[Style Injector](docs/injector.md)** — Internal CSS injection engine: `inject()`, `injectGlobal()`, `injectRawCSS()`, `keyframes()`, deduplication, reference counting, cleanup, SSR support, and Shadow DOM
658
746
  - **[Debug Utilities](docs/debug.md)** — Runtime CSS inspection via `tastyDebug`: CSS extraction, element inspection, cache metrics, chunk breakdown, and performance monitoring
659
747
 
@@ -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
@@ -3,6 +3,7 @@ import { StyleDetails, UnitHandler } from "./parser/types.js";
3
3
  import { StyleHandlerDefinition } from "./utils/styles.js";
4
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.
@@ -157,7 +169,7 @@ interface TastyConfig {
157
169
  * for responsive/theme-aware tokens.
158
170
  *
159
171
  * - `$name` keys become `--name` CSS custom properties
160
- * - `#name` keys become `--name-color` and `--name-color-rgb` properties
172
+ * - `#name` keys become `--name-color` and `--name-color-{colorSpace}` properties
161
173
  *
162
174
  * Tokens are injected once when the first style is rendered.
163
175
  *
@@ -252,7 +264,7 @@ declare function isTestEnvironment(): boolean;
252
264
  declare function hasStylesGenerated(): boolean;
253
265
  /**
254
266
  * Check if any global keyframes are configured.
255
- * Fast path: returns false if no keyframes were ever set.
267
+ * Uses a pre-computed flag to avoid Object.keys() allocation on every call.
256
268
  */
257
269
  declare function hasGlobalKeyframes(): boolean;
258
270
  /**
package/dist/config.js CHANGED
@@ -1,8 +1,9 @@
1
+ import { resetColorSpace, setColorSpace } from "./utils/color-space.js";
1
2
  import { isDevEnv } from "./utils/is-dev-env.js";
2
- import { setGlobalPredefinedStates } from "./states/index.js";
3
3
  import { CUSTOM_UNITS, getGlobalFuncs, getGlobalParser, normalizeColorTokenValue, resetGlobalPredefinedTokens, setGlobalPredefinedTokens } from "./utils/styles.js";
4
4
  import { normalizeHandlerDefinition, registerHandler, resetHandlers } from "./styles/predefined.js";
5
5
  import { StyleInjector } from "./injector/injector.js";
6
+ import { setGlobalPredefinedStates } from "./states/index.js";
6
7
  import { clearPipelineCache, isSelector, renderStyles } from "./pipeline/index.js";
7
8
 
8
9
  //#region src/config.ts
@@ -169,12 +170,13 @@ function markStylesGenerated() {
169
170
  function hasStylesGenerated() {
170
171
  return stylesGenerated;
171
172
  }
173
+ let _hasGlobalKeyframes = false;
172
174
  /**
173
175
  * Check if any global keyframes are configured.
174
- * Fast path: returns false if no keyframes were ever set.
176
+ * Uses a pre-computed flag to avoid Object.keys() allocation on every call.
175
177
  */
176
178
  function hasGlobalKeyframes() {
177
- return globalKeyframes !== null && Object.keys(globalKeyframes).length > 0;
179
+ return _hasGlobalKeyframes;
178
180
  }
179
181
  /**
180
182
  * Get global keyframes configuration.
@@ -193,6 +195,7 @@ function setGlobalKeyframes(keyframes) {
193
195
  return;
194
196
  }
195
197
  globalKeyframes = keyframes;
198
+ _hasGlobalKeyframes = Object.keys(keyframes).length > 0;
196
199
  }
197
200
  /**
198
201
  * Check if any global properties are configured.
@@ -373,6 +376,8 @@ function configure(config = {}) {
373
376
  const tokenKeys = new Set(Object.keys(mergedConfigTokens));
374
377
  for (const key of Object.keys(mergedReplaceTokens)) if (tokenKeys.has(key)) warnOnce(`token-conflict-${key}`, `[Tasty] Token "${key}" is defined in both \`tokens\` and \`replaceTokens\`. \`replaceTokens\` performs parse-time substitution, so the \`tokens\` CSS custom property will be injected but never used by Tasty styles. Remove it from one of the two.`);
375
378
  }
379
+ setColorSpace(config.colorSpace ?? "oklch");
380
+ getGlobalParser().clearCache();
376
381
  if (Object.keys(mergedStates).length > 0) setGlobalPredefinedStates(mergedStates);
377
382
  const parser = getGlobalParser();
378
383
  if (config.parserCacheSize !== void 0) parser.updateOptions({ cacheSize: config.parserCacheSize });
@@ -407,7 +412,7 @@ function configure(config = {}) {
407
412
  }
408
413
  if (Object.keys(mergedConfigTokens).length > 0) setGlobalConfigTokens(mergedConfigTokens);
409
414
  if (Object.keys(mergedRecipes).length > 0) setGlobalRecipes(mergedRecipes);
410
- const { states: _states, parserCacheSize: _parserCacheSize, units: _units, funcs: _funcs, plugins: _plugins, keyframes: _keyframes, properties: _properties, handlers: _handlers, tokens: _tokens, replaceTokens: _replaceTokens, recipes: _recipes, ...injectorConfig } = config;
415
+ const { states: _states, parserCacheSize: _parserCacheSize, units: _units, funcs: _funcs, plugins: _plugins, keyframes: _keyframes, properties: _properties, handlers: _handlers, tokens: _tokens, replaceTokens: _replaceTokens, recipes: _recipes, colorSpace: _colorSpace, ...injectorConfig } = config;
411
416
  const fullConfig = {
412
417
  ...createDefaultConfig(),
413
418
  ...currentConfig,
@@ -442,11 +447,13 @@ function resetConfig() {
442
447
  stylesGenerated = false;
443
448
  currentConfig = null;
444
449
  globalKeyframes = null;
450
+ _hasGlobalKeyframes = false;
445
451
  globalProperties = null;
446
452
  globalRecipes = null;
447
453
  globalConfigTokens = null;
448
454
  resetGlobalPredefinedTokens();
449
455
  resetHandlers();
456
+ resetColorSpace();
450
457
  clearPipelineCache();
451
458
  emittedWarnings.clear();
452
459
  const storage = typeof window !== "undefined" ? window : globalThis;