@tenphi/tasty 0.0.0-snapshot.af1baa9 → 0.0.0-snapshot.afbb186
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 +133 -252
- package/dist/_virtual/_rolldown/runtime.js +1 -2
- package/dist/chunks/cacheKey.d.ts +1 -0
- package/dist/chunks/cacheKey.js +1 -2
- 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 +1 -2
- 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 +105 -21
- package/dist/config.js +175 -49
- package/dist/config.js.map +1 -1
- package/dist/core/index.d.ts +7 -7
- package/dist/core/index.js +8 -8
- package/dist/counter-style/index.js +51 -0
- package/dist/counter-style/index.js.map +1 -0
- package/dist/debug.js +5 -6
- 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 +65 -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 +43 -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 +3 -8
- package/dist/hooks/useStyles.js +7 -225
- package/dist/hooks/useStyles.js.map +1 -1
- package/dist/index.d.ts +10 -8
- package/dist/index.js +11 -9
- package/dist/injector/index.d.ts +36 -19
- package/dist/injector/index.js +43 -20
- package/dist/injector/index.js.map +1 -1
- package/dist/injector/injector.d.ts +53 -3
- package/dist/injector/injector.js +235 -14
- package/dist/injector/injector.js.map +1 -1
- package/dist/injector/sheet-manager.d.ts +9 -13
- package/dist/injector/sheet-manager.js +41 -71
- package/dist/injector/sheet-manager.js.map +1 -1
- package/dist/injector/types.d.ts +112 -21
- package/dist/keyframes/index.js +1 -1
- package/dist/parser/classify.js +4 -5
- 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 +1 -2
- 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 +2 -0
- package/dist/pipeline/index.js +58 -20
- package/dist/pipeline/index.js.map +1 -1
- package/dist/pipeline/materialize.js +1 -3
- package/dist/pipeline/materialize.js.map +1 -1
- package/dist/pipeline/parseStateKey.js +5 -6
- 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 +1 -2
- package/dist/plugins/okhsl-plugin.js.map +1 -1
- package/dist/plugins/types.d.ts +12 -1
- package/dist/properties/index.js +2 -3
- 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 +79 -0
- package/dist/rsc-cache.js.map +1 -0
- package/dist/ssr/astro-client.d.ts +1 -0
- package/dist/ssr/astro-client.js +19 -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 +89 -10
- package/dist/ssr/astro.js +113 -29
- 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 +22 -13
- package/dist/ssr/collector.js +79 -31
- package/dist/ssr/collector.js.map +1 -1
- package/dist/ssr/context.js +4 -2
- package/dist/ssr/context.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 +1 -2
- 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.d.ts +20 -13
- package/dist/ssr/hydrate.js +25 -30
- package/dist/ssr/hydrate.js.map +1 -1
- package/dist/ssr/index.d.ts +3 -4
- package/dist/ssr/index.js +5 -7
- package/dist/ssr/index.js.map +1 -1
- package/dist/ssr/next.d.ts +6 -5
- package/dist/ssr/next.js +14 -10
- package/dist/ssr/next.js.map +1 -1
- package/dist/ssr/ssr-collector-ref.js +20 -3
- package/dist/ssr/ssr-collector-ref.js.map +1 -1
- package/dist/states/index.js +3 -2
- 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 +2 -3
- 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 +4 -5
- 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 +8 -9
- 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 +70 -14
- 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 -67
- package/dist/tasty.js.map +1 -1
- package/dist/utils/cache-wrapper.js +1 -2
- package/dist/utils/cache-wrapper.js.map +1 -1
- package/dist/utils/case-converter.js +1 -1
- package/dist/utils/color-math.js +1 -1
- package/dist/utils/color-math.js.map +1 -1
- package/dist/utils/color-space.js +1 -2
- package/dist/utils/color-space.js.map +1 -1
- package/dist/utils/colors.js +1 -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 +1 -1
- 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 +1 -2
- package/dist/utils/mod-attrs.js.map +1 -1
- package/dist/utils/process-tokens.d.ts +1 -5
- package/dist/utils/process-tokens.js +3 -11
- 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 +1 -3
- package/dist/utils/styles.js +2 -5
- package/dist/utils/styles.js.map +1 -1
- package/dist/utils/typography.d.ts +21 -10
- package/dist/utils/typography.js +10 -2
- package/dist/utils/typography.js.map +1 -1
- package/dist/utils/warnings.js +1 -1
- package/dist/zero/babel.d.ts +27 -101
- package/dist/zero/babel.js +164 -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/README.md +8 -7
- package/docs/adoption.md +11 -7
- package/docs/comparison.md +37 -33
- package/docs/configuration.md +130 -1
- package/docs/design-system.md +48 -13
- package/docs/dsl.md +155 -9
- package/docs/getting-started.md +20 -18
- package/docs/injector.md +42 -26
- package/docs/methodology.md +122 -7
- package/docs/react-api.md +557 -0
- package/docs/ssr.md +142 -82
- package/docs/styles.md +45 -23
- package/docs/tasty-static.md +103 -2
- package/package.json +20 -9
- package/dist/ssr/context.d.ts +0 -8
- 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/docs/runtime.md +0 -341
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
|
-
- **
|
|
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
|
+
- **Server-compatible by default, zero client JS in server-only contexts** — All `tasty()` components and style functions are hook-free. In server-only rendering (Next.js RSC, Astro without islands, SSG), they produce zero client JavaScript with the full feature set. Add SSR integration only when your app also has client-side hydration. Use `tastyStatic()` only when you need build-time extraction without React.
|
|
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
|
|
|
@@ -56,19 +74,14 @@ yarn add @tenphi/tasty
|
|
|
56
74
|
|
|
57
75
|
## Start Here
|
|
58
76
|
|
|
59
|
-
|
|
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 |
|
|
77
|
+
For the fuller docs map beyond the quick routes above, start here:
|
|
70
78
|
|
|
71
|
-
|
|
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
|
|
72
85
|
|
|
73
86
|
## Quick Start
|
|
74
87
|
|
|
@@ -82,11 +95,12 @@ const Card = tasty({
|
|
|
82
95
|
styles: {
|
|
83
96
|
display: 'flex',
|
|
84
97
|
flow: 'column',
|
|
85
|
-
padding: '
|
|
86
|
-
gap: '
|
|
87
|
-
fill: '
|
|
88
|
-
|
|
89
|
-
|
|
98
|
+
padding: '24px',
|
|
99
|
+
gap: '12px',
|
|
100
|
+
fill: 'white',
|
|
101
|
+
color: '#222',
|
|
102
|
+
border: '1px solid #ddd',
|
|
103
|
+
radius: '12px',
|
|
90
104
|
},
|
|
91
105
|
});
|
|
92
106
|
|
|
@@ -94,9 +108,11 @@ const Card = tasty({
|
|
|
94
108
|
<Card>Hello World</Card>
|
|
95
109
|
```
|
|
96
110
|
|
|
97
|
-
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.
|
|
98
112
|
|
|
99
|
-
|
|
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).
|
|
100
116
|
|
|
101
117
|
### Add state-driven styles
|
|
102
118
|
|
|
@@ -143,7 +159,7 @@ const DangerButton = tasty(Button, {
|
|
|
143
159
|
|
|
144
160
|
Child styles merge with parent styles intelligently — state maps can extend or replace parent states per-property.
|
|
145
161
|
|
|
146
|
-
###
|
|
162
|
+
### Optional: configure shared conventions
|
|
147
163
|
|
|
148
164
|
```tsx
|
|
149
165
|
import { configure } from '@tenphi/tasty';
|
|
@@ -160,60 +176,31 @@ configure({
|
|
|
160
176
|
});
|
|
161
177
|
```
|
|
162
178
|
|
|
163
|
-
Predefined states turn complex selector logic into single tokens
|
|
164
|
-
|
|
165
|
-
### CSS properties as props
|
|
166
|
-
|
|
167
|
-
With `styleProps`, a component can expose the styles you choose as normal typed props. That means you can adjust layout, spacing, alignment, or positioning right where the component is used, instead of introducing wrapper elements or reaching for a separate styling API.
|
|
168
|
-
|
|
169
|
-
This is especially good for prototyping and fast UI iteration: you can shape interfaces quickly, while still staying inside a typed, design-system-aware component API that scales to production.
|
|
170
|
-
|
|
171
|
-
```tsx
|
|
172
|
-
import { tasty, FLOW_STYLES, POSITION_STYLES } from '@tenphi/tasty';
|
|
173
|
-
|
|
174
|
-
const Space = tasty({
|
|
175
|
-
styles: {
|
|
176
|
-
display: 'flex',
|
|
177
|
-
flow: 'column',
|
|
178
|
-
gap: '1x',
|
|
179
|
-
},
|
|
180
|
-
styleProps: FLOW_STYLES,
|
|
181
|
-
});
|
|
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.
|
|
182
180
|
|
|
183
|
-
|
|
184
|
-
as: 'button',
|
|
185
|
-
styles: {
|
|
186
|
-
padding: '1.5x 3x',
|
|
187
|
-
fill: '#primary',
|
|
188
|
-
color: '#primary-text',
|
|
189
|
-
radius: true,
|
|
190
|
-
},
|
|
191
|
-
styleProps: POSITION_STYLES,
|
|
192
|
-
});
|
|
193
|
-
```
|
|
181
|
+
### Props as the public API
|
|
194
182
|
|
|
195
|
-
|
|
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:
|
|
196
184
|
|
|
197
185
|
```tsx
|
|
198
186
|
<Space flow="row" gap="2x" placeItems="center">
|
|
199
|
-
<
|
|
200
|
-
<Button placeSelf="end">Add Item</Button>
|
|
187
|
+
<Button isLoading size="large" placeSelf="end">Submit</Button>
|
|
201
188
|
</Space>
|
|
202
189
|
```
|
|
203
190
|
|
|
204
|
-
|
|
191
|
+
See [Style Props](#style-props) and [Mod Props](#mod-props) below, or the full reference in [React API](docs/react-api.md#style-props).
|
|
205
192
|
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
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 (default)** | `tasty()` from `@tenphi/tasty` | All React apps — server-rendered by default, zero client JS until you need interactivity | Full feature set; CSS computed during React rendering (server or client) |
|
|
200
|
+
| **Runtime + SSR integration** | Add `@tenphi/tasty/ssr/*` | Apps with client-side hydration (Next.js client components, Astro islands) | Adds CSS deduplication, FOUC prevention, and client cache hydration |
|
|
201
|
+
| **Zero-runtime** | `tastyStatic()` from `@tenphi/tasty/static` | Non-React frameworks or when you need build-time extraction without React | Requires the Babel plugin; no component-level `styleProps` or runtime-only APIs |
|
|
215
202
|
|
|
216
|
-
|
|
203
|
+
All `tasty()` components are hook-free and work as React Server Components. In server-only contexts — Next.js RSC without `'use client'`, Astro without `client:*` directives, and other SSG setups — they produce the same end result as `tastyStatic()` (static HTML + CSS, zero client JavaScript) but with the full feature set including `styleProps`, sub-elements, and variants. SSR integration is only needed when your app also has client-side rendering. See [Getting Started](docs/getting-started.md#choosing-a-rendering-mode), [Zero Runtime](docs/tasty-static.md), and [Server-Side Rendering](docs/ssr.md).
|
|
217
204
|
|
|
218
205
|
## How It Actually Works
|
|
219
206
|
|
|
@@ -221,7 +208,7 @@ This is the core idea that makes everything else possible.
|
|
|
221
208
|
|
|
222
209
|
For the end-to-end architecture — parsing state keys, building exclusive conditions, merging by output, and materializing selectors and at-rules — see **[Style rendering pipeline](docs/PIPELINE.md)**.
|
|
223
210
|
|
|
224
|
-
|
|
211
|
+
### The structural problem with normal CSS
|
|
225
212
|
|
|
226
213
|
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.
|
|
227
214
|
|
|
@@ -234,7 +221,11 @@ A small example makes this tangible. Two rules for a button's background:
|
|
|
234
221
|
|
|
235
222
|
Both selectors have specificity `(0, 1, 1)`. When the button is hovered **and** disabled, both match — and the last rule in source order wins. Swap the two lines and a hovered disabled button silently turns blue instead of gray. This class of bug is invisible in code review because the logic is correct; only the ordering is wrong.
|
|
236
223
|
|
|
237
|
-
|
|
224
|
+
### Why real state logic is hard to author by hand
|
|
225
|
+
|
|
226
|
+
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.
|
|
227
|
+
|
|
228
|
+
### What Tasty generates instead
|
|
238
229
|
|
|
239
230
|
Tasty solves both problems at once: **every state mapping compiles into mutually exclusive selectors.**
|
|
240
231
|
|
|
@@ -279,8 +270,6 @@ Better — but the bare `.t0` default still matches unconditionally. It matches
|
|
|
279
270
|
|
|
280
271
|
This is just *one* property with *one* state, and getting it right already takes multiple iterations. The correct selectors require negating every other branch — which is exactly what Tasty generates automatically:
|
|
281
272
|
|
|
282
|
-
Tasty generates the correct version automatically:
|
|
283
|
-
|
|
284
273
|
```css
|
|
285
274
|
/* Branch 1: Explicit dark schema */
|
|
286
275
|
:root[data-schema="dark"] .t0.t0 {
|
|
@@ -307,11 +296,13 @@ Tasty generates the correct version automatically:
|
|
|
307
296
|
}
|
|
308
297
|
```
|
|
309
298
|
|
|
299
|
+
### What guarantee that gives you
|
|
300
|
+
|
|
310
301
|
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.
|
|
311
302
|
|
|
312
|
-
By absorbing selector complexity, Tasty makes advanced CSS patterns practical again — nested container queries, multi-condition `@supports` gates, and combined root-state/media branches. You stay in pure CSS instead of relying on JavaScript workarounds, so the browser can optimize layout, painting, and transitions natively. Tasty
|
|
303
|
+
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.
|
|
313
304
|
|
|
314
|
-
[Try it in the
|
|
305
|
+
[Try it in the playground →](https://tasty.style/playground)
|
|
315
306
|
|
|
316
307
|
## Capabilities
|
|
317
308
|
|
|
@@ -357,7 +348,7 @@ Every style property accepts a state mapping object. Keys can be combined with b
|
|
|
357
348
|
| Feature query | `@supports(display: grid)` | `@supports (display: grid)` |
|
|
358
349
|
| Entry animation | `@starting` | `@starting-style` |
|
|
359
350
|
|
|
360
|
-
Combine with `&` (AND), `|` (OR), `!` (NOT):
|
|
351
|
+
Combine with `&` (AND), `|` (OR), `!` (NOT), `^` (XOR):
|
|
361
352
|
|
|
362
353
|
```tsx
|
|
363
354
|
fill: {
|
|
@@ -369,220 +360,109 @@ fill: {
|
|
|
369
360
|
|
|
370
361
|
### Sub-Element Styling
|
|
371
362
|
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
```tsx
|
|
375
|
-
const Card = tasty({
|
|
376
|
-
styles: {
|
|
377
|
-
padding: '4x',
|
|
378
|
-
Title: { preset: 'h3', color: '#primary' },
|
|
379
|
-
Content: { color: '#text', preset: 't2' },
|
|
380
|
-
},
|
|
381
|
-
elements: { Title: 'h2', Content: 'div' },
|
|
382
|
-
});
|
|
383
|
-
|
|
384
|
-
<Card>
|
|
385
|
-
<Card.Title>Heading</Card.Title>
|
|
386
|
-
<Card.Content>Body text</Card.Content>
|
|
387
|
-
</Card>
|
|
388
|
-
```
|
|
389
|
-
|
|
390
|
-
Sub-elements use `data-element` attributes — no extra class names, no naming conventions.
|
|
363
|
+
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.
|
|
391
364
|
|
|
392
|
-
|
|
365
|
+
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.
|
|
393
366
|
|
|
394
|
-
|
|
367
|
+
See [React API - Sub-element Styling](docs/react-api.md#sub-element-styling), [Style DSL - Advanced States](docs/dsl.md#advanced-states--prefix), and [Methodology](docs/methodology.md#component-architecture-root--sub-elements).
|
|
395
368
|
|
|
396
|
-
|
|
369
|
+
### Style Props
|
|
397
370
|
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
### Variants
|
|
401
|
-
|
|
402
|
-
Variants are designed to keep single-component CSS lean. Instead of generating dozens of static button classes up front, define all versions once and let runtime usage decide what CSS is actually emitted.
|
|
371
|
+
`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.
|
|
403
372
|
|
|
404
373
|
```tsx
|
|
405
|
-
const
|
|
406
|
-
styles: {
|
|
407
|
-
|
|
408
|
-
default: { fill: '#primary', color: '#on-primary' },
|
|
409
|
-
danger: { fill: '#danger', color: '#on-danger' },
|
|
410
|
-
outline: { fill: 'transparent', border: '1bw solid #primary' },
|
|
411
|
-
},
|
|
374
|
+
const Space = tasty({
|
|
375
|
+
styles: { display: 'flex', flow: 'column', gap: '1x' },
|
|
376
|
+
styleProps: FLOW_STYLES,
|
|
412
377
|
});
|
|
413
378
|
|
|
414
|
-
<
|
|
379
|
+
<Space flow="row" gap={{ '': '2x', '@tablet': '4x' }}>
|
|
415
380
|
```
|
|
416
381
|
|
|
417
|
-
|
|
382
|
+
See [React API - Style Props](docs/react-api.md#style-props) and [Methodology - styleProps](docs/methodology.md#styleprops-as-the-public-api).
|
|
418
383
|
|
|
419
|
-
|
|
384
|
+
### Mod Props
|
|
420
385
|
|
|
421
|
-
|
|
422
|
-
configure({
|
|
423
|
-
recipes: {
|
|
424
|
-
card: { padding: '4x', fill: '#surface', radius: '1r', border: true },
|
|
425
|
-
elevated: { shadow: '0 2x 4x #shadow' },
|
|
426
|
-
},
|
|
427
|
-
});
|
|
386
|
+
`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.
|
|
428
387
|
|
|
429
|
-
|
|
388
|
+
```tsx
|
|
389
|
+
const Button = tasty({
|
|
390
|
+
as: 'button',
|
|
391
|
+
modProps: { isLoading: Boolean, size: ['sm', 'md', 'lg'] as const },
|
|
430
392
|
styles: {
|
|
431
|
-
|
|
432
|
-
|
|
393
|
+
fill: { '': '#primary', isLoading: '#primary.5' },
|
|
394
|
+
padding: { '': '2x 4x', 'size=sm': '1x 2x' },
|
|
433
395
|
},
|
|
434
396
|
});
|
|
435
|
-
```
|
|
436
397
|
|
|
437
|
-
|
|
398
|
+
<Button isLoading size="lg">Submit</Button>
|
|
399
|
+
```
|
|
438
400
|
|
|
439
|
-
|
|
401
|
+
See [React API - Mod Props](docs/react-api.md#mod-props) and [Methodology - modProps](docs/methodology.md#modprops-and-mods).
|
|
440
402
|
|
|
441
|
-
|
|
403
|
+
### Variants
|
|
442
404
|
|
|
443
|
-
|
|
405
|
+
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.
|
|
444
406
|
|
|
445
|
-
|
|
446
|
-
const Pulse = tasty({
|
|
447
|
-
styles: {
|
|
448
|
-
animation: 'pulse 2s infinite',
|
|
449
|
-
transform: 'scale($pulse-scale)',
|
|
450
|
-
'@keyframes': {
|
|
451
|
-
pulse: {
|
|
452
|
-
'0%, 100%': { '$pulse-scale': 1 },
|
|
453
|
-
'50%': { '$pulse-scale': 1.05 },
|
|
454
|
-
},
|
|
455
|
-
},
|
|
456
|
-
},
|
|
457
|
-
});
|
|
458
|
-
```
|
|
407
|
+
See [React API - Variants](docs/react-api.md#variants).
|
|
459
408
|
|
|
460
|
-
|
|
409
|
+
### Recipes
|
|
461
410
|
|
|
462
|
-
|
|
411
|
+
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.
|
|
463
412
|
|
|
464
|
-
|
|
413
|
+
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.
|
|
465
414
|
|
|
466
|
-
|
|
415
|
+
See [Style DSL - Recipes](docs/dsl.md#recipes) and [Configuration - recipes](docs/configuration.md#recipes).
|
|
467
416
|
|
|
468
|
-
|
|
469
|
-
'@properties': {
|
|
470
|
-
'$pulse-scale': { syntax: '<number>', inherits: false, initialValue: 1 },
|
|
471
|
-
},
|
|
472
|
-
```
|
|
417
|
+
### Auto-Inferred `@property`
|
|
473
418
|
|
|
474
|
-
|
|
419
|
+
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.
|
|
475
420
|
|
|
476
|
-
|
|
421
|
+
If you prefer explicit control, disable inference with `configure({ autoPropertyTypes: false })` or declare the properties yourself.
|
|
477
422
|
|
|
478
|
-
|
|
479
|
-
import { useStyles, useGlobalStyles, useRawCSS } from '@tenphi/tasty';
|
|
423
|
+
See [Style DSL - Properties (`@property`)](docs/dsl.md#properties-property).
|
|
480
424
|
|
|
481
|
-
|
|
482
|
-
const { className } = useStyles({ padding: '2x', fill: '#surface' });
|
|
483
|
-
useGlobalStyles('body', { margin: '0' });
|
|
484
|
-
useRawCSS('@font-face { font-family: "Custom"; src: url(...); }');
|
|
425
|
+
### Explicit `@properties`
|
|
485
426
|
|
|
486
|
-
|
|
487
|
-
}
|
|
488
|
-
```
|
|
427
|
+
Use explicit `@properties` only when you need to override defaults such as `inherits: false` or a custom `initialValue`.
|
|
489
428
|
|
|
490
|
-
|
|
429
|
+
See [Style DSL - Properties (`@property`)](docs/dsl.md#properties-property).
|
|
491
430
|
|
|
492
|
-
|
|
431
|
+
### Style Functions
|
|
493
432
|
|
|
494
|
-
|
|
495
|
-
import { tastyStatic } from '@tenphi/tasty/static';
|
|
433
|
+
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.
|
|
496
434
|
|
|
497
|
-
|
|
498
|
-
padding: '4x',
|
|
499
|
-
fill: '#surface',
|
|
500
|
-
radius: '1r',
|
|
501
|
-
color: { '': '#text', '@dark': '#text-on-dark' },
|
|
502
|
-
});
|
|
435
|
+
See [React API - Style Functions](docs/react-api.md#style-functions).
|
|
503
436
|
|
|
504
|
-
|
|
505
|
-
<div className={card}>Static styles, zero runtime</div>
|
|
506
|
-
```
|
|
437
|
+
### Zero-Runtime Mode
|
|
507
438
|
|
|
508
|
-
|
|
439
|
+
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.
|
|
509
440
|
|
|
510
|
-
|
|
511
|
-
module.exports = {
|
|
512
|
-
plugins: [
|
|
513
|
-
['@tenphi/tasty/babel-plugin', {
|
|
514
|
-
output: 'public/tasty.css',
|
|
515
|
-
config: {
|
|
516
|
-
states: { '@dark': '@root(schema=dark)' },
|
|
517
|
-
},
|
|
518
|
-
}],
|
|
519
|
-
],
|
|
520
|
-
};
|
|
521
|
-
```
|
|
441
|
+
See [Zero Runtime (tastyStatic)](docs/tasty-static.md) and [Getting Started - Choosing a rendering mode](docs/getting-started.md#choosing-a-rendering-mode).
|
|
522
442
|
|
|
523
443
|
### `tasty` vs `tastyStatic`
|
|
524
444
|
|
|
525
|
-
|
|
526
|
-
|---|---|---|
|
|
527
|
-
| **Output** | React component | CSS class name |
|
|
528
|
-
| **CSS injection** | Runtime `<style>` tags | Build-time extraction |
|
|
529
|
-
| **Runtime cost** | Style generation on mount | None |
|
|
530
|
-
| **Generated CSS scope** | Only styles/variants used at runtime | All extracted static styles at build time |
|
|
531
|
-
| **Dynamic values** | Fully supported | Via CSS custom properties |
|
|
532
|
-
| **Sub-elements** | Built-in (`<C.Title>`) | Manual (`data-element`) |
|
|
533
|
-
| **Variants** | Built-in (`variants` option) | Separate static styles |
|
|
534
|
-
| **Framework** | React | Any (requires Babel) |
|
|
535
|
-
| **Best for** | Interactive apps, design systems | Static sites, SSG, landing pages |
|
|
445
|
+
`tasty()` returns React components that compute CSS during rendering. In server-only contexts, this produces static HTML + CSS with zero client JavaScript — the same end result as `tastyStatic()` but with the full feature set. `tastyStatic()` returns class names and extracts CSS during the build via a Babel plugin, with no React dependency at runtime. Both share the same DSL, tokens, units, state mappings, and recipes. Use `tasty()` as the default for any React-based setup; use `tastyStatic()` when you need build-time extraction without React.
|
|
536
446
|
|
|
537
|
-
|
|
447
|
+
See [Zero Runtime (tastyStatic)](docs/tasty-static.md), [React API](docs/react-api.md), and [Comparison - Build-time vs runtime](docs/comparison.md#build-time-vs-runtime).
|
|
538
448
|
|
|
539
449
|
### Server-Side Rendering
|
|
540
450
|
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
**Next.js setup:**
|
|
544
|
-
|
|
545
|
-
```tsx
|
|
546
|
-
// app/tasty-registry.tsx
|
|
547
|
-
'use client';
|
|
451
|
+
`tasty()` components already work on the server without any SSR integration — they are hook-free and render as React Server Components by default. In server-only contexts (Next.js RSC, Astro without islands), they produce zero client JavaScript with the full feature set.
|
|
548
452
|
|
|
549
|
-
|
|
453
|
+
SSR integration (`TastyRegistry`, `tastyIntegration`) adds CSS batching, deduplication across component trees, FOUC prevention, and client cache hydration. Use it when your app also has client-side rendering:
|
|
550
454
|
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
children: React.ReactNode;
|
|
555
|
-
}) {
|
|
556
|
-
return <TastyRegistry>{children}</TastyRegistry>;
|
|
557
|
-
}
|
|
558
|
-
```
|
|
559
|
-
|
|
560
|
-
```tsx
|
|
561
|
-
// app/layout.tsx
|
|
562
|
-
import TastyStyleRegistry from './tasty-registry';
|
|
563
|
-
|
|
564
|
-
export default function RootLayout({
|
|
565
|
-
children,
|
|
566
|
-
}: {
|
|
567
|
-
children: React.ReactNode;
|
|
568
|
-
}) {
|
|
569
|
-
return (
|
|
570
|
-
<html>
|
|
571
|
-
<body>
|
|
572
|
-
<TastyStyleRegistry>{children}</TastyStyleRegistry>
|
|
573
|
-
</body>
|
|
574
|
-
</html>
|
|
575
|
-
);
|
|
576
|
-
}
|
|
577
|
-
```
|
|
455
|
+
- `@tenphi/tasty/ssr/next` for Next.js App Router (mixed server + client components)
|
|
456
|
+
- `@tenphi/tasty/ssr/astro` for Astro (with or without islands)
|
|
457
|
+
- The core SSR API for other React SSR setups
|
|
578
458
|
|
|
579
|
-
See the [full SSR guide](docs/ssr.md)
|
|
459
|
+
See the [full SSR guide](docs/ssr.md).
|
|
580
460
|
|
|
581
461
|
## Entry Points
|
|
582
462
|
|
|
583
463
|
| Import | Description | Platform |
|
|
584
464
|
|--------|-------------|----------|
|
|
585
|
-
| `@tenphi/tasty` | Runtime style engine (`tasty`,
|
|
465
|
+
| `@tenphi/tasty` | Runtime style engine (`tasty`, style functions, `configure`) | Browser |
|
|
586
466
|
| `@tenphi/tasty/static` | Zero-runtime static styles (`tastyStatic`) | Browser |
|
|
587
467
|
| `@tenphi/tasty/core` | Lower-level internals (config, parser, pipeline, injector, style handlers) for tooling and advanced use | Browser / Node |
|
|
588
468
|
| `@tenphi/tasty/babel-plugin` | Babel plugin for zero-runtime CSS extraction | Node |
|
|
@@ -590,7 +470,8 @@ See the [full SSR guide](docs/ssr.md) for Astro integration, streaming SSR, gene
|
|
|
590
470
|
| `@tenphi/tasty/next` | Next.js integration wrapper | Node |
|
|
591
471
|
| `@tenphi/tasty/ssr` | Core SSR API (collector, context, hydration) | Node |
|
|
592
472
|
| `@tenphi/tasty/ssr/next` | Next.js App Router SSR integration | Node |
|
|
593
|
-
| `@tenphi/tasty/ssr/astro` | Astro
|
|
473
|
+
| `@tenphi/tasty/ssr/astro` | Astro integration + middleware | Node |
|
|
474
|
+
| `@tenphi/tasty/ssr/astro-client` | Astro client-side cache hydration | Browser |
|
|
594
475
|
|
|
595
476
|
## Browser Requirements
|
|
596
477
|
|
|
@@ -713,13 +594,13 @@ Open-source React UI kit built on Tasty + React Aria. 100+ production components
|
|
|
713
594
|
|
|
714
595
|
## Documentation
|
|
715
596
|
|
|
716
|
-
Start from the docs hub if you want the shortest path to the right guide for your role or
|
|
597
|
+
Start from the docs hub if you want the shortest path to the right guide for your role or styling approach.
|
|
717
598
|
|
|
718
|
-
- **[Docs Hub](docs/README.md)** — audience-based navigation across onboarding, design-system authoring, runtime, zero-runtime, SSR, debugging, and internals
|
|
599
|
+
- **[Docs Hub](docs/README.md)** — audience-based navigation across onboarding, design-system authoring, runtime, zero-runtime, runtime SSR integration, debugging, and internals
|
|
719
600
|
|
|
720
601
|
### Start here
|
|
721
602
|
|
|
722
|
-
- **[Getting Started](docs/getting-started.md)** — Installation, first component, configuration, ESLint plugin setup, editor tooling, and rendering mode decision tree
|
|
603
|
+
- **[Getting Started](docs/getting-started.md)** — Installation, first component, optional shared configuration, ESLint plugin setup, editor tooling, and rendering mode decision tree
|
|
723
604
|
- **[Methodology](docs/methodology.md)** — The recommended patterns for structuring Tasty components: root + sub-elements, styleProps, tokens, styles vs style, wrapping and extension
|
|
724
605
|
|
|
725
606
|
### Guides
|
|
@@ -730,7 +611,7 @@ Start from the docs hub if you want the shortest path to the right guide for you
|
|
|
730
611
|
### Reference
|
|
731
612
|
|
|
732
613
|
- **[Style DSL](docs/dsl.md)** — The Tasty style language: state maps, tokens, units, color syntax, extending semantics, recipes, keyframes, and @property
|
|
733
|
-
- **[
|
|
614
|
+
- **[React API](docs/react-api.md)** — React-specific API: `tasty()` factory, component props, variants, sub-elements, and style functions
|
|
734
615
|
- **[Configuration](docs/configuration.md)** — Global configuration: tokens, recipes, custom units, style handlers, and TypeScript extensions
|
|
735
616
|
- **[Style Properties](docs/styles.md)** — Complete reference for all enhanced style properties: syntax, values, modifiers, and recommendations
|
|
736
617
|
|
|
@@ -3,6 +3,5 @@ var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require
|
|
|
3
3
|
if (typeof require !== "undefined") return require.apply(this, arguments);
|
|
4
4
|
throw Error("Calling `require` for \"" + x + "\" in an environment that doesn't expose the `require` function. See https://rolldown.rs/in-depth/bundling-cjs#require-external-modules for more details.");
|
|
5
5
|
});
|
|
6
|
-
|
|
7
6
|
//#endregion
|
|
8
|
-
export { __require };
|
|
7
|
+
export { __require };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { };
|
package/dist/chunks/cacheKey.js
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { extractLocalPredefinedStates, extractPredefinedStateRefs } from "../states/index.js";
|
|
2
|
-
|
|
3
2
|
//#region src/chunks/cacheKey.ts
|
|
4
3
|
/**
|
|
5
4
|
* Chunk-specific cache key generation.
|
|
@@ -72,7 +71,7 @@ function generateChunkCacheKey(styles, chunkName, styleKeys) {
|
|
|
72
71
|
}
|
|
73
72
|
return parts.join("\0");
|
|
74
73
|
}
|
|
75
|
-
|
|
76
74
|
//#endregion
|
|
77
75
|
export { generateChunkCacheKey };
|
|
76
|
+
|
|
78
77
|
//# sourceMappingURL=cacheKey.js.map
|