@flyos/design-system 3.4.0 → 3.5.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
|
@@ -1484,6 +1484,10 @@ declare class FlyStandaloneAuthService {
|
|
|
1484
1484
|
* Standalone-dev route guard: if there is no authenticated session, start the PKCE login (redirects
|
|
1485
1485
|
* to the STS) and block activation. Not reached in federated mode — the shell mounts the app's root
|
|
1486
1486
|
* component directly rather than routing through the app shell.
|
|
1487
|
+
*
|
|
1488
|
+
* Before redirecting it stashes the attempted URL under the same appId-scoped sessionStorage key the
|
|
1489
|
+
* step-up flow uses, so the auth callback lands back on the deep link instead of `/` — an
|
|
1490
|
+
* unauthenticated deep link previously lost its target on the STS round-trip.
|
|
1487
1491
|
*/
|
|
1488
1492
|
declare const flyStandaloneAuthGuard: CanActivateFn;
|
|
1489
1493
|
|
|
@@ -1789,7 +1793,7 @@ declare class I18nService {
|
|
|
1789
1793
|
* is a safe default that an integrator can override without coordination.
|
|
1790
1794
|
*
|
|
1791
1795
|
* Scope: only the keys the **shippable** DS components reference today
|
|
1792
|
-
* (`common.*` toolbar/link/emoji-picker labels + `agent.lookup.*` + `select.*` + `typeahead.*` + `cron.*` + `gantt.*` + `form.*` + `captcha.*` + `comment.*` + `canvas_board.*` + `moderation.*` + `people_picker.*` + `currency_selector.*` + `pagination.*` + `tree_nav.*` + `magic_actions.*`). When a new DS component
|
|
1796
|
+
* (`common.*` toolbar/link/emoji-picker labels + `agent.lookup.*` + `select.*` + `typeahead.*` + `cron.*` + `gantt.*` + `form.*` + `captcha.*` + `comment.*` + `canvas_board.*` + `moderation.*` + `people_picker.*` + `strategy_selector.*` + `currency_selector.*` + `pagination.*` + `tree_nav.*` + `magic_actions.*`). When a new DS component
|
|
1793
1797
|
* starts using `| translate` **or `I18nService.t()`**, add its keys here so it stays
|
|
1794
1798
|
* self-sufficient — `fly-magic-actions` shipped resolving three keys that existed only in the
|
|
1795
1799
|
* shell bundle, so an External App rendering it got the raw key string as every disabled
|
|
@@ -5726,7 +5730,10 @@ declare class FlyFileUploadComponent {
|
|
|
5726
5730
|
constructor();
|
|
5727
5731
|
allSlots: _angular_core.Signal<UploadSlot[]>;
|
|
5728
5732
|
canAddMore: _angular_core.Signal<boolean>;
|
|
5729
|
-
|
|
5733
|
+
limitHintParams: _angular_core.Signal<{
|
|
5734
|
+
n: number;
|
|
5735
|
+
mb: number;
|
|
5736
|
+
}>;
|
|
5730
5737
|
triggerFileInput(): void;
|
|
5731
5738
|
onDragOver(e: DragEvent): void;
|
|
5732
5739
|
onDragLeave(e: DragEvent): void;
|
|
@@ -9888,6 +9895,155 @@ declare class FlyPeoplePickerComponent {
|
|
|
9888
9895
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlyPeoplePickerComponent, "fly-people-picker", never, { "searchFn": { "alias": "searchFn"; "required": true; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "excludeIds": { "alias": "excludeIds"; "required": false; "isSignal": true; }; "initialSelection": { "alias": "initialSelection"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; }, { "selectionChange": "selectionChange"; }, never, never, true, never>;
|
|
9889
9896
|
}
|
|
9890
9897
|
|
|
9898
|
+
/**
|
|
9899
|
+
* One candidate/selected strategic objective. Mirrors the fields of the
|
|
9900
|
+
* Strategies app's `ObjectiveLookupDto` the component renders: the objective's
|
|
9901
|
+
* own id + title, and the parent strategy's id + title (secondary line — two
|
|
9902
|
+
* strategies may both carry a "Grow market share" objective). `statusValue` is
|
|
9903
|
+
* the objective's status enum name, optional and purely decorative.
|
|
9904
|
+
*
|
|
9905
|
+
* The full ref (not just the id) is what {@link FlyStrategySelectorComponent.selectionChange}
|
|
9906
|
+
* emits, so a consuming app can freeze the label at link time — the canonical
|
|
9907
|
+
* cross-app reference shape, where the consumer never re-resolves another
|
|
9908
|
+
* app's row just to render history.
|
|
9909
|
+
*/
|
|
9910
|
+
interface FlyStrategyObjectiveRef {
|
|
9911
|
+
readonly id: string;
|
|
9912
|
+
readonly title: string;
|
|
9913
|
+
readonly strategyId: string;
|
|
9914
|
+
readonly strategyTitle: string;
|
|
9915
|
+
/** The parent strategy's PrimeIcons class (e.g. `pi-flag`), null when the strategy has none. */
|
|
9916
|
+
readonly strategyIcon?: string | null;
|
|
9917
|
+
readonly statusValue?: string | null;
|
|
9918
|
+
}
|
|
9919
|
+
/** Host-supplied loader: async search returning candidate objectives for a query (empty query = "top N"). */
|
|
9920
|
+
type FlyStrategyObjectiveSearchFn = (query: string) => rxjs.Observable<readonly FlyStrategyObjectiveRef[]>;
|
|
9921
|
+
|
|
9922
|
+
/** The platform endpoint the component falls back to. Relative — the host's gateway + auth interceptors apply. */
|
|
9923
|
+
declare const FLY_STRATEGY_OBJECTIVES_LOOKUP_ENDPOINT = "/api/strategies/objectives/lookup";
|
|
9924
|
+
/**
|
|
9925
|
+
* Tolerant unwrap of the `ApiResponse<List<ObjectiveLookupDto>>` envelope. Anything that
|
|
9926
|
+
* doesn't parse degrades to an empty list — a picker must degrade to "no options", never throw.
|
|
9927
|
+
*/
|
|
9928
|
+
declare function flyUnwrapObjectiveLookup(res: unknown): readonly FlyStrategyObjectiveRef[];
|
|
9929
|
+
/** One contiguous run of {@link FlyStrategyObjectiveRef} rows sharing the same parent strategy —
|
|
9930
|
+
* the panel's drilldown grouping. Built from the search results as returned (already ordered
|
|
9931
|
+
* strategy-first by the backend/mock, so a single linear pass is enough — no re-sort here). */
|
|
9932
|
+
interface FlyStrategyObjectiveGroup {
|
|
9933
|
+
readonly strategyId: string;
|
|
9934
|
+
readonly strategyTitle: string;
|
|
9935
|
+
readonly strategyIcon: string | null;
|
|
9936
|
+
readonly items: readonly FlyStrategyObjectiveRef[];
|
|
9937
|
+
}
|
|
9938
|
+
/**
|
|
9939
|
+
* **`fly-strategy-selector`** — pick ONE strategic objective from the Strategies
|
|
9940
|
+
* app, so any Core or External App can optionally link its own entity (a
|
|
9941
|
+
* programme, an initiative, a budget line) to the strategy it serves.
|
|
9942
|
+
*
|
|
9943
|
+
* Pre-canned for the Strategies app's cross-strategy objective lookup
|
|
9944
|
+
* (`GET /api/strategies/objectives/lookup?q=`, `ObjectiveLookupDto` — only
|
|
9945
|
+
* StrategicObjective items on the PUBLISHED version of an Active strategy
|
|
9946
|
+
* surface there): with no data inputs it queries that endpoint itself through
|
|
9947
|
+
* the host's `HttpClient`, so gateway routing and the auth interceptor apply
|
|
9948
|
+
* and a consuming app writes one tag and nothing else. A host that must not
|
|
9949
|
+
* reach the platform directly supplies `[searchFn]` instead — the same
|
|
9950
|
+
* transport-agnostic escape hatch `fly-people-picker` and
|
|
9951
|
+
* `fly-currency-selector` offer.
|
|
9952
|
+
*
|
|
9953
|
+
* A bespoke panel (own search box + floating results box), not a wrapped
|
|
9954
|
+
* `fly-typeahead` — a flat list can't show which strategy an objective belongs
|
|
9955
|
+
* to, and two strategies routinely share near-identical objective titles.
|
|
9956
|
+
* Results are grouped into contiguous {@link FlyStrategyObjectiveGroup} runs
|
|
9957
|
+
* with the parent strategy's own icon as the group header, mirroring
|
|
9958
|
+
* `fly-currency-selector`'s pinned/all group pattern.
|
|
9959
|
+
*
|
|
9960
|
+
* Single-select by design (an entity serves ONE objective link here; a many-
|
|
9961
|
+
* to-many mapping is a matrix surface, not a form field) and built for
|
|
9962
|
+
* OPTIONAL fields: the empty state is a search box, a pick renders as a
|
|
9963
|
+
* removable chip (objective title + parent strategy secondary line), and
|
|
9964
|
+
* {@link selectionChange} emits `null` on removal.
|
|
9965
|
+
*
|
|
9966
|
+
* Emits the full {@link FlyStrategyObjectiveRef}, not just the id: the
|
|
9967
|
+
* consumer freezes the label at link time (the cross-app reference canon —
|
|
9968
|
+
* the link must stay renderable even when the strategy is later archived or
|
|
9969
|
+
* the caller can no longer read it).
|
|
9970
|
+
*
|
|
9971
|
+
* For an edit surface, feed {@link initialSelection} with the saved ref (the
|
|
9972
|
+
* consumer's own frozen copy — no re-resolve round-trip needed). Seeding never
|
|
9973
|
+
* emits {@link selectionChange}, so loading a form does not mark it dirty.
|
|
9974
|
+
*
|
|
9975
|
+
* i18n is self-sufficient through the `strategy_selector.*` keys in
|
|
9976
|
+
* `DS_BASELINE_LOCALES` (en/ar/fr/ur). RTL works via logical CSS.
|
|
9977
|
+
*
|
|
9978
|
+
* @example
|
|
9979
|
+
* ```html
|
|
9980
|
+
* <!-- Queries /api/strategies/objectives/lookup itself: -->
|
|
9981
|
+
* <fly-strategy-selector (selectionChange)="onObjectivePicked($event)" />
|
|
9982
|
+
*
|
|
9983
|
+
* <!-- Edit surface, seeded from the host's frozen ref: -->
|
|
9984
|
+
* <fly-strategy-selector
|
|
9985
|
+
* [initialSelection]="savedObjectiveRef()"
|
|
9986
|
+
* (selectionChange)="onObjectiveChanged($event)" />
|
|
9987
|
+
* ```
|
|
9988
|
+
*/
|
|
9989
|
+
declare class FlyStrategySelectorComponent {
|
|
9990
|
+
private readonly http;
|
|
9991
|
+
/** Host-supplied loader. Omit to fall back to `GET /api/strategies/objectives/lookup`. */
|
|
9992
|
+
readonly searchFn: _angular_core.InputSignal<FlyStrategyObjectiveSearchFn | null>;
|
|
9993
|
+
/** Saved ref to seed an edit surface with — rendered as the picked chip. Seeded ONCE, on the
|
|
9994
|
+
* first non-null value (a host's load typically lands after construction); later input changes
|
|
9995
|
+
* are ignored so a re-emitting load can't clobber the user's in-progress edit. Seeding does NOT
|
|
9996
|
+
* emit {@link selectionChange}. */
|
|
9997
|
+
readonly initialSelection: _angular_core.InputSignal<FlyStrategyObjectiveRef | null>;
|
|
9998
|
+
/** Placeholder for the search box. Falls back to the localized `strategy_selector.search_placeholder`. */
|
|
9999
|
+
readonly placeholder: _angular_core.InputSignal<string>;
|
|
10000
|
+
/** Debounce (ms) between the last keystroke and the search call. */
|
|
10001
|
+
readonly debounceMs: _angular_core.InputSignal<number>;
|
|
10002
|
+
/** The picked objective in full (label freezable by the host), or `null` when removed. */
|
|
10003
|
+
readonly selectionChange: _angular_core.OutputEmitterRef<FlyStrategyObjectiveRef | null>;
|
|
10004
|
+
private readonly searchEl?;
|
|
10005
|
+
private readonly host;
|
|
10006
|
+
private readonly _selected;
|
|
10007
|
+
readonly isOpen: _angular_core.WritableSignal<boolean>;
|
|
10008
|
+
readonly searchTerm: _angular_core.WritableSignal<string>;
|
|
10009
|
+
readonly activeIndex: _angular_core.WritableSignal<number>;
|
|
10010
|
+
readonly loading: _angular_core.WritableSignal<boolean>;
|
|
10011
|
+
readonly loadFailed: _angular_core.WritableSignal<boolean>;
|
|
10012
|
+
/** The most recent search batch, already ordered strategy-first by the server/mock. */
|
|
10013
|
+
private readonly _results;
|
|
10014
|
+
private _searchStarted;
|
|
10015
|
+
/** One-shot latch: flips true after {@link initialSelection} has seeded the chip. */
|
|
10016
|
+
private _seeded;
|
|
10017
|
+
private _timer;
|
|
10018
|
+
private _searchSub;
|
|
10019
|
+
constructor();
|
|
10020
|
+
readonly selected: _angular_core.Signal<FlyStrategyObjectiveRef | null>;
|
|
10021
|
+
readonly showSearch: _angular_core.Signal<boolean>;
|
|
10022
|
+
/** {@link _results} folded into contiguous per-strategy runs — the panel's drilldown grouping.
|
|
10023
|
+
* Also doubles as the flat keyboard-navigation order (a group header is never itself an option,
|
|
10024
|
+
* so nav index N always resolves via {@link navOptions}, not a per-group offset). */
|
|
10025
|
+
readonly groups: _angular_core.Signal<readonly FlyStrategyObjectiveGroup[]>;
|
|
10026
|
+
readonly navOptions: _angular_core.Signal<readonly FlyStrategyObjectiveRef[]>;
|
|
10027
|
+
navIndexOf(id: string): number;
|
|
10028
|
+
readonly activeDescendant: _angular_core.Signal<string>;
|
|
10029
|
+
optionId(index: number): string;
|
|
10030
|
+
open(): void;
|
|
10031
|
+
close(): void;
|
|
10032
|
+
onSearchInput(value: string): void;
|
|
10033
|
+
onPanelKeydown(event: KeyboardEvent): void;
|
|
10034
|
+
onOptionHover(index: number): void;
|
|
10035
|
+
onDocumentMouseDown(ev: MouseEvent): void;
|
|
10036
|
+
retry(): void;
|
|
10037
|
+
private _scheduleSearch;
|
|
10038
|
+
private _clearTimer;
|
|
10039
|
+
private _runSearch;
|
|
10040
|
+
private _search;
|
|
10041
|
+
pick(ref: FlyStrategyObjectiveRef): void;
|
|
10042
|
+
remove(): void;
|
|
10043
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlyStrategySelectorComponent, never>;
|
|
10044
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlyStrategySelectorComponent, "fly-strategy-selector", never, { "searchFn": { "alias": "searchFn"; "required": false; "isSignal": true; }; "initialSelection": { "alias": "initialSelection"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "debounceMs": { "alias": "debounceMs"; "required": false; "isSignal": true; }; }, { "selectionChange": "selectionChange"; }, never, never, true, never>;
|
|
10045
|
+
}
|
|
10046
|
+
|
|
9891
10047
|
/**
|
|
9892
10048
|
* One ISO 4217 currency as the selector renders it.
|
|
9893
10049
|
*
|
|
@@ -10023,7 +10179,11 @@ declare class FlyCurrencySelectorComponent implements ControlValueAccessor {
|
|
|
10023
10179
|
* - not `locked()` — a frozen value is authoritative; proposing one contradicts the lock.
|
|
10024
10180
|
* - the control is still empty — a written value always wins.
|
|
10025
10181
|
*
|
|
10026
|
-
* It
|
|
10182
|
+
* It stays armed until something rules it out: a user commit (pick, clear, remove) or a
|
|
10183
|
+
* written non-empty value. A written NULL does not rule it out — the forms layer initializes
|
|
10184
|
+
* a fresh control by writing its empty value on a microtask, which can land AFTER a
|
|
10185
|
+
* synchronously-resolved default has already committed, and reading that write as a user
|
|
10186
|
+
* clear would erase the default. Clearing the field by hand does latch it off, so the value
|
|
10027
10187
|
* cannot reappear and read as the clear having not registered.
|
|
10028
10188
|
*
|
|
10029
10189
|
* A host that supplied `[currencies]` or `[fetchFn]` is never taken to the platform endpoint —
|
|
@@ -10092,8 +10252,17 @@ declare class FlyCurrencySelectorComponent implements ControlValueAccessor {
|
|
|
10092
10252
|
private _fetchStarted;
|
|
10093
10253
|
/** Guards the once-per-instance tenant-default resolve. */
|
|
10094
10254
|
private _tenantDefaultStarted;
|
|
10095
|
-
/**
|
|
10096
|
-
|
|
10255
|
+
/**
|
|
10256
|
+
* Latches once the default has been RULED OUT: a user commit (pick, clear, remove) or a
|
|
10257
|
+
* written non-empty value. Applying the default does NOT latch it, and neither does a null
|
|
10258
|
+
* write: `NgModel` syncs the model's initial value on a microtask (`resolvedPromise.then` in
|
|
10259
|
+
* its `_updateValue`), so a SYNCHRONOUS `tenantDefaultFetchFn` — `of(currency)`, an offline
|
|
10260
|
+
* lookup — commits before that first write lands. When the self-application latched this
|
|
10261
|
+
* guard, the stale null write erased the committed default AND pinned the guard off, so the
|
|
10262
|
+
* default never applied for exactly those hosts (async HTTP fetches always lost the race
|
|
10263
|
+
* and were unaffected).
|
|
10264
|
+
*/
|
|
10265
|
+
private _tenantDefaultRuledOut;
|
|
10097
10266
|
/** The resolved row, kept so a `writeValue(null)` arriving AFTER the fetch can still use it. */
|
|
10098
10267
|
private _tenantDefaultRow;
|
|
10099
10268
|
private readonly searchEl?;
|
|
@@ -10161,7 +10330,10 @@ declare class FlyCurrencySelectorComponent implements ControlValueAccessor {
|
|
|
10161
10330
|
* Applies the resolved default to a still-empty control.
|
|
10162
10331
|
*
|
|
10163
10332
|
* Called from both ends of a race with no fixed winner: the fetch may land before the forms
|
|
10164
|
-
* layer writes, or after it writes the empty value a form is built with.
|
|
10333
|
+
* layer writes, or after it writes the empty value a form is built with. It can also run
|
|
10334
|
+
* AGAIN after applying — the forms layer's deferred initial null write clears the codes and
|
|
10335
|
+
* re-enters here — in which case it re-commits the same row, which also re-syncs the
|
|
10336
|
+
* `FormControl` the null write just reset.
|
|
10165
10337
|
*/
|
|
10166
10338
|
private _applyTenantDefaultIfEmpty;
|
|
10167
10339
|
writeValue(value: FlyCurrencySelectorValue): void;
|
|
@@ -13485,6 +13657,6 @@ declare const AUDIENCE_ERROR_CODES: {
|
|
|
13485
13657
|
};
|
|
13486
13658
|
type AudienceErrorCode = (typeof AUDIENCE_ERROR_CODES)[keyof typeof AUDIENCE_ERROR_CODES];
|
|
13487
13659
|
|
|
13488
|
-
export { AGENT_DRAG_MIME, AGENT_PAYLOAD_VERSION, APP_LOOKUP, AUDIENCE_ERROR_CODES, AUDIENCE_LIMITS, AUDIENCE_PRESETS, AUDIENCE_TERM_KINDS, AgentActionBus, AgentActionUnsupportedDispatchError, AgentCommandRegistry, AgentDropRegistry, AgentFlightAnimator, AgentLookupRegistry, AgentPayloadOversizeError, AudienceBuilderComponent, AuthService, BilingualFieldComponent, CRON_MODES, CRON_WEEKDAYS, ContextMenuComponent, DEFAULT_AGENT_PAYLOAD_LIMITS, DEFAULT_FLY_THEME_MODE, DS_BASELINE_LOCALES, DashboardKpiComponent, DialogResult, ENTITY_LINK_LAUNCHER, EntityLookupComponent, FLYOS_LAUNCH_EVENT, FLYOS_LAUNCH_REQUEST_EVENT, FLYOS_REMOTE_ROUTE_EVENT, FLY_ACCENT_PROPERTY, FLY_ADMIN_ROLES, FLY_CHUNK_RELOAD_FLAG, FLY_COMPACT_THRESHOLD, FLY_COUNTRIES, FLY_CURRENCIES_BRIEF_ENDPOINT, FLY_CURRENCY_DEFAULT_ENDPOINT, FLY_EMOJI_BY_ID, FLY_EMOJI_CATEGORIES, FLY_EMOJI_CATEGORY_BY_ID, FLY_EMOJI_DEFAULT_CATEGORIES, FLY_EMOJI_PACK, FLY_EMOJI_PACK_MISSING_MESSAGE, FLY_EMOJI_PREVIEW_COUNT, FLY_EMPTY_VALUE, FLY_LOCALE_CATALOG, FLY_MAGIC_BAR_EVENT, FLY_MAGIC_BAR_ICONS, FLY_MAGIC_BAR_STORE_KEY, FLY_NF_CACHE_HEAL_FLAG, FLY_RELOAD_DEBOUNCE_MS, FLY_RELOAD_REARM_MS, FLY_REMOTE_BASE_PATH, FLY_REMOTE_CONTEXT_EVENT, FLY_REMOTE_CONTEXT_STORE_KEY, FLY_REMOTE_ROUTES, FLY_SCAN_PENDING_DEFAULT_DELAY_MS, FLY_SCAN_PENDING_MAX_RETRIES, FLY_SCAN_PENDING_STATUS, FLY_SEARCH_DEBOUNCE_MS, FLY_SKIN_TONES, FLY_STANDALONE_AUTH_CONFIG, FLY_THEME_MODE_IDS, FLY_VIEWPORT_IS_MOBILE, FLY_WINDOW_BREADCRUMBS_EVENT, FLY_WINDOW_BREADCRUMBS_STORE_KEY, FLY_WINDOW_HELP_HINT_EVENT, FLY_WINDOW_PAGE_TITLE_EVENT, FlyAchievementProgressComponent, FlyActionMenuComponent, FlyActionStackComponent, FlyAgentDraggableDirective, FlyAnimatedEmojiComponent, FlyAppHomeComponent, FlyAppTopbarComponent, FlyAppUnavailableComponent, FlyAuthLiveRefresh, FlyBadgeWallComponent, FlyBlockUiComponent, FlyBreadcrumbComponent, FlyButtonComponent, FlyBytesPipe, FlyCaptchaComponent, FlyCardActionsComponent, FlyCardBodyComponent, FlyCardComponent, FlyCardFooterComponent, FlyCardGridComponent, FlyCardMediaComponent, FlyCardMetaComponent, FlyCardStatusComponent, FlyCardTitleComponent, FlyCellDirective, FlyCheckboxComponent, FlyChipComponent, FlyChunkReloadErrorHandler, FlyClickOutsideDirective, FlyCollapsibleComponent, FlyCommentThreadComponent, FlyCompactNumberPipe, FlyConfirmDialogComponent, FlyControlDirective, FlyCronBuilderComponent, FlyCurrencyCatalogService, FlyCurrencySelectorComponent, FlyDataTableComponent, FlyDatePipe, FlyDateTimePipe, FlyDebouncer, FlyDecimalNumberPipe, FlyDeepLinkPrefetchService, FlyDetailCardComponent, FlyDetailShellComponent, FlyDrawerComponent, FlyDurationPipe, FlyDynamicFormComponent, FlyEmojiPickerComponent, FlyFieldComponent, FlyFileDownloadService, FlyFileUploadComponent, FlyFilterPanelComponent, FlyFormBannerComponent, FlyFormFooterComponent, FlyFormGridComponent, FlyFormSectionComponent, FlyFullNumberPipe, FlyGanttComponent, FlyHubClient, FlyIconButtonComponent, FlyIfAdminDirective, FlyIfRoleDirective, FlyImageUploadComponent, FlyLeaderboardComponent, FlyMagicActionsComponent, FlyMetaListComponent, FlyModalComponent, FlyModerationQueueComponent, FlyModuleIconDirective, FlyMoneyPipe, FlyPagerComponent, FlyPaginationComponent, FlyPeoplePickerComponent, FlyPointsTierComponent, FlyProgressComponent, FlyRelativeTimePipe, FlyRemoteContextService, FlyRemoteRouter, FlyRemoteRouterOutletComponent, FlySearchInputComponent, FlySectionHeaderComponent, FlySecureSrcDirective, FlySegmentedComponent, FlySelectComponent, FlySkeletonComponent, FlySliderComponent, FlySparklineComponent, FlySpinnerComponent, FlyStandaloneAuthCallbackComponent, FlyStandaloneAuthService, FlyStandaloneMagicActionsComponent, FlyStateMessageComponent, FlyDynamicFormComponent as FlySurveyFormComponent, FlyTabComponent, FlyTabsComponent, FlyTagsInputComponent, FlyThemeService, FlyTimePipe, FlyToastService, FlyToggleComponent, FlyTooltipDirective, FlyTreeNavComponent, FlyTypeaheadComponent, FlyUserDirectoryService, FlyWindowHelpService, FlyWindowTitleService, FlyosPendingLaunchesGlobalKey, FlyosShellHandlesLaunchRequestsGlobalKey, FlyosShellOwnsHistoryGlobalKey, GANTT_DEPENDENCY_TYPES, GANTT_ROW_TINT_ALPHA, GANTT_ZOOMS, I18nService, LAUNCH_CONTEXT, MAGIC_BAR_SEARCH_WIDTH_DEFAULT, MAGIC_BAR_SEARCH_WIDTH_MAX, MAGIC_BAR_SEARCH_WIDTH_MIN, MagicBarRegistry, MessageBoxButtons, MessageBoxComponent, MessageBoxIcon, MessageBoxService, MockAuthService, NOVA_PRIORITY_TONE, NOVA_STATUS_TONE, NOVA_TONE_FALLBACK, OverlayStack, PRESENCE_COLORS, PageHeaderComponent, RTL_LOCALE_SET, SHARE_ORG_CHART_SYSTEM_KEY_APPS, SHARE_ORG_CHART_SYSTEM_KEY_DEFAULT, SHARE_PANEL_DEFAULT_FILE_LEVELS, STATE_DEFAULT_ICONS, STATE_DEFAULT_MESSAGE_KEYS, STEP_UP_CODE, STEP_UP_REAUTH_HANDLER, STEP_UP_RETURN_KEY, SUPPORTED_AGENT_PAYLOAD_VERSIONS, SharePanelComponent, SourceAppResolver, StandaloneWindowManagerService, StatusBadgeComponent, StepUpService, ToastHostComponent, TranslatePipe, WINDOW_DATA, WINDOW_HELP_HINT, WindowBreadcrumbsRegistry, WindowManagerService, applySkinTone, applySuggestion, ariaSort, buildCron, canConfirm, canGoNext$1 as canGoNext, canGoPrev$1 as canGoPrev, captureFocus, clampMagicBarSearchWidth, clampPage$1 as clampPage, clampSliderValue, connectRemoteLaunch, enterActivatesNatively, filterGroup, filterSuggestions, findLocaleByDialect, findLocaleByPrefix, firstEnabledIndex, firstModuleIndex, flattenModules, flyAdminGuard, flyApiErrorMessage, flyCaptchaBase64Utf8, flyCaptchaBuildToken, flyCaptchaSha256Hex, flyCompactNumber, flyDebounced, flyDecimalNumber, flyDownloadBlob, flyDuration, flyEmojiFor, flyEmojiIsTonable, flyEmojiPackUrl, flyExportFileName, flyFirstEnabledIndex, flyFormatBytes, flyFormatDate, flyFormatDateTime, flyFormatMoney, flyFormatTime, flyFullNumber, flyNextEnabledIndex, flyNextSegmentIndex, flyRelativeTime, flyResolveActiveTab, flyRoleGuard, flyScanPendingDelayMs, flyScanRetry, flySignedCompact, flySkinToneLabelKey, flyStandaloneAuthGuard, flyStandaloneAuthInterceptor, flyToDateOnly, flyToPage, flyUnwrap, flyUnwrapCurrencies, flyUnwrapCurrency, flyUnwrapLenient, hasAnyRoleIn, healNativeFederationCacheOnce, initialExpanded, isAccentColor, isChunkLoadError, isFlyAuthStorePopulated, isNativeFederationCacheError, isRtlLocale, isRtlLocaleEntry, isValidCron, isValidSingleField, loadRemoteStyles, magicBarOwnerKey, magicBarSearchText, matchFlyRoutePattern, nextEnabledIndex, nextModuleIndex, nextSegmentIndex, nextSort, normalizeFlyTheme, normalizeRoles, novaPriorityToneVar, novaStatusToneVar, overlayStack, canGoNext as pagerCanGoNext, canGoPrev as pagerCanGoPrev, clampPage as pagerClampPage, parseCron, parseStepUpChallenge, parseTags, prefetchRemoteStyles, presenceColorFor, printConsoleSecurityWarning, provideFlyChunkReloadRecovery, provideFlyEmojiPack, provideFlyStandaloneAuth, reloadOnceForChunkError, requestAppLaunch, resolveActiveModule, resolveActiveSection, resolveActiveTab, resolveCellValue, resolveStateIcon, resolveStateMessageKey, restoreFocus, sameTags, sectionHintKey, sectionLayout, sliderTrackGradient, sparklinePath, sparklinePoints, stepUpInterceptor, stepUpReturnKey, trimAgentPayload, trimAgentString, unloadRemoteStyles, utf8ByteLength, validateAgentPayload, warnIfEmbeddedSessionMissing };
|
|
13489
|
-
export type { ActionMenuItem, AgentAction, AgentActionDispatch, AgentActionVerb, AgentChipHostInputs, AgentCommand, AgentCommandContextBinding, AgentCommandHandle, AgentCommandRegistration, AgentCommandScope, AgentCommandSlashSpec, AgentDragPayload, AgentDraggableItem, AgentDropChipMode, AgentDropRendererRegistration, AgentEnvelopeAttachment, AgentMcpScope, AgentMessageEnvelope, AgentPayloadLimits, AgentPayloadValidationResult, AppEveryonePrincipal, AppEveryoneTerm, AppLookup, AppLookupEntry, AudienceEditTarget, AudienceErrorCode, AudienceFilter, AudienceOptions, AudiencePresetKind, AudienceTerm, AudienceTermKind, BreadcrumbItem, ButtonSize, ButtonVariant, CardDensity, CardLayout, ChartTerm, ChildWindowData, ChipTone, ConfirmKind, ConnectRemoteLaunchOptions, ContextMenuAlign, ContextMenuItem, ContextMenuSection, CronAdvancedFieldDef, CronMode, CronParts, CronWeekday, DesktopApp, DesktopAppCategory, DesktopAppKind, DetailSection, DialogResultWithAcknowledgement, EmbeddedSessionProbe, EntityLinkLauncher, EntityLinkSelection, FilterGroup, FlyAchievementRow, FlyApiError, FlyApiResponse, FlyAppHomeLayout, FlyAppModule, FlyAppModuleSection, FlyAppUnavailableState, FlyAuthRefreshPayload, FlyAuthStoreReadable, FlyBadgeTile, FlyBreadcrumbItem, FlyCaptchaChallenge, FlyCaptchaSolution, FlyCaptchaState, FlyCellContext, FlyColumn, FlyColumnKind, FlyComment, FlyCommentDeleteRequest, FlyCommentEditRequest, FlyCommentLoadMoreRequest, FlyCommentLoadRepliesRequest, FlyCommentLockToggleRequest, FlyCommentPage, FlyCommentReportReason, FlyCommentReportRequest, FlyCommentReportStatus, FlyCommentSubmitRequest, FlyCountry, FlyCurrency, FlyCurrencyFetchFn, FlyCurrencySelectorMode, FlyCurrencySelectorValue, FlyDeepLinkPrefetchRoute, FlyDrawerBodyPadding, FlyDrawerPosition, FlyDrawerSide, FlyDrawerSize, FlyDrawerVariant, FlyEmojiCategory, FlyEmojiCell, FlyEmojiEntry, FlyEmojiPack, FlyEmojiPackEntry, FlyEmojiPackManifest, FlyEmojiPickerSize, FlyEmojiPickerTab, FlyEmojiSection, FlyFileInfo, FlyFileSelection, FlyFormAnswer, FlyFormAnswerValue, FlyFormDefinition, FlyFormFieldOptions, FlyFormOption, FlyFormQuestion, FlyFormQuestionType, FlyFormScoreDisplay, FlyFormatMoneyOptions, FlyLaunchEventDetail, FlyLaunchRequestDetail, FlyLeaderboardRow, FlyLiveRefreshOptions, FlyLocaleEntry, FlyMagicBarIconName, FlyMetaItem, FlyModerationLoadPageRequest, FlyModerationLockThreadRequest, FlyModerationOpenSubjectRequest, FlyModerationReport, FlyModerationReportPage, FlyModerationResolutionStatus, FlyModerationResolveRequest, FlyMoneyDisplay, FlyNavigableItem, FlyPageMeta, FlyPageResult, FlyPaged, FlyPeoplePickerMode, FlyPeoplePickerOption, FlyPeopleSearchFn, FlyPointsSummary, FlyRemoteContext, FlyRemoteEagerRoute, FlyRemoteLazyRoute, FlyRemoteLoadedComponent, FlyRemoteMatch, FlyRemoteRoute, FlyRemoteRouteEventDetail, FlySearchExpandTrigger, FlySearchInputSize, FlySecureSrcState, FlySelectOption, FlySelectValue, FlySkeletonAnimation, FlySkeletonLayout, FlySkeletonShape, FlySkinTone, FlySort, FlyStandaloneAuthConfig, FlyFileSelection as FlySurveyFileSelection, FlyFormAnswer as FlySurveyFormAnswer, FlyFormAnswerValue as FlySurveyFormAnswerValue, FlyFormDefinition as FlySurveyFormDefinition, FlyFormFieldOptions as FlySurveyFormFieldOptions, FlyFormOption as FlySurveyFormOption, FlyFormQuestion as FlySurveyFormQuestion, FlyFormQuestionType as FlySurveyQuestionType, FlyTenantDefaultCurrencyFetchFn, FlyThemeMode, FlyTooltipPlacement, FlyTreeNavNode, FlyTypeaheadOption, FlyWindowHelpHintEventDetail, FlyWindowHelpPublisher, FlyWindowPageTitleEventDetail, FlyWindowTitlePublisher, FlyosPendingLaunches, FocusRestore, FormBannerKind, GanttDependency, GanttDependencyCreate, GanttDependencyDelete, GanttDependencyType, GanttRow, GanttRowDatesChange, GanttRowKind, GanttZoom, IconButtonVariant, LaunchContext, LoadBundleOptions, LoadRemoteStylesOptions, LookupDescriptor, LookupHandle, LookupRegistration, LookupResult, LookupSearch, MagicBarAction, MagicBarActionKind, MagicBarActionSpec, MagicBarActionView, MagicBarContribution, MagicBarGroup, MagicBarGroupSpec, MagicBarGroupView, MagicBarOwnerRef, MagicBarPublisher, MagicBarRadioMenu, MagicBarRadioMenuSpec, MagicBarRadioMenuView, MagicBarRadioOption, MagicBarSearch, MagicBarSearchSeed, MagicBarSearchSpec, MagicBarSearchView, MagicBarTextParams, MagicBarTone, MagicBarView, MessageBoxButton, MessageBoxDontAskAgainConfig, MessageBoxOptions, MessageBoxOptionsWithAcknowledgement, MockAuthConfig, OpenWindowOptions, OuPrincipal, OuTerm, OverlayHandle, PageHeaderVariant, PresetTerm, ProgressTone, RemoteAppDef, RequestAppLaunchOptions, RoleOuLookupRow, RolePrincipal, RolesTerm, SegmentedOption, SegmentedVariant, ShareOrgChartOption, ShareOuNode, SharePanelLevelOption, SharePermissionEntry, SharePrincipal, SharePrincipalKind, ShareUserResult, StateMessageKind, StepUpChallenge, StepUpReauthHandler, StepUpReauthRequest, TabsVariant, ToastAction, ToastEntry, ToastOptions, ToastVariant, User, UserPrincipal, UsersTerm, WindowBreadcrumb, WindowHelpHint, WindowInstance, WindowState };
|
|
13660
|
+
export { AGENT_DRAG_MIME, AGENT_PAYLOAD_VERSION, APP_LOOKUP, AUDIENCE_ERROR_CODES, AUDIENCE_LIMITS, AUDIENCE_PRESETS, AUDIENCE_TERM_KINDS, AgentActionBus, AgentActionUnsupportedDispatchError, AgentCommandRegistry, AgentDropRegistry, AgentFlightAnimator, AgentLookupRegistry, AgentPayloadOversizeError, AudienceBuilderComponent, AuthService, BilingualFieldComponent, CRON_MODES, CRON_WEEKDAYS, ContextMenuComponent, DEFAULT_AGENT_PAYLOAD_LIMITS, DEFAULT_FLY_THEME_MODE, DS_BASELINE_LOCALES, DashboardKpiComponent, DialogResult, ENTITY_LINK_LAUNCHER, EntityLookupComponent, FLYOS_LAUNCH_EVENT, FLYOS_LAUNCH_REQUEST_EVENT, FLYOS_REMOTE_ROUTE_EVENT, FLY_ACCENT_PROPERTY, FLY_ADMIN_ROLES, FLY_CHUNK_RELOAD_FLAG, FLY_COMPACT_THRESHOLD, FLY_COUNTRIES, FLY_CURRENCIES_BRIEF_ENDPOINT, FLY_CURRENCY_DEFAULT_ENDPOINT, FLY_EMOJI_BY_ID, FLY_EMOJI_CATEGORIES, FLY_EMOJI_CATEGORY_BY_ID, FLY_EMOJI_DEFAULT_CATEGORIES, FLY_EMOJI_PACK, FLY_EMOJI_PACK_MISSING_MESSAGE, FLY_EMOJI_PREVIEW_COUNT, FLY_EMPTY_VALUE, FLY_LOCALE_CATALOG, FLY_MAGIC_BAR_EVENT, FLY_MAGIC_BAR_ICONS, FLY_MAGIC_BAR_STORE_KEY, FLY_NF_CACHE_HEAL_FLAG, FLY_RELOAD_DEBOUNCE_MS, FLY_RELOAD_REARM_MS, FLY_REMOTE_BASE_PATH, FLY_REMOTE_CONTEXT_EVENT, FLY_REMOTE_CONTEXT_STORE_KEY, FLY_REMOTE_ROUTES, FLY_SCAN_PENDING_DEFAULT_DELAY_MS, FLY_SCAN_PENDING_MAX_RETRIES, FLY_SCAN_PENDING_STATUS, FLY_SEARCH_DEBOUNCE_MS, FLY_SKIN_TONES, FLY_STANDALONE_AUTH_CONFIG, FLY_STRATEGY_OBJECTIVES_LOOKUP_ENDPOINT, FLY_THEME_MODE_IDS, FLY_VIEWPORT_IS_MOBILE, FLY_WINDOW_BREADCRUMBS_EVENT, FLY_WINDOW_BREADCRUMBS_STORE_KEY, FLY_WINDOW_HELP_HINT_EVENT, FLY_WINDOW_PAGE_TITLE_EVENT, FlyAchievementProgressComponent, FlyActionMenuComponent, FlyActionStackComponent, FlyAgentDraggableDirective, FlyAnimatedEmojiComponent, FlyAppHomeComponent, FlyAppTopbarComponent, FlyAppUnavailableComponent, FlyAuthLiveRefresh, FlyBadgeWallComponent, FlyBlockUiComponent, FlyBreadcrumbComponent, FlyButtonComponent, FlyBytesPipe, FlyCaptchaComponent, FlyCardActionsComponent, FlyCardBodyComponent, FlyCardComponent, FlyCardFooterComponent, FlyCardGridComponent, FlyCardMediaComponent, FlyCardMetaComponent, FlyCardStatusComponent, FlyCardTitleComponent, FlyCellDirective, FlyCheckboxComponent, FlyChipComponent, FlyChunkReloadErrorHandler, FlyClickOutsideDirective, FlyCollapsibleComponent, FlyCommentThreadComponent, FlyCompactNumberPipe, FlyConfirmDialogComponent, FlyControlDirective, FlyCronBuilderComponent, FlyCurrencyCatalogService, FlyCurrencySelectorComponent, FlyDataTableComponent, FlyDatePipe, FlyDateTimePipe, FlyDebouncer, FlyDecimalNumberPipe, FlyDeepLinkPrefetchService, FlyDetailCardComponent, FlyDetailShellComponent, FlyDrawerComponent, FlyDurationPipe, FlyDynamicFormComponent, FlyEmojiPickerComponent, FlyFieldComponent, FlyFileDownloadService, FlyFileUploadComponent, FlyFilterPanelComponent, FlyFormBannerComponent, FlyFormFooterComponent, FlyFormGridComponent, FlyFormSectionComponent, FlyFullNumberPipe, FlyGanttComponent, FlyHubClient, FlyIconButtonComponent, FlyIfAdminDirective, FlyIfRoleDirective, FlyImageUploadComponent, FlyLeaderboardComponent, FlyMagicActionsComponent, FlyMetaListComponent, FlyModalComponent, FlyModerationQueueComponent, FlyModuleIconDirective, FlyMoneyPipe, FlyPagerComponent, FlyPaginationComponent, FlyPeoplePickerComponent, FlyPointsTierComponent, FlyProgressComponent, FlyRelativeTimePipe, FlyRemoteContextService, FlyRemoteRouter, FlyRemoteRouterOutletComponent, FlySearchInputComponent, FlySectionHeaderComponent, FlySecureSrcDirective, FlySegmentedComponent, FlySelectComponent, FlySkeletonComponent, FlySliderComponent, FlySparklineComponent, FlySpinnerComponent, FlyStandaloneAuthCallbackComponent, FlyStandaloneAuthService, FlyStandaloneMagicActionsComponent, FlyStateMessageComponent, FlyStrategySelectorComponent, FlyDynamicFormComponent as FlySurveyFormComponent, FlyTabComponent, FlyTabsComponent, FlyTagsInputComponent, FlyThemeService, FlyTimePipe, FlyToastService, FlyToggleComponent, FlyTooltipDirective, FlyTreeNavComponent, FlyTypeaheadComponent, FlyUserDirectoryService, FlyWindowHelpService, FlyWindowTitleService, FlyosPendingLaunchesGlobalKey, FlyosShellHandlesLaunchRequestsGlobalKey, FlyosShellOwnsHistoryGlobalKey, GANTT_DEPENDENCY_TYPES, GANTT_ROW_TINT_ALPHA, GANTT_ZOOMS, I18nService, LAUNCH_CONTEXT, MAGIC_BAR_SEARCH_WIDTH_DEFAULT, MAGIC_BAR_SEARCH_WIDTH_MAX, MAGIC_BAR_SEARCH_WIDTH_MIN, MagicBarRegistry, MessageBoxButtons, MessageBoxComponent, MessageBoxIcon, MessageBoxService, MockAuthService, NOVA_PRIORITY_TONE, NOVA_STATUS_TONE, NOVA_TONE_FALLBACK, OverlayStack, PRESENCE_COLORS, PageHeaderComponent, RTL_LOCALE_SET, SHARE_ORG_CHART_SYSTEM_KEY_APPS, SHARE_ORG_CHART_SYSTEM_KEY_DEFAULT, SHARE_PANEL_DEFAULT_FILE_LEVELS, STATE_DEFAULT_ICONS, STATE_DEFAULT_MESSAGE_KEYS, STEP_UP_CODE, STEP_UP_REAUTH_HANDLER, STEP_UP_RETURN_KEY, SUPPORTED_AGENT_PAYLOAD_VERSIONS, SharePanelComponent, SourceAppResolver, StandaloneWindowManagerService, StatusBadgeComponent, StepUpService, ToastHostComponent, TranslatePipe, WINDOW_DATA, WINDOW_HELP_HINT, WindowBreadcrumbsRegistry, WindowManagerService, applySkinTone, applySuggestion, ariaSort, buildCron, canConfirm, canGoNext$1 as canGoNext, canGoPrev$1 as canGoPrev, captureFocus, clampMagicBarSearchWidth, clampPage$1 as clampPage, clampSliderValue, connectRemoteLaunch, enterActivatesNatively, filterGroup, filterSuggestions, findLocaleByDialect, findLocaleByPrefix, firstEnabledIndex, firstModuleIndex, flattenModules, flyAdminGuard, flyApiErrorMessage, flyCaptchaBase64Utf8, flyCaptchaBuildToken, flyCaptchaSha256Hex, flyCompactNumber, flyDebounced, flyDecimalNumber, flyDownloadBlob, flyDuration, flyEmojiFor, flyEmojiIsTonable, flyEmojiPackUrl, flyExportFileName, flyFirstEnabledIndex, flyFormatBytes, flyFormatDate, flyFormatDateTime, flyFormatMoney, flyFormatTime, flyFullNumber, flyNextEnabledIndex, flyNextSegmentIndex, flyRelativeTime, flyResolveActiveTab, flyRoleGuard, flyScanPendingDelayMs, flyScanRetry, flySignedCompact, flySkinToneLabelKey, flyStandaloneAuthGuard, flyStandaloneAuthInterceptor, flyToDateOnly, flyToPage, flyUnwrap, flyUnwrapCurrencies, flyUnwrapCurrency, flyUnwrapLenient, flyUnwrapObjectiveLookup, hasAnyRoleIn, healNativeFederationCacheOnce, initialExpanded, isAccentColor, isChunkLoadError, isFlyAuthStorePopulated, isNativeFederationCacheError, isRtlLocale, isRtlLocaleEntry, isValidCron, isValidSingleField, loadRemoteStyles, magicBarOwnerKey, magicBarSearchText, matchFlyRoutePattern, nextEnabledIndex, nextModuleIndex, nextSegmentIndex, nextSort, normalizeFlyTheme, normalizeRoles, novaPriorityToneVar, novaStatusToneVar, overlayStack, canGoNext as pagerCanGoNext, canGoPrev as pagerCanGoPrev, clampPage as pagerClampPage, parseCron, parseStepUpChallenge, parseTags, prefetchRemoteStyles, presenceColorFor, printConsoleSecurityWarning, provideFlyChunkReloadRecovery, provideFlyEmojiPack, provideFlyStandaloneAuth, reloadOnceForChunkError, requestAppLaunch, resolveActiveModule, resolveActiveSection, resolveActiveTab, resolveCellValue, resolveStateIcon, resolveStateMessageKey, restoreFocus, sameTags, sectionHintKey, sectionLayout, sliderTrackGradient, sparklinePath, sparklinePoints, stepUpInterceptor, stepUpReturnKey, trimAgentPayload, trimAgentString, unloadRemoteStyles, utf8ByteLength, validateAgentPayload, warnIfEmbeddedSessionMissing };
|
|
13661
|
+
export type { ActionMenuItem, AgentAction, AgentActionDispatch, AgentActionVerb, AgentChipHostInputs, AgentCommand, AgentCommandContextBinding, AgentCommandHandle, AgentCommandRegistration, AgentCommandScope, AgentCommandSlashSpec, AgentDragPayload, AgentDraggableItem, AgentDropChipMode, AgentDropRendererRegistration, AgentEnvelopeAttachment, AgentMcpScope, AgentMessageEnvelope, AgentPayloadLimits, AgentPayloadValidationResult, AppEveryonePrincipal, AppEveryoneTerm, AppLookup, AppLookupEntry, AudienceEditTarget, AudienceErrorCode, AudienceFilter, AudienceOptions, AudiencePresetKind, AudienceTerm, AudienceTermKind, BreadcrumbItem, ButtonSize, ButtonVariant, CardDensity, CardLayout, ChartTerm, ChildWindowData, ChipTone, ConfirmKind, ConnectRemoteLaunchOptions, ContextMenuAlign, ContextMenuItem, ContextMenuSection, CronAdvancedFieldDef, CronMode, CronParts, CronWeekday, DesktopApp, DesktopAppCategory, DesktopAppKind, DetailSection, DialogResultWithAcknowledgement, EmbeddedSessionProbe, EntityLinkLauncher, EntityLinkSelection, FilterGroup, FlyAchievementRow, FlyApiError, FlyApiResponse, FlyAppHomeLayout, FlyAppModule, FlyAppModuleSection, FlyAppUnavailableState, FlyAuthRefreshPayload, FlyAuthStoreReadable, FlyBadgeTile, FlyBreadcrumbItem, FlyCaptchaChallenge, FlyCaptchaSolution, FlyCaptchaState, FlyCellContext, FlyColumn, FlyColumnKind, FlyComment, FlyCommentDeleteRequest, FlyCommentEditRequest, FlyCommentLoadMoreRequest, FlyCommentLoadRepliesRequest, FlyCommentLockToggleRequest, FlyCommentPage, FlyCommentReportReason, FlyCommentReportRequest, FlyCommentReportStatus, FlyCommentSubmitRequest, FlyCountry, FlyCurrency, FlyCurrencyFetchFn, FlyCurrencySelectorMode, FlyCurrencySelectorValue, FlyDeepLinkPrefetchRoute, FlyDrawerBodyPadding, FlyDrawerPosition, FlyDrawerSide, FlyDrawerSize, FlyDrawerVariant, FlyEmojiCategory, FlyEmojiCell, FlyEmojiEntry, FlyEmojiPack, FlyEmojiPackEntry, FlyEmojiPackManifest, FlyEmojiPickerSize, FlyEmojiPickerTab, FlyEmojiSection, FlyFileInfo, FlyFileSelection, FlyFormAnswer, FlyFormAnswerValue, FlyFormDefinition, FlyFormFieldOptions, FlyFormOption, FlyFormQuestion, FlyFormQuestionType, FlyFormScoreDisplay, FlyFormatMoneyOptions, FlyLaunchEventDetail, FlyLaunchRequestDetail, FlyLeaderboardRow, FlyLiveRefreshOptions, FlyLocaleEntry, FlyMagicBarIconName, FlyMetaItem, FlyModerationLoadPageRequest, FlyModerationLockThreadRequest, FlyModerationOpenSubjectRequest, FlyModerationReport, FlyModerationReportPage, FlyModerationResolutionStatus, FlyModerationResolveRequest, FlyMoneyDisplay, FlyNavigableItem, FlyPageMeta, FlyPageResult, FlyPaged, FlyPeoplePickerMode, FlyPeoplePickerOption, FlyPeopleSearchFn, FlyPointsSummary, FlyRemoteContext, FlyRemoteEagerRoute, FlyRemoteLazyRoute, FlyRemoteLoadedComponent, FlyRemoteMatch, FlyRemoteRoute, FlyRemoteRouteEventDetail, FlySearchExpandTrigger, FlySearchInputSize, FlySecureSrcState, FlySelectOption, FlySelectValue, FlySkeletonAnimation, FlySkeletonLayout, FlySkeletonShape, FlySkinTone, FlySort, FlyStandaloneAuthConfig, FlyStrategyObjectiveRef, FlyStrategyObjectiveSearchFn, FlyFileSelection as FlySurveyFileSelection, FlyFormAnswer as FlySurveyFormAnswer, FlyFormAnswerValue as FlySurveyFormAnswerValue, FlyFormDefinition as FlySurveyFormDefinition, FlyFormFieldOptions as FlySurveyFormFieldOptions, FlyFormOption as FlySurveyFormOption, FlyFormQuestion as FlySurveyFormQuestion, FlyFormQuestionType as FlySurveyQuestionType, FlyTenantDefaultCurrencyFetchFn, FlyThemeMode, FlyTooltipPlacement, FlyTreeNavNode, FlyTypeaheadOption, FlyWindowHelpHintEventDetail, FlyWindowHelpPublisher, FlyWindowPageTitleEventDetail, FlyWindowTitlePublisher, FlyosPendingLaunches, FocusRestore, FormBannerKind, GanttDependency, GanttDependencyCreate, GanttDependencyDelete, GanttDependencyType, GanttRow, GanttRowDatesChange, GanttRowKind, GanttZoom, IconButtonVariant, LaunchContext, LoadBundleOptions, LoadRemoteStylesOptions, LookupDescriptor, LookupHandle, LookupRegistration, LookupResult, LookupSearch, MagicBarAction, MagicBarActionKind, MagicBarActionSpec, MagicBarActionView, MagicBarContribution, MagicBarGroup, MagicBarGroupSpec, MagicBarGroupView, MagicBarOwnerRef, MagicBarPublisher, MagicBarRadioMenu, MagicBarRadioMenuSpec, MagicBarRadioMenuView, MagicBarRadioOption, MagicBarSearch, MagicBarSearchSeed, MagicBarSearchSpec, MagicBarSearchView, MagicBarTextParams, MagicBarTone, MagicBarView, MessageBoxButton, MessageBoxDontAskAgainConfig, MessageBoxOptions, MessageBoxOptionsWithAcknowledgement, MockAuthConfig, OpenWindowOptions, OuPrincipal, OuTerm, OverlayHandle, PageHeaderVariant, PresetTerm, ProgressTone, RemoteAppDef, RequestAppLaunchOptions, RoleOuLookupRow, RolePrincipal, RolesTerm, SegmentedOption, SegmentedVariant, ShareOrgChartOption, ShareOuNode, SharePanelLevelOption, SharePermissionEntry, SharePrincipal, SharePrincipalKind, ShareUserResult, StateMessageKind, StepUpChallenge, StepUpReauthHandler, StepUpReauthRequest, TabsVariant, ToastAction, ToastEntry, ToastOptions, ToastVariant, User, UserPrincipal, UsersTerm, WindowBreadcrumb, WindowHelpHint, WindowInstance, WindowState };
|
|
13490
13662
|
//# sourceMappingURL=flyos-design-system.d.ts.map
|