@flyos/design-system 2.7.0 → 3.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.
@@ -7616,9 +7616,38 @@ declare function magicBarOwnerKey(owner: MagicBarOwnerRef): string;
7616
7616
  /** One `menuitemradio` row. `value` is the publisher's own vocabulary. */
7617
7617
  interface MagicBarRadioOption {
7618
7618
  readonly value: string;
7619
+ /**
7620
+ * i18n key for this row. Required, and it stays required — the overwhelming case is a fixed
7621
+ * vocabulary (statuses, sort orders) that MUST translate. When {@link label} is supplied this
7622
+ * is the accessible fallback used if the row's data-derived text is ever empty, so give it a
7623
+ * generic key ("Untitled") rather than inventing a per-value one.
7624
+ */
7619
7625
  readonly labelKey: string;
7620
7626
  /** Params for {@link labelKey} — the count-badged option ("All statuses ({{count}})"). */
7621
7627
  readonly labelParams?: MagicBarTextParams;
7628
+ /**
7629
+ * ALREADY-RESOLVED display text, for a row whose label is TENANT DATA rather than a caption —
7630
+ * a campaign name, an area of focus, an owner. When present it wins over {@link labelKey}.
7631
+ *
7632
+ * ## Why this had to exist
7633
+ * Everything else in this contract is an i18n key, deliberately (see the module header). But a
7634
+ * key can only name a string the APP ships in its locale bundles, and a tenant's campaign names
7635
+ * are rows in their database. Without this field a publisher had exactly two bad options: put
7636
+ * the name in `labelKey`, which renders correctly in `en`, renders identically untranslated in
7637
+ * ar/fr/ur, and is invisible to every locale tool; or leave the filter out of the bar entirely.
7638
+ * Thoughts' `top-trending` chose the second and kept its campaign/area filters in-page — that
7639
+ * is the gap this closes.
7640
+ *
7641
+ * ## What it does NOT license
7642
+ * Do not use it for captions. If the string is something your app authored — "All statuses",
7643
+ * "Newest first", an action name — it belongs in a locale bundle and `labelKey` is the field.
7644
+ * The test is where the string comes from: shipped with the app ⇒ `labelKey`; read from the
7645
+ * tenant's data ⇒ `label`. A resolved caption here is untranslatable text smuggled past the
7646
+ * locale tooling, which is precisely what the key-only rule exists to prevent.
7647
+ *
7648
+ * It participates in the dedupe fingerprint, so a renamed campaign repaints.
7649
+ */
7650
+ readonly label?: string;
7622
7651
  }
7623
7652
  /** Render surface of a radio menu — the dedupe key for {@link MagicBarRadioMenu}. */
7624
7653
  interface MagicBarRadioMenuSpec {
@@ -8052,6 +8081,17 @@ declare class MagicBarRegistry {
8052
8081
  * hands the bar back to the shell's own default (search only).
8053
8082
  */
8054
8083
  setActiveOwner(owner: MagicBarOwnerRef | null): void;
8084
+ /**
8085
+ * Resolve one owner's view from the reactive MIRROR — {@link viewFor}'s
8086
+ * signal-consuming sibling, and the read behind {@link active}. Calling it
8087
+ * inside a `computed()`/`effect()` tracks the mirror, so the caller re-runs
8088
+ * whenever this owner's slot changes — which is what an inline renderer
8089
+ * outside the shell (an External App's standalone chrome, D5 §4 dynamic 6's
8090
+ * mobile bar) needs, since no shell ever nominates an owner there. Applies
8091
+ * the same resolution as {@link active}: exact slot, then the `appId`
8092
+ * fallback, then the ownership assertion.
8093
+ */
8094
+ resolve(owner: MagicBarOwnerRef): MagicBarView | null;
8055
8095
  /**
8056
8096
  * Direct, non-reactive read of one owner's contribution — the split-proof
8057
8097
  * escape hatch for callers outside an injection/reactive context. Applies the
@@ -8534,6 +8574,75 @@ declare const FLY_MAGIC_BAR_ICONS: {
8534
8574
  };
8535
8575
  type FlyMagicBarIconName = keyof typeof FLY_MAGIC_BAR_ICONS;
8536
8576
 
8577
+ /**
8578
+ * `<fly-standalone-magic-actions>` — renders an app's OWN magic-bar contribution
8579
+ * inline, for the one mode that has no shell chrome to render it: an External
8580
+ * App running standalone.
8581
+ *
8582
+ * ## The gap this closes
8583
+ * A view publishes one `MagicBarContribution` (skill: `magic-bar-actions.md`)
8584
+ * and, embedded in the desktop shell, the top-bar pill renders it. Standalone,
8585
+ * nothing did — so every screen also kept a bespoke header-actions row
8586
+ * (`[page-header-actions]` buttons) that duplicated the published actions in
8587
+ * BOTH modes: two Create buttons inside the shell, and a second diverging
8588
+ * toolbar implementation outside it. With this component the contribution is
8589
+ * authored once and rendered by whichever chrome exists: the shell's pill when
8590
+ * embedded, this inline cluster when standalone.
8591
+ *
8592
+ * ## Usage — the `[page-header-actions]` slot is the intended position
8593
+ * ```html
8594
+ * <fly-page-header variant="listing" titleKey="…">
8595
+ * <div page-header-actions>
8596
+ * <fly-standalone-magic-actions appId="ppm" />
8597
+ * </div>
8598
+ * </fly-page-header>
8599
+ * ```
8600
+ * `appId` is the same id the view passes to `MagicBarRegistry.publisher`.
8601
+ * Nothing else to wire: the screen's existing publish `effect` feeds both
8602
+ * renderers.
8603
+ *
8604
+ * ## Embedded, it renders NOTHING — by its own decision, not the consumer's
8605
+ * `FlyRemoteRouter.isEmbedded` is read here precisely so every consumer does
8606
+ * not re-author the `@if (!isEmbedded)` guard (and so none can forget it: the
8607
+ * shell pill already renders the same contribution, and a second copy in the
8608
+ * page header is exactly the duplication this component exists to delete).
8609
+ *
8610
+ * ## What it resolves, and why not `active()`
8611
+ * `MagicBarRegistry.active` is arbitrated by the SHELL (focused window →
8612
+ * `setActiveOwner`), and standalone no shell exists to nominate anyone — it is
8613
+ * permanently `null` there by design. This component instead resolves the
8614
+ * caller-named owner via {@link MagicBarRegistry.resolve}, the reactive
8615
+ * per-owner read, with the same slot fallback the shell applies. No `windowId`
8616
+ * input: standalone there is no window manager, so the publisher's
8617
+ * `WINDOW_DATA` is null and its contribution lands in the `appId`-keyed
8618
+ * fallback slot — which an `{ appId }` owner resolves exactly.
8619
+ *
8620
+ * ## What it deliberately does NOT render
8621
+ * - **`search`** — standalone screens keep their in-page `fly-search-input`
8622
+ * (the shell's expanding search field is shell chrome, not part of
8623
+ * `fly-magic-actions`). A second search box is the exact bug the embedded
8624
+ * mode's `@if` guards exist to avoid; standalone the in-page field is the
8625
+ * only one.
8626
+ * - **`overflow` / `quickCommandIds`** — the kebab is a deliberate deferral
8627
+ * (see `magic-actions.component.ts`), and quick commands resolve against the
8628
+ * shell's `AgentCommandRegistry` + Ask-AI orb, which do not exist standalone.
8629
+ */
8630
+ declare class FlyStandaloneMagicActionsComponent {
8631
+ private readonly registry;
8632
+ private readonly remoteRouter;
8633
+ /** The publishing app whose contribution to mirror — the `appId` its view passes to `MagicBarRegistry.publisher`. */
8634
+ readonly appId: _angular_core.InputSignal<string>;
8635
+ /**
8636
+ * The view to paint, or `null` for "render nothing": embedded (the shell's
8637
+ * pill owns the contribution there), unpublished, or published with no
8638
+ * painted actions (a bare `viewKey` is "no toolbar", not "an empty toolbar" —
8639
+ * same rule the shell pill applies).
8640
+ */
8641
+ protected readonly standaloneView: _angular_core.Signal<MagicBarView | null>;
8642
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlyStandaloneMagicActionsComponent, never>;
8643
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlyStandaloneMagicActionsComponent, "fly-standalone-magic-actions", never, { "appId": { "alias": "appId"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
8644
+ }
8645
+
8537
8646
  /**
8538
8647
  * Single canonical way to declare a drag source for the agent input.
8539
8648
  *
@@ -11968,6 +12077,24 @@ declare class FlyModuleIconDirective {
11968
12077
  * per module, so adding a module meant editing the component. Here the modules
11969
12078
  * are data ({@link FlyAppModule}) and the icons are projected templates.
11970
12079
  *
12080
+ * ## Docking into a host chrome's titlebar
12081
+ *
12082
+ * The desktop shell draws its own header strip on every window (app icon, title,
12083
+ * window controls). An app rendering this bar underneath it printed the app name
12084
+ * twice, one line apart — and the design draws exactly ONE such row
12085
+ * (`UX/FlyOS Desktop-app/MainContent.dc.html`: app crumb ▸ module crumb ▸ close).
12086
+ *
12087
+ * So when a host chrome offers a dock ({@link findTitlebarDock}), this component
12088
+ * MOVES ITS OWN HOST ELEMENT into it once, after the first render, and flips to a
12089
+ * flat presentation ({@link docked}) that inherits the strip's plate instead of
12090
+ * painting its own. Relocating the element rather than re-implementing the row in
12091
+ * the shell is what keeps the switcher — its popover, roving focus, projected
12092
+ * icon templates and i18n — in ONE place: Angular binds a view to its component,
12093
+ * not to a position in the DOM, so everything keeps working from the new parent.
12094
+ *
12095
+ * Standalone (no dock anywhere above), nothing happens and the bar renders as the
12096
+ * app's own first row, exactly as before.
12097
+ *
11971
12098
  * a11y: the trigger is `aria-haspopup="menu"` + `aria-expanded`; the popover is
11972
12099
  * `role="menu"` with `role="menuitem"` rows carrying `aria-current="page"` on
11973
12100
  * the active one. Arrow keys rove (RTL-aware, wrapping, skipping disabled),
@@ -11989,12 +12116,19 @@ declare class FlyAppTopbarComponent {
11989
12116
  /** The brand was clicked — conventionally "go to this app's home". */
11990
12117
  readonly brandSelected: _angular_core.OutputEmitterRef<void>;
11991
12118
  private readonly i18n;
12119
+ private readonly host;
11992
12120
  private readonly icons;
11993
12121
  private readonly rows;
11994
12122
  private readonly trigger;
11995
12123
  protected readonly open: _angular_core.WritableSignal<boolean>;
11996
12124
  protected readonly focusIndex: _angular_core.WritableSignal<number>;
11997
12125
  private stackHandle;
12126
+ /**
12127
+ * True once this bar has moved itself into a host chrome's titlebar dock — see
12128
+ * the class doc. Drives `.fly-topbar--docked`, which drops the bar's own plate
12129
+ * and hairline so it reads as part of the strip rather than a row inside it.
12130
+ */
12131
+ protected readonly docked: _angular_core.WritableSignal<boolean>;
11998
12132
  /**
11999
12133
  * Set when the menu opens, cleared once focus has actually landed on a row.
12000
12134
  *
@@ -12010,6 +12144,7 @@ declare class FlyAppTopbarComponent {
12010
12144
  protected readonly switchAriaLabel: _angular_core.Signal<string>;
12011
12145
  protected readonly triggerAriaLabel: _angular_core.Signal<string>;
12012
12146
  constructor();
12147
+ private dockIntoHostChrome;
12013
12148
  protected iconFor(key: string): TemplateRef<unknown> | null;
12014
12149
  protected indexOf(mod: FlyAppModule): number;
12015
12150
  protected toggle(): void;
@@ -12834,6 +12969,6 @@ declare const AUDIENCE_ERROR_CODES: {
12834
12969
  };
12835
12970
  type AudienceErrorCode = (typeof AUDIENCE_ERROR_CODES)[keyof typeof AUDIENCE_ERROR_CODES];
12836
12971
 
12837
- 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_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, 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, 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, flyUnwrapCurrencies, flyUnwrapLenient, hasAnyRoleIn, healNativeFederationCacheOnce, initialExpanded, isAccentColor, isChunkLoadError, isFlyAuthStorePopulated, isNativeFederationCacheError, isRtlLocale, isRtlLocaleEntry, isValidCron, isValidSingleField, loadRemoteStyles, magicBarOwnerKey, magicBarSearchText, matchFlyRoutePattern, nextEnabledIndex, nextModuleIndex, nextSegmentIndex, nextSort, normalizeFlyTheme, normalizeRoles, novaPriorityToneVar, novaStatusToneVar, overlayStack, parseCron, parseStepUpChallenge, parseTags, prefetchRemoteStyles, presenceColorFor, printConsoleSecurityWarning, provideFlyChunkReloadRecovery, provideFlyEmojiPack, provideFlyStandaloneAuth, reloadOnceForChunkError, requestAppLaunch, resolveActiveModule, resolveActiveSection, resolveActiveTab, resolveCellValue, resolveStateIcon, resolveStateMessageKey, restoreFocus, sameTags, sectionHintKey, sectionLayout, sliderTrackGradient, sparklinePath, sparklinePoints, stepUpInterceptor, stepUpReturnKey, trimAgentPayload, trimAgentString, unloadRemoteStyles, utf8ByteLength, validateAgentPayload, warnIfEmbeddedSessionMissing };
12972
+ 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_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, 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, 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_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, flyUnwrapCurrencies, flyUnwrapLenient, hasAnyRoleIn, healNativeFederationCacheOnce, initialExpanded, isAccentColor, isChunkLoadError, isFlyAuthStorePopulated, isNativeFederationCacheError, isRtlLocale, isRtlLocaleEntry, isValidCron, isValidSingleField, loadRemoteStyles, magicBarOwnerKey, magicBarSearchText, matchFlyRoutePattern, nextEnabledIndex, nextModuleIndex, nextSegmentIndex, nextSort, normalizeFlyTheme, normalizeRoles, novaPriorityToneVar, novaStatusToneVar, overlayStack, parseCron, parseStepUpChallenge, parseTags, prefetchRemoteStyles, presenceColorFor, printConsoleSecurityWarning, provideFlyChunkReloadRecovery, provideFlyEmojiPack, provideFlyStandaloneAuth, reloadOnceForChunkError, requestAppLaunch, resolveActiveModule, resolveActiveSection, resolveActiveTab, resolveCellValue, resolveStateIcon, resolveStateMessageKey, restoreFocus, sameTags, sectionHintKey, sectionLayout, sliderTrackGradient, sparklinePath, sparklinePoints, stepUpInterceptor, stepUpReturnKey, trimAgentPayload, trimAgentString, unloadRemoteStyles, utf8ByteLength, validateAgentPayload, warnIfEmbeddedSessionMissing };
12838
12973
  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, 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 };
12839
12974
  //# sourceMappingURL=flyos-design-system.d.ts.map