@flyos/design-system 2.2.0 → 2.4.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 +93 -2
- 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 +75 -2
- 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 —
|
|
@@ -3004,6 +3004,79 @@ declare function prefetchRemoteStyles(appId: string, remoteBaseUrl: string): Pro
|
|
|
3004
3004
|
*/
|
|
3005
3005
|
declare function unloadRemoteStyles(appId: string): void;
|
|
3006
3006
|
|
|
3007
|
+
/**
|
|
3008
|
+
* One route→API entry of an app's declared deep-link prefetch map, as served by
|
|
3009
|
+
* `GET /api/apps/manifest` (`deepLinkPrefetch[]`). The `route` uses the same
|
|
3010
|
+
* pattern syntax as `FlyRemoteRoute.path` (literal segments + `:param`
|
|
3011
|
+
* captures); each request template's `{param}` placeholders are substituted
|
|
3012
|
+
* from the matched captures. Declared by the app at registration, validated by
|
|
3013
|
+
* the Controller, fired by the shell — the app itself only CLAIMS results.
|
|
3014
|
+
*/
|
|
3015
|
+
interface FlyDeepLinkPrefetchRoute {
|
|
3016
|
+
readonly route: string;
|
|
3017
|
+
readonly requests: readonly string[];
|
|
3018
|
+
}
|
|
3019
|
+
/**
|
|
3020
|
+
* Boot-time handoff store between the desktop shell and a deep-linked app's own
|
|
3021
|
+
* data layer — the claim side of the deep-link data head start.
|
|
3022
|
+
*
|
|
3023
|
+
* On a `?app=<id>&route=…` boot the shell matches the deep link against the
|
|
3024
|
+
* app's manifest-declared `deepLinkPrefetch` map and fires the requests the
|
|
3025
|
+
* moment the manifest resolves (inside APP_INITIALIZER, ~1 s before the
|
|
3026
|
+
* remote's root component executes), calling {@link offer} with each request's
|
|
3027
|
+
* resolved URL and its in-flight promise. When the app's route-match prefetch
|
|
3028
|
+
* later constructs the SAME URL, {@link claim} hands it the in-flight promise
|
|
3029
|
+
* instead of a cold start.
|
|
3030
|
+
*
|
|
3031
|
+
* Contract (deep-link-prefetch plan, decisions D3–D5):
|
|
3032
|
+
* - **Exact-string URL match.** The claim key is the resolved URL, byte-for-
|
|
3033
|
+
* byte. App semantics stay out of the shell; the app's own URL construction
|
|
3034
|
+
* is the join key, so drift between its API service and its manifest
|
|
3035
|
+
* declaration surfaces as a miss (see the dev warning below), never as wrong
|
|
3036
|
+
* data.
|
|
3037
|
+
* - **One-shot.** A claim removes the entry — a later navigation to the same
|
|
3038
|
+
* URL must fetch fresh, mirroring the app-side `take(id)` contract of the
|
|
3039
|
+
* round-5/6 route-match prefetch services.
|
|
3040
|
+
* - **Raw parsed JSON, or `null`.** The promise resolves to the response body
|
|
3041
|
+
* as the shell parsed it (the wire envelope — any app-side envelope-
|
|
3042
|
+
* unwrapping interceptor is bypassed on this path), or `null` on ANY
|
|
3043
|
+
* failure. It never rejects; the app treats `null` as a miss and falls back
|
|
3044
|
+
* to its own request.
|
|
3045
|
+
* - **TTL 30 s.** An entry not claimed within the TTL is dropped, so a stale
|
|
3046
|
+
* boot-time response can never serve a much-later navigation.
|
|
3047
|
+
* - **Dev drift alarm.** In dev mode, an entry that EXPIRES unclaimed logs a
|
|
3048
|
+
* `console.warn` naming the URL. That is the signature of the app changing
|
|
3049
|
+
* its URL shape without updating its declaration — without the warning the
|
|
3050
|
+
* head start silently degrades to "no benefit" (the graceful-degradation-
|
|
3051
|
+
* hides-drift class).
|
|
3052
|
+
*
|
|
3053
|
+
* Shell + remote share the ONE `@flyos/design-system` federation singleton, so
|
|
3054
|
+
* `providedIn: 'root'` makes this the same instance on both sides — the same
|
|
3055
|
+
* mechanism `AgentLookupRegistry` and `FlyRemoteRouter` rely on.
|
|
3056
|
+
*/
|
|
3057
|
+
declare class FlyDeepLinkPrefetchService {
|
|
3058
|
+
/** How long an offered entry stays claimable. */
|
|
3059
|
+
static readonly TTL_MS = 30000;
|
|
3060
|
+
private readonly entries;
|
|
3061
|
+
/**
|
|
3062
|
+
* Shell-side: stash an in-flight prefetch under its resolved URL. Re-offering
|
|
3063
|
+
* a URL replaces the previous entry (and its TTL). The promise MUST already
|
|
3064
|
+
* be failure-proof (resolve `null`, never reject) — this store never attaches
|
|
3065
|
+
* handlers of its own beyond the TTL timer.
|
|
3066
|
+
*/
|
|
3067
|
+
offer(url: string, promise: Promise<unknown>): void;
|
|
3068
|
+
/**
|
|
3069
|
+
* App-side: claim the in-flight prefetch for an EXACT URL, or `null` when
|
|
3070
|
+
* none was offered (plain boot, expired, already claimed, or URL drift).
|
|
3071
|
+
* One-shot — the entry is removed on claim.
|
|
3072
|
+
*/
|
|
3073
|
+
claim(url: string): Promise<unknown> | null;
|
|
3074
|
+
/** Offered-and-unclaimed count — a test/debug surface, not app API. */
|
|
3075
|
+
get pendingCount(): number;
|
|
3076
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlyDeepLinkPrefetchService, never>;
|
|
3077
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<FlyDeepLinkPrefetchService>;
|
|
3078
|
+
}
|
|
3079
|
+
|
|
3007
3080
|
/**
|
|
3008
3081
|
* Outlet for FlyOS-embedded routing. Renders the component associated with the
|
|
3009
3082
|
* first matching route in the consumer's `FLY_REMOTE_ROUTES` table, reacting to
|
|
@@ -12595,6 +12668,6 @@ declare const AUDIENCE_ERROR_CODES: {
|
|
|
12595
12668
|
};
|
|
12596
12669
|
type AudienceErrorCode = (typeof AUDIENCE_ERROR_CODES)[keyof typeof AUDIENCE_ERROR_CODES];
|
|
12597
12670
|
|
|
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 };
|
|
12671
|
+
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, FlyDeepLinkPrefetchService, 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 };
|
|
12672
|
+
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, FlyDeepLinkPrefetchRoute, 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 };
|
|
12600
12673
|
//# sourceMappingURL=flyos-design-system.d.ts.map
|