@flyos/design-system 3.4.0 → 3.6.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.
@@ -1484,6 +1484,10 @@ declare class FlyStandaloneAuthService {
1484
1484
  * Standalone-dev route guard: if there is no authenticated session, start the PKCE login (redirects
1485
1485
  * to the STS) and block activation. Not reached in federated mode — the shell mounts the app's root
1486
1486
  * component directly rather than routing through the app shell.
1487
+ *
1488
+ * Before redirecting it stashes the attempted URL under the same appId-scoped sessionStorage key the
1489
+ * step-up flow uses, so the auth callback lands back on the deep link instead of `/` — an
1490
+ * unauthenticated deep link previously lost its target on the STS round-trip.
1487
1491
  */
1488
1492
  declare const flyStandaloneAuthGuard: CanActivateFn;
1489
1493
 
@@ -1789,7 +1793,7 @@ declare class I18nService {
1789
1793
  * is a safe default that an integrator can override without coordination.
1790
1794
  *
1791
1795
  * Scope: only the keys the **shippable** DS components reference today
1792
- * (`common.*` toolbar/link/emoji-picker labels + `agent.lookup.*` + `select.*` + `typeahead.*` + `cron.*` + `gantt.*` + `form.*` + `captcha.*` + `comment.*` + `canvas_board.*` + `moderation.*` + `people_picker.*` + `currency_selector.*` + `pagination.*` + `tree_nav.*` + `magic_actions.*`). When a new DS component
1796
+ * (`common.*` toolbar/link/emoji-picker labels + `agent.lookup.*` + `select.*` + `typeahead.*` + `cron.*` + `gantt.*` + `form.*` + `captcha.*` + `comment.*` + `canvas_board.*` + `moderation.*` + `people_picker.*` + `strategy_selector.*` + `currency_selector.*` + `pagination.*` + `tree_nav.*` + `magic_actions.*`). When a new DS component
1793
1797
  * starts using `| translate` **or `I18nService.t()`**, add its keys here so it stays
1794
1798
  * self-sufficient — `fly-magic-actions` shipped resolving three keys that existed only in the
1795
1799
  * shell bundle, so an External App rendering it got the raw key string as every disabled
@@ -5726,7 +5730,10 @@ declare class FlyFileUploadComponent {
5726
5730
  constructor();
5727
5731
  allSlots: _angular_core.Signal<UploadSlot[]>;
5728
5732
  canAddMore: _angular_core.Signal<boolean>;
5729
- limitHint: _angular_core.Signal<string>;
5733
+ limitHintParams: _angular_core.Signal<{
5734
+ n: number;
5735
+ mb: number;
5736
+ }>;
5730
5737
  triggerFileInput(): void;
5731
5738
  onDragOver(e: DragEvent): void;
5732
5739
  onDragLeave(e: DragEvent): void;
@@ -8783,6 +8790,22 @@ declare class FlyMagicActionsComponent {
8783
8790
  * string instead — {@link MagicBarActionSpec.iconPath} stays `string`.
8784
8791
  */
8785
8792
  declare const FLY_MAGIC_BAR_ICONS: {
8793
+ /**
8794
+ * "Download …" — an action that hands the user a FILE (Export to Excel/PDF, a
8795
+ * generated report). Arrow down onto a baseline, the Material-style download mark.
8796
+ *
8797
+ * Distinct from {@link VERBATIM_FROM_UX_DROP.export} on purpose, and the distinction
8798
+ * is the point of this entry. The drop's Export/Import pair reads the tray as the
8799
+ * APP — data leaves it upward on export — which is coherent but inverts the reading
8800
+ * users bring to a file transfer, where down means "arriving on my machine". Every
8801
+ * consumer of `export` on the platform is in fact a download, so the up arrow was
8802
+ * being read as "upload" on all of them. `export` keeps its drop geometry for a
8803
+ * genuine data-exchange pair; anything that produces a file for the user takes this.
8804
+ *
8805
+ * The baseline rather than a tray also keeps it apart from `import`, which is the
8806
+ * tray-and-down-arrow shape a download glyph would otherwise collide with.
8807
+ */
8808
+ readonly download: "<path d=\"M12 4v11M7.5 10.5l4.5 4.5 4.5-4.5\"/><path d=\"M5 20h14\"/>";
8786
8809
  /** Signal-detail "View trace" — no standalone path in the drop; an activity/pulse line. */
8787
8810
  readonly viewTrace: "<path d=\"M3 12h4l2-7 4 14 2-7h6\"/>";
8788
8811
  /** Signal-detail "Archive". */
@@ -8822,6 +8845,15 @@ declare const FLY_MAGIC_BAR_ICONS: {
8822
8845
  readonly export: "<path d=\"M12 16V7M8 11l4-4 4 4\"/><path d=\"M4 15v3a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-3\"/>";
8823
8846
  /** `Home.dc.html:616`. */
8824
8847
  readonly import: "<path d=\"M12 4v9M8 9l4 4 4-4\"/><path d=\"M4 15v3a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-3\"/>";
8848
+ /**
8849
+ * `Home.dc.html:362` — the chrome's own reload arrow, reused verbatim so a
8850
+ * contributed "Refresh" action reads identically to the shell's reload button
8851
+ * sitting a few pixels away in the same bar.
8852
+ *
8853
+ * NEVER mirror this under RTL. Its arrow is circular, and the mirrored form reads
8854
+ * as "undo" (design §9 rule 7: only directional arrow/chevron glyphs mirror).
8855
+ */
8856
+ readonly refresh: "<path d=\"M20.2 12a8.2 8.2 0 1 1-2.7-6.1\"/><path d=\"M20.4 4.1v4.6h-4.6\"/>";
8825
8857
  /** `Home.dc.html:547` — "Mark as complete". */
8826
8858
  readonly check: "<circle cx=\"12\" cy=\"12\" r=\"8.6\"/><path d=\"M8.4 12.3l2.6 2.6 4.6-5\"/>";
8827
8859
  /** `Home.dc.html:550` — "Watch task". */
@@ -9888,6 +9920,155 @@ declare class FlyPeoplePickerComponent {
9888
9920
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlyPeoplePickerComponent, "fly-people-picker", never, { "searchFn": { "alias": "searchFn"; "required": true; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "excludeIds": { "alias": "excludeIds"; "required": false; "isSignal": true; }; "initialSelection": { "alias": "initialSelection"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; }, { "selectionChange": "selectionChange"; }, never, never, true, never>;
9889
9921
  }
9890
9922
 
9923
+ /**
9924
+ * One candidate/selected strategic objective. Mirrors the fields of the
9925
+ * Strategies app's `ObjectiveLookupDto` the component renders: the objective's
9926
+ * own id + title, and the parent strategy's id + title (secondary line — two
9927
+ * strategies may both carry a "Grow market share" objective). `statusValue` is
9928
+ * the objective's status enum name, optional and purely decorative.
9929
+ *
9930
+ * The full ref (not just the id) is what {@link FlyStrategySelectorComponent.selectionChange}
9931
+ * emits, so a consuming app can freeze the label at link time — the canonical
9932
+ * cross-app reference shape, where the consumer never re-resolves another
9933
+ * app's row just to render history.
9934
+ */
9935
+ interface FlyStrategyObjectiveRef {
9936
+ readonly id: string;
9937
+ readonly title: string;
9938
+ readonly strategyId: string;
9939
+ readonly strategyTitle: string;
9940
+ /** The parent strategy's PrimeIcons class (e.g. `pi-flag`), null when the strategy has none. */
9941
+ readonly strategyIcon?: string | null;
9942
+ readonly statusValue?: string | null;
9943
+ }
9944
+ /** Host-supplied loader: async search returning candidate objectives for a query (empty query = "top N"). */
9945
+ type FlyStrategyObjectiveSearchFn = (query: string) => rxjs.Observable<readonly FlyStrategyObjectiveRef[]>;
9946
+
9947
+ /** The platform endpoint the component falls back to. Relative — the host's gateway + auth interceptors apply. */
9948
+ declare const FLY_STRATEGY_OBJECTIVES_LOOKUP_ENDPOINT = "/api/strategies/objectives/lookup";
9949
+ /**
9950
+ * Tolerant unwrap of the `ApiResponse<List<ObjectiveLookupDto>>` envelope. Anything that
9951
+ * doesn't parse degrades to an empty list — a picker must degrade to "no options", never throw.
9952
+ */
9953
+ declare function flyUnwrapObjectiveLookup(res: unknown): readonly FlyStrategyObjectiveRef[];
9954
+ /** One contiguous run of {@link FlyStrategyObjectiveRef} rows sharing the same parent strategy —
9955
+ * the panel's drilldown grouping. Built from the search results as returned (already ordered
9956
+ * strategy-first by the backend/mock, so a single linear pass is enough — no re-sort here). */
9957
+ interface FlyStrategyObjectiveGroup {
9958
+ readonly strategyId: string;
9959
+ readonly strategyTitle: string;
9960
+ readonly strategyIcon: string | null;
9961
+ readonly items: readonly FlyStrategyObjectiveRef[];
9962
+ }
9963
+ /**
9964
+ * **`fly-strategy-selector`** — pick ONE strategic objective from the Strategies
9965
+ * app, so any Core or External App can optionally link its own entity (a
9966
+ * programme, an initiative, a budget line) to the strategy it serves.
9967
+ *
9968
+ * Pre-canned for the Strategies app's cross-strategy objective lookup
9969
+ * (`GET /api/strategies/objectives/lookup?q=`, `ObjectiveLookupDto` — only
9970
+ * StrategicObjective items on the PUBLISHED version of an Active strategy
9971
+ * surface there): with no data inputs it queries that endpoint itself through
9972
+ * the host's `HttpClient`, so gateway routing and the auth interceptor apply
9973
+ * and a consuming app writes one tag and nothing else. A host that must not
9974
+ * reach the platform directly supplies `[searchFn]` instead — the same
9975
+ * transport-agnostic escape hatch `fly-people-picker` and
9976
+ * `fly-currency-selector` offer.
9977
+ *
9978
+ * A bespoke panel (own search box + floating results box), not a wrapped
9979
+ * `fly-typeahead` — a flat list can't show which strategy an objective belongs
9980
+ * to, and two strategies routinely share near-identical objective titles.
9981
+ * Results are grouped into contiguous {@link FlyStrategyObjectiveGroup} runs
9982
+ * with the parent strategy's own icon as the group header, mirroring
9983
+ * `fly-currency-selector`'s pinned/all group pattern.
9984
+ *
9985
+ * Single-select by design (an entity serves ONE objective link here; a many-
9986
+ * to-many mapping is a matrix surface, not a form field) and built for
9987
+ * OPTIONAL fields: the empty state is a search box, a pick renders as a
9988
+ * removable chip (objective title + parent strategy secondary line), and
9989
+ * {@link selectionChange} emits `null` on removal.
9990
+ *
9991
+ * Emits the full {@link FlyStrategyObjectiveRef}, not just the id: the
9992
+ * consumer freezes the label at link time (the cross-app reference canon —
9993
+ * the link must stay renderable even when the strategy is later archived or
9994
+ * the caller can no longer read it).
9995
+ *
9996
+ * For an edit surface, feed {@link initialSelection} with the saved ref (the
9997
+ * consumer's own frozen copy — no re-resolve round-trip needed). Seeding never
9998
+ * emits {@link selectionChange}, so loading a form does not mark it dirty.
9999
+ *
10000
+ * i18n is self-sufficient through the `strategy_selector.*` keys in
10001
+ * `DS_BASELINE_LOCALES` (en/ar/fr/ur). RTL works via logical CSS.
10002
+ *
10003
+ * @example
10004
+ * ```html
10005
+ * <!-- Queries /api/strategies/objectives/lookup itself: -->
10006
+ * <fly-strategy-selector (selectionChange)="onObjectivePicked($event)" />
10007
+ *
10008
+ * <!-- Edit surface, seeded from the host's frozen ref: -->
10009
+ * <fly-strategy-selector
10010
+ * [initialSelection]="savedObjectiveRef()"
10011
+ * (selectionChange)="onObjectiveChanged($event)" />
10012
+ * ```
10013
+ */
10014
+ declare class FlyStrategySelectorComponent {
10015
+ private readonly http;
10016
+ /** Host-supplied loader. Omit to fall back to `GET /api/strategies/objectives/lookup`. */
10017
+ readonly searchFn: _angular_core.InputSignal<FlyStrategyObjectiveSearchFn | null>;
10018
+ /** Saved ref to seed an edit surface with — rendered as the picked chip. Seeded ONCE, on the
10019
+ * first non-null value (a host's load typically lands after construction); later input changes
10020
+ * are ignored so a re-emitting load can't clobber the user's in-progress edit. Seeding does NOT
10021
+ * emit {@link selectionChange}. */
10022
+ readonly initialSelection: _angular_core.InputSignal<FlyStrategyObjectiveRef | null>;
10023
+ /** Placeholder for the search box. Falls back to the localized `strategy_selector.search_placeholder`. */
10024
+ readonly placeholder: _angular_core.InputSignal<string>;
10025
+ /** Debounce (ms) between the last keystroke and the search call. */
10026
+ readonly debounceMs: _angular_core.InputSignal<number>;
10027
+ /** The picked objective in full (label freezable by the host), or `null` when removed. */
10028
+ readonly selectionChange: _angular_core.OutputEmitterRef<FlyStrategyObjectiveRef | null>;
10029
+ private readonly searchEl?;
10030
+ private readonly host;
10031
+ private readonly _selected;
10032
+ readonly isOpen: _angular_core.WritableSignal<boolean>;
10033
+ readonly searchTerm: _angular_core.WritableSignal<string>;
10034
+ readonly activeIndex: _angular_core.WritableSignal<number>;
10035
+ readonly loading: _angular_core.WritableSignal<boolean>;
10036
+ readonly loadFailed: _angular_core.WritableSignal<boolean>;
10037
+ /** The most recent search batch, already ordered strategy-first by the server/mock. */
10038
+ private readonly _results;
10039
+ private _searchStarted;
10040
+ /** One-shot latch: flips true after {@link initialSelection} has seeded the chip. */
10041
+ private _seeded;
10042
+ private _timer;
10043
+ private _searchSub;
10044
+ constructor();
10045
+ readonly selected: _angular_core.Signal<FlyStrategyObjectiveRef | null>;
10046
+ readonly showSearch: _angular_core.Signal<boolean>;
10047
+ /** {@link _results} folded into contiguous per-strategy runs — the panel's drilldown grouping.
10048
+ * Also doubles as the flat keyboard-navigation order (a group header is never itself an option,
10049
+ * so nav index N always resolves via {@link navOptions}, not a per-group offset). */
10050
+ readonly groups: _angular_core.Signal<readonly FlyStrategyObjectiveGroup[]>;
10051
+ readonly navOptions: _angular_core.Signal<readonly FlyStrategyObjectiveRef[]>;
10052
+ navIndexOf(id: string): number;
10053
+ readonly activeDescendant: _angular_core.Signal<string>;
10054
+ optionId(index: number): string;
10055
+ open(): void;
10056
+ close(): void;
10057
+ onSearchInput(value: string): void;
10058
+ onPanelKeydown(event: KeyboardEvent): void;
10059
+ onOptionHover(index: number): void;
10060
+ onDocumentMouseDown(ev: MouseEvent): void;
10061
+ retry(): void;
10062
+ private _scheduleSearch;
10063
+ private _clearTimer;
10064
+ private _runSearch;
10065
+ private _search;
10066
+ pick(ref: FlyStrategyObjectiveRef): void;
10067
+ remove(): void;
10068
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlyStrategySelectorComponent, never>;
10069
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlyStrategySelectorComponent, "fly-strategy-selector", never, { "searchFn": { "alias": "searchFn"; "required": false; "isSignal": true; }; "initialSelection": { "alias": "initialSelection"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "debounceMs": { "alias": "debounceMs"; "required": false; "isSignal": true; }; }, { "selectionChange": "selectionChange"; }, never, never, true, never>;
10070
+ }
10071
+
9891
10072
  /**
9892
10073
  * One ISO 4217 currency as the selector renders it.
9893
10074
  *
@@ -10023,7 +10204,11 @@ declare class FlyCurrencySelectorComponent implements ControlValueAccessor {
10023
10204
  * - not `locked()` — a frozen value is authoritative; proposing one contradicts the lock.
10024
10205
  * - the control is still empty — a written value always wins.
10025
10206
  *
10026
- * It fires at most once per instance: clearing the field by hand latches it off, so the value
10207
+ * It stays armed until something rules it out: a user commit (pick, clear, remove) or a
10208
+ * written non-empty value. A written NULL does not rule it out — the forms layer initializes
10209
+ * a fresh control by writing its empty value on a microtask, which can land AFTER a
10210
+ * synchronously-resolved default has already committed, and reading that write as a user
10211
+ * clear would erase the default. Clearing the field by hand does latch it off, so the value
10027
10212
  * cannot reappear and read as the clear having not registered.
10028
10213
  *
10029
10214
  * A host that supplied `[currencies]` or `[fetchFn]` is never taken to the platform endpoint —
@@ -10092,8 +10277,17 @@ declare class FlyCurrencySelectorComponent implements ControlValueAccessor {
10092
10277
  private _fetchStarted;
10093
10278
  /** Guards the once-per-instance tenant-default resolve. */
10094
10279
  private _tenantDefaultStarted;
10095
- /** Latches once the default has been applied, or ruled out by any commit (pick, clear, write). */
10096
- private _tenantDefaultSettled;
10280
+ /**
10281
+ * Latches once the default has been RULED OUT: a user commit (pick, clear, remove) or a
10282
+ * written non-empty value. Applying the default does NOT latch it, and neither does a null
10283
+ * write: `NgModel` syncs the model's initial value on a microtask (`resolvedPromise.then` in
10284
+ * its `_updateValue`), so a SYNCHRONOUS `tenantDefaultFetchFn` — `of(currency)`, an offline
10285
+ * lookup — commits before that first write lands. When the self-application latched this
10286
+ * guard, the stale null write erased the committed default AND pinned the guard off, so the
10287
+ * default never applied for exactly those hosts (async HTTP fetches always lost the race
10288
+ * and were unaffected).
10289
+ */
10290
+ private _tenantDefaultRuledOut;
10097
10291
  /** The resolved row, kept so a `writeValue(null)` arriving AFTER the fetch can still use it. */
10098
10292
  private _tenantDefaultRow;
10099
10293
  private readonly searchEl?;
@@ -10161,7 +10355,10 @@ declare class FlyCurrencySelectorComponent implements ControlValueAccessor {
10161
10355
  * Applies the resolved default to a still-empty control.
10162
10356
  *
10163
10357
  * Called from both ends of a race with no fixed winner: the fetch may land before the forms
10164
- * layer writes, or after it writes the empty value a form is built with.
10358
+ * layer writes, or after it writes the empty value a form is built with. It can also run
10359
+ * AGAIN after applying — the forms layer's deferred initial null write clears the codes and
10360
+ * re-enters here — in which case it re-commits the same row, which also re-syncs the
10361
+ * `FormControl` the null write just reset.
10165
10362
  */
10166
10363
  private _applyTenantDefaultIfEmpty;
10167
10364
  writeValue(value: FlyCurrencySelectorValue): void;
@@ -12565,10 +12762,15 @@ declare class FlyModuleIconDirective {
12565
12762
  * Standalone (no dock anywhere above), nothing happens and the bar renders as the
12566
12763
  * app's own first row, exactly as before.
12567
12764
  *
12568
- * a11y: the trigger is `aria-haspopup="menu"` + `aria-expanded`; the popover is
12569
- * `role="menu"` with `role="menuitem"` rows carrying `aria-current="page"` on
12570
- * the active one. Arrow keys rove (RTL-aware, wrapping, skipping disabled),
12571
- * Home/End jump, Escape closes and returns focus to the trigger, and a click
12765
+ * The trigger is split in two: the anchor (icon + label) is a breadcrumb —
12766
+ * click it and it re-activates the current module, the same "back to the
12767
+ * register" nav a popover row for it already performs, without opening the
12768
+ * popover. The chevron alone is the switcher's `aria-haspopup="menu"` +
12769
+ * `aria-expanded` trigger. The popover is `role="menu"` with `role="menuitem"`
12770
+ * rows carrying `aria-current="page"` on the active one.
12771
+ *
12772
+ * a11y: arrow keys rove the popover (RTL-aware, wrapping, skipping disabled),
12773
+ * Home/End jump, Escape closes and returns focus to the chevron, and a click
12572
12774
  * outside closes. Only the topmost overlay answers Escape, so a switcher opened
12573
12775
  * over a drawer closes alone.
12574
12776
  */
@@ -12612,12 +12814,21 @@ declare class FlyAppTopbarComponent {
12612
12814
  protected readonly activeModule: _angular_core.Signal<FlyAppModule | null>;
12613
12815
  protected readonly brandAriaLabel: _angular_core.Signal<string>;
12614
12816
  protected readonly switchAriaLabel: _angular_core.Signal<string>;
12615
- protected readonly triggerAriaLabel: _angular_core.Signal<string>;
12616
12817
  constructor();
12617
12818
  private dockIntoHostChrome;
12618
12819
  protected iconFor(key: string): TemplateRef<unknown> | null;
12619
12820
  protected indexOf(mod: FlyAppModule): number;
12620
12821
  protected toggle(): void;
12822
+ /**
12823
+ * The anchor (icon + label) is a breadcrumb crumb, not the switcher's
12824
+ * trigger — that's the chevron's job now. Clicking it re-activates the
12825
+ * CURRENT module, the same "back to the register" navigation a click on its
12826
+ * own row in the popover already performs, without opening the popover to
12827
+ * get there. Only when nothing is active yet (the neutral "Select a
12828
+ * module" state, nothing to go back to) does it fall back to opening the
12829
+ * switcher, matching the old combined-trigger behaviour for that state.
12830
+ */
12831
+ protected onAnchorClick(): void;
12621
12832
  private openMenu;
12622
12833
  protected close(restoreFocus?: boolean): void;
12623
12834
  protected select(mod: FlyAppModule): void;
@@ -13485,6 +13696,6 @@ declare const AUDIENCE_ERROR_CODES: {
13485
13696
  };
13486
13697
  type AudienceErrorCode = (typeof AUDIENCE_ERROR_CODES)[keyof typeof AUDIENCE_ERROR_CODES];
13487
13698
 
13488
- 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_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, FlyMagicActionsComponent, FlyMetaListComponent, FlyModalComponent, FlyModerationQueueComponent, FlyModuleIconDirective, FlyMoneyPipe, FlyPagerComponent, FlyPaginationComponent, FlyPeoplePickerComponent, FlyPointsTierComponent, FlyProgressComponent, FlyRelativeTimePipe, FlyRemoteContextService, FlyRemoteRouter, FlyRemoteRouterOutletComponent, FlySearchInputComponent, FlySectionHeaderComponent, FlySecureSrcDirective, FlySegmentedComponent, FlySelectComponent, FlySkeletonComponent, FlySliderComponent, FlySparklineComponent, FlySpinnerComponent, FlyStandaloneAuthCallbackComponent, FlyStandaloneAuthService, FlyStandaloneMagicActionsComponent, FlyStateMessageComponent, 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, 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, provideFlyStandaloneAuth, reloadOnceForChunkError, requestAppLaunch, resolveActiveModule, resolveActiveSection, resolveActiveTab, resolveCellValue, resolveStateIcon, resolveStateMessageKey, restoreFocus, sameTags, sectionHintKey, sectionLayout, sliderTrackGradient, sparklinePath, sparklinePoints, stepUpInterceptor, stepUpReturnKey, trimAgentPayload, trimAgentString, unloadRemoteStyles, utf8ByteLength, validateAgentPayload, warnIfEmbeddedSessionMissing };
13489
- 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, 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, FlyTenantDefaultCurrencyFetchFn, FlyThemeMode, FlyTooltipPlacement, FlyTreeNavNode, FlyTypeaheadOption, FlyWindowHelpHintEventDetail, FlyWindowHelpPublisher, FlyWindowPageTitleEventDetail, FlyWindowTitlePublisher, FlyosPendingLaunches, FocusRestore, FormBannerKind, GanttDependency, GanttDependencyCreate, GanttDependencyDelete, GanttDependencyType, 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, SegmentedVariant, ShareOrgChartOption, ShareOuNode, SharePanelLevelOption, SharePermissionEntry, SharePrincipal, SharePrincipalKind, ShareUserResult, StateMessageKind, StepUpChallenge, StepUpReauthHandler, StepUpReauthRequest, TabsVariant, ToastAction, ToastEntry, ToastOptions, ToastVariant, User, UserPrincipal, UsersTerm, WindowBreadcrumb, WindowHelpHint, WindowInstance, WindowState };
13699
+ 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, FlyMagicActionsComponent, FlyMetaListComponent, FlyModalComponent, FlyModerationQueueComponent, FlyModuleIconDirective, FlyMoneyPipe, 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, provideFlyStandaloneAuth, reloadOnceForChunkError, requestAppLaunch, resolveActiveModule, resolveActiveSection, resolveActiveTab, resolveCellValue, resolveStateIcon, resolveStateMessageKey, restoreFocus, sameTags, sectionHintKey, sectionLayout, sliderTrackGradient, sparklinePath, sparklinePoints, stepUpInterceptor, stepUpReturnKey, trimAgentPayload, trimAgentString, unloadRemoteStyles, utf8ByteLength, validateAgentPayload, warnIfEmbeddedSessionMissing };
13700
+ 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, 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, 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, SegmentedVariant, ShareOrgChartOption, ShareOuNode, SharePanelLevelOption, SharePermissionEntry, SharePrincipal, SharePrincipalKind, ShareUserResult, StateMessageKind, StepUpChallenge, StepUpReauthHandler, StepUpReauthRequest, TabsVariant, ToastAction, ToastEntry, ToastOptions, ToastVariant, User, UserPrincipal, UsersTerm, WindowBreadcrumb, WindowHelpHint, WindowInstance, WindowState };
13490
13701
  //# sourceMappingURL=flyos-design-system.d.ts.map