@flyos/design-system 1.0.0 → 1.2.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/fesm2022/flyos-design-system.mjs +1277 -583
- package/fesm2022/flyos-design-system.mjs.map +1 -1
- package/package.json +1 -1
- package/scss/_app-surface-utilities.scss +10 -0
- package/scss/_ink-baseline.scss +29 -29
- package/scss/_shell-embed-bridge.scss +81 -0
- package/scss/_theme-dark.scss +8 -0
- package/scss/_theme-light.scss +17 -0
- package/scss/_vos-button-mixins.scss +28 -28
- package/types/flyos-design-system.d.ts +256 -7
- package/types/flyos-design-system.d.ts.map +1 -1
|
@@ -4112,6 +4112,12 @@ interface ContextMenuItem {
|
|
|
4112
4112
|
id: string;
|
|
4113
4113
|
label: string;
|
|
4114
4114
|
icon: string;
|
|
4115
|
+
/**
|
|
4116
|
+
* Nested items — when present (non-empty), activating this row opens a flyout submenu
|
|
4117
|
+
* instead of firing `action` directly. Recursive: a child item may itself declare
|
|
4118
|
+
* further children, each rendered as another nested `fly-context-menu` instance.
|
|
4119
|
+
*/
|
|
4120
|
+
children?: ContextMenuItem[];
|
|
4115
4121
|
}
|
|
4116
4122
|
interface ContextMenuSection {
|
|
4117
4123
|
label?: string;
|
|
@@ -4122,14 +4128,28 @@ interface ContextMenuSection {
|
|
|
4122
4128
|
* Logical, not physical — `end` is the right edge in LTR and the left edge in RTL.
|
|
4123
4129
|
*/
|
|
4124
4130
|
type ContextMenuAlign = 'start' | 'end';
|
|
4131
|
+
/**
|
|
4132
|
+
* `'below'` (default) — the original dropdown behaviour: the menu opens below (or above,
|
|
4133
|
+
* flipping on overflow) the anchor, left/right-aligned per {@link ContextMenuComponent.align}.
|
|
4134
|
+
* `'side'` — a submenu flyout: the menu opens beside the anchor (trailing edge in the
|
|
4135
|
+
* reading direction, flipping to the leading edge on overflow), top-aligned to it. Only
|
|
4136
|
+
* meaningful with an `[anchor]` — a submenu is always anchored to the parent row it hangs off.
|
|
4137
|
+
*/
|
|
4138
|
+
type ContextMenuPlacement = 'below' | 'side';
|
|
4125
4139
|
/**
|
|
4126
4140
|
* A floating, anchor-relative context menu (right-click / kebab-button style). Positions itself
|
|
4127
4141
|
* against the containing clipping ancestor rather than the viewport, flips to stay on-screen, and
|
|
4128
4142
|
* marks its `[anchor]` with `data-fly-menu-open` while open so the trigger can render as pressed.
|
|
4129
4143
|
* Sections group items with an optional label; each item carries an id, label, and icon.
|
|
4144
|
+
*
|
|
4145
|
+
* Items may declare `children` — a genuinely recursive submenu flyout (see the "Submenus"
|
|
4146
|
+
* region below). The component imports ITSELF so its template can mount a nested instance
|
|
4147
|
+
* for an open submenu; standard, supported Angular pattern for recursive standalone components.
|
|
4130
4148
|
*/
|
|
4131
4149
|
declare class ContextMenuComponent implements AfterViewInit, OnDestroy {
|
|
4132
4150
|
private menuEl?;
|
|
4151
|
+
/** The recursive submenu instance, mounted only while {@link openSubmenuId} is set. */
|
|
4152
|
+
private childMenuRef?;
|
|
4133
4153
|
private readonly doc;
|
|
4134
4154
|
private readonly hostEl;
|
|
4135
4155
|
/**
|
|
@@ -4159,6 +4179,8 @@ declare class ContextMenuComponent implements AfterViewInit, OnDestroy {
|
|
|
4159
4179
|
* a preference, not a guarantee. No effect without an anchor.
|
|
4160
4180
|
*/
|
|
4161
4181
|
align: _angular_core.InputSignal<ContextMenuAlign>;
|
|
4182
|
+
/** See {@link ContextMenuPlacement}. Ignored without an `[anchor]`. */
|
|
4183
|
+
placement: _angular_core.InputSignal<ContextMenuPlacement>;
|
|
4162
4184
|
sections: _angular_core.InputSignal<ContextMenuSection[]>;
|
|
4163
4185
|
/**
|
|
4164
4186
|
* Optional containing rect (viewport coords, e.g. from
|
|
@@ -4176,7 +4198,9 @@ declare class ContextMenuComponent implements AfterViewInit, OnDestroy {
|
|
|
4176
4198
|
private anchorRect;
|
|
4177
4199
|
/** Containing box derived from the anchor; only used when no explicit `boundary` is given. */
|
|
4178
4200
|
private derivedBoundary;
|
|
4179
|
-
private
|
|
4201
|
+
/** `protected`, not `private` — the submenu-caret's mirroring in the template reads this
|
|
4202
|
+
* directly (see the `[class.is-rtl]` binding). */
|
|
4203
|
+
protected anchorRtl: _angular_core.WritableSignal<boolean>;
|
|
4180
4204
|
private previouslyFocused;
|
|
4181
4205
|
private prevAriaExpanded;
|
|
4182
4206
|
private prevAriaHasPopup;
|
|
@@ -4184,6 +4208,40 @@ declare class ContextMenuComponent implements AfterViewInit, OnDestroy {
|
|
|
4184
4208
|
left: number;
|
|
4185
4209
|
top: number;
|
|
4186
4210
|
}>;
|
|
4211
|
+
/** id of the item whose submenu is open, or null. */
|
|
4212
|
+
protected readonly openSubmenuId: _angular_core.WritableSignal<string | null>;
|
|
4213
|
+
private readonly openSubmenuAnchor;
|
|
4214
|
+
private readonly openSubmenuItem;
|
|
4215
|
+
/** `[sections]` input for the nested instance — a single unlabeled section wrapping
|
|
4216
|
+
* the open item's children. */
|
|
4217
|
+
protected readonly openSubmenuSections: _angular_core.Signal<ContextMenuSection[]>;
|
|
4218
|
+
protected readonly openSubmenuAnchorEl: _angular_core.Signal<HTMLElement | null>;
|
|
4219
|
+
/** Row click/Enter/Space handler — opens the submenu for a has-children item instead
|
|
4220
|
+
* of firing `action`; fires `action` directly (and closes) for a leaf item. */
|
|
4221
|
+
protected onItemActivate(item: ContextMenuItem, event: Event): void;
|
|
4222
|
+
private hoverTimer;
|
|
4223
|
+
/** Hover-intent delay before a submenu opens — long enough that a pointer sweeping
|
|
4224
|
+
* past on its way elsewhere doesn't pop every has-children row it crosses. */
|
|
4225
|
+
private static readonly SUBMENU_HOVER_DELAY_MS;
|
|
4226
|
+
/**
|
|
4227
|
+
* Hovering a has-children row opens its submenu after a short delay; hovering a
|
|
4228
|
+
* SIBLING leaf row closes whichever submenu was open — both standard desktop menu
|
|
4229
|
+
* conventions. No explicit "close on leave" handler: moving to another row re-fires
|
|
4230
|
+
* this and either replaces or closes the open submenu; moving off the menu entirely
|
|
4231
|
+
* is caught by the existing outside-click/Escape handling.
|
|
4232
|
+
*/
|
|
4233
|
+
protected onItemMouseEnter(item: ContextMenuItem, event: MouseEvent): void;
|
|
4234
|
+
protected onItemMouseLeave(): void;
|
|
4235
|
+
private clearHoverTimer;
|
|
4236
|
+
private toggleSubmenu;
|
|
4237
|
+
protected closeSubmenu(): void;
|
|
4238
|
+
/** A leaf action fired somewhere inside the (possibly multi-level) open submenu —
|
|
4239
|
+
* bubble it up as this menu's own `action` and close the WHOLE stack, matching a
|
|
4240
|
+
* normal top-level item click. */
|
|
4241
|
+
protected onSubmenuAction(id: string): void;
|
|
4242
|
+
/** The child closed itself (Escape / an outside click within its own bounds) without
|
|
4243
|
+
* selecting anything — collapse back to this level; THIS menu stays open. */
|
|
4244
|
+
protected onSubmenuClosed(): void;
|
|
4187
4245
|
ngAfterViewInit(): void;
|
|
4188
4246
|
ngOnDestroy(): void;
|
|
4189
4247
|
/**
|
|
@@ -4197,16 +4255,43 @@ declare class ContextMenuComponent implements AfterViewInit, OnDestroy {
|
|
|
4197
4255
|
private clearAnchorOpen;
|
|
4198
4256
|
private restoreAttr;
|
|
4199
4257
|
onAction(id: string): void;
|
|
4258
|
+
/**
|
|
4259
|
+
* True when `target` is inside THIS menu's own DOM, or inside its currently-open
|
|
4260
|
+
* submenu (recursively — a submenu can have its own open grand-submenu). A submenu is
|
|
4261
|
+
* portaled to `<body>` as a SIBLING of this menu's own `.context-menu` div, not a DOM
|
|
4262
|
+
* descendant of it, so a plain `menuEl.contains()` check would treat a click inside an
|
|
4263
|
+
* open submenu as "outside" and wrongly close this whole stack. Delegating through the
|
|
4264
|
+
* child instance is what keeps arbitrarily-deep nesting correct without a global registry.
|
|
4265
|
+
*/
|
|
4266
|
+
containsElement(target: Node): boolean;
|
|
4200
4267
|
onClickOutside(event: MouseEvent): void;
|
|
4201
4268
|
onEscape(): void;
|
|
4202
4269
|
onContextMenu(event: MouseEvent): void;
|
|
4270
|
+
/** Flattened items across every section, in the same order the template renders
|
|
4271
|
+
* `[role="menuitem"]` buttons — lets a focused DOM element be mapped back to its
|
|
4272
|
+
* data item (to check `children`) by matching index. */
|
|
4273
|
+
private readonly flatItems;
|
|
4203
4274
|
onKeydown(event: KeyboardEvent): void;
|
|
4275
|
+
/**
|
|
4276
|
+
* RTL-aware: the "descend into a submenu" arrow is Right in LTR, Left in RTL. Reuses
|
|
4277
|
+
* {@link anchorRtl} (sampled from the ANCHOR's pre-portal position — see
|
|
4278
|
+
* `ngAfterViewInit`) rather than reading direction off this menu's own host, which by
|
|
4279
|
+
* the time any key can be pressed has already been portaled to `<body>` and would
|
|
4280
|
+
* reflect the document's own direction, not necessarily this menu's local context. A
|
|
4281
|
+
* pointer-only menu (no anchor) has no locally-sampled direction to read and falls
|
|
4282
|
+
* back to LTR ordering — the same limitation `clampedPos`'s anchored branch already
|
|
4283
|
+
* has for positioning, kept consistent here rather than inventing a second mechanism.
|
|
4284
|
+
*/
|
|
4285
|
+
private isOpenSubmenuKey;
|
|
4286
|
+
/** RTL-aware: the "back out of a submenu" arrow is Left in LTR, Right in RTL. */
|
|
4287
|
+
private isCloseSubmenuKey;
|
|
4204
4288
|
private close;
|
|
4205
4289
|
private getMenuItems;
|
|
4206
|
-
|
|
4290
|
+
/** Public: lets a parent instance focus this (nested) menu's first item once it mounts. */
|
|
4291
|
+
focusItem(index: number): void;
|
|
4207
4292
|
private restoreFocus;
|
|
4208
4293
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ContextMenuComponent, never>;
|
|
4209
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ContextMenuComponent, "fly-context-menu", never, { "x": { "alias": "x"; "required": false; "isSignal": true; }; "y": { "alias": "y"; "required": false; "isSignal": true; }; "anchor": { "alias": "anchor"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; "sections": { "alias": "sections"; "required": true; "isSignal": true; }; "boundary": { "alias": "boundary"; "required": false; "isSignal": true; }; }, { "action": "action"; "closed": "closed"; }, never, never, true, never>;
|
|
4294
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ContextMenuComponent, "fly-context-menu", never, { "x": { "alias": "x"; "required": false; "isSignal": true; }; "y": { "alias": "y"; "required": false; "isSignal": true; }; "anchor": { "alias": "anchor"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; "placement": { "alias": "placement"; "required": false; "isSignal": true; }; "sections": { "alias": "sections"; "required": true; "isSignal": true; }; "boundary": { "alias": "boundary"; "required": false; "isSignal": true; }; }, { "action": "action"; "closed": "closed"; }, never, never, true, never>;
|
|
4210
4295
|
}
|
|
4211
4296
|
|
|
4212
4297
|
declare enum MessageBoxButtons {
|
|
@@ -8195,6 +8280,36 @@ declare function flyDownloadBlob(blob: Blob, fileName: string, mimeFallback?: st
|
|
|
8195
8280
|
*/
|
|
8196
8281
|
declare function flyExportFileName(contentDisposition: string | null | undefined, fallback: string): string;
|
|
8197
8282
|
|
|
8283
|
+
/**
|
|
8284
|
+
* Shared presence-colour utility — one deterministic seed → colour mapping so
|
|
8285
|
+
* every co-authoring surface (mind-maps, canvas-boards, and future Documents/
|
|
8286
|
+
* Thoughts Labs consumers) paints the SAME user the SAME colour, without any
|
|
8287
|
+
* cross-app coordination beyond importing this module.
|
|
8288
|
+
*
|
|
8289
|
+
* The palette and hash algorithm are copied byte-for-byte from the mind-maps
|
|
8290
|
+
* feature app's inline `identity` computed (`mind-maps.component.ts`), which
|
|
8291
|
+
* predates this shared module and is the origin of the vocabulary — see
|
|
8292
|
+
* `PRESENCE_COLORS` / the `hash = (hash*31 + charCode)|0` loop there. This
|
|
8293
|
+
* file does not replace that call site (existing consumers are migrated in
|
|
8294
|
+
* future work per the canvas-board gap-closure plan §7); it exists so NEW
|
|
8295
|
+
* consumers (the canvas-board presence adapter) don't hand-roll a second copy
|
|
8296
|
+
* that could silently drift from the original.
|
|
8297
|
+
*
|
|
8298
|
+
* Rides no transport of its own — purely a pure function over a string seed
|
|
8299
|
+
* (typically a user id). Callers broadcast the resolved colour over Yjs
|
|
8300
|
+
* awareness (`user.color`) themselves.
|
|
8301
|
+
*/
|
|
8302
|
+
/** Stable presence palette — identical order/values to the mind-maps palette. */
|
|
8303
|
+
declare const PRESENCE_COLORS: readonly string[];
|
|
8304
|
+
/**
|
|
8305
|
+
* Deterministically maps a seed (typically a user id, falling back to a
|
|
8306
|
+
* display name where no id is available) to one of {@link PRESENCE_COLORS}.
|
|
8307
|
+
*
|
|
8308
|
+
* Same seed ⇒ same colour, always — across apps, sessions, and page reloads,
|
|
8309
|
+
* with no server round-trip or shared state required.
|
|
8310
|
+
*/
|
|
8311
|
+
declare function presenceColorFor(seed: string): string;
|
|
8312
|
+
|
|
8198
8313
|
/**
|
|
8199
8314
|
* Locale-aware formatting primitives — numbers, byte sizes, relative time, and dates.
|
|
8200
8315
|
*
|
|
@@ -8928,7 +9043,10 @@ declare class FlyProgressComponent {
|
|
|
8928
9043
|
*/
|
|
8929
9044
|
declare class FlySparklineComponent {
|
|
8930
9045
|
readonly points: _angular_core.InputSignal<readonly number[]>;
|
|
8931
|
-
/**
|
|
9046
|
+
/**
|
|
9047
|
+
* Viewbox metrics AND the host's rendered block-size (px) — see the host
|
|
9048
|
+
* binding comment above for why the two are deliberately the same input.
|
|
9049
|
+
*/
|
|
8932
9050
|
readonly width: _angular_core.InputSignal<number>;
|
|
8933
9051
|
readonly height: _angular_core.InputSignal<number>;
|
|
8934
9052
|
protected readonly viewBox: _angular_core.Signal<string>;
|
|
@@ -9018,6 +9136,137 @@ declare class FlySectionHeaderComponent {
|
|
|
9018
9136
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlySectionHeaderComponent, "fly-section-header", never, { "titleKey": { "alias": "titleKey"; "required": false; "isSignal": true; }; }, {}, never, ["[section-title]", "[section-actions]"], true, never>;
|
|
9019
9137
|
}
|
|
9020
9138
|
|
|
9139
|
+
/**
|
|
9140
|
+
* Detail-page content card — the surface every panel and sidebar block on a detail
|
|
9141
|
+
* screen sits on: `card-surface` fill/hairline/radius/shadow, an optional
|
|
9142
|
+
* `fly-section-header`, and a padded body.
|
|
9143
|
+
*
|
|
9144
|
+
* Extracted because four detail screens (Circles signal + trend, Thoughts idea +
|
|
9145
|
+
* the six sibling detail pages) had each hand-rolled the identical
|
|
9146
|
+
* `.card` / `.card__body` / `.card__body--flush` recipe, and they drifted: some
|
|
9147
|
+
* carried the shadow, some didn't, and on the shell's translucent glass the ones
|
|
9148
|
+
* without it lost their edge and read as a lighter surface than their neighbours.
|
|
9149
|
+
*
|
|
9150
|
+
* ```html
|
|
9151
|
+
* <fly-detail-card titleKey="common.label.metadata">
|
|
9152
|
+
* <fly-meta [items]="rows()" />
|
|
9153
|
+
* </fly-detail-card>
|
|
9154
|
+
*
|
|
9155
|
+
* <!-- A child with its own list chrome shouldn't sit inside body padding. -->
|
|
9156
|
+
* <fly-detail-card titleKey="common.label.evidence" [flush]="true">
|
|
9157
|
+
* <button card-actions type="button" (click)="add()">Add</button>
|
|
9158
|
+
* <fly-evidence-panel [hideHeader]="true" />
|
|
9159
|
+
* </fly-detail-card>
|
|
9160
|
+
* ```
|
|
9161
|
+
*
|
|
9162
|
+
* With no `titleKey` and nothing projected into `[card-title]` the header is
|
|
9163
|
+
* omitted entirely, so the card also serves as a bare framed surface (a cover
|
|
9164
|
+
* image, a chart) without an empty header rule above it.
|
|
9165
|
+
*/
|
|
9166
|
+
declare class FlyDetailCardComponent {
|
|
9167
|
+
/** i18n key for the card title; alternatively project `[card-title]`. */
|
|
9168
|
+
readonly titleKey: _angular_core.InputSignal<string | undefined>;
|
|
9169
|
+
/**
|
|
9170
|
+
* Set when the title arrives through `[card-title]` rather than `titleKey`.
|
|
9171
|
+
* Content projection cannot be *queried* for presence without a `contentChild`
|
|
9172
|
+
* on a directive the caller would also have to import, so this stays an
|
|
9173
|
+
* explicit flag — a header with neither is omitted rather than rendered empty.
|
|
9174
|
+
*/
|
|
9175
|
+
readonly hasProjectedTitle: _angular_core.InputSignal<boolean>;
|
|
9176
|
+
/** Drop the body padding — for a child that brings its own list/table chrome. */
|
|
9177
|
+
readonly flush: _angular_core.InputSignal<boolean>;
|
|
9178
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlyDetailCardComponent, never>;
|
|
9179
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlyDetailCardComponent, "fly-detail-card", never, { "titleKey": { "alias": "titleKey"; "required": false; "isSignal": true; }; "hasProjectedTitle": { "alias": "hasProjectedTitle"; "required": false; "isSignal": true; }; "flush": { "alias": "flush"; "required": false; "isSignal": true; }; }, {}, never, ["[card-title]", "[card-actions]", "*"], true, never>;
|
|
9180
|
+
}
|
|
9181
|
+
|
|
9182
|
+
/** One section in a detail shell's icon rail. */
|
|
9183
|
+
interface DetailSection {
|
|
9184
|
+
/** Stable id — what `selected` names. */
|
|
9185
|
+
id: string;
|
|
9186
|
+
/** i18n key for the rail label / tooltip. */
|
|
9187
|
+
labelKey: string;
|
|
9188
|
+
/**
|
|
9189
|
+
* Icon class for the rail glyph (e.g. a PrimeIcons `pi-info-circle`). Optional:
|
|
9190
|
+
* with none, the rail renders labels only.
|
|
9191
|
+
*/
|
|
9192
|
+
icon?: string;
|
|
9193
|
+
}
|
|
9194
|
+
/**
|
|
9195
|
+
* Resolve which section is active.
|
|
9196
|
+
*
|
|
9197
|
+
* The fallback is the point of this function. A detail page's section list is
|
|
9198
|
+
* derived from the record — a scorecard tab only exists while the record has a
|
|
9199
|
+
* scorecard, an approvals tab only while an approval is open — so a selection made
|
|
9200
|
+
* on one record can name a section the NEXT record does not have. The remote-router
|
|
9201
|
+
* outlet reuses the component instance across `/x/:id` → `/x/:id` navigations, so
|
|
9202
|
+
* that is a routine occurrence, not an edge case, and the symptom is an empty panel
|
|
9203
|
+
* with no indication why.
|
|
9204
|
+
*
|
|
9205
|
+
* Returns the selection when it still exists, otherwise the first section, or null
|
|
9206
|
+
* when there are none.
|
|
9207
|
+
*/
|
|
9208
|
+
declare function resolveActiveSection(sections: readonly DetailSection[], selected: string | undefined): string | null;
|
|
9209
|
+
|
|
9210
|
+
/**
|
|
9211
|
+
* Detail-page body scaffold — an aside (icon rail + pinned cards) beside a panel
|
|
9212
|
+
* showing the active section.
|
|
9213
|
+
*
|
|
9214
|
+
* The anatomy comes from the Circles signal-detail screen and had been hand-copied
|
|
9215
|
+
* onto every detail page that wanted it, CSS and all. Each copy re-derived the same
|
|
9216
|
+
* four decisions and got a different subset right, so this owns them:
|
|
9217
|
+
*
|
|
9218
|
+
* - **The rail sits at the top of the aside, but AFTER the content in the DOM** —
|
|
9219
|
+
* a screen reader meets the record before its navigation, while sighted readers
|
|
9220
|
+
* get the rail where a sidebar nav belongs. `order` does the visual half.
|
|
9221
|
+
* - **The panel stretches to the grid row** (already `max(aside, panel)`), so a
|
|
9222
|
+
* short section's card ends where the aside ends at every window size. A `vh`
|
|
9223
|
+
* floor cannot do this — it ignores the aside and mismatches at every size.
|
|
9224
|
+
* - **Below 980px the rail becomes a horizontal bar** above the panel rather than
|
|
9225
|
+
* a 300px column squeezing the content.
|
|
9226
|
+
* - **The active tab is a solid accent plate with `--on-accent-fill` ink** — NOT
|
|
9227
|
+
* `--accent` on `--accent-soft`: the shell paints `--accent-soft` as a tint of
|
|
9228
|
+
* `--accent`, so that pairing renders the label in its own background colour.
|
|
9229
|
+
*
|
|
9230
|
+
* It also supplies the tablist a11y both hand-rolled rails were missing: proper
|
|
9231
|
+
* `role="tablist"`/`tab`/`tabpanel` wiring, a roving tabindex, and RTL-aware arrow
|
|
9232
|
+
* keys with Home/End (shared with `fly-tabs` via `nextSegmentIndex`).
|
|
9233
|
+
*
|
|
9234
|
+
* ```html
|
|
9235
|
+
* <fly-detail-shell [sections]="sections()" [(selected)]="section">
|
|
9236
|
+
* <ng-container detail-aside>
|
|
9237
|
+
* <fly-detail-card titleKey="common.label.summary">…</fly-detail-card>
|
|
9238
|
+
* </ng-container>
|
|
9239
|
+
*
|
|
9240
|
+
* @switch (activeSection()) {
|
|
9241
|
+
* @case ('metadata') { <fly-detail-card …/> }
|
|
9242
|
+
* }
|
|
9243
|
+
* </fly-detail-shell>
|
|
9244
|
+
* ```
|
|
9245
|
+
*
|
|
9246
|
+
* The default slot is the panel. Read back the resolved section with the two-way
|
|
9247
|
+
* `selected` — it self-corrects when the bound id names a section that no longer
|
|
9248
|
+
* exists (see {@link resolveActiveSection}).
|
|
9249
|
+
*/
|
|
9250
|
+
declare class FlyDetailShellComponent {
|
|
9251
|
+
private readonly i18n;
|
|
9252
|
+
private readonly uid;
|
|
9253
|
+
private readonly rail;
|
|
9254
|
+
/** The rail's sections, in order. Empty renders the aside + panel with no rail. */
|
|
9255
|
+
readonly sections: _angular_core.InputSignal<readonly DetailSection[]>;
|
|
9256
|
+
/** Active section id (two-way). Unset/unknown resolves to the first section. */
|
|
9257
|
+
readonly selected: _angular_core.ModelSignal<string | undefined>;
|
|
9258
|
+
/** i18n key for the rail's `aria-label`. */
|
|
9259
|
+
readonly sectionsLabelKey: _angular_core.InputSignal<string>;
|
|
9260
|
+
/** The section actually rendered — self-corrects, see {@link resolveActiveSection}. */
|
|
9261
|
+
readonly activeId: _angular_core.Signal<string | null>;
|
|
9262
|
+
tabId(id: string): string;
|
|
9263
|
+
panelId(): string;
|
|
9264
|
+
protected select(id: string): void;
|
|
9265
|
+
protected onKey(event: KeyboardEvent): void;
|
|
9266
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlyDetailShellComponent, never>;
|
|
9267
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlyDetailShellComponent, "fly-detail-shell", never, { "sections": { "alias": "sections"; "required": false; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "sectionsLabelKey": { "alias": "sectionsLabelKey"; "required": false; "isSignal": true; }; }, { "selected": "selectedChange"; }, never, ["[detail-aside]", "*"], true, never>;
|
|
9268
|
+
}
|
|
9269
|
+
|
|
9021
9270
|
/**
|
|
9022
9271
|
* A single destination in the app's module switcher.
|
|
9023
9272
|
*
|
|
@@ -9514,7 +9763,7 @@ declare class FlyFormSectionComponent {
|
|
|
9514
9763
|
* spans the full row.
|
|
9515
9764
|
*/
|
|
9516
9765
|
declare class FlyFormGridComponent {
|
|
9517
|
-
readonly cols: _angular_core.InputSignal<
|
|
9766
|
+
readonly cols: _angular_core.InputSignal<1 | 3 | 2 | "auto">;
|
|
9518
9767
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlyFormGridComponent, never>;
|
|
9519
9768
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlyFormGridComponent, "fly-form-grid", never, { "cols": { "alias": "cols"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
9520
9769
|
}
|
|
@@ -9832,6 +10081,6 @@ declare const AUDIENCE_ERROR_CODES: {
|
|
|
9832
10081
|
};
|
|
9833
10082
|
type AudienceErrorCode = (typeof AUDIENCE_ERROR_CODES)[keyof typeof AUDIENCE_ERROR_CODES];
|
|
9834
10083
|
|
|
9835
|
-
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_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, 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, 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, FlyWindowHelpService, FlyWindowTitleService, FlyosPendingLaunchesGlobalKey, FlyosShellHandlesLaunchRequestsGlobalKey, FlyosShellOwnsHistoryGlobalKey, GANTT_ZOOMS, I18nService, LAUNCH_CONTEXT, MessageBoxButtons, MessageBoxComponent, MessageBoxIcon, MessageBoxService, MockAuthService, OverlayStack, 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, isAccentColor, isChunkLoadError, isFlyAuthStorePopulated, isNativeFederationCacheError, isRtlLocale, isRtlLocaleEntry, isValidCron, isValidSingleField, loadRemoteStyles, matchFlyRoutePattern, nextEnabledIndex, nextModuleIndex, nextSegmentIndex, nextSort, normalizeFlyTheme, normalizeRoles, overlayStack, parseCron, parseStepUpChallenge, parseTags, printConsoleSecurityWarning, provideFlyChunkReloadRecovery, provideFlyEmojiPack, provideFlyStandaloneAuth, reloadOnceForChunkError, requestAppLaunch, resolveActiveModule, resolveActiveTab, resolveCellValue, resolveStateIcon, resolveStateMessageKey, restoreFocus, sameTags, sliderTrackGradient, sparklinePath, sparklinePoints, stepUpInterceptor, stepUpReturnKey, trimAgentPayload, trimAgentString, unloadRemoteStyles, utf8ByteLength, validateAgentPayload, warnIfEmbeddedSessionMissing };
|
|
9836
|
-
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, DialogResultWithAcknowledgement, EmbeddedSessionProbe, EntityLinkSelection, FilterGroup, FlyAchievementRow, 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, 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 };
|
|
10084
|
+
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_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, 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, 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, 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, sliderTrackGradient, sparklinePath, sparklinePoints, stepUpInterceptor, stepUpReturnKey, trimAgentPayload, trimAgentString, unloadRemoteStyles, utf8ByteLength, validateAgentPayload, warnIfEmbeddedSessionMissing };
|
|
10085
|
+
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, 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, 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 };
|
|
9837
10086
|
//# sourceMappingURL=flyos-design-system.d.ts.map
|