@liquid-noise/core 0.1.0 → 0.1.44
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/CONCEPT.md +338 -20
- package/MANIFEST.md +12 -2
- package/README.md +62 -0
- package/dist/index.d.ts +27 -1
- package/dist/index.js +87 -3
- package/dist/index.js.map +1 -1
- package/dist/styles/avatar.css +57 -0
- package/dist/styles/element-sizes.css +38 -0
- package/dist/styles/framework.css +3 -0
- package/dist/styles/spacing.css +34 -0
- package/dist/styles/transitions.css +3 -0
- package/dist/styles/typography.css +17 -0
- package/package.json +16 -2
package/CONCEPT.md
CHANGED
|
@@ -1,5 +1,113 @@
|
|
|
1
1
|
# Liquid Design Framework — Concept & Technical Documentation
|
|
2
2
|
|
|
3
|
+
> **Live showcase:** [framework.plate.ninja](https://framework.plate.ninja)
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Integration — How to use in your app
|
|
8
|
+
|
|
9
|
+
### 1. Install
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm install @liquid-noise/core
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Requires React 18 or 19.
|
|
16
|
+
|
|
17
|
+
### 2. Import framework CSS (required)
|
|
18
|
+
|
|
19
|
+
Import once in your app entry (e.g. `main.tsx` or `index.tsx`):
|
|
20
|
+
|
|
21
|
+
```tsx
|
|
22
|
+
import "@liquid-noise/core/styles/framework.css";
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
This loads `--fw-font-xs/s/m/l/xl`, `--fw-avatar-size`, `--fw-space-*`, `--fw-size-*`, `--fw-ease`, `--fw-transition-*`, etc. Without this import, noise and size will not apply correctly.
|
|
26
|
+
|
|
27
|
+
### 3. Wrap app with providers + FrameworkSizeSync
|
|
28
|
+
|
|
29
|
+
```tsx
|
|
30
|
+
import {
|
|
31
|
+
NoiseProvider,
|
|
32
|
+
SizeProvider,
|
|
33
|
+
FrameworkSizeSync,
|
|
34
|
+
RotaryKnob,
|
|
35
|
+
useNoise,
|
|
36
|
+
useSize,
|
|
37
|
+
} from "@liquid-noise/core";
|
|
38
|
+
|
|
39
|
+
function AppContent() {
|
|
40
|
+
const { noise, setNoise } = useNoise();
|
|
41
|
+
const { size, setSize } = useSize();
|
|
42
|
+
|
|
43
|
+
return (
|
|
44
|
+
<>
|
|
45
|
+
<FrameworkSizeSync />
|
|
46
|
+
<header>
|
|
47
|
+
<RotaryKnob label="Noise" value={noise} onChange={setNoise} />
|
|
48
|
+
<RotaryKnob label="Size" value={size} onChange={setSize} />
|
|
49
|
+
</header>
|
|
50
|
+
<main>{/* Your content */}</main>
|
|
51
|
+
</>
|
|
52
|
+
);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
function App() {
|
|
56
|
+
return (
|
|
57
|
+
<NoiseProvider initialValue={5}>
|
|
58
|
+
<SizeProvider initialValue={5}>
|
|
59
|
+
<AppContent />
|
|
60
|
+
</SizeProvider>
|
|
61
|
+
</NoiseProvider>
|
|
62
|
+
);
|
|
63
|
+
}
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
- **NoiseProvider** / **SizeProvider** — Required. Accept `initialValue` and optional `onSave` (e.g. persistence).
|
|
67
|
+
- **FrameworkSizeSync** — Required. Must be inside SizeProvider. Updates `--fw-font-*` and `--fw-avatar-size` on `:root` when size changes.
|
|
68
|
+
- **RotaryKnob** — Optional. You can use any controls; just pass `value` and `onChange` from `useNoise()` / `useSize()`.
|
|
69
|
+
|
|
70
|
+
### 4. Use in your components
|
|
71
|
+
|
|
72
|
+
**Size (scale):** Use `getFontSize()` and `getAvatarSize()` with `size` from `useSize()`:
|
|
73
|
+
|
|
74
|
+
```tsx
|
|
75
|
+
const { size } = useSize();
|
|
76
|
+
const fontSize = getFontSize("s", size);
|
|
77
|
+
const avatarPx = getAvatarSize(size);
|
|
78
|
+
|
|
79
|
+
<span style={{ fontSize: `${fontSize}px` }}>Name</span>
|
|
80
|
+
<div style={{ width: avatarPx, height: avatarPx }} />
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
Or use CSS variables (updated by FrameworkSizeSync):
|
|
84
|
+
|
|
85
|
+
```css
|
|
86
|
+
.my-label { font-size: var(--fw-font-s); }
|
|
87
|
+
.my-avatar { width: var(--fw-avatar-size); height: var(--fw-avatar-size); }
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
**Noise (visibility):** Use `useNoise()` and `useDeferredUnmount()` to show/hide elements:
|
|
91
|
+
|
|
92
|
+
```tsx
|
|
93
|
+
const { noise } = useNoise();
|
|
94
|
+
const { mounted, visible } = useDeferredUnmount(noise >= 4);
|
|
95
|
+
|
|
96
|
+
if (!mounted) return null;
|
|
97
|
+
return <div style={{ opacity: visible ? 1 : 0, transition: "..." }}>...</div>;
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
**Team Avatar (ready-to-use widget):** See [Team Avatar — Full Guide](#team-avatar---full-guide) below.
|
|
101
|
+
|
|
102
|
+
### Checklist
|
|
103
|
+
|
|
104
|
+
| Step | Required |
|
|
105
|
+
|------|----------|
|
|
106
|
+
| `import "@liquid-noise/core/styles/framework.css"` | Yes |
|
|
107
|
+
| Wrap with `NoiseProvider` and `SizeProvider` | Yes |
|
|
108
|
+
| Render `FrameworkSizeSync` inside `SizeProvider` | Yes |
|
|
109
|
+
| Use `TeamAvatar` or `getFontSize`/`getAvatarSize`/`useNoise()` in components | For widgets to work |
|
|
110
|
+
|
|
3
111
|
---
|
|
4
112
|
|
|
5
113
|
## 1. What is Liquid?
|
|
@@ -30,7 +138,7 @@ Users adjust these via knobs in the header. Widgets update in real time in the D
|
|
|
30
138
|
| 4 | + Tag |
|
|
31
139
|
| 7 | + Assignee, description preview |
|
|
32
140
|
|
|
33
|
-
### Example: Team Avatar
|
|
141
|
+
### Example: Team Avatar
|
|
34
142
|
|
|
35
143
|
| Noise | Visible |
|
|
36
144
|
|-------|---------|
|
|
@@ -39,6 +147,19 @@ Users adjust these via knobs in the header. Widgets update in real time in the D
|
|
|
39
147
|
| 4–6 | Avatar + name |
|
|
40
148
|
| 7–10 | Avatar + name + role |
|
|
41
149
|
|
|
150
|
+
**Note:** Noise controls *what* appears. Size controls *how big* (avatar diameter via `getAvatarSize(size)`, font sizes via `getFontSize()`).
|
|
151
|
+
|
|
152
|
+
### Example: Action Button
|
|
153
|
+
|
|
154
|
+
| Noise | Visible |
|
|
155
|
+
|-------|---------|
|
|
156
|
+
| 0–1 | Icon only |
|
|
157
|
+
| 2–3 | Icon + label |
|
|
158
|
+
| 4–6 | Icon + label + counter |
|
|
159
|
+
| 7–10 | Icon + label + counter + caption |
|
|
160
|
+
|
|
161
|
+
Size scales font, padding, and icon proportionally.
|
|
162
|
+
|
|
42
163
|
### Implementation
|
|
43
164
|
|
|
44
165
|
- **`useNoise()`** — Hook returning `{ noise, setNoise }`
|
|
@@ -75,12 +196,23 @@ Three layers:
|
|
|
75
196
|
|
|
76
197
|
| Semantic | Tier 0 (0–2) | Tier 1 (3–4) | Tier 2 (5–7) | Tier 3 (8–10) |
|
|
77
198
|
|----------|--------------|--------------|--------------|---------------|
|
|
78
|
-
| xs | 10px | 12px | 14px |
|
|
79
|
-
| s | 12px | 14px | 16px |
|
|
199
|
+
| xs | 10px | 12px | 14px | 14px |
|
|
200
|
+
| s | 12px | 14px | 16px | 16px |
|
|
80
201
|
| m | 14px | 16px | 18px | 20px |
|
|
81
202
|
| l | 16px | 18px | 20px | 24px |
|
|
82
203
|
| xl | 18px | 20px | 24px | 28px |
|
|
83
204
|
|
|
205
|
+
### Avatar Size
|
|
206
|
+
|
|
207
|
+
`getAvatarSize(size)` returns diameter in px per size tier:
|
|
208
|
+
|
|
209
|
+
| Tier | Diameter |
|
|
210
|
+
|------|----------|
|
|
211
|
+
| 0 (0–2) | 20px |
|
|
212
|
+
| 1 (3–4) | 24px |
|
|
213
|
+
| 2 (5–7) | 28px |
|
|
214
|
+
| 3 (8–10) | 36px |
|
|
215
|
+
|
|
84
216
|
### Usage in Components
|
|
85
217
|
|
|
86
218
|
```tsx
|
|
@@ -111,20 +243,186 @@ function MyWidget() {
|
|
|
111
243
|
|
|
112
244
|
Use `var(--fw-font-s)` in CSS when the component is inside the size context.
|
|
113
245
|
|
|
246
|
+
### Spacing Scale
|
|
247
|
+
|
|
248
|
+
Global spacing variables for margin, padding, gap:
|
|
249
|
+
|
|
250
|
+
- `--fw-space-0` … `--fw-space-96` — Scale: 0, 2, 4, 8, 12, 16, 20, 24, 28, 32, 36, 40, 44, 48, 52, 56, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96 (px)
|
|
251
|
+
- Use `var(--fw-space-8)` for padding, `var(--fw-space-16)` for gaps, etc.
|
|
252
|
+
|
|
253
|
+
### Element Sizes
|
|
254
|
+
|
|
255
|
+
For avatars, icons, cards, modals — width/height/min-width/min-height:
|
|
256
|
+
|
|
257
|
+
- `--fw-size-24` … `--fw-size-256` — Scale: 24, 32, 40, 48 … 256 (px), step 8
|
|
258
|
+
|
|
259
|
+
### Typography Emphasis Levels
|
|
260
|
+
|
|
261
|
+
Semantic font weights from light to bold:
|
|
262
|
+
|
|
263
|
+
| Token | Variable | Value | Use |
|
|
264
|
+
|-------|----------|-------|-----|
|
|
265
|
+
| tertiary | `--fw-weight-tertiary` | 300 | Captions, hints |
|
|
266
|
+
| secondary | `--fw-weight-secondary` | 400 | Secondary text |
|
|
267
|
+
| main | `--fw-weight-main` | 500 | Body, default emphasis |
|
|
268
|
+
| highlight | `--fw-weight-highlight` | 600 | Emphasized text |
|
|
269
|
+
| title | `--fw-weight-title` | 700 | Headings |
|
|
270
|
+
|
|
271
|
+
Utility classes: `.fw-weight-tertiary`, `.fw-weight-secondary`, `.fw-weight-main`, `.fw-weight-highlight`, `.fw-weight-title`
|
|
272
|
+
|
|
273
|
+
### Base Font Sizes (Fixed)
|
|
274
|
+
|
|
275
|
+
For labels, captions, or when semantic sizes don't fit: `--fw-font-base-8`, `--fw-font-base-10`, … `--fw-font-base-28` (8, 10, 12, 14, 16, 18, 20, 24, 28 px).
|
|
276
|
+
|
|
277
|
+
### Theme Colors (optional)
|
|
278
|
+
|
|
279
|
+
For light/dark theming: `--fw-color-black`, `--fw-color-white`, `--fw-color-blue`. Define in your app and use for backgrounds, text, accents. See **Pantone** showcase page for hex values and usage.
|
|
280
|
+
|
|
281
|
+
---
|
|
282
|
+
|
|
283
|
+
## 4. Transitions
|
|
284
|
+
|
|
285
|
+
All transitions use a **single global easing**: `--fw-ease` (CSS) / `FW_EASE` (TS). Use preset variables instead of repeating duration/ease:
|
|
286
|
+
|
|
287
|
+
| Variable | Use |
|
|
288
|
+
|----------|-----|
|
|
289
|
+
| `--fw-ease` | Global easing curve |
|
|
290
|
+
| `--fw-duration-fast` | 0.15s |
|
|
291
|
+
| `--fw-duration-normal` | 0.25s |
|
|
292
|
+
| `--fw-duration-slow` | 0.35s |
|
|
293
|
+
| `--fw-transition-appear` | opacity, max-width, max-height, grid-template-rows |
|
|
294
|
+
| `--fw-transition-size` | width, height, font-size |
|
|
295
|
+
| `--fw-transition-opacity` | opacity only |
|
|
296
|
+
| `--fw-transition-opacity-font` | opacity + font-size |
|
|
297
|
+
|
|
298
|
+
TS exports: `FW_EASE`, `FW_TRANSITION_APPEAR`, `FW_TRANSITION_SIZE`, `FW_TRANSITION_OPACITY`
|
|
299
|
+
|
|
114
300
|
---
|
|
115
301
|
|
|
116
|
-
##
|
|
302
|
+
## 5. Team Avatar — Full Guide
|
|
303
|
+
|
|
304
|
+
`TeamAvatar` is a ready-to-use widget that shows a team member with adaptive density based on noise and size.
|
|
305
|
+
|
|
306
|
+
### Setup (required before using TeamAvatar)
|
|
307
|
+
|
|
308
|
+
1. Import framework CSS in your app entry:
|
|
309
|
+
|
|
310
|
+
```tsx
|
|
311
|
+
import "@liquid-noise/core/styles/framework.css";
|
|
312
|
+
```
|
|
313
|
+
|
|
314
|
+
2. Wrap your app with providers:
|
|
315
|
+
|
|
316
|
+
```tsx
|
|
317
|
+
import {
|
|
318
|
+
NoiseProvider,
|
|
319
|
+
SizeProvider,
|
|
320
|
+
FrameworkSizeSync,
|
|
321
|
+
} from "@liquid-noise/core";
|
|
322
|
+
|
|
323
|
+
function App() {
|
|
324
|
+
return (
|
|
325
|
+
<NoiseProvider initialValue={5}>
|
|
326
|
+
<SizeProvider initialValue={5}>
|
|
327
|
+
<FrameworkSizeSync />
|
|
328
|
+
<YourContent />
|
|
329
|
+
</SizeProvider>
|
|
330
|
+
</NoiseProvider>
|
|
331
|
+
);
|
|
332
|
+
}
|
|
333
|
+
```
|
|
334
|
+
|
|
335
|
+
3. Import and use the component:
|
|
336
|
+
|
|
337
|
+
```tsx
|
|
338
|
+
import { TeamAvatar } from "@liquid-noise/core";
|
|
339
|
+
|
|
340
|
+
<TeamAvatar letter="K" name="Karen" role="Designer" />
|
|
341
|
+
```
|
|
342
|
+
|
|
343
|
+
### Props
|
|
344
|
+
|
|
345
|
+
| Prop | Type | Required | Description |
|
|
346
|
+
|------|------|----------|-------------|
|
|
347
|
+
| `letter` | `string` | Yes | First letter shown in avatar (when no image) |
|
|
348
|
+
| `name` | `string` | No | Display name. Visible at noise ≥ 4 |
|
|
349
|
+
| `role` | `string` | No | Role or label. Visible at noise ≥ 7 |
|
|
350
|
+
| `imageUrl` | `string` | No | Photo URL. Overrides letter |
|
|
351
|
+
| `background` | `string` | No | Custom gradient/color when no image. Default: purple gradient |
|
|
352
|
+
| `className` | `string` | No | Extra CSS class for the root |
|
|
117
353
|
|
|
118
|
-
|
|
354
|
+
### Noise tiers
|
|
355
|
+
|
|
356
|
+
| Noise | Visible |
|
|
357
|
+
|-------|---------|
|
|
358
|
+
| 0–1 | Placeholder (dashed circle) |
|
|
359
|
+
| 2–3 | Avatar only |
|
|
360
|
+
| 4–6 | Avatar + name |
|
|
361
|
+
| 7–10 | Avatar + name + role |
|
|
362
|
+
|
|
363
|
+
### Examples
|
|
364
|
+
|
|
365
|
+
**Basic:**
|
|
366
|
+
|
|
367
|
+
```tsx
|
|
368
|
+
<TeamAvatar letter="K" name="Karen" role="Designer" />
|
|
369
|
+
```
|
|
370
|
+
|
|
371
|
+
**With photo:**
|
|
372
|
+
|
|
373
|
+
```tsx
|
|
374
|
+
<TeamAvatar
|
|
375
|
+
letter="M"
|
|
376
|
+
name="Mike"
|
|
377
|
+
role="Developer"
|
|
378
|
+
imageUrl="https://example.com/avatar.jpg"
|
|
379
|
+
/>
|
|
380
|
+
```
|
|
381
|
+
|
|
382
|
+
**Custom background:**
|
|
383
|
+
|
|
384
|
+
```tsx
|
|
385
|
+
<TeamAvatar
|
|
386
|
+
letter="A"
|
|
387
|
+
name="Alex"
|
|
388
|
+
background="linear-gradient(135deg, #f093fb 0%, #f5576c 100%)"
|
|
389
|
+
/>
|
|
390
|
+
```
|
|
391
|
+
|
|
392
|
+
**Data from API/state:**
|
|
393
|
+
|
|
394
|
+
```tsx
|
|
395
|
+
{members.map((m) => (
|
|
396
|
+
<TeamAvatar
|
|
397
|
+
key={m.id}
|
|
398
|
+
letter={m.name[0]}
|
|
399
|
+
name={m.name}
|
|
400
|
+
role={m.role}
|
|
401
|
+
imageUrl={m.avatarUrl}
|
|
402
|
+
/>
|
|
403
|
+
))}
|
|
404
|
+
```
|
|
405
|
+
|
|
406
|
+
### Theme variables (optional)
|
|
407
|
+
|
|
408
|
+
The widget uses `--text`, `--text-tertiary`, `--border` with fallbacks. Define these in your app for consistent theming:
|
|
409
|
+
|
|
410
|
+
```css
|
|
411
|
+
:root {
|
|
412
|
+
--text: #111111;
|
|
413
|
+
--text-tertiary: #999999;
|
|
414
|
+
--border: #e5e5e5;
|
|
415
|
+
}
|
|
416
|
+
```
|
|
119
417
|
|
|
120
418
|
---
|
|
121
419
|
|
|
122
|
-
##
|
|
420
|
+
## 6. File Structure
|
|
123
421
|
|
|
124
422
|
```
|
|
125
423
|
liquid-noise-framework/
|
|
126
424
|
├── src/
|
|
127
|
-
│ ├── index.ts # Barrel export
|
|
425
|
+
│ ├── index.ts # Barrel export (providers, hooks, components, tokens)
|
|
128
426
|
│ ├── providers/
|
|
129
427
|
│ │ ├── NoiseProvider.tsx # NoiseProvider, useNoise
|
|
130
428
|
│ │ ├── SizeProvider.tsx # SizeProvider, useSize
|
|
@@ -133,31 +431,51 @@ liquid-noise-framework/
|
|
|
133
431
|
│ │ └── useDeferredUnmount.ts
|
|
134
432
|
│ ├── components/
|
|
135
433
|
│ │ ├── NoiseGate.tsx
|
|
136
|
-
│ │
|
|
434
|
+
│ │ ├── RotaryKnob.tsx
|
|
435
|
+
│ │ └── TeamAvatar.tsx
|
|
137
436
|
│ ├── tokens/
|
|
138
|
-
│ │ ├── transitions.ts
|
|
139
|
-
│ │ └── typography.ts
|
|
437
|
+
│ │ ├── transitions.ts # FW_EASE, FW_TRANSITION_*
|
|
438
|
+
│ │ └── typography.ts # getFontSize, getAvatarSize, BASE_FONT_SIZES
|
|
140
439
|
│ └── styles/
|
|
141
|
-
│ ├── framework.css
|
|
440
|
+
│ ├── framework.css # Aggregates all framework CSS
|
|
142
441
|
│ ├── transitions.css
|
|
143
|
-
│
|
|
442
|
+
│ ├── typography.css
|
|
443
|
+
│ ├── spacing.css
|
|
444
|
+
│ ├── element-sizes.css
|
|
445
|
+
│ └── avatar.css
|
|
446
|
+
├── showcase/ # Live demo app (Vite + React)
|
|
144
447
|
├── MANIFEST.md
|
|
145
|
-
|
|
448
|
+
├── CONCEPT.md
|
|
449
|
+
└── PUBLISH.md
|
|
146
450
|
```
|
|
147
451
|
|
|
148
452
|
---
|
|
149
453
|
|
|
150
|
-
##
|
|
454
|
+
## 7. Creating a New Widget
|
|
151
455
|
|
|
152
456
|
1. **Noise tiers** — Decide at which noise levels each element appears
|
|
153
457
|
2. **Semantic sizes** — Assign xs/s/m/l/xl to text and labels
|
|
154
|
-
3. **
|
|
155
|
-
4. **
|
|
458
|
+
3. **Emphasis** — Use `--fw-weight-tertiary` … `--fw-weight-title` for font weights
|
|
459
|
+
4. **Spacing** — Use `var(--fw-space-X)` for margin, padding, gap (0, 2, 4, 8 … 96)
|
|
460
|
+
5. **Element sizes** — Use `var(--fw-size-X)` for avatars, icons, cards (24–256px)
|
|
461
|
+
6. **Avatar/icon scale** — Use `getAvatarSize(size)` or `var(--fw-avatar-size)` when size knob affects avatar
|
|
462
|
+
7. **Transitions** — Use `var(--fw-transition-size)`, `var(--fw-transition-opacity)`, etc.
|
|
156
463
|
|
|
157
464
|
---
|
|
158
465
|
|
|
159
|
-
##
|
|
466
|
+
## 8. Widget Registry (Current)
|
|
467
|
+
|
|
468
|
+
| Widget | Export | Noise tiers | Size tokens |
|
|
469
|
+
|--------|--------|-------------|-------------|
|
|
470
|
+
| **TeamAvatar** | `import { TeamAvatar } from "@liquid-noise/core"` | 0–1 hidden, 2–3 avatar, 4–6 +name, 7+ +role | `getAvatarSize(size)`, name (s), role (xs) |
|
|
471
|
+
| Action button | (build in app) | 0–1 icon, 2–3 +label, 4–6 +counter, 7+ +caption | `getFontSize(s)`, padding, icon scale |
|
|
472
|
+
|
|
473
|
+
## 9. Showcase
|
|
474
|
+
|
|
475
|
+
The live showcase ([framework.plate.ninja](https://framework.plate.ninja)) documents all tokens. Pages:
|
|
160
476
|
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
477
|
+
- **Pantone** — Theme colors (`--fw-color-black`, `--fw-color-white`, `--fw-color-blue`) for light/dark themes, with usage descriptions and copy-to-clipboard
|
|
478
|
+
- **Elements** — Team Avatar and Action Button with live preview and 4×4 noise×size matrix
|
|
479
|
+
- **Sizes** — Semantic fonts, spacing, element sizes, transitions, `--fw-avatar-size`
|
|
480
|
+
- **Typography** — Semantic sizes, emphasis, base font sizes, line height
|
|
481
|
+
- **Documentation** — Design tokens overview, API reference, Quick Start
|
package/MANIFEST.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Liquid Design Framework — Manifest
|
|
2
2
|
|
|
3
|
+
> **Live showcase:** [framework.plate.ninja](https://framework.plate.ninja)
|
|
4
|
+
>
|
|
3
5
|
> See also: [CONCEPT.md](./CONCEPT.md) — full concept and technical documentation
|
|
4
6
|
|
|
5
7
|
---
|
|
@@ -30,6 +32,14 @@ Each widget defines its own noise tiers. Elements appear or disappear in the DOM
|
|
|
30
32
|
|
|
31
33
|
Size uses a semantic typography system: base values (8, 10, 12… px), semantic tokens (xs, s, m, l, xl), and a mapping table per knob range.
|
|
32
34
|
|
|
35
|
+
### Design Tokens
|
|
36
|
+
|
|
37
|
+
- **Spacing** — `--fw-space-0` … `--fw-space-96` for margin, padding, gap (0, 2, 4, 8 … 96 px)
|
|
38
|
+
- **Element sizes** — `--fw-size-24` … `--fw-size-256` for avatars, icons, cards (24–256px, step 8)
|
|
39
|
+
- **Emphasis** — `--fw-weight-tertiary` … `--fw-weight-title` (300 … 700)
|
|
40
|
+
- **Transitions** — `--fw-ease`, `--fw-duration-*`, `--fw-transition-*` (single global easing)
|
|
41
|
+
- **Theme colors** — `--fw-color-black`, `--fw-color-white`, `--fw-color-blue` (light/dark variants; see Pantone showcase)
|
|
42
|
+
|
|
33
43
|
---
|
|
34
44
|
|
|
35
45
|
## Principles
|
|
@@ -37,12 +47,12 @@ Size uses a semantic typography system: base values (8, 10, 12… px), semantic
|
|
|
37
47
|
1. **Single global easing** — All transitions use `--fw-ease` / `FW_EASE`. Every change in framework elements uses this curve.
|
|
38
48
|
2. **Widgets respond in-place** — No separate "compact" or "detail" views. The same DOM morphs.
|
|
39
49
|
3. **Gradual implementation** — One widget at a time. Each widget is noise- and size-aware.
|
|
40
|
-
4. **Semantic tokens** — Components assign semantic sizes
|
|
50
|
+
4. **Semantic tokens** — Components assign semantic sizes, emphasis, spacing (`var(--fw-space-X)`), element sizes (`var(--fw-size-X)`). Actual values come from the framework.
|
|
41
51
|
5. **User control** — The user, not the system, decides how much information to see and at what scale.
|
|
42
52
|
|
|
43
53
|
---
|
|
44
54
|
|
|
45
55
|
## Status
|
|
46
56
|
|
|
47
|
-
- **v0** — Noise + size infrastructure.
|
|
57
|
+
- **v0.1.x** — Noise + size infrastructure. Exported widgets: **TeamAvatar** (`import { TeamAvatar } from "@liquid-noise/core"`). In-app widgets: action button. Showcase: Pantone (theme colors), Elements, Sizes, Typography, Documentation.
|
|
48
58
|
- **Next** — Tasks, projects, and other widgets.
|
package/README.md
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# @liquid-noise/core
|
|
2
|
+
|
|
3
|
+
Liquid Design Framework — noise and size knobs for adaptive UI. Every widget responds to two global controls: **Noise** (what appears) and **Size** (how big).
|
|
4
|
+
|
|
5
|
+
**Live showcase:** [framework.plate.ninja](https://framework.plate.ninja)
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install @liquid-noise/core
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Requires React 18 or 19.
|
|
14
|
+
|
|
15
|
+
## Quick Setup
|
|
16
|
+
|
|
17
|
+
1. **Import CSS** (required):
|
|
18
|
+
|
|
19
|
+
```tsx
|
|
20
|
+
import "@liquid-noise/core/styles/framework.css";
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
2. **Wrap with providers and FrameworkSizeSync:**
|
|
24
|
+
|
|
25
|
+
```tsx
|
|
26
|
+
import {
|
|
27
|
+
NoiseProvider,
|
|
28
|
+
SizeProvider,
|
|
29
|
+
FrameworkSizeSync,
|
|
30
|
+
RotaryKnob,
|
|
31
|
+
useNoise,
|
|
32
|
+
useSize,
|
|
33
|
+
} from "@liquid-noise/core";
|
|
34
|
+
|
|
35
|
+
function App() {
|
|
36
|
+
return (
|
|
37
|
+
<NoiseProvider initialValue={5}>
|
|
38
|
+
<SizeProvider initialValue={5}>
|
|
39
|
+
<FrameworkSizeSync />
|
|
40
|
+
<HeaderWithKnobs />
|
|
41
|
+
<main>{/* Your content */}</main>
|
|
42
|
+
</SizeProvider>
|
|
43
|
+
</NoiseProvider>
|
|
44
|
+
);
|
|
45
|
+
}
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
3. **Use components:** `TeamAvatar` (ready-to-use), or low-level: `getFontSize("s", size)`, `getAvatarSize(size)`, `useNoise()`, `useDeferredUnmount()`.
|
|
49
|
+
|
|
50
|
+
### Team Avatar (widget)
|
|
51
|
+
|
|
52
|
+
```tsx
|
|
53
|
+
import { TeamAvatar } from "@liquid-noise/core";
|
|
54
|
+
|
|
55
|
+
<TeamAvatar letter="K" name="Karen" role="Designer" />
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
Props: `letter` (required), `name`, `role`, `imageUrl`, `background`, `className`. Reacts to noise (0–1 placeholder → 2–3 avatar → 4–6 +name → 7+ +role) and size. See `CONCEPT.md` § Team Avatar for full guide.
|
|
59
|
+
|
|
60
|
+
## Docs
|
|
61
|
+
|
|
62
|
+
Full documentation is in **CONCEPT.md** (shipped with the package): typography tokens, spacing, transitions, theme colors, widget patterns. Live showcase: [framework.plate.ninja](https://framework.plate.ninja) — Pantone, Elements, Sizes, Typography, API reference.
|
package/dist/index.d.ts
CHANGED
|
@@ -67,6 +67,31 @@ declare function RotaryKnob({ label, defaultValue, value: controlledValue, onCha
|
|
|
67
67
|
onChange?: (v: number) => void;
|
|
68
68
|
}): react_jsx_runtime.JSX.Element;
|
|
69
69
|
|
|
70
|
+
type TeamAvatarProps = {
|
|
71
|
+
/** First letter shown in avatar when no image. */
|
|
72
|
+
letter: string;
|
|
73
|
+
/** Display name. Appears at noise ≥ 4. */
|
|
74
|
+
name?: string;
|
|
75
|
+
/** Role or label. Appears at noise ≥ 7. */
|
|
76
|
+
role?: string;
|
|
77
|
+
/** Optional image URL. Overrides letter. */
|
|
78
|
+
imageUrl?: string;
|
|
79
|
+
/** Custom background when no image. Default: purple gradient. */
|
|
80
|
+
background?: string;
|
|
81
|
+
/** Extra CSS class for the root. */
|
|
82
|
+
className?: string;
|
|
83
|
+
};
|
|
84
|
+
/**
|
|
85
|
+
* Team Avatar widget. Reacts to noise and size from framework context.
|
|
86
|
+
*
|
|
87
|
+
* Noise tiers:
|
|
88
|
+
* - 0–1: Hidden (placeholder circle)
|
|
89
|
+
* - 2–3: Avatar only
|
|
90
|
+
* - 4–6: Avatar + name
|
|
91
|
+
* - 7+: Avatar + name + role
|
|
92
|
+
*/
|
|
93
|
+
declare function TeamAvatar({ letter, name, role, imageUrl, background, className, }: TeamAvatarProps): react_jsx_runtime.JSX.Element;
|
|
94
|
+
|
|
70
95
|
/**
|
|
71
96
|
* Liquid Framework — Global easing and transition values for inline styles.
|
|
72
97
|
* Must match styles/transitions.css.
|
|
@@ -83,6 +108,7 @@ declare const FW_DURATION_NORMAL = "0.25s";
|
|
|
83
108
|
declare const FW_DURATION_SLOW = "0.35s";
|
|
84
109
|
declare const FW_TRANSITION_APPEAR = "opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), max-width 0.25s cubic-bezier(0.16, 1, 0.3, 1), max-height 0.25s cubic-bezier(0.16, 1, 0.3, 1), grid-template-rows 0.25s cubic-bezier(0.16, 1, 0.3, 1)";
|
|
85
110
|
declare const FW_TRANSITION_SIZE = "width 0.25s cubic-bezier(0.16, 1, 0.3, 1), height 0.25s cubic-bezier(0.16, 1, 0.3, 1), font-size 0.25s cubic-bezier(0.16, 1, 0.3, 1)";
|
|
111
|
+
declare const FW_TRANSITION_OPACITY = "opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1)";
|
|
86
112
|
/** Duration in ms for JS timers (matches FW_DURATION_NORMAL). */
|
|
87
113
|
declare const FW_DURATION_NORMAL_MS = 250;
|
|
88
114
|
|
|
@@ -99,4 +125,4 @@ declare function getFontSize(semantic: SemanticSize, sizeKnob: number): number;
|
|
|
99
125
|
/** Get avatar diameter (px) at the current knob value. */
|
|
100
126
|
declare function getAvatarSize(sizeKnob: number): number;
|
|
101
127
|
|
|
102
|
-
export { BASE_FONT_SIZES, FW_DURATION_FAST, FW_DURATION_NORMAL, FW_DURATION_NORMAL_MS, FW_DURATION_SLOW, FW_EASE, FW_EASE_OUT, FW_TRANSITION_APPEAR, FW_TRANSITION_SIZE, FrameworkSizeSync, NoiseGate, NoiseProvider, RotaryKnob, type SemanticSize, SizeProvider, getAvatarSize, getFontSize, useDeferredUnmount, useNoise, useSize };
|
|
128
|
+
export { BASE_FONT_SIZES, FW_DURATION_FAST, FW_DURATION_NORMAL, FW_DURATION_NORMAL_MS, FW_DURATION_SLOW, FW_EASE, FW_EASE_OUT, FW_TRANSITION_APPEAR, FW_TRANSITION_OPACITY, FW_TRANSITION_SIZE, FrameworkSizeSync, NoiseGate, NoiseProvider, RotaryKnob, type SemanticSize, SizeProvider, TeamAvatar, type TeamAvatarProps, getAvatarSize, getFontSize, useDeferredUnmount, useNoise, useSize };
|
package/dist/index.js
CHANGED
|
@@ -82,8 +82,8 @@ function useSize() {
|
|
|
82
82
|
// src/tokens/typography.ts
|
|
83
83
|
var BASE_FONT_SIZES = [8, 10, 12, 14, 16, 18, 20, 24, 28];
|
|
84
84
|
var SIZE_TABLE = {
|
|
85
|
-
xs: [10, 12, 14,
|
|
86
|
-
s: [12, 14, 16,
|
|
85
|
+
xs: [10, 12, 14, 14],
|
|
86
|
+
s: [12, 14, 16, 16],
|
|
87
87
|
m: [14, 16, 18, 20],
|
|
88
88
|
l: [16, 18, 20, 24],
|
|
89
89
|
xl: [18, 20, 24, 28]
|
|
@@ -124,6 +124,7 @@ var FW_DURATION_NORMAL = "0.25s";
|
|
|
124
124
|
var FW_DURATION_SLOW = "0.35s";
|
|
125
125
|
var FW_TRANSITION_APPEAR = `opacity ${FW_DURATION_NORMAL} ${FW_EASE}, max-width ${FW_DURATION_NORMAL} ${FW_EASE}, max-height ${FW_DURATION_NORMAL} ${FW_EASE}, grid-template-rows ${FW_DURATION_NORMAL} ${FW_EASE}`;
|
|
126
126
|
var FW_TRANSITION_SIZE = `width ${FW_DURATION_NORMAL} ${FW_EASE}, height ${FW_DURATION_NORMAL} ${FW_EASE}, font-size ${FW_DURATION_NORMAL} ${FW_EASE}`;
|
|
127
|
+
var FW_TRANSITION_OPACITY = `opacity ${FW_DURATION_NORMAL} ${FW_EASE}`;
|
|
127
128
|
var FW_DURATION_NORMAL_MS = 250;
|
|
128
129
|
|
|
129
130
|
// src/hooks/useDeferredUnmount.ts
|
|
@@ -343,7 +344,90 @@ function RotaryKnob({
|
|
|
343
344
|
}
|
|
344
345
|
);
|
|
345
346
|
}
|
|
347
|
+
var NOISE_AVATAR = 2;
|
|
348
|
+
var NOISE_NAME = 4;
|
|
349
|
+
var NOISE_ROLE = 7;
|
|
350
|
+
function TeamAvatar({
|
|
351
|
+
letter,
|
|
352
|
+
name,
|
|
353
|
+
role,
|
|
354
|
+
imageUrl,
|
|
355
|
+
background = "linear-gradient(135deg, #667eea 0%, #764ba2 100%)",
|
|
356
|
+
className = ""
|
|
357
|
+
}) {
|
|
358
|
+
const { noise } = useNoise();
|
|
359
|
+
const { size } = useSize();
|
|
360
|
+
const { mounted: showAvatar } = useDeferredUnmount(noise >= NOISE_AVATAR);
|
|
361
|
+
const { mounted: showName, visible: nameVisible } = useDeferredUnmount(
|
|
362
|
+
noise >= NOISE_NAME && Boolean(name)
|
|
363
|
+
);
|
|
364
|
+
const { mounted: showRole, visible: roleVisible } = useDeferredUnmount(
|
|
365
|
+
noise >= NOISE_ROLE && Boolean(role)
|
|
366
|
+
);
|
|
367
|
+
const avatarPx = getAvatarSize(size);
|
|
368
|
+
const letterPx = getFontSize("xs", size);
|
|
369
|
+
const namePx = getFontSize("s", size);
|
|
370
|
+
const rolePx = getFontSize("xs", size);
|
|
371
|
+
if (!showAvatar) {
|
|
372
|
+
return /* @__PURE__ */ jsx(
|
|
373
|
+
"div",
|
|
374
|
+
{
|
|
375
|
+
className: `ln-avatar ln-avatar--hidden ${className}`.trim(),
|
|
376
|
+
style: {
|
|
377
|
+
width: avatarPx,
|
|
378
|
+
height: avatarPx,
|
|
379
|
+
borderRadius: "50%",
|
|
380
|
+
border: "2px dashed var(--border, #e5e5e5)"
|
|
381
|
+
},
|
|
382
|
+
children: "\u2014"
|
|
383
|
+
}
|
|
384
|
+
);
|
|
385
|
+
}
|
|
386
|
+
return /* @__PURE__ */ jsxs("div", { className: `ln-avatar ${className}`.trim(), children: [
|
|
387
|
+
/* @__PURE__ */ jsx(
|
|
388
|
+
"div",
|
|
389
|
+
{
|
|
390
|
+
className: "ln-avatar__circle",
|
|
391
|
+
style: {
|
|
392
|
+
width: avatarPx,
|
|
393
|
+
height: avatarPx,
|
|
394
|
+
fontSize: letterPx,
|
|
395
|
+
background: imageUrl ? void 0 : background,
|
|
396
|
+
backgroundImage: imageUrl ? `url(${imageUrl})` : void 0,
|
|
397
|
+
backgroundSize: imageUrl ? "cover" : void 0
|
|
398
|
+
},
|
|
399
|
+
children: !imageUrl && letter.slice(0, 1).toUpperCase()
|
|
400
|
+
}
|
|
401
|
+
),
|
|
402
|
+
(showName || showRole) && /* @__PURE__ */ jsxs("div", { className: "ln-avatar__text", children: [
|
|
403
|
+
showName && name && /* @__PURE__ */ jsx(
|
|
404
|
+
"div",
|
|
405
|
+
{
|
|
406
|
+
className: "ln-avatar__name",
|
|
407
|
+
style: {
|
|
408
|
+
fontSize: namePx,
|
|
409
|
+
opacity: nameVisible ? 1 : 0,
|
|
410
|
+
transition: FW_TRANSITION_OPACITY
|
|
411
|
+
},
|
|
412
|
+
children: name
|
|
413
|
+
}
|
|
414
|
+
),
|
|
415
|
+
showRole && role && /* @__PURE__ */ jsx(
|
|
416
|
+
"div",
|
|
417
|
+
{
|
|
418
|
+
className: "ln-avatar__role",
|
|
419
|
+
style: {
|
|
420
|
+
fontSize: rolePx,
|
|
421
|
+
opacity: roleVisible ? 1 : 0,
|
|
422
|
+
transition: FW_TRANSITION_OPACITY
|
|
423
|
+
},
|
|
424
|
+
children: role
|
|
425
|
+
}
|
|
426
|
+
)
|
|
427
|
+
] })
|
|
428
|
+
] });
|
|
429
|
+
}
|
|
346
430
|
|
|
347
|
-
export { BASE_FONT_SIZES, FW_DURATION_FAST, FW_DURATION_NORMAL, FW_DURATION_NORMAL_MS, FW_DURATION_SLOW, FW_EASE, FW_EASE_OUT, FW_TRANSITION_APPEAR, FW_TRANSITION_SIZE, FrameworkSizeSync, NoiseGate, NoiseProvider, RotaryKnob, SizeProvider, getAvatarSize, getFontSize, useDeferredUnmount, useNoise, useSize };
|
|
431
|
+
export { BASE_FONT_SIZES, FW_DURATION_FAST, FW_DURATION_NORMAL, FW_DURATION_NORMAL_MS, FW_DURATION_SLOW, FW_EASE, FW_EASE_OUT, FW_TRANSITION_APPEAR, FW_TRANSITION_OPACITY, FW_TRANSITION_SIZE, FrameworkSizeSync, NoiseGate, NoiseProvider, RotaryKnob, SizeProvider, TeamAvatar, getAvatarSize, getFontSize, useDeferredUnmount, useNoise, useSize };
|
|
348
432
|
//# sourceMappingURL=index.js.map
|
|
349
433
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/providers/NoiseProvider.tsx","../src/providers/SizeProvider.tsx","../src/tokens/typography.ts","../src/providers/FrameworkSizeSync.tsx","../src/tokens/transitions.ts","../src/hooks/useDeferredUnmount.ts","../src/components/NoiseGate.tsx","../src/components/RotaryKnob.tsx"],"names":["createContext","DEBOUNCE_MS","useState","useRef","useEffect","useCallback","jsx","useContext"],"mappings":"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","file":"index.js","sourcesContent":["import {\n createContext,\n useContext,\n useState,\n useEffect,\n useRef,\n useCallback,\n type ReactNode,\n} from \"react\";\n\nexport type NoiseContextValue = {\n noise: number;\n setNoise: (v: number) => void;\n};\n\nconst NoiseContext = createContext<NoiseContextValue | null>(null);\n\nconst DEBOUNCE_MS = 500;\n\nexport function NoiseProvider({\n children,\n initialValue = 0,\n onSave,\n}: {\n children: ReactNode;\n initialValue?: number;\n onSave?: (value: number) => void;\n}) {\n const [noise, setNoiseRaw] = useState(initialValue);\n const timerRef = useRef<ReturnType<typeof setTimeout> | null>(null);\n\n // Sync when initialValue changes (e.g. after loading from DB)\n useEffect(() => {\n setNoiseRaw(initialValue);\n }, [initialValue]);\n\n // Debounced save via callback\n const setNoise = useCallback(\n (v: number) => {\n setNoiseRaw(v);\n\n if (!onSave) return;\n\n if (timerRef.current) clearTimeout(timerRef.current);\n timerRef.current = setTimeout(() => {\n onSave(v);\n timerRef.current = null;\n }, DEBOUNCE_MS);\n },\n [onSave],\n );\n\n useEffect(() => {\n return () => {\n if (timerRef.current) clearTimeout(timerRef.current);\n };\n }, []);\n\n return (\n <NoiseContext.Provider value={{ noise, setNoise }}>\n {children}\n </NoiseContext.Provider>\n );\n}\n\nexport function useNoise(): NoiseContextValue {\n const ctx = useContext(NoiseContext);\n if (!ctx) {\n throw new Error(\"useNoise must be used within NoiseProvider\");\n }\n return ctx;\n}\n","import {\n createContext,\n useContext,\n useState,\n useEffect,\n useRef,\n useCallback,\n type ReactNode,\n} from \"react\";\n\nexport type SizeContextValue = {\n size: number;\n setSize: (v: number) => void;\n};\n\nconst SizeContext = createContext<SizeContextValue | null>(null);\n\nconst DEBOUNCE_MS = 500;\n\nexport function SizeProvider({\n children,\n initialValue = 5,\n onSave,\n}: {\n children: ReactNode;\n initialValue?: number;\n onSave?: (value: number) => void;\n}) {\n const [size, setSizeRaw] = useState(initialValue);\n const timerRef = useRef<ReturnType<typeof setTimeout> | null>(null);\n\n // Sync when initialValue changes (e.g. after loading from DB)\n useEffect(() => {\n setSizeRaw(initialValue);\n }, [initialValue]);\n\n // Debounced save via callback\n const setSize = useCallback(\n (v: number) => {\n setSizeRaw(v);\n\n if (!onSave) return;\n\n if (timerRef.current) clearTimeout(timerRef.current);\n timerRef.current = setTimeout(() => {\n onSave(v);\n timerRef.current = null;\n }, DEBOUNCE_MS);\n },\n [onSave],\n );\n\n useEffect(() => {\n return () => {\n if (timerRef.current) clearTimeout(timerRef.current);\n };\n }, []);\n\n return (\n <SizeContext.Provider value={{ size, setSize }}>\n {children}\n </SizeContext.Provider>\n );\n}\n\nexport function useSize(): SizeContextValue {\n const ctx = useContext(SizeContext);\n if (!ctx) {\n throw new Error(\"useSize must be used within SizeProvider\");\n }\n return ctx;\n}\n","/**\n * Liquid Framework typography scale.\n * Base values (px) and semantic sizes with mapping rules per size-knob range.\n */\n\n/** Base font sizes in px — fixed scale. */\nexport const BASE_FONT_SIZES = [8, 10, 12, 14, 16, 18, 20, 24, 28] as const;\n\n/** Semantic size tokens for component usage. */\nexport type SemanticSize = \"xs\" | \"s\" | \"m\" | \"l\" | \"xl\";\n\n/**\n * Size-knob ranges: 0-2, 3-4, 5-7, 8-10.\n * Each semantic size maps to a base value per range.\n * XS: 1-2 → 10, 3-4 → 12, 5-7 → 14, 8-10 → 16 (per user spec)\n */\nconst SIZE_TABLE: Record<SemanticSize, [number, number, number, number]> = {\n xs: [10, 12, 14, 16],\n s: [12, 14, 16, 18],\n m: [14, 16, 18, 20],\n l: [16, 18, 20, 24],\n xl: [18, 20, 24, 28],\n};\n\n/** Avatar size scale (px) per size-knob range. */\nconst AVATAR_SIZE_TABLE: [number, number, number, number] = [20, 24, 28, 36];\n\nfunction sizeToTier(size: number): 0 | 1 | 2 | 3 {\n if (size <= 2) return 0;\n if (size <= 4) return 1;\n if (size <= 7) return 2;\n return 3;\n}\n\n/** Get font size (px) for a semantic size at the current knob value. */\nexport function getFontSize(semantic: SemanticSize, sizeKnob: number): number {\n return SIZE_TABLE[semantic][sizeToTier(sizeKnob)];\n}\n\n/** Get avatar diameter (px) at the current knob value. */\nexport function getAvatarSize(sizeKnob: number): number {\n return AVATAR_SIZE_TABLE[sizeToTier(sizeKnob)];\n}\n","import { useEffect } from \"react\";\nimport { useSize } from \"./SizeProvider\";\nimport { getFontSize, getAvatarSize } from \"../tokens/typography\";\nimport type { SemanticSize } from \"../tokens/typography\";\n\n/** Syncs size-knob value to CSS custom properties on :root. */\nexport function FrameworkSizeSync() {\n const { size } = useSize();\n\n useEffect(() => {\n const root = document.documentElement;\n const semanticSizes: SemanticSize[] = [\"xs\", \"s\", \"m\", \"l\", \"xl\"];\n semanticSizes.forEach((s) => {\n root.style.setProperty(`--fw-font-${s}`, `${getFontSize(s, size)}px`);\n });\n root.style.setProperty(`--fw-avatar-size`, `${getAvatarSize(size)}px`);\n }, [size]);\n\n return null;\n}\n","/**\n * Liquid Framework — Global easing and transition values for inline styles.\n * Must match styles/transitions.css.\n *\n * FW_EASE is the single easing used for ALL framework transitions.\n * Any change in Liquid elements must use this.\n */\n\n/** Global easing — used by every transition in the framework */\nexport const FW_EASE = \"cubic-bezier(0.16, 1, 0.3, 1)\";\n\n/** @deprecated Use FW_EASE */\nexport const FW_EASE_OUT = FW_EASE;\n\nexport const FW_DURATION_FAST = \"0.15s\";\nexport const FW_DURATION_NORMAL = \"0.25s\";\nexport const FW_DURATION_SLOW = \"0.35s\";\n\nexport const FW_TRANSITION_APPEAR = `opacity ${FW_DURATION_NORMAL} ${FW_EASE}, max-width ${FW_DURATION_NORMAL} ${FW_EASE}, max-height ${FW_DURATION_NORMAL} ${FW_EASE}, grid-template-rows ${FW_DURATION_NORMAL} ${FW_EASE}`;\nexport const FW_TRANSITION_SIZE = `width ${FW_DURATION_NORMAL} ${FW_EASE}, height ${FW_DURATION_NORMAL} ${FW_EASE}, font-size ${FW_DURATION_NORMAL} ${FW_EASE}`;\n\n/** Duration in ms for JS timers (matches FW_DURATION_NORMAL). */\nexport const FW_DURATION_NORMAL_MS = 250;\n","import { useState, useEffect, useRef } from \"react\";\nimport { FW_DURATION_NORMAL_MS } from \"../tokens/transitions\";\n\n/**\n * Liquid Framework — deferred unmount hook.\n *\n * Keeps a component mounted for the duration of the exit transition,\n * then unmounts it so it takes zero layout space.\n *\n * Usage:\n * const { mounted, visible } = useDeferredUnmount(showName);\n * // mounted = true while element should exist in DOM (including exit animation)\n * // visible = true when element should be fully shown (drives CSS values)\n *\n * {mounted && (\n * <div style={{ opacity: visible ? 1 : 0, transition: FW_TRANSITION_APPEAR }}>\n * ...\n * </div>\n * )}\n *\n * Flow:\n * show=true → mounted=true, visible=true (element mounts, CSS transitions in)\n * show=false → mounted=true, visible=false (CSS transitions out)\n * → after duration → mounted=false (element unmounts, zero layout)\n */\nexport function useDeferredUnmount(\n show: boolean,\n durationMs: number = FW_DURATION_NORMAL_MS,\n): { mounted: boolean; visible: boolean } {\n const [mounted, setMounted] = useState(show);\n const timerRef = useRef<ReturnType<typeof setTimeout> | null>(null);\n\n useEffect(() => {\n if (show) {\n // Cancel any pending unmount\n if (timerRef.current) {\n clearTimeout(timerRef.current);\n timerRef.current = null;\n }\n setMounted(true);\n } else {\n // Delay unmount so exit transition can play\n timerRef.current = setTimeout(() => {\n setMounted(false);\n timerRef.current = null;\n }, durationMs);\n }\n\n return () => {\n if (timerRef.current) {\n clearTimeout(timerRef.current);\n timerRef.current = null;\n }\n };\n }, [show, durationMs]);\n\n return { mounted, visible: show };\n}\n","import type { ReactNode } from \"react\";\nimport { FW_TRANSITION_APPEAR } from \"../tokens/transitions\";\nimport { useDeferredUnmount } from \"../hooks/useDeferredUnmount\";\nimport { useNoise } from \"../providers/NoiseProvider\";\n\ntype NoiseGateProps = {\n min: number;\n children: ReactNode;\n};\n\n/** Renders children when noise >= min. Animates in/out, then fully unmounts. */\nexport function NoiseGate({ min, children }: NoiseGateProps) {\n const { noise } = useNoise();\n const { mounted, visible } = useDeferredUnmount(noise >= min);\n\n if (!mounted) return null;\n\n return (\n <div\n style={{\n opacity: visible ? 1 : 0,\n transition: FW_TRANSITION_APPEAR,\n pointerEvents: visible ? \"auto\" : \"none\",\n }}\n >\n {children}\n </div>\n );\n}\n","import { useCallback, useRef, useState, useEffect } from \"react\";\n\nconst MIN_ANGLE = -135;\nconst MAX_ANGLE = 135;\nconst STEPS = 10;\nconst KNOB_SIZE = 28;\n\nfunction valueToAngle(value: number): number {\n return MIN_ANGLE + (value / STEPS) * (MAX_ANGLE - MIN_ANGLE);\n}\n\nfunction angleToValue(angle: number): number {\n const raw = ((angle - MIN_ANGLE) / (MAX_ANGLE - MIN_ANGLE)) * STEPS;\n return Math.round(Math.max(0, Math.min(STEPS, raw)));\n}\n\nfunction getAngleFromEvent(\n e: MouseEvent | TouchEvent,\n rect: DOMRect,\n): number {\n const clientX = \"touches\" in e ? e.touches[0].clientX : e.clientX;\n const clientY = \"touches\" in e ? e.touches[0].clientY : e.clientY;\n const cx = rect.left + rect.width / 2;\n const cy = rect.top + rect.height / 2;\n const rad = Math.atan2(clientX - cx, cy - clientY);\n const deg = rad * (180 / Math.PI);\n return Math.max(MIN_ANGLE, Math.min(MAX_ANGLE, deg));\n}\n\nexport function RotaryKnob({\n label,\n defaultValue = 0,\n value: controlledValue,\n onChange,\n}: {\n label: string;\n defaultValue?: number;\n value?: number;\n onChange?: (v: number) => void;\n}) {\n const [internalValue, setInternalValue] = useState(defaultValue);\n const value =\n controlledValue !== undefined ? controlledValue : internalValue;\n const knobRef = useRef<SVGSVGElement>(null);\n const dragging = useRef(false);\n\n const updateRef = useRef((v: number) => {\n if (onChange) onChange(v);\n else setInternalValue(v);\n });\n updateRef.current = (v: number) => {\n if (onChange) onChange(v);\n else setInternalValue(v);\n };\n\n const handleStart = useCallback((e: React.MouseEvent | React.TouchEvent) => {\n e.preventDefault();\n dragging.current = true;\n const rect = knobRef.current!.getBoundingClientRect();\n const native = e.nativeEvent as MouseEvent | TouchEvent;\n const angle = getAngleFromEvent(native, rect);\n updateRef.current(angleToValue(angle));\n }, []);\n\n useEffect(() => {\n const onMove = (e: MouseEvent | TouchEvent) => {\n if (!dragging.current || !knobRef.current) return;\n const rect = knobRef.current.getBoundingClientRect();\n const angle = getAngleFromEvent(e, rect);\n updateRef.current(angleToValue(angle));\n };\n\n const onUp = () => {\n dragging.current = false;\n };\n\n window.addEventListener(\"mousemove\", onMove);\n window.addEventListener(\"mouseup\", onUp);\n window.addEventListener(\"touchmove\", onMove);\n window.addEventListener(\"touchend\", onUp);\n\n return () => {\n window.removeEventListener(\"mousemove\", onMove);\n window.removeEventListener(\"mouseup\", onUp);\n window.removeEventListener(\"touchmove\", onMove);\n window.removeEventListener(\"touchend\", onUp);\n };\n }, []);\n\n const rotation = valueToAngle(value);\n\n // Generate tick marks\n const ticks = Array.from({ length: STEPS + 1 }, (_, i) => {\n const angle = valueToAngle(i);\n const rad = ((angle - 90) * Math.PI) / 180;\n const outer = KNOB_SIZE / 2 + 5;\n const inner = KNOB_SIZE / 2 + 2;\n return {\n x1: Math.cos(rad) * inner,\n y1: Math.sin(rad) * inner,\n x2: Math.cos(rad) * outer,\n y2: Math.sin(rad) * outer,\n major: i === 0 || i === 5 || i === 10,\n };\n });\n\n const svgSize = KNOB_SIZE + 14;\n const center = svgSize / 2;\n\n return (\n <div\n style={{\n display: \"flex\",\n flexDirection: \"column\",\n alignItems: \"center\",\n gap: 1,\n userSelect: \"none\",\n WebkitUserSelect: \"none\",\n }}\n >\n <svg\n ref={knobRef}\n width={svgSize}\n height={svgSize}\n viewBox={`0 0 ${svgSize} ${svgSize}`}\n style={{ cursor: \"grab\", touchAction: \"none\" }}\n onMouseDown={handleStart}\n onTouchStart={handleStart}\n >\n {/* Tick marks */}\n {ticks.map((t, i) => (\n <line\n key={i}\n x1={center + t.x1}\n y1={center + t.y1}\n x2={center + t.x2}\n y2={center + t.y2}\n stroke={i <= value ? \"#111\" : \"#ccc\"}\n strokeWidth={t.major ? 1.5 : 0.75}\n strokeLinecap=\"round\"\n />\n ))}\n\n {/* Knob body */}\n <circle\n cx={center}\n cy={center}\n r={KNOB_SIZE / 2}\n fill=\"#fff\"\n stroke=\"#ddd\"\n strokeWidth={1}\n />\n\n {/* Inner subtle ring */}\n <circle\n cx={center}\n cy={center}\n r={KNOB_SIZE / 2 - 3}\n fill=\"none\"\n stroke=\"#eee\"\n strokeWidth={0.5}\n />\n\n {/* Indicator line */}\n <line\n x1={center}\n y1={center}\n x2={\n center +\n Math.cos(((rotation - 90) * Math.PI) / 180) * (KNOB_SIZE / 2 - 4)\n }\n y2={\n center +\n Math.sin(((rotation - 90) * Math.PI) / 180) * (KNOB_SIZE / 2 - 4)\n }\n stroke=\"#111\"\n strokeWidth={1.5}\n strokeLinecap=\"round\"\n />\n\n {/* Center dot */}\n <circle cx={center} cy={center} r={1.5} fill=\"#111\" />\n </svg>\n\n <span\n style={{\n fontSize: \"0.55rem\",\n fontWeight: 500,\n color: \"#999\",\n textTransform: \"uppercase\",\n letterSpacing: \"0.06em\",\n lineHeight: 1,\n }}\n >\n {label}\n </span>\n </div>\n );\n}\n"]}
|
|
1
|
+
{"version":3,"sources":["../src/providers/NoiseProvider.tsx","../src/providers/SizeProvider.tsx","../src/tokens/typography.ts","../src/providers/FrameworkSizeSync.tsx","../src/tokens/transitions.ts","../src/hooks/useDeferredUnmount.ts","../src/components/NoiseGate.tsx","../src/components/RotaryKnob.tsx","../src/components/TeamAvatar.tsx"],"names":["createContext","DEBOUNCE_MS","useState","useRef","useEffect","useCallback","jsx","useContext","jsxs"],"mappings":"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","file":"index.js","sourcesContent":["import {\n createContext,\n useContext,\n useState,\n useEffect,\n useRef,\n useCallback,\n type ReactNode,\n} from \"react\";\n\nexport type NoiseContextValue = {\n noise: number;\n setNoise: (v: number) => void;\n};\n\nconst NoiseContext = createContext<NoiseContextValue | null>(null);\n\nconst DEBOUNCE_MS = 500;\n\nexport function NoiseProvider({\n children,\n initialValue = 0,\n onSave,\n}: {\n children: ReactNode;\n initialValue?: number;\n onSave?: (value: number) => void;\n}) {\n const [noise, setNoiseRaw] = useState(initialValue);\n const timerRef = useRef<ReturnType<typeof setTimeout> | null>(null);\n\n // Sync when initialValue changes (e.g. after loading from DB)\n useEffect(() => {\n setNoiseRaw(initialValue);\n }, [initialValue]);\n\n // Debounced save via callback\n const setNoise = useCallback(\n (v: number) => {\n setNoiseRaw(v);\n\n if (!onSave) return;\n\n if (timerRef.current) clearTimeout(timerRef.current);\n timerRef.current = setTimeout(() => {\n onSave(v);\n timerRef.current = null;\n }, DEBOUNCE_MS);\n },\n [onSave],\n );\n\n useEffect(() => {\n return () => {\n if (timerRef.current) clearTimeout(timerRef.current);\n };\n }, []);\n\n return (\n <NoiseContext.Provider value={{ noise, setNoise }}>\n {children}\n </NoiseContext.Provider>\n );\n}\n\nexport function useNoise(): NoiseContextValue {\n const ctx = useContext(NoiseContext);\n if (!ctx) {\n throw new Error(\"useNoise must be used within NoiseProvider\");\n }\n return ctx;\n}\n","import {\n createContext,\n useContext,\n useState,\n useEffect,\n useRef,\n useCallback,\n type ReactNode,\n} from \"react\";\n\nexport type SizeContextValue = {\n size: number;\n setSize: (v: number) => void;\n};\n\nconst SizeContext = createContext<SizeContextValue | null>(null);\n\nconst DEBOUNCE_MS = 500;\n\nexport function SizeProvider({\n children,\n initialValue = 5,\n onSave,\n}: {\n children: ReactNode;\n initialValue?: number;\n onSave?: (value: number) => void;\n}) {\n const [size, setSizeRaw] = useState(initialValue);\n const timerRef = useRef<ReturnType<typeof setTimeout> | null>(null);\n\n // Sync when initialValue changes (e.g. after loading from DB)\n useEffect(() => {\n setSizeRaw(initialValue);\n }, [initialValue]);\n\n // Debounced save via callback\n const setSize = useCallback(\n (v: number) => {\n setSizeRaw(v);\n\n if (!onSave) return;\n\n if (timerRef.current) clearTimeout(timerRef.current);\n timerRef.current = setTimeout(() => {\n onSave(v);\n timerRef.current = null;\n }, DEBOUNCE_MS);\n },\n [onSave],\n );\n\n useEffect(() => {\n return () => {\n if (timerRef.current) clearTimeout(timerRef.current);\n };\n }, []);\n\n return (\n <SizeContext.Provider value={{ size, setSize }}>\n {children}\n </SizeContext.Provider>\n );\n}\n\nexport function useSize(): SizeContextValue {\n const ctx = useContext(SizeContext);\n if (!ctx) {\n throw new Error(\"useSize must be used within SizeProvider\");\n }\n return ctx;\n}\n","/**\n * Liquid Framework typography scale.\n * Base values (px) and semantic sizes with mapping rules per size-knob range.\n */\n\n/** Base font sizes in px — fixed scale. */\nexport const BASE_FONT_SIZES = [8, 10, 12, 14, 16, 18, 20, 24, 28] as const;\n\n/** Semantic size tokens for component usage. */\nexport type SemanticSize = \"xs\" | \"s\" | \"m\" | \"l\" | \"xl\";\n\n/**\n * Size-knob ranges: 0-2, 3-4, 5-7, 8-10.\n * Each semantic size maps to a base value per range.\n * XS: 1-2 → 10, 3-4 → 12, 5-7 → 14, 8-10 → 14 (stays 14 in tier 3)\n */\nconst SIZE_TABLE: Record<SemanticSize, [number, number, number, number]> = {\n xs: [10, 12, 14, 14],\n s: [12, 14, 16, 16],\n m: [14, 16, 18, 20],\n l: [16, 18, 20, 24],\n xl: [18, 20, 24, 28],\n};\n\n/** Avatar size scale (px) per size-knob range. */\nconst AVATAR_SIZE_TABLE: [number, number, number, number] = [20, 24, 28, 36];\n\nfunction sizeToTier(size: number): 0 | 1 | 2 | 3 {\n if (size <= 2) return 0;\n if (size <= 4) return 1;\n if (size <= 7) return 2;\n return 3;\n}\n\n/** Get font size (px) for a semantic size at the current knob value. */\nexport function getFontSize(semantic: SemanticSize, sizeKnob: number): number {\n return SIZE_TABLE[semantic][sizeToTier(sizeKnob)];\n}\n\n/** Get avatar diameter (px) at the current knob value. */\nexport function getAvatarSize(sizeKnob: number): number {\n return AVATAR_SIZE_TABLE[sizeToTier(sizeKnob)];\n}\n","import { useEffect } from \"react\";\nimport { useSize } from \"./SizeProvider\";\nimport { getFontSize, getAvatarSize } from \"../tokens/typography\";\nimport type { SemanticSize } from \"../tokens/typography\";\n\n/** Syncs size-knob value to CSS custom properties on :root. */\nexport function FrameworkSizeSync() {\n const { size } = useSize();\n\n useEffect(() => {\n const root = document.documentElement;\n const semanticSizes: SemanticSize[] = [\"xs\", \"s\", \"m\", \"l\", \"xl\"];\n semanticSizes.forEach((s) => {\n root.style.setProperty(`--fw-font-${s}`, `${getFontSize(s, size)}px`);\n });\n root.style.setProperty(`--fw-avatar-size`, `${getAvatarSize(size)}px`);\n }, [size]);\n\n return null;\n}\n","/**\n * Liquid Framework — Global easing and transition values for inline styles.\n * Must match styles/transitions.css.\n *\n * FW_EASE is the single easing used for ALL framework transitions.\n * Any change in Liquid elements must use this.\n */\n\n/** Global easing — used by every transition in the framework */\nexport const FW_EASE = \"cubic-bezier(0.16, 1, 0.3, 1)\";\n\n/** @deprecated Use FW_EASE */\nexport const FW_EASE_OUT = FW_EASE;\n\nexport const FW_DURATION_FAST = \"0.15s\";\nexport const FW_DURATION_NORMAL = \"0.25s\";\nexport const FW_DURATION_SLOW = \"0.35s\";\n\nexport const FW_TRANSITION_APPEAR = `opacity ${FW_DURATION_NORMAL} ${FW_EASE}, max-width ${FW_DURATION_NORMAL} ${FW_EASE}, max-height ${FW_DURATION_NORMAL} ${FW_EASE}, grid-template-rows ${FW_DURATION_NORMAL} ${FW_EASE}`;\nexport const FW_TRANSITION_SIZE = `width ${FW_DURATION_NORMAL} ${FW_EASE}, height ${FW_DURATION_NORMAL} ${FW_EASE}, font-size ${FW_DURATION_NORMAL} ${FW_EASE}`;\nexport const FW_TRANSITION_OPACITY = `opacity ${FW_DURATION_NORMAL} ${FW_EASE}`;\n\n/** Duration in ms for JS timers (matches FW_DURATION_NORMAL). */\nexport const FW_DURATION_NORMAL_MS = 250;\n","import { useState, useEffect, useRef } from \"react\";\nimport { FW_DURATION_NORMAL_MS } from \"../tokens/transitions\";\n\n/**\n * Liquid Framework — deferred unmount hook.\n *\n * Keeps a component mounted for the duration of the exit transition,\n * then unmounts it so it takes zero layout space.\n *\n * Usage:\n * const { mounted, visible } = useDeferredUnmount(showName);\n * // mounted = true while element should exist in DOM (including exit animation)\n * // visible = true when element should be fully shown (drives CSS values)\n *\n * {mounted && (\n * <div style={{ opacity: visible ? 1 : 0, transition: FW_TRANSITION_APPEAR }}>\n * ...\n * </div>\n * )}\n *\n * Flow:\n * show=true → mounted=true, visible=true (element mounts, CSS transitions in)\n * show=false → mounted=true, visible=false (CSS transitions out)\n * → after duration → mounted=false (element unmounts, zero layout)\n */\nexport function useDeferredUnmount(\n show: boolean,\n durationMs: number = FW_DURATION_NORMAL_MS,\n): { mounted: boolean; visible: boolean } {\n const [mounted, setMounted] = useState(show);\n const timerRef = useRef<ReturnType<typeof setTimeout> | null>(null);\n\n useEffect(() => {\n if (show) {\n // Cancel any pending unmount\n if (timerRef.current) {\n clearTimeout(timerRef.current);\n timerRef.current = null;\n }\n setMounted(true);\n } else {\n // Delay unmount so exit transition can play\n timerRef.current = setTimeout(() => {\n setMounted(false);\n timerRef.current = null;\n }, durationMs);\n }\n\n return () => {\n if (timerRef.current) {\n clearTimeout(timerRef.current);\n timerRef.current = null;\n }\n };\n }, [show, durationMs]);\n\n return { mounted, visible: show };\n}\n","import type { ReactNode } from \"react\";\nimport { FW_TRANSITION_APPEAR } from \"../tokens/transitions\";\nimport { useDeferredUnmount } from \"../hooks/useDeferredUnmount\";\nimport { useNoise } from \"../providers/NoiseProvider\";\n\ntype NoiseGateProps = {\n min: number;\n children: ReactNode;\n};\n\n/** Renders children when noise >= min. Animates in/out, then fully unmounts. */\nexport function NoiseGate({ min, children }: NoiseGateProps) {\n const { noise } = useNoise();\n const { mounted, visible } = useDeferredUnmount(noise >= min);\n\n if (!mounted) return null;\n\n return (\n <div\n style={{\n opacity: visible ? 1 : 0,\n transition: FW_TRANSITION_APPEAR,\n pointerEvents: visible ? \"auto\" : \"none\",\n }}\n >\n {children}\n </div>\n );\n}\n","import { useCallback, useRef, useState, useEffect } from \"react\";\n\nconst MIN_ANGLE = -135;\nconst MAX_ANGLE = 135;\nconst STEPS = 10;\nconst KNOB_SIZE = 28;\n\nfunction valueToAngle(value: number): number {\n return MIN_ANGLE + (value / STEPS) * (MAX_ANGLE - MIN_ANGLE);\n}\n\nfunction angleToValue(angle: number): number {\n const raw = ((angle - MIN_ANGLE) / (MAX_ANGLE - MIN_ANGLE)) * STEPS;\n return Math.round(Math.max(0, Math.min(STEPS, raw)));\n}\n\nfunction getAngleFromEvent(\n e: MouseEvent | TouchEvent,\n rect: DOMRect,\n): number {\n const clientX = \"touches\" in e ? e.touches[0].clientX : e.clientX;\n const clientY = \"touches\" in e ? e.touches[0].clientY : e.clientY;\n const cx = rect.left + rect.width / 2;\n const cy = rect.top + rect.height / 2;\n const rad = Math.atan2(clientX - cx, cy - clientY);\n const deg = rad * (180 / Math.PI);\n return Math.max(MIN_ANGLE, Math.min(MAX_ANGLE, deg));\n}\n\nexport function RotaryKnob({\n label,\n defaultValue = 0,\n value: controlledValue,\n onChange,\n}: {\n label: string;\n defaultValue?: number;\n value?: number;\n onChange?: (v: number) => void;\n}) {\n const [internalValue, setInternalValue] = useState(defaultValue);\n const value =\n controlledValue !== undefined ? controlledValue : internalValue;\n const knobRef = useRef<SVGSVGElement>(null);\n const dragging = useRef(false);\n\n const updateRef = useRef((v: number) => {\n if (onChange) onChange(v);\n else setInternalValue(v);\n });\n updateRef.current = (v: number) => {\n if (onChange) onChange(v);\n else setInternalValue(v);\n };\n\n const handleStart = useCallback((e: React.MouseEvent | React.TouchEvent) => {\n e.preventDefault();\n dragging.current = true;\n const rect = knobRef.current!.getBoundingClientRect();\n const native = e.nativeEvent as MouseEvent | TouchEvent;\n const angle = getAngleFromEvent(native, rect);\n updateRef.current(angleToValue(angle));\n }, []);\n\n useEffect(() => {\n const onMove = (e: MouseEvent | TouchEvent) => {\n if (!dragging.current || !knobRef.current) return;\n const rect = knobRef.current.getBoundingClientRect();\n const angle = getAngleFromEvent(e, rect);\n updateRef.current(angleToValue(angle));\n };\n\n const onUp = () => {\n dragging.current = false;\n };\n\n window.addEventListener(\"mousemove\", onMove);\n window.addEventListener(\"mouseup\", onUp);\n window.addEventListener(\"touchmove\", onMove);\n window.addEventListener(\"touchend\", onUp);\n\n return () => {\n window.removeEventListener(\"mousemove\", onMove);\n window.removeEventListener(\"mouseup\", onUp);\n window.removeEventListener(\"touchmove\", onMove);\n window.removeEventListener(\"touchend\", onUp);\n };\n }, []);\n\n const rotation = valueToAngle(value);\n\n // Generate tick marks\n const ticks = Array.from({ length: STEPS + 1 }, (_, i) => {\n const angle = valueToAngle(i);\n const rad = ((angle - 90) * Math.PI) / 180;\n const outer = KNOB_SIZE / 2 + 5;\n const inner = KNOB_SIZE / 2 + 2;\n return {\n x1: Math.cos(rad) * inner,\n y1: Math.sin(rad) * inner,\n x2: Math.cos(rad) * outer,\n y2: Math.sin(rad) * outer,\n major: i === 0 || i === 5 || i === 10,\n };\n });\n\n const svgSize = KNOB_SIZE + 14;\n const center = svgSize / 2;\n\n return (\n <div\n style={{\n display: \"flex\",\n flexDirection: \"column\",\n alignItems: \"center\",\n gap: 1,\n userSelect: \"none\",\n WebkitUserSelect: \"none\",\n }}\n >\n <svg\n ref={knobRef}\n width={svgSize}\n height={svgSize}\n viewBox={`0 0 ${svgSize} ${svgSize}`}\n style={{ cursor: \"grab\", touchAction: \"none\" }}\n onMouseDown={handleStart}\n onTouchStart={handleStart}\n >\n {/* Tick marks */}\n {ticks.map((t, i) => (\n <line\n key={i}\n x1={center + t.x1}\n y1={center + t.y1}\n x2={center + t.x2}\n y2={center + t.y2}\n stroke={i <= value ? \"#111\" : \"#ccc\"}\n strokeWidth={t.major ? 1.5 : 0.75}\n strokeLinecap=\"round\"\n />\n ))}\n\n {/* Knob body */}\n <circle\n cx={center}\n cy={center}\n r={KNOB_SIZE / 2}\n fill=\"#fff\"\n stroke=\"#ddd\"\n strokeWidth={1}\n />\n\n {/* Inner subtle ring */}\n <circle\n cx={center}\n cy={center}\n r={KNOB_SIZE / 2 - 3}\n fill=\"none\"\n stroke=\"#eee\"\n strokeWidth={0.5}\n />\n\n {/* Indicator line */}\n <line\n x1={center}\n y1={center}\n x2={\n center +\n Math.cos(((rotation - 90) * Math.PI) / 180) * (KNOB_SIZE / 2 - 4)\n }\n y2={\n center +\n Math.sin(((rotation - 90) * Math.PI) / 180) * (KNOB_SIZE / 2 - 4)\n }\n stroke=\"#111\"\n strokeWidth={1.5}\n strokeLinecap=\"round\"\n />\n\n {/* Center dot */}\n <circle cx={center} cy={center} r={1.5} fill=\"#111\" />\n </svg>\n\n <span\n style={{\n fontSize: \"0.55rem\",\n fontWeight: 500,\n color: \"#999\",\n textTransform: \"uppercase\",\n letterSpacing: \"0.06em\",\n lineHeight: 1,\n }}\n >\n {label}\n </span>\n </div>\n );\n}\n","import { useNoise } from \"../providers/NoiseProvider\";\nimport { useSize } from \"../providers/SizeProvider\";\nimport { useDeferredUnmount } from \"../hooks/useDeferredUnmount\";\nimport { getFontSize, getAvatarSize } from \"../tokens/typography\";\nimport { FW_TRANSITION_OPACITY } from \"../tokens/transitions\";\n\nexport type TeamAvatarProps = {\n /** First letter shown in avatar when no image. */\n letter: string;\n /** Display name. Appears at noise ≥ 4. */\n name?: string;\n /** Role or label. Appears at noise ≥ 7. */\n role?: string;\n /** Optional image URL. Overrides letter. */\n imageUrl?: string;\n /** Custom background when no image. Default: purple gradient. */\n background?: string;\n /** Extra CSS class for the root. */\n className?: string;\n};\n\nconst NOISE_AVATAR = 2;\nconst NOISE_NAME = 4;\nconst NOISE_ROLE = 7;\n\n/**\n * Team Avatar widget. Reacts to noise and size from framework context.\n *\n * Noise tiers:\n * - 0–1: Hidden (placeholder circle)\n * - 2–3: Avatar only\n * - 4–6: Avatar + name\n * - 7+: Avatar + name + role\n */\nexport function TeamAvatar({\n letter,\n name,\n role,\n imageUrl,\n background = \"linear-gradient(135deg, #667eea 0%, #764ba2 100%)\",\n className = \"\",\n}: TeamAvatarProps) {\n const { noise } = useNoise();\n const { size } = useSize();\n const { mounted: showAvatar } = useDeferredUnmount(noise >= NOISE_AVATAR);\n const { mounted: showName, visible: nameVisible } = useDeferredUnmount(\n noise >= NOISE_NAME && Boolean(name)\n );\n const { mounted: showRole, visible: roleVisible } = useDeferredUnmount(\n noise >= NOISE_ROLE && Boolean(role)\n );\n\n const avatarPx = getAvatarSize(size);\n const letterPx = getFontSize(\"xs\", size);\n const namePx = getFontSize(\"s\", size);\n const rolePx = getFontSize(\"xs\", size);\n\n if (!showAvatar) {\n return (\n <div\n className={`ln-avatar ln-avatar--hidden ${className}`.trim()}\n style={{\n width: avatarPx,\n height: avatarPx,\n borderRadius: \"50%\",\n border: \"2px dashed var(--border, #e5e5e5)\",\n }}\n >\n —\n </div>\n );\n }\n\n return (\n <div className={`ln-avatar ${className}`.trim()}>\n <div\n className=\"ln-avatar__circle\"\n style={{\n width: avatarPx,\n height: avatarPx,\n fontSize: letterPx,\n background: imageUrl ? undefined : background,\n backgroundImage: imageUrl ? `url(${imageUrl})` : undefined,\n backgroundSize: imageUrl ? \"cover\" : undefined,\n }}\n >\n {!imageUrl && letter.slice(0, 1).toUpperCase()}\n </div>\n {(showName || showRole) && (\n <div className=\"ln-avatar__text\">\n {showName && name && (\n <div\n className=\"ln-avatar__name\"\n style={{\n fontSize: namePx,\n opacity: nameVisible ? 1 : 0,\n transition: FW_TRANSITION_OPACITY,\n }}\n >\n {name}\n </div>\n )}\n {showRole && role && (\n <div\n className=\"ln-avatar__role\"\n style={{\n fontSize: rolePx,\n opacity: roleVisible ? 1 : 0,\n transition: FW_TRANSITION_OPACITY,\n }}\n >\n {role}\n </div>\n )}\n </div>\n )}\n </div>\n );\n}\n"]}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Team Avatar widget styles.
|
|
3
|
+
* Imported via framework.css.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
.ln-avatar {
|
|
7
|
+
display: flex;
|
|
8
|
+
align-items: center;
|
|
9
|
+
gap: var(--fw-space-8);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.ln-avatar__circle {
|
|
13
|
+
border-radius: 50%;
|
|
14
|
+
display: flex;
|
|
15
|
+
align-items: center;
|
|
16
|
+
justify-content: center;
|
|
17
|
+
line-height: var(--fw-line-single);
|
|
18
|
+
font-weight: var(--fw-weight-highlight);
|
|
19
|
+
color: #fff;
|
|
20
|
+
flex-shrink: 0;
|
|
21
|
+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
22
|
+
transition: var(--fw-transition-size);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.ln-avatar__text {
|
|
26
|
+
display: flex;
|
|
27
|
+
flex-direction: column;
|
|
28
|
+
gap: var(--fw-space-2);
|
|
29
|
+
min-width: 0;
|
|
30
|
+
overflow: hidden;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.ln-avatar__name {
|
|
34
|
+
line-height: var(--fw-line-single);
|
|
35
|
+
font-weight: var(--fw-weight-highlight);
|
|
36
|
+
color: var(--text, #111);
|
|
37
|
+
white-space: nowrap;
|
|
38
|
+
text-overflow: ellipsis;
|
|
39
|
+
overflow: hidden;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.ln-avatar__role {
|
|
43
|
+
line-height: var(--fw-line-single);
|
|
44
|
+
font-weight: var(--fw-weight-tertiary);
|
|
45
|
+
color: var(--text-tertiary, #999);
|
|
46
|
+
white-space: nowrap;
|
|
47
|
+
text-overflow: ellipsis;
|
|
48
|
+
overflow: hidden;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.ln-avatar--hidden {
|
|
52
|
+
display: flex;
|
|
53
|
+
align-items: center;
|
|
54
|
+
justify-content: center;
|
|
55
|
+
color: var(--text-tertiary, #999);
|
|
56
|
+
font-size: var(--fw-font-xs);
|
|
57
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Liquid Framework — Element size scale.
|
|
3
|
+
* Use for avatars, icons, cards, modals — width/height/min-width/min-height.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
:root {
|
|
7
|
+
/* Element sizes (px): 24 … 256, step 8 */
|
|
8
|
+
--fw-size-24: 24px;
|
|
9
|
+
--fw-size-32: 32px;
|
|
10
|
+
--fw-size-40: 40px;
|
|
11
|
+
--fw-size-48: 48px;
|
|
12
|
+
--fw-size-56: 56px;
|
|
13
|
+
--fw-size-64: 64px;
|
|
14
|
+
--fw-size-72: 72px;
|
|
15
|
+
--fw-size-80: 80px;
|
|
16
|
+
--fw-size-88: 88px;
|
|
17
|
+
--fw-size-96: 96px;
|
|
18
|
+
--fw-size-104: 104px;
|
|
19
|
+
--fw-size-112: 112px;
|
|
20
|
+
--fw-size-120: 120px;
|
|
21
|
+
--fw-size-128: 128px;
|
|
22
|
+
--fw-size-136: 136px;
|
|
23
|
+
--fw-size-144: 144px;
|
|
24
|
+
--fw-size-152: 152px;
|
|
25
|
+
--fw-size-160: 160px;
|
|
26
|
+
--fw-size-168: 168px;
|
|
27
|
+
--fw-size-176: 176px;
|
|
28
|
+
--fw-size-184: 184px;
|
|
29
|
+
--fw-size-192: 192px;
|
|
30
|
+
--fw-size-200: 200px;
|
|
31
|
+
--fw-size-208: 208px;
|
|
32
|
+
--fw-size-216: 216px;
|
|
33
|
+
--fw-size-224: 224px;
|
|
34
|
+
--fw-size-232: 232px;
|
|
35
|
+
--fw-size-240: 240px;
|
|
36
|
+
--fw-size-248: 248px;
|
|
37
|
+
--fw-size-256: 256px;
|
|
38
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Liquid Framework — Global spacing scale.
|
|
3
|
+
* Use for margin, padding, gap, and layout indents.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
:root {
|
|
7
|
+
/* Spacing scale (px): 0, 2, 4, 8 … 96 */
|
|
8
|
+
--fw-space-0: 0;
|
|
9
|
+
--fw-space-2: 2px;
|
|
10
|
+
--fw-space-4: 4px;
|
|
11
|
+
--fw-space-8: 8px;
|
|
12
|
+
--fw-space-12: 12px;
|
|
13
|
+
--fw-space-16: 16px;
|
|
14
|
+
--fw-space-20: 20px;
|
|
15
|
+
--fw-space-24: 24px;
|
|
16
|
+
--fw-space-28: 28px;
|
|
17
|
+
--fw-space-32: 32px;
|
|
18
|
+
--fw-space-36: 36px;
|
|
19
|
+
--fw-space-40: 40px;
|
|
20
|
+
--fw-space-44: 44px;
|
|
21
|
+
--fw-space-48: 48px;
|
|
22
|
+
--fw-space-52: 52px;
|
|
23
|
+
--fw-space-56: 56px;
|
|
24
|
+
--fw-space-60: 60px;
|
|
25
|
+
--fw-space-64: 64px;
|
|
26
|
+
--fw-space-68: 68px;
|
|
27
|
+
--fw-space-72: 72px;
|
|
28
|
+
--fw-space-76: 76px;
|
|
29
|
+
--fw-space-80: 80px;
|
|
30
|
+
--fw-space-84: 84px;
|
|
31
|
+
--fw-space-88: 88px;
|
|
32
|
+
--fw-space-92: 92px;
|
|
33
|
+
--fw-space-96: 96px;
|
|
34
|
+
}
|
|
@@ -25,4 +25,7 @@
|
|
|
25
25
|
--fw-transition-size: width var(--fw-duration-normal) var(--fw-ease),
|
|
26
26
|
height var(--fw-duration-normal) var(--fw-ease),
|
|
27
27
|
font-size var(--fw-duration-normal) var(--fw-ease);
|
|
28
|
+
--fw-transition-opacity: opacity var(--fw-duration-normal) var(--fw-ease);
|
|
29
|
+
--fw-transition-opacity-font: opacity var(--fw-duration-normal) var(--fw-ease),
|
|
30
|
+
font-size var(--fw-duration-normal) var(--fw-ease);
|
|
28
31
|
}
|
|
@@ -23,4 +23,21 @@
|
|
|
23
23
|
--fw-font-xl: 18px;
|
|
24
24
|
|
|
25
25
|
--fw-avatar-size: 28px;
|
|
26
|
+
|
|
27
|
+
/* Line height — single-line (compact) vs multi-line. */
|
|
28
|
+
--fw-line-single: 1;
|
|
29
|
+
|
|
30
|
+
/* Typography emphasis levels — tertiary (light) to title (bold). */
|
|
31
|
+
--fw-weight-tertiary: 300;
|
|
32
|
+
--fw-weight-secondary: 400;
|
|
33
|
+
--fw-weight-main: 500;
|
|
34
|
+
--fw-weight-highlight: 600;
|
|
35
|
+
--fw-weight-title: 700;
|
|
26
36
|
}
|
|
37
|
+
|
|
38
|
+
/* Emphasis utility classes */
|
|
39
|
+
.fw-weight-tertiary { font-weight: var(--fw-weight-tertiary); }
|
|
40
|
+
.fw-weight-secondary { font-weight: var(--fw-weight-secondary); }
|
|
41
|
+
.fw-weight-main { font-weight: var(--fw-weight-main); }
|
|
42
|
+
.fw-weight-highlight { font-weight: var(--fw-weight-highlight); }
|
|
43
|
+
.fw-weight-title { font-weight: var(--fw-weight-title); }
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@liquid-noise/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.44",
|
|
4
4
|
"description": "Liquid Design Framework — noise and size controls for adaptive UI",
|
|
5
|
+
"homepage": "https://framework.plate.ninja",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"main": "./dist/index.js",
|
|
7
8
|
"module": "./dist/index.js",
|
|
@@ -12,13 +13,23 @@
|
|
|
12
13
|
"import": "./dist/index.js",
|
|
13
14
|
"default": "./dist/index.js"
|
|
14
15
|
},
|
|
16
|
+
"./styles/framework.css": "./dist/styles/framework.css",
|
|
15
17
|
"./styles/*": "./dist/styles/*"
|
|
16
18
|
},
|
|
17
19
|
"files": [
|
|
18
20
|
"dist",
|
|
21
|
+
"README.md",
|
|
19
22
|
"MANIFEST.md",
|
|
20
23
|
"CONCEPT.md"
|
|
21
24
|
],
|
|
25
|
+
"keywords": [
|
|
26
|
+
"react",
|
|
27
|
+
"design-system",
|
|
28
|
+
"ui",
|
|
29
|
+
"adaptive",
|
|
30
|
+
"noise",
|
|
31
|
+
"liquid-design"
|
|
32
|
+
],
|
|
22
33
|
"publishConfig": {
|
|
23
34
|
"access": "public"
|
|
24
35
|
},
|
|
@@ -27,10 +38,13 @@
|
|
|
27
38
|
},
|
|
28
39
|
"scripts": {
|
|
29
40
|
"build": "tsup",
|
|
30
|
-
"
|
|
41
|
+
"build:showcase": "npm run build && cd showcase && npm install && npm run build",
|
|
42
|
+
"prepublishOnly": "npm run build",
|
|
43
|
+
"prepare": "husky"
|
|
31
44
|
},
|
|
32
45
|
"devDependencies": {
|
|
33
46
|
"@types/react": "^19.0.0",
|
|
47
|
+
"husky": "^9.1.7",
|
|
34
48
|
"tsup": "^8.3.5",
|
|
35
49
|
"typescript": "~5.6.2"
|
|
36
50
|
}
|