@junoput01/junoui 0.7.0 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +139 -0
- package/dist/android/dimens.xml +2 -0
- package/dist/classes.json +175 -1
- package/dist/css/juno-tokens.css +10 -0
- package/dist/css/juno.css +861 -39
- package/dist/flutter/juno_tokens.dart +10 -0
- package/dist/icons/inline.js +1 -1
- package/dist/icons/juno-icons.svg +14 -0
- package/dist/ios/JunoTokens.swift +10 -0
- package/dist/js/tokens.js +16 -0
- package/dist/json/tokens.json +51 -0
- package/dist/rust/juno_tokens.rs +383 -0
- package/dist/scss/_juno-tokens.scss +10 -0
- package/docs/components/canvas-ink.md +71 -0
- package/docs/components/gizmo.md +114 -0
- package/docs/components/swatch.md +95 -0
- package/docs/components/tree.md +112 -0
- package/docs/conformance-kit.md +26 -14
- package/docs/icon-subsetting.md +16 -1
- package/docs/native.md +38 -1
- package/docs/tokens-reference.md +15 -0
- package/package.json +4 -1
- package/src/css/base.css +10 -39
- package/src/css/components/canvas-ink.css +97 -0
- package/src/css/components/gizmo.css +238 -0
- package/src/css/components/swatch.css +187 -0
- package/src/css/components/tree.css +259 -0
- package/src/css/touch-surfaces.mjs +95 -0
- package/src/icons/compass.svg +1 -0
- package/src/icons/crosshair-simple.svg +1 -0
- package/src/icons/crosshair.svg +1 -0
- package/src/icons/cube.svg +1 -0
- package/src/icons/globe.svg +1 -0
- package/src/icons/map-pin.svg +1 -0
- package/src/icons/map-trifold.svg +1 -0
- package/src/icons/mountains.svg +1 -0
- package/src/icons/path.svg +1 -0
- package/src/icons/polygon.svg +1 -0
- package/src/icons/ruler.svg +1 -0
- package/src/icons/scissors.svg +1 -0
- package/src/icons/selection.svg +1 -0
- package/src/icons/stack.svg +1 -0
- package/tools/gizmo.mjs +144 -0
- package/tools/tree.mjs +178 -0
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
/* ════════════════════════════════════════════════════════════════════
|
|
2
|
+
* Component — Viewport orientation gizmo (compass ring + pitch arc)
|
|
3
|
+
* The orientation widget any 3D or map viewport ships: a ring showing a
|
|
4
|
+
* heading with clickable snap targets, a secondary arc for a second
|
|
5
|
+
* angle (pitch / tilt / elevation) inside a clamped range, and a centre
|
|
6
|
+
* target that resets the view.
|
|
7
|
+
*
|
|
8
|
+
* A RING, NOT A CUBE, and that is a design decision rather than a style
|
|
9
|
+
* one. An Autodesk-style ViewCube is the wrong shape for anything with a
|
|
10
|
+
* privileged up-vector — a map, a terrain, a site plan — because there is
|
|
11
|
+
* no meaningful front, right or bottom face to click. A ring degrades to
|
|
12
|
+
* the up-vector case and generalises to the free-orbit one; a cube does
|
|
13
|
+
* not go the other way.
|
|
14
|
+
*
|
|
15
|
+
* THE APP OWNS THE CAMERA. It writes two angles in as custom properties
|
|
16
|
+
* and junoui rotates the marks; nothing here stores or changes state.
|
|
17
|
+
* element.style.setProperty('--juno-gizmo-heading', `${yaw}deg`);
|
|
18
|
+
* element.style.setProperty('--juno-gizmo-pitch', `${pitch}deg`);
|
|
19
|
+
*
|
|
20
|
+
* Usage — see docs/components/gizmo.md for the full a11y contract, which
|
|
21
|
+
* is the half apps get wrong and the reason this is upstream:
|
|
22
|
+
* <div class="juno-gizmo" role="group" aria-label="View orientation">
|
|
23
|
+
* <p class="juno-gizmo__readout" aria-live="polite">Facing north, 0 degrees.</p>
|
|
24
|
+
* <div class="juno-gizmo__ring">
|
|
25
|
+
* <span class="juno-gizmo__needle" aria-hidden="true"></span>
|
|
26
|
+
* <button class="juno-gizmo__mark" style="--juno-gizmo-at:0deg"
|
|
27
|
+
* aria-label="Face north" aria-current="true">N</button>
|
|
28
|
+
* …seven more…
|
|
29
|
+
* <button class="juno-gizmo__center" aria-label="Reset view">⌖</button>
|
|
30
|
+
* </div>
|
|
31
|
+
* <div class="juno-gizmo__arc">
|
|
32
|
+
* <span class="juno-gizmo__arc-hand" aria-hidden="true"></span>
|
|
33
|
+
* </div>
|
|
34
|
+
* </div>
|
|
35
|
+
* ════════════════════════════════════════════════════════════════════ */
|
|
36
|
+
|
|
37
|
+
.juno-gizmo {
|
|
38
|
+
--juno-role: var(--juno-active);
|
|
39
|
+
|
|
40
|
+
/* The angles the app writes. Defaults are a level view facing north, so a
|
|
41
|
+
gizmo that is mounted before the camera reports is not a blank circle. */
|
|
42
|
+
--juno-gizmo-heading: 0deg;
|
|
43
|
+
--juno-gizmo-pitch: 0deg;
|
|
44
|
+
|
|
45
|
+
/* MINIMUM DIAMETER, DERIVED — and derived from the CHORD, which is the
|
|
46
|
+
correction that matters. N marks sit evenly around the rim, so the
|
|
47
|
+
straight-line distance between two adjacent centres is d * sin(pi / N).
|
|
48
|
+
For their targets not to overlap THAT must be at least one tap target:
|
|
49
|
+
|
|
50
|
+
d >= tap / sin(pi / N)
|
|
51
|
+
|
|
52
|
+
...and the marks sit INSIDE the rim, so their centres are on a circle of
|
|
53
|
+
radius d/2 - tap/2, not d/2. Substituting that and solving:
|
|
54
|
+
|
|
55
|
+
d >= tap * (1 / sin(pi / N) + 1)
|
|
56
|
+
|
|
57
|
+
THIS DERIVATION WAS WRONG TWICE, and the browser guard caught both. First
|
|
58
|
+
it sized off the ARC between centres (N * tap / pi) — an arc is longer
|
|
59
|
+
than its chord, so at N=8 and a 44px target that gave 112.05px whose chord
|
|
60
|
+
is 42.9px, a 1.1px overlap on every neighbouring pair. Corrected to the
|
|
61
|
+
chord, it still measured 27.16px between centres, because the inset had
|
|
62
|
+
been left out of the radius. Neither error is visible in the source; both
|
|
63
|
+
are one measurement away.
|
|
64
|
+
|
|
65
|
+
The tap floor MOVES, 24px to 44px on a coarse pointer, which is precisely
|
|
66
|
+
when the ring has to grow; a hard-coded diameter ships eight overlapping
|
|
67
|
+
targets to a phone. The 96px is an aesthetic floor, not a derived one —
|
|
68
|
+
a 63px ring is legible-but-cramped on desktop — and max() keeps whichever
|
|
69
|
+
is larger. */
|
|
70
|
+
--juno-gizmo-marks: 8;
|
|
71
|
+
--juno-gizmo-size: max(
|
|
72
|
+
96px,
|
|
73
|
+
calc(var(--juno-size-tap-min) * (1 / sin(180deg / var(--juno-gizmo-marks)) + 1))
|
|
74
|
+
);
|
|
75
|
+
|
|
76
|
+
display: inline-flex;
|
|
77
|
+
flex-direction: column;
|
|
78
|
+
align-items: center;
|
|
79
|
+
gap: var(--juno-space-8);
|
|
80
|
+
font-family: var(--juno-font-family-sans);
|
|
81
|
+
color: var(--juno-data);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
/* The spoken state. Visible by default — a bearing is useful to everyone —
|
|
85
|
+
but it is the live region either way, because a rotating needle announces
|
|
86
|
+
nothing. Consumers that want it invisible use .juno-sr-only rather than
|
|
87
|
+
display:none, which would take it out of the accessibility tree too. */
|
|
88
|
+
.juno-gizmo__readout {
|
|
89
|
+
margin: 0;
|
|
90
|
+
font-size: var(--juno-font-size-11);
|
|
91
|
+
font-variant-numeric: tabular-nums;
|
|
92
|
+
letter-spacing: var(--juno-font-tracking-label);
|
|
93
|
+
color: var(--juno-label);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.juno-gizmo__ring {
|
|
97
|
+
position: relative;
|
|
98
|
+
inline-size: var(--juno-gizmo-size);
|
|
99
|
+
block-size: var(--juno-gizmo-size);
|
|
100
|
+
border-radius: 50%;
|
|
101
|
+
border: var(--juno-border-width-1) solid var(--juno-border);
|
|
102
|
+
background: color-mix(in srgb, var(--juno-s1) 88%, transparent);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
/* The needle points where the camera looks. Rotated by the app's angle, and
|
|
106
|
+
the transition runs on the motion scale so prefers-reduced-motion collapses
|
|
107
|
+
it without this file needing its own media query (base.css owns that). */
|
|
108
|
+
.juno-gizmo__needle {
|
|
109
|
+
position: absolute;
|
|
110
|
+
inset: 0;
|
|
111
|
+
display: grid;
|
|
112
|
+
place-items: start center;
|
|
113
|
+
pointer-events: none;
|
|
114
|
+
rotate: var(--juno-gizmo-heading);
|
|
115
|
+
transition: rotate calc(var(--juno-motion-duration-base) * var(--juno-motion-scale))
|
|
116
|
+
var(--juno-motion-ease-standard);
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.juno-gizmo__needle::before {
|
|
120
|
+
content: '';
|
|
121
|
+
inline-size: var(--juno-border-width-2);
|
|
122
|
+
block-size: 38%;
|
|
123
|
+
margin-block-start: var(--juno-space-4);
|
|
124
|
+
background: linear-gradient(var(--juno-role), transparent);
|
|
125
|
+
border-radius: var(--juno-border-width-2);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
/* ── snap targets ──────────────────────────────────────────────────────
|
|
129
|
+
REAL BUTTONS. Not a canvas hit test, not a div with a click handler: a
|
|
130
|
+
button is focusable, activates on Enter and Space, is announced as a
|
|
131
|
+
control, and works with a screen reader's forms mode. That is most of
|
|
132
|
+
this component's value and the reason it is upstream.
|
|
133
|
+
|
|
134
|
+
Positioned by rotating the mark out to the rim and counter-rotating the
|
|
135
|
+
glyph, so the letter stays upright at every angle. --juno-gizmo-at is the
|
|
136
|
+
mark's own bearing, set per element. */
|
|
137
|
+
.juno-gizmo__mark {
|
|
138
|
+
position: absolute;
|
|
139
|
+
inset-block-start: 50%;
|
|
140
|
+
inset-inline-start: 50%;
|
|
141
|
+
inline-size: var(--juno-size-tap-min);
|
|
142
|
+
block-size: var(--juno-size-tap-min);
|
|
143
|
+
margin: calc(var(--juno-size-tap-min) / -2);
|
|
144
|
+
display: grid;
|
|
145
|
+
place-items: center;
|
|
146
|
+
padding: 0;
|
|
147
|
+
border: none;
|
|
148
|
+
border-radius: 50%;
|
|
149
|
+
background: transparent;
|
|
150
|
+
color: var(--juno-label);
|
|
151
|
+
font: inherit;
|
|
152
|
+
font-size: var(--juno-font-size-11);
|
|
153
|
+
font-weight: var(--juno-font-weight-bold);
|
|
154
|
+
cursor: pointer;
|
|
155
|
+
transform: rotate(var(--juno-gizmo-at, 0deg))
|
|
156
|
+
translate(0, calc(var(--juno-gizmo-size) / -2 + var(--juno-size-tap-min) / 2))
|
|
157
|
+
rotate(calc(-1 * var(--juno-gizmo-at, 0deg)));
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.juno-gizmo__mark:hover {
|
|
161
|
+
color: var(--juno-data);
|
|
162
|
+
background: var(--juno-s2);
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
/* The mark the camera is currently nearest. aria-current, not a class: the
|
|
166
|
+
app already has to say it for the screen reader, and a class would be a
|
|
167
|
+
second copy of the same fact. */
|
|
168
|
+
.juno-gizmo__mark[aria-current='true'] {
|
|
169
|
+
color: var(--juno-role);
|
|
170
|
+
background: var(--juno-s3);
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.juno-gizmo__mark:focus-visible,
|
|
174
|
+
.juno-gizmo__center:focus-visible {
|
|
175
|
+
outline: var(--juno-border-width-2) solid var(--juno-active);
|
|
176
|
+
outline-offset: var(--juno-space-2);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
/* Centre target — reset to the default view. */
|
|
180
|
+
.juno-gizmo__center {
|
|
181
|
+
position: absolute;
|
|
182
|
+
inset-block-start: 50%;
|
|
183
|
+
inset-inline-start: 50%;
|
|
184
|
+
inline-size: var(--juno-size-tap-min);
|
|
185
|
+
block-size: var(--juno-size-tap-min);
|
|
186
|
+
margin: calc(var(--juno-size-tap-min) / -2);
|
|
187
|
+
display: grid;
|
|
188
|
+
place-items: center;
|
|
189
|
+
padding: 0;
|
|
190
|
+
border: var(--juno-border-width-1) solid var(--juno-border);
|
|
191
|
+
border-radius: 50%;
|
|
192
|
+
background: var(--juno-s1);
|
|
193
|
+
color: var(--juno-label);
|
|
194
|
+
font: inherit;
|
|
195
|
+
cursor: pointer;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.juno-gizmo__center:hover {
|
|
199
|
+
color: var(--juno-role);
|
|
200
|
+
border-color: var(--juno-role);
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
/* ── pitch arc ─────────────────────────────────────────────────────────
|
|
204
|
+
The second angle, inside a CLAMPED range — a camera that can tilt 0..85°
|
|
205
|
+
should not show a hand that can point anywhere, or the widget lies about
|
|
206
|
+
what the app will accept. The clamp lives here so every consumer gets it
|
|
207
|
+
without re-deriving it from its own camera limits. */
|
|
208
|
+
.juno-gizmo__arc {
|
|
209
|
+
--juno-gizmo-pitch-min: 0deg;
|
|
210
|
+
--juno-gizmo-pitch-max: 85deg;
|
|
211
|
+
|
|
212
|
+
position: relative;
|
|
213
|
+
inline-size: var(--juno-gizmo-size);
|
|
214
|
+
block-size: calc(var(--juno-gizmo-size) / 2);
|
|
215
|
+
overflow: hidden;
|
|
216
|
+
border-block-end: var(--juno-border-width-1) solid var(--juno-border);
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.juno-gizmo__arc-hand {
|
|
220
|
+
position: absolute;
|
|
221
|
+
inset-block-end: 0;
|
|
222
|
+
inset-inline-start: 50%;
|
|
223
|
+
inline-size: var(--juno-border-width-2);
|
|
224
|
+
block-size: 80%;
|
|
225
|
+
background: var(--juno-role);
|
|
226
|
+
transform-origin: bottom center;
|
|
227
|
+
rotate: clamp(var(--juno-gizmo-pitch-min), var(--juno-gizmo-pitch), var(--juno-gizmo-pitch-max));
|
|
228
|
+
transition: rotate calc(var(--juno-motion-duration-base) * var(--juno-motion-scale))
|
|
229
|
+
var(--juno-motion-ease-standard);
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
/* ── touch ─────────────────────────────────────────────────────────────
|
|
233
|
+
Nothing to grow here, and that is the point: the marks are sized in
|
|
234
|
+
--juno-size-tap-min, which base.css promotes to the comfortable target on a
|
|
235
|
+
coarse pointer, and --juno-gizmo-size is derived from it — so the whole ring
|
|
236
|
+
grows and the marks stay non-overlapping by construction. A gizmo that keeps
|
|
237
|
+
its desktop diameter on a phone has eight overlapping targets, which is the
|
|
238
|
+
defect this derivation exists to make impossible. */
|
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
/* ════════════════════════════════════════════════════════════════════
|
|
2
|
+
* Component — Colour swatch + palette
|
|
3
|
+
* Showing a user-chosen colour, and letting someone pick one. Diagrams,
|
|
4
|
+
* calendars, tag and label systems, chart series colours, annotation
|
|
5
|
+
* tools, theming UIs, kanban boards.
|
|
6
|
+
*
|
|
7
|
+
* THE HARD PART IS NOT THE SQUARE. A swatch shows an ARBITRARY colour, so
|
|
8
|
+
* every piece of chrome on it — its border, its focus ring, its checked
|
|
9
|
+
* indicator — has to stay visible against a colour junoui has never seen.
|
|
10
|
+
* A single hairline fails at one end of the range: a dark border vanishes
|
|
11
|
+
* on near-black, a light one vanishes on near-white, and the swatch that
|
|
12
|
+
* loses its border is the one that has merged with the panel behind it.
|
|
13
|
+
*
|
|
14
|
+
* The answer is a PAIR of hairlines drawn as an inset and an outset ring.
|
|
15
|
+
* They do NOT do the same job, which is the part worth reading twice: the
|
|
16
|
+
* inset one composites over the SWATCH and edges it against its own fill,
|
|
17
|
+
* the outset one composites over the PANEL and separates it from the
|
|
18
|
+
* surface. With the swatch's own contrast against that panel, the boundary
|
|
19
|
+
* has three ways to be visible and needs only one of them.
|
|
20
|
+
*
|
|
21
|
+
* Guarded by sweeping the swatch colour against both panels rather than by
|
|
22
|
+
* asserting a border value (test/swatch.test.mjs).
|
|
23
|
+
*
|
|
24
|
+
* COLOUR IS NEVER THE ONLY SIGNAL. junoui's own standing rule, and a bare
|
|
25
|
+
* swatch is exactly what violates it: every swatch carries an accessible
|
|
26
|
+
* NAME, and the checked state carries a GLYPH, not just a hue.
|
|
27
|
+
*
|
|
28
|
+
* The app owns the colour list and which one is chosen.
|
|
29
|
+
* Usage:
|
|
30
|
+
* <button class="juno-swatch juno-swatch--button" style="--juno-swatch-color:#C41E3A"
|
|
31
|
+
* aria-label="Crimson"></button>
|
|
32
|
+
*
|
|
33
|
+
* <div class="juno-popover" popover id="palette">
|
|
34
|
+
* <div class="juno-palette" role="listbox" aria-label="Annotation colour">
|
|
35
|
+
* <button class="juno-palette__option" role="option" aria-selected="true"
|
|
36
|
+
* style="--juno-swatch-color:#C41E3A" aria-label="Crimson">
|
|
37
|
+
* <svg class="juno-icon juno-palette__check" aria-hidden="true">
|
|
38
|
+
* <use href="…#juno-i-check" /></svg>
|
|
39
|
+
* </button>
|
|
40
|
+
* </div>
|
|
41
|
+
* </div>
|
|
42
|
+
* ════════════════════════════════════════════════════════════════════ */
|
|
43
|
+
|
|
44
|
+
.juno-swatch {
|
|
45
|
+
/* The colour the app is showing. Named rather than an inline `background`
|
|
46
|
+
so the rings below can sit on top of it without the caller reassembling
|
|
47
|
+
the whole box-shadow stack. */
|
|
48
|
+
--juno-swatch-color: var(--juno-muted);
|
|
49
|
+
|
|
50
|
+
/* Sized off the control scale, so a swatch in a form row matches the
|
|
51
|
+
controls beside it and grows with them on a coarse pointer. */
|
|
52
|
+
--juno-swatch-size: var(--juno-size-tap-min);
|
|
53
|
+
|
|
54
|
+
display: inline-block;
|
|
55
|
+
inline-size: var(--juno-swatch-size);
|
|
56
|
+
block-size: var(--juno-swatch-size);
|
|
57
|
+
flex-shrink: 0;
|
|
58
|
+
border: none;
|
|
59
|
+
border-radius: var(--juno-radius-3);
|
|
60
|
+
background: var(--juno-swatch-color);
|
|
61
|
+
|
|
62
|
+
/* THE TWO-TONE RING, and the alphas are measured rather than chosen.
|
|
63
|
+
The inset ring composites over the SWATCH and gives it an edge against
|
|
64
|
+
its own fill; the outset ring composites over the PANEL — an outset
|
|
65
|
+
box-shadow is outside the element — and separates the swatch from the
|
|
66
|
+
surface behind it. Between them, plus the swatch's own contrast with the
|
|
67
|
+
panel, the boundary is discernible whatever colour the app supplies.
|
|
68
|
+
|
|
69
|
+
At 0.45 / 0.35 that property FAILS: on a light panel a mid-grey swatch
|
|
70
|
+
(around #919191) leaves the best of the three at 2.57:1, under the 3:1
|
|
71
|
+
non-text floor. 0.65 on both takes the worst case to 3.39:1. The sweep in
|
|
72
|
+
test/swatch.test.mjs is what measured it — the first version of that test
|
|
73
|
+
asked the wrong question (both rings against the swatch) and reported 145
|
|
74
|
+
failures; the right question is whether the BOUNDARY is visible, and it
|
|
75
|
+
has three ways to be.
|
|
76
|
+
|
|
77
|
+
Deliberately not `border`, which would eat into the colour area and change
|
|
78
|
+
the swatch's size with its style. */
|
|
79
|
+
box-shadow:
|
|
80
|
+
inset 0 0 0 var(--juno-border-width-1) rgb(0 0 0 / 0.65),
|
|
81
|
+
0 0 0 var(--juno-border-width-1) rgb(255 255 255 / 0.65);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.juno-swatch--circle {
|
|
85
|
+
border-radius: 50%;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.juno-swatch--sm {
|
|
89
|
+
--juno-swatch-size: var(--juno-space-16);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.juno-swatch--lg {
|
|
93
|
+
--juno-swatch-size: var(--juno-size-tap-comfortable);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
/* A swatch used as a trigger — the thing you click to open the palette. */
|
|
97
|
+
.juno-swatch--button {
|
|
98
|
+
padding: 0;
|
|
99
|
+
cursor: pointer;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
/* FOCUS RINGS ON AN ARBITRARY HUE. The ring is drawn OUTSIDE the swatch,
|
|
103
|
+
with an offset, so its contrast is against the panel — a known surface —
|
|
104
|
+
rather than against a colour junoui cannot predict. A ring drawn on the
|
|
105
|
+
swatch itself has the same unsolvable problem as the border, and "use a
|
|
106
|
+
thicker ring" does not fix a hue collision. */
|
|
107
|
+
.juno-swatch--button:focus-visible,
|
|
108
|
+
.juno-palette__option:focus-visible {
|
|
109
|
+
outline: var(--juno-border-width-2) solid var(--juno-active);
|
|
110
|
+
outline-offset: var(--juno-space-4);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
/* ── palette ───────────────────────────────────────────────────────────
|
|
114
|
+
A grid of swatches inside a .juno-popover. junoui ships the grid and the
|
|
115
|
+
states; the app owns the list and which one is chosen. */
|
|
116
|
+
.juno-palette {
|
|
117
|
+
display: grid;
|
|
118
|
+
grid-template-columns: repeat(var(--juno-palette-columns, 6), auto);
|
|
119
|
+
gap: var(--juno-space-8);
|
|
120
|
+
padding: var(--juno-space-4);
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.juno-palette__option {
|
|
124
|
+
--juno-swatch-color: var(--juno-muted);
|
|
125
|
+
--juno-swatch-size: var(--juno-size-tap-min);
|
|
126
|
+
|
|
127
|
+
position: relative;
|
|
128
|
+
inline-size: var(--juno-swatch-size);
|
|
129
|
+
block-size: var(--juno-swatch-size);
|
|
130
|
+
display: grid;
|
|
131
|
+
place-items: center;
|
|
132
|
+
padding: 0;
|
|
133
|
+
border: none;
|
|
134
|
+
border-radius: var(--juno-radius-3);
|
|
135
|
+
background: var(--juno-swatch-color);
|
|
136
|
+
cursor: pointer;
|
|
137
|
+
box-shadow:
|
|
138
|
+
inset 0 0 0 var(--juno-border-width-1) rgb(0 0 0 / 0.65),
|
|
139
|
+
0 0 0 var(--juno-border-width-1) rgb(255 255 255 / 0.65);
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
/* THE CHECKED STATE IS A GLYPH, NOT A HUE. Colour is never the only signal,
|
|
143
|
+
and "the chosen one is the one that looks slightly different" is exactly
|
|
144
|
+
the failure that rule exists to prevent — it is invisible to anyone who
|
|
145
|
+
cannot separate the two hues, and to anyone looking at a screenshot.
|
|
146
|
+
|
|
147
|
+
The check itself sits on the arbitrary colour, so it gets the same
|
|
148
|
+
treatment as the swatch's own ring: a light glyph with a dark halo, which
|
|
149
|
+
is the canvas-ink pair at glyph scale. */
|
|
150
|
+
.juno-palette__check {
|
|
151
|
+
display: none;
|
|
152
|
+
color: #fff;
|
|
153
|
+
filter: drop-shadow(0 0 var(--juno-border-width-1) rgb(0 0 0 / 0.9))
|
|
154
|
+
drop-shadow(0 0 var(--juno-border-width-2) rgb(0 0 0 / 0.7));
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.juno-palette__option[aria-selected='true'] .juno-palette__check,
|
|
158
|
+
.juno-palette__option[aria-checked='true'] .juno-palette__check {
|
|
159
|
+
display: block;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
/* ...and a second, non-glyph cue for the same state, because a check inside a
|
|
163
|
+
28px square is small: the selected option also grows a ring in the active
|
|
164
|
+
role, drawn OUTSIDE the swatch where its contrast is against the panel. */
|
|
165
|
+
.juno-palette__option[aria-selected='true'],
|
|
166
|
+
.juno-palette__option[aria-checked='true'] {
|
|
167
|
+
box-shadow:
|
|
168
|
+
inset 0 0 0 var(--juno-border-width-1) rgb(0 0 0 / 0.65),
|
|
169
|
+
0 0 0 var(--juno-border-width-1) rgb(255 255 255 / 0.65),
|
|
170
|
+
0 0 0 calc(var(--juno-border-width-1) + var(--juno-border-width-2)) var(--juno-active);
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
/* A swatch showing "no colour" — transparent, unset, inherit. Without this a
|
|
174
|
+
consumer paints it in a mid grey and the user cannot tell "grey" from
|
|
175
|
+
"none", which is a different thing to know. */
|
|
176
|
+
.juno-swatch--none,
|
|
177
|
+
.juno-palette__option--none {
|
|
178
|
+
background:
|
|
179
|
+
linear-gradient(
|
|
180
|
+
to bottom right,
|
|
181
|
+
transparent calc(50% - var(--juno-border-width-1)),
|
|
182
|
+
var(--juno-warning) calc(50% - var(--juno-border-width-1)),
|
|
183
|
+
var(--juno-warning) calc(50% + var(--juno-border-width-1)),
|
|
184
|
+
transparent calc(50% + var(--juno-border-width-1))
|
|
185
|
+
)
|
|
186
|
+
var(--juno-s1);
|
|
187
|
+
}
|
|
@@ -0,0 +1,259 @@
|
|
|
1
|
+
/* ════════════════════════════════════════════════════════════════════
|
|
2
|
+
* Component — Tree / outliner (nested rows, disclosure, selection)
|
|
3
|
+
* Layer stacks, file browsers, settings trees, org charts, comment
|
|
4
|
+
* threads, nested navigation. Where .juno-list is flat and
|
|
5
|
+
* .juno-accordion is single-level, this nests to arbitrary depth and
|
|
6
|
+
* carries a selection.
|
|
7
|
+
*
|
|
8
|
+
* ZERO JS FOR THE VISUALS. Indentation comes from the nested `role=group`
|
|
9
|
+
* lists the ARIA pattern already requires, so depth costs no custom
|
|
10
|
+
* property and no inline style; collapse is `[aria-expanded='false']`
|
|
11
|
+
* hiding the child group. The app owns the attribute, exactly like
|
|
12
|
+
* __item's aria-pressed elsewhere in junoui.
|
|
13
|
+
*
|
|
14
|
+
* KEYBOARD IS NOT OPTIONAL and is not CSS. A tree without arrow-key
|
|
15
|
+
* traversal and a roving tabindex is a list of buttons wearing tree
|
|
16
|
+
* roles. junoui ships the contract in docs/components/tree.md and a
|
|
17
|
+
* stateless enhancer at `junoui/tree` — use one or the other, but a tree
|
|
18
|
+
* that has neither is not accessible and no stylesheet can fix it.
|
|
19
|
+
*
|
|
20
|
+
* Usage (the markup the roles require — see the doc for the full ARIA
|
|
21
|
+
* contract, which is the half apps get wrong):
|
|
22
|
+
* <ul class="juno-tree" role="tree" aria-label="Scene">
|
|
23
|
+
* <li class="juno-tree__item" role="treeitem" aria-level="1"
|
|
24
|
+
* aria-expanded="true" aria-selected="false">
|
|
25
|
+
* <div class="juno-tree__row">
|
|
26
|
+
* <button class="juno-tree__caret" tabindex="-1" aria-hidden="true"></button>
|
|
27
|
+
* <svg class="juno-icon juno-tree__icon" aria-hidden="true">…</svg>
|
|
28
|
+
* <span class="juno-tree__label">Terrain</span>
|
|
29
|
+
* <span class="juno-tree__count">12</span>
|
|
30
|
+
* <span class="juno-tree__trail">…</span>
|
|
31
|
+
* <button class="juno-tree__handle" aria-label="Reorder Terrain"></button>
|
|
32
|
+
* </div>
|
|
33
|
+
* <ul class="juno-tree__group" role="group">…</ul>
|
|
34
|
+
* </li>
|
|
35
|
+
* </ul>
|
|
36
|
+
* ════════════════════════════════════════════════════════════════════ */
|
|
37
|
+
|
|
38
|
+
.juno-tree {
|
|
39
|
+
--juno-role: var(--juno-active);
|
|
40
|
+
|
|
41
|
+
/* One indent step. Applied per nested group, so depth is structural and
|
|
42
|
+
arbitrary rather than a level number someone has to keep in sync. */
|
|
43
|
+
--juno-tree-indent: var(--juno-space-16);
|
|
44
|
+
|
|
45
|
+
margin: 0;
|
|
46
|
+
padding: 0;
|
|
47
|
+
list-style: none;
|
|
48
|
+
font-family: var(--juno-font-family-sans);
|
|
49
|
+
font-size: var(--juno-font-size-13);
|
|
50
|
+
color: var(--juno-data);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.juno-tree__group {
|
|
54
|
+
margin: 0;
|
|
55
|
+
padding: 0;
|
|
56
|
+
padding-inline-start: var(--juno-tree-indent);
|
|
57
|
+
list-style: none;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
/* Collapsed: the child group goes. `display: none` and not a height
|
|
61
|
+
animation — a tree collapses an unknown number of rows at an unknown
|
|
62
|
+
depth, so there is no end value to transition to, and interpolate-size
|
|
63
|
+
is not available everywhere junoui targets. */
|
|
64
|
+
.juno-tree__item[aria-expanded='false'] > .juno-tree__group {
|
|
65
|
+
display: none;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.juno-tree__row {
|
|
69
|
+
display: flex;
|
|
70
|
+
align-items: center;
|
|
71
|
+
gap: var(--juno-space-8);
|
|
72
|
+
inline-size: 100%;
|
|
73
|
+
min-block-size: var(--juno-size-tap-min);
|
|
74
|
+
padding-inline: var(--juno-space-8);
|
|
75
|
+
padding-block: var(--juno-space-4);
|
|
76
|
+
border: none;
|
|
77
|
+
border-radius: var(--juno-radius-3);
|
|
78
|
+
background: transparent;
|
|
79
|
+
color: inherit;
|
|
80
|
+
font: inherit;
|
|
81
|
+
text-align: start;
|
|
82
|
+
text-decoration: none;
|
|
83
|
+
cursor: pointer;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.juno-tree__row:hover {
|
|
87
|
+
background: var(--juno-s2);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
/* SELECTION is a different fact from hover and from aria-current, and the
|
|
91
|
+
ticket is right that conflating them is the common bug: hover is where the
|
|
92
|
+
pointer is, aria-current is which page you are on, aria-selected is what
|
|
93
|
+
the next action will apply to. A layer stack has all three at once. */
|
|
94
|
+
.juno-tree__item[aria-selected='true'] > .juno-tree__row {
|
|
95
|
+
background: var(--juno-s3);
|
|
96
|
+
color: var(--juno-role);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.juno-tree__item[aria-current] > .juno-tree__row {
|
|
100
|
+
box-shadow: inset var(--juno-border-width-2) 0 0 var(--juno-role);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.juno-tree__row:focus-visible {
|
|
104
|
+
outline: var(--juno-border-width-2) solid var(--juno-active);
|
|
105
|
+
outline-offset: calc(-1 * var(--juno-border-width-2));
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
/* ── disclosure caret ──────────────────────────────────────────────────
|
|
109
|
+
aria-hidden and tabindex=-1 on purpose: the row itself is the treeitem
|
|
110
|
+
and Left/Right already collapse and expand, so a separately focusable
|
|
111
|
+
caret puts a second stop in the tab order for an action the row has. It
|
|
112
|
+
stays a real button for the pointer. */
|
|
113
|
+
.juno-tree__caret {
|
|
114
|
+
flex-shrink: 0;
|
|
115
|
+
inline-size: var(--juno-space-16);
|
|
116
|
+
block-size: var(--juno-space-16);
|
|
117
|
+
display: grid;
|
|
118
|
+
place-items: center;
|
|
119
|
+
padding: 0;
|
|
120
|
+
border: none;
|
|
121
|
+
background: transparent;
|
|
122
|
+
color: var(--juno-label);
|
|
123
|
+
cursor: pointer;
|
|
124
|
+
transition: transform var(--juno-motion-duration-quick) var(--juno-motion-ease-standard);
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.juno-tree__caret::before {
|
|
128
|
+
content: '';
|
|
129
|
+
inline-size: 0;
|
|
130
|
+
block-size: 0;
|
|
131
|
+
border-block: calc(var(--juno-space-4) + 1px) solid transparent;
|
|
132
|
+
border-inline-start: calc(var(--juno-space-4) + 2px) solid currentcolor;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.juno-tree__item[aria-expanded='true'] > .juno-tree__row > .juno-tree__caret {
|
|
136
|
+
transform: rotate(90deg);
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
/* A leaf keeps the caret's box so labels line up down the column, but paints
|
|
140
|
+
nothing — an empty gap would let sibling labels wander. */
|
|
141
|
+
.juno-tree__item:not([aria-expanded]) > .juno-tree__row > .juno-tree__caret {
|
|
142
|
+
visibility: hidden;
|
|
143
|
+
cursor: default;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.juno-tree__icon {
|
|
147
|
+
flex-shrink: 0;
|
|
148
|
+
color: var(--juno-label);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.juno-tree__label {
|
|
152
|
+
min-inline-size: 0;
|
|
153
|
+
overflow: hidden;
|
|
154
|
+
text-overflow: ellipsis;
|
|
155
|
+
white-space: nowrap;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
/* Count badge on a group row. Pushed to the trailing edge with the rest of
|
|
159
|
+
the trailing furniture. */
|
|
160
|
+
.juno-tree__count {
|
|
161
|
+
margin-inline-start: auto;
|
|
162
|
+
flex-shrink: 0;
|
|
163
|
+
font-size: var(--juno-font-size-11);
|
|
164
|
+
font-variant-numeric: tabular-nums;
|
|
165
|
+
color: var(--juno-muted);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
/* The same trailing-control slot .juno-list__row has: a switch, a menu
|
|
169
|
+
trigger, a value. Follows the count when both are present. */
|
|
170
|
+
.juno-tree__trail {
|
|
171
|
+
margin-inline-start: auto;
|
|
172
|
+
flex-shrink: 0;
|
|
173
|
+
display: inline-flex;
|
|
174
|
+
align-items: center;
|
|
175
|
+
gap: var(--juno-space-8);
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.juno-tree__count + .juno-tree__trail {
|
|
179
|
+
margin-inline-start: 0;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
/* ── reorder handle ────────────────────────────────────────────────────
|
|
183
|
+
The AFFORDANCE and its hit area; the reorder logic is the app's, which is
|
|
184
|
+
junoui's usual line. It is a real button and always visible on touch: a
|
|
185
|
+
long-press-drag is the obvious gesture and the wrong one, because a tree
|
|
186
|
+
sitting on or beside a pan/zoom surface has to let the pan win. An
|
|
187
|
+
explicit handle is the only unambiguous target — see the doc.
|
|
188
|
+
`touch-action: none` on the handle ALONE, so dragging it never scrolls
|
|
189
|
+
while the rest of the row still pans normally. */
|
|
190
|
+
.juno-tree__handle {
|
|
191
|
+
flex-shrink: 0;
|
|
192
|
+
inline-size: var(--juno-space-16);
|
|
193
|
+
block-size: var(--juno-space-16);
|
|
194
|
+
display: grid;
|
|
195
|
+
place-items: center;
|
|
196
|
+
padding: 0;
|
|
197
|
+
border: none;
|
|
198
|
+
background: transparent;
|
|
199
|
+
color: var(--juno-muted);
|
|
200
|
+
cursor: grab;
|
|
201
|
+
touch-action: none;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.juno-tree__handle:active {
|
|
205
|
+
cursor: grabbing;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.juno-tree__handle::before {
|
|
209
|
+
content: '';
|
|
210
|
+
inline-size: var(--juno-space-10);
|
|
211
|
+
block-size: var(--juno-border-width-1);
|
|
212
|
+
box-shadow:
|
|
213
|
+
0 calc(-1 * var(--juno-space-4)) 0 currentcolor,
|
|
214
|
+
0 var(--juno-space-4) 0 currentcolor;
|
|
215
|
+
background: currentcolor;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
/* The row being dragged, while the app moves it. */
|
|
219
|
+
.juno-tree__item[data-juno-dragging] > .juno-tree__row {
|
|
220
|
+
opacity: var(--juno-opacity-muted);
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
/* Drop target edge. A line rather than a filled row: the drop lands BETWEEN
|
|
224
|
+
rows, and a filled highlight says "into this one", which is a different
|
|
225
|
+
operation in a tree and the one users complain about. */
|
|
226
|
+
.juno-tree__item[data-juno-drop='before'] > .juno-tree__row {
|
|
227
|
+
box-shadow: inset 0 var(--juno-border-width-2) 0 var(--juno-active);
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.juno-tree__item[data-juno-drop='after'] > .juno-tree__row {
|
|
231
|
+
box-shadow: inset 0 calc(-1 * var(--juno-border-width-2)) 0 var(--juno-active);
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.juno-tree__item[data-juno-drop='into'] > .juno-tree__row {
|
|
235
|
+
outline: var(--juno-border-width-2) solid var(--juno-active);
|
|
236
|
+
outline-offset: calc(-1 * var(--juno-border-width-2));
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
/* ── touch ─────────────────────────────────────────────────────────────
|
|
240
|
+
The caret and the handle paint small so a dense tree stays dense, but a
|
|
241
|
+
16px target is not tappable. Grow the HIT AREA only, with a transparent
|
|
242
|
+
overlay, exactly as .nx-check does downstream: a 44px painted caret would
|
|
243
|
+
swallow the row it sits in. The row's own floor comes from
|
|
244
|
+
--juno-size-tap-min, which base.css promotes on a coarse pointer. */
|
|
245
|
+
@media (pointer: coarse) {
|
|
246
|
+
.juno-tree__caret,
|
|
247
|
+
.juno-tree__handle {
|
|
248
|
+
position: relative;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.juno-tree__caret::after,
|
|
252
|
+
.juno-tree__handle::after {
|
|
253
|
+
content: '';
|
|
254
|
+
position: absolute;
|
|
255
|
+
|
|
256
|
+
/* (44 - 16) / 2 = 14 */
|
|
257
|
+
inset: calc(-1 * (var(--juno-size-tap-comfortable) - var(--juno-space-16)) / 2);
|
|
258
|
+
}
|
|
259
|
+
}
|