@flyos/design-system 1.8.0 → 2.0.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/scss/_tokens.scss CHANGED
@@ -22,10 +22,18 @@
22
22
  --status-pending: var(--system-yellow);
23
23
 
24
24
  // ── FlyOS Typography ──
25
- // Geist is the primary face (self-hosted, see styles/_geist-fonts.scss).
26
- // SF Pro / Inter / system fonts remain as fallbacks; the cascade also picks
27
- // them up for scripts Geist doesn't cover (ar / ur).
28
- --font-family: 'Geist', 'SF Pro Display', 'SF Pro', 'Inter', -apple-system, blinkmacsystemfont, 'Segoe UI', sans-serif;
25
+ // Geist is the primary face (self-hosted, see styles/_geist-fonts.scss). Inter and the
26
+ // system stack are the fallbacks, and the cascade also picks them up for scripts Geist
27
+ // doesn't cover (ar / ur).
28
+ // ---
29
+ // 2.0.0 removed 'SF Pro Display' / 'SF Pro' — D8 (no SF fonts, ever, for licensing). The
30
+ // repo had been SHIPPING them: 9 self-hosted woff2 faces, preloaded from index.html.
31
+ // Removing them changes NOTHING for ar/ur, contrary to the comment that used to sit here
32
+ // and to the one in `_geist-fonts.scss`: measured in the live shell, Arabic and Urdu
33
+ // render byte-identically with and without SF Pro in the stack (its @font-face rules carry
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;
29
37
  --font-family-mono: 'Geist Mono', ui-monospace, 'SF Mono', menlo, monospace;
30
38
  --font-xl-title1: 700 48px/56px var(--font-family);
31
39
  --font-xl-title2: 700 38px/46px var(--font-family);
@@ -4713,10 +4713,24 @@ declare class MessageBoxService {
4713
4713
  * current `MessageBoxService` request describes (icon, message, button set) and resolves that
4714
4714
  * request with the user's choice — the design-system replacement for native `alert()`/`confirm()`
4715
4715
  * dialogs, which the platform disallows (see `feedback_no_native_browser_dialogs`).
4716
+ *
4717
+ * ## The mobile confirm card (S5.4)
4718
+ * On mobile chrome the dialog stops being a fixed 400px plate floating in the middle of
4719
+ * a desktop and becomes the design's **confirm card**: full width less a 16px margin on
4720
+ * each side, one step rounder, and with its actions on a full-width row at the 44px
4721
+ * touch floor. That is a host class, not a media query, so the threshold stays where
4722
+ * S5.1 put it — see {@link FLY_VIEWPORT_IS_MOBILE}.
4723
+ *
4724
+ * This is the confirm surface users actually meet: `MessageBoxService` has ~59 call
4725
+ * sites across the shell and the core apps, while the DS's other confirm surface
4726
+ * (`fly-confirm-dialog`, the standalone business-app kit's port) has none outside the
4727
+ * design lab. Both got the treatment; only this one changes what anyone sees today.
4716
4728
  */
4717
4729
  declare class MessageBoxComponent implements AfterViewInit {
4718
4730
  private readonly injectedService;
4719
4731
  private elRef;
4732
+ /** Mobile chrome → the full-bleed confirm card. Read by the host class binding. */
4733
+ protected readonly isMobile: _angular_core.Signal<boolean>;
4720
4734
  /**
4721
4735
  * Optional service override. When bound, the component renders THIS instance's
4722
4736
  * state instead of the root singleton — the mechanism that lets each desktop
@@ -5088,15 +5102,25 @@ type FlyDrawerSide = 'end' | 'start';
5088
5102
  /** Standard body padding tier. `none` = full-bleed (consumer draws its own). */
5089
5103
  type FlyDrawerBodyPadding = 'none' | 'sm' | 'md' | 'lg';
5090
5104
  /**
5091
- * `'side'` (default) — the classic edge-pinned panel, sliding in along the inline axis
5092
- * (see {@link FlyDrawerSide}). `'sheet'` a bottom-anchored panel spanning the full
5093
- * inline size, sliding up from the block-end edge with rounded top corners; `side` is
5094
- * ignored in this mode (there is no edge to pick a sheet always anchors to the
5095
- * bottom). Stage 5 of the UX-refresh program converts every `side` drawer to a `sheet`
5096
- * on mobile; this variant is the primitive that makes that conversion a per-consumer
5097
- * `variant` flip rather than a second component.
5098
- */
5099
- type FlyDrawerVariant = 'side' | 'sheet';
5105
+ * - `'auto'` (default) — `sheet` while the host application is wearing mobile chrome,
5106
+ * `side` otherwise. Reads {@link FLY_VIEWPORT_IS_MOBILE}, which the shell binds to
5107
+ * its ONE breakpoint predicate; unprovided (bare tests, a standalone External App
5108
+ * that has not opted in) it is `false`, so `auto` is `side` and nothing changes.
5109
+ * - `'side'` the classic edge-pinned panel, sliding in along the inline axis (see
5110
+ * {@link FlyDrawerSide}). Pin this when a drawer must stay edge-anchored even on a
5111
+ * phone; it is an override of the platform default, so it wants a reason next to it.
5112
+ * - `'sheet'` — a bottom-anchored panel spanning the full inline size, sliding up from
5113
+ * the block-end edge with rounded top corners. `side` is ignored in this mode (there
5114
+ * is no edge to pick — a sheet always anchors to the bottom).
5115
+ *
5116
+ * S5.4 of the UX-refresh program converts every drawer to a sheet on mobile. It does
5117
+ * that HERE, once, rather than as ~50 per-call-site bindings: a viewport fact threaded
5118
+ * through fifty feature components is fifty chances to drift, and each one of those
5119
+ * components would be reaching for a viewport answer from inside an app surface —
5120
+ * precisely the container-vs-viewport trap. The call sites keep saying what the drawer
5121
+ * IS; the platform says how it presents.
5122
+ */
5123
+ type FlyDrawerVariant = 'auto' | 'side' | 'sheet';
5100
5124
  /**
5101
5125
  * Where the drawer is anchored.
5102
5126
  * - `absolute` (default) — clipped to the nearest positioned ancestor, i.e. the
@@ -5142,15 +5166,17 @@ type FlyDrawerPosition = 'absolute' | 'fixed';
5142
5166
  declare class FlyDrawerComponent {
5143
5167
  private host;
5144
5168
  private destroyRef;
5169
+ /** The host app's mobile-chrome flag — the only thing `variant="auto"` consults. */
5170
+ private readonly hostIsMobile;
5145
5171
  /** Drives mount + slide. Controlled by the parent. */
5146
5172
  readonly open: _angular_core.InputSignal<boolean>;
5147
5173
  /** Width tier → inline-size (sm 360 / md 480 / lg 640 / xl min(960px, 94%)). */
5148
5174
  readonly size: _angular_core.InputSignal<FlyDrawerSize>;
5149
5175
  /** Convenience title shown in the default header (ignored if `[flyDrawerHeader]` is projected). Treated as an i18n key. */
5150
5176
  readonly heading: _angular_core.InputSignal<string | null>;
5151
- /** Edge to pin to. `end` (default) slides from inline-end; RTL flips it. Ignored when `variant` is `sheet`. */
5177
+ /** Edge to pin to. `end` (default) slides from inline-end; RTL flips it. Ignored when the resolved variant is `sheet`. */
5152
5178
  readonly side: _angular_core.InputSignal<FlyDrawerSide>;
5153
- /** `side` (default, edge-pinned) or `sheet` (bottom-anchored, full-width). See {@link FlyDrawerVariant}. */
5179
+ /** `auto` (default — sheet on mobile), `side` (edge-pinned) or `sheet` (bottom-anchored). See {@link FlyDrawerVariant}. */
5154
5180
  readonly variant: _angular_core.InputSignal<FlyDrawerVariant>;
5155
5181
  /** Close when the scrim is clicked. */
5156
5182
  readonly dismissOnScrim: _angular_core.InputSignal<boolean>;
@@ -5181,6 +5207,12 @@ declare class FlyDrawerComponent {
5181
5207
  readonly leaving: _angular_core.WritableSignal<boolean>;
5182
5208
  readonly headingId = "fly-drawer-heading";
5183
5209
  readonly labelledBy: _angular_core.Signal<"fly-drawer-heading" | null>;
5210
+ /**
5211
+ * `variant` with `'auto'` collapsed to the concrete one that renders. Everything
5212
+ * downstream (the panel class, the sheet's own geometry) reads THIS, never the raw
5213
+ * input, so `auto` is resolved in exactly one place.
5214
+ */
5215
+ readonly resolvedVariant: _angular_core.Signal<"side" | "sheet">;
5184
5216
  /** Size/side classes as an ngClass map (kept off the `[class]` string binding,
5185
5217
  * which can race the leaving toggle and stutter the animation). */
5186
5218
  readonly panelClass: _angular_core.Signal<{
@@ -8212,6 +8244,13 @@ declare const FLY_MAGIC_BAR_ICONS: {
8212
8244
  readonly assignRobot: "<rect x=\"4\" y=\"8\" width=\"16\" height=\"11\" rx=\"3\"/><path d=\"M12 8V4\"/><circle cx=\"12\" cy=\"3\" r=\"1.2\"/><path d=\"M8 13v2M16 13v2\"/>";
8213
8245
  /** Task-detail "Add subtask". */
8214
8246
  readonly addSubtask: "<path d=\"M9 6h11M9 12h11M9 18h7\"/><path d=\"M4 6h.01M4 12h.01\"/><path d=\"M4.5 16h3M6 14.5v3\"/>";
8247
+ /**
8248
+ * Calendar magic-bar "View" trigger (S4.2) — a 4-cell grid standing in for the
8249
+ * year/month/week/day/agenda mode switcher behind it. No standalone glyph for
8250
+ * this exists in the UX drop's curated set (`today`/`settings` cover Today and
8251
+ * the settings gear, not the mode switcher).
8252
+ */
8253
+ readonly calendarView: "<rect x=\"3.5\" y=\"3.5\" width=\"17\" height=\"17\" rx=\"2.5\"/><path d=\"M3.5 12h17M12 3.5v17\"/>";
8215
8254
  /** `UX/FlyOS Desktop-app/MainContent.dc.html:927` (`pubTabActions`'s local `P` table). */
8216
8255
  readonly addEvidence: "<path d=\"M10.5 13.5a4 4 0 0 0 5.7 0l2-2a4 4 0 0 0-5.7-5.7l-.6.6\"/><path d=\"M13.5 10.5a4 4 0 0 0-5.7 0l-2 2a4 4 0 0 0 4.2 6.5\"/><path d=\"M17.5 15.5v5M15 18h5\"/>";
8217
8256
  /** `MainContent.dc.html:928`. Reused for every "Edit …" action (evidence, link, task). */
@@ -9587,6 +9626,47 @@ declare class FlyClickOutsideDirective {
9587
9626
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<FlyClickOutsideDirective, "[flyClickOutside]", never, { "enabled": { "alias": "flyClickOutsideEnabled"; "required": false; "isSignal": true; }; }, { "flyClickOutside": "flyClickOutside"; }, never, never, true, never>;
9588
9627
  }
9589
9628
 
9629
+ /**
9630
+ * Whether the host application is currently wearing MOBILE chrome.
9631
+ *
9632
+ * ## Why the DS asks instead of measuring
9633
+ * A second `matchMedia` inside the design system would be a second breakpoint
9634
+ * mechanism, and two predicates that answer "is this a phone" drift the first time
9635
+ * anyone retunes one of them. The shell already owns exactly one such predicate
9636
+ * (`ShellViewportService`, S5.1) and mirrors it three ways — a class on `<html>`, a
9637
+ * signal for templates, and the shell's own inset arithmetic. This token is the
9638
+ * fourth route to that SAME answer, not a new one: the shell binds it to
9639
+ * `ShellViewportService.isMobile` and nothing here evaluates a query.
9640
+ *
9641
+ * ## Default: `false`, deliberately
9642
+ * Unprovided, every DS overlay behaves exactly as it did before this token existed
9643
+ * — desktop geometry, no mobile branch. That matters for two populations:
9644
+ *
9645
+ * - **Standalone External Apps** (Circles/Thoughts/PPM) render on their own page
9646
+ * with no FlyOS shell. They opt in by providing this from their own breakpoint
9647
+ * source; until they do, nothing about them changes.
9648
+ * - **Tests and Storybook-style harnesses** that construct a DS component bare.
9649
+ *
9650
+ * A default of "measure the window" would have been the opposite trade: silently
9651
+ * correct in the shell, silently surprising everywhere else, and impossible to
9652
+ * override downward.
9653
+ *
9654
+ * ## Consumers
9655
+ * `fly-drawer` (`variant="auto"` → `sheet` on mobile) and `fly-message-box` /
9656
+ * `fly-confirm-dialog` (the full-bleed confirm card). Each reads the signal and
9657
+ * either resolves an input or stamps a host class — none of them re-derive a
9658
+ * width, so retuning the threshold is still a one-line change in the shell.
9659
+ *
9660
+ * @example Shell wiring (`app.config.ts`)
9661
+ * ```ts
9662
+ * {
9663
+ * provide: FLY_VIEWPORT_IS_MOBILE,
9664
+ * useFactory: () => inject(ShellViewportService).isMobile,
9665
+ * }
9666
+ * ```
9667
+ */
9668
+ declare const FLY_VIEWPORT_IS_MOBILE: InjectionToken<Signal<boolean>>;
9669
+
9590
9670
  /**
9591
9671
  * Debounce primitives — the shared replacement for the `setTimeout` / `clearTimeout`
9592
9672
  * pairs hand-rolled in every list screen and typeahead across the estate.
@@ -12077,6 +12157,8 @@ declare function enterActivatesNatively(tagName: string, inputType?: string | nu
12077
12157
  * focus is trapped while open and returns to the prior element on close.
12078
12158
  */
12079
12159
  declare class FlyConfirmDialogComponent {
12160
+ /** Mobile chrome → the full-bleed confirm card. Read by the host class binding. */
12161
+ protected readonly isMobile: _angular_core.Signal<boolean>;
12080
12162
  readonly open: _angular_core.InputSignal<boolean>;
12081
12163
  readonly kind: _angular_core.InputSignal<ConfirmKind>;
12082
12164
  readonly titleKey: _angular_core.InputSignal<string>;
@@ -12260,6 +12342,6 @@ declare const AUDIENCE_ERROR_CODES: {
12260
12342
  };
12261
12343
  type AudienceErrorCode = (typeof AUDIENCE_ERROR_CODES)[keyof typeof AUDIENCE_ERROR_CODES];
12262
12344
 
12263
- 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_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 };
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 };
12264
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 };
12265
12347
  //# sourceMappingURL=flyos-design-system.d.ts.map