@tenphi/tasty 0.0.0-snapshot.09d653f → 0.0.0-snapshot.0a2bb74
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 +216 -252
- package/dist/_virtual/_rolldown/runtime.js +1 -2
- package/dist/chunks/cacheKey.d.ts +1 -0
- package/dist/chunks/cacheKey.js +17 -10
- package/dist/chunks/cacheKey.js.map +1 -1
- package/dist/chunks/definitions.d.ts +1 -1
- package/dist/chunks/definitions.js +2 -3
- package/dist/chunks/definitions.js.map +1 -1
- package/dist/chunks/index.d.ts +1 -0
- package/dist/chunks/renderChunk.d.ts +1 -0
- package/dist/chunks/renderChunk.js +32 -34
- package/dist/chunks/renderChunk.js.map +1 -1
- package/dist/compute-styles.d.ts +31 -0
- package/dist/compute-styles.js +335 -0
- package/dist/compute-styles.js.map +1 -0
- package/dist/config.d.ts +80 -22
- package/dist/config.js +121 -50
- package/dist/config.js.map +1 -1
- package/dist/core/index.d.ts +10 -8
- package/dist/core/index.js +10 -9
- package/dist/counter-style/index.js +51 -0
- package/dist/counter-style/index.js.map +1 -0
- package/dist/debug.d.ts +26 -141
- package/dist/debug.js +357 -637
- package/dist/debug.js.map +1 -1
- package/dist/font-face/index.js +63 -0
- package/dist/font-face/index.js.map +1 -0
- package/dist/hooks/index.d.ts +7 -0
- package/dist/hooks/useCounterStyle.d.ts +36 -0
- package/dist/hooks/useCounterStyle.js +64 -0
- package/dist/hooks/useCounterStyle.js.map +1 -0
- package/dist/hooks/useFontFace.d.ts +45 -0
- package/dist/hooks/useFontFace.js +66 -0
- package/dist/hooks/useFontFace.js.map +1 -0
- package/dist/hooks/useGlobalStyles.d.ts +18 -2
- package/dist/hooks/useGlobalStyles.js +53 -48
- package/dist/hooks/useGlobalStyles.js.map +1 -1
- package/dist/hooks/useKeyframes.d.ts +4 -2
- package/dist/hooks/useKeyframes.js +42 -57
- package/dist/hooks/useKeyframes.js.map +1 -1
- package/dist/hooks/useProperty.d.ts +4 -2
- package/dist/hooks/useProperty.js +30 -48
- package/dist/hooks/useProperty.js.map +1 -1
- package/dist/hooks/useRawCSS.d.ts +13 -44
- package/dist/hooks/useRawCSS.js +91 -28
- package/dist/hooks/useRawCSS.js.map +1 -1
- package/dist/hooks/useStyles.d.ts +4 -9
- package/dist/hooks/useStyles.js +7 -226
- package/dist/hooks/useStyles.js.map +1 -1
- package/dist/index.d.ts +13 -9
- package/dist/index.js +13 -10
- package/dist/injector/index.d.ts +36 -19
- package/dist/injector/index.js +42 -19
- package/dist/injector/index.js.map +1 -1
- package/dist/injector/injector.d.ts +48 -3
- package/dist/injector/injector.js +143 -9
- package/dist/injector/injector.js.map +1 -1
- package/dist/injector/sheet-manager.d.ts +9 -13
- package/dist/injector/sheet-manager.js +39 -70
- package/dist/injector/sheet-manager.js.map +1 -1
- package/dist/injector/types.d.ts +103 -19
- package/dist/keyframes/index.js +1 -1
- package/dist/parser/classify.js +6 -6
- package/dist/parser/classify.js.map +1 -1
- package/dist/parser/const.js +30 -3
- package/dist/parser/const.js.map +1 -1
- package/dist/parser/lru.js +1 -1
- package/dist/parser/lru.js.map +1 -1
- package/dist/parser/parser.js +2 -3
- package/dist/parser/parser.js.map +1 -1
- package/dist/parser/tokenizer.js +1 -1
- package/dist/parser/tokenizer.js.map +1 -1
- package/dist/parser/types.js +1 -1
- package/dist/parser/types.js.map +1 -1
- package/dist/pipeline/conditions.js +1 -1
- package/dist/pipeline/conditions.js.map +1 -1
- package/dist/pipeline/exclusive.js +1 -2
- package/dist/pipeline/exclusive.js.map +1 -1
- package/dist/pipeline/index.d.ts +3 -1
- package/dist/pipeline/index.js +80 -32
- package/dist/pipeline/index.js.map +1 -1
- package/dist/pipeline/materialize.js +329 -82
- package/dist/pipeline/materialize.js.map +1 -1
- package/dist/pipeline/parseStateKey.d.ts +1 -1
- package/dist/pipeline/parseStateKey.js +7 -12
- package/dist/pipeline/parseStateKey.js.map +1 -1
- package/dist/pipeline/simplify.js +1 -2
- package/dist/pipeline/simplify.js.map +1 -1
- package/dist/pipeline/warnings.js +1 -1
- package/dist/plugins/index.d.ts +2 -0
- package/dist/plugins/okhsl-plugin.js +3 -277
- package/dist/plugins/okhsl-plugin.js.map +1 -1
- package/dist/plugins/types.d.ts +1 -1
- package/dist/properties/index.js +3 -17
- package/dist/properties/index.js.map +1 -1
- package/dist/properties/property-type-resolver.js +1 -2
- package/dist/properties/property-type-resolver.js.map +1 -1
- package/dist/rsc-cache.js +81 -0
- package/dist/rsc-cache.js.map +1 -0
- package/dist/ssr/astro-client.d.ts +1 -0
- package/dist/ssr/astro-client.js +24 -0
- package/dist/ssr/astro-client.js.map +1 -0
- package/dist/ssr/astro-middleware.d.ts +15 -0
- package/dist/ssr/astro-middleware.js +19 -0
- package/dist/ssr/astro-middleware.js.map +1 -0
- package/dist/ssr/astro.d.ts +85 -8
- package/dist/ssr/astro.js +109 -25
- package/dist/ssr/astro.js.map +1 -1
- package/dist/ssr/async-storage.js +15 -6
- package/dist/ssr/async-storage.js.map +1 -1
- package/dist/ssr/collect-auto-properties.js +29 -11
- package/dist/ssr/collect-auto-properties.js.map +1 -1
- package/dist/ssr/collector.d.ts +17 -0
- package/dist/ssr/collector.js +53 -17
- package/dist/ssr/collector.js.map +1 -1
- package/dist/ssr/format-global-rules.js +1 -1
- package/dist/ssr/format-keyframes.js +1 -2
- package/dist/ssr/format-keyframes.js.map +1 -1
- package/dist/ssr/format-property.js +10 -9
- package/dist/ssr/format-property.js.map +1 -1
- package/dist/ssr/format-rules.js +8 -5
- package/dist/ssr/format-rules.js.map +1 -1
- package/dist/ssr/hydrate.js +1 -2
- package/dist/ssr/hydrate.js.map +1 -1
- package/dist/ssr/index.d.ts +2 -3
- package/dist/ssr/index.js +2 -4
- package/dist/ssr/index.js.map +1 -1
- package/dist/ssr/next.d.ts +1 -3
- package/dist/ssr/next.js +10 -7
- package/dist/ssr/next.js.map +1 -1
- package/dist/ssr/ssr-collector-ref.js +5 -4
- package/dist/ssr/ssr-collector-ref.js.map +1 -1
- package/dist/states/index.js +13 -259
- package/dist/states/index.js.map +1 -1
- package/dist/static/index.js +1 -2
- package/dist/static/inject.d.ts +5 -0
- package/dist/static/inject.js +17 -0
- package/dist/static/inject.js.map +1 -0
- package/dist/static/tastyStatic.js +1 -2
- package/dist/static/tastyStatic.js.map +1 -1
- package/dist/static/types.js +1 -1
- package/dist/styles/border.d.ts +1 -1
- package/dist/styles/border.js +30 -24
- package/dist/styles/border.js.map +1 -1
- package/dist/styles/color.d.ts +1 -1
- package/dist/styles/color.js +11 -8
- package/dist/styles/color.js.map +1 -1
- package/dist/styles/const.js +17 -0
- package/dist/styles/const.js.map +1 -0
- package/dist/styles/createStyle.js +28 -26
- package/dist/styles/createStyle.js.map +1 -1
- package/dist/styles/dimension.js +15 -3
- package/dist/styles/dimension.js.map +1 -1
- package/dist/styles/directional.js +133 -0
- package/dist/styles/directional.js.map +1 -0
- package/dist/styles/display.d.ts +3 -10
- package/dist/styles/display.js +45 -39
- package/dist/styles/display.js.map +1 -1
- package/dist/styles/fade.d.ts +1 -1
- package/dist/styles/fade.js +9 -5
- package/dist/styles/fade.js.map +1 -1
- package/dist/styles/fill.d.ts +2 -2
- package/dist/styles/fill.js +3 -4
- package/dist/styles/fill.js.map +1 -1
- package/dist/styles/flow.js +1 -1
- package/dist/styles/gap.d.ts +1 -1
- package/dist/styles/gap.js +4 -3
- package/dist/styles/gap.js.map +1 -1
- package/dist/styles/height.d.ts +1 -1
- package/dist/styles/height.js +1 -2
- package/dist/styles/height.js.map +1 -1
- package/dist/styles/index.d.ts +0 -1
- package/dist/styles/index.js +3 -4
- package/dist/styles/index.js.map +1 -1
- package/dist/styles/inset.d.ts +1 -29
- package/dist/styles/inset.js +19 -135
- package/dist/styles/inset.js.map +1 -1
- package/dist/styles/list.d.ts +5 -5
- package/dist/styles/list.js +4 -2
- package/dist/styles/list.js.map +1 -1
- package/dist/styles/margin.d.ts +1 -1
- package/dist/styles/margin.js +17 -89
- package/dist/styles/margin.js.map +1 -1
- package/dist/styles/outline.d.ts +1 -1
- package/dist/styles/outline.js +6 -16
- package/dist/styles/outline.js.map +1 -1
- package/dist/styles/padding.d.ts +1 -1
- package/dist/styles/padding.js +17 -89
- package/dist/styles/padding.js.map +1 -1
- package/dist/styles/placement.d.ts +37 -0
- package/dist/styles/placement.js +74 -0
- package/dist/styles/placement.js.map +1 -0
- package/dist/styles/predefined.d.ts +4 -4
- package/dist/styles/predefined.js +9 -10
- package/dist/styles/predefined.js.map +1 -1
- package/dist/styles/preset.d.ts +6 -1
- package/dist/styles/preset.js +54 -53
- package/dist/styles/preset.js.map +1 -1
- package/dist/styles/radius.d.ts +1 -3
- package/dist/styles/radius.js +38 -6
- package/dist/styles/radius.js.map +1 -1
- package/dist/styles/scrollMargin.d.ts +24 -0
- package/dist/styles/scrollMargin.js +32 -0
- package/dist/styles/scrollMargin.js.map +1 -0
- package/dist/styles/scrollbar.d.ts +1 -1
- package/dist/styles/scrollbar.js +8 -5
- package/dist/styles/scrollbar.js.map +1 -1
- package/dist/styles/shadow.d.ts +1 -1
- package/dist/styles/shadow.js +4 -3
- package/dist/styles/shadow.js.map +1 -1
- package/dist/styles/shared.js +17 -0
- package/dist/styles/shared.js.map +1 -0
- package/dist/styles/transition.d.ts +1 -1
- package/dist/styles/transition.js +5 -4
- package/dist/styles/transition.js.map +1 -1
- package/dist/styles/types.d.ts +71 -15
- package/dist/styles/width.d.ts +1 -1
- package/dist/styles/width.js +1 -2
- package/dist/styles/width.js.map +1 -1
- package/dist/tasty.d.ts +46 -893
- package/dist/tasty.js +96 -59
- package/dist/tasty.js.map +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/utils/cache-wrapper.js +4 -9
- package/dist/utils/cache-wrapper.js.map +1 -1
- package/dist/utils/case-converter.js +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 +228 -0
- package/dist/utils/color-space.js.map +1 -0
- package/dist/utils/colors.js +3 -2
- package/dist/utils/colors.js.map +1 -1
- package/dist/utils/deps-equal.js +15 -0
- package/dist/utils/deps-equal.js.map +1 -0
- package/dist/utils/dotize.js +1 -1
- package/dist/utils/dotize.js.map +1 -1
- package/dist/utils/filter-base-props.d.ts +1 -1
- package/dist/utils/filter-base-props.js +1 -1
- package/dist/utils/filter-base-props.js.map +1 -1
- package/dist/utils/get-display-name.js +1 -1
- package/dist/utils/has-keys.js +13 -0
- package/dist/utils/has-keys.js.map +1 -0
- package/dist/utils/hash.js +14 -0
- package/dist/utils/hash.js.map +1 -0
- package/dist/utils/is-dev-env.js +1 -1
- package/dist/utils/is-dev-env.js.map +1 -1
- package/dist/utils/is-valid-element-type.js +1 -1
- package/dist/utils/merge-styles.js +1 -2
- package/dist/utils/merge-styles.js.map +1 -1
- package/dist/utils/mod-attrs.d.ts +0 -2
- package/dist/utils/mod-attrs.js +3 -4
- package/dist/utils/mod-attrs.js.map +1 -1
- package/dist/utils/process-tokens.d.ts +3 -17
- package/dist/utils/process-tokens.js +19 -107
- package/dist/utils/process-tokens.js.map +1 -1
- package/dist/utils/resolve-recipes.js +1 -2
- package/dist/utils/resolve-recipes.js.map +1 -1
- package/dist/utils/selector-transform.js +1 -1
- package/dist/utils/string.js +1 -1
- package/dist/utils/styles.d.ts +3 -81
- package/dist/utils/styles.js +29 -539
- package/dist/utils/styles.js.map +1 -1
- package/dist/utils/typography.js +9 -1
- package/dist/utils/typography.js.map +1 -1
- package/dist/utils/warnings.js +1 -1
- package/dist/zero/babel.d.ts +31 -4
- package/dist/zero/babel.js +140 -48
- package/dist/zero/babel.js.map +1 -1
- package/dist/zero/css-writer.js +1 -2
- package/dist/zero/css-writer.js.map +1 -1
- package/dist/zero/extractor.js +54 -3
- package/dist/zero/extractor.js.map +1 -1
- package/dist/zero/index.js +1 -2
- package/dist/zero/next.d.ts +12 -0
- package/dist/zero/next.js +5 -4
- package/dist/zero/next.js.map +1 -1
- package/docs/PIPELINE.md +519 -0
- package/docs/README.md +31 -0
- package/docs/adoption.md +17 -7
- package/docs/comparison.md +17 -10
- package/docs/configuration.md +88 -4
- package/docs/debug.md +152 -339
- package/docs/design-system.md +27 -4
- package/docs/dsl.md +157 -9
- package/docs/getting-started.md +30 -14
- package/docs/injector.md +41 -25
- package/docs/methodology.md +122 -7
- package/docs/runtime.md +296 -34
- package/docs/ssr.md +134 -81
- package/docs/styles.md +46 -24
- package/docs/tasty-static.md +103 -3
- package/package.json +21 -9
- package/dist/ssr/context.d.ts +0 -8
- package/dist/ssr/context.js +0 -14
- package/dist/ssr/context.js.map +0 -1
- package/dist/styles/align.d.ts +0 -15
- package/dist/styles/align.js +0 -14
- package/dist/styles/align.js.map +0 -1
- package/dist/styles/justify.d.ts +0 -15
- package/dist/styles/justify.js +0 -14
- package/dist/styles/justify.js.map +0 -1
- 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
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
<h1 align="center">Tasty</h1>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
|
-
<strong>
|
|
9
|
-
|
|
8
|
+
<strong>Deterministic styling for stateful component systems.</strong><br>
|
|
9
|
+
A design-system styling engine that compiles component states into mutually exclusive selectors.
|
|
10
10
|
</p>
|
|
11
11
|
|
|
12
12
|
<p align="center">
|
|
@@ -17,23 +17,41 @@
|
|
|
17
17
|
|
|
18
18
|
---
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
Tasty is a styling engine for design systems that generates deterministic CSS for stateful components.
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
It compiles state maps into **mutually exclusive selectors**, so for a given property and component state, one branch wins by construction instead of competing through cascade and specificity.
|
|
23
|
+
|
|
24
|
+
That is the core guarantee: component styling resolves from declared state logic, not from source-order accidents or specificity fights.
|
|
25
|
+
|
|
26
|
+
Tasty fits best when you are building a design system or component library with intersecting states, variants, tokens, sub-elements, responsive rules, and extension semantics that need to stay predictable over time.
|
|
27
|
+
|
|
28
|
+
On top of that foundation, Tasty gives teams a governed styling model: a CSS-like DSL, tokens, recipes, typed style props, sub-elements, and multiple rendering modes.
|
|
29
|
+
|
|
30
|
+
- **New here?** Start with [Comparison](docs/comparison.md) if you are evaluating fit.
|
|
31
|
+
- **Adopting Tasty?** Read the [Adoption Guide](docs/adoption.md).
|
|
32
|
+
- **Want the mechanism first?** Jump to [How It Actually Works](#how-it-actually-works).
|
|
33
|
+
- **Ready to build?** Go to [Getting Started](docs/getting-started.md).
|
|
23
34
|
|
|
24
35
|
## Why Tasty
|
|
25
36
|
|
|
26
|
-
- **Deterministic
|
|
27
|
-
- **
|
|
28
|
-
- **
|
|
29
|
-
- **
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
- **
|
|
34
|
-
- **Runtime
|
|
35
|
-
- **
|
|
36
|
-
- **
|
|
37
|
+
- **Deterministic composition, not cascade fights** — Stateful styles resolve from the state map you declared, not from selector competition. See [How It Actually Works](#how-it-actually-works).
|
|
38
|
+
- **Built for design-system teams** — Best fit for reusable component systems with complex state interactions.
|
|
39
|
+
- **A governed styling model, not just syntax sugar** — Design-system authors define the styling language product teams consume.
|
|
40
|
+
- **DSL that still feels like CSS** — Familiar property names, less selector boilerplate. Start with the [Style DSL](docs/dsl.md), then use [Style Properties](docs/styles.md) as the handler reference.
|
|
41
|
+
|
|
42
|
+
### Supporting capabilities
|
|
43
|
+
|
|
44
|
+
- **Typed style props and mod props** — `styleProps` exposes selected CSS properties as typed React props (`<Space flow="row" gap="2x">`); `modProps` does the same for modifier keys (`<Button isLoading size="large">`). Both support state maps and full TypeScript autocomplete. See [Style Props](#style-props) and [Mod Props](#mod-props).
|
|
45
|
+
- **Runtime, SSR, and zero-runtime options** — Use `tasty()` for runtime React components, add SSR integrations when your framework renders that runtime on the server, or use `tastyStatic()` when you specifically want build-time extraction instead of runtime styling.
|
|
46
|
+
- **Broad modern CSS coverage** — Media queries, container queries, `@supports`, `:has()`, `@starting-style`, `@property`, `@keyframes`, and more. Features that do not fit the component model (such as `@layer` and `!important`) are intentionally left out.
|
|
47
|
+
- **Performance and caching** — Runtime mode injects CSS on demand, reuses chunks aggressively, and relies on multi-level caching so large component systems stay practical.
|
|
48
|
+
- **TypeScript-first and AI-friendly** — Style definitions are declarative, structurally consistent, and fully typed, which helps both humans and tooling understand advanced stateful styles without hidden cascade logic.
|
|
49
|
+
|
|
50
|
+
## Why It Exists
|
|
51
|
+
|
|
52
|
+
Modern component styling becomes fragile when multiple selectors can still win for the same property. Hover, disabled, theme, breakpoint, parent state, and root state rules start competing through specificity and source order.
|
|
53
|
+
|
|
54
|
+
Tasty replaces that competition with explicit state-map resolution. Each property compiles into mutually exclusive branches, so component styling stays deterministic as systems grow. For the full mechanism, jump to [How It Actually Works](#how-it-actually-works).
|
|
37
55
|
|
|
38
56
|
## Installation
|
|
39
57
|
|
|
@@ -41,6 +59,30 @@ That guarantee unlocks a concise, CSS-like DSL where design tokens, custom units
|
|
|
41
59
|
pnpm add @tenphi/tasty
|
|
42
60
|
```
|
|
43
61
|
|
|
62
|
+
Requirements:
|
|
63
|
+
|
|
64
|
+
- Node.js 20+
|
|
65
|
+
- React 18+ (peer dependency for the React entry points)
|
|
66
|
+
- `pnpm`, `npm`, or `yarn`
|
|
67
|
+
|
|
68
|
+
Other package managers:
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
npm add @tenphi/tasty
|
|
72
|
+
yarn add @tenphi/tasty
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
## Start Here
|
|
76
|
+
|
|
77
|
+
For the fuller docs map beyond the quick routes above, start here:
|
|
78
|
+
|
|
79
|
+
- **[Comparison](docs/comparison.md)** — read this first if you are evaluating whether Tasty fits your team's styling model
|
|
80
|
+
- **[Adoption Guide](docs/adoption.md)** — understand who Tasty is for, where it fits, and how to introduce it incrementally
|
|
81
|
+
- **[Getting Started](docs/getting-started.md)** — the canonical onboarding path: install, first component, optional shared `configure()`, ESLint, editor tooling, and rendering mode selection
|
|
82
|
+
- **[Style rendering pipeline](docs/PIPELINE.md)** — see the selector model behind deterministic style resolution
|
|
83
|
+
- **[Docs Hub](docs/README.md)** — choose docs by role and task: runtime, zero-runtime, runtime SSR integration, design-system authoring, internals, and debugging
|
|
84
|
+
- **[Methodology](docs/methodology.md)** — the recommended component model and public API conventions for design-system code
|
|
85
|
+
|
|
44
86
|
## Quick Start
|
|
45
87
|
|
|
46
88
|
### Create a styled component
|
|
@@ -53,11 +95,12 @@ const Card = tasty({
|
|
|
53
95
|
styles: {
|
|
54
96
|
display: 'flex',
|
|
55
97
|
flow: 'column',
|
|
56
|
-
padding: '
|
|
57
|
-
gap: '
|
|
58
|
-
fill: '
|
|
59
|
-
|
|
60
|
-
|
|
98
|
+
padding: '24px',
|
|
99
|
+
gap: '12px',
|
|
100
|
+
fill: 'white',
|
|
101
|
+
color: '#222',
|
|
102
|
+
border: '1px solid #ddd',
|
|
103
|
+
radius: '12px',
|
|
61
104
|
},
|
|
62
105
|
});
|
|
63
106
|
|
|
@@ -65,7 +108,11 @@ const Card = tasty({
|
|
|
65
108
|
<Card>Hello World</Card>
|
|
66
109
|
```
|
|
67
110
|
|
|
68
|
-
Every value maps to CSS you'd recognize
|
|
111
|
+
Every value maps to CSS you'd recognize. This example is intentionally a simple first contact, not a tour of the whole DSL.
|
|
112
|
+
|
|
113
|
+
When you want a more design-system-shaped authoring model, Tasty also supports built-in units, tokens, recipes, state aliases, and color values such as `okhsl(...)` without extra runtime libraries.
|
|
114
|
+
|
|
115
|
+
Use `configure()` when you want to define shared tokens, state aliases, recipes, or other conventions for your app or design system. For a fuller onboarding path, follow [Getting Started](docs/getting-started.md).
|
|
69
116
|
|
|
70
117
|
### Add state-driven styles
|
|
71
118
|
|
|
@@ -112,7 +159,7 @@ const DangerButton = tasty(Button, {
|
|
|
112
159
|
|
|
113
160
|
Child styles merge with parent styles intelligently — state maps can extend or replace parent states per-property.
|
|
114
161
|
|
|
115
|
-
###
|
|
162
|
+
### Optional: configure shared conventions
|
|
116
163
|
|
|
117
164
|
```tsx
|
|
118
165
|
import { configure } from '@tenphi/tasty';
|
|
@@ -129,66 +176,38 @@ configure({
|
|
|
129
176
|
});
|
|
130
177
|
```
|
|
131
178
|
|
|
132
|
-
Predefined states turn complex selector logic into single tokens
|
|
133
|
-
|
|
134
|
-
### CSS properties as props
|
|
135
|
-
|
|
136
|
-
With `styleProps`, a component can expose the styles you choose as normal typed props. That means you can adjust layout, spacing, alignment, or positioning right where the component is used, instead of introducing wrapper elements or reaching for a separate styling API.
|
|
137
|
-
|
|
138
|
-
This is especially good for prototyping and fast UI iteration: you can shape interfaces quickly, while still staying inside a typed, design-system-aware component API that scales to production.
|
|
139
|
-
|
|
140
|
-
```tsx
|
|
141
|
-
import { tasty, FLOW_STYLES, POSITION_STYLES } from '@tenphi/tasty';
|
|
142
|
-
|
|
143
|
-
const Space = tasty({
|
|
144
|
-
styles: {
|
|
145
|
-
display: 'flex',
|
|
146
|
-
flow: 'column',
|
|
147
|
-
gap: '1x',
|
|
148
|
-
},
|
|
149
|
-
styleProps: FLOW_STYLES,
|
|
150
|
-
});
|
|
179
|
+
Use `configure()` once when your app or design system needs shared aliases, tokens, recipes, or parser extensions. Predefined states turn complex selector logic into single tokens, so teams can write `@mobile` instead of repeating media query expressions in every component.
|
|
151
180
|
|
|
152
|
-
|
|
153
|
-
as: 'button',
|
|
154
|
-
styles: {
|
|
155
|
-
padding: '1.5x 3x',
|
|
156
|
-
fill: '#primary',
|
|
157
|
-
color: '#primary-text',
|
|
158
|
-
radius: true,
|
|
159
|
-
},
|
|
160
|
-
styleProps: POSITION_STYLES,
|
|
161
|
-
});
|
|
162
|
-
```
|
|
181
|
+
### Props as the public API
|
|
163
182
|
|
|
164
|
-
|
|
183
|
+
`styleProps` exposes selected CSS properties as typed React props, and `modProps` does the same for modifier keys. Together they let design systems define a governed, typed component API without wrapper elements or `styles` overrides:
|
|
165
184
|
|
|
166
185
|
```tsx
|
|
167
186
|
<Space flow="row" gap="2x" placeItems="center">
|
|
168
|
-
<
|
|
169
|
-
<Button placeSelf="end">Add Item</Button>
|
|
187
|
+
<Button isLoading size="large" placeSelf="end">Submit</Button>
|
|
170
188
|
</Space>
|
|
171
189
|
```
|
|
172
190
|
|
|
173
|
-
|
|
191
|
+
See [Style Props](#style-props) and [Mod Props](#mod-props) below, or the full reference in [Runtime API](docs/runtime.md#style-props).
|
|
174
192
|
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
```
|
|
193
|
+
## Choose a Styling Approach
|
|
194
|
+
|
|
195
|
+
Once you understand the component model, pick the rendering mode that matches your app.
|
|
196
|
+
|
|
197
|
+
| Approach | Entry point | Best for | Trade-off |
|
|
198
|
+
|----------|-------------|----------|-----------|
|
|
199
|
+
| **Runtime** | `@tenphi/tasty` | Interactive apps with reusable stateful components and design systems | Full feature set; CSS is generated on demand at runtime |
|
|
200
|
+
| **Zero-runtime** | `@tenphi/tasty/static` | Static sites, SSG, landing pages | Requires the Babel plugin; no component-level `styleProps` or runtime-only APIs |
|
|
184
201
|
|
|
185
|
-
|
|
202
|
+
If your framework can execute runtime React code on the server, you can also add **SSR on top of runtime** with `@tenphi/tasty/ssr/*`. This uses the same `tasty()` pipeline, but collects CSS during server rendering and hydrates the cache on the client. That is the model for Next.js, generic React SSR, and Astro islands. See [Getting Started](docs/getting-started.md#choosing-a-rendering-mode), [Zero Runtime](docs/tasty-static.md), and [Server-Side Rendering](docs/ssr.md).
|
|
186
203
|
|
|
187
204
|
## How It Actually Works
|
|
188
205
|
|
|
189
206
|
This is the core idea that makes everything else possible.
|
|
190
207
|
|
|
191
|
-
|
|
208
|
+
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)**.
|
|
209
|
+
|
|
210
|
+
### The structural problem with normal CSS
|
|
192
211
|
|
|
193
212
|
First, the **cascade** resolves conflicts by specificity and source order: when multiple selectors match, the one with the highest specificity wins, or — if specificity is equal — the last one in source order wins. That makes styles inherently fragile. Reordering imports, adding a media query, or composing components from different libraries can silently break styling.
|
|
194
213
|
|
|
@@ -201,7 +220,11 @@ A small example makes this tangible. Two rules for a button's background:
|
|
|
201
220
|
|
|
202
221
|
Both selectors have specificity `(0, 1, 1)`. When the button is hovered **and** disabled, both match — and the last rule in source order wins. Swap the two lines and a hovered disabled button silently turns blue instead of gray. This class of bug is invisible in code review because the logic is correct; only the ordering is wrong.
|
|
203
222
|
|
|
204
|
-
|
|
223
|
+
### Why real state logic is hard to author by hand
|
|
224
|
+
|
|
225
|
+
Authoring selectors that capture real-world state logic is fundamentally hard. A single state like "dark mode" may depend on a root attribute, an OS preference, or both — each branch needing its own selector, proper negation of competing branches, and correct `@media` nesting. The example below shows the CSS you'd write by hand for just *one* property with *one* state. Scale that across dozens of properties, then add breakpoints and container queries, and the selector logic quickly becomes unmanageable.
|
|
226
|
+
|
|
227
|
+
### What Tasty generates instead
|
|
205
228
|
|
|
206
229
|
Tasty solves both problems at once: **every state mapping compiles into mutually exclusive selectors.**
|
|
207
230
|
|
|
@@ -246,8 +269,6 @@ Better — but the bare `.t0` default still matches unconditionally. It matches
|
|
|
246
269
|
|
|
247
270
|
This is just *one* property with *one* state, and getting it right already takes multiple iterations. The correct selectors require negating every other branch — which is exactly what Tasty generates automatically:
|
|
248
271
|
|
|
249
|
-
Tasty generates the correct version automatically:
|
|
250
|
-
|
|
251
272
|
```css
|
|
252
273
|
/* Branch 1: Explicit dark schema */
|
|
253
274
|
:root[data-schema="dark"] .t0.t0 {
|
|
@@ -274,14 +295,18 @@ Tasty generates the correct version automatically:
|
|
|
274
295
|
}
|
|
275
296
|
```
|
|
276
297
|
|
|
298
|
+
### What guarantee that gives you
|
|
299
|
+
|
|
277
300
|
Every rule is guarded by the negation of higher-priority rules. No two rules can match at the same time. No specificity arithmetic. No source-order dependence. Components compose and extend without collisions.
|
|
278
301
|
|
|
279
|
-
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
|
|
302
|
+
By absorbing selector complexity, Tasty makes advanced CSS patterns practical again — nested container queries, multi-condition `@supports` gates, and combined root-state/media branches. You stay in pure CSS instead of relying on JavaScript workarounds, so the browser can optimize layout, painting, and transitions natively. Tasty keeps the solution in CSS while removing much of the selector bookkeeping that is hard to maintain by hand.
|
|
280
303
|
|
|
281
|
-
[Try it in the
|
|
304
|
+
[Try it in the playground →](https://tasty.style/playground)
|
|
282
305
|
|
|
283
306
|
## Capabilities
|
|
284
307
|
|
|
308
|
+
This section is a quick product tour. For the canonical guides and references, start from the [Docs Hub](docs/README.md).
|
|
309
|
+
|
|
285
310
|
### Design Tokens and Custom Units
|
|
286
311
|
|
|
287
312
|
Tokens are first-class. Colors use `#name` syntax. Spacing, radius, and border width use multiplier units tied to CSS custom properties:
|
|
@@ -317,12 +342,12 @@ Every style property accepts a state mapping object. Keys can be combined with b
|
|
|
317
342
|
| Class selector (supported) | `.is-active` | `.is-active` |
|
|
318
343
|
| Media query | `@media(w < 768px)` | `@media (width < 768px)` |
|
|
319
344
|
| Container query | `@(panel, w >= 300px)` | `@container panel (width >= 300px)` |
|
|
320
|
-
| Root state | `@root(
|
|
345
|
+
| Root state | `@root(schema=dark)` | `:root[data-schema="dark"]` |
|
|
321
346
|
| Parent state | `@parent(theme=danger)` | `:is([data-theme="danger"] *)` |
|
|
322
347
|
| Feature query | `@supports(display: grid)` | `@supports (display: grid)` |
|
|
323
348
|
| Entry animation | `@starting` | `@starting-style` |
|
|
324
349
|
|
|
325
|
-
Combine with `&` (AND), `|` (OR), `!` (NOT):
|
|
350
|
+
Combine with `&` (AND), `|` (OR), `!` (NOT), `^` (XOR):
|
|
326
351
|
|
|
327
352
|
```tsx
|
|
328
353
|
fill: {
|
|
@@ -334,240 +359,174 @@ fill: {
|
|
|
334
359
|
|
|
335
360
|
### Sub-Element Styling
|
|
336
361
|
|
|
337
|
-
|
|
362
|
+
Compound components can style inner parts from the parent definition with capitalized keys in `styles` and optional `elements` declarations, producing typed sub-components like `<Card.Title />` instead of separate wrapper components or ad hoc class naming.
|
|
338
363
|
|
|
339
|
-
|
|
340
|
-
const Card = tasty({
|
|
341
|
-
styles: {
|
|
342
|
-
padding: '4x',
|
|
343
|
-
Title: { preset: 'h3', color: '#primary' },
|
|
344
|
-
Content: { color: '#text', preset: 't2' },
|
|
345
|
-
},
|
|
346
|
-
elements: { Title: 'h2', Content: 'div' },
|
|
347
|
-
});
|
|
364
|
+
Sub-elements share the root state context by default, so keys like `:hover`, modifiers, root states, and media queries resolve as one coordinated styling block. Use `@own(...)` when a sub-element should react to its own state, and use the `$` selector affix when you need precise descendant targeting.
|
|
348
365
|
|
|
349
|
-
|
|
350
|
-
<Card.Title>Heading</Card.Title>
|
|
351
|
-
<Card.Content>Body text</Card.Content>
|
|
352
|
-
</Card>
|
|
353
|
-
```
|
|
366
|
+
See [Runtime API - Sub-element Styling](docs/runtime.md#sub-element-styling), [Style DSL - Advanced States](docs/dsl.md#advanced-states--prefix), and [Methodology](docs/methodology.md#component-architecture-root--sub-elements).
|
|
354
367
|
|
|
355
|
-
|
|
368
|
+
### Style Props
|
|
356
369
|
|
|
357
|
-
|
|
370
|
+
`styleProps` exposes selected CSS properties as typed React props. Components control which properties to open up; consumers get layout and composition knobs without `styles` overrides. Supports state maps for responsive values.
|
|
358
371
|
|
|
359
|
-
|
|
372
|
+
```tsx
|
|
373
|
+
const Space = tasty({
|
|
374
|
+
styles: { display: 'flex', flow: 'column', gap: '1x' },
|
|
375
|
+
styleProps: FLOW_STYLES,
|
|
376
|
+
});
|
|
360
377
|
|
|
361
|
-
|
|
378
|
+
<Space flow="row" gap={{ '': '2x', '@tablet': '4x' }}>
|
|
379
|
+
```
|
|
362
380
|
|
|
363
|
-
|
|
381
|
+
See [Runtime API - Style Props](docs/runtime.md#style-props) and [Methodology - styleProps](docs/methodology.md#styleprops-as-the-public-api).
|
|
364
382
|
|
|
365
|
-
###
|
|
383
|
+
### Mod Props
|
|
366
384
|
|
|
367
|
-
|
|
385
|
+
`modProps` exposes modifier keys as typed React props — the modifier equivalent of `styleProps`. Accepts an array of key names or an object with type descriptors (`Boolean`, `String`, `Number`, or enum arrays) for full TypeScript autocomplete.
|
|
368
386
|
|
|
369
387
|
```tsx
|
|
370
388
|
const Button = tasty({
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
389
|
+
as: 'button',
|
|
390
|
+
modProps: { isLoading: Boolean, size: ['sm', 'md', 'lg'] as const },
|
|
391
|
+
styles: {
|
|
392
|
+
fill: { '': '#primary', isLoading: '#primary.5' },
|
|
393
|
+
padding: { '': '2x 4x', 'size=sm': '1x 2x' },
|
|
376
394
|
},
|
|
377
395
|
});
|
|
378
396
|
|
|
379
|
-
<Button
|
|
397
|
+
<Button isLoading size="lg">Submit</Button>
|
|
380
398
|
```
|
|
381
399
|
|
|
382
|
-
|
|
400
|
+
See [Runtime API - Mod Props](docs/runtime.md#mod-props) and [Methodology - modProps](docs/methodology.md#modprops-and-mods).
|
|
383
401
|
|
|
384
|
-
|
|
402
|
+
### Variants
|
|
385
403
|
|
|
386
|
-
|
|
387
|
-
configure({
|
|
388
|
-
recipes: {
|
|
389
|
-
card: { padding: '4x', fill: '#surface', radius: '1r', border: true },
|
|
390
|
-
elevated: { shadow: '0 2x 4x #shadow' },
|
|
391
|
-
},
|
|
392
|
-
});
|
|
404
|
+
Variants let one component expose named visual versions without pre-generating a separate class for every possible combination. In runtime mode, Tasty emits only the variant CSS that is actually used.
|
|
393
405
|
|
|
394
|
-
|
|
395
|
-
styles: {
|
|
396
|
-
recipe: 'card elevated',
|
|
397
|
-
color: '#text',
|
|
398
|
-
},
|
|
399
|
-
});
|
|
400
|
-
```
|
|
406
|
+
See [Runtime API - Variants](docs/runtime.md#variants).
|
|
401
407
|
|
|
402
|
-
|
|
408
|
+
### Recipes
|
|
403
409
|
|
|
404
|
-
|
|
410
|
+
Recipes are reusable style bundles defined in `configure({ recipes })` and applied with the `recipe` style property. They are useful when your design system wants shared state logic or visual presets without forcing every component to repeat the same style map.
|
|
405
411
|
|
|
406
|
-
|
|
412
|
+
Use `/` to post-apply recipes after local styles when recipe states should win the final merge order, and use `none` to skip base recipes entirely.
|
|
407
413
|
|
|
408
|
-
|
|
414
|
+
See [Style DSL - Recipes](docs/dsl.md#recipes) and [Configuration - recipes](docs/configuration.md#recipes).
|
|
409
415
|
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
animation: 'pulse 2s infinite',
|
|
414
|
-
transform: 'scale($pulse-scale)',
|
|
415
|
-
'@keyframes': {
|
|
416
|
-
pulse: {
|
|
417
|
-
'0%, 100%': { '$pulse-scale': 1 },
|
|
418
|
-
'50%': { '$pulse-scale': 1.05 },
|
|
419
|
-
},
|
|
420
|
-
},
|
|
421
|
-
},
|
|
422
|
-
});
|
|
423
|
-
```
|
|
416
|
+
### Auto-Inferred `@property`
|
|
417
|
+
|
|
418
|
+
Tasty usually removes the need to hand-author CSS [`@property`](https://developer.mozilla.org/en-US/docs/Web/CSS/@property) rules. When a custom property receives a concrete value, Tasty infers its syntax and registers the matching `@property` automatically, which makes transitions and animations on custom properties work without extra boilerplate.
|
|
424
419
|
|
|
425
|
-
|
|
420
|
+
If you prefer explicit control, disable inference with `configure({ autoPropertyTypes: false })` or declare the properties yourself.
|
|
426
421
|
|
|
427
|
-
|
|
422
|
+
See [Style DSL - Properties (`@property`)](docs/dsl.md#properties-property).
|
|
428
423
|
|
|
429
424
|
### Explicit `@properties`
|
|
430
425
|
|
|
431
|
-
|
|
426
|
+
Use explicit `@properties` only when you need to override defaults such as `inherits: false` or a custom `initialValue`.
|
|
432
427
|
|
|
433
|
-
|
|
434
|
-
'@properties': {
|
|
435
|
-
'$pulse-scale': { syntax: '<number>', inherits: false, initialValue: 1 },
|
|
436
|
-
},
|
|
437
|
-
```
|
|
428
|
+
See [Style DSL - Properties (`@property`)](docs/dsl.md#properties-property).
|
|
438
429
|
|
|
439
|
-
###
|
|
430
|
+
### Style Functions
|
|
440
431
|
|
|
441
|
-
|
|
432
|
+
When you do not need a full component wrapper, use the style functions directly: `useStyles` for local class names, `useGlobalStyles` for selector-scoped global CSS, `useRawCSS` for raw rules, plus `useKeyframes`, `useProperty`, `useFontFace`, and `useCounterStyle` for animation, custom-property, font, and counter-style primitives. All style functions are hook-free and work in React Server Components.
|
|
442
433
|
|
|
443
|
-
|
|
444
|
-
import { useStyles, useGlobalStyles, useRawCSS } from '@tenphi/tasty';
|
|
434
|
+
See [Runtime API - Style Functions](docs/runtime.md#style-functions).
|
|
445
435
|
|
|
446
|
-
|
|
447
|
-
const { className } = useStyles({ padding: '2x', fill: '#surface' });
|
|
448
|
-
useGlobalStyles('body', { margin: '0' });
|
|
449
|
-
useRawCSS('@font-face { font-family: "Custom"; src: url(...); }');
|
|
436
|
+
### Zero-Runtime Mode
|
|
450
437
|
|
|
451
|
-
|
|
452
|
-
}
|
|
453
|
-
```
|
|
438
|
+
Use `tastyStatic` when you want the same DSL and state model, but with CSS extracted at build time and no styling runtime in the client bundle. It is a strong fit for static sites, landing pages, and other build-time-first setups.
|
|
454
439
|
|
|
455
|
-
|
|
440
|
+
See [Zero Runtime (tastyStatic)](docs/tasty-static.md) and [Getting Started - Choosing a rendering mode](docs/getting-started.md#choosing-a-rendering-mode).
|
|
456
441
|
|
|
457
|
-
|
|
442
|
+
### `tasty` vs `tastyStatic`
|
|
458
443
|
|
|
459
|
-
|
|
460
|
-
import { tastyStatic } from '@tenphi/tasty/static';
|
|
444
|
+
`tasty()` returns React components and injects CSS on demand at runtime. `tastyStatic()` returns class names and extracts CSS during the build. Both share the same DSL, tokens, units, state mappings, and recipes, so the main choice is runtime flexibility versus build-time extraction.
|
|
461
445
|
|
|
462
|
-
|
|
463
|
-
padding: '4x',
|
|
464
|
-
fill: '#surface',
|
|
465
|
-
radius: '1r',
|
|
466
|
-
color: { '': '#text', '@dark': '#text-on-dark' },
|
|
467
|
-
});
|
|
446
|
+
See [Zero Runtime (tastyStatic)](docs/tasty-static.md), [Runtime API](docs/runtime.md), and [Comparison - Build-time vs runtime](docs/comparison.md#build-time-vs-runtime).
|
|
468
447
|
|
|
469
|
-
|
|
470
|
-
<div className={card}>Static styles, zero runtime</div>
|
|
471
|
-
```
|
|
448
|
+
### Server-Side Rendering
|
|
472
449
|
|
|
473
|
-
|
|
450
|
+
SSR layers on top of runtime `tasty()` rather than introducing a separate styling model. Existing components stay unchanged while Tasty collects CSS during server rendering and hydrates the cache on the client.
|
|
474
451
|
|
|
475
|
-
|
|
476
|
-
module.exports = {
|
|
477
|
-
plugins: [
|
|
478
|
-
['@tenphi/tasty/babel-plugin', {
|
|
479
|
-
output: 'public/tasty.css',
|
|
480
|
-
config: {
|
|
481
|
-
states: { '@dark': '@root(theme=dark)' },
|
|
482
|
-
},
|
|
483
|
-
}],
|
|
484
|
-
],
|
|
485
|
-
};
|
|
486
|
-
```
|
|
452
|
+
Use `@tenphi/tasty/ssr/next` for Next.js App Router, `@tenphi/tasty/ssr/astro` for Astro, or the core SSR API for other React SSR setups.
|
|
487
453
|
|
|
488
|
-
|
|
454
|
+
See the [full SSR guide](docs/ssr.md).
|
|
489
455
|
|
|
490
|
-
|
|
491
|
-
|---|---|---|
|
|
492
|
-
| **Output** | React component | CSS class name |
|
|
493
|
-
| **CSS injection** | Runtime `<style>` tags | Build-time extraction |
|
|
494
|
-
| **Runtime cost** | Style generation on mount | None |
|
|
495
|
-
| **Generated CSS scope** | Only styles/variants used at runtime | All extracted static styles at build time |
|
|
496
|
-
| **Dynamic values** | Fully supported | Via CSS custom properties |
|
|
497
|
-
| **Sub-elements** | Built-in (`<C.Title>`) | Manual (`data-element`) |
|
|
498
|
-
| **Variants** | Built-in (`variants` option) | Separate static styles |
|
|
499
|
-
| **Framework** | React | Any (requires Babel) |
|
|
500
|
-
| **Best for** | Interactive apps, design systems | Static sites, SSG, landing pages |
|
|
456
|
+
## Entry Points
|
|
501
457
|
|
|
502
|
-
|
|
458
|
+
| Import | Description | Platform |
|
|
459
|
+
|--------|-------------|----------|
|
|
460
|
+
| `@tenphi/tasty` | Runtime style engine (`tasty`, style functions, `configure`) | Browser |
|
|
461
|
+
| `@tenphi/tasty/static` | Zero-runtime static styles (`tastyStatic`) | Browser |
|
|
462
|
+
| `@tenphi/tasty/core` | Lower-level internals (config, parser, pipeline, injector, style handlers) for tooling and advanced use | Browser / Node |
|
|
463
|
+
| `@tenphi/tasty/babel-plugin` | Babel plugin for zero-runtime CSS extraction | Node |
|
|
464
|
+
| `@tenphi/tasty/zero` | Programmatic extraction API | Node |
|
|
465
|
+
| `@tenphi/tasty/next` | Next.js integration wrapper | Node |
|
|
466
|
+
| `@tenphi/tasty/ssr` | Core SSR API (collector, context, hydration) | Node |
|
|
467
|
+
| `@tenphi/tasty/ssr/next` | Next.js App Router SSR integration | Node |
|
|
468
|
+
| `@tenphi/tasty/ssr/astro` | Astro integration + middleware | Node |
|
|
469
|
+
| `@tenphi/tasty/ssr/astro-client` | Astro client-side cache hydration | Browser |
|
|
503
470
|
|
|
504
|
-
|
|
471
|
+
## Browser Requirements
|
|
505
472
|
|
|
506
|
-
|
|
473
|
+
Tasty's exclusive selector system relies on modern CSS pseudo-class syntax:
|
|
507
474
|
|
|
508
|
-
-
|
|
509
|
-
-
|
|
510
|
-
-
|
|
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.
|
|
475
|
+
- **`:is()`** — available across all major browsers since January 2021 ([MDN Baseline](https://developer.mozilla.org/en-US/docs/Web/CSS/:is)).
|
|
476
|
+
- **Level-4 `:not()` with selector lists** — Chrome/Edge 88+, Firefox 84+, Safari 9+, Opera 75+.
|
|
477
|
+
- **Not supported:** IE 11.
|
|
515
478
|
|
|
516
|
-
|
|
479
|
+
## Performance
|
|
517
480
|
|
|
518
|
-
|
|
481
|
+
### Bundle Size
|
|
519
482
|
|
|
520
|
-
|
|
483
|
+
All sizes measured with [size-limit](https://github.com/ai/size-limit) — minified and brotli-compressed, including all dependencies.
|
|
521
484
|
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
485
|
+
| Entry point | Size |
|
|
486
|
+
|-------------|------|
|
|
487
|
+
| `@tenphi/tasty` (runtime + SSR) | ~44 kB |
|
|
488
|
+
| `@tenphi/tasty/core` (runtime, no SSR) | ~41 kB |
|
|
489
|
+
| `@tenphi/tasty/static` (zero-runtime) | ~1.5 kB |
|
|
525
490
|
|
|
526
|
-
|
|
491
|
+
Run `pnpm size` for exact up-to-date numbers.
|
|
527
492
|
|
|
528
|
-
|
|
529
|
-
children,
|
|
530
|
-
}: {
|
|
531
|
-
children: React.ReactNode;
|
|
532
|
-
}) {
|
|
533
|
-
return <TastyRegistry>{children}</TastyRegistry>;
|
|
534
|
-
}
|
|
535
|
-
```
|
|
493
|
+
### Runtime Benchmarks
|
|
536
494
|
|
|
537
|
-
|
|
538
|
-
// app/layout.tsx
|
|
539
|
-
import TastyStyleRegistry from './tasty-registry';
|
|
540
|
-
|
|
541
|
-
export default function RootLayout({
|
|
542
|
-
children,
|
|
543
|
-
}: {
|
|
544
|
-
children: React.ReactNode;
|
|
545
|
-
}) {
|
|
546
|
-
return (
|
|
547
|
-
<html>
|
|
548
|
-
<body>
|
|
549
|
-
<TastyStyleRegistry>{children}</TastyStyleRegistry>
|
|
550
|
-
</body>
|
|
551
|
-
</html>
|
|
552
|
-
);
|
|
553
|
-
}
|
|
554
|
-
```
|
|
495
|
+
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).
|
|
555
496
|
|
|
556
|
-
|
|
497
|
+
| Operation | ops/sec | Latency (mean) |
|
|
498
|
+
|-----------|--------:|---------------:|
|
|
499
|
+
| `renderStyles` — 5 flat properties (cold) | ~72,000 | ~14 us |
|
|
500
|
+
| `renderStyles` — state map with media/hover/modifier (cold) | ~22,000 | ~46 us |
|
|
501
|
+
| `renderStyles` — same styles (cached) | ~7,200,000 | ~0.14 us |
|
|
502
|
+
| `parseStateKey` — simple key like `:hover` (cold) | ~1,200,000 | ~0.9 us |
|
|
503
|
+
| `parseStateKey` — complex OR/AND/NOT key (cold) | ~190,000 | ~5 us |
|
|
504
|
+
| `parseStateKey` — any key (cached) | ~3,300,000–8,900,000 | ~0.1–0.3 us |
|
|
505
|
+
| `parseStyle` — value tokens like `2x 4x` (cold) | ~345,000 | ~3 us |
|
|
506
|
+
| `parseStyle` — color tokens (cold) | ~525,000 | ~1.9 us |
|
|
507
|
+
| `parseStyle` — any value (cached) | ~15,500,000 | ~0.06 us |
|
|
557
508
|
|
|
558
|
-
|
|
509
|
+
"Cold" benchmarks use unique inputs to bypass all caches. Cached benchmarks reuse a single input and measure the LRU hot path.
|
|
559
510
|
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
511
|
+
Run `pnpm bench` to reproduce.
|
|
512
|
+
|
|
513
|
+
#### What This Means in Practice
|
|
514
|
+
|
|
515
|
+
- **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.
|
|
516
|
+
- **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.
|
|
517
|
+
- **Cache multipliers are 30x–100x.** This confirms the multi-level LRU architecture (parser, state-key, simplify, condition, pipeline) is delivering real value.
|
|
518
|
+
- **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).
|
|
519
|
+
- **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.
|
|
520
|
+
|
|
521
|
+
### How It Stays Fast
|
|
522
|
+
|
|
523
|
+
- CSS is generated and injected only when styles are actually used.
|
|
524
|
+
- Multi-level caching avoids repeated parsing and style recomputation.
|
|
525
|
+
- Styles are split into reusable chunks and applied as multiple class names, so matching chunks can be reused across components instead of re-injected.
|
|
526
|
+
- Style normalization guarantees equivalent style input resolves to the same chunks, improving deduplication hit rates.
|
|
527
|
+
- A style garbage collector removes unused styles/chunks over time.
|
|
528
|
+
- A dedicated style injector minimizes DOM/style-tag overhead.
|
|
529
|
+
- This approach is validated in enterprise-scale apps where runtime styling overhead is not noticeable in normal UI flows.
|
|
571
530
|
|
|
572
531
|
## Ecosystem
|
|
573
532
|
|
|
@@ -575,7 +534,7 @@ Tasty is the core of a production-ready styling platform. These companion tools
|
|
|
575
534
|
|
|
576
535
|
### [ESLint Plugin](https://github.com/tenphi/eslint-plugin-tasty)
|
|
577
536
|
|
|
578
|
-
`@tenphi/eslint-plugin-tasty` — 27 lint rules
|
|
537
|
+
`@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
538
|
|
|
580
539
|
```bash
|
|
581
540
|
pnpm add -D @tenphi/eslint-plugin-tasty
|
|
@@ -630,9 +589,13 @@ Open-source React UI kit built on Tasty + React Aria. 100+ production components
|
|
|
630
589
|
|
|
631
590
|
## Documentation
|
|
632
591
|
|
|
592
|
+
Start from the docs hub if you want the shortest path to the right guide for your role or styling approach.
|
|
593
|
+
|
|
594
|
+
- **[Docs Hub](docs/README.md)** — audience-based navigation across onboarding, design-system authoring, runtime, zero-runtime, runtime SSR integration, debugging, and internals
|
|
595
|
+
|
|
633
596
|
### Start here
|
|
634
597
|
|
|
635
|
-
- **[Getting Started](docs/getting-started.md)** — Installation, first component, configuration, ESLint plugin setup, editor tooling, and rendering mode decision tree
|
|
598
|
+
- **[Getting Started](docs/getting-started.md)** — Installation, first component, optional shared configuration, ESLint plugin setup, editor tooling, and rendering mode decision tree
|
|
636
599
|
- **[Methodology](docs/methodology.md)** — The recommended patterns for structuring Tasty components: root + sub-elements, styleProps, tokens, styles vs style, wrapping and extension
|
|
637
600
|
|
|
638
601
|
### Guides
|
|
@@ -643,7 +606,7 @@ Open-source React UI kit built on Tasty + React Aria. 100+ production components
|
|
|
643
606
|
### Reference
|
|
644
607
|
|
|
645
608
|
- **[Style DSL](docs/dsl.md)** — The Tasty style language: state maps, tokens, units, color syntax, extending semantics, recipes, keyframes, and @property
|
|
646
|
-
- **[Runtime API](docs/runtime.md)** — React-specific API: `tasty()` factory, component props, variants, sub-elements, and
|
|
609
|
+
- **[Runtime API](docs/runtime.md)** — React-specific API: `tasty()` factory, component props, variants, sub-elements, and style functions
|
|
647
610
|
- **[Configuration](docs/configuration.md)** — Global configuration: tokens, recipes, custom units, style handlers, and TypeScript extensions
|
|
648
611
|
- **[Style Properties](docs/styles.md)** — Complete reference for all enhanced style properties: syntax, values, modifiers, and recommendations
|
|
649
612
|
|
|
@@ -654,6 +617,7 @@ Open-source React UI kit built on Tasty + React Aria. 100+ production components
|
|
|
654
617
|
|
|
655
618
|
### Internals
|
|
656
619
|
|
|
620
|
+
- **[Style rendering pipeline](docs/PIPELINE.md)** — How `Styles` become mutually exclusive CSS rules: parse → exclusives → combinations → handlers → merge → materialize (`src/pipeline/`)
|
|
657
621
|
- **[Style Injector](docs/injector.md)** — Internal CSS injection engine: `inject()`, `injectGlobal()`, `injectRawCSS()`, `keyframes()`, deduplication, reference counting, cleanup, SSR support, and Shadow DOM
|
|
658
622
|
- **[Debug Utilities](docs/debug.md)** — Runtime CSS inspection via `tastyDebug`: CSS extraction, element inspection, cache metrics, chunk breakdown, and performance monitoring
|
|
659
623
|
|