@flyos/design-system 2.1.0 → 2.3.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/fesm2022/flyos-design-system.mjs +240 -142
- package/fesm2022/flyos-design-system.mjs.map +1 -1
- package/package.json +1 -1
- package/scss/_nova-glass.scss +25 -0
- package/scss/_nova-tokens.scss +68 -13
- package/scss/_theme-dark.scss +16 -5
- package/scss/_theme-light.scss +7 -6
- package/types/flyos-design-system.d.ts +92 -4
- package/types/flyos-design-system.d.ts.map +1 -1
package/package.json
CHANGED
package/scss/_nova-glass.scss
CHANGED
|
@@ -299,6 +299,31 @@
|
|
|
299
299
|
@include _degrade;
|
|
300
300
|
}
|
|
301
301
|
|
|
302
|
+
// ── Content blur ─────────────────────────────────────────────────────────────
|
|
303
|
+
// The one sanctioned way for a surface INSIDE a window to blur the app's OWN
|
|
304
|
+
// content: scroll-edge toolbars, side panes, drawers over the app's canvas, and
|
|
305
|
+
// floating tool plates that keep the app's documented fill (chats'
|
|
306
|
+
// `--glass-bg-elevated` floaters are the reference consumers). It emits ONLY the
|
|
307
|
+
// thin blur tier plus the degradation ladder — no fill, border or shadow — so an
|
|
308
|
+
// app's measured, RULE-A-tracked plate/ink pairing survives the migration off
|
|
309
|
+
// raw `backdrop-filter` untouched.
|
|
310
|
+
|
|
311
|
+
// What this is NOT:
|
|
312
|
+
// · not a menu/listbox recipe — a true menu takes `popover($surface: menu)`,
|
|
313
|
+
// the material `fly-context-menu`/`fly-select` already ship;
|
|
314
|
+
// · not a way to reach the wallpaper. A window is a backdrop root (hazard 3 in
|
|
315
|
+
// the header), so inside one this blur samples the window's interior paint —
|
|
316
|
+
// the app content behind the surface. That IS the contract here, which is
|
|
317
|
+
// why this recipe is safe where a translucent quartet fill would read muddy.
|
|
318
|
+
|
|
319
|
+
// Include it AFTER the caller's own paint declarations: the ladder's
|
|
320
|
+
// reduced-transparency flat must be able to override the caller's translucent
|
|
321
|
+
// fill, and within one specificity tier that is decided by source order.
|
|
322
|
+
@mixin content-blur {
|
|
323
|
+
@include _backdrop(thin);
|
|
324
|
+
@include _degrade;
|
|
325
|
+
}
|
|
326
|
+
|
|
302
327
|
// ── Light "vibrancy" material — RETIRED IN PLACE, no production callers ──────
|
|
303
328
|
// DO NOT ADOPT THIS. S6.-1 reversed the ruling that motivated it: the light
|
|
304
329
|
// theme is conventional dark-ink-on-pale-plate, and the white-ink-on-smoke
|
package/scss/_nova-tokens.scss
CHANGED
|
@@ -95,6 +95,41 @@ html.light-theme {
|
|
|
95
95
|
--sys-green: #1B7355;
|
|
96
96
|
--sys-purple: #6A3FC0;
|
|
97
97
|
|
|
98
|
+
// ── System TINTS ───────────────────────────────────────────────────────────
|
|
99
|
+
// The status-wash step the hue family was missing. Before these existed, 75
|
|
100
|
+
// feature-app call sites minted their own Tailwind-palette literal at a fixed
|
|
101
|
+
// alpha (`rgb(16 185 129 / 8%)` …) — one value for both themes, tuned against
|
|
102
|
+
// whichever plate the author happened to be looking at. A missing step makes
|
|
103
|
+
// every consumer mint their own (the `--font-family` trap), so the step is a
|
|
104
|
+
// NAMED TOKEN, not a documented idiom: two strengths, no percentage drift.
|
|
105
|
+
// ---
|
|
106
|
+
// · Derived via `color-mix` off the hue token so a tint always tracks its
|
|
107
|
+
// `--sys-*` parent — the same derivation the D7 danger ruling already
|
|
108
|
+
// spells for action-menu hovers (`color-mix(in oklab, var(--sys-red) 18%,
|
|
109
|
+
// transparent)`). Mixing toward `transparent` is colour-space-neutral: the
|
|
110
|
+
// result is the hue at that alpha.
|
|
111
|
+
// · Strengths are PER THEME (like `--tint-hover`/`--tint-sel` above): the
|
|
112
|
+
// light hues are deep, so 8% over the pale plate reads like the old
|
|
113
|
+
// Tailwind-500 at 10%; the dark hues are bright pastels over a near-black
|
|
114
|
+
// plate and need more ink to read as the same wash.
|
|
115
|
+
// · Pick by ROLE: `-tint` = resting wash (status rows, soft chips, added
|
|
116
|
+
// states); `-tint-strong` = emphasis (selected/hover status, danger
|
|
117
|
+
// surfaces, filled badges). Never mint a bespoke percentage for a
|
|
118
|
+
// BACKGROUND. Border rings and glows are not this step — spell those
|
|
119
|
+
// `color-mix(in srgb, var(--sys-*) N%, transparent)` at the use site.
|
|
120
|
+
--sys-red-tint: color-mix(in srgb, var(--sys-red) 8%, transparent);
|
|
121
|
+
--sys-red-tint-strong: color-mix(in srgb, var(--sys-red) 14%, transparent);
|
|
122
|
+
--sys-orange-tint: color-mix(in srgb, var(--sys-orange) 8%, transparent);
|
|
123
|
+
--sys-orange-tint-strong: color-mix(in srgb, var(--sys-orange) 14%, transparent);
|
|
124
|
+
--sys-blue-tint: color-mix(in srgb, var(--sys-blue) 8%, transparent);
|
|
125
|
+
--sys-blue-tint-strong: color-mix(in srgb, var(--sys-blue) 14%, transparent);
|
|
126
|
+
--sys-teal-tint: color-mix(in srgb, var(--sys-teal) 8%, transparent);
|
|
127
|
+
--sys-teal-tint-strong: color-mix(in srgb, var(--sys-teal) 14%, transparent);
|
|
128
|
+
--sys-green-tint: color-mix(in srgb, var(--sys-green) 8%, transparent);
|
|
129
|
+
--sys-green-tint-strong: color-mix(in srgb, var(--sys-green) 14%, transparent);
|
|
130
|
+
--sys-purple-tint: color-mix(in srgb, var(--sys-purple) 8%, transparent);
|
|
131
|
+
--sys-purple-tint-strong: color-mix(in srgb, var(--sys-purple) 14%, transparent);
|
|
132
|
+
|
|
98
133
|
// Brushed-steel wash. Light-only in the design; the dark block declares it
|
|
99
134
|
// `none` so a consumer never needs `var(--steel-sheen, …)` — a hex fallback
|
|
100
135
|
// is banned outright (skill §9 rule 3).
|
|
@@ -255,6 +290,25 @@ html.dark-theme {
|
|
|
255
290
|
--sys-green: #4dd6a8;
|
|
256
291
|
--sys-purple: #a48ce0;
|
|
257
292
|
|
|
293
|
+
// ── System TINTS ───────────────────────────────────────────────────────────
|
|
294
|
+
// Same two-step law as the light block (see its comment for the full
|
|
295
|
+
// rationale). Dark strengths are HIGHER on purpose: these hues are bright
|
|
296
|
+
// pastels and the plate is near-black, so parity with the light wash needs
|
|
297
|
+
// more ink — the same asymmetry `--tint-hover` carries (10% light / 26%
|
|
298
|
+
// dark). Tune strength HERE, never at a call site.
|
|
299
|
+
--sys-red-tint: color-mix(in srgb, var(--sys-red) 12%, transparent);
|
|
300
|
+
--sys-red-tint-strong: color-mix(in srgb, var(--sys-red) 18%, transparent);
|
|
301
|
+
--sys-orange-tint: color-mix(in srgb, var(--sys-orange) 12%, transparent);
|
|
302
|
+
--sys-orange-tint-strong: color-mix(in srgb, var(--sys-orange) 18%, transparent);
|
|
303
|
+
--sys-blue-tint: color-mix(in srgb, var(--sys-blue) 12%, transparent);
|
|
304
|
+
--sys-blue-tint-strong: color-mix(in srgb, var(--sys-blue) 18%, transparent);
|
|
305
|
+
--sys-teal-tint: color-mix(in srgb, var(--sys-teal) 12%, transparent);
|
|
306
|
+
--sys-teal-tint-strong: color-mix(in srgb, var(--sys-teal) 18%, transparent);
|
|
307
|
+
--sys-green-tint: color-mix(in srgb, var(--sys-green) 12%, transparent);
|
|
308
|
+
--sys-green-tint-strong: color-mix(in srgb, var(--sys-green) 18%, transparent);
|
|
309
|
+
--sys-purple-tint: color-mix(in srgb, var(--sys-purple) 12%, transparent);
|
|
310
|
+
--sys-purple-tint-strong: color-mix(in srgb, var(--sys-purple) 18%, transparent);
|
|
311
|
+
|
|
258
312
|
// Light-only in the design — declared as a no-op here so consumers can read
|
|
259
313
|
// it unconditionally in either theme.
|
|
260
314
|
--steel-sheen: none;
|
|
@@ -320,20 +374,21 @@ html.dark-theme {
|
|
|
320
374
|
--mat-menu-b-alpha: 1;
|
|
321
375
|
--mat-menu-b: rgb(26 25 30 / calc(var(--mat-menu-b-alpha) * 100%));
|
|
322
376
|
|
|
323
|
-
//
|
|
324
|
-
//
|
|
325
|
-
//
|
|
326
|
-
//
|
|
327
|
-
//
|
|
328
|
-
//
|
|
329
|
-
//
|
|
330
|
-
//
|
|
331
|
-
//
|
|
332
|
-
//
|
|
333
|
-
//
|
|
334
|
-
|
|
377
|
+
// Translucent again (2026-08-16), on S6W's COOL hues — half of that ruling reversed, half
|
|
378
|
+
// kept, and the split is deliberate. S6W found the aside compositing muddy brown over warm
|
|
379
|
+
// wallpapers and went alpha-1 on the menu pair's stops. Two facts have changed since:
|
|
380
|
+
// · the warm rgb(56 54 60) hue was half the mud, and it stays gone — these stops remain
|
|
381
|
+
// the cool menu-pair hues, which tint cool-neutral rather than brown;
|
|
382
|
+
// · the model now knows about the shell's 35% black wallpaper scrim (`shellBackdrop`),
|
|
383
|
+
// which darkens and mutes whatever shows through — the "wallpaper tints the plate"
|
|
384
|
+
// dose S6W measured was computed against a backdrop the browser does not paint.
|
|
385
|
+
// At 0.6/0.68 every aside row clears AA through the scrim over the WORST shipped backdrop
|
|
386
|
+
// (primary 7.36/9.15, secondary 4.99/5.99 — theme-contrast gate), and the aside once again
|
|
387
|
+
// matches the design's translucent panel (the mock's aside was 0.52→0.65) and its light-theme
|
|
388
|
+
// sibling right above (0.6/0.65) instead of being the one opaque slab in the shell.
|
|
389
|
+
--mat-agent-a-alpha: 0.6;
|
|
335
390
|
--mat-agent-a: rgb(32 31 37 / calc(var(--mat-agent-a-alpha) * 100%));
|
|
336
|
-
--mat-agent-b-alpha:
|
|
391
|
+
--mat-agent-b-alpha: 0.68;
|
|
337
392
|
--mat-agent-b: rgb(26 25 30 / calc(var(--mat-agent-b-alpha) * 100%));
|
|
338
393
|
--mat-tip-a-alpha: 0.82;
|
|
339
394
|
--mat-tip-a: rgb(46 44 52 / calc(var(--mat-tip-a-alpha) * 100%));
|
package/scss/_theme-dark.scss
CHANGED
|
@@ -108,7 +108,13 @@ html.dark-theme {
|
|
|
108
108
|
--fly-shadow-md: 0 4px 16px rgb(0 0 0 / 42%);
|
|
109
109
|
|
|
110
110
|
// ── Glass system ────────────────────────────────────────────────────────────
|
|
111
|
-
|
|
111
|
+
// 0.55, down from 0.72 (2026-08-16). The 72% was solved against the raw wallpaper, but no
|
|
112
|
+
// dark surface ever neighbours the wallpaper — the shell paints a 35% black scrim first
|
|
113
|
+
// (`shellBackdrop` in theme-contrast.ts), and through it the whole ink ladder clears its
|
|
114
|
+
// floors at 0.55: secondary 4.99:1 over the brightest shipped backdrop, tertiary 3.30 ≥ 3.
|
|
115
|
+
// Alpha parity with `--mat-panel` (Home) so windows, inner glass panels, and the content
|
|
116
|
+
// panel read as ONE material. The theme-contrast gate measures every row through the scrim.
|
|
117
|
+
--glass-bg: rgb(22 22 26 / 55%);
|
|
112
118
|
--glass-bg-elevated: rgb(30 30 36 / 82%);
|
|
113
119
|
|
|
114
120
|
// Tooltip surface — OPAQUE, and not a glass token. See the light theme for the full reasoning
|
|
@@ -144,10 +150,15 @@ html.dark-theme {
|
|
|
144
150
|
--launcher-card-desc: rgb(255 255 255 / 58%);
|
|
145
151
|
|
|
146
152
|
// ── Window chrome ───────────────────────────────────────────────────────────
|
|
147
|
-
//
|
|
148
|
-
// (`alpine-lake
|
|
149
|
-
//
|
|
150
|
-
|
|
153
|
+
// 0.55, down from 0.70 (2026-08-16), and the history matters: 42% was genuinely too thin
|
|
154
|
+
// (white body text ~2.9:1 over `alpine-lake`), but the 70% that fixed it was solved against
|
|
155
|
+
// the RAW wallpaper — a backdrop the browser never paints. Every dark surface sits on the
|
|
156
|
+
// shell's 35% black scrim (`.desktop-wallpaper.dark-theme::after`), and through it the full
|
|
157
|
+
// window ink ladder passes at 0.55: primary 7.35:1, secondary 4.99:1, tertiary 3.30:1 over
|
|
158
|
+
// the brightest shipped backdrop (theme-contrast gate, measured per row). 0.55 is alpha
|
|
159
|
+
// parity with `--mat-panel`, so a window and Home read as the same glass — the fork where a
|
|
160
|
+
// maximized window sat visibly thicker than the launcher beside it is what this closes.
|
|
161
|
+
--window-bg: rgb(20 20 24 / 55%);
|
|
151
162
|
--window-radius: 24px;
|
|
152
163
|
--window-blur: 30px;
|
|
153
164
|
--window-backdrop-saturate: 160%;
|
package/scss/_theme-light.scss
CHANGED
|
@@ -118,12 +118,13 @@ html.light-theme {
|
|
|
118
118
|
// Tooltip surface. OPAQUE and deliberately NOT a glass token.
|
|
119
119
|
|
|
120
120
|
// A tooltip is body-parented and floats over whatever happens to be underneath — a light app
|
|
121
|
-
// surface, a dark board canvas, the wallpaper. The glass family is TRANSLUCENT and
|
|
122
|
-
//
|
|
123
|
-
//
|
|
124
|
-
//
|
|
125
|
-
//
|
|
126
|
-
//
|
|
121
|
+
// surface, a dark board canvas, the wallpaper. The glass family is TRANSLUCENT, and at the time
|
|
122
|
+
// of the "tooltips are white on white" report it was also runtime-adaptive: the shell then
|
|
123
|
+
// recomputed `--glass-bg-elevated` from the wallpaper and wrote it at `:root`, so under a dark
|
|
124
|
+
// wallpaper it became a 54%-alpha DARK plate even in `light-theme`, compositing white ink to
|
|
125
|
+
// ~2.8:1 over a light page. That recompute NO LONGER EXISTS (`--glass-bg-elevated` is static
|
|
126
|
+
// now — verify with a grep before citing it), but the argument survives its mechanism: an
|
|
127
|
+
// overlay that can appear over ANY backdrop cannot inherit a surface tuned for one.
|
|
127
128
|
|
|
128
129
|
// Dark plate + white ink in BOTH themes is the classic tooltip treatment (macOS, Material,
|
|
129
130
|
// Bootstrap) and is exactly what this directive's own comment always claimed it fell back to —
|
|
@@ -1589,17 +1589,27 @@ interface FlyAuthRefreshPayload {
|
|
|
1589
1589
|
* across replicas). The bearer rides as `?access_token=` via the {@link AuthService} token. Idempotent
|
|
1590
1590
|
* `connect()`; safe to call once auth is established.</p>
|
|
1591
1591
|
*
|
|
1592
|
-
* <p>Requires `@microsoft/signalr` (declared a peer dependency of the design system)
|
|
1592
|
+
* <p>Requires `@microsoft/signalr` (declared a peer dependency of the design system). The package is
|
|
1593
|
+
* imported DYNAMICALLY on first `connect()`: this client sits in the core design system, which every
|
|
1594
|
+
* boot loads, and a static import made `@microsoft/signalr` (~14 KB compressed) part of every boot's
|
|
1595
|
+
* shared-module wave even though no bytes are needed until the hub actually connects. Under Native
|
|
1596
|
+
* Federation the dynamic import resolves through the same import map / shared singleton as a static
|
|
1597
|
+
* one — only the WHEN changes.</p>
|
|
1593
1598
|
*/
|
|
1594
1599
|
declare class FlyHubClient {
|
|
1595
1600
|
private readonly auth;
|
|
1596
1601
|
private connection;
|
|
1602
|
+
/** In-flight first connect (module import + build + start). Guards double-connect. */
|
|
1603
|
+
private connecting;
|
|
1604
|
+
/** Set when disconnect() arrives while the first connect is still importing/starting. */
|
|
1605
|
+
private abandonConnect;
|
|
1597
1606
|
readonly connected: _angular_core.WritableSignal<boolean>;
|
|
1598
1607
|
private readonly _authRefresh$;
|
|
1599
1608
|
/** Emits when the server signals this user's authorization shape changed. */
|
|
1600
1609
|
readonly authRefresh$: Observable<FlyAuthRefreshPayload>;
|
|
1601
1610
|
/** Open the hub connection (idempotent). No-op without an access token. */
|
|
1602
1611
|
connect(): void;
|
|
1612
|
+
private doConnect;
|
|
1603
1613
|
disconnect(): Promise<void>;
|
|
1604
1614
|
get isConnected(): boolean;
|
|
1605
1615
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlyHubClient, never>;
|
|
@@ -2513,6 +2523,44 @@ declare class SourceAppResolver {
|
|
|
2513
2523
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<SourceAppResolver>;
|
|
2514
2524
|
}
|
|
2515
2525
|
|
|
2526
|
+
/**
|
|
2527
|
+
* Host-provided handler that navigates to a resolved in-app entity deep link
|
|
2528
|
+
* when the user clicks a `flyos:` anchor inside an editor surface (the
|
|
2529
|
+
* `fly-markdown-editor` in `@flyos/design-system-editor`, or any consumer that
|
|
2530
|
+
* resolves `flyos:` anchors itself).
|
|
2531
|
+
*
|
|
2532
|
+
* The design system can RESOLVE a `flyos:<appId>.<entity>/<id>` href to a
|
|
2533
|
+
* `{ appId, route }` (via `AgentLookupRegistry`), but it cannot LAUNCH it — the
|
|
2534
|
+
* launcher lives in the host (the desktop shell's `ShellLauncherService`, or a
|
|
2535
|
+
* remote's own router). The host provides this token; when absent, a `flyos:`
|
|
2536
|
+
* click is a no-op (the link is non-routable in a bare browser anyway).
|
|
2537
|
+
*
|
|
2538
|
+
* WHY THIS LIVES IN THE CORE PACKAGE, NOT `@flyos/design-system-editor`
|
|
2539
|
+
* (its original home, moved 2026-08-16):
|
|
2540
|
+
*
|
|
2541
|
+
* 1. Weight — the token is the editor package's HOST-INTEGRATION seam, so
|
|
2542
|
+
* hosts must import it eagerly to provide it (the shell does, from
|
|
2543
|
+
* `app.config.ts`). When it lived in the editor barrel that one value
|
|
2544
|
+
* import dragged the whole Tiptap/KaTeX stack into every boot.
|
|
2545
|
+
* 2. Identity — the core package is the federation-shared singleton with one
|
|
2546
|
+
* instance everywhere, so `provide` and `inject` always see the SAME token
|
|
2547
|
+
* object. The editor package is deliberately NOT a shared singleton
|
|
2548
|
+
* (remotes may bundle their own copy), and an injection token defined
|
|
2549
|
+
* there splits into per-copy identities across the federation boundary —
|
|
2550
|
+
* a provider under one identity is invisible to an `inject` under another.
|
|
2551
|
+
*
|
|
2552
|
+
* `@flyos/design-system-editor` re-exports both names, so existing imports
|
|
2553
|
+
* from the editor barrel keep compiling and — because the re-export aliases
|
|
2554
|
+
* THIS object — share this single identity.
|
|
2555
|
+
*/
|
|
2556
|
+
type EntityLinkLauncher = (target: {
|
|
2557
|
+
readonly appId: string;
|
|
2558
|
+
readonly route: string;
|
|
2559
|
+
readonly kind: string;
|
|
2560
|
+
readonly id: string;
|
|
2561
|
+
}) => void;
|
|
2562
|
+
declare const ENTITY_LINK_LAUNCHER: InjectionToken<EntityLinkLauncher>;
|
|
2563
|
+
|
|
2516
2564
|
/**
|
|
2517
2565
|
* Per-window publisher handle returned by {@link FlyWindowHelpService.forWindow}.
|
|
2518
2566
|
* Bound to a single window id; keep the handle and call {@link setHint} as the
|
|
@@ -2879,6 +2927,18 @@ interface LoadRemoteStylesOptions {
|
|
|
2879
2927
|
* first paint on it. Fail-soft: timeouts and load errors still resolve.
|
|
2880
2928
|
*/
|
|
2881
2929
|
awaitApplied?: boolean;
|
|
2930
|
+
/**
|
|
2931
|
+
* Short-circuit when this appId's stylesheet element is ALREADY in the
|
|
2932
|
+
* document: honour `awaitApplied` against the existing element and skip
|
|
2933
|
+
* re-discovery entirely. Without this every call re-fetches the remote's
|
|
2934
|
+
* `index.html` (deliberately uncached, so hot-deploys are picked up) even
|
|
2935
|
+
* when the boot warm applied the stylesheet milliseconds earlier — on the
|
|
2936
|
+
* deep-link boot that re-fetch was a measured ~300 ms serialized straight
|
|
2937
|
+
* into the LCP window. The window-open path passes this; long-session
|
|
2938
|
+
* staleness is covered by the chunk-404 reload-once self-heal, which a stale
|
|
2939
|
+
* stylesheet rides too.
|
|
2940
|
+
*/
|
|
2941
|
+
preferApplied?: boolean;
|
|
2882
2942
|
}
|
|
2883
2943
|
/**
|
|
2884
2944
|
* Injects the remote's stylesheet into `document.head`.
|
|
@@ -2906,6 +2966,34 @@ interface LoadRemoteStylesOptions {
|
|
|
2906
2966
|
* element content so idempotency checks can compare the URL without parsing CSS.
|
|
2907
2967
|
*/
|
|
2908
2968
|
declare function loadRemoteStyles(appId: string, remoteBaseUrl: string, opts?: LoadRemoteStylesOptions): Promise<void>;
|
|
2969
|
+
/**
|
|
2970
|
+
* Warms a remote's stylesheet into the HTTP cache WITHOUT applying it.
|
|
2971
|
+
*
|
|
2972
|
+
* Discovery is identical to {@link loadRemoteStyles} (fetch the remote's
|
|
2973
|
+
* `index.html`, scan for the hashed stylesheet, validate the href), but the
|
|
2974
|
+
* CSS is then fetched with a plain `fetch()` and the body discarded — nothing
|
|
2975
|
+
* is injected into `document.head`.
|
|
2976
|
+
*
|
|
2977
|
+
* Why this exists: applying a stylesheet registers its `@font-face` rules
|
|
2978
|
+
* document-wide, and the browser then downloads every face some text in the
|
|
2979
|
+
* document matches. The shell's deferred warm-up used to APPLY every
|
|
2980
|
+
* registered-but-unopened remote's stylesheet, which on a Circles deep link
|
|
2981
|
+
* pulled Thoughts' self-hosted Inter + Noto Kufi woff2 (~71 KB) into the LCP
|
|
2982
|
+
* window — for an app with no open window (stg trace, 2026-08-15). A cache
|
|
2983
|
+
* prefetch keeps the later real apply (window open, `loadRemoteStyles` with
|
|
2984
|
+
* `awaitApplied`) near-instant while deferring the font cost to the first
|
|
2985
|
+
* open, where the faces are actually about to be used.
|
|
2986
|
+
*
|
|
2987
|
+
* The fetch uses `mode: 'cors'` + `credentials: 'omit'` so its cache entry
|
|
2988
|
+
* matches the apply path's `<link crossorigin="anonymous">` request. (The
|
|
2989
|
+
* legacy `<style>@import` fallback path is no-cors and would not hit this
|
|
2990
|
+
* entry — modern browsers all take the `link[layer]` path, so the fallback
|
|
2991
|
+
* merely re-fetches, same as before.)
|
|
2992
|
+
*
|
|
2993
|
+
* Fail-soft and idempotent: errors are swallowed (the open path retries
|
|
2994
|
+
* loudly), and an already-applied appId is a no-op.
|
|
2995
|
+
*/
|
|
2996
|
+
declare function prefetchRemoteStyles(appId: string, remoteBaseUrl: string): Promise<void>;
|
|
2909
2997
|
/**
|
|
2910
2998
|
* Removes the injected stylesheet element (either `<link>` or `<style>`) for
|
|
2911
2999
|
* `appId` from `document.head` and clears all internal state for this appId.
|
|
@@ -5235,7 +5323,7 @@ declare class FlyDrawerComponent {
|
|
|
5235
5323
|
* downstream (the panel class, the sheet's own geometry) reads THIS, never the raw
|
|
5236
5324
|
* input, so `auto` is resolved in exactly one place.
|
|
5237
5325
|
*/
|
|
5238
|
-
readonly resolvedVariant: _angular_core.Signal<"
|
|
5326
|
+
readonly resolvedVariant: _angular_core.Signal<"sheet" | "side">;
|
|
5239
5327
|
/** Size/side classes as an ngClass map (kept off the `[class]` string binding,
|
|
5240
5328
|
* which can race the leaving toggle and stutter the animation). */
|
|
5241
5329
|
readonly panelClass: _angular_core.Signal<{
|
|
@@ -12507,6 +12595,6 @@ declare const AUDIENCE_ERROR_CODES: {
|
|
|
12507
12595
|
};
|
|
12508
12596
|
type AudienceErrorCode = (typeof AUDIENCE_ERROR_CODES)[keyof typeof AUDIENCE_ERROR_CODES];
|
|
12509
12597
|
|
|
12510
|
-
export { AGENT_DRAG_MIME, AGENT_PAYLOAD_VERSION, APP_LOOKUP, AUDIENCE_ERROR_CODES, AUDIENCE_LIMITS, AUDIENCE_PRESETS, AUDIENCE_TERM_KINDS, AgentActionBus, AgentActionUnsupportedDispatchError, AgentCommandRegistry, AgentDropRegistry, AgentFlightAnimator, AgentLookupRegistry, AgentPayloadOversizeError, AudienceBuilderComponent, AuthService, BilingualFieldComponent, CRON_MODES, CRON_WEEKDAYS, ContextMenuComponent, DEFAULT_AGENT_PAYLOAD_LIMITS, DEFAULT_FLY_THEME_MODE, DS_BASELINE_LOCALES, DashboardKpiComponent, DialogResult, EntityLookupComponent, FLYOS_LAUNCH_EVENT, FLYOS_LAUNCH_REQUEST_EVENT, FLYOS_REMOTE_ROUTE_EVENT, FLY_ACCENT_PROPERTY, FLY_ADMIN_ROLES, FLY_CHUNK_RELOAD_FLAG, FLY_COMPACT_THRESHOLD, FLY_COUNTRIES, FLY_EMOJI_BY_ID, FLY_EMOJI_CATEGORIES, FLY_EMOJI_CATEGORY_BY_ID, FLY_EMOJI_DEFAULT_CATEGORIES, FLY_EMOJI_PACK, FLY_EMOJI_PACK_MISSING_MESSAGE, FLY_EMOJI_PREVIEW_COUNT, FLY_EMPTY_VALUE, FLY_LOCALE_CATALOG, FLY_MAGIC_BAR_EVENT, FLY_MAGIC_BAR_ICONS, FLY_MAGIC_BAR_STORE_KEY, FLY_NF_CACHE_HEAL_FLAG, FLY_RELOAD_DEBOUNCE_MS, FLY_RELOAD_REARM_MS, FLY_REMOTE_BASE_PATH, FLY_REMOTE_CONTEXT_EVENT, FLY_REMOTE_CONTEXT_STORE_KEY, FLY_REMOTE_ROUTES, FLY_SCAN_PENDING_DEFAULT_DELAY_MS, FLY_SCAN_PENDING_MAX_RETRIES, FLY_SCAN_PENDING_STATUS, FLY_SEARCH_DEBOUNCE_MS, FLY_SKIN_TONES, FLY_STANDALONE_AUTH_CONFIG, FLY_THEME_MODE_IDS, FLY_VIEWPORT_IS_MOBILE, FLY_WINDOW_HELP_HINT_EVENT, FLY_WINDOW_PAGE_TITLE_EVENT, FlyAchievementProgressComponent, FlyActionMenuComponent, FlyActionStackComponent, FlyAgentDraggableDirective, FlyAnimatedEmojiComponent, FlyAppHomeComponent, FlyAppTopbarComponent, FlyAuthLiveRefresh, FlyBadgeWallComponent, FlyBlockUiComponent, FlyBreadcrumbComponent, FlyButtonComponent, FlyBytesPipe, FlyCaptchaComponent, FlyCardActionsComponent, FlyCardBodyComponent, FlyCardComponent, FlyCardFooterComponent, FlyCardGridComponent, FlyCardMediaComponent, FlyCardMetaComponent, FlyCardStatusComponent, FlyCardTitleComponent, FlyCellDirective, FlyCheckboxComponent, FlyChipComponent, FlyChunkReloadErrorHandler, FlyClickOutsideDirective, FlyCollapsibleComponent, FlyCommentThreadComponent, FlyCompactNumberPipe, FlyConfirmDialogComponent, FlyControlDirective, FlyCronBuilderComponent, FlyCurrencySelectorComponent, FlyDataTableComponent, FlyDatePipe, FlyDateTimePipe, FlyDebouncer, FlyDecimalNumberPipe, FlyDetailCardComponent, FlyDetailShellComponent, FlyDrawerComponent, FlyDurationPipe, FlyDynamicFormComponent, FlyEmojiPickerComponent, FlyFieldComponent, FlyFileDownloadService, FlyFileUploadComponent, FlyFilterPanelComponent, FlyFormBannerComponent, FlyFormFooterComponent, FlyFormGridComponent, FlyFormSectionComponent, FlyFullNumberPipe, FlyGanttComponent, FlyHubClient, FlyIconButtonComponent, FlyIfAdminDirective, FlyIfRoleDirective, FlyImageUploadComponent, FlyLeaderboardComponent, FlyMagicActionsComponent, FlyMetaListComponent, FlyModalComponent, FlyModerationQueueComponent, FlyModuleIconDirective, FlyMoneyPipe, FlyPaginationComponent, FlyPeoplePickerComponent, FlyPointsTierComponent, FlyProgressComponent, FlyRelativeTimePipe, FlyRemoteContextService, FlyRemoteRouter, FlyRemoteRouterOutletComponent, FlySearchInputComponent, FlySectionHeaderComponent, FlySecureSrcDirective, FlySegmentedComponent, FlySelectComponent, FlySkeletonComponent, FlySliderComponent, FlySparklineComponent, FlySpinnerComponent, FlyStandaloneAuthCallbackComponent, FlyStandaloneAuthService, FlyStateMessageComponent, FlyDynamicFormComponent as FlySurveyFormComponent, FlyTabComponent, FlyTabsComponent, FlyTagsInputComponent, FlyThemeService, FlyTimePipe, FlyToastService, FlyToggleComponent, FlyTooltipDirective, FlyTreeNavComponent, FlyTypeaheadComponent, FlyUserDirectoryService, FlyWindowHelpService, FlyWindowTitleService, FlyosPendingLaunchesGlobalKey, FlyosShellHandlesLaunchRequestsGlobalKey, FlyosShellOwnsHistoryGlobalKey, GANTT_ZOOMS, I18nService, LAUNCH_CONTEXT, MAGIC_BAR_SEARCH_WIDTH_DEFAULT, MAGIC_BAR_SEARCH_WIDTH_MAX, MAGIC_BAR_SEARCH_WIDTH_MIN, MagicBarRegistry, MessageBoxButtons, MessageBoxComponent, MessageBoxIcon, MessageBoxService, MockAuthService, NOVA_PRIORITY_TONE, NOVA_STATUS_TONE, NOVA_TONE_FALLBACK, OverlayStack, PRESENCE_COLORS, PageHeaderComponent, RTL_LOCALE_SET, SHARE_ORG_CHART_SYSTEM_KEY_APPS, SHARE_ORG_CHART_SYSTEM_KEY_DEFAULT, SHARE_PANEL_DEFAULT_FILE_LEVELS, STATE_DEFAULT_ICONS, STATE_DEFAULT_MESSAGE_KEYS, STEP_UP_CODE, STEP_UP_REAUTH_HANDLER, STEP_UP_RETURN_KEY, SUPPORTED_AGENT_PAYLOAD_VERSIONS, SharePanelComponent, SourceAppResolver, StandaloneWindowManagerService, StatusBadgeComponent, StepUpService, ToastHostComponent, TranslatePipe, WINDOW_DATA, WINDOW_HELP_HINT, WindowManagerService, applySkinTone, applySuggestion, ariaSort, buildCron, canConfirm, canGoNext, canGoPrev, captureFocus, clampMagicBarSearchWidth, clampPage, clampSliderValue, connectRemoteLaunch, enterActivatesNatively, filterGroup, filterSuggestions, findLocaleByDialect, findLocaleByPrefix, firstEnabledIndex, firstModuleIndex, flattenModules, flyAdminGuard, flyApiErrorMessage, flyCaptchaBase64Utf8, flyCaptchaBuildToken, flyCaptchaSha256Hex, flyCompactNumber, flyDebounced, flyDecimalNumber, flyDownloadBlob, flyDuration, flyEmojiFor, flyEmojiIsTonable, flyEmojiPackUrl, flyExportFileName, flyFirstEnabledIndex, flyFormatBytes, flyFormatDate, flyFormatDateTime, flyFormatMoney, flyFormatTime, flyFullNumber, flyNextEnabledIndex, flyNextSegmentIndex, flyRelativeTime, flyResolveActiveTab, flyRoleGuard, flyScanPendingDelayMs, flyScanRetry, flySignedCompact, flySkinToneLabelKey, flyStandaloneAuthGuard, flyStandaloneAuthInterceptor, flyToDateOnly, flyToPage, flyUnwrap, flyUnwrapLenient, hasAnyRoleIn, healNativeFederationCacheOnce, initialExpanded, isAccentColor, isChunkLoadError, isFlyAuthStorePopulated, isNativeFederationCacheError, isRtlLocale, isRtlLocaleEntry, isValidCron, isValidSingleField, loadRemoteStyles, magicBarOwnerKey, magicBarSearchText, matchFlyRoutePattern, nextEnabledIndex, nextModuleIndex, nextSegmentIndex, nextSort, normalizeFlyTheme, normalizeRoles, novaPriorityToneVar, novaStatusToneVar, overlayStack, parseCron, parseStepUpChallenge, parseTags, presenceColorFor, printConsoleSecurityWarning, provideFlyChunkReloadRecovery, provideFlyEmojiPack, provideFlyStandaloneAuth, reloadOnceForChunkError, requestAppLaunch, resolveActiveModule, resolveActiveSection, resolveActiveTab, resolveCellValue, resolveStateIcon, resolveStateMessageKey, restoreFocus, sameTags, sectionHintKey, sectionLayout, sliderTrackGradient, sparklinePath, sparklinePoints, stepUpInterceptor, stepUpReturnKey, trimAgentPayload, trimAgentString, unloadRemoteStyles, utf8ByteLength, validateAgentPayload, warnIfEmbeddedSessionMissing };
|
|
12511
|
-
export type { ActionMenuItem, AgentAction, AgentActionDispatch, AgentActionVerb, AgentChipHostInputs, AgentCommand, AgentCommandContextBinding, AgentCommandHandle, AgentCommandRegistration, AgentCommandScope, AgentCommandSlashSpec, AgentDragPayload, AgentDraggableItem, AgentDropChipMode, AgentDropRendererRegistration, AgentEnvelopeAttachment, AgentMcpScope, AgentMessageEnvelope, AgentPayloadLimits, AgentPayloadValidationResult, AppEveryonePrincipal, AppEveryoneTerm, AppLookup, AppLookupEntry, AudienceEditTarget, AudienceErrorCode, AudienceFilter, AudienceOptions, AudiencePresetKind, AudienceTerm, AudienceTermKind, BreadcrumbItem, ButtonSize, ButtonVariant, CardDensity, CardLayout, ChartTerm, ChildWindowData, ChipTone, ConfirmKind, ConnectRemoteLaunchOptions, ContextMenuAlign, ContextMenuItem, ContextMenuSection, CronAdvancedFieldDef, CronMode, CronParts, CronWeekday, DesktopApp, DesktopAppCategory, DesktopAppKind, DetailSection, DialogResultWithAcknowledgement, EmbeddedSessionProbe, EntityLinkSelection, FilterGroup, FlyAchievementRow, FlyApiError, FlyApiResponse, FlyAppHomeLayout, FlyAppModule, FlyAppModuleSection, FlyAuthRefreshPayload, FlyAuthStoreReadable, FlyBadgeTile, FlyBreadcrumbItem, FlyCaptchaChallenge, FlyCaptchaSolution, FlyCaptchaState, FlyCellContext, FlyColumn, FlyColumnKind, FlyComment, FlyCommentDeleteRequest, FlyCommentEditRequest, FlyCommentLoadMoreRequest, FlyCommentLoadRepliesRequest, FlyCommentLockToggleRequest, FlyCommentPage, FlyCommentReportReason, FlyCommentReportRequest, FlyCommentReportStatus, FlyCommentSubmitRequest, FlyCountry, FlyCurrency, FlyCurrencyFetchFn, FlyCurrencySelectorMode, FlyCurrencySelectorValue, FlyDrawerBodyPadding, FlyDrawerPosition, FlyDrawerSide, FlyDrawerSize, FlyDrawerVariant, FlyEmojiCategory, FlyEmojiCell, FlyEmojiEntry, FlyEmojiPack, FlyEmojiPackEntry, FlyEmojiPackManifest, FlyEmojiPickerSize, FlyEmojiPickerTab, FlyEmojiSection, FlyFileInfo, FlyFileSelection, FlyFormAnswer, FlyFormAnswerValue, FlyFormDefinition, FlyFormFieldOptions, FlyFormOption, FlyFormQuestion, FlyFormQuestionType, FlyFormScoreDisplay, FlyFormatMoneyOptions, FlyLaunchEventDetail, FlyLaunchRequestDetail, FlyLeaderboardRow, FlyLiveRefreshOptions, FlyLocaleEntry, FlyMagicBarIconName, FlyMetaItem, FlyModerationLoadPageRequest, FlyModerationLockThreadRequest, FlyModerationOpenSubjectRequest, FlyModerationReport, FlyModerationReportPage, FlyModerationResolutionStatus, FlyModerationResolveRequest, FlyMoneyDisplay, FlyNavigableItem, FlyPageMeta, FlyPageResult, FlyPaged, FlyPeoplePickerMode, FlyPeoplePickerOption, FlyPeopleSearchFn, FlyPointsSummary, FlyRemoteContext, FlyRemoteEagerRoute, FlyRemoteLazyRoute, FlyRemoteLoadedComponent, FlyRemoteMatch, FlyRemoteRoute, FlyRemoteRouteEventDetail, FlySearchExpandTrigger, FlySearchInputSize, FlySecureSrcState, FlySelectOption, FlySelectValue, FlySkeletonAnimation, FlySkeletonLayout, FlySkeletonShape, FlySkinTone, FlySort, FlyStandaloneAuthConfig, FlyFileSelection as FlySurveyFileSelection, FlyFormAnswer as FlySurveyFormAnswer, FlyFormAnswerValue as FlySurveyFormAnswerValue, FlyFormDefinition as FlySurveyFormDefinition, FlyFormFieldOptions as FlySurveyFormFieldOptions, FlyFormOption as FlySurveyFormOption, FlyFormQuestion as FlySurveyFormQuestion, FlyFormQuestionType as FlySurveyQuestionType, FlyThemeMode, FlyTooltipPlacement, FlyTreeNavNode, FlyTypeaheadOption, FlyWindowHelpHintEventDetail, FlyWindowHelpPublisher, FlyWindowPageTitleEventDetail, FlyWindowTitlePublisher, FlyosPendingLaunches, FocusRestore, FormBannerKind, GanttDependency, GanttDependencyCreate, GanttRow, GanttRowDatesChange, GanttRowKind, GanttZoom, IconButtonVariant, LaunchContext, LoadBundleOptions, LoadRemoteStylesOptions, LookupDescriptor, LookupHandle, LookupRegistration, LookupResult, LookupSearch, MagicBarAction, MagicBarActionKind, MagicBarActionSpec, MagicBarActionView, MagicBarContribution, MagicBarGroup, MagicBarGroupSpec, MagicBarGroupView, MagicBarOwnerRef, MagicBarPublisher, MagicBarRadioMenu, MagicBarRadioMenuSpec, MagicBarRadioMenuView, MagicBarRadioOption, MagicBarSearch, MagicBarSearchSeed, MagicBarSearchSpec, MagicBarSearchView, MagicBarTextParams, MagicBarTone, MagicBarView, MessageBoxButton, MessageBoxDontAskAgainConfig, MessageBoxOptions, MessageBoxOptionsWithAcknowledgement, MockAuthConfig, OpenWindowOptions, OuPrincipal, OuTerm, OverlayHandle, PageHeaderVariant, PresetTerm, ProgressTone, RemoteAppDef, RequestAppLaunchOptions, RoleOuLookupRow, RolePrincipal, RolesTerm, SegmentedOption, ShareOrgChartOption, ShareOuNode, SharePanelLevelOption, SharePermissionEntry, SharePrincipal, SharePrincipalKind, ShareUserResult, StateMessageKind, StepUpChallenge, StepUpReauthHandler, StepUpReauthRequest, TabsVariant, ToastAction, ToastEntry, ToastOptions, ToastVariant, User, UserPrincipal, UsersTerm, WindowHelpHint, WindowInstance, WindowState };
|
|
12598
|
+
export { AGENT_DRAG_MIME, AGENT_PAYLOAD_VERSION, APP_LOOKUP, AUDIENCE_ERROR_CODES, AUDIENCE_LIMITS, AUDIENCE_PRESETS, AUDIENCE_TERM_KINDS, AgentActionBus, AgentActionUnsupportedDispatchError, AgentCommandRegistry, AgentDropRegistry, AgentFlightAnimator, AgentLookupRegistry, AgentPayloadOversizeError, AudienceBuilderComponent, AuthService, BilingualFieldComponent, CRON_MODES, CRON_WEEKDAYS, ContextMenuComponent, DEFAULT_AGENT_PAYLOAD_LIMITS, DEFAULT_FLY_THEME_MODE, DS_BASELINE_LOCALES, DashboardKpiComponent, DialogResult, ENTITY_LINK_LAUNCHER, EntityLookupComponent, FLYOS_LAUNCH_EVENT, FLYOS_LAUNCH_REQUEST_EVENT, FLYOS_REMOTE_ROUTE_EVENT, FLY_ACCENT_PROPERTY, FLY_ADMIN_ROLES, FLY_CHUNK_RELOAD_FLAG, FLY_COMPACT_THRESHOLD, FLY_COUNTRIES, FLY_EMOJI_BY_ID, FLY_EMOJI_CATEGORIES, FLY_EMOJI_CATEGORY_BY_ID, FLY_EMOJI_DEFAULT_CATEGORIES, FLY_EMOJI_PACK, FLY_EMOJI_PACK_MISSING_MESSAGE, FLY_EMOJI_PREVIEW_COUNT, FLY_EMPTY_VALUE, FLY_LOCALE_CATALOG, FLY_MAGIC_BAR_EVENT, FLY_MAGIC_BAR_ICONS, FLY_MAGIC_BAR_STORE_KEY, FLY_NF_CACHE_HEAL_FLAG, FLY_RELOAD_DEBOUNCE_MS, FLY_RELOAD_REARM_MS, FLY_REMOTE_BASE_PATH, FLY_REMOTE_CONTEXT_EVENT, FLY_REMOTE_CONTEXT_STORE_KEY, FLY_REMOTE_ROUTES, FLY_SCAN_PENDING_DEFAULT_DELAY_MS, FLY_SCAN_PENDING_MAX_RETRIES, FLY_SCAN_PENDING_STATUS, FLY_SEARCH_DEBOUNCE_MS, FLY_SKIN_TONES, FLY_STANDALONE_AUTH_CONFIG, FLY_THEME_MODE_IDS, FLY_VIEWPORT_IS_MOBILE, FLY_WINDOW_HELP_HINT_EVENT, FLY_WINDOW_PAGE_TITLE_EVENT, FlyAchievementProgressComponent, FlyActionMenuComponent, FlyActionStackComponent, FlyAgentDraggableDirective, FlyAnimatedEmojiComponent, FlyAppHomeComponent, FlyAppTopbarComponent, FlyAuthLiveRefresh, FlyBadgeWallComponent, FlyBlockUiComponent, FlyBreadcrumbComponent, FlyButtonComponent, FlyBytesPipe, FlyCaptchaComponent, FlyCardActionsComponent, FlyCardBodyComponent, FlyCardComponent, FlyCardFooterComponent, FlyCardGridComponent, FlyCardMediaComponent, FlyCardMetaComponent, FlyCardStatusComponent, FlyCardTitleComponent, FlyCellDirective, FlyCheckboxComponent, FlyChipComponent, FlyChunkReloadErrorHandler, FlyClickOutsideDirective, FlyCollapsibleComponent, FlyCommentThreadComponent, FlyCompactNumberPipe, FlyConfirmDialogComponent, FlyControlDirective, FlyCronBuilderComponent, FlyCurrencySelectorComponent, FlyDataTableComponent, FlyDatePipe, FlyDateTimePipe, FlyDebouncer, FlyDecimalNumberPipe, FlyDetailCardComponent, FlyDetailShellComponent, FlyDrawerComponent, FlyDurationPipe, FlyDynamicFormComponent, FlyEmojiPickerComponent, FlyFieldComponent, FlyFileDownloadService, FlyFileUploadComponent, FlyFilterPanelComponent, FlyFormBannerComponent, FlyFormFooterComponent, FlyFormGridComponent, FlyFormSectionComponent, FlyFullNumberPipe, FlyGanttComponent, FlyHubClient, FlyIconButtonComponent, FlyIfAdminDirective, FlyIfRoleDirective, FlyImageUploadComponent, FlyLeaderboardComponent, FlyMagicActionsComponent, FlyMetaListComponent, FlyModalComponent, FlyModerationQueueComponent, FlyModuleIconDirective, FlyMoneyPipe, FlyPaginationComponent, FlyPeoplePickerComponent, FlyPointsTierComponent, FlyProgressComponent, FlyRelativeTimePipe, FlyRemoteContextService, FlyRemoteRouter, FlyRemoteRouterOutletComponent, FlySearchInputComponent, FlySectionHeaderComponent, FlySecureSrcDirective, FlySegmentedComponent, FlySelectComponent, FlySkeletonComponent, FlySliderComponent, FlySparklineComponent, FlySpinnerComponent, FlyStandaloneAuthCallbackComponent, FlyStandaloneAuthService, FlyStateMessageComponent, FlyDynamicFormComponent as FlySurveyFormComponent, FlyTabComponent, FlyTabsComponent, FlyTagsInputComponent, FlyThemeService, FlyTimePipe, FlyToastService, FlyToggleComponent, FlyTooltipDirective, FlyTreeNavComponent, FlyTypeaheadComponent, FlyUserDirectoryService, FlyWindowHelpService, FlyWindowTitleService, FlyosPendingLaunchesGlobalKey, FlyosShellHandlesLaunchRequestsGlobalKey, FlyosShellOwnsHistoryGlobalKey, GANTT_ZOOMS, I18nService, LAUNCH_CONTEXT, MAGIC_BAR_SEARCH_WIDTH_DEFAULT, MAGIC_BAR_SEARCH_WIDTH_MAX, MAGIC_BAR_SEARCH_WIDTH_MIN, MagicBarRegistry, MessageBoxButtons, MessageBoxComponent, MessageBoxIcon, MessageBoxService, MockAuthService, NOVA_PRIORITY_TONE, NOVA_STATUS_TONE, NOVA_TONE_FALLBACK, OverlayStack, PRESENCE_COLORS, PageHeaderComponent, RTL_LOCALE_SET, SHARE_ORG_CHART_SYSTEM_KEY_APPS, SHARE_ORG_CHART_SYSTEM_KEY_DEFAULT, SHARE_PANEL_DEFAULT_FILE_LEVELS, STATE_DEFAULT_ICONS, STATE_DEFAULT_MESSAGE_KEYS, STEP_UP_CODE, STEP_UP_REAUTH_HANDLER, STEP_UP_RETURN_KEY, SUPPORTED_AGENT_PAYLOAD_VERSIONS, SharePanelComponent, SourceAppResolver, StandaloneWindowManagerService, StatusBadgeComponent, StepUpService, ToastHostComponent, TranslatePipe, WINDOW_DATA, WINDOW_HELP_HINT, WindowManagerService, applySkinTone, applySuggestion, ariaSort, buildCron, canConfirm, canGoNext, canGoPrev, captureFocus, clampMagicBarSearchWidth, clampPage, clampSliderValue, connectRemoteLaunch, enterActivatesNatively, filterGroup, filterSuggestions, findLocaleByDialect, findLocaleByPrefix, firstEnabledIndex, firstModuleIndex, flattenModules, flyAdminGuard, flyApiErrorMessage, flyCaptchaBase64Utf8, flyCaptchaBuildToken, flyCaptchaSha256Hex, flyCompactNumber, flyDebounced, flyDecimalNumber, flyDownloadBlob, flyDuration, flyEmojiFor, flyEmojiIsTonable, flyEmojiPackUrl, flyExportFileName, flyFirstEnabledIndex, flyFormatBytes, flyFormatDate, flyFormatDateTime, flyFormatMoney, flyFormatTime, flyFullNumber, flyNextEnabledIndex, flyNextSegmentIndex, flyRelativeTime, flyResolveActiveTab, flyRoleGuard, flyScanPendingDelayMs, flyScanRetry, flySignedCompact, flySkinToneLabelKey, flyStandaloneAuthGuard, flyStandaloneAuthInterceptor, flyToDateOnly, flyToPage, flyUnwrap, flyUnwrapLenient, hasAnyRoleIn, healNativeFederationCacheOnce, initialExpanded, isAccentColor, isChunkLoadError, isFlyAuthStorePopulated, isNativeFederationCacheError, isRtlLocale, isRtlLocaleEntry, isValidCron, isValidSingleField, loadRemoteStyles, magicBarOwnerKey, magicBarSearchText, matchFlyRoutePattern, nextEnabledIndex, nextModuleIndex, nextSegmentIndex, nextSort, normalizeFlyTheme, normalizeRoles, novaPriorityToneVar, novaStatusToneVar, overlayStack, parseCron, parseStepUpChallenge, parseTags, prefetchRemoteStyles, presenceColorFor, printConsoleSecurityWarning, provideFlyChunkReloadRecovery, provideFlyEmojiPack, provideFlyStandaloneAuth, reloadOnceForChunkError, requestAppLaunch, resolveActiveModule, resolveActiveSection, resolveActiveTab, resolveCellValue, resolveStateIcon, resolveStateMessageKey, restoreFocus, sameTags, sectionHintKey, sectionLayout, sliderTrackGradient, sparklinePath, sparklinePoints, stepUpInterceptor, stepUpReturnKey, trimAgentPayload, trimAgentString, unloadRemoteStyles, utf8ByteLength, validateAgentPayload, warnIfEmbeddedSessionMissing };
|
|
12599
|
+
export type { ActionMenuItem, AgentAction, AgentActionDispatch, AgentActionVerb, AgentChipHostInputs, AgentCommand, AgentCommandContextBinding, AgentCommandHandle, AgentCommandRegistration, AgentCommandScope, AgentCommandSlashSpec, AgentDragPayload, AgentDraggableItem, AgentDropChipMode, AgentDropRendererRegistration, AgentEnvelopeAttachment, AgentMcpScope, AgentMessageEnvelope, AgentPayloadLimits, AgentPayloadValidationResult, AppEveryonePrincipal, AppEveryoneTerm, AppLookup, AppLookupEntry, AudienceEditTarget, AudienceErrorCode, AudienceFilter, AudienceOptions, AudiencePresetKind, AudienceTerm, AudienceTermKind, BreadcrumbItem, ButtonSize, ButtonVariant, CardDensity, CardLayout, ChartTerm, ChildWindowData, ChipTone, ConfirmKind, ConnectRemoteLaunchOptions, ContextMenuAlign, ContextMenuItem, ContextMenuSection, CronAdvancedFieldDef, CronMode, CronParts, CronWeekday, DesktopApp, DesktopAppCategory, DesktopAppKind, DetailSection, DialogResultWithAcknowledgement, EmbeddedSessionProbe, EntityLinkLauncher, EntityLinkSelection, FilterGroup, FlyAchievementRow, FlyApiError, FlyApiResponse, FlyAppHomeLayout, FlyAppModule, FlyAppModuleSection, FlyAuthRefreshPayload, FlyAuthStoreReadable, FlyBadgeTile, FlyBreadcrumbItem, FlyCaptchaChallenge, FlyCaptchaSolution, FlyCaptchaState, FlyCellContext, FlyColumn, FlyColumnKind, FlyComment, FlyCommentDeleteRequest, FlyCommentEditRequest, FlyCommentLoadMoreRequest, FlyCommentLoadRepliesRequest, FlyCommentLockToggleRequest, FlyCommentPage, FlyCommentReportReason, FlyCommentReportRequest, FlyCommentReportStatus, FlyCommentSubmitRequest, FlyCountry, FlyCurrency, FlyCurrencyFetchFn, FlyCurrencySelectorMode, FlyCurrencySelectorValue, FlyDrawerBodyPadding, FlyDrawerPosition, FlyDrawerSide, FlyDrawerSize, FlyDrawerVariant, FlyEmojiCategory, FlyEmojiCell, FlyEmojiEntry, FlyEmojiPack, FlyEmojiPackEntry, FlyEmojiPackManifest, FlyEmojiPickerSize, FlyEmojiPickerTab, FlyEmojiSection, FlyFileInfo, FlyFileSelection, FlyFormAnswer, FlyFormAnswerValue, FlyFormDefinition, FlyFormFieldOptions, FlyFormOption, FlyFormQuestion, FlyFormQuestionType, FlyFormScoreDisplay, FlyFormatMoneyOptions, FlyLaunchEventDetail, FlyLaunchRequestDetail, FlyLeaderboardRow, FlyLiveRefreshOptions, FlyLocaleEntry, FlyMagicBarIconName, FlyMetaItem, FlyModerationLoadPageRequest, FlyModerationLockThreadRequest, FlyModerationOpenSubjectRequest, FlyModerationReport, FlyModerationReportPage, FlyModerationResolutionStatus, FlyModerationResolveRequest, FlyMoneyDisplay, FlyNavigableItem, FlyPageMeta, FlyPageResult, FlyPaged, FlyPeoplePickerMode, FlyPeoplePickerOption, FlyPeopleSearchFn, FlyPointsSummary, FlyRemoteContext, FlyRemoteEagerRoute, FlyRemoteLazyRoute, FlyRemoteLoadedComponent, FlyRemoteMatch, FlyRemoteRoute, FlyRemoteRouteEventDetail, FlySearchExpandTrigger, FlySearchInputSize, FlySecureSrcState, FlySelectOption, FlySelectValue, FlySkeletonAnimation, FlySkeletonLayout, FlySkeletonShape, FlySkinTone, FlySort, FlyStandaloneAuthConfig, FlyFileSelection as FlySurveyFileSelection, FlyFormAnswer as FlySurveyFormAnswer, FlyFormAnswerValue as FlySurveyFormAnswerValue, FlyFormDefinition as FlySurveyFormDefinition, FlyFormFieldOptions as FlySurveyFormFieldOptions, FlyFormOption as FlySurveyFormOption, FlyFormQuestion as FlySurveyFormQuestion, FlyFormQuestionType as FlySurveyQuestionType, FlyThemeMode, FlyTooltipPlacement, FlyTreeNavNode, FlyTypeaheadOption, FlyWindowHelpHintEventDetail, FlyWindowHelpPublisher, FlyWindowPageTitleEventDetail, FlyWindowTitlePublisher, FlyosPendingLaunches, FocusRestore, FormBannerKind, GanttDependency, GanttDependencyCreate, GanttRow, GanttRowDatesChange, GanttRowKind, GanttZoom, IconButtonVariant, LaunchContext, LoadBundleOptions, LoadRemoteStylesOptions, LookupDescriptor, LookupHandle, LookupRegistration, LookupResult, LookupSearch, MagicBarAction, MagicBarActionKind, MagicBarActionSpec, MagicBarActionView, MagicBarContribution, MagicBarGroup, MagicBarGroupSpec, MagicBarGroupView, MagicBarOwnerRef, MagicBarPublisher, MagicBarRadioMenu, MagicBarRadioMenuSpec, MagicBarRadioMenuView, MagicBarRadioOption, MagicBarSearch, MagicBarSearchSeed, MagicBarSearchSpec, MagicBarSearchView, MagicBarTextParams, MagicBarTone, MagicBarView, MessageBoxButton, MessageBoxDontAskAgainConfig, MessageBoxOptions, MessageBoxOptionsWithAcknowledgement, MockAuthConfig, OpenWindowOptions, OuPrincipal, OuTerm, OverlayHandle, PageHeaderVariant, PresetTerm, ProgressTone, RemoteAppDef, RequestAppLaunchOptions, RoleOuLookupRow, RolePrincipal, RolesTerm, SegmentedOption, ShareOrgChartOption, ShareOuNode, SharePanelLevelOption, SharePermissionEntry, SharePrincipal, SharePrincipalKind, ShareUserResult, StateMessageKind, StepUpChallenge, StepUpReauthHandler, StepUpReauthRequest, TabsVariant, ToastAction, ToastEntry, ToastOptions, ToastVariant, User, UserPrincipal, UsersTerm, WindowHelpHint, WindowInstance, WindowState };
|
|
12512
12600
|
//# sourceMappingURL=flyos-design-system.d.ts.map
|