@czap/quantizer
Turns a boundary — named states over numeric thresholds — into a live state machine that emits per-state outputs (CSS, shader uniforms, ARIA attributes) when a value crosses a threshold.
Install this directly when you need live boundary evaluation outside a framework integration. If you're starting a new project, start with liteship or @czap/astro instead.
Install
pnpm add @czap/quantizer effect@beta
effect must be the Effect 4 beta (effect@beta) — a bare pnpm add effect installs 3.x and fails the peer check.
30 seconds
import { Boundary } from '@czap/core';
import { Q } from '@czap/quantizer';
import { Effect } from 'effect';
const width = Boundary.make({
input: 'width',
at: [[0, 'sm'], [768, 'lg']],
});
const config = Q.from(width).outputs({
css: { sm: { display: 'block' }, lg: { display: 'grid' } },
});
const outputs = Effect.runSync(Effect.scoped(
Effect.gen(function* () {
const live = yield* config.create();
live.evaluate(1024);
return yield* live.currentOutputs;
}),
));
console.log(outputs.css);
Logs { display: 'grid' } — the CSS output for the lg state that 1024 falls into. For a one-off lookup without Effect, the synchronous evaluate(boundary, value) export returns { state, index, value, crossed } directly.
Where it sits
This is a layered package between definitions and hosts: it imports Boundary, easing, and content-address utilities from @czap/core — its only @czap dependency. Compiling outputs to static CSS text for a build step is @czap/compiler's job; this package is for runtime, where the value keeps changing. See the
package surfaces map
for the full layout.
If it does nothing
If you pass tier to Q.from(boundary, { tier }), outputs for targets outside that motion tier are silently dropped — tier: 'none' permits only ARIA, so CSS outputs never emit and nothing warns you. Omit tier to allow all targets, or call .force('css') on the builder to override the gate per target.
Docs
Part of LiteShip — powered by the CZAP engine (Content-Zoned Adaptive Projection), distributed as @czap/* packages.