@flyos/design-system 1.5.0 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flyos/design-system",
3
- "version": "1.5.0",
3
+ "version": "1.7.0",
4
4
  "description": "FlyOS design system — shared components, directives, pipes, services, and models for Business App developers.",
5
5
  "keywords": [
6
6
  "flyos",
@@ -1,13 +1,13 @@
1
1
  import * as _angular_core from '@angular/core';
2
2
  import { Type, InjectionToken, Signal, WritableSignal, OnInit, EventEmitter, OnChanges, OnDestroy, SimpleChanges, EnvironmentProviders, PipeTransform, signal, AfterViewInit, ElementRef, AfterViewChecked, ErrorHandler, Provider, TemplateRef } from '@angular/core';
3
3
  import * as rxjs from 'rxjs';
4
- import { Observable } from 'rxjs';
4
+ import { Observable, MonoTypeOperatorFunction } from 'rxjs';
5
5
  import { ControlValueAccessor, Validator, AbstractControl, ValidationErrors } from '@angular/forms';
6
+ import * as _angular_common_http from '@angular/common/http';
7
+ import { HttpRequest, HttpHandlerFn, HttpErrorResponse } from '@angular/common/http';
6
8
  import { ConnectedPosition } from '@angular/cdk/overlay';
7
9
  import * as _flyos_design_system from '@flyos/design-system';
8
10
  import { CanActivateFn, NavigationExtras } from '@angular/router';
9
- import * as _angular_common_http from '@angular/common/http';
10
- import { HttpRequest, HttpHandlerFn } from '@angular/common/http';
11
11
 
12
12
  /**
13
13
  * FlyOS architectural app category — see repo `docs/01-ecosystem-overview.md`.
@@ -1909,10 +1909,35 @@ declare class StandaloneWindowManagerService extends WindowManagerService {
1909
1909
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<StandaloneWindowManagerService>;
1910
1910
  }
1911
1911
 
1912
+ /**
1913
+ * What a lazy route's loader resolves to. A bare component class, or a module
1914
+ * namespace with a `default` export — the two shapes Angular's own
1915
+ * `Route.loadComponent` accepts, so `() => import('./x')` and
1916
+ * `() => import('./x').then(m => m.XComponent)` both work here.
1917
+ */
1918
+ type FlyRemoteLoadedComponent = Type<unknown> | {
1919
+ readonly default: Type<unknown>;
1920
+ };
1921
+ /** Fields every route row carries, whichever way its component is supplied. */
1922
+ interface FlyRemoteRouteCommon {
1923
+ readonly path: string;
1924
+ /** Opaque bag the consumer can read from `router.matchedRoute()?.route.data`. */
1925
+ readonly data?: Readonly<Record<string, unknown>>;
1926
+ }
1927
+ /** A route whose component class is already in the bundle. */
1928
+ interface FlyRemoteEagerRoute extends FlyRemoteRouteCommon {
1929
+ readonly component: Type<unknown>;
1930
+ readonly loadComponent?: never;
1931
+ }
1932
+ /** A route whose component is fetched on first match, via a dynamic `import()`. */
1933
+ interface FlyRemoteLazyRoute extends FlyRemoteRouteCommon {
1934
+ readonly component?: never;
1935
+ readonly loadComponent: () => Promise<FlyRemoteLoadedComponent>;
1936
+ }
1912
1937
  /**
1913
1938
  * One row in a remote's route table. Mirrors Angular's `Route` interface but
1914
- * pared down to what the FlyOS-embedded router actually supports — synchronous
1915
- * component refs only (no `loadChildren`, no resolvers/guards).
1939
+ * pared down to what the FlyOS-embedded router actually supports — no
1940
+ * `loadChildren`, no resolvers, no guards.
1916
1941
  *
1917
1942
  * Patterns:
1918
1943
  * '' — matches an empty URL ("/")
@@ -1920,13 +1945,22 @@ declare class StandaloneWindowManagerService extends WindowManagerService {
1920
1945
  * 'signals/:id' — `:foo` captures any single segment into `params.foo`
1921
1946
  * 'signals/:id/edit' — mixed static + capture segments
1922
1947
  *
1923
- * `data` is an opaque bag the consumer can read from `router.matchedRoute()?.data`.
1948
+ * Supply the component **either** eagerly or lazily the union makes declaring
1949
+ * both, or neither, a compile error rather than a silent runtime blank:
1950
+ *
1951
+ * ```ts
1952
+ * { path: 'signals', component: SignalsListComponent } // eager
1953
+ * { path: 'signals/:id', loadComponent: () => import('./detail').then(m => m.DetailComponent) } // lazy
1954
+ * ```
1955
+ *
1956
+ * **Prefer `loadComponent` in a remote of any size.** A remote's route table is
1957
+ * reachable from its exposed federation entry, so every `component:` reference
1958
+ * in it is pulled into the chunk the shell downloads to mount the remote —
1959
+ * before the user has navigated anywhere. An app with forty routes ships all
1960
+ * forty components to render its landing page. `loadComponent` splits each into
1961
+ * its own chunk, fetched on first match and then cached for the session.
1924
1962
  */
1925
- interface FlyRemoteRoute {
1926
- readonly path: string;
1927
- readonly component: Type<unknown>;
1928
- readonly data?: Readonly<Record<string, unknown>>;
1929
- }
1963
+ type FlyRemoteRoute = FlyRemoteEagerRoute | FlyRemoteLazyRoute;
1930
1964
  /**
1931
1965
  * Result of matching the current `segments` against a remote's route table.
1932
1966
  * `params` contains captured `:foo` segments — empty object for paths with no
@@ -2877,13 +2911,13 @@ declare function unloadRemoteStyles(appId: string): void;
2877
2911
  * ```
2878
2912
  *
2879
2913
  * Why both? Standalone keeps full Angular routing — query params, guards,
2880
- * resolvers, lazy loading, RouterLink. Embedded gets a stripped-down
2881
- * synchronous outlet that matches against the same route table the remote
2882
- * declared via `FLY_REMOTE_ROUTES`. The same `router.navigate(['/foo', id])`
2883
- * call works in both modes; only the rendering surface differs.
2914
+ * resolvers, RouterLink. Embedded gets a stripped-down outlet that matches
2915
+ * against the same route table the remote declared via `FLY_REMOTE_ROUTES`. The
2916
+ * same `router.navigate(['/foo', id])` call works in both modes; only the
2917
+ * rendering surface differs.
2884
2918
  *
2885
2919
  * Limitations vs. `<router-outlet>`:
2886
- * - Synchronous components only (no `loadComponent` / `loadChildren`).
2920
+ * - No `loadChildren` (route-level code splitting only see `loadComponent`).
2887
2921
  * - No guards / resolvers / data resolution.
2888
2922
  * - No query-param / hash handling — only path segments.
2889
2923
  * - No `RouterLink` directive — use `(click)="router.navigate(...)"`.
@@ -2893,14 +2927,50 @@ declare function unloadRemoteStyles(appId: string): void;
2893
2927
  * private readonly router = inject(FlyRemoteRouter);
2894
2928
  * readonly id = computed(() => this.router.params()['id'] ?? '');
2895
2929
  * ```
2930
+ *
2931
+ * ## Lazy routes
2932
+ *
2933
+ * A route may supply `loadComponent: () => import('./x').then(m => m.XComponent)`
2934
+ * instead of `component:`. The chunk is fetched on first match and cached for the
2935
+ * lifetime of the outlet, so revisiting a route is synchronous.
2936
+ *
2937
+ * Three behaviours are deliberate, and each exists because the obvious
2938
+ * alternative is worse:
2939
+ *
2940
+ * - **The previous component stays mounted while the next one loads.** Blanking
2941
+ * the outlet first would flash empty on every navigation, and a remote's chunks
2942
+ * are served from its own origin — usually a few milliseconds. This matches
2943
+ * Angular's Router, which does not tear down the current route until the next
2944
+ * one is ready.
2945
+ * - **A stale resolution never wins.** Navigating A → B → C while B is still in
2946
+ * flight must not render B over C. Each resolution carries a sequence token and
2947
+ * is discarded unless it is still the latest.
2948
+ * - **A failed load is reported to `ErrorHandler`, not swallowed.** The
2949
+ * chunk-404-after-redeploy self-heal (`provideFlyChunkReloadRecovery`) lives in
2950
+ * the root `ErrorHandler`, and a rejected promise inside an effect would reach
2951
+ * `unhandledrejection` instead — where that handler never sees it. Routing it
2952
+ * here is what lets a stale embedded remote recover. The failed loader is
2953
+ * evicted so a later attempt genuinely retries rather than reusing the
2954
+ * rejected promise.
2896
2955
  */
2897
2956
  declare class FlyRemoteRouterOutletComponent {
2898
2957
  private readonly router;
2958
+ private readonly errorHandler;
2899
2959
  /**
2900
2960
  * Read directly from FlyRemoteRouter so the outlet re-renders whenever the
2901
2961
  * URL changes (signal-based, OnPush-friendly).
2902
2962
  */
2903
2963
  readonly matched: _angular_core.Signal<_flyos_design_system.FlyRemoteMatch | null>;
2964
+ /** Loaders that have resolved — consulted synchronously, so a revisit never flashes. */
2965
+ private readonly loaded;
2966
+ /** Loaders currently in flight, so a param change mid-load doesn't start a second fetch. */
2967
+ private readonly inFlight;
2968
+ /** Bumped per resolution attempt; a late `.then` compares against it and bows out. */
2969
+ private seq;
2970
+ private readonly component;
2971
+ /** The component class currently projected into `*ngComponentOutlet`. */
2972
+ readonly rendered: _angular_core.Signal<Type<unknown> | null>;
2973
+ constructor();
2904
2974
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlyRemoteRouterOutletComponent, never>;
2905
2975
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlyRemoteRouterOutletComponent, "fly-remote-router-outlet", never, {}, {}, never, never, true, never>;
2906
2976
  }
@@ -7169,7 +7239,7 @@ type FlySecureSrcState = 'idle' | 'loading' | 'ready' | 'error';
7169
7239
  * few seconds of its life; the Files Manager download endpoint answers
7170
7240
  * `423 Locked` / `SCAN_PENDING` (with an advisory `Retry-After` header) until
7171
7241
  * the scan clears. Rather than treating that like a permission error, the
7172
- * directive retries the fetch — up to {@link SCAN_PENDING_MAX_RETRIES} times,
7242
+ * directive retries the fetch — up to {@link FLY_SCAN_PENDING_MAX_RETRIES} times,
7173
7243
  * honoring `Retry-After` when present (falling back to a flat 2s) — and swaps
7174
7244
  * in the image automatically once the scan reports Clean. This mirrors the
7175
7245
  * hand-rolled `retry({ count: 6, delay: … })` policy already used by the
@@ -8570,6 +8640,176 @@ declare function flyDownloadBlob(blob: Blob, fileName: string, mimeFallback?: st
8570
8640
  */
8571
8641
  declare function flyExportFileName(contentDisposition: string | null | undefined, fallback: string): string;
8572
8642
 
8643
+ /**
8644
+ * Downloads a Files-Manager file through the authenticated `HttpClient` and hands it to the
8645
+ * browser's save dialog.
8646
+ *
8647
+ * **Why this exists rather than an `<a href>`.** `/api/files/{id}/download` is bearer-gated and
8648
+ * Files-Manager exposes no signed or public URL, so a browser-native navigation carries no
8649
+ * `Authorization` header and answers **401**. That is not a hypothetical: three Circles templates
8650
+ * shipped plain `<a href>` download links that were simply broken, Thoughts hit the same 401 on
8651
+ * its story attachments, and in both apps other screens had already hand-rolled the correct blob
8652
+ * fetch inline. The design system shipped the *save* half (`flyDownloadBlob`) and the image-side
8653
+ * *fetch* half (`img[flySecureSrc]`) but nothing for a plain authenticated download, so every app
8654
+ * rediscovered the same 401 and wrote the same fix.
8655
+ *
8656
+ * It also rides out the `423 SCAN_PENDING` window via {@link flyScanRetry}: a freshly-produced
8657
+ * export or upload is still being virus-scanned for the first seconds of its life, which is
8658
+ * exactly when a user clicks.
8659
+ *
8660
+ * @example
8661
+ * private readonly downloads = inject(FlyFileDownloadService);
8662
+ * this.downloads.download(attachment.fileId, attachment.fileName);
8663
+ */
8664
+ declare class FlyFileDownloadService {
8665
+ private readonly http;
8666
+ /**
8667
+ * Fetches a file and saves it, subscribing internally — the fire-and-forget form for a click
8668
+ * handler that has no state to drive.
8669
+ *
8670
+ * Errors are left to the app's global `HttpClient` error handling. Use {@link fetch} instead
8671
+ * when the caller needs to show a spinner or a per-row failure state.
8672
+ *
8673
+ * @param fileIdOrUrl A bare Files-Manager file id, or a path starting with `/` used verbatim.
8674
+ * @param fileName Name offered to the OS save dialog, extension included.
8675
+ */
8676
+ download(fileIdOrUrl: string, fileName: string): void;
8677
+ /**
8678
+ * The observable form: emits the blob after saving it, so a caller can drive its own loading
8679
+ * and error state. The save happens on emission — subscribing is what triggers the download.
8680
+ *
8681
+ * @param fileIdOrUrl A bare Files-Manager file id, or a path starting with `/` used verbatim.
8682
+ * @param fileName Name offered to the OS save dialog, extension included.
8683
+ */
8684
+ fetch(fileIdOrUrl: string, fileName: string): Observable<Blob>;
8685
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlyFileDownloadService, never>;
8686
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<FlyFileDownloadService>;
8687
+ }
8688
+
8689
+ /**
8690
+ * Files-Manager answers a fresh (still-scanning) upload with `423 Locked` / `SCAN_PENDING` until
8691
+ * the background virus scan clears it.
8692
+ */
8693
+ declare const FLY_SCAN_PENDING_STATUS = 423;
8694
+ /**
8695
+ * Retry budget. The scan usually clears within a few seconds, so six attempts comfortably covers
8696
+ * the common case without hammering the endpoint indefinitely on a stuck scan.
8697
+ */
8698
+ declare const FLY_SCAN_PENDING_MAX_RETRIES = 6;
8699
+ /** Fallback delay when the response carries no (or an unparsable) `Retry-After` header. */
8700
+ declare const FLY_SCAN_PENDING_DEFAULT_DELAY_MS = 2000;
8701
+ /**
8702
+ * Resolves a `423 Locked` / `SCAN_PENDING` error's `Retry-After` header to a delay in
8703
+ * milliseconds. The header is advisory and, per RFC 9110, either a number of seconds or an
8704
+ * HTTP-date — both are handled. Falls back to {@link FLY_SCAN_PENDING_DEFAULT_DELAY_MS} when the
8705
+ * header is missing, unparsable, or already in the past.
8706
+ */
8707
+ declare function flyScanPendingDelayMs(err: HttpErrorResponse): number;
8708
+ /**
8709
+ * Rides out the `423 SCAN_PENDING` window on any authenticated Files-Manager request.
8710
+ *
8711
+ * A file is not readable for the first seconds of its life — Files-Manager holds it at `423` until
8712
+ * the virus scan clears. Without this, the first read after an upload or an export completes just
8713
+ * fails, which is exactly when a user is most likely to click.
8714
+ *
8715
+ * **This honours `Retry-After`.** Every hand-rolled copy of this policy across the platform used a
8716
+ * flat `timer(2000)`, which is both slower than necessary when the server says "200ms" and a
8717
+ * hammer when it says "30s". The header is advisory, so the flat fallback remains for responses
8718
+ * that omit it.
8719
+ *
8720
+ * Only `423` is retried. A terminal outcome — `403 SCAN_INFECTED`, `422 SCAN_FAILED`, `401`, or
8721
+ * anything else — re-throws immediately: the `delay` notifier erroring stops `retry` at once
8722
+ * rather than waiting out the budget.
8723
+ *
8724
+ * @example
8725
+ * this.http.get(url, { responseType: 'blob' }).pipe(flyScanRetry())
8726
+ */
8727
+ declare function flyScanRetry<T>(options?: {
8728
+ readonly count?: number;
8729
+ }): MonoTypeOperatorFunction<T>;
8730
+
8731
+ /**
8732
+ * The `ApiResponse<T>` envelope every FlyOS endpoint returns, as it serializes over the wire
8733
+ * (the backend's `Success` is camel-cased to `success` in production JSON).
8734
+ *
8735
+ * `errors` is the business-rule failure list some endpoints return instead of a single `error`;
8736
+ * both shapes are live, which is why {@link flyApiErrorMessage} probes for both.
8737
+ */
8738
+ interface FlyApiResponse<T = void> {
8739
+ success: boolean;
8740
+ data?: T;
8741
+ error?: FlyApiError;
8742
+ errors?: string[];
8743
+ meta?: FlyPageMeta;
8744
+ }
8745
+ /** The structured error an endpoint returns alongside `success: false`. */
8746
+ interface FlyApiError {
8747
+ code: string;
8748
+ message: string;
8749
+ }
8750
+ /** Paging counters an endpoint may return in `meta` rather than inside the payload. */
8751
+ interface FlyPageMeta {
8752
+ page: number;
8753
+ pageSize: number;
8754
+ total: number;
8755
+ totalPages: number;
8756
+ }
8757
+ /** A paged payload as the backend `PagedResult<T>` serializes it. */
8758
+ interface FlyPaged<T> {
8759
+ items: T[];
8760
+ total: number;
8761
+ page: number;
8762
+ pageSize: number;
8763
+ }
8764
+ /**
8765
+ * A page of results normalized for the UI. Deliberately narrower than {@link FlyPaged}: a list
8766
+ * component needs the rows and the total, and carrying `page`/`pageSize` back out invites a
8767
+ * component to trust the server's echo of a request parameter it already owns.
8768
+ */
8769
+ interface FlyPageResult<T> {
8770
+ items: T[];
8771
+ total: number;
8772
+ }
8773
+ /**
8774
+ * Unwraps `FlyApiResponse<T>` to its payload, or `null` when the call did not succeed.
8775
+ *
8776
+ * This is the STRICT reading: `success: false` yields `null` even if a partial `data` came with
8777
+ * it. Prefer it. Use {@link flyUnwrapLenient} only against an endpoint that is known to answer
8778
+ * unwrapped.
8779
+ */
8780
+ declare function flyUnwrap<T>(res: FlyApiResponse<T>): T | null;
8781
+ /**
8782
+ * Unwraps `FlyApiResponse<T>`, tolerating an endpoint that answered UNWRAPPED — i.e. returned the
8783
+ * payload as the whole body with no envelope around it.
8784
+ *
8785
+ * **This is a workaround for a backend that is inconsistent, not a preference.** Every endpoint is
8786
+ * supposed to wrap its payload; a handful do not, and call sites carried a defensive
8787
+ * `res.data ?? res` for them. That expression forced the surrounding chain to `any`, which
8788
+ * silenced the mismatch rather than naming it. This keeps the identical runtime behaviour while
8789
+ * staying typed — but a call site reaching for it is evidence of an endpoint worth fixing, and it
8790
+ * cannot distinguish "unwrapped payload" from "envelope with `success: false`".
8791
+ */
8792
+ declare function flyUnwrapLenient<T>(res: FlyApiResponse<T>): T;
8793
+ /**
8794
+ * Normalizes the `FlyApiResponse<FlyPaged<T>>` envelope to the flat `{ items, total }` a list UI
8795
+ * reads. An absent `total` falls back to the row count, so a server that omits it still renders a
8796
+ * correct count for the page in hand rather than `0`.
8797
+ */
8798
+ declare function flyToPage<T>(res: FlyApiResponse<FlyPaged<T>>): FlyPageResult<T>;
8799
+ /**
8800
+ * Best-effort extraction of the message (usually an i18n key) out of an
8801
+ * `HttpErrorResponse.error` body returned by a FlyOS endpoint.
8802
+ *
8803
+ * The wire format is inconsistent by design: business-rule failures arrive as `{ errors: [key] }`,
8804
+ * the structured envelope as `{ error: { code, message } }`, framework failures as `{ message }`,
8805
+ * and some proxies hand back a bare string. Call sites used to inline this probe behind
8806
+ * `err?.error as any`, typing the whole chain as `any` and duplicating the logic verbatim.
8807
+ *
8808
+ * @returns the first `errors[]` entry, else `error.message`, else `message`, else the raw string
8809
+ * body — or `undefined` when none of those is present.
8810
+ */
8811
+ declare function flyApiErrorMessage(err: unknown): string | undefined;
8812
+
8573
8813
  /**
8574
8814
  * Shared presence-colour utility — one deterministic seed → colour mapping so
8575
8815
  * every co-authoring surface (mind-maps, canvas-boards, and future Documents/
@@ -10496,6 +10736,6 @@ declare const AUDIENCE_ERROR_CODES: {
10496
10736
  };
10497
10737
  type AudienceErrorCode = (typeof AUDIENCE_ERROR_CODES)[keyof typeof AUDIENCE_ERROR_CODES];
10498
10738
 
10499
- 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_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_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, FlyDataTableComponent, FlyDatePipe, FlyDateTimePipe, FlyDebouncer, FlyDecimalNumberPipe, FlyDetailCardComponent, FlyDetailShellComponent, FlyDrawerComponent, FlyDurationPipe, FlyDynamicFormComponent, FlyEmojiPickerComponent, FlyFieldComponent, FlyFileUploadComponent, FlyFilterPanelComponent, FlyFormBannerComponent, FlyFormFooterComponent, FlyFormGridComponent, FlyFormSectionComponent, FlyFullNumberPipe, FlyGanttComponent, FlyHubClient, FlyIconButtonComponent, FlyIfAdminDirective, FlyIfRoleDirective, FlyImageUploadComponent, FlyLeaderboardComponent, 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, MessageBoxButtons, MessageBoxComponent, MessageBoxIcon, MessageBoxService, MockAuthService, 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, clampPage, clampSliderValue, connectRemoteLaunch, enterActivatesNatively, filterGroup, filterSuggestions, findLocaleByDialect, findLocaleByPrefix, firstEnabledIndex, firstModuleIndex, flattenModules, flyAdminGuard, flyCaptchaBase64Utf8, flyCaptchaBuildToken, flyCaptchaSha256Hex, flyCompactNumber, flyDebounced, flyDecimalNumber, flyDownloadBlob, flyDuration, flyEmojiFor, flyEmojiIsTonable, flyEmojiPackUrl, flyExportFileName, flyFirstEnabledIndex, flyFormatBytes, flyFormatDate, flyFormatDateTime, flyFormatTime, flyFullNumber, flyNextEnabledIndex, flyNextSegmentIndex, flyRelativeTime, flyResolveActiveTab, flyRoleGuard, flySignedCompact, flySkinToneLabelKey, flyStandaloneAuthGuard, flyStandaloneAuthInterceptor, flyToDateOnly, hasAnyRoleIn, healNativeFederationCacheOnce, initialExpanded, isAccentColor, isChunkLoadError, isFlyAuthStorePopulated, isNativeFederationCacheError, isRtlLocale, isRtlLocaleEntry, isValidCron, isValidSingleField, loadRemoteStyles, matchFlyRoutePattern, nextEnabledIndex, nextModuleIndex, nextSegmentIndex, nextSort, normalizeFlyTheme, normalizeRoles, 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 };
10500
- 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, CardLayout, ChartTerm, ChildWindowData, ChipTone, ConfirmKind, ConnectRemoteLaunchOptions, ContextMenuAlign, ContextMenuItem, ContextMenuSection, CronAdvancedFieldDef, CronMode, CronParts, CronWeekday, DesktopApp, DesktopAppCategory, DesktopAppKind, DetailSection, DialogResultWithAcknowledgement, EmbeddedSessionProbe, EntityLinkSelection, FilterGroup, FlyAchievementRow, 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, FlyDrawerSide, FlyDrawerSize, FlyEmojiCategory, FlyEmojiCell, FlyEmojiEntry, FlyEmojiPack, FlyEmojiPackEntry, FlyEmojiPackManifest, FlyEmojiPickerSize, FlyEmojiPickerTab, FlyEmojiSection, FlyFileInfo, FlyFileSelection, FlyFormAnswer, FlyFormAnswerValue, FlyFormDefinition, FlyFormFieldOptions, FlyFormOption, FlyFormQuestion, FlyFormQuestionType, FlyFormScoreDisplay, FlyLaunchEventDetail, FlyLaunchRequestDetail, FlyLeaderboardRow, FlyLiveRefreshOptions, FlyLocaleEntry, FlyMetaItem, FlyModerationLoadPageRequest, FlyModerationLockThreadRequest, FlyModerationOpenSubjectRequest, FlyModerationReport, FlyModerationReportPage, FlyModerationResolutionStatus, FlyModerationResolveRequest, FlyNavigableItem, FlyPeoplePickerMode, FlyPeoplePickerOption, FlyPeopleSearchFn, FlyPointsSummary, FlyRemoteContext, 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, 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, ToastAction, ToastEntry, ToastOptions, ToastVariant, User, UserPrincipal, UsersTerm, WindowHelpHint, WindowInstance, WindowState };
10739
+ 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_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, 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, 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, MessageBoxButtons, MessageBoxComponent, MessageBoxIcon, MessageBoxService, MockAuthService, 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, 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, matchFlyRoutePattern, nextEnabledIndex, nextModuleIndex, nextSegmentIndex, nextSort, normalizeFlyTheme, normalizeRoles, 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 };
10740
+ 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, 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, FlyDrawerSide, FlyDrawerSize, FlyEmojiCategory, FlyEmojiCell, FlyEmojiEntry, FlyEmojiPack, FlyEmojiPackEntry, FlyEmojiPackManifest, FlyEmojiPickerSize, FlyEmojiPickerTab, FlyEmojiSection, FlyFileInfo, FlyFileSelection, FlyFormAnswer, FlyFormAnswerValue, FlyFormDefinition, FlyFormFieldOptions, FlyFormOption, FlyFormQuestion, FlyFormQuestionType, FlyFormScoreDisplay, FlyLaunchEventDetail, FlyLaunchRequestDetail, FlyLeaderboardRow, FlyLiveRefreshOptions, FlyLocaleEntry, 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, 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, ToastAction, ToastEntry, ToastOptions, ToastVariant, User, UserPrincipal, UsersTerm, WindowHelpHint, WindowInstance, WindowState };
10501
10741
  //# sourceMappingURL=flyos-design-system.d.ts.map