@flyos/design-system 2.0.0 → 2.1.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/package.json
CHANGED
package/scss/_tokens.scss
CHANGED
|
@@ -23,17 +23,18 @@
|
|
|
23
23
|
|
|
24
24
|
// ── FlyOS Typography ──
|
|
25
25
|
// Geist is the primary face (self-hosted, see styles/_geist-fonts.scss). Inter and the
|
|
26
|
-
// system stack are the fallbacks
|
|
27
|
-
//
|
|
26
|
+
// system stack are the fallbacks. 'Noto Kufi Arabic' (self-hosted, styles/_kufi-fonts.scss,
|
|
27
|
+
// post-G7) carries the Arabic script for ar/ur: its @font-face is unicode-range-scoped to
|
|
28
|
+
// Arabic blocks, so per-GLYPH fallback gives Kufi to Arabic text and never touches Latin —
|
|
29
|
+
// Geist stays the Latin face in every locale, and no per-locale restatement is needed.
|
|
30
|
+
// In a consumer without that @font-face the name simply skips (pre-Kufi behaviour: system
|
|
31
|
+
// Arabic face) — External Apps declare their own faces per the estate convention.
|
|
28
32
|
// ---
|
|
29
33
|
// 2.0.0 removed 'SF Pro Display' / 'SF Pro' — D8 (no SF fonts, ever, for licensing). The
|
|
30
34
|
// repo had been SHIPPING them: 9 self-hosted woff2 faces, preloaded from index.html.
|
|
31
|
-
// Removing them
|
|
32
|
-
//
|
|
33
|
-
|
|
34
|
-
// no unicode-range, and it supplies no Arabic glyphs at all — the apparent width delta was
|
|
35
|
-
// one SPACE character). Those scripts have always resolved to the system Arabic face.
|
|
36
|
-
--font-family: 'Geist', 'Inter', -apple-system, blinkmacsystemfont, 'Segoe UI', sans-serif;
|
|
35
|
+
// Removing them changed NOTHING for ar/ur: SF Pro carries no unicode-range and no Arabic
|
|
36
|
+
// glyphs, so before Kufi those scripts always resolved to the system Arabic face.
|
|
37
|
+
--font-family: 'Geist', 'Inter', 'Noto Kufi Arabic', -apple-system, blinkmacsystemfont, 'Segoe UI', sans-serif;
|
|
37
38
|
--font-family-mono: 'Geist Mono', ui-monospace, 'SF Mono', menlo, monospace;
|
|
38
39
|
--font-xl-title1: 700 48px/56px var(--font-family);
|
|
39
40
|
--font-xl-title2: 700 38px/46px var(--font-family);
|
|
@@ -2859,6 +2859,27 @@ declare class FlyUserDirectoryService {
|
|
|
2859
2859
|
* single global stylesheet Angular emits. If a remote emits multiple stylesheets,
|
|
2860
2860
|
* only the first is loaded — acceptable for Wave A1.
|
|
2861
2861
|
*/
|
|
2862
|
+
/** Options for {@link loadRemoteStyles}. */
|
|
2863
|
+
interface LoadRemoteStylesOptions {
|
|
2864
|
+
/**
|
|
2865
|
+
* Suppress the "no stylesheet found" warning. For opportunistic warm-up calls
|
|
2866
|
+
* (the shell pre-fetches every registered remote's stylesheet at manifest
|
|
2867
|
+
* load) where an unreachable remote is expected — e.g. a stopped dev server
|
|
2868
|
+
* in mock mode. A real window open retries loudly.
|
|
2869
|
+
*/
|
|
2870
|
+
silent?: boolean;
|
|
2871
|
+
/**
|
|
2872
|
+
* Resolve only after the stylesheet's BYTES have been fetched (capped at
|
|
2873
|
+
* {@link APPLY_CAP_MS}), not merely after the element is injected. Without
|
|
2874
|
+
* this the returned promise settles while the CSS is still in flight, so a
|
|
2875
|
+
* caller that paints immediately afterwards can paint BEFORE the remote's
|
|
2876
|
+
* global rules apply — and any window-chrome override the remote ships then
|
|
2877
|
+
* lands as a visible layout shift (the stg CLS 0.638 finding). The shell's
|
|
2878
|
+
* registration-time warm-up passes this so the boot path can gate a window's
|
|
2879
|
+
* first paint on it. Fail-soft: timeouts and load errors still resolve.
|
|
2880
|
+
*/
|
|
2881
|
+
awaitApplied?: boolean;
|
|
2882
|
+
}
|
|
2862
2883
|
/**
|
|
2863
2884
|
* Injects the remote's stylesheet into `document.head`.
|
|
2864
2885
|
*
|
|
@@ -2884,7 +2905,7 @@ declare class FlyUserDirectoryService {
|
|
|
2884
2905
|
* The `data-fly-href` attribute stores the discovered href separately from the
|
|
2885
2906
|
* element content so idempotency checks can compare the URL without parsing CSS.
|
|
2886
2907
|
*/
|
|
2887
|
-
declare function loadRemoteStyles(appId: string, remoteBaseUrl: string): Promise<void>;
|
|
2908
|
+
declare function loadRemoteStyles(appId: string, remoteBaseUrl: string, opts?: LoadRemoteStylesOptions): Promise<void>;
|
|
2888
2909
|
/**
|
|
2889
2910
|
* Removes the injected stylesheet element (either `<link>` or `<style>`) for
|
|
2890
2911
|
* `appId` from `document.head` and clears all internal state for this appId.
|
|
@@ -3059,6 +3080,8 @@ declare class MockAuthService {
|
|
|
3059
3080
|
hasAnyRole(required: readonly string[]): boolean;
|
|
3060
3081
|
/** Parity with the real AuthService — patch profile fields on the mock session. */
|
|
3061
3082
|
patchProfile(patch: Partial<User>): void;
|
|
3083
|
+
/** A fresh 24h mock session from the app-supplied config — used at construction and by {@link startLogin}. */
|
|
3084
|
+
private createSession;
|
|
3062
3085
|
/** Override in subclass to supply app-specific mock data. */
|
|
3063
3086
|
protected getConfig(): MockAuthConfig;
|
|
3064
3087
|
init(): Promise<void>;
|
|
@@ -9335,6 +9358,21 @@ type FlyCurrencySelectorValue = string | readonly string[] | null;
|
|
|
9335
9358
|
* i18n is self-sufficient through the `currency_selector.*` keys in `DS_BASELINE_LOCALES`
|
|
9336
9359
|
* (en/ar/fr/ur); RTL works via logical CSS.
|
|
9337
9360
|
*
|
|
9361
|
+
* ## `locked`, vs `disabled`
|
|
9362
|
+
* `disabled` is UI convention for "not applicable right now" — greyed out, no explanation,
|
|
9363
|
+
* because none is owed (a form section that only exists once a prior step completes, say).
|
|
9364
|
+
* `locked` is a different claim entirely: **the value is fixed on purpose**, because
|
|
9365
|
+
* something downstream now depends on it (PPM freezes a project's currency the moment any
|
|
9366
|
+
* financial row exists — changing it would silently re-denominate every stored amount).
|
|
9367
|
+
* A dimmed control with no explanation is exactly the failure `skills/magic-bar-actions.md`
|
|
9368
|
+
* §3.6 names for actions ("a vanishing action teaches the user nothing"); the same argument
|
|
9369
|
+
* applies to a frozen field. So `locked` renders differently on purpose: full-opacity (never
|
|
9370
|
+
* dimmed — the value is not "unavailable", it is authoritative), no dropdown affordance at
|
|
9371
|
+
* all, and an always-visible reason caption instead of a hover-only tooltip, so the "why" is
|
|
9372
|
+
* legible to a screen reader without requiring focus and to a sighted user without hovering.
|
|
9373
|
+
* `locked` takes precedence when both are set — it is the more specific state and the
|
|
9374
|
+
* `disabled` trigger markup (with its dropdown affordances) never renders underneath it.
|
|
9375
|
+
*
|
|
9338
9376
|
* @example
|
|
9339
9377
|
* ```html
|
|
9340
9378
|
* <!-- Loads /api/currencies/brief itself: -->
|
|
@@ -9345,6 +9383,12 @@ type FlyCurrencySelectorValue = string | readonly string[] | null;
|
|
|
9345
9383
|
* mode="multi"
|
|
9346
9384
|
* [allowedCodes]="tenantCurrencies()"
|
|
9347
9385
|
* (selectionDetailChange)="onCurrenciesPicked($event)" />
|
|
9386
|
+
*
|
|
9387
|
+
* <!-- Frozen once the project has financial rows — reason is an i18n KEY, never text: -->
|
|
9388
|
+
* <fly-currency-selector
|
|
9389
|
+
* [(ngModel)]="project.currency"
|
|
9390
|
+
* [locked]="project.hasFinancialRows"
|
|
9391
|
+
* lockedReasonKey="projects.currency_locked_reason" />
|
|
9348
9392
|
* ```
|
|
9349
9393
|
*/
|
|
9350
9394
|
declare class FlyCurrencySelectorComponent implements ControlValueAccessor {
|
|
@@ -9366,6 +9410,24 @@ declare class FlyCurrencySelectorComponent implements ControlValueAccessor {
|
|
|
9366
9410
|
readonly pinnedCodes: _angular_core.InputSignal<readonly string[]>;
|
|
9367
9411
|
/** Disable the whole control (also driven by reactive-forms `setDisabledState`). */
|
|
9368
9412
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
9413
|
+
/**
|
|
9414
|
+
* Freeze the current selection because something downstream now depends on it — a
|
|
9415
|
+
* DIFFERENT claim than `disabled`. See the class doc's "`locked`, vs `disabled`"
|
|
9416
|
+
* section. Renders the current pick as a plain, non-interactive readout (no dropdown
|
|
9417
|
+
* affordance at all) plus an always-visible reason caption — never a dimmed clickable-
|
|
9418
|
+
* looking control. Takes precedence over `disabled` when both are set.
|
|
9419
|
+
*/
|
|
9420
|
+
readonly locked: _angular_core.InputSignal<boolean>;
|
|
9421
|
+
/**
|
|
9422
|
+
* i18n KEY (never resolved text — see `skills/magic-bar-actions.md` §3.4) explaining
|
|
9423
|
+
* WHY the control is locked. Omit to use the localized `currency_selector.locked_default_reason`
|
|
9424
|
+
* baseline key; supply your own only when that default reason is wrong for your case
|
|
9425
|
+
* (mirrors `MagicBarActionSpec.disabledTipKey`'s "supply only when the default is wrong"
|
|
9426
|
+
* contract). Ignored while `locked` is `false`.
|
|
9427
|
+
*/
|
|
9428
|
+
readonly lockedReasonKey: _angular_core.InputSignal<string | null>;
|
|
9429
|
+
/** `I18nService.t()` params for `lockedReasonKey`, e.g. `{ date: frozenOn }`. */
|
|
9430
|
+
readonly lockedReasonParams: _angular_core.InputSignal<Record<string, string | number> | undefined>;
|
|
9369
9431
|
/** Show the trigger clear (✕) affordance when there is a selection. */
|
|
9370
9432
|
readonly clearable: _angular_core.InputSignal<boolean>;
|
|
9371
9433
|
/** Trigger text when nothing is picked. Omit for the localized default. */
|
|
@@ -9383,6 +9445,8 @@ declare class FlyCurrencySelectorComponent implements ControlValueAccessor {
|
|
|
9383
9445
|
private readonly _uid;
|
|
9384
9446
|
readonly listboxId: string;
|
|
9385
9447
|
readonly triggerId: string;
|
|
9448
|
+
/** id of the always-rendered locked-reason caption; `aria-describedby` target of the locked readout. */
|
|
9449
|
+
readonly lockedReasonId: string;
|
|
9386
9450
|
readonly isOpen: _angular_core.WritableSignal<boolean>;
|
|
9387
9451
|
readonly searchTerm: _angular_core.WritableSignal<string>;
|
|
9388
9452
|
readonly activeIndex: _angular_core.WritableSignal<number>;
|
|
@@ -9410,6 +9474,8 @@ declare class FlyCurrencySelectorComponent implements ControlValueAccessor {
|
|
|
9410
9474
|
readonly clearText: _angular_core.Signal<string>;
|
|
9411
9475
|
readonly pinnedGroupText: _angular_core.Signal<string>;
|
|
9412
9476
|
readonly allGroupText: _angular_core.Signal<string>;
|
|
9477
|
+
/** Resolved locked-reason text — the default baseline key, or the host's `lockedReasonKey`. */
|
|
9478
|
+
readonly lockedReasonText: _angular_core.Signal<string>;
|
|
9413
9479
|
/** Every offered row, after the `allowedCodes` restriction. */
|
|
9414
9480
|
readonly available: _angular_core.Signal<readonly FlyCurrency[]>;
|
|
9415
9481
|
private readonly _byCode;
|
|
@@ -9461,7 +9527,105 @@ declare class FlyCurrencySelectorComponent implements ControlValueAccessor {
|
|
|
9461
9527
|
private _commit;
|
|
9462
9528
|
private _touch;
|
|
9463
9529
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlyCurrencySelectorComponent, never>;
|
|
9464
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlyCurrencySelectorComponent, "fly-currency-selector", never, { "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "currencies": { "alias": "currencies"; "required": false; "isSignal": true; }; "fetchFn": { "alias": "fetchFn"; "required": false; "isSignal": true; }; "allowedCodes": { "alias": "allowedCodes"; "required": false; "isSignal": true; }; "pinnedCodes": { "alias": "pinnedCodes"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, { "selectionChange": "selectionChange"; "selectionDetailChange": "selectionDetailChange"; "openedChange": "openedChange"; }, never, never, true, never>;
|
|
9530
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlyCurrencySelectorComponent, "fly-currency-selector", never, { "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "currencies": { "alias": "currencies"; "required": false; "isSignal": true; }; "fetchFn": { "alias": "fetchFn"; "required": false; "isSignal": true; }; "allowedCodes": { "alias": "allowedCodes"; "required": false; "isSignal": true; }; "pinnedCodes": { "alias": "pinnedCodes"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "locked": { "alias": "locked"; "required": false; "isSignal": true; }; "lockedReasonKey": { "alias": "lockedReasonKey"; "required": false; "isSignal": true; }; "lockedReasonParams": { "alias": "lockedReasonParams"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, { "selectionChange": "selectionChange"; "selectionDetailChange": "selectionDetailChange"; "openedChange": "openedChange"; }, never, never, true, never>;
|
|
9531
|
+
}
|
|
9532
|
+
|
|
9533
|
+
/**
|
|
9534
|
+
* Locale-aware money formatting — the primitive `fly-currency-selector` never shipped
|
|
9535
|
+
* (see D-B7-2 in `FlyOS.PPM/.workflow/design/DECISIONS.md`).
|
|
9536
|
+
*
|
|
9537
|
+
* `FlyCurrency.decimalDigits` exists precisely so a consumer "doesn't have to assume 2
|
|
9538
|
+
* and misprice a dinar" — and yet nothing in the design system read it. Every consuming
|
|
9539
|
+
* app hand-rolled its own money string, and the ones that hardcoded `.toFixed(2)` are
|
|
9540
|
+
* wrong for seven real ISO 4217 currencies (BHD, IQD, JOD, KWD, LYD, OMR, TND — all
|
|
9541
|
+
* 3-decimal, all Gulf/MENA, on a platform whose reference tenant is a UAE government
|
|
9542
|
+
* entity).
|
|
9543
|
+
*
|
|
9544
|
+
* ## Why `formatToParts`, not a hand-rolled `${symbol}${number}` template
|
|
9545
|
+
* Currency placement is not "symbol then number" everywhere: `en` prefixes (`$1,234.50`),
|
|
9546
|
+
* `fr` and `ar` suffix it (`1 234,50 €`, with `ar` additionally wrapping the whole
|
|
9547
|
+
* expression in RTL marks). Building the string manually would mean re-deriving that
|
|
9548
|
+
* placement table ourselves and getting it wrong for a locale nobody tested. Instead
|
|
9549
|
+
* this asks `Intl.NumberFormat` to lay out a real `style: 'currency'` string for the
|
|
9550
|
+
* given locale, then walks the parts and swaps only the `currency` token for our own
|
|
9551
|
+
* text (the platform's `symbol` field, the code, or nothing) — every digit, the sign,
|
|
9552
|
+
* the decimal/group separators and the placement itself stay exactly what `Intl` (and
|
|
9553
|
+
* therefore the platform's existing number-formatting surface, `format.ts`) already
|
|
9554
|
+
* gets right for that locale.
|
|
9555
|
+
*
|
|
9556
|
+
* ## Why the Intl template is always built with `currencyDisplay: 'code'`
|
|
9557
|
+
* The formatter that produces the parts to substitute into is ALWAYS built with
|
|
9558
|
+
* `currencyDisplay: 'code'`, never `'symbol'` — even when `display: 'symbol'` is what
|
|
9559
|
+
* the caller asked for. `'code'` is the one `currencyDisplay` value ICU renders with a
|
|
9560
|
+
* stable separator (a literal space) between the currency token and the number, in
|
|
9561
|
+
* every locale tested (`en`, `fr`, `ar`, `ar-EG`). `'symbol'` does NOT: whether ICU
|
|
9562
|
+
* inserts a space depends on whether ITS OWN symbol for that specific currency happens
|
|
9563
|
+
* to be a single glyph (`$`, no space) or a multi-letter fallback (`KWD`, WITH a space)
|
|
9564
|
+
* — a per-currency accident of ICU's data, not something this function controls. Using
|
|
9565
|
+
* `'symbol'` as the template would make `display: 'symbol'` output space-inconsistent
|
|
9566
|
+
* currency-to-currency for reasons that have nothing to do with what this function
|
|
9567
|
+
* actually renders (the platform's OWN `symbol` field, substituted in afterward).
|
|
9568
|
+
*
|
|
9569
|
+
* ## `decimalDigits` always wins over Intl's own idea of the currency
|
|
9570
|
+
* `minimumFractionDigits`/`maximumFractionDigits` are pinned to the caller's
|
|
9571
|
+
* `decimalDigits`, not left to Intl's built-in per-currency table. Intl's table is
|
|
9572
|
+
* usually right, but the platform's own `/api/currencies/brief` catalogue is the
|
|
9573
|
+
* authoritative source on this platform — pinning the digits is what makes this
|
|
9574
|
+
* function agree with the picker regardless of whether the two ever disagree.
|
|
9575
|
+
*/
|
|
9576
|
+
/** `'symbol'` (default): the row's own symbol (`$`, `د.إ`) — falls back to the ISO code
|
|
9577
|
+
* when no symbol is available (see the bare-code fallback below). `'code'`: always the
|
|
9578
|
+
* unambiguous ISO 4217 code — the right choice for a table column mixing currencies.
|
|
9579
|
+
* `'none'`: the bare number, for a headline figure whose currency is already named
|
|
9580
|
+
* elsewhere on screen (a currency selector next to it, a report title). */
|
|
9581
|
+
type FlyMoneyDisplay = 'symbol' | 'code' | 'none';
|
|
9582
|
+
interface FlyFormatMoneyOptions {
|
|
9583
|
+
/** @default 'symbol' */
|
|
9584
|
+
display?: FlyMoneyDisplay;
|
|
9585
|
+
/** BCP-47 locale tag. @default 'en' */
|
|
9586
|
+
locale?: string;
|
|
9587
|
+
}
|
|
9588
|
+
/**
|
|
9589
|
+
* Formats `amount` in `currency`, localized to `options.locale`.
|
|
9590
|
+
*
|
|
9591
|
+
* ```ts
|
|
9592
|
+
* flyFormatMoney(1234.5, kwdRow) // "د.ك 1,234.500" (KWD is 3-decimal)
|
|
9593
|
+
* flyFormatMoney(1234, 'JPY') // "JPY 1,234" (bare code, no symbol to read — degrades to the code)
|
|
9594
|
+
* flyFormatMoney(-42, usdRow, { display: 'code' }) // "-USD 42.00"
|
|
9595
|
+
* flyFormatMoney(99.9, eurRow, { display: 'none' }) // "99.90" (currency named elsewhere on screen)
|
|
9596
|
+
* flyFormatMoney(null, usdRow) // "—" (never "NaN")
|
|
9597
|
+
* ```
|
|
9598
|
+
*
|
|
9599
|
+
* `amount == null` or non-finite (`NaN`, `Infinity`), or an unresolvable `currency`,
|
|
9600
|
+
* renders {@link FLY_EMPTY_VALUE} — the same placeholder every other `format.ts`
|
|
9601
|
+
* primitive uses, so a money cell in a mixed table degrades exactly like its neighbours
|
|
9602
|
+
* instead of introducing a second "no value" convention.
|
|
9603
|
+
*/
|
|
9604
|
+
declare function flyFormatMoney(amount: number | null | undefined, currency: FlyCurrency | string | null | undefined, options?: FlyFormatMoneyOptions): string;
|
|
9605
|
+
|
|
9606
|
+
/**
|
|
9607
|
+
* `{{ amount | flyMoney: currencyRow }}` → `"$1,234.50"` / `{{ amount | flyMoney: 'KWD' }}`
|
|
9608
|
+
* → `"KD 1,234.500"`.
|
|
9609
|
+
*
|
|
9610
|
+
* Template wrapper over {@link flyFormatMoney}, defaulting the locale to the active
|
|
9611
|
+
* {@link I18nService} language the same way every other `Fly*Pipe` in `format.pipes.ts`
|
|
9612
|
+
* does — see that file's doc comment for the "pass the locale signal explicitly in a
|
|
9613
|
+
* view that must react live to the language switcher" caveat, which applies here too.
|
|
9614
|
+
*
|
|
9615
|
+
* A separate file from `format.pipes.ts` on purpose: this pipe's `currency` argument
|
|
9616
|
+
* depends on `FlyCurrency` (the currency-selector's data contract), a domain type the
|
|
9617
|
+
* pure number/byte/date formatters in `format.pipes.ts` have no reason to import.
|
|
9618
|
+
*
|
|
9619
|
+
* ```html
|
|
9620
|
+
* {{ invoice.total | flyMoney: invoice.currency }}
|
|
9621
|
+
* {{ invoice.total | flyMoney: invoice.currency : { display: 'code' } }}
|
|
9622
|
+
* ```
|
|
9623
|
+
*/
|
|
9624
|
+
declare class FlyMoneyPipe implements PipeTransform {
|
|
9625
|
+
private readonly i18n;
|
|
9626
|
+
transform(amount: number | null | undefined, currency: FlyCurrency | string | null | undefined, options?: FlyFormatMoneyOptions): string;
|
|
9627
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlyMoneyPipe, never>;
|
|
9628
|
+
static ɵpipe: _angular_core.ɵɵPipeDeclaration<FlyMoneyPipe, "flyMoney", true>;
|
|
9465
9629
|
}
|
|
9466
9630
|
|
|
9467
9631
|
/**
|
|
@@ -11517,6 +11681,7 @@ declare class FlyAppTopbarComponent {
|
|
|
11517
11681
|
protected readonly activeModule: _angular_core.Signal<FlyAppModule | null>;
|
|
11518
11682
|
protected readonly brandAriaLabel: _angular_core.Signal<string>;
|
|
11519
11683
|
protected readonly switchAriaLabel: _angular_core.Signal<string>;
|
|
11684
|
+
protected readonly triggerAriaLabel: _angular_core.Signal<string>;
|
|
11520
11685
|
constructor();
|
|
11521
11686
|
protected iconFor(key: string): TemplateRef<unknown> | null;
|
|
11522
11687
|
protected indexOf(mod: FlyAppModule): number;
|
|
@@ -12342,6 +12507,6 @@ declare const AUDIENCE_ERROR_CODES: {
|
|
|
12342
12507
|
};
|
|
12343
12508
|
type AudienceErrorCode = (typeof AUDIENCE_ERROR_CODES)[keyof typeof AUDIENCE_ERROR_CODES];
|
|
12344
12509
|
|
|
12345
|
-
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, 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, 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 };
|
|
12346
|
-
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, FlyLaunchEventDetail, FlyLaunchRequestDetail, FlyLeaderboardRow, FlyLiveRefreshOptions, FlyLocaleEntry, FlyMagicBarIconName, FlyMetaItem, FlyModerationLoadPageRequest, FlyModerationLockThreadRequest, FlyModerationOpenSubjectRequest, FlyModerationReport, FlyModerationReportPage, FlyModerationResolutionStatus, FlyModerationResolveRequest, 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, 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 };
|
|
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 };
|
|
12347
12512
|
//# sourceMappingURL=flyos-design-system.d.ts.map
|