@sylwellsoftware/fray 1.2.0 → 1.3.1
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 +303 -0
- package/README.md +69 -8
- package/dist/Components/component.d.ts.map +1 -1
- package/dist/Components/layout/routedSelection.d.ts +10 -0
- package/dist/Components/layout/routedSelection.d.ts.map +1 -0
- package/dist/Components/layout/tabpanel/tabpanel.d.ts +5 -3
- package/dist/Components/layout/tabpanel/tabpanel.d.ts.map +1 -1
- package/dist/Components/lineinputs/CheckableControl.d.ts.map +1 -1
- package/dist/Components/navigation/navigationBar.d.ts +30 -0
- package/dist/Components/navigation/navigationBar.d.ts.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1571 -1281
- package/dist/index.js.map +1 -1
- package/dist/{jsx-dev-runtime-C7dc8ZyF.js → jsx-dev-runtime-o0oiA-6O.js} +11 -2
- package/dist/jsx-dev-runtime-o0oiA-6O.js.map +1 -0
- package/dist/jsx-dev-runtime.js +1 -1
- package/dist/jsx-runtime.js +1 -1
- package/dist/routing/RouteOutlet.d.ts +38 -0
- package/dist/routing/RouteOutlet.d.ts.map +1 -0
- package/dist/styling/theme.d.ts.map +1 -1
- package/package.json +4 -3
- package/styles/structural.css +112 -2
- package/themes/base.css +27 -0
- package/themes/java/theme.css +3 -0
- package/themes/shiny/theme.css +24 -3
- package/dist/jsx-dev-runtime-C7dc8ZyF.js.map +0 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,303 @@
|
|
|
1
|
+
# Fray changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to `@sylwellsoftware/fray` are documented here. The format
|
|
4
|
+
follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and Semantic
|
|
5
|
+
Versioning.
|
|
6
|
+
|
|
7
|
+
## Unreleased
|
|
8
|
+
|
|
9
|
+
## 1.3.1 - 2026-09-08
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Removed the fixed height from checkable controls so their layout follows the
|
|
14
|
+
active line-height and supports wrapped label content.
|
|
15
|
+
|
|
16
|
+
- Published npm packages now include this changelog alongside their release
|
|
17
|
+
history.
|
|
18
|
+
|
|
19
|
+
## 1.3.0 - 2026-09-08
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
|
|
23
|
+
- Added independent `--navigation-bar-*` and `--navigation-link-*` theme
|
|
24
|
+
variables. Navigation now defaults to text-link presentation rather than
|
|
25
|
+
inheriting generic button chrome.
|
|
26
|
+
- Added `NavigationBar`, a labelled native navigation list over `RouteLink`
|
|
27
|
+
destinations, and `RouteOutlet`, an application-emitter-backed owner for
|
|
28
|
+
non-tab literal routes with nested scope propagation.
|
|
29
|
+
- Added the shared `ContentMountPolicy` type. Outlets support eager,
|
|
30
|
+
lazy-retained, and active-only branch lifetime and preselect a pending direct
|
|
31
|
+
route before mounting content.
|
|
32
|
+
- Added `TabPanel.mountPolicy` with eager, lazy-retained, and active-only
|
|
33
|
+
content lifecycles while preserving stable semantic tabpanel shells and the
|
|
34
|
+
current eager default. Routed panels preselect a matching pending literal
|
|
35
|
+
route before first content render, avoiding transient default-view mounts
|
|
36
|
+
during direct nested restoration.
|
|
37
|
+
|
|
38
|
+
### Changed
|
|
39
|
+
|
|
40
|
+
- Shiny now presents `NavigationBar` as a light, text-link navigation strip
|
|
41
|
+
beneath application chrome instead of a dark action-bar surface.
|
|
42
|
+
|
|
43
|
+
## 1.2.0 - 2026-09-08
|
|
44
|
+
|
|
45
|
+
### Added
|
|
46
|
+
|
|
47
|
+
- Added `OptionGroup`, a labelled `fieldset`/`legend` shell with a `headerEnd` slot for controls that need a standardized semantic grouping.
|
|
48
|
+
- Added `OptionsPanel`, extending `GroupPanel` with a flex-column content area and a configurable group gap, designed to contain `OptionGroup` children. `OptionsPanel` now styles nested `fieldset`/`legend` elements with flex-column stretch layout, bordered legends, and neutral palette text color.
|
|
49
|
+
- Added `FrayHostElementTagNameMap` and `FrayElementTagNameMap` types to register
|
|
50
|
+
custom `fray-*` host elements as JSX intrinsic tags, enabling TSX-only
|
|
51
|
+
authoring without explicit `h()` calls.
|
|
52
|
+
- Added `FrayApp` and `mountFrayApp()`. `FrayApp` provides a fixed block-level
|
|
53
|
+
`fray-app` root, optional viewport-axis sizing, and a `main`/`none` landmark
|
|
54
|
+
policy; the mount helper collects and injects its dependency CSS before the
|
|
55
|
+
first commit.
|
|
56
|
+
- Adjusted font-styling in general to be more sensible
|
|
57
|
+
- Improved base css of CategoryHidepanel for more compact layout
|
|
58
|
+
|
|
59
|
+
### Changed
|
|
60
|
+
|
|
61
|
+
- Refined `GroupPanel` layout from a rigid grid to a flexible row so the
|
|
62
|
+
vertical header and content adapt naturally to varying label lengths and
|
|
63
|
+
content sizes. The header chrome is now self-contained, removing the need
|
|
64
|
+
for per-heading-level style overrides.
|
|
65
|
+
- Tightened `OptionsPanel` and `OptionGroup` spacing for a more compact,
|
|
66
|
+
form-like appearance that better suits dense control panels. The content
|
|
67
|
+
area now stretches to fill available height, and fieldset legends sit
|
|
68
|
+
closer to their controls with reduced gaps and padding.
|
|
69
|
+
- Gave `CheckableControl` a fixed row height so checkboxes and radios align
|
|
70
|
+
consistently across different label and font configurations.
|
|
71
|
+
- Added a shared `border-radius` to the `.colored` trait so gradient
|
|
72
|
+
surfaces round consistently with other bordered elements.
|
|
73
|
+
|
|
74
|
+
### Fixed
|
|
75
|
+
|
|
76
|
+
- `FrayApp` now applies the theme canvas, text color, font family, font size,
|
|
77
|
+
and line height even when embedded. Existing viewport root traits now apply
|
|
78
|
+
the published text color as well as typography.
|
|
79
|
+
- RadioGroup basic rendering adjusted
|
|
80
|
+
|
|
81
|
+
## 1.1.1 - 2026-09-07
|
|
82
|
+
|
|
83
|
+
### Changed
|
|
84
|
+
|
|
85
|
+
- Replaced legacy `h()`-first documentation with a comprehensive TSX-first
|
|
86
|
+
guide covering every public component, reactive template form, data-source
|
|
87
|
+
ownership rule, service/routing boundary, and styling contract.
|
|
88
|
+
- Restored the framework overview's design rationale for native browser
|
|
89
|
+
semantics, meaningful HTML/CSS separation, and the complementary intent
|
|
90
|
+
behind the Glue and Fray names.
|
|
91
|
+
|
|
92
|
+
## 1.1.0 - 2026-09-07
|
|
93
|
+
|
|
94
|
+
### Added
|
|
95
|
+
|
|
96
|
+
- Added `GroupPanel`, a labelled control-group surface with a bordered body
|
|
97
|
+
and a full-height vertical `Header` using the normal section-header chrome.
|
|
98
|
+
|
|
99
|
+
### Changed
|
|
100
|
+
|
|
101
|
+
- Added a reusable `colored` presentation trait that paints explicit
|
|
102
|
+
`--c1`/`--c2`/`--c3` triplets as a gradient and lets Shiny add shared depth
|
|
103
|
+
through `--colored-shadow`. `TreeView` now accepts `itemLabelClassName` and
|
|
104
|
+
`itemLabelStyle` callbacks so applications can decorate the block label next
|
|
105
|
+
to an expander without painting the entire semantic tree row.
|
|
106
|
+
- Made `GroupPanel` headers narrower and corrected their box model, with a
|
|
107
|
+
small content gap, right inset, and a minimal inset between the vertical
|
|
108
|
+
header and the group border.
|
|
109
|
+
- Replaced Shiny's hard-coded blue section-header gradient stop with the
|
|
110
|
+
existing primary palette anchor and derived its translucent highlight stops
|
|
111
|
+
from the light palette endpoint.
|
|
112
|
+
- Reorganized the public Meridian style lab around a persistent Scope/View
|
|
113
|
+
navigation rail and flat sibling-island layouts for Portfolio, Register,
|
|
114
|
+
Change, and Analysis. Portfolio attention, Register criteria, and Analysis
|
|
115
|
+
visibility now derive independently from shared application scope while the
|
|
116
|
+
selected change remains durable across local filtering.
|
|
117
|
+
|
|
118
|
+
### Fixed
|
|
119
|
+
|
|
120
|
+
- Application roots using either `fray-fill-horizontal` or
|
|
121
|
+
`fray-fill-vertical` now consume the published `--font-family`,
|
|
122
|
+
`--font-size`, and `--line-height` tokens, preventing inherited controls and
|
|
123
|
+
native content from falling back to the browser's serif defaults.
|
|
124
|
+
|
|
125
|
+
## 1.0.0 - 2026-09-06
|
|
126
|
+
|
|
127
|
+
### Added
|
|
128
|
+
|
|
129
|
+
- Independent `fray-fill-horizontal` and `fray-fill-vertical` application-root
|
|
130
|
+
modifiers with axis-specific sizing/overflow behavior and a white
|
|
131
|
+
`--application-background` canvas. Applications combine both modifiers for
|
|
132
|
+
fullscreen behavior; runtime mounting itself remains sizing-neutral.
|
|
133
|
+
- An explicit common `island` component modifier and catalogued
|
|
134
|
+
`--island-*` surface variables, allowing themes to elevate only deliberate
|
|
135
|
+
application surfaces instead of inferring boundaries from component nesting.
|
|
136
|
+
- `data-fray` renderer ownership markers on every Fray-created element, fixed
|
|
137
|
+
one-hyphen `fray-<stem>` component hosts, a variable-only base stylesheet,
|
|
138
|
+
and the `setFrayAppearance()`/`getFrayAppearance()` document appearance API.
|
|
139
|
+
- Base-to-derived component CSS collection, including dependencies declared at
|
|
140
|
+
every class level, for meaningful component styling inheritance.
|
|
141
|
+
- Explicit component-specific `live()` prop allowlists, enforced consistently
|
|
142
|
+
by typed JSX/`h()` authoring and the runtime renderer.
|
|
143
|
+
- `Label` component with a live `text` prop for accessible form field labeling.
|
|
144
|
+
- `Header` component with a native `h1`–`h6` level and source-owned Section
|
|
145
|
+
Header treatment.
|
|
146
|
+
|
|
147
|
+
### Changed
|
|
148
|
+
|
|
149
|
+
- Regenerated structural CSS to match the fixed component host names.
|
|
150
|
+
- Palette ramps can independently mix their primary, secondary, or neutral
|
|
151
|
+
light and dark sides toward palette-selected hue endpoints.
|
|
152
|
+
- Normal applications register their root component and inject only reachable
|
|
153
|
+
component CSS. Base owns semantic defaults and palette derivation; named
|
|
154
|
+
colors and themes are independent variable-only files with no base import.
|
|
155
|
+
- The public style lab has returned to a native zero-component baseline for
|
|
156
|
+
strict component-at-a-time CSS review.
|
|
157
|
+
- Interactive controls now expose consistent live availability and validation
|
|
158
|
+
contracts: `Textbox`/`Dropdown` accept live disabled, required, and error
|
|
159
|
+
state; checkboxes, radio controls, and toggles accept live disabled, required,
|
|
160
|
+
and error state; standalone radios also accept live checked state.
|
|
161
|
+
- `RadioGroup.options` remains an ordinary array supplied through explicit owner
|
|
162
|
+
renders, and raw `valueEmitter` behavior is unchanged.
|
|
163
|
+
- Enabled strict TypeScript compiler checking.
|
|
164
|
+
- Restarted the public component treatments for Button, the Checkbox family,
|
|
165
|
+
DescriptionList/DescriptionItem, Dialog, Dropdown, FilterPanel, Header,
|
|
166
|
+
ListView, Panel, Placeholder, ProgressBar, RadioGroup/RadioButton, Sidebar,
|
|
167
|
+
SplitView, the DataTable/TableHeader family, TabLine/TabPanel, Textbox,
|
|
168
|
+
Toggle, and Toolbar around fixed light-DOM parts, native/ARIA state
|
|
169
|
+
selectors, and reachable component-local CSS. ProgressBar preserves native
|
|
170
|
+
progress semantics while presenting its label through the legacy-compatible
|
|
171
|
+
clipped completed surface.
|
|
172
|
+
- Rebuilt the public style lab as the reactive Meridian Change Office workflow
|
|
173
|
+
so approved component CSS is exercised through application-owned scope,
|
|
174
|
+
filtering, selection, routing, and retained-screen state.
|
|
175
|
+
- Restarted TreeView around a native tree list, fixed expander/label parts,
|
|
176
|
+
semantic selection and expansion selectors, and declarative TreeItem updates;
|
|
177
|
+
the style lab now uses that hierarchy alongside live theme and colour pickers.
|
|
178
|
+
|
|
179
|
+
### Removed
|
|
180
|
+
|
|
181
|
+
- Configurable Fray component host prefixes and overrides, plus the obsolete
|
|
182
|
+
top-level `themes/light.css` and `themes/dark.css` compatibility bundles.
|
|
183
|
+
- The named `baseStyles` recipe registry and its public types; shared component
|
|
184
|
+
CSS now follows meaningful class inheritance.
|
|
185
|
+
|
|
186
|
+
### Fixed
|
|
187
|
+
|
|
188
|
+
- Island sizing reacts to the application root's opted-in viewport axes with
|
|
189
|
+
corresponding bounds and overflow, and component ancestry rejects islands
|
|
190
|
+
nested within other islands.
|
|
191
|
+
- Toggle and TabLine native buttons now honor configured UI text scaling;
|
|
192
|
+
Toggle's default selected surface also preserves AA text contrast, and the
|
|
193
|
+
Sidebar browser contract follows its fixed light-DOM content part.
|
|
194
|
+
- `SplitView` panes are keyboard-focusable so their owned overflow remains
|
|
195
|
+
operable without a pointing device.
|
|
196
|
+
- `Panel` now composes `Header`, uses trait classes for content orientation, and
|
|
197
|
+
owns only its surface, content layout, and live disabled presentation.
|
|
198
|
+
- `Sidebar` now has a fixed `fray-sidebar` CSS host while retaining its native
|
|
199
|
+
complementary `aside` region.
|
|
200
|
+
- `SplitView` now uses class-owned direction and pane hooks, a simple two-pane
|
|
201
|
+
flex layout, and its existing native/ARIA pane semantics.
|
|
202
|
+
- FilterPanel retains its component-relative Bank2 anchor without a deferred
|
|
203
|
+
viewport offset that caused the panel to flicker out of view.
|
|
204
|
+
- Multi-state Checkbox variants synchronize the native checked property after
|
|
205
|
+
every semantic transition.
|
|
206
|
+
|
|
207
|
+
## 0.7.0 - 2026-09-04
|
|
208
|
+
|
|
209
|
+
### Added
|
|
210
|
+
|
|
211
|
+
- Contextually discovered hierarchical browser routing with immutable literal
|
|
212
|
+
and dynamic route descriptors, ordered cancellable resolvers, canonical
|
|
213
|
+
fallback, and structured transition/issue state.
|
|
214
|
+
- History/path, hash, and memory navigation adapters plus native `RouteLink`,
|
|
215
|
+
`RouteValue`, `RouteQuery`, and route-aware `TabPanel` integration.
|
|
216
|
+
|
|
217
|
+
### Changed
|
|
218
|
+
|
|
219
|
+
- `FrayRuntime` can carry a caller-owned router, and routed component children
|
|
220
|
+
inherit their mounted route lineage without changing Glue or unrouted
|
|
221
|
+
component behavior.
|
|
222
|
+
|
|
223
|
+
## 0.6.0 - 2026-09-04
|
|
224
|
+
|
|
225
|
+
### Added
|
|
226
|
+
|
|
227
|
+
- Prefix-free public theme traits for complete and split custom-component
|
|
228
|
+
treatments, including data-component and colored visualization surfaces.
|
|
229
|
+
- Primary, secondary, and neutral 50–950 palette ramps with documented
|
|
230
|
+
light/default/dark aliases and contrast endpoints.
|
|
231
|
+
|
|
232
|
+
### Changed
|
|
233
|
+
|
|
234
|
+
- Themes now target native elements, traits, and native/ARIA state inside
|
|
235
|
+
`@scope`; component and part diagnostics are no longer presentation hooks.
|
|
236
|
+
- Color files expose palette language only. Themes map that palette to button,
|
|
237
|
+
input, panel, status, selection, and visualization roles.
|
|
238
|
+
- Theme/color root attributes and public custom properties are prefix-free;
|
|
239
|
+
see the semantic-markup and theming migration guidance.
|
|
240
|
+
|
|
241
|
+
## 0.5.0 - 2026-09-03
|
|
242
|
+
|
|
243
|
+
### Changed
|
|
244
|
+
|
|
245
|
+
- Two-state checkboxes with custom semantic values expose the second value as
|
|
246
|
+
the checked state, so native checkbox interactions remain correct for
|
|
247
|
+
bindings such as `visible`/`hidden`.
|
|
248
|
+
|
|
249
|
+
## 0.4.0 - 2026-09-03
|
|
250
|
+
|
|
251
|
+
### Added
|
|
252
|
+
|
|
253
|
+
- Typed service keys, immutable providers, lazy application scopes, and
|
|
254
|
+
declared class-component service access through `FrayRuntime`.
|
|
255
|
+
|
|
256
|
+
### Changed
|
|
257
|
+
|
|
258
|
+
- Application services are registered at the composition root and inherited by
|
|
259
|
+
nested class components without service prop-drilling.
|
|
260
|
+
|
|
261
|
+
## 0.3.0 - 2026-09-03
|
|
262
|
+
|
|
263
|
+
### Added
|
|
264
|
+
|
|
265
|
+
- Stable list, tree, table, dialog, filter, selection, and placeholder exports.
|
|
266
|
+
- Versioned semantic filter-state composition and persistence helpers.
|
|
267
|
+
- Read-only keyed tree-node projections and immutable writable-root updates.
|
|
268
|
+
- Explicit local, caller-query, handler, and REST table data-source adapters.
|
|
269
|
+
|
|
270
|
+
### Changed
|
|
271
|
+
|
|
272
|
+
- `FilterMode` values are `neutral`, `prefer`, `require`, and `deny`.
|
|
273
|
+
- Generic filter dimensions reject denied matches, require every required value,
|
|
274
|
+
accept any preferred value when preferences are active, and ignore neutral
|
|
275
|
+
values.
|
|
276
|
+
- Single-select lists and tables use item-or-null emitters; array emitters
|
|
277
|
+
require explicit multi-selection.
|
|
278
|
+
- `DataTable` uses one of `data`, `dataSource`, or `rest` instead of legacy
|
|
279
|
+
query/REST props.
|
|
280
|
+
|
|
281
|
+
## 0.2.0 - 2026-09-03
|
|
282
|
+
|
|
283
|
+
### Added
|
|
284
|
+
|
|
285
|
+
- Generated theme-neutral structural CSS, replaceable treatment bundles, color
|
|
286
|
+
palettes, and theme/color picker components.
|
|
287
|
+
|
|
288
|
+
### Changed
|
|
289
|
+
|
|
290
|
+
- Components consume semantic styling variables rather than embedded theme
|
|
291
|
+
colors, and published package checks validate CSS subpaths.
|
|
292
|
+
- Fray's Glue peer range follows the compatible Glue `0.2.x` line.
|
|
293
|
+
|
|
294
|
+
## 0.1.0-alpha.1 - 2026-09-02
|
|
295
|
+
|
|
296
|
+
### Added
|
|
297
|
+
|
|
298
|
+
- Initial public packaging with strict TypeScript declarations, ESM JSX
|
|
299
|
+
runtimes, accessible controls, supported themes, and initial data APIs.
|
|
300
|
+
|
|
301
|
+
### Changed
|
|
302
|
+
|
|
303
|
+
- Glue is Fray's external peer dependency.
|
package/README.md
CHANGED
|
@@ -348,16 +348,33 @@ const view = new Emitter<'list' | 'grid'>('list')
|
|
|
348
348
|
| `Panel` | Optional labelled region with toolbar and content flow | `header`, `toolbar`, `orientation`, `disabled`; live: `disabled` |
|
|
349
349
|
| `Sidebar` | Labelled `aside` with fixed header/toolbar and scrolling content | `header`, `toolbar`, `ariaLabel`, content |
|
|
350
350
|
| `SplitView` | Two-pane layout | `primary`, `secondary`, `direction`, `primarySize`, region labels |
|
|
351
|
+
| `NavigationBar` | Labelled native navigation list over router-aware anchors | required `label`, `items`; per-item route target, `exact`, disabled/link options |
|
|
351
352
|
| `Tab` | Declarative tab definition consumed by `TabPanel` | `id`, `label`, `disabled`, optional literal `route`, content |
|
|
352
353
|
| `TabLine` | Standalone keyboard-operable tab list | `tabs`, `valueEmitter`/`activeTabEmitter`, initial value, `label`, `onChange` |
|
|
353
|
-
| `TabPanel` | Tab list plus owned tabpanel sections | declarative `Tab` children or `tabs` definitions; value props, `label`, `onChange` |
|
|
354
|
+
| `TabPanel` | Tab list plus owned tabpanel sections | declarative `Tab` children or `tabs` definitions; value props, `mountPolicy`, `label`, `onChange` |
|
|
354
355
|
|
|
355
356
|
`TabLine` supports Home, End, and orientation-appropriate arrow navigation and
|
|
356
357
|
skips disabled tabs. `TabPanel` can register routed tabs when it is mounted in
|
|
357
|
-
a router-backed route scope.
|
|
358
|
+
a router-backed route scope. Its `mountPolicy` controls content lifetime while
|
|
359
|
+
keeping every semantic tabpanel shell stable:
|
|
360
|
+
|
|
361
|
+
- `eager` (the compatibility default) mounts and retains every tab's content;
|
|
362
|
+
- `lazy` mounts the selected content and retains each visited tab; and
|
|
363
|
+
- `active-only` mounts only the selected content and destroys it on leave.
|
|
364
|
+
|
|
365
|
+
During initial restoration of a direct nested URL, a routed panel preselects
|
|
366
|
+
the matching pending literal route before its first content render. An
|
|
367
|
+
`active-only` panel therefore does not briefly mount its default branch while
|
|
368
|
+
the router progressively discovers the requested child scopes.
|
|
369
|
+
|
|
370
|
+
Use `active-only` with recreatable TSX/VNodes. A prebuilt component instance
|
|
371
|
+
cannot be mounted again after destruction. Put state that must survive a view
|
|
372
|
+
instance in application-owned Glue emitters/services, or choose a retaining
|
|
373
|
+
policy. Fray does not call data-loading methods implicitly; a mounted view may
|
|
374
|
+
activate its application service/query during `initialize()`.
|
|
358
375
|
|
|
359
376
|
```tsx
|
|
360
|
-
<TabPanel id="profile" label="Profile sections">
|
|
377
|
+
<TabPanel id="profile" label="Profile sections" mountPolicy="active-only">
|
|
361
378
|
<Tab id="summary" label="Summary">Summary content</Tab>
|
|
362
379
|
<Tab id="details" label="Details">Details content</Tab>
|
|
363
380
|
</TabPanel>
|
|
@@ -366,6 +383,19 @@ a router-backed route scope.
|
|
|
366
383
|
`SplitView` is a fixed two-pane composition primitive. It does not impose
|
|
367
384
|
application resizing policy or persist pane sizes.
|
|
368
385
|
|
|
386
|
+
`NavigationBar` uses a native `nav`, list, and anchors. It preserves
|
|
387
|
+
`RouteLink` href generation, current-route state, modified clicks, targets,
|
|
388
|
+
and downloads. It has ordinary link tab order and no tab or ARIA-menu keyboard
|
|
389
|
+
model. A disabled item is rendered as a visible non-link with
|
|
390
|
+
`aria-disabled="true"`. The bar navigates only; it never locates or owns the
|
|
391
|
+
content affected by a route.
|
|
392
|
+
|
|
393
|
+
Its `--navigation-bar-*` and `--navigation-link-*` theme variables are
|
|
394
|
+
independent from `--button-*`. The base theme deliberately presents navigation
|
|
395
|
+
as text links with a subtle hover surface and current-route underline. Themes
|
|
396
|
+
may opt into boxed or button-like navigation without changing the component's
|
|
397
|
+
native link semantics.
|
|
398
|
+
|
|
369
399
|
### Data and record views
|
|
370
400
|
|
|
371
401
|
| Component | Purpose | Key props and state |
|
|
@@ -492,23 +522,41 @@ navigation adapter.
|
|
|
492
522
|
|
|
493
523
|
```tsx
|
|
494
524
|
const portfolioRoute = defineRoute('portfolio')
|
|
525
|
+
const registerRoute = defineRoute('register')
|
|
495
526
|
const projectRoute = defineRouteParameter('project', stringRouteCodec)
|
|
496
527
|
const selectedProject = new Emitter<string | null>(null)
|
|
528
|
+
const activeApplication = new Emitter<Key | null>('portfolio')
|
|
497
529
|
|
|
498
530
|
const router = createBrowserRouter({adapter: createHashNavigation()})
|
|
499
531
|
const runtime = createFrayRuntime({router})
|
|
500
532
|
|
|
501
|
-
<
|
|
502
|
-
|
|
533
|
+
<NavigationBar
|
|
534
|
+
label="Application sections"
|
|
535
|
+
items={[
|
|
536
|
+
{id: 'portfolio', label: 'Portfolio', to: routeTarget(portfolioRoute)},
|
|
537
|
+
{id: 'register', label: 'Register', to: routeTarget(registerRoute)},
|
|
538
|
+
]}
|
|
539
|
+
/>
|
|
540
|
+
<RouteOutlet
|
|
541
|
+
valueEmitter={activeApplication}
|
|
542
|
+
mountPolicy="active-only"
|
|
543
|
+
views={[{
|
|
544
|
+
id: 'portfolio',
|
|
545
|
+
route: portfolioRoute,
|
|
546
|
+
content:
|
|
503
547
|
<RouteValue
|
|
504
548
|
route={projectRoute}
|
|
505
549
|
valueEmitter={selectedProject}
|
|
506
550
|
scopeChildren={true}
|
|
507
551
|
>
|
|
508
552
|
<ProjectScreen selectedProject={selectedProject} />
|
|
509
|
-
</RouteValue
|
|
510
|
-
|
|
511
|
-
|
|
553
|
+
</RouteValue>,
|
|
554
|
+
}, {
|
|
555
|
+
id: 'register',
|
|
556
|
+
route: registerRoute,
|
|
557
|
+
content: <RegisterScreen />,
|
|
558
|
+
}]}
|
|
559
|
+
/>
|
|
512
560
|
```
|
|
513
561
|
|
|
514
562
|
Core routing exports:
|
|
@@ -521,6 +569,9 @@ Core routing exports:
|
|
|
521
569
|
`MemoryNavigationAdapter` decide where locations live.
|
|
522
570
|
- `RouteScope` establishes lineage; `RouteValue` binds dynamic path values;
|
|
523
571
|
`RouteQuery` binds one named query value; `RouteLink` renders a real anchor.
|
|
572
|
+
- `NavigationBar` groups native route links but does not own destination DOM.
|
|
573
|
+
- `RouteOutlet` registers one sibling literal-route set against an
|
|
574
|
+
application-owned emitter and gives selected content its resolved scope.
|
|
524
575
|
- `waitForRouteValue` lets a resolver await a readable application
|
|
525
576
|
prerequisite with cancellation.
|
|
526
577
|
|
|
@@ -538,6 +589,16 @@ The history adapter needs server fallback for direct deep requests. The hash
|
|
|
538
589
|
adapter reserves the fragment. The memory adapter is intended for deterministic
|
|
539
590
|
tests. The caller owns and disposes the router.
|
|
540
591
|
|
|
592
|
+
`RouteOutlet.mountPolicy` uses the same `ContentMountPolicy` values as
|
|
593
|
+
`TabPanel`: `eager`, `lazy`, and `active-only`. Immediate routes are registered
|
|
594
|
+
whether or not their content is mounted. During direct restoration, the
|
|
595
|
+
matching pending branch is selected before the first content render, so an
|
|
596
|
+
active-only default branch cannot initialize and activate unrequested work.
|
|
597
|
+
Other page regions may independently read `activeApplication`; only the outlet
|
|
598
|
+
registers that sibling route set. Application-global navigation should usually
|
|
599
|
+
use explicit `routeTarget(...)` values, while relative descriptors are suited
|
|
600
|
+
to a navigation bar inside the route scope that registered them.
|
|
601
|
+
|
|
541
602
|
## Styling contract
|
|
542
603
|
|
|
543
604
|
Load presentation in this order:
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"component.d.ts","sourceRoot":"","sources":["../../src/Components/component.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"component.d.ts","sourceRoot":"","sources":["../../src/Components/component.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { Key } from '../component.js';
|
|
2
|
+
import type { LiteralRouteDescriptor } from '../../routing/route.js';
|
|
3
|
+
export type ContentMountPolicy = 'eager' | 'lazy' | 'active-only';
|
|
4
|
+
export interface RoutedSelectionItem {
|
|
5
|
+
id: Key;
|
|
6
|
+
disabled: boolean;
|
|
7
|
+
route?: LiteralRouteDescriptor;
|
|
8
|
+
}
|
|
9
|
+
export declare function readContentMountPolicy(value: unknown, componentName: string): ContentMountPolicy;
|
|
10
|
+
//# sourceMappingURL=routedSelection.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"routedSelection.d.ts","sourceRoot":"","sources":["../../../src/Components/layout/routedSelection.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAY,GAAG,EAAC,MAAM,iBAAiB,CAAA;AAInD,OAAO,KAAK,EAAC,sBAAsB,EAAC,MAAM,wBAAwB,CAAA;AAGlE,MAAM,MAAM,kBAAkB,GAAG,OAAO,GAAG,MAAM,GAAG,aAAa,CAAA;AAEjE,MAAM,WAAW,mBAAmB;IAChC,EAAE,EAAE,GAAG,CAAA;IACP,QAAQ,EAAE,OAAO,CAAA;IACjB,KAAK,CAAC,EAAE,sBAAsB,CAAA;CACjC;AAkID,wBAAgB,sBAAsB,CAClC,KAAK,EAAE,OAAO,EACd,aAAa,EAAE,MAAM,GACtB,kBAAkB,CAMpB"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Component } from '../../component.js';
|
|
2
2
|
import type { FrayChild, Key } from '../../component.js';
|
|
3
3
|
import type { ValueControlProps, ValueEmitter } from '../../controlUtils.js';
|
|
4
|
+
import type { ContentMountPolicy } from '../routedSelection.js';
|
|
4
5
|
import { Tab } from './tab.js';
|
|
5
6
|
import { TabLine } from './tabline.js';
|
|
6
7
|
import { RouteScope } from '../../../routing/RouteScope.js';
|
|
@@ -13,11 +14,14 @@ export interface TabDefinition {
|
|
|
13
14
|
component?: FrayChild;
|
|
14
15
|
route?: LiteralRouteDescriptor;
|
|
15
16
|
}
|
|
17
|
+
export type TabPanelMountPolicy = ContentMountPolicy;
|
|
16
18
|
export interface TabPanelProps extends ValueControlProps<Key | null> {
|
|
17
19
|
id?: string | number | null;
|
|
18
20
|
tabs?: readonly TabDefinition[];
|
|
19
21
|
activeTabEmitter?: ValueEmitter<Key | null>;
|
|
20
22
|
initialActiveTabId?: Key | null;
|
|
23
|
+
/** Controls when tab content is mounted and whether inactive content is retained. */
|
|
24
|
+
mountPolicy?: TabPanelMountPolicy;
|
|
21
25
|
label?: string;
|
|
22
26
|
onChange?: (value: Key, event: Event | null) => void;
|
|
23
27
|
}
|
|
@@ -26,15 +30,13 @@ export declare class TabPanel extends Component<TabPanelProps> {
|
|
|
26
30
|
readonly valueEmitter: ValueEmitter<Key | null>;
|
|
27
31
|
readonly activeTabEmitter: ValueEmitter<Key | null>;
|
|
28
32
|
readonly baseId: string;
|
|
29
|
-
private
|
|
33
|
+
private readonly selection;
|
|
30
34
|
constructor(props?: TabPanelProps);
|
|
31
35
|
initialize(): void;
|
|
32
36
|
setProps(nextProps: TabPanelProps): this;
|
|
33
37
|
render(): FrayChild;
|
|
34
38
|
onDestroy(): void;
|
|
35
|
-
private registerRoutes;
|
|
36
39
|
private selectTab;
|
|
37
|
-
private routedContent;
|
|
38
40
|
static dependencies: (typeof Tab | typeof TabLine | typeof RouteScope)[];
|
|
39
41
|
static hostName: string;
|
|
40
42
|
static css: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tabpanel.d.ts","sourceRoot":"","sources":["../../../../src/Components/layout/tabpanel/tabpanel.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAe,MAAM,oBAAoB,CAAA;AAC1D,OAAO,KAAK,EAAiB,SAAS,EAAE,GAAG,EAAC,MAAM,oBAAoB,CAAA;AAMtE,OAAO,KAAK,EAAC,iBAAiB,EAAE,YAAY,EAAC,MAAM,uBAAuB,CAAA;
|
|
1
|
+
{"version":3,"file":"tabpanel.d.ts","sourceRoot":"","sources":["../../../../src/Components/layout/tabpanel/tabpanel.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAe,MAAM,oBAAoB,CAAA;AAC1D,OAAO,KAAK,EAAiB,SAAS,EAAE,GAAG,EAAC,MAAM,oBAAoB,CAAA;AAMtE,OAAO,KAAK,EAAC,iBAAiB,EAAE,YAAY,EAAC,MAAM,uBAAuB,CAAA;AAK1E,OAAO,KAAK,EACR,kBAAkB,EAErB,MAAM,uBAAuB,CAAA;AAC9B,OAAO,EAAC,GAAG,EAAC,MAAM,UAAU,CAAA;AAE5B,OAAO,EAAC,OAAO,EAA0B,MAAM,cAAc,CAAA;AAE7D,OAAO,EAAC,UAAU,EAAC,MAAM,gCAAgC,CAAA;AACzD,OAAO,KAAK,EAAC,sBAAsB,EAAC,MAAM,2BAA2B,CAAA;AAErE,MAAM,WAAW,aAAa;IAC1B,EAAE,EAAE,GAAG,CAAA;IACP,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,OAAO,CAAC,EAAE,SAAS,CAAA;IACnB,SAAS,CAAC,EAAE,SAAS,CAAA;IACrB,KAAK,CAAC,EAAE,sBAAsB,CAAA;CACjC;AAED,MAAM,MAAM,mBAAmB,GAAG,kBAAkB,CAAA;AAEpD,MAAM,WAAW,aAAc,SAAQ,iBAAiB,CAAC,GAAG,GAAG,IAAI,CAAC;IAChE,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAA;IAC3B,IAAI,CAAC,EAAE,SAAS,aAAa,EAAE,CAAA;IAC/B,gBAAgB,CAAC,EAAE,YAAY,CAAC,GAAG,GAAG,IAAI,CAAC,CAAA;IAC3C,kBAAkB,CAAC,EAAE,GAAG,GAAG,IAAI,CAAA;IAC/B,qFAAqF;IACrF,WAAW,CAAC,EAAE,mBAAmB,CAAA;IACjC,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,GAAG,IAAI,KAAK,IAAI,CAAA;CACvD;AAUD,qBAAa,QAAS,SAAQ,SAAS,CAAC,aAAa,CAAC;IAClD,OAAgB,SAAS,EAAE,SAAS,MAAM,EAAE,CAAK;IACjD,QAAQ,CAAC,YAAY,EAAE,YAAY,CAAC,GAAG,GAAG,IAAI,CAAC,CAAA;IAC/C,QAAQ,CAAC,gBAAgB,EAAE,YAAY,CAAC,GAAG,GAAG,IAAI,CAAC,CAAA;IACnD,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAA;IACvB,OAAO,CAAC,QAAQ,CAAC,SAAS,CAA0C;gBAExD,KAAK,GAAE,aAAkB;IA0BrC,UAAU,IAAI,IAAI;IAOlB,QAAQ,CAAC,SAAS,EAAE,aAAa,GAAG,IAAI;IAQxC,MAAM,IAAI,SAAS;IAmCV,SAAS,IAAI,IAAI;IAI1B,OAAO,CAAC,SAAS;IAKjB,MAAM,CAAC,YAAY,sDAA6B;IAEhD,OAAgB,QAAQ,SAAc;IAEtC,MAAM,CAAC,GAAG,SA8BT;CACJ"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CheckableControl.d.ts","sourceRoot":"","sources":["../../../src/Components/lineinputs/CheckableControl.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAM,MAAM,iBAAiB,CAAA;AAC9C,OAAO,KAAK,EAAC,cAAc,EAAC,MAAM,iBAAiB,CAAA;AAEnD,2EAA2E;AAC3E,8BAAsB,gBAAgB,CAClC,MAAM,SAAS,cAAc,GAAG,cAAc,CAChD,SAAQ,SAAS,CAAC,MAAM,CAAC;IACvB,OAAgB,GAAG,
|
|
1
|
+
{"version":3,"file":"CheckableControl.d.ts","sourceRoot":"","sources":["../../../src/Components/lineinputs/CheckableControl.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAM,MAAM,iBAAiB,CAAA;AAC9C,OAAO,KAAK,EAAC,cAAc,EAAC,MAAM,iBAAiB,CAAA;AAEnD,2EAA2E;AAC3E,8BAAsB,gBAAgB,CAClC,MAAM,SAAS,cAAc,GAAG,cAAc,CAChD,SAAQ,SAAS,CAAC,MAAM,CAAC;IACvB,OAAgB,GAAG,SAgFlB;CACJ"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Component } from '../component.js';
|
|
2
|
+
import type { ComponentProps, FrayChild, Key } from '../component.js';
|
|
3
|
+
import { RouteLink } from '../../routing/RouteLink.js';
|
|
4
|
+
import type { RouteDescriptor, RouteTarget } from '../../routing/route.js';
|
|
5
|
+
import type { ResolvedRoute } from '../../routing/router.js';
|
|
6
|
+
export interface NavigationBarItem {
|
|
7
|
+
id: Key;
|
|
8
|
+
label: FrayChild;
|
|
9
|
+
to: RouteDescriptor | RouteTarget | ResolvedRoute;
|
|
10
|
+
exact?: boolean;
|
|
11
|
+
disabled?: boolean;
|
|
12
|
+
target?: string;
|
|
13
|
+
download?: string | boolean;
|
|
14
|
+
title?: string;
|
|
15
|
+
onClick?: (event: MouseEvent) => void;
|
|
16
|
+
}
|
|
17
|
+
export interface NavigationBarProps extends ComponentProps {
|
|
18
|
+
items: readonly NavigationBarItem[];
|
|
19
|
+
label: string;
|
|
20
|
+
}
|
|
21
|
+
/** Native application/document navigation over router-aware links. */
|
|
22
|
+
export declare class NavigationBar extends Component<NavigationBarProps> {
|
|
23
|
+
static liveProps: readonly string[];
|
|
24
|
+
constructor(props: NavigationBarProps);
|
|
25
|
+
render(): FrayChild;
|
|
26
|
+
static dependencies: (typeof RouteLink)[];
|
|
27
|
+
static hostName: string;
|
|
28
|
+
static css: string;
|
|
29
|
+
}
|
|
30
|
+
//# sourceMappingURL=navigationBar.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"navigationBar.d.ts","sourceRoot":"","sources":["../../../src/Components/navigation/navigationBar.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAM,MAAM,iBAAiB,CAAA;AAC9C,OAAO,KAAK,EAAC,cAAc,EAAE,SAAS,EAAE,GAAG,EAAC,MAAM,iBAAiB,CAAA;AAEnE,OAAO,EAAC,SAAS,EAAC,MAAM,4BAA4B,CAAA;AACpD,OAAO,KAAK,EAAC,eAAe,EAAE,WAAW,EAAC,MAAM,wBAAwB,CAAA;AACxE,OAAO,KAAK,EAAC,aAAa,EAAC,MAAM,yBAAyB,CAAA;AAE1D,MAAM,WAAW,iBAAiB;IAC9B,EAAE,EAAE,GAAG,CAAA;IACP,KAAK,EAAE,SAAS,CAAA;IAChB,EAAE,EAAE,eAAe,GAAG,WAAW,GAAG,aAAa,CAAA;IACjD,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,QAAQ,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;IAC3B,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,UAAU,KAAK,IAAI,CAAA;CACxC;AAED,MAAM,WAAW,kBAAmB,SAAQ,cAAc;IACtD,KAAK,EAAE,SAAS,iBAAiB,EAAE,CAAA;IACnC,KAAK,EAAE,MAAM,CAAA;CAChB;AAED,sEAAsE;AACtE,qBAAa,aAAc,SAAQ,SAAS,CAAC,kBAAkB,CAAC;IAC5D,OAAgB,SAAS,EAAE,SAAS,MAAM,EAAE,CAAK;gBAErC,KAAK,EAAE,kBAAkB;IAKrC,MAAM,IAAI,SAAS;IAqBnB,MAAM,CAAC,YAAY,uBAAc;IACjC,OAAgB,QAAQ,SAAmB;IAE3C,OAAgB,GAAG,SAgFlB;CACJ"}
|
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,8 @@ export { Fragment, jsx, jsxDEV, jsxs } from './jsx-runtime.js';
|
|
|
2
2
|
export * from './Components/layout/tabpanel/tab.js';
|
|
3
3
|
export * from './Components/layout/tabpanel/tabline.js';
|
|
4
4
|
export * from './Components/layout/tabpanel/tabpanel.js';
|
|
5
|
+
export type { ContentMountPolicy } from './Components/layout/routedSelection.js';
|
|
6
|
+
export * from './Components/navigation/navigationBar.js';
|
|
5
7
|
export * from './Components/app/app.js';
|
|
6
8
|
export * from './Components/layout/header.js';
|
|
7
9
|
export * from './Components/layout/groupPanel.js';
|
|
@@ -46,6 +48,7 @@ export * from './routing/navigationAdapter.js';
|
|
|
46
48
|
export * from './routing/route.js';
|
|
47
49
|
export * from './routing/router.js';
|
|
48
50
|
export * from './routing/RouteLink.js';
|
|
51
|
+
export * from './routing/RouteOutlet.js';
|
|
49
52
|
export * from './routing/RouteQuery.js';
|
|
50
53
|
export * from './routing/RouteScope.js';
|
|
51
54
|
export * from './routing/RouteValue.js';
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,QAAQ,EAAE,GAAG,EAAE,MAAM,EAAE,IAAI,EAAC,MAAM,kBAAkB,CAAA;AAE5D,cAAc,qCAAqC,CAAA;AACnD,cAAc,yCAAyC,CAAA;AACvD,cAAc,0CAA0C,CAAA;AACxD,cAAc,yBAAyB,CAAA;AACvC,cAAc,+BAA+B,CAAA;AAC7C,cAAc,mCAAmC,CAAA;AACjD,cAAc,oCAAoC,CAAA;AAClD,cAAc,qCAAqC,CAAA;AACnD,cAAc,8BAA8B,CAAA;AAC5C,cAAc,gCAAgC,CAAA;AAC9C,cAAc,kCAAkC,CAAA;AAEhD,cAAc,sCAAsC,CAAA;AACpD,cAAc,6BAA6B,CAAA;AAC3C,cAAc,kCAAkC,CAAA;AAChD,cAAc,wCAAwC,CAAA;AACtD,cAAc,uCAAuC,CAAA;AACrD,cAAc,sCAAsC,CAAA;AACpD,cAAc,wCAAwC,CAAA;AACtD,cAAc,wCAAwC,CAAA;AACtD,cAAc,4CAA4C,CAAA;AAC1D,cAAc,4CAA4C,CAAA;AAC1D,cAAc,uCAAuC,CAAA;AACrD,cAAc,wCAAwC,CAAA;AACtD,cAAc,yCAAyC,CAAA;AACvD,cAAc,wCAAwC,CAAA;AACtD,cAAc,+BAA+B,CAAA;AAE7C,cAAc,8CAA8C,CAAA;AAC5D,cAAc,kDAAkD,CAAA;AAChE,cAAc,iDAAiD,CAAA;AAC/D,cAAc,qCAAqC,CAAA;AACnD,cAAc,kCAAkC,CAAA;AAChD,cAAc,kCAAkC,CAAA;AAChD,cAAc,oCAAoC,CAAA;AAClD,cAAc,mCAAmC,CAAA;AAEjD,cAAc,6BAA6B,CAAA;AAC3C,cAAc,8BAA8B,CAAA;AAC5C,cAAc,oCAAoC,CAAA;AAClD,cAAc,wCAAwC,CAAA;AACtD,OAAO,EAAC,SAAS,EAAE,GAAG,EAAE,CAAC,EAAE,IAAI,EAAC,MAAM,2BAA2B,CAAA;AACjE,YAAY,EACR,oBAAoB,EACpB,mBAAmB,EACnB,cAAc,EACd,SAAS,EACT,qBAAqB,EACrB,yBAAyB,EACzB,iBAAiB,EACjB,eAAe,EACf,GAAG,EACH,WAAW,EACX,gBAAgB,EAChB,GAAG,EACH,aAAa,EACb,KAAK,EACL,SAAS,EACT,eAAe,GAClB,MAAM,2BAA2B,CAAA;AAElC,cAAc,sBAAsB,CAAA;AAEpC,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,gCAAgC,CAAA;AAC9C,cAAc,oBAAoB,CAAA;AAClC,cAAc,qBAAqB,CAAA;AACnC,cAAc,wBAAwB,CAAA;AACtC,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,oBAAoB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,QAAQ,EAAE,GAAG,EAAE,MAAM,EAAE,IAAI,EAAC,MAAM,kBAAkB,CAAA;AAE5D,cAAc,qCAAqC,CAAA;AACnD,cAAc,yCAAyC,CAAA;AACvD,cAAc,0CAA0C,CAAA;AACxD,YAAY,EAAC,kBAAkB,EAAC,MAAM,wCAAwC,CAAA;AAC9E,cAAc,0CAA0C,CAAA;AACxD,cAAc,yBAAyB,CAAA;AACvC,cAAc,+BAA+B,CAAA;AAC7C,cAAc,mCAAmC,CAAA;AACjD,cAAc,oCAAoC,CAAA;AAClD,cAAc,qCAAqC,CAAA;AACnD,cAAc,8BAA8B,CAAA;AAC5C,cAAc,gCAAgC,CAAA;AAC9C,cAAc,kCAAkC,CAAA;AAEhD,cAAc,sCAAsC,CAAA;AACpD,cAAc,6BAA6B,CAAA;AAC3C,cAAc,kCAAkC,CAAA;AAChD,cAAc,wCAAwC,CAAA;AACtD,cAAc,uCAAuC,CAAA;AACrD,cAAc,sCAAsC,CAAA;AACpD,cAAc,wCAAwC,CAAA;AACtD,cAAc,wCAAwC,CAAA;AACtD,cAAc,4CAA4C,CAAA;AAC1D,cAAc,4CAA4C,CAAA;AAC1D,cAAc,uCAAuC,CAAA;AACrD,cAAc,wCAAwC,CAAA;AACtD,cAAc,yCAAyC,CAAA;AACvD,cAAc,wCAAwC,CAAA;AACtD,cAAc,+BAA+B,CAAA;AAE7C,cAAc,8CAA8C,CAAA;AAC5D,cAAc,kDAAkD,CAAA;AAChE,cAAc,iDAAiD,CAAA;AAC/D,cAAc,qCAAqC,CAAA;AACnD,cAAc,kCAAkC,CAAA;AAChD,cAAc,kCAAkC,CAAA;AAChD,cAAc,oCAAoC,CAAA;AAClD,cAAc,mCAAmC,CAAA;AAEjD,cAAc,6BAA6B,CAAA;AAC3C,cAAc,8BAA8B,CAAA;AAC5C,cAAc,oCAAoC,CAAA;AAClD,cAAc,wCAAwC,CAAA;AACtD,OAAO,EAAC,SAAS,EAAE,GAAG,EAAE,CAAC,EAAE,IAAI,EAAC,MAAM,2BAA2B,CAAA;AACjE,YAAY,EACR,oBAAoB,EACpB,mBAAmB,EACnB,cAAc,EACd,SAAS,EACT,qBAAqB,EACrB,yBAAyB,EACzB,iBAAiB,EACjB,eAAe,EACf,GAAG,EACH,WAAW,EACX,gBAAgB,EAChB,GAAG,EACH,aAAa,EACb,KAAK,EACL,SAAS,EACT,eAAe,GAClB,MAAM,2BAA2B,CAAA;AAElC,cAAc,sBAAsB,CAAA;AAEpC,cAAc,cAAc,CAAA;AAC5B,cAAc,eAAe,CAAA;AAC7B,cAAc,gCAAgC,CAAA;AAC9C,cAAc,oBAAoB,CAAA;AAClC,cAAc,qBAAqB,CAAA;AACnC,cAAc,wBAAwB,CAAA;AACtC,cAAc,0BAA0B,CAAA;AACxC,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,oBAAoB,CAAA"}
|