@tenphi/tasty 0.13.0 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +117 -28
- package/dist/chunks/cacheKey.js +16 -8
- package/dist/chunks/cacheKey.js.map +1 -1
- package/dist/chunks/renderChunk.js +31 -32
- package/dist/chunks/renderChunk.js.map +1 -1
- package/dist/config.d.ts +14 -2
- package/dist/config.js +11 -4
- package/dist/config.js.map +1 -1
- package/dist/core/index.d.ts +6 -4
- package/dist/core/index.js +5 -4
- package/dist/debug.d.ts +26 -141
- package/dist/debug.js +356 -635
- package/dist/debug.js.map +1 -1
- package/dist/hooks/useStyles.js +4 -3
- package/dist/hooks/useStyles.js.map +1 -1
- package/dist/index.d.ts +6 -4
- package/dist/index.js +5 -4
- package/dist/parser/classify.js +2 -1
- package/dist/parser/classify.js.map +1 -1
- package/dist/parser/parser.js +1 -1
- package/dist/pipeline/index.d.ts +1 -1
- package/dist/pipeline/index.js +24 -14
- package/dist/pipeline/index.js.map +1 -1
- package/dist/pipeline/materialize.js +328 -79
- package/dist/pipeline/materialize.js.map +1 -1
- package/dist/pipeline/parseStateKey.d.ts +1 -1
- package/dist/pipeline/parseStateKey.js +2 -6
- package/dist/pipeline/parseStateKey.js.map +1 -1
- package/dist/plugins/okhsl-plugin.js +2 -275
- package/dist/plugins/okhsl-plugin.js.map +1 -1
- package/dist/plugins/types.d.ts +1 -1
- package/dist/properties/index.js +2 -15
- package/dist/properties/index.js.map +1 -1
- package/dist/ssr/format-property.js +9 -7
- package/dist/ssr/format-property.js.map +1 -1
- package/dist/states/index.js +10 -257
- package/dist/states/index.js.map +1 -1
- package/dist/styles/color.js +9 -5
- package/dist/styles/color.js.map +1 -1
- package/dist/styles/createStyle.js +24 -21
- package/dist/styles/createStyle.js.map +1 -1
- package/dist/styles/index.js +1 -1
- package/dist/styles/predefined.js +1 -1
- package/dist/styles/predefined.js.map +1 -1
- package/dist/styles/types.d.ts +1 -1
- package/dist/tasty.d.ts +6 -6
- package/dist/tasty.js +24 -11
- package/dist/tasty.js.map +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/utils/cache-wrapper.js +4 -8
- package/dist/utils/cache-wrapper.js.map +1 -1
- package/dist/utils/color-math.d.ts +46 -0
- package/dist/utils/color-math.js +749 -0
- package/dist/utils/color-math.js.map +1 -0
- package/dist/utils/color-space.d.ts +5 -0
- package/dist/utils/color-space.js +229 -0
- package/dist/utils/color-space.js.map +1 -0
- package/dist/utils/colors.js +3 -1
- package/dist/utils/colors.js.map +1 -1
- package/dist/utils/has-keys.js +13 -0
- package/dist/utils/has-keys.js.map +1 -0
- package/dist/utils/mod-attrs.js +2 -2
- package/dist/utils/mod-attrs.js.map +1 -1
- package/dist/utils/process-tokens.d.ts +3 -13
- package/dist/utils/process-tokens.js +18 -98
- package/dist/utils/process-tokens.js.map +1 -1
- package/dist/utils/styles.d.ts +2 -78
- package/dist/utils/styles.js +28 -535
- package/dist/utils/styles.js.map +1 -1
- package/dist/zero/babel.d.ts +8 -0
- package/dist/zero/babel.js +18 -3
- package/dist/zero/babel.js.map +1 -1
- package/dist/zero/next.js +9 -1
- package/dist/zero/next.js.map +1 -1
- package/docs/PIPELINE.md +519 -0
- package/docs/README.md +30 -0
- package/docs/adoption.md +10 -2
- package/docs/comparison.md +11 -6
- package/docs/configuration.md +26 -3
- package/docs/debug.md +152 -339
- package/docs/dsl.md +3 -1
- package/docs/getting-started.md +21 -7
- package/docs/injector.md +2 -2
- package/docs/runtime.md +59 -9
- package/docs/ssr.md +2 -2
- package/docs/styles.md +1 -1
- package/docs/tasty-static.md +19 -9
- package/package.json +4 -3
- package/dist/utils/hsl-to-rgb.js +0 -38
- package/dist/utils/hsl-to-rgb.js.map +0 -1
- package/dist/utils/okhsl-to-rgb.js +0 -296
- package/dist/utils/okhsl-to-rgb.js.map +0 -1
package/README.md
CHANGED
|
@@ -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.
|
|
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
|
-
- **Design-system native** — Color tokens (`#primary`), spacing units (`2x`), typography presets (`h1`, `t2`), border radius (`1r`), and recipes are first-class primitives, not afterthoughts.
|
|
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. Built-in units and standard color values work out of the box, and [Configuration](docs/configuration.md) lets teams define shared conventions on top.
|
|
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
|
|
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, optional shared `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
|
|
@@ -55,8 +84,9 @@ const Card = tasty({
|
|
|
55
84
|
flow: 'column',
|
|
56
85
|
padding: '4x',
|
|
57
86
|
gap: '2x',
|
|
58
|
-
fill: '
|
|
59
|
-
|
|
87
|
+
fill: 'okhsl(98% 0.02 255)',
|
|
88
|
+
color: 'okhsl(28% 0.03 255)',
|
|
89
|
+
border: 'okhsl(88% 0.02 255)',
|
|
60
90
|
radius: '1r',
|
|
61
91
|
},
|
|
62
92
|
});
|
|
@@ -65,7 +95,9 @@ const Card = tasty({
|
|
|
65
95
|
<Card>Hello World</Card>
|
|
66
96
|
```
|
|
67
97
|
|
|
68
|
-
Every value maps to CSS you'd recognize
|
|
98
|
+
Every value maps to CSS you'd recognize. This example is intentionally config-free: built-in units work immediately, and standard color values such as `rgb(...)`, `hsl(...)`, named colors, and `okhsl(...)` are all valid without setup. `okhsl(...)` is the recommended choice when you want a design-system-friendly color authoring path from day one.
|
|
99
|
+
|
|
100
|
+
Use `configure()` when you want to define shared tokens, state aliases, recipes, or other conventions for your app or design system. For a fuller onboarding path, follow [Getting Started](docs/getting-started.md).
|
|
69
101
|
|
|
70
102
|
### Add state-driven styles
|
|
71
103
|
|
|
@@ -112,7 +144,7 @@ const DangerButton = tasty(Button, {
|
|
|
112
144
|
|
|
113
145
|
Child styles merge with parent styles intelligently — state maps can extend or replace parent states per-property.
|
|
114
146
|
|
|
115
|
-
###
|
|
147
|
+
### Optional: configure shared conventions
|
|
116
148
|
|
|
117
149
|
```tsx
|
|
118
150
|
import { configure } from '@tenphi/tasty';
|
|
@@ -129,7 +161,7 @@ configure({
|
|
|
129
161
|
});
|
|
130
162
|
```
|
|
131
163
|
|
|
132
|
-
Predefined states turn complex selector logic into single tokens
|
|
164
|
+
Use `configure()` once when your app or design system needs shared aliases, tokens, recipes, or parser extensions. Predefined states turn complex selector logic into single tokens, so teams can write `@mobile` instead of repeating media query expressions in every component.
|
|
133
165
|
|
|
134
166
|
### CSS properties as props
|
|
135
167
|
|
|
@@ -188,6 +220,8 @@ Layout components can expose flow props. Buttons can expose positioning props. E
|
|
|
188
220
|
|
|
189
221
|
This is the core idea that makes everything else possible.
|
|
190
222
|
|
|
223
|
+
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)**.
|
|
224
|
+
|
|
191
225
|
Traditional CSS has two structural problems.
|
|
192
226
|
|
|
193
227
|
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 +312,12 @@ Every rule is guarded by the negation of higher-priority rules. No two rules can
|
|
|
278
312
|
|
|
279
313
|
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
314
|
|
|
281
|
-
[Try it in the
|
|
315
|
+
[Try it in the Cube UI Kit Storybook playground →](https://cube-ui-kit.vercel.app/?path=/story/getting-started-tasty-playground--playground)
|
|
282
316
|
|
|
283
317
|
## Capabilities
|
|
284
318
|
|
|
319
|
+
This section is a quick product tour. For the canonical guides and references, start from the [Docs Hub](docs/README.md).
|
|
320
|
+
|
|
285
321
|
### Design Tokens and Custom Units
|
|
286
322
|
|
|
287
323
|
Tokens are first-class. Colors use `#name` syntax. Spacing, radius, and border width use multiplier units tied to CSS custom properties:
|
|
@@ -317,7 +353,7 @@ Every style property accepts a state mapping object. Keys can be combined with b
|
|
|
317
353
|
| Class selector (supported) | `.is-active` | `.is-active` |
|
|
318
354
|
| Media query | `@media(w < 768px)` | `@media (width < 768px)` |
|
|
319
355
|
| Container query | `@(panel, w >= 300px)` | `@container panel (width >= 300px)` |
|
|
320
|
-
| Root state | `@root(
|
|
356
|
+
| Root state | `@root(schema=dark)` | `:root[data-schema="dark"]` |
|
|
321
357
|
| Parent state | `@parent(theme=danger)` | `:is([data-theme="danger"] *)` |
|
|
322
358
|
| Feature query | `@supports(display: grid)` | `@supports (display: grid)` |
|
|
323
359
|
| Entry animation | `@starting` | `@starting-style` |
|
|
@@ -478,7 +514,7 @@ module.exports = {
|
|
|
478
514
|
['@tenphi/tasty/babel-plugin', {
|
|
479
515
|
output: 'public/tasty.css',
|
|
480
516
|
config: {
|
|
481
|
-
states: { '@dark': '@root(
|
|
517
|
+
states: { '@dark': '@root(schema=dark)' },
|
|
482
518
|
},
|
|
483
519
|
}],
|
|
484
520
|
],
|
|
@@ -501,21 +537,9 @@ module.exports = {
|
|
|
501
537
|
|
|
502
538
|
Both share the same DSL, tokens, units, state mappings, and recipes.
|
|
503
539
|
|
|
504
|
-
###
|
|
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)
|
|
540
|
+
### Server-Side Rendering
|
|
517
541
|
|
|
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
|
|
542
|
+
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
543
|
|
|
520
544
|
**Next.js setup:**
|
|
521
545
|
|
|
@@ -553,7 +577,7 @@ export default function RootLayout({
|
|
|
553
577
|
}
|
|
554
578
|
```
|
|
555
579
|
|
|
556
|
-
See the [full SSR guide](docs/ssr.md) for Astro integration, streaming SSR, generic framework usage, and the
|
|
580
|
+
See the [full SSR guide](docs/ssr.md) for Astro integration, streaming SSR, generic framework usage, troubleshooting, and the current requirements.
|
|
557
581
|
|
|
558
582
|
## Entry Points
|
|
559
583
|
|
|
@@ -569,13 +593,73 @@ See the [full SSR guide](docs/ssr.md) for Astro integration, streaming SSR, gene
|
|
|
569
593
|
| `@tenphi/tasty/ssr/next` | Next.js App Router SSR integration | Node |
|
|
570
594
|
| `@tenphi/tasty/ssr/astro` | Astro middleware + auto-hydration | Node / Browser |
|
|
571
595
|
|
|
596
|
+
## Browser Requirements
|
|
597
|
+
|
|
598
|
+
Tasty's exclusive selector system relies on modern CSS pseudo-class syntax:
|
|
599
|
+
|
|
600
|
+
- **`:is()`** — available across all major browsers since January 2021 ([MDN Baseline](https://developer.mozilla.org/en-US/docs/Web/CSS/:is)).
|
|
601
|
+
- **Level-4 `:not()` with selector lists** — Chrome/Edge 88+, Firefox 84+, Safari 9+, Opera 75+.
|
|
602
|
+
- **Not supported:** IE 11.
|
|
603
|
+
|
|
604
|
+
## Performance
|
|
605
|
+
|
|
606
|
+
### Bundle Size
|
|
607
|
+
|
|
608
|
+
All sizes measured with [size-limit](https://github.com/ai/size-limit) — minified and brotli-compressed, including all dependencies.
|
|
609
|
+
|
|
610
|
+
| Entry point | Size |
|
|
611
|
+
|-------------|------|
|
|
612
|
+
| `@tenphi/tasty` (runtime + SSR) | ~44 kB |
|
|
613
|
+
| `@tenphi/tasty/core` (runtime, no SSR) | ~41 kB |
|
|
614
|
+
| `@tenphi/tasty/static` (zero-runtime) | ~1.5 kB |
|
|
615
|
+
|
|
616
|
+
Run `pnpm size` for exact up-to-date numbers.
|
|
617
|
+
|
|
618
|
+
### Runtime Benchmarks
|
|
619
|
+
|
|
620
|
+
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).
|
|
621
|
+
|
|
622
|
+
| Operation | ops/sec | Latency (mean) |
|
|
623
|
+
|-----------|--------:|---------------:|
|
|
624
|
+
| `renderStyles` — 5 flat properties (cold) | ~72,000 | ~14 us |
|
|
625
|
+
| `renderStyles` — state map with media/hover/modifier (cold) | ~22,000 | ~46 us |
|
|
626
|
+
| `renderStyles` — same styles (cached) | ~7,200,000 | ~0.14 us |
|
|
627
|
+
| `parseStateKey` — simple key like `:hover` (cold) | ~1,200,000 | ~0.9 us |
|
|
628
|
+
| `parseStateKey` — complex OR/AND/NOT key (cold) | ~190,000 | ~5 us |
|
|
629
|
+
| `parseStateKey` — any key (cached) | ~3,300,000–8,900,000 | ~0.1–0.3 us |
|
|
630
|
+
| `parseStyle` — value tokens like `2x 4x` (cold) | ~345,000 | ~3 us |
|
|
631
|
+
| `parseStyle` — color tokens (cold) | ~525,000 | ~1.9 us |
|
|
632
|
+
| `parseStyle` — any value (cached) | ~15,500,000 | ~0.06 us |
|
|
633
|
+
|
|
634
|
+
"Cold" benchmarks use unique inputs to bypass all caches. Cached benchmarks reuse a single input and measure the LRU hot path.
|
|
635
|
+
|
|
636
|
+
Run `pnpm bench` to reproduce.
|
|
637
|
+
|
|
638
|
+
#### What This Means in Practice
|
|
639
|
+
|
|
640
|
+
- **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.
|
|
641
|
+
- **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.
|
|
642
|
+
- **Cache multipliers are 30x–100x.** This confirms the multi-level LRU architecture (parser, state-key, simplify, condition, pipeline) is delivering real value.
|
|
643
|
+
- **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).
|
|
644
|
+
- **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.
|
|
645
|
+
|
|
646
|
+
### How It Stays Fast
|
|
647
|
+
|
|
648
|
+
- CSS is generated and injected only when styles are actually used.
|
|
649
|
+
- Multi-level caching avoids repeated parsing and style recomputation.
|
|
650
|
+
- Styles are split into reusable chunks and applied as multiple class names, so matching chunks can be reused across components instead of re-injected.
|
|
651
|
+
- Style normalization guarantees equivalent style input resolves to the same chunks, improving deduplication hit rates.
|
|
652
|
+
- A style garbage collector removes unused styles/chunks over time.
|
|
653
|
+
- A dedicated style injector minimizes DOM/style-tag overhead.
|
|
654
|
+
- This approach is validated in enterprise-scale apps where runtime styling overhead is not noticeable in normal UI flows.
|
|
655
|
+
|
|
572
656
|
## Ecosystem
|
|
573
657
|
|
|
574
658
|
Tasty is the core of a production-ready styling platform. These companion tools complete the picture:
|
|
575
659
|
|
|
576
660
|
### [ESLint Plugin](https://github.com/tenphi/eslint-plugin-tasty)
|
|
577
661
|
|
|
578
|
-
`@tenphi/eslint-plugin-tasty` — 27 lint rules
|
|
662
|
+
`@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
663
|
|
|
580
664
|
```bash
|
|
581
665
|
pnpm add -D @tenphi/eslint-plugin-tasty
|
|
@@ -630,9 +714,13 @@ Open-source React UI kit built on Tasty + React Aria. 100+ production components
|
|
|
630
714
|
|
|
631
715
|
## Documentation
|
|
632
716
|
|
|
717
|
+
Start from the docs hub if you want the shortest path to the right guide for your role or rendering mode.
|
|
718
|
+
|
|
719
|
+
- **[Docs Hub](docs/README.md)** — audience-based navigation across onboarding, design-system authoring, runtime, zero-runtime, SSR, debugging, and internals
|
|
720
|
+
|
|
633
721
|
### Start here
|
|
634
722
|
|
|
635
|
-
- **[Getting Started](docs/getting-started.md)** — Installation, first component, configuration, ESLint plugin setup, editor tooling, and rendering mode decision tree
|
|
723
|
+
- **[Getting Started](docs/getting-started.md)** — Installation, first component, optional shared configuration, ESLint plugin setup, editor tooling, and rendering mode decision tree
|
|
636
724
|
- **[Methodology](docs/methodology.md)** — The recommended patterns for structuring Tasty components: root + sub-elements, styleProps, tokens, styles vs style, wrapping and extension
|
|
637
725
|
|
|
638
726
|
### Guides
|
|
@@ -654,6 +742,7 @@ Open-source React UI kit built on Tasty + React Aria. 100+ production components
|
|
|
654
742
|
|
|
655
743
|
### Internals
|
|
656
744
|
|
|
745
|
+
- **[Style rendering pipeline](docs/PIPELINE.md)** — How `Styles` become mutually exclusive CSS rules: parse → exclusives → combinations → handlers → merge → materialize (`src/pipeline/`)
|
|
657
746
|
- **[Style Injector](docs/injector.md)** — Internal CSS injection engine: `inject()`, `injectGlobal()`, `injectRawCSS()`, `keyframes()`, deduplication, reference counting, cleanup, SSR support, and Shadow DOM
|
|
658
747
|
- **[Debug Utilities](docs/debug.md)** — Runtime CSS inspection via `tastyDebug`: CSS extraction, element inspection, cache metrics, chunk breakdown, and performance monitoring
|
|
659
748
|
|
package/dist/chunks/cacheKey.js
CHANGED
|
@@ -11,20 +11,29 @@ import { extractLocalPredefinedStates, extractPredefinedStateRefs } from "../sta
|
|
|
11
11
|
* - Global predefined states don't affect cache keys (constant across app)
|
|
12
12
|
* - Local predefined states only affect cache keys if referenced in the chunk
|
|
13
13
|
*/
|
|
14
|
+
const _stableStringifyCache = /* @__PURE__ */ new WeakMap();
|
|
14
15
|
/**
|
|
15
16
|
* Recursively serialize a value with sorted keys for stable output.
|
|
16
17
|
* This ensures that {a: 1, b: 2} and {b: 2, a: 1} produce the same string.
|
|
18
|
+
* Uses a WeakMap cache for object values to avoid re-serializing the same references.
|
|
17
19
|
*/
|
|
18
20
|
function stableStringify(value) {
|
|
19
21
|
if (value === null) return "null";
|
|
20
22
|
if (value === void 0) return "undefined";
|
|
21
23
|
if (typeof value !== "object") return JSON.stringify(value);
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
24
|
+
const cached = _stableStringifyCache.get(value);
|
|
25
|
+
if (cached !== void 0) return cached;
|
|
26
|
+
let result;
|
|
27
|
+
if (Array.isArray(value)) result = "[" + value.map(stableStringify).join(",") + "]";
|
|
28
|
+
else {
|
|
29
|
+
const obj = value;
|
|
30
|
+
const sortedKeys = Object.keys(obj).sort();
|
|
31
|
+
const parts = [];
|
|
32
|
+
for (const key of sortedKeys) if (obj[key] !== void 0) parts.push(`${JSON.stringify(key)}:${stableStringify(obj[key])}`);
|
|
33
|
+
result = "{" + parts.join(",") + "}";
|
|
34
|
+
}
|
|
35
|
+
_stableStringifyCache.set(value, result);
|
|
36
|
+
return result;
|
|
28
37
|
}
|
|
29
38
|
/**
|
|
30
39
|
* Generate a cache key for a specific chunk.
|
|
@@ -42,9 +51,8 @@ function stableStringify(value) {
|
|
|
42
51
|
*/
|
|
43
52
|
function generateChunkCacheKey(styles, chunkName, styleKeys) {
|
|
44
53
|
const parts = [chunkName];
|
|
45
|
-
const sortedKeys = styleKeys.slice().sort();
|
|
46
54
|
let chunkStylesStr = "";
|
|
47
|
-
for (const key of
|
|
55
|
+
for (const key of styleKeys) {
|
|
48
56
|
const value = styles[key];
|
|
49
57
|
if (value !== void 0) {
|
|
50
58
|
const serialized = stableStringify(value);
|
|
@@ -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
|
|
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
|
-
*
|
|
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
|
|
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
|
|
17
|
+
return filteredStyles;
|
|
36
18
|
}
|
|
37
19
|
/**
|
|
38
|
-
*
|
|
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
|
|
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
|
|
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 *
|
|
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-
|
|
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
|
-
*
|
|
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
|
-
*
|
|
176
|
+
* Uses a pre-computed flag to avoid Object.keys() allocation on every call.
|
|
175
177
|
*/
|
|
176
178
|
function hasGlobalKeyframes() {
|
|
177
|
-
return
|
|
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;
|