@flyos/design-system 3.11.0 → 3.13.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 +175 -146
- package/fesm2022/flyos-design-system.mjs.map +1 -1
- package/package.json +1 -1
- package/scss/_app-surface-tokens.scss +592 -589
- package/scss/_nova-glass.scss +575 -575
- package/scss/_nova-tokens.scss +37 -0
- package/scss/_shell-embed-bridge.scss +32 -24
- package/types/flyos-design-system.d.ts +137 -6
- package/types/flyos-design-system.d.ts.map +1 -1
package/scss/_nova-tokens.scss
CHANGED
|
@@ -226,6 +226,33 @@ html.light-theme {
|
|
|
226
226
|
--w02: rgb(0 0 0 / 2.2%);
|
|
227
227
|
--w015: rgb(0 0 0 / 1.8%);
|
|
228
228
|
|
|
229
|
+
// ── Embedded-app plate ─────────────────────────────────────────────────────
|
|
230
|
+
// The three surface steps `_shell-embed-bridge.scss` hands to a feature app
|
|
231
|
+
// running inside a shell window (`--bg-2` / `--bg-hover` / `--bg-3`). They are
|
|
232
|
+
// a token, not a `--w*` pick, because the ramp is the WRONG family here and
|
|
233
|
+
// only this theme shows it.
|
|
234
|
+
|
|
235
|
+
// A `--w*` step is an ink wash on paper the theme already owns. An embedded
|
|
236
|
+
// app's paper is a TRANSLUCENT window plate over the user's wallpaper — in
|
|
237
|
+
// this theme `rgb(255 255 255 / 60%)`, which passes a great deal of the
|
|
238
|
+
// photograph through. Washing 3% black over that does not make a card: it
|
|
239
|
+
// makes a marginally darker patch of wallpaper, so the card edge disappears
|
|
240
|
+
// and every accent on it (icon tiles, chips, cover art) competes with whatever
|
|
241
|
+
// colour the photo happens to put behind it. Measured on the Help Center
|
|
242
|
+
// guide grid: `--bg-2` resolved to `rgba(0,0,0,0.03)` and the cards read as
|
|
243
|
+
// wallpaper. Dark mode never showed it because there a 3% WHITE lift sits on
|
|
244
|
+
// a near-opaque dark plate and reads immediately.
|
|
245
|
+
|
|
246
|
+
// So in this theme a lift moves TOWARD the paper's own colour — white — which
|
|
247
|
+
// both restores the card edge and gives the wallpaper less say in the app's
|
|
248
|
+
// palette. The dark block keeps the ramp: see the note there.
|
|
249
|
+
|
|
250
|
+
// Ordering is `plate < plate-hover < plate-raised`, mirroring the dark
|
|
251
|
+
// block's `--w03 < --w05 < --w06`.
|
|
252
|
+
--embed-plate: rgb(255 255 255 / 55%);
|
|
253
|
+
--embed-plate-hover: rgb(255 255 255 / 68%);
|
|
254
|
+
--embed-plate-raised: rgb(255 255 255 / 78%);
|
|
255
|
+
|
|
229
256
|
// ── Materials ──────────────────────────────────────────────────────────────
|
|
230
257
|
// Each material is a two-part token on purpose: a per-material alpha knob and
|
|
231
258
|
// a colour composed from it. `WallpaperGlassService` already samples the
|
|
@@ -423,6 +450,16 @@ html.dark-theme {
|
|
|
423
450
|
--w02: rgb(255 255 255 / 2%);
|
|
424
451
|
--w015: rgb(255 255 255 / 1.5%);
|
|
425
452
|
|
|
453
|
+
// ── Embedded-app plate ─────────────────────────────────────────────────────
|
|
454
|
+
// Aliases the ramp, deliberately. Here the window plate is a near-opaque dark
|
|
455
|
+
// material, so a white lift IS the canon lift (MainContent.dc.html: a `--w03`
|
|
456
|
+
// plate with `--w06` header bars and `--w05` row hover) and the wallpaper is
|
|
457
|
+
// already muted to the point where it cannot colour the app. The light block
|
|
458
|
+
// carries the rationale for why that reasoning does not survive the flip.
|
|
459
|
+
--embed-plate: var(--w03);
|
|
460
|
+
--embed-plate-hover: var(--w05);
|
|
461
|
+
--embed-plate-raised: var(--w06);
|
|
462
|
+
|
|
426
463
|
// ── Materials ──────────────────────────────────────────────────────────────
|
|
427
464
|
// Same two-part shape as the light block. The menu gradient stops are opaque
|
|
428
465
|
// in this theme (`#201f25` / `#1a191e`); they are expressed as alpha-1 rgb so
|
|
@@ -44,10 +44,19 @@
|
|
|
44
44
|
// side-by-side with the design shows. The ramp flips polarity per theme
|
|
45
45
|
// (white-lift on dark glass, ink-wash on light), which is also what the
|
|
46
46
|
// design's own components do — they never branch on theme.
|
|
47
|
+
|
|
48
|
+
// CORRECTED: the ramp step is right in DARK and wrong in LIGHT, so the three
|
|
49
|
+
// lifts now go through `--embed-plate*` (declared per theme in
|
|
50
|
+
// `_nova-tokens.scss`), which aliases the ramp in dark and moves toward the
|
|
51
|
+
// plate's own white in light. The reason is written at the light declaration:
|
|
52
|
+
// an ink wash on a 60%-white translucent plate is a darker patch of WALLPAPER,
|
|
53
|
+
// not a card, which is what made the Help Center guide grid read as a
|
|
54
|
+
// photograph in light mode while dark mode looked correct. Same shape of
|
|
55
|
+
// light-mode-only failure this whole file exists for.
|
|
47
56
|
--bg: transparent;
|
|
48
|
-
--bg-2: var(--
|
|
49
|
-
--bg-3: var(--
|
|
50
|
-
--bg-hover: var(--
|
|
57
|
+
--bg-2: var(--embed-plate);
|
|
58
|
+
--bg-3: var(--embed-plate-raised);
|
|
59
|
+
--bg-hover: var(--embed-plate-hover);
|
|
51
60
|
|
|
52
61
|
// Hairlines. `--line`/`--line-2` stay on the chrome separators (14% ≈ the
|
|
53
62
|
// design's `--w14` CONTROL border — FormField.dc.html inputs), which is the
|
|
@@ -69,33 +78,32 @@
|
|
|
69
78
|
|
|
70
79
|
// CONTRACT (`_app-surface-tokens.scss`): anything that redefines `--ink` MUST
|
|
71
80
|
// redefine `--on-ink`, and it must be OPAQUE. `--on-ink` labels a fill of
|
|
72
|
-
// `--ink` itself — the primary button.
|
|
73
|
-
|
|
74
|
-
//
|
|
75
|
-
//
|
|
76
|
-
//
|
|
81
|
+
// `--ink` itself — the primary button.
|
|
82
|
+
|
|
83
|
+
// THE FLIP THE NOTE BELOW WARNED ABOUT HAS LANDED, AND THIS LINE IS NOW THE
|
|
84
|
+
// FIX RATHER THAN THE PREDICTION. `--label-primary` is no longer white in both
|
|
85
|
+
// themes: `_theme-light.scss` carries `rgb(17 24 39 / 92%)` — dark ink — so
|
|
86
|
+
// the fixed dark literal this line used to hold made every
|
|
87
|
+
// `background: var(--ink); color: var(--on-ink)` pair DARK ON DARK in light
|
|
88
|
+
// mode. Measured live inside `.hc-shell` on `html.light-theme`: fill
|
|
89
|
+
// `rgba(17,24,39,0.92)` against label `oklch(0.18 0.005 250)` — about 1.05:1,
|
|
90
|
+
// the same ~1:1 pair this file has now shipped twice, in the opposite
|
|
91
|
+
// direction. The flip value is the one the note already named.
|
|
77
92
|
|
|
78
93
|
// `app-surface-conventions.spec.ts` can only police the DS token file itself;
|
|
79
94
|
// its doc says consumers that remap `--ink` "carry the same obligation".
|
|
80
95
|
// Routing every consumer through this mixin is how that obligation is met.
|
|
81
96
|
// (`app-surface-nova-bridge.spec.ts` extends that gate to THIS file.)
|
|
82
97
|
|
|
83
|
-
//
|
|
84
|
-
//
|
|
85
|
-
// the
|
|
86
|
-
//
|
|
87
|
-
//
|
|
88
|
-
//
|
|
89
|
-
//
|
|
90
|
-
//
|
|
91
|
-
|
|
92
|
-
// The flip value is `var(--check-ink)`: Nova's only counter-ink that flips the
|
|
93
|
-
// right way (`#fff` light, `#0f1013` dark), which is exactly "the ink on a
|
|
94
|
-
// plate that carries the theme's own primary ink". Do NOT reach for a `--w*`
|
|
95
|
-
// step — the ramp flips polarity (`--w95` is 95% black in light, 95% WHITE in
|
|
96
|
-
// dark), so no step is a counter-ink in both themes; and do NOT reach for
|
|
97
|
-
// `--on-accent`, which is `#fff` in both and therefore right only in light.
|
|
98
|
-
--on-ink: oklch(18% 0.005 250deg);
|
|
98
|
+
// `var(--check-ink)` is Nova's only counter-ink that flips the right way
|
|
99
|
+
// (`#fff` light, `#0f1013` dark), which is exactly "the ink on a plate that
|
|
100
|
+
// carries the theme's own primary ink". Do NOT reach for a `--w*` step — the
|
|
101
|
+
// ramp flips polarity (`--w95` is 95% black in light, 95% WHITE in dark), so
|
|
102
|
+
// no step is a counter-ink in both themes; and do NOT reach for `--on-accent`,
|
|
103
|
+
// which is `#fff` in both and therefore right only in light. Both values are
|
|
104
|
+
// opaque hex, which is the other half of the contract — a translucent label
|
|
105
|
+
// composites into its own fill and disappears.
|
|
106
|
+
--on-ink: var(--check-ink);
|
|
99
107
|
|
|
100
108
|
// `--ink-inverse` carries the SAME obligation as `--on-ink` and was missed.
|
|
101
109
|
|
|
@@ -1993,6 +1993,41 @@ interface FlyRemoteRouteCommon {
|
|
|
1993
1993
|
readonly path: string;
|
|
1994
1994
|
/** Opaque bag the consumer can read from `router.matchedRoute()?.route.data`. */
|
|
1995
1995
|
readonly data?: Readonly<Record<string, unknown>>;
|
|
1996
|
+
/**
|
|
1997
|
+
* Child routes rendered into a **nested** `<fly-remote-router-outlet>` inside
|
|
1998
|
+
* this route's own component — the layout-route shape, mirroring Angular's
|
|
1999
|
+
* `Route.children`.
|
|
2000
|
+
*
|
|
2001
|
+
* This row's `path` becomes a PREFIX rather than the whole URL: it consumes its
|
|
2002
|
+
* own segments, and the remainder is matched against `children`. The component
|
|
2003
|
+
* on this row is the layout, and it stays MOUNTED while the child changes —
|
|
2004
|
+
* which is the entire point. Shared chrome (an entity header, a tab strip, a
|
|
2005
|
+
* pinned toolbar) renders once and survives navigation between siblings, so it
|
|
2006
|
+
* neither re-fetches nor re-animates when the user switches tabs.
|
|
2007
|
+
*
|
|
2008
|
+
* ```ts
|
|
2009
|
+
* {
|
|
2010
|
+
* path: 'projects/:id',
|
|
2011
|
+
* loadComponent: () => import('./workspace').then(m => m.WorkspaceLayoutComponent),
|
|
2012
|
+
* children: [
|
|
2013
|
+
* { path: '', loadComponent: () => import('./overview').then(m => m.OverviewComponent) },
|
|
2014
|
+
* { path: 'plan', loadComponent: () => import('./plan').then(m => m.PlanComponent) },
|
|
2015
|
+
* { path: 'gates', loadComponent: () => import('./gates').then(m => m.GatesComponent) },
|
|
2016
|
+
* ],
|
|
2017
|
+
* }
|
|
2018
|
+
* ```
|
|
2019
|
+
*
|
|
2020
|
+
* Params captured by an ancestor are merged into every descendant's params, so
|
|
2021
|
+
* a child reads `router.params()['id']` without redeclaring `:id`.
|
|
2022
|
+
*
|
|
2023
|
+
* A parent whose children ALL miss is not itself a match — matching falls
|
|
2024
|
+
* through to the next sibling row. Rendering a layout around an empty outlet
|
|
2025
|
+
* would turn a routing miss into a half-drawn page, and first-match-wins stays
|
|
2026
|
+
* the table's one rule.
|
|
2027
|
+
*
|
|
2028
|
+
* Available since design-system **3.12.0**.
|
|
2029
|
+
*/
|
|
2030
|
+
readonly children?: readonly FlyRemoteRoute[];
|
|
1996
2031
|
}
|
|
1997
2032
|
/** A route whose component class is already in the bundle. */
|
|
1998
2033
|
interface FlyRemoteEagerRoute extends FlyRemoteRouteCommon {
|
|
@@ -2007,7 +2042,8 @@ interface FlyRemoteLazyRoute extends FlyRemoteRouteCommon {
|
|
|
2007
2042
|
/**
|
|
2008
2043
|
* One row in a remote's route table. Mirrors Angular's `Route` interface but
|
|
2009
2044
|
* pared down to what the FlyOS-embedded router actually supports — no
|
|
2010
|
-
* `loadChildren`, no resolvers, no guards.
|
|
2045
|
+
* `loadChildren`, no resolvers, no guards. `children` IS supported (3.12.0) —
|
|
2046
|
+
* see `FlyRemoteRouteCommon.children` for the layout-route shape.
|
|
2011
2047
|
*
|
|
2012
2048
|
* Patterns:
|
|
2013
2049
|
* '' — matches an empty URL ("/")
|
|
@@ -2034,11 +2070,21 @@ type FlyRemoteRoute = FlyRemoteEagerRoute | FlyRemoteLazyRoute;
|
|
|
2034
2070
|
/**
|
|
2035
2071
|
* Result of matching the current `segments` against a remote's route table.
|
|
2036
2072
|
* `params` contains captured `:foo` segments — empty object for paths with no
|
|
2037
|
-
* captures
|
|
2073
|
+
* captures — MERGED with everything its ancestors captured, so a child never
|
|
2074
|
+
* has to redeclare a `:id` its layout already owns.
|
|
2075
|
+
*
|
|
2076
|
+
* `child` is the next link in a nested match, `null` at the leaf. A flat table
|
|
2077
|
+
* (no `children` anywhere) always produces `child: null`, which is why every
|
|
2078
|
+
* pre-3.12.0 consumer of `matchedRoute()` keeps behaving identically.
|
|
2079
|
+
*
|
|
2080
|
+
* OPTIONAL on purpose. The router always populates it, but declaring it required
|
|
2081
|
+
* would break every consumer that hand-builds a `FlyRemoteMatch` — test doubles,
|
|
2082
|
+
* mostly — turning an additive feature into a MAJOR for no gain.
|
|
2038
2083
|
*/
|
|
2039
2084
|
interface FlyRemoteMatch {
|
|
2040
2085
|
readonly route: FlyRemoteRoute;
|
|
2041
2086
|
readonly params: Readonly<Record<string, string>>;
|
|
2087
|
+
readonly child?: FlyRemoteMatch | null;
|
|
2042
2088
|
}
|
|
2043
2089
|
/**
|
|
2044
2090
|
* Optional injection token a remote provides at its root to declare which routes
|
|
@@ -2103,6 +2149,51 @@ declare const FLY_REMOTE_BASE_PATH: InjectionToken<string>;
|
|
|
2103
2149
|
* `FlyRemoteRouter.matchedRoute()`.
|
|
2104
2150
|
*/
|
|
2105
2151
|
declare function matchFlyRoutePattern(pattern: string, segments: readonly string[]): Record<string, string> | null;
|
|
2152
|
+
/**
|
|
2153
|
+
* Match a pattern against the FRONT of `segments`, returning what it captured
|
|
2154
|
+
* plus the segments it did not consume. `null` when the pattern cannot match.
|
|
2155
|
+
*
|
|
2156
|
+
* This is the prefix half of {@link matchFlyRoutePattern}, which is now simply
|
|
2157
|
+
* "prefix-match, and insist nothing is left over". A parent route stops at the
|
|
2158
|
+
* prefix and hands `rest` to its `children`.
|
|
2159
|
+
*
|
|
2160
|
+
* Exported for unit testing — consumers should rely on
|
|
2161
|
+
* `FlyRemoteRouter.matchedRoute()`.
|
|
2162
|
+
*/
|
|
2163
|
+
declare function matchFlyRoutePrefix(pattern: string, segments: readonly string[]): {
|
|
2164
|
+
params: Record<string, string>;
|
|
2165
|
+
rest: readonly string[];
|
|
2166
|
+
} | null;
|
|
2167
|
+
/**
|
|
2168
|
+
* Resolve `segments` against a route table, descending into `children`.
|
|
2169
|
+
*
|
|
2170
|
+
* First-match-wins in declaration order, at every level. A row WITHOUT children
|
|
2171
|
+
* must consume the URL exactly — the flat-table rule, unchanged. A row WITH
|
|
2172
|
+
* children consumes its own prefix and must then find a matching descendant;
|
|
2173
|
+
* if none matches, the row is skipped and its later siblings still get a turn,
|
|
2174
|
+
* so a routing miss never renders a layout wrapped around an empty outlet.
|
|
2175
|
+
*
|
|
2176
|
+
* `inherited` carries ancestor params down, which is what lets a child read a
|
|
2177
|
+
* `:id` captured by its layout.
|
|
2178
|
+
*
|
|
2179
|
+
* Exported for unit testing — consumers should rely on
|
|
2180
|
+
* `FlyRemoteRouter.matchedRoute()`.
|
|
2181
|
+
*/
|
|
2182
|
+
declare function matchFlyRouteTable(routes: readonly FlyRemoteRoute[], segments: readonly string[], inherited?: Readonly<Record<string, string>>): FlyRemoteMatch | null;
|
|
2183
|
+
/** Walk a match chain to its leaf — the row that actually consumed the URL. */
|
|
2184
|
+
declare function deepestFlyMatch(match: FlyRemoteMatch): FlyRemoteMatch;
|
|
2185
|
+
/**
|
|
2186
|
+
* Nesting depth of a `<fly-remote-router-outlet>`, so an outlet knows which link
|
|
2187
|
+
* of the match chain it is responsible for. Each outlet provides its own depth
|
|
2188
|
+
* for its subtree, so the outlet a layout renders resolves to depth + 1 with no
|
|
2189
|
+
* wiring on the consumer's part — the same way Angular's own `RouterOutlet`
|
|
2190
|
+
* derives its level from the injector rather than an input.
|
|
2191
|
+
*
|
|
2192
|
+
* Consumers never provide this themselves.
|
|
2193
|
+
*
|
|
2194
|
+
* Available since design-system **3.12.0**.
|
|
2195
|
+
*/
|
|
2196
|
+
declare const FLY_REMOTE_OUTLET_DEPTH: InjectionToken<number>;
|
|
2106
2197
|
|
|
2107
2198
|
/**
|
|
2108
2199
|
* FlyOS standard navigation surface for Business / Supporting App remotes.
|
|
@@ -2223,6 +2314,10 @@ declare class FlyRemoteRouter {
|
|
|
2223
2314
|
*
|
|
2224
2315
|
* Match order: routes are tried in declaration order. Put more specific
|
|
2225
2316
|
* patterns (e.g. `'signals/:id'`) before catch-alls.
|
|
2317
|
+
*
|
|
2318
|
+
* On a table using `children` this is the ROOT of the match chain — follow
|
|
2319
|
+
* `.child` for the nested links, which is what the nested outlets do. A flat
|
|
2320
|
+
* table always yields `child: null`, so this reads exactly as it always did.
|
|
2226
2321
|
*/
|
|
2227
2322
|
readonly matchedRoute: _angular_core.Signal<FlyRemoteMatch | null>;
|
|
2228
2323
|
/**
|
|
@@ -3164,6 +3259,27 @@ declare class FlyDeepLinkPrefetchService {
|
|
|
3164
3259
|
* - No query-param / hash handling — only path segments.
|
|
3165
3260
|
* - No `RouterLink` directive — use `(click)="router.navigate(...)"`.
|
|
3166
3261
|
*
|
|
3262
|
+
* ## Layout routes (3.12.0)
|
|
3263
|
+
*
|
|
3264
|
+
* A route with `children` renders its own component as a LAYOUT and resolves the
|
|
3265
|
+
* rest of the URL into a nested outlet placed in that layout's template:
|
|
3266
|
+
*
|
|
3267
|
+
* ```html
|
|
3268
|
+
* <!-- workspace-layout.component.html -->
|
|
3269
|
+
* <fly-entity-header [entity]="project()" />
|
|
3270
|
+
* <fly-tab-strip [projectId]="id()" />
|
|
3271
|
+
* <fly-remote-router-outlet /> <!-- the tab body, and only the tab body -->
|
|
3272
|
+
* ```
|
|
3273
|
+
*
|
|
3274
|
+
* The layout instance survives navigation between its children, because only the
|
|
3275
|
+
* nested outlet's component changes. That is what stops shared chrome from
|
|
3276
|
+
* re-fetching, re-animating and flashing empty on every tab switch — the failure
|
|
3277
|
+
* this feature exists to remove.
|
|
3278
|
+
*
|
|
3279
|
+
* Nesting is derived from the injector, not declared: each outlet publishes its
|
|
3280
|
+
* own depth to its subtree, so a nested outlet needs no input and no consumer
|
|
3281
|
+
* wiring. Depth beyond the end of the match chain renders nothing.
|
|
3282
|
+
*
|
|
3167
3283
|
* Components rendered by this outlet read route params via `FlyRemoteRouter.params`:
|
|
3168
3284
|
* ```ts
|
|
3169
3285
|
* private readonly router = inject(FlyRemoteRouter);
|
|
@@ -3198,11 +3314,17 @@ declare class FlyDeepLinkPrefetchService {
|
|
|
3198
3314
|
declare class FlyRemoteRouterOutletComponent {
|
|
3199
3315
|
private readonly router;
|
|
3200
3316
|
private readonly errorHandler;
|
|
3317
|
+
/** This outlet's link in the match chain — 0 at the root, +1 per nesting. */
|
|
3318
|
+
private readonly depth;
|
|
3201
3319
|
/**
|
|
3202
|
-
*
|
|
3203
|
-
*
|
|
3320
|
+
* The match this outlet is responsible for: `matchedRoute()` walked down
|
|
3321
|
+
* `depth` links. Read directly from FlyRemoteRouter so the outlet re-renders
|
|
3322
|
+
* whenever the URL changes (signal-based, OnPush-friendly).
|
|
3323
|
+
*
|
|
3324
|
+
* `null` past the end of the chain — a nested outlet in a layout whose match
|
|
3325
|
+
* has no child renders nothing rather than repeating its parent.
|
|
3204
3326
|
*/
|
|
3205
|
-
readonly matched: _angular_core.Signal<
|
|
3327
|
+
readonly matched: _angular_core.Signal<FlyRemoteMatch | null>;
|
|
3206
3328
|
/** Loaders that have resolved — consulted synchronously, so a revisit never flashes. */
|
|
3207
3329
|
private readonly loaded;
|
|
3208
3330
|
/** Loaders currently in flight, so a param change mid-load doesn't start a second fetch. */
|
|
@@ -13362,6 +13484,15 @@ declare function firstModuleIndex(modules: readonly FlyAppModule[]): number;
|
|
|
13362
13484
|
* Icons reuse `flyModuleIcon` — the SAME directive the topbar takes — so an app that
|
|
13363
13485
|
* renders both declares its icon templates once per surface, in the same syntax.
|
|
13364
13486
|
*
|
|
13487
|
+
* ## App colour (3.12.0)
|
|
13488
|
+
*
|
|
13489
|
+
* The launch-card family (feature tile, hover wash, hover ring) follows the app's
|
|
13490
|
+
* authored brand colour, received by CSS CASCADE rather than input: the shell window
|
|
13491
|
+
* publishes the app's derived palette (`--app-color`, `--app-color-deep`, `--app-ink`)
|
|
13492
|
+
* on `.window`, so a federated landing is branded with zero wiring; a standalone host
|
|
13493
|
+
* brands itself by setting the same custom properties on any ancestor element. Where
|
|
13494
|
+
* nothing cascades, the fixed `--module-teal` family renders exactly as before.
|
|
13495
|
+
*
|
|
13365
13496
|
* a11y: cards are real `<button>`s in a labelled group; a collapsible section is a
|
|
13366
13497
|
* disclosure (`aria-expanded` + `aria-controls`), and the region carries the section
|
|
13367
13498
|
* heading. Layout is logical-property only, so it mirrors under `dir="rtl"` on its own —
|
|
@@ -14183,6 +14314,6 @@ declare const AUDIENCE_ERROR_CODES: {
|
|
|
14183
14314
|
};
|
|
14184
14315
|
type AudienceErrorCode = (typeof AUDIENCE_ERROR_CODES)[keyof typeof AUDIENCE_ERROR_CODES];
|
|
14185
14316
|
|
|
14186
|
-
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_CURRENCIES_BRIEF_ENDPOINT, FLY_CURRENCY_DEFAULT_ENDPOINT, 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_STRATEGY_OBJECTIVES_LOOKUP_ENDPOINT, FLY_THEME_MODE_IDS, FLY_VIEWPORT_IS_MOBILE, FLY_WINDOW_BREADCRUMBS_EVENT, FLY_WINDOW_BREADCRUMBS_STORE_KEY, FLY_WINDOW_HELP_HINT_EVENT, FLY_WINDOW_PAGE_TITLE_EVENT, FlyAchievementProgressComponent, FlyActionMenuComponent, FlyActionStackComponent, FlyAgentDraggableDirective, FlyAnimatedEmojiComponent, FlyAppHomeComponent, FlyAppTopbarComponent, FlyAppUnavailableComponent, 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, FlyCurrencyCatalogService, 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, FlyLifecyclePipelineComponent, FlyMagicActionsComponent, FlyMetaListComponent, FlyModalComponent, FlyModerationQueueComponent, FlyModuleIconDirective, FlyMoneyPipe, FlyOverviewKpiRowComponent, FlyOverviewRowsComponent, FlyOverviewSectionComponent, FlyOverviewSurfaceComponent, FlyPagerComponent, FlyPaginationComponent, FlyPeoplePickerComponent, FlyPointsTierComponent, FlyProgressComponent, FlyRelativeTimePipe, FlyRemoteContextService, FlyRemoteRouter, FlyRemoteRouterOutletComponent, FlySearchInputComponent, FlySectionHeaderComponent, FlySecureSrcDirective, FlySegmentedComponent, FlySelectComponent, FlySkeletonComponent, FlySliderComponent, FlySparklineComponent, FlySpinnerComponent, FlyStandaloneAuthCallbackComponent, FlyStandaloneAuthService, FlyStandaloneMagicActionsComponent, FlyStateMessageComponent, FlyStrategySelectorComponent, FlyDynamicFormComponent as FlySurveyFormComponent, FlyTabComponent, FlyTabsComponent, FlyTagsInputComponent, FlyThemeService, FlyTimePipe, FlyToastService, FlyToggleComponent, FlyTooltipDirective, FlyTreeNavComponent, FlyTypeaheadComponent, FlyUserDirectoryService, FlyWindowHelpService, FlyWindowTitleService, FlyosPendingLaunchesGlobalKey, FlyosShellHandlesLaunchRequestsGlobalKey, FlyosShellOwnsHistoryGlobalKey, GANTT_DEPENDENCY_TYPES, GANTT_ROW_TINT_ALPHA, 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, WindowBreadcrumbsRegistry, WindowManagerService, applySkinTone, applySuggestion, ariaSort, buildCron, canConfirm, canGoNext$1 as canGoNext, canGoPrev$1 as canGoPrev, captureFocus, clampMagicBarSearchWidth, clampPage$1 as 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, flyUnwrapCurrencies, flyUnwrapCurrency, flyUnwrapLenient, flyUnwrapObjectiveLookup, hasAnyRoleIn, healNativeFederationCacheOnce, initialExpanded, isAccentColor, isChunkLoadError, isFlyAuthStorePopulated, isNativeFederationCacheError, isRtlLocale, isRtlLocaleEntry, isValidCron, isValidSingleField, loadRemoteStyles, magicBarOwnerKey, magicBarSearchText, matchFlyRoutePattern, nextEnabledIndex, nextModuleIndex, nextSegmentIndex, nextSort, normalizeFlyTheme, normalizeRoles, novaPriorityToneVar, novaStatusToneVar, overlayStack, canGoNext as pagerCanGoNext, canGoPrev as pagerCanGoPrev, clampPage as pagerClampPage, parseCron, parseStepUpChallenge, parseTags, prefetchRemoteStyles, presenceColorFor, printConsoleSecurityWarning, provideFlyChunkReloadRecovery, provideFlyEmojiPack, provideFlyOfflineAuth, provideFlyStandaloneAuth, reloadOnceForChunkError, requestAppLaunch, resolveActiveModule, resolveActiveSection, resolveActiveTab, resolveCellValue, resolveStateIcon, resolveStateMessageKey, restoreFocus, sameTags, sectionHintKey, sectionLayout, sliderTrackGradient, sparklinePath, sparklinePoints, stepUpInterceptor, stepUpReturnKey, trimAgentPayload, trimAgentString, unloadRemoteStyles, utf8ByteLength, validateAgentPayload, warnIfEmbeddedSessionMissing };
|
|
14317
|
+
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_CURRENCIES_BRIEF_ENDPOINT, FLY_CURRENCY_DEFAULT_ENDPOINT, 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_OUTLET_DEPTH, 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_STRATEGY_OBJECTIVES_LOOKUP_ENDPOINT, FLY_THEME_MODE_IDS, FLY_VIEWPORT_IS_MOBILE, FLY_WINDOW_BREADCRUMBS_EVENT, FLY_WINDOW_BREADCRUMBS_STORE_KEY, FLY_WINDOW_HELP_HINT_EVENT, FLY_WINDOW_PAGE_TITLE_EVENT, FlyAchievementProgressComponent, FlyActionMenuComponent, FlyActionStackComponent, FlyAgentDraggableDirective, FlyAnimatedEmojiComponent, FlyAppHomeComponent, FlyAppTopbarComponent, FlyAppUnavailableComponent, 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, FlyCurrencyCatalogService, 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, FlyLifecyclePipelineComponent, FlyMagicActionsComponent, FlyMetaListComponent, FlyModalComponent, FlyModerationQueueComponent, FlyModuleIconDirective, FlyMoneyPipe, FlyOverviewKpiRowComponent, FlyOverviewRowsComponent, FlyOverviewSectionComponent, FlyOverviewSurfaceComponent, FlyPagerComponent, FlyPaginationComponent, FlyPeoplePickerComponent, FlyPointsTierComponent, FlyProgressComponent, FlyRelativeTimePipe, FlyRemoteContextService, FlyRemoteRouter, FlyRemoteRouterOutletComponent, FlySearchInputComponent, FlySectionHeaderComponent, FlySecureSrcDirective, FlySegmentedComponent, FlySelectComponent, FlySkeletonComponent, FlySliderComponent, FlySparklineComponent, FlySpinnerComponent, FlyStandaloneAuthCallbackComponent, FlyStandaloneAuthService, FlyStandaloneMagicActionsComponent, FlyStateMessageComponent, FlyStrategySelectorComponent, FlyDynamicFormComponent as FlySurveyFormComponent, FlyTabComponent, FlyTabsComponent, FlyTagsInputComponent, FlyThemeService, FlyTimePipe, FlyToastService, FlyToggleComponent, FlyTooltipDirective, FlyTreeNavComponent, FlyTypeaheadComponent, FlyUserDirectoryService, FlyWindowHelpService, FlyWindowTitleService, FlyosPendingLaunchesGlobalKey, FlyosShellHandlesLaunchRequestsGlobalKey, FlyosShellOwnsHistoryGlobalKey, GANTT_DEPENDENCY_TYPES, GANTT_ROW_TINT_ALPHA, 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, WindowBreadcrumbsRegistry, WindowManagerService, applySkinTone, applySuggestion, ariaSort, buildCron, canConfirm, canGoNext$1 as canGoNext, canGoPrev$1 as canGoPrev, captureFocus, clampMagicBarSearchWidth, clampPage$1 as clampPage, clampSliderValue, connectRemoteLaunch, deepestFlyMatch, 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, flyUnwrapCurrencies, flyUnwrapCurrency, flyUnwrapLenient, flyUnwrapObjectiveLookup, hasAnyRoleIn, healNativeFederationCacheOnce, initialExpanded, isAccentColor, isChunkLoadError, isFlyAuthStorePopulated, isNativeFederationCacheError, isRtlLocale, isRtlLocaleEntry, isValidCron, isValidSingleField, loadRemoteStyles, magicBarOwnerKey, magicBarSearchText, matchFlyRoutePattern, matchFlyRoutePrefix, matchFlyRouteTable, nextEnabledIndex, nextModuleIndex, nextSegmentIndex, nextSort, normalizeFlyTheme, normalizeRoles, novaPriorityToneVar, novaStatusToneVar, overlayStack, canGoNext as pagerCanGoNext, canGoPrev as pagerCanGoPrev, clampPage as pagerClampPage, parseCron, parseStepUpChallenge, parseTags, prefetchRemoteStyles, presenceColorFor, printConsoleSecurityWarning, provideFlyChunkReloadRecovery, provideFlyEmojiPack, provideFlyOfflineAuth, provideFlyStandaloneAuth, reloadOnceForChunkError, requestAppLaunch, resolveActiveModule, resolveActiveSection, resolveActiveTab, resolveCellValue, resolveStateIcon, resolveStateMessageKey, restoreFocus, sameTags, sectionHintKey, sectionLayout, sliderTrackGradient, sparklinePath, sparklinePoints, stepUpInterceptor, stepUpReturnKey, trimAgentPayload, trimAgentString, unloadRemoteStyles, utf8ByteLength, validateAgentPayload, warnIfEmbeddedSessionMissing };
|
|
14187
14318
|
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, FlyAppUnavailableState, 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, FlyOfflineAuthConfig, 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, FlyStrategyObjectiveRef, FlyStrategyObjectiveSearchFn, FlyFileSelection as FlySurveyFileSelection, FlyFormAnswer as FlySurveyFormAnswer, FlyFormAnswerValue as FlySurveyFormAnswerValue, FlyFormDefinition as FlySurveyFormDefinition, FlyFormFieldOptions as FlySurveyFormFieldOptions, FlyFormOption as FlySurveyFormOption, FlyFormQuestion as FlySurveyFormQuestion, FlyFormQuestionType as FlySurveyQuestionType, FlyTenantDefaultCurrencyFetchFn, FlyThemeMode, FlyTooltipPlacement, FlyTreeNavNode, FlyTypeaheadOption, FlyWindowHelpHintEventDetail, FlyWindowHelpPublisher, FlyWindowPageTitleEventDetail, FlyWindowTitlePublisher, FlyosPendingLaunches, FocusRestore, FormBannerKind, GanttDependency, GanttDependencyCreate, GanttDependencyDelete, GanttDependencyType, GanttRow, GanttRowDatesChange, GanttRowKind, GanttZoom, IconButtonVariant, LaunchContext, LifecycleRollupItem, LifecycleStep, 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, OverviewKpiItem, OverviewKpiTone, OverviewRow, PageHeaderVariant, PresetTerm, ProgressTone, RemoteAppDef, RequestAppLaunchOptions, RoleOuLookupRow, RolePrincipal, RolesTerm, SegmentedOption, SegmentedVariant, ShareOrgChartOption, ShareOuNode, SharePanelLevelOption, SharePermissionEntry, SharePrincipal, SharePrincipalKind, ShareUserResult, StateMessageKind, StepUpChallenge, StepUpReauthHandler, StepUpReauthRequest, TabsVariant, ToastAction, ToastEntry, ToastOptions, ToastVariant, User, UserPrincipal, UsersTerm, WindowBreadcrumb, WindowHelpHint, WindowInstance, WindowState };
|
|
14188
14319
|
//# sourceMappingURL=flyos-design-system.d.ts.map
|