@flyos/design-system 3.1.0 → 3.3.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.
|
@@ -6210,28 +6210,70 @@ interface GanttRow {
|
|
|
6210
6210
|
kind?: GanttRowKind;
|
|
6211
6211
|
/** Parent row id for tree nesting. Unknown/self/cyclic parents are treated as roots. */
|
|
6212
6212
|
parentId?: string | null;
|
|
6213
|
-
/** Optional CSS color (token or literal) for the bar / diamond. */
|
|
6213
|
+
/** Optional CSS color (token or literal) for the bar / diamond / group bracket. */
|
|
6214
6214
|
color?: string;
|
|
6215
|
+
/**
|
|
6216
|
+
* Optional CSS color tinting the whole row **band** — the label-pane row and the matching
|
|
6217
|
+
* time-grid lane — so a colour-coded milestone and the tasks beneath it read as one block.
|
|
6218
|
+
*
|
|
6219
|
+
* The chart deliberately renders this at a fixed low alpha (see `GANTT_ROW_TINT_ALPHA`)
|
|
6220
|
+
* rather than honouring the colour at full strength: the band sits *behind* the bars and the
|
|
6221
|
+
* row label, so a consumer can hand over a saturated brand hex without having to pre-compute
|
|
6222
|
+
* a pastel that stays readable in both the light and the dark theme.
|
|
6223
|
+
*/
|
|
6224
|
+
backgroundColor?: string;
|
|
6215
6225
|
/** When true this row cannot be dragged/resized/linked even if the chart is editable. */
|
|
6216
6226
|
readonly?: boolean;
|
|
6217
6227
|
}
|
|
6218
|
-
/**
|
|
6228
|
+
/**
|
|
6229
|
+
* The four MS-Project relationship kinds, named `<predecessor endpoint><successor endpoint>`:
|
|
6230
|
+
*
|
|
6231
|
+
* - `FS` **finish-to-start** (the default) — the successor starts after the predecessor finishes.
|
|
6232
|
+
* - `SS` **start-to-start** — the two start together.
|
|
6233
|
+
* - `FF` **finish-to-finish** — the two finish together.
|
|
6234
|
+
* - `SF` **start-to-finish** — the successor finishes after the predecessor starts (rare).
|
|
6235
|
+
*
|
|
6236
|
+
* The chart draws each kind from/to the correct bar edge and routes the elbow accordingly; it
|
|
6237
|
+
* does **not** reschedule anything. Lag/lead is deliberately absent — with no auto-scheduling
|
|
6238
|
+
* engine behind the chart a lag value would be drawn but would move no dates.
|
|
6239
|
+
*/
|
|
6240
|
+
type GanttDependencyType = 'FS' | 'SS' | 'FF' | 'SF';
|
|
6241
|
+
/** Immutable list of the supported relationship kinds, `FS` first. */
|
|
6242
|
+
declare const GANTT_DEPENDENCY_TYPES: readonly GanttDependencyType[];
|
|
6243
|
+
/** A dependency edge from one row to another. Omitted `type` means `FS`. */
|
|
6219
6244
|
interface GanttDependency {
|
|
6220
6245
|
fromId: string;
|
|
6221
6246
|
toId: string;
|
|
6222
|
-
/**
|
|
6223
|
-
type?:
|
|
6247
|
+
/** Relationship kind; defaults to `FS` when absent. */
|
|
6248
|
+
type?: GanttDependencyType;
|
|
6224
6249
|
}
|
|
6250
|
+
/**
|
|
6251
|
+
* Alpha the chart paints {@link GanttRow.backgroundColor} at. Deliberately low and fixed: the
|
|
6252
|
+
* tint is a *band behind* the bars and the row label, so a consumer can pass a saturated brand
|
|
6253
|
+
* colour without pre-computing a pastel that survives both themes.
|
|
6254
|
+
*/
|
|
6255
|
+
declare const GANTT_ROW_TINT_ALPHA = 0.16;
|
|
6225
6256
|
/** Payload of {@link FlyGanttComponent.rowDatesChange}. Dates are ISO `YYYY-MM-DD`. */
|
|
6226
6257
|
interface GanttRowDatesChange {
|
|
6227
6258
|
id: string;
|
|
6228
6259
|
start: string;
|
|
6229
6260
|
end: string;
|
|
6230
6261
|
}
|
|
6231
|
-
/**
|
|
6262
|
+
/**
|
|
6263
|
+
* Payload of {@link FlyGanttComponent.dependencyCreate}. `type` is derived from which edge the
|
|
6264
|
+
* gesture started on and which edge of the target row it was dropped nearest to, so all four
|
|
6265
|
+
* relationship kinds are drawable with one drag.
|
|
6266
|
+
*/
|
|
6232
6267
|
interface GanttDependencyCreate {
|
|
6233
6268
|
fromId: string;
|
|
6234
6269
|
toId: string;
|
|
6270
|
+
type: GanttDependencyType;
|
|
6271
|
+
}
|
|
6272
|
+
/** Payload of {@link FlyGanttComponent.dependencyDelete} — the edge the user removed. */
|
|
6273
|
+
interface GanttDependencyDelete {
|
|
6274
|
+
fromId: string;
|
|
6275
|
+
toId: string;
|
|
6276
|
+
type: GanttDependencyType;
|
|
6235
6277
|
}
|
|
6236
6278
|
|
|
6237
6279
|
/**
|
|
@@ -6272,6 +6314,8 @@ interface GanttTick {
|
|
|
6272
6314
|
}
|
|
6273
6315
|
|
|
6274
6316
|
type RowShape = 'bar' | 'milestone' | 'group' | 'empty';
|
|
6317
|
+
/** Which end of a bar a link gesture grabbed / was dropped on. */
|
|
6318
|
+
type LinkAnchor = 'start' | 'finish';
|
|
6275
6319
|
/** One fully-resolved, render-space row ready for the template. */
|
|
6276
6320
|
interface GanttRowVm {
|
|
6277
6321
|
flat: GanttFlatRow;
|
|
@@ -6289,12 +6333,21 @@ interface GanttRowVm {
|
|
|
6289
6333
|
startX: number;
|
|
6290
6334
|
endX: number;
|
|
6291
6335
|
color: string | null;
|
|
6336
|
+
/** Row-band tint, already resolved to a low-alpha CSS colour (or `null` when untinted). */
|
|
6337
|
+
tint: string | null;
|
|
6292
6338
|
ariaLabel: string;
|
|
6293
6339
|
editable: boolean;
|
|
6294
6340
|
}
|
|
6295
6341
|
interface LinkVm {
|
|
6296
6342
|
key: string;
|
|
6343
|
+
fromId: string;
|
|
6344
|
+
toId: string;
|
|
6345
|
+
type: GanttDependencyType;
|
|
6297
6346
|
path: string;
|
|
6347
|
+
/** Anchor for the delete affordance shown while the link is selected (render space). */
|
|
6348
|
+
badgeX: number;
|
|
6349
|
+
badgeY: number;
|
|
6350
|
+
ariaLabel: string;
|
|
6298
6351
|
}
|
|
6299
6352
|
/**
|
|
6300
6353
|
* **`fly-gantt`** — the design-system SVG Gantt chart.
|
|
@@ -6302,9 +6355,10 @@ interface LinkVm {
|
|
|
6302
6355
|
* A reusable, **data-contract-driven** timeline: feed it {@link GanttRow}[] + optional
|
|
6303
6356
|
* {@link GanttDependency}[] and it renders a two-pane chart — an indented, collapsible label
|
|
6304
6357
|
* tree on the inline-start side and a scrolling time grid (header ticks, weekend shading, a
|
|
6305
|
-
* today line, task bars with progress fill, milestone diamonds
|
|
6306
|
-
* arrows) on the other.
|
|
6307
|
-
*
|
|
6358
|
+
* today line, task bars with progress fill, milestone diamonds, optional per-row colour bands
|
|
6359
|
+
* and MS-Project-style dependency arrows) on the other. The pane divider is draggable, pointer
|
|
6360
|
+
* drag moves/resizes bars and draws new dependencies, and the keyboard moves the selection,
|
|
6361
|
+
* nudges dates and removes the selected link. **It never persists** — every mutation is an
|
|
6308
6362
|
* output event the consumer acts on.
|
|
6309
6363
|
*
|
|
6310
6364
|
* Rendered on plain inline SVG (no third-party charting lib, no CDN asset). All geometry is
|
|
@@ -6313,8 +6367,10 @@ interface LinkVm {
|
|
|
6313
6367
|
*
|
|
6314
6368
|
* Self-sufficient i18n: every user-visible string comes from the `gantt.*` keys in
|
|
6315
6369
|
* `DS_BASELINE_LOCALES` (en/ar/fr/ur), overridable by any consumer key of the same name.
|
|
6316
|
-
* Styling
|
|
6317
|
-
*
|
|
6370
|
+
* Styling reads the **app-content** token family (`--bg-2`, `--bg-3`, `--line-3`, `--ink`,
|
|
6371
|
+
* `--accent`, …) that dresses `fly-data-table` and the rest of the app-surface kit, so a Gantt
|
|
6372
|
+
* placed among those controls matches them; the shell-chrome family (`--surface-card`, …) and
|
|
6373
|
+
* then a light-neutral literal are chained as fallbacks for consumers that map neither.
|
|
6318
6374
|
*
|
|
6319
6375
|
* **Scale limit:** renders up to `maxRows` (default 500) visible rows; beyond that the list is
|
|
6320
6376
|
* capped and a footer notes the overflow. Heavy windowing/virtualization is intentionally
|
|
@@ -6330,31 +6386,49 @@ declare class FlyGanttComponent {
|
|
|
6330
6386
|
readonly showToday: _angular_core.InputSignal<boolean>;
|
|
6331
6387
|
/** Globally disable drag/resize/link (individual rows can also be `readonly`). */
|
|
6332
6388
|
readonly readonly: _angular_core.InputSignal<boolean>;
|
|
6333
|
-
/**
|
|
6389
|
+
/**
|
|
6390
|
+
* Inline-start label-pane width in px — the **initial** width. The user can drag the pane
|
|
6391
|
+
* divider from there; once they have, this input only re-seeds the pane if
|
|
6392
|
+
* {@link resetLabelWidth} is called (double-clicking the divider does exactly that).
|
|
6393
|
+
*/
|
|
6334
6394
|
readonly labelWidth: _angular_core.InputSignal<number>;
|
|
6395
|
+
/** Let the user drag the divider between the label pane and the time grid. */
|
|
6396
|
+
readonly resizableLabels: _angular_core.InputSignal<boolean>;
|
|
6335
6397
|
/** Row band height in px. */
|
|
6336
6398
|
readonly rowHeight: _angular_core.InputSignal<number>;
|
|
6337
6399
|
/** Hard cap on rendered rows; beyond it the list is truncated (see class doc). */
|
|
6338
6400
|
readonly maxRows: _angular_core.InputSignal<number>;
|
|
6339
6401
|
/** Fires on a committed bar move / resize with the new ISO `start`/`end`. */
|
|
6340
6402
|
readonly rowDatesChange: _angular_core.OutputEmitterRef<GanttRowDatesChange>;
|
|
6341
|
-
/**
|
|
6403
|
+
/**
|
|
6404
|
+
* Fires when the user drags a link between two rows. `type` is derived from the edge the drag
|
|
6405
|
+
* started on and the edge of the target row it was dropped nearest to.
|
|
6406
|
+
*/
|
|
6342
6407
|
readonly dependencyCreate: _angular_core.OutputEmitterRef<GanttDependencyCreate>;
|
|
6408
|
+
/** Fires when the user removes the selected dependency arrow (badge click or Delete). */
|
|
6409
|
+
readonly dependencyDelete: _angular_core.OutputEmitterRef<GanttDependencyDelete>;
|
|
6343
6410
|
readonly rowClick: _angular_core.OutputEmitterRef<string>;
|
|
6344
6411
|
readonly rowDblClick: _angular_core.OutputEmitterRef<string>;
|
|
6412
|
+
/** Fires once per committed divider drag / keyboard resize with the new pane width in px. */
|
|
6413
|
+
readonly labelWidthChange: _angular_core.OutputEmitterRef<number>;
|
|
6345
6414
|
private readonly _uid;
|
|
6346
6415
|
readonly markerId: string;
|
|
6347
6416
|
readonly HEADER_H: number;
|
|
6348
6417
|
readonly HEADER_UPPER_H = 22;
|
|
6349
6418
|
readonly HEADER_LOWER_H = 22;
|
|
6350
6419
|
readonly HANDLE_W = 8;
|
|
6420
|
+
readonly MIN_LABEL_W = 140;
|
|
6421
|
+
readonly MAX_LABEL_W = 720;
|
|
6351
6422
|
readonly selectedId: _angular_core.WritableSignal<string | null>;
|
|
6423
|
+
/** Key (`from~to~type`) of the dependency arrow the user has selected, if any. */
|
|
6424
|
+
readonly selectedLinkKey: _angular_core.WritableSignal<string | null>;
|
|
6352
6425
|
private readonly _collapsed;
|
|
6353
6426
|
/** Live drag preview `{id,start,end}` folded into geometry while a gesture runs. */
|
|
6354
6427
|
private readonly _dragPreview;
|
|
6355
|
-
/** Rubber-band link gesture render-space anchor + cursor, and its origin row. */
|
|
6428
|
+
/** Rubber-band link gesture render-space anchor + cursor, and its origin row + edge. */
|
|
6356
6429
|
readonly linkGesture: _angular_core.WritableSignal<{
|
|
6357
6430
|
fromId: string;
|
|
6431
|
+
anchor: LinkAnchor;
|
|
6358
6432
|
x0: number;
|
|
6359
6433
|
y0: number;
|
|
6360
6434
|
x1: number;
|
|
@@ -6365,11 +6439,17 @@ declare class FlyGanttComponent {
|
|
|
6365
6439
|
y: number;
|
|
6366
6440
|
text: string;
|
|
6367
6441
|
} | null>;
|
|
6442
|
+
/** True while a divider drag is in flight (suppresses text selection host-wide). */
|
|
6443
|
+
readonly resizingLabels: _angular_core.WritableSignal<boolean>;
|
|
6444
|
+
/** User-chosen pane width; `null` = still following the {@link labelWidth} input. */
|
|
6445
|
+
private readonly _labelWidthOverride;
|
|
6368
6446
|
private readonly bodyRef;
|
|
6369
6447
|
readonly rtl: _angular_core.Signal<boolean>;
|
|
6370
6448
|
readonly pxPerDay: _angular_core.Signal<number>;
|
|
6371
6449
|
readonly domain: _angular_core.Signal<GanttDomain>;
|
|
6372
6450
|
readonly innerWidth: _angular_core.Signal<number>;
|
|
6451
|
+
/** Label-pane width actually rendered — the user's dragged width, else the input. */
|
|
6452
|
+
readonly effectiveLabelWidth: _angular_core.Signal<number>;
|
|
6373
6453
|
/** Full visible list after tree flatten/collapse. */
|
|
6374
6454
|
private readonly _flat;
|
|
6375
6455
|
/** Capped list actually rendered. */
|
|
@@ -6383,6 +6463,8 @@ declare class FlyGanttComponent {
|
|
|
6383
6463
|
/** Render-space today x, or `null` when today is outside the domain (or disabled). */
|
|
6384
6464
|
readonly todayX: _angular_core.Signal<number | null>;
|
|
6385
6465
|
readonly rowVms: _angular_core.Signal<GanttRowVm[]>;
|
|
6466
|
+
/** Only the rows carrying a tint, so the band pass does not emit an empty rect per row. */
|
|
6467
|
+
readonly tintedRows: _angular_core.Signal<GanttRowVm[]>;
|
|
6386
6468
|
/** Dependency arrows between currently-rendered rows (missing/collapsed endpoints skipped). */
|
|
6387
6469
|
readonly linkVms: _angular_core.Signal<LinkVm[]>;
|
|
6388
6470
|
readonly barHeight: _angular_core.Signal<number>;
|
|
@@ -6390,10 +6472,32 @@ declare class FlyGanttComponent {
|
|
|
6390
6472
|
private milestoneR;
|
|
6391
6473
|
/** Diamond polygon points for a milestone marker. */
|
|
6392
6474
|
diamondPoints(vm: GanttRowVm): string;
|
|
6475
|
+
/**
|
|
6476
|
+
* Link connector x for a milestone. A diamond has no width, so the connector is nudged clear
|
|
6477
|
+
* of the marker in the forward-in-time direction (which flips under RTL).
|
|
6478
|
+
*/
|
|
6479
|
+
milestoneConnectorX(vm: GanttRowVm): number;
|
|
6393
6480
|
/** Summary-bracket path (thin bar + down-turned end caps) for a group row. */
|
|
6394
6481
|
groupPath(vm: GanttRowVm): string;
|
|
6395
6482
|
/** Inline-start label indent for a tree depth. */
|
|
6396
6483
|
indentFor(depth: number): number;
|
|
6484
|
+
/**
|
|
6485
|
+
* Pointer-drag the divider. Forward-in-time is `+x` LTR and `-x` RTL, and the label pane sits
|
|
6486
|
+
* on the inline-start side in both, so the same sign flip that mirrors the timeline also
|
|
6487
|
+
* mirrors "drag outward = wider".
|
|
6488
|
+
*/
|
|
6489
|
+
onLabelResizePointerDown(ev: PointerEvent): void;
|
|
6490
|
+
/**
|
|
6491
|
+
* Keyboard resize on the focused divider. ArrowRight/Left grow/shrink by the *inline* meaning
|
|
6492
|
+
* of the key, so under RTL the arrow that points away from the pane is still the one that
|
|
6493
|
+
* widens it. `Home`/`End` jump to the bounds, Enter/Escape restore the input width.
|
|
6494
|
+
*
|
|
6495
|
+
* Typed `Event` for the same reason as {@link onLabelRowKeydown}: Angular's strict template
|
|
6496
|
+
* checker types `(keydown)` `$event` as `Event`, so the cast is done here once.
|
|
6497
|
+
*/
|
|
6498
|
+
onLabelResizeKeydown(ev: Event): void;
|
|
6499
|
+
/** Drop the user's dragged width and fall back to the {@link labelWidth} input. */
|
|
6500
|
+
resetLabelWidth(): void;
|
|
6397
6501
|
isCollapsed(id: string): boolean;
|
|
6398
6502
|
toggleCollapse(id: string, ev?: Event): void;
|
|
6399
6503
|
/**
|
|
@@ -6405,23 +6509,52 @@ declare class FlyGanttComponent {
|
|
|
6405
6509
|
onLabelRowKeydown(ev: Event, id: string): void;
|
|
6406
6510
|
onRowClick(id: string): void;
|
|
6407
6511
|
onRowDblClick(id: string): void;
|
|
6512
|
+
onLinkClick(ev: Event, vm: LinkVm): void;
|
|
6513
|
+
deleteLink(ev: Event, vm: LinkVm): void;
|
|
6408
6514
|
onGridKeydown(ev: KeyboardEvent): void;
|
|
6409
6515
|
/** Shift both dates of the selected bar by `deltaDays` and emit (respecting read-only). */
|
|
6410
6516
|
private _nudgeSelected;
|
|
6411
6517
|
onBarPointerDown(ev: PointerEvent, vm: GanttRowVm, mode: 'move' | 'resize-start' | 'resize-end'): void;
|
|
6412
|
-
|
|
6518
|
+
/**
|
|
6519
|
+
* Start a link gesture from one end of a bar. Which end it started on, plus which end of the
|
|
6520
|
+
* target row it is dropped nearest to, is what selects the {@link GanttDependencyType} — so all
|
|
6521
|
+
* four MS-Project relationships are reachable with the same single drag.
|
|
6522
|
+
*/
|
|
6523
|
+
onLinkPointerDown(ev: PointerEvent, vm: GanttRowVm, anchor: LinkAnchor): void;
|
|
6413
6524
|
/** Rubber-band path for an in-flight link gesture (render space). */
|
|
6414
6525
|
readonly linkGesturePath: _angular_core.Signal<string | null>;
|
|
6526
|
+
/**
|
|
6527
|
+
* Resolve a row's `backgroundColor` into the low-alpha band colour actually painted.
|
|
6528
|
+
* `color-mix` does the fade in the consumer's own colour space, so a token, a hex, an
|
|
6529
|
+
* `rgb()` or an `oklch()` all work and none of them need pre-computing per theme.
|
|
6530
|
+
*/
|
|
6531
|
+
private _tintFor;
|
|
6415
6532
|
private _mapTicks;
|
|
6416
|
-
/**
|
|
6417
|
-
|
|
6533
|
+
/**
|
|
6534
|
+
* Route a dependency elbow for any of the four relationship kinds (render space).
|
|
6535
|
+
*
|
|
6536
|
+
* The kind names the two endpoints, so it decides both the anchor x's and the direction the
|
|
6537
|
+
* arrow travels: leaving a *finish* edge moves forward in time, leaving a *start* edge moves
|
|
6538
|
+
* backward; entering a *start* edge approaches from behind, entering a *finish* edge from
|
|
6539
|
+
* ahead. `fwd` folds RTL in, so none of that branches on direction.
|
|
6540
|
+
*
|
|
6541
|
+
* One turn suffices when the entry stub lies ahead of the exit stub in the approach
|
|
6542
|
+
* direction. When it does not — overlapping or reversed bars, which SS/FF/SF hit constantly —
|
|
6543
|
+
* a straight drop would cut back through the bars, so the elbow detours via the gap between
|
|
6544
|
+
* the two rows instead.
|
|
6545
|
+
*/
|
|
6546
|
+
private _route;
|
|
6418
6547
|
/** Convert a pointer event to a coordinate inside the body SVG (render space). */
|
|
6419
6548
|
private _toBodyPoint;
|
|
6420
|
-
/**
|
|
6421
|
-
|
|
6549
|
+
/**
|
|
6550
|
+
* The row a link gesture was dropped on **and which of its ends** the drop landed nearest —
|
|
6551
|
+
* the second half of the type derivation. A milestone has no width, so both of its ends are
|
|
6552
|
+
* the same point and it is reported as `start`, giving the FS/SS pair anyone actually wants.
|
|
6553
|
+
*/
|
|
6554
|
+
private _dropTargetAt;
|
|
6422
6555
|
private _ariaFor;
|
|
6423
6556
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlyGanttComponent, never>;
|
|
6424
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlyGanttComponent, "fly-gantt", never, { "rows": { "alias": "rows"; "required": false; "isSignal": true; }; "dependencies": { "alias": "dependencies"; "required": false; "isSignal": true; }; "zoom": { "alias": "zoom"; "required": false; "isSignal": true; }; "showToday": { "alias": "showToday"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "labelWidth": { "alias": "labelWidth"; "required": false; "isSignal": true; }; "rowHeight": { "alias": "rowHeight"; "required": false; "isSignal": true; }; "maxRows": { "alias": "maxRows"; "required": false; "isSignal": true; }; }, { "rowDatesChange": "rowDatesChange"; "dependencyCreate": "dependencyCreate"; "rowClick": "rowClick"; "rowDblClick": "rowDblClick"; }, never, never, true, never>;
|
|
6557
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlyGanttComponent, "fly-gantt", never, { "rows": { "alias": "rows"; "required": false; "isSignal": true; }; "dependencies": { "alias": "dependencies"; "required": false; "isSignal": true; }; "zoom": { "alias": "zoom"; "required": false; "isSignal": true; }; "showToday": { "alias": "showToday"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "labelWidth": { "alias": "labelWidth"; "required": false; "isSignal": true; }; "resizableLabels": { "alias": "resizableLabels"; "required": false; "isSignal": true; }; "rowHeight": { "alias": "rowHeight"; "required": false; "isSignal": true; }; "maxRows": { "alias": "maxRows"; "required": false; "isSignal": true; }; }, { "rowDatesChange": "rowDatesChange"; "dependencyCreate": "dependencyCreate"; "dependencyDelete": "dependencyDelete"; "rowClick": "rowClick"; "rowDblClick": "rowDblClick"; "labelWidthChange": "labelWidthChange"; }, never, never, true, never>;
|
|
6425
6558
|
}
|
|
6426
6559
|
|
|
6427
6560
|
/** The 14 rendered field kinds. Drives the control the renderer picks. */
|
|
@@ -7738,7 +7871,13 @@ interface MagicBarActionSpec {
|
|
|
7738
7871
|
/** What a publisher supplies for one action. */
|
|
7739
7872
|
interface MagicBarAction extends MagicBarActionSpec {
|
|
7740
7873
|
readonly menu?: MagicBarRadioMenu;
|
|
7741
|
-
|
|
7874
|
+
/**
|
|
7875
|
+
* Invoked on activation. The argument is the DOM element the renderer painted
|
|
7876
|
+
* for this action — see {@link MagicBarActionView.run} for why it is passed and
|
|
7877
|
+
* what a publisher may do with it. Ignore it and this is the zero-argument
|
|
7878
|
+
* handler it has always been.
|
|
7879
|
+
*/
|
|
7880
|
+
readonly onSelect?: (trigger?: HTMLElement) => void;
|
|
7742
7881
|
}
|
|
7743
7882
|
/**
|
|
7744
7883
|
* What the shell renders. `run()` always exists and always dispatches to the
|
|
@@ -7747,7 +7886,43 @@ interface MagicBarAction extends MagicBarActionSpec {
|
|
|
7747
7886
|
*/
|
|
7748
7887
|
interface MagicBarActionView extends MagicBarActionSpec {
|
|
7749
7888
|
readonly menu: MagicBarRadioMenuView | null;
|
|
7750
|
-
|
|
7889
|
+
/**
|
|
7890
|
+
* Fire the publisher's newest handler for this id.
|
|
7891
|
+
*
|
|
7892
|
+
* ## Why it carries the trigger element
|
|
7893
|
+
* An action that opens a POPOVER the publisher owns — the canonical case is a
|
|
7894
|
+
* listing screen's advanced-filter panel — has to position that popover under
|
|
7895
|
+
* the button the user just pressed. The publisher cannot find that button:
|
|
7896
|
+
* embedded, it is painted by `fly-magic-actions` inside the shell's top-bar
|
|
7897
|
+
* pill, in the shell's DOM, several stacking contexts and one federation
|
|
7898
|
+
* boundary away from the remote that published the action. Before this argument
|
|
7899
|
+
* existed, PPM's projects register had to anchor its panel to its own page
|
|
7900
|
+
* header instead, which put the panel in the middle of the window while the
|
|
7901
|
+
* button that opened it sat in the chrome above — an affordance with no visible
|
|
7902
|
+
* relationship to its own trigger.
|
|
7903
|
+
*
|
|
7904
|
+
* Passing the element rather than modelling the popover is deliberate. The
|
|
7905
|
+
* panel's CONTENT is app schema (see {@link MagicBarSearch.onOpenFilters} for
|
|
7906
|
+
* the same ruling), so it must stay in the publisher's own DOM and injection
|
|
7907
|
+
* context; only its POSITION is chrome-relative. An element reference crosses
|
|
7908
|
+
* the federation boundary without any of the coupling a descriptor would need —
|
|
7909
|
+
* a DOM node is a DOM node in every bundle. `fly-filter-panel`'s `[anchorEl]`
|
|
7910
|
+
* is the intended consumer.
|
|
7911
|
+
*
|
|
7912
|
+
* ## What a publisher must not assume
|
|
7913
|
+
* The element is the trigger AS PAINTED RIGHT NOW. It is valid for the duration
|
|
7914
|
+
* of the popover, not beyond: a re-publish that drops this action id destroys it
|
|
7915
|
+
* (`@for (…; track action.id)`), and a mode switch repaints it in a different
|
|
7916
|
+
* chrome entirely. Hold it in a signal the popover's open-state clears, never in
|
|
7917
|
+
* long-lived state, and never mutate it.
|
|
7918
|
+
*
|
|
7919
|
+
* It is OPTIONAL because not every renderer has one to give — a keyboard-driven
|
|
7920
|
+
* invocation, a synthetic call in a test, an inline composer that paints no
|
|
7921
|
+
* button. A publisher that receives `undefined` must still work: for a popover
|
|
7922
|
+
* that means falling back to its own in-page anchoring, which is exactly what
|
|
7923
|
+
* `fly-filter-panel` does when `[anchorEl]` is null.
|
|
7924
|
+
*/
|
|
7925
|
+
run(trigger?: HTMLElement): void;
|
|
7751
7926
|
}
|
|
7752
7927
|
/** Render surface of a group — the dedupe key for {@link MagicBarGroup}. */
|
|
7753
7928
|
interface MagicBarGroupSpec {
|
|
@@ -7849,7 +8024,7 @@ interface MagicBarSearch extends MagicBarSearchSpec {
|
|
|
7849
8024
|
* a descriptor for them would be business logic the design system cannot
|
|
7850
8025
|
* validate or render honestly.
|
|
7851
8026
|
*/
|
|
7852
|
-
readonly onOpenFilters?: () => void;
|
|
8027
|
+
readonly onOpenFilters?: (trigger?: HTMLElement) => void;
|
|
7853
8028
|
}
|
|
7854
8029
|
interface MagicBarSearchView extends MagicBarSearchSpec {
|
|
7855
8030
|
/** True iff the publisher can open an advanced-search overlay. */
|
|
@@ -7861,7 +8036,13 @@ interface MagicBarSearchView extends MagicBarSearchSpec {
|
|
|
7861
8036
|
* this member shipped first, and renaming it would be a ds-compat MAJOR.
|
|
7862
8037
|
*/
|
|
7863
8038
|
query(text: string): void;
|
|
7864
|
-
|
|
8039
|
+
/**
|
|
8040
|
+
* Open the publisher's advanced-search overlay. Carries the Filters button the
|
|
8041
|
+
* shell painted, for the same reason and under the same caveats as
|
|
8042
|
+
* {@link MagicBarActionView.run} — a publisher whose overlay is a popover
|
|
8043
|
+
* anchors it there instead of guessing at a position inside its own page.
|
|
8044
|
+
*/
|
|
8045
|
+
openFilters(trigger?: HTMLElement): void;
|
|
7865
8046
|
}
|
|
7866
8047
|
/**
|
|
7867
8048
|
* One view's complete claim on the magic bar.
|
|
@@ -10207,11 +10388,29 @@ declare class FlyClickOutsideDirective {
|
|
|
10207
10388
|
* Defaults to always-on for an always-mounted consumer.
|
|
10208
10389
|
*/
|
|
10209
10390
|
readonly enabled: _angular_core.InputSignal<boolean>;
|
|
10391
|
+
/**
|
|
10392
|
+
* Extra element(s) that count as INSIDE even though they are not in the host —
|
|
10393
|
+
* the escape hatch for a popover whose TRIGGER cannot be wrapped by the host.
|
|
10394
|
+
*
|
|
10395
|
+
* The docblock's canonical shape puts the host around trigger and panel both, and
|
|
10396
|
+
* that is still the right answer whenever it is available. It is not always: a
|
|
10397
|
+
* panel anchored to a control in the desktop shell's chrome (a magic-bar filter
|
|
10398
|
+
* toggle) has its trigger in another component, another stacking context and
|
|
10399
|
+
* another bundle. Left unlisted, the trigger reads as outside, and because this
|
|
10400
|
+
* directive fires on `pointerdown` — strictly BEFORE the trigger's own `click` —
|
|
10401
|
+
* pressing an open panel's own toggle dismisses it and the toggle then reopens it.
|
|
10402
|
+
* The panel appears not to close at all, which reads as this directive being
|
|
10403
|
+
* broken rather than as an ordering problem.
|
|
10404
|
+
*
|
|
10405
|
+
* A single element or an array; `null`/empty (the default) keeps the host-only
|
|
10406
|
+
* behaviour byte-for-byte.
|
|
10407
|
+
*/
|
|
10408
|
+
readonly ignore: _angular_core.InputSignal<HTMLElement | readonly (HTMLElement | null)[] | null>;
|
|
10210
10409
|
/** Emitted once when a pointer press lands outside the host while enabled. */
|
|
10211
10410
|
readonly flyClickOutside: _angular_core.OutputEmitterRef<void>;
|
|
10212
10411
|
protected onDocumentPointerDown(event: Event): void;
|
|
10213
10412
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlyClickOutsideDirective, never>;
|
|
10214
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<FlyClickOutsideDirective, "[flyClickOutside]", never, { "enabled": { "alias": "flyClickOutsideEnabled"; "required": false; "isSignal": true; }; }, { "flyClickOutside": "flyClickOutside"; }, never, never, true, never>;
|
|
10413
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<FlyClickOutsideDirective, "[flyClickOutside]", never, { "enabled": { "alias": "flyClickOutsideEnabled"; "required": false; "isSignal": true; }; "ignore": { "alias": "flyClickOutsideIgnore"; "required": false; "isSignal": true; }; }, { "flyClickOutside": "flyClickOutside"; }, never, never, true, never>;
|
|
10215
10414
|
}
|
|
10216
10415
|
|
|
10217
10416
|
/**
|
|
@@ -11559,6 +11758,18 @@ declare class FlyCardActionsComponent {
|
|
|
11559
11758
|
* - Deferred pages set `showSearchButton` true, drop the per-field handlers,
|
|
11560
11759
|
* and commit staged criteria on `(search)`.
|
|
11561
11760
|
*
|
|
11761
|
+
* ## Three placements, and how to pick one
|
|
11762
|
+
* - **In flow** (neither `anchored` nor `anchorEl`) — a block in the page. Opening
|
|
11763
|
+
* it pushes the content below it down. Only right for a page whose filters are
|
|
11764
|
+
* part of its permanent furniture.
|
|
11765
|
+
* - **`[anchored]`** — a dropdown pinned to the trailing edge of a `position:
|
|
11766
|
+
* relative` ancestor the page supplies (the wrapper around its search box).
|
|
11767
|
+
* - **`[anchorEl]`** — a dropdown pinned to a specific ELEMENT anywhere on screen,
|
|
11768
|
+
* including one outside this component's own DOM subtree. See {@link anchorEl}.
|
|
11769
|
+
*
|
|
11770
|
+
* `anchorEl` wins when both are set, so a page can bind it optionally and fall
|
|
11771
|
+
* back to `anchored` in whichever mode has no element to offer.
|
|
11772
|
+
*
|
|
11562
11773
|
* Matching the source, the panel renders nothing while `open` is false.
|
|
11563
11774
|
*/
|
|
11564
11775
|
declare class FlyFilterPanelComponent {
|
|
@@ -11577,19 +11788,100 @@ declare class FlyFilterPanelComponent {
|
|
|
11577
11788
|
* `[expandable]`.
|
|
11578
11789
|
*/
|
|
11579
11790
|
readonly anchored: _angular_core.InputSignal<boolean>;
|
|
11791
|
+
/**
|
|
11792
|
+
* The element this panel hangs off — a dropdown pinned under a specific trigger
|
|
11793
|
+
* rather than under whichever ancestor happens to be positioned.
|
|
11794
|
+
*
|
|
11795
|
+
* ## The case it exists for
|
|
11796
|
+
* A listing screen's filter toggle does not necessarily live in the screen.
|
|
11797
|
+
* Embedded in the desktop shell, the toggle is a magic-bar action painted by
|
|
11798
|
+
* `fly-magic-actions` in the top-bar pill — the shell's DOM, above the window,
|
|
11799
|
+
* across a federation boundary. `[anchored]` cannot reach it: it pins to a
|
|
11800
|
+
* positioned ancestor, and the nearest one is inside the app's own page header.
|
|
11801
|
+
* PPM's projects register shipped exactly that way, and the result was a panel
|
|
11802
|
+
* floating mid-window while the button that opened it sat in the chrome above,
|
|
11803
|
+
* with nothing tying the two together. `MagicBarActionView.run(trigger)` hands
|
|
11804
|
+
* the publisher that button; binding it here is the other half.
|
|
11805
|
+
*
|
|
11806
|
+
* ## What changes when it is set
|
|
11807
|
+
* The host is **portalled to `<body>`** and switched to `position: fixed`. Both
|
|
11808
|
+
* are forced rather than chosen: a shell window establishes a containing block
|
|
11809
|
+
* (`transform` / `backdrop-filter`) and clips its content box, so a panel left in
|
|
11810
|
+
* the app's subtree resolves `fixed` against the window instead of the viewport
|
|
11811
|
+
* AND is clipped at the window's top edge — which is exactly where a panel
|
|
11812
|
+
* hanging off the chrome above it needs to paint. Placement is then measured from
|
|
11813
|
+
* the anchor's rect on every open, resize and scroll, mirrored under RTL, and
|
|
11814
|
+
* clamped so a trigger near a viewport edge still opens fully on screen.
|
|
11815
|
+
*
|
|
11816
|
+
* ## Lifetime
|
|
11817
|
+
* `null` (the default) restores the in-flow/`anchored` behaviour, and the host
|
|
11818
|
+
* returns to where it was declared. Bind it to a signal your open-state clears —
|
|
11819
|
+
* the element the magic bar hands you is the button AS PAINTED, and a re-publish
|
|
11820
|
+
* or a mode switch destroys it.
|
|
11821
|
+
*/
|
|
11822
|
+
readonly anchorEl: _angular_core.InputSignal<HTMLElement | null>;
|
|
11580
11823
|
/** Clear-filters pressed — the page resets its own filter state. */
|
|
11581
11824
|
readonly cleared: _angular_core.OutputEmitterRef<void>;
|
|
11582
|
-
/** Close (×) pressed — the page flips its open flag. */
|
|
11825
|
+
/** Close (×) pressed, or a dismissing press outside — the page flips its open flag. */
|
|
11583
11826
|
readonly closed: _angular_core.OutputEmitterRef<void>;
|
|
11584
11827
|
/** Search pressed — deferred pages commit staged criteria and query. */
|
|
11585
11828
|
readonly searched: _angular_core.OutputEmitterRef<void>;
|
|
11586
11829
|
/** Whether the `[filter-more]` advanced fields are revealed. */
|
|
11587
11830
|
protected readonly showMore: _angular_core.WritableSignal<boolean>;
|
|
11831
|
+
/** True while the panel is a `<body>`-portalled, anchor-positioned dropdown. */
|
|
11832
|
+
protected readonly floating: _angular_core.Signal<boolean>;
|
|
11833
|
+
/**
|
|
11834
|
+
* Whether a press outside the panel should dismiss it.
|
|
11835
|
+
*
|
|
11836
|
+
* Only while the panel FLOATS over the page. In flow it is a block OF the page,
|
|
11837
|
+
* and closing it because the user clicked the table it filters would discard
|
|
11838
|
+
* staged criteria on an unrelated interaction. Floating, the opposite holds: an
|
|
11839
|
+
* overlay that survives a click elsewhere is the "panel will not collapse on
|
|
11840
|
+
* click-away" bug.
|
|
11841
|
+
*/
|
|
11842
|
+
protected readonly dismissable: _angular_core.Signal<boolean>;
|
|
11588
11843
|
private readonly _host;
|
|
11844
|
+
private readonly _doc;
|
|
11589
11845
|
private readonly _destroyRef;
|
|
11590
11846
|
private _clipObserver;
|
|
11591
11847
|
private _placeRaf;
|
|
11848
|
+
/** Marks where the host was declared, so un-portalling puts it back exactly. */
|
|
11849
|
+
private _portalHome;
|
|
11850
|
+
private _floatTeardown;
|
|
11592
11851
|
constructor();
|
|
11852
|
+
/**
|
|
11853
|
+
* Move the host to `<body>`, leaving a comment node where it was declared.
|
|
11854
|
+
*
|
|
11855
|
+
* The comment is what makes this reversible. Angular keeps rendering into the
|
|
11856
|
+
* host wherever it sits — relocating a DOM node does not detach a view — but the
|
|
11857
|
+
* component cannot ask the DOM "where were you?" after the fact, and the original
|
|
11858
|
+
* parent may itself be torn down while the panel is open. Un-portalling therefore
|
|
11859
|
+
* re-inserts before the marker while the marker is still attached, and simply
|
|
11860
|
+
* leaves the host where it is otherwise.
|
|
11861
|
+
*/
|
|
11862
|
+
private _portal;
|
|
11863
|
+
private _unportal;
|
|
11864
|
+
/**
|
|
11865
|
+
* Pin the panel under {@link anchorEl}: {@link ANCHOR_GAP} below its bottom edge,
|
|
11866
|
+
* its trailing edge overhanging the anchor's by {@link ANCHOR_OVERHANG}, clamped
|
|
11867
|
+
* into the viewport on both axes.
|
|
11868
|
+
*
|
|
11869
|
+
* Trailing edge, not "right": the anchor's OWN computed direction decides which
|
|
11870
|
+
* physical side that is, so the panel opens inward from the trigger under both LTR
|
|
11871
|
+
* and RTL with nothing passed by the caller. The final clamp is in physical pixels
|
|
11872
|
+
* and therefore direction-agnostic — a trigger 30px from the viewport edge yields
|
|
11873
|
+
* the same on-screen result either way.
|
|
11874
|
+
*/
|
|
11875
|
+
private _placeFloating;
|
|
11876
|
+
/**
|
|
11877
|
+
* Re-place on anything that can move the anchor under an already-open panel: the
|
|
11878
|
+
* viewport resizing, the shell window being dragged or resized (which moves or
|
|
11879
|
+
* resizes the anchor's own box), and scrolling ANYWHERE — captured, because the
|
|
11880
|
+
* anchor lives in the chrome and the scroller that shifts it is not necessarily an
|
|
11881
|
+
* ancestor of this host, which is now in `<body>`.
|
|
11882
|
+
*/
|
|
11883
|
+
private _observeFloating;
|
|
11884
|
+
private _teardownFloating;
|
|
11593
11885
|
private _place;
|
|
11594
11886
|
/** Nearest ancestor that clips/scrolls horizontally — the shell window's
|
|
11595
11887
|
* content area when hosted, a page scroller when standalone, else null
|
|
@@ -11598,7 +11890,7 @@ declare class FlyFilterPanelComponent {
|
|
|
11598
11890
|
private _observeClipAncestor;
|
|
11599
11891
|
private _teardownPlacement;
|
|
11600
11892
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlyFilterPanelComponent, never>;
|
|
11601
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlyFilterPanelComponent, "fly-filter-panel", never, { "open": { "alias": "open"; "required": true; "isSignal": true; }; "titleKey": { "alias": "titleKey"; "required": false; "isSignal": true; }; "layout": { "alias": "layout"; "required": false; "isSignal": true; }; "hasMore": { "alias": "hasMore"; "required": false; "isSignal": true; }; "showSearchButton": { "alias": "showSearchButton"; "required": false; "isSignal": true; }; "anchored": { "alias": "anchored"; "required": false; "isSignal": true; }; }, { "cleared": "cleared"; "closed": "closed"; "searched": "searched"; }, never, ["[filter-status]", "*", "[filter-more]"], true, never>;
|
|
11893
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlyFilterPanelComponent, "fly-filter-panel", never, { "open": { "alias": "open"; "required": true; "isSignal": true; }; "titleKey": { "alias": "titleKey"; "required": false; "isSignal": true; }; "layout": { "alias": "layout"; "required": false; "isSignal": true; }; "hasMore": { "alias": "hasMore"; "required": false; "isSignal": true; }; "showSearchButton": { "alias": "showSearchButton"; "required": false; "isSignal": true; }; "anchored": { "alias": "anchored"; "required": false; "isSignal": true; }; "anchorEl": { "alias": "anchorEl"; "required": false; "isSignal": true; }; }, { "cleared": "cleared"; "closed": "closed"; "searched": "searched"; }, never, ["[filter-status]", "*", "[filter-more]"], true, never>;
|
|
11602
11894
|
}
|
|
11603
11895
|
|
|
11604
11896
|
interface FlyCellContext {
|
|
@@ -12488,13 +12780,39 @@ interface SegmentedOption {
|
|
|
12488
12780
|
declare function nextSegmentIndex(current: number, key: string, length: number, rtl: boolean): number | null;
|
|
12489
12781
|
|
|
12490
12782
|
/**
|
|
12491
|
-
*
|
|
12492
|
-
*
|
|
12493
|
-
*
|
|
12783
|
+
* Visual anatomy. `'track'` (default) is the enclosed pill-in-a-groove control —
|
|
12784
|
+
* the detail-tabs recipe (D2 §1.3). `'pills'` is the canon Filters dialog's status
|
|
12785
|
+
* row (`Home.dc.html`, `role="radiogroup"` under the "Status" eyebrow): freestanding
|
|
12786
|
+
* bordered pills that wrap, with the selection filled in `--accent`.
|
|
12787
|
+
*
|
|
12788
|
+
* They are one component because they are one control — same option list, same
|
|
12789
|
+
* selection model, same keyboard behaviour — differing only in whether the group
|
|
12790
|
+
* paints a container around itself. They are not one STYLE because the track's
|
|
12791
|
+
* `--w14` selection reads as a tab among tabs, which is right inside a groove and
|
|
12792
|
+
* wrong for a filter row where the pills sit directly on a panel plate.
|
|
12793
|
+
*/
|
|
12794
|
+
type SegmentedVariant = 'track' | 'pills';
|
|
12795
|
+
/**
|
|
12796
|
+
* Segmented control — one anatomy for form segmented controls (the llm-throttle
|
|
12797
|
+
* level picker), list status-pill filters (the legacy `.signals-page-statusfilter`,
|
|
12798
|
+
* which is also the visual source), and the canon filter-panel status row.
|
|
12799
|
+
*
|
|
12800
|
+
* ## Two selection models
|
|
12801
|
+
* Single-select (default) is a `role="radiogroup"` over `role="radio"` segments,
|
|
12802
|
+
* driven by {@link value}. Multi-select ({@link multiple}) is a `role="group"` of
|
|
12803
|
+
* `aria-pressed` toggle buttons, driven by {@link values}. Both are here rather than
|
|
12804
|
+
* split across two components because everything a reader has to learn — the option
|
|
12805
|
+
* list, the count badge, the two variants, the RTL handling — is shared, and a filter
|
|
12806
|
+
* row routinely needs the multi-select one while looking identical.
|
|
12807
|
+
*
|
|
12808
|
+
* The a11y models genuinely differ and the branch is not cosmetic: a radiogroup is
|
|
12809
|
+
* ONE tab stop with arrow keys moving the selection, while a group of toggle buttons
|
|
12810
|
+
* is individually tabbable and arrow keys must not change anything (moving selection
|
|
12811
|
+
* on arrow would silently toggle filters as a keyboard user walked the row).
|
|
12494
12812
|
*
|
|
12495
|
-
* a11y:
|
|
12496
|
-
*
|
|
12497
|
-
*
|
|
12813
|
+
* a11y: roving tabindex in single-select (the selected segment is the tab stop),
|
|
12814
|
+
* RTL-aware arrow-key navigation with wrap-around; arrows move both selection and
|
|
12815
|
+
* focus. Multi-select leaves the native tab order alone and binds no arrow keys.
|
|
12498
12816
|
*/
|
|
12499
12817
|
declare class FlySegmentedComponent {
|
|
12500
12818
|
private readonly i18n;
|
|
@@ -12503,12 +12821,32 @@ declare class FlySegmentedComponent {
|
|
|
12503
12821
|
readonly value: _angular_core.ModelSignal<string | undefined>;
|
|
12504
12822
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
12505
12823
|
readonly ariaLabelKey: _angular_core.InputSignal<string | undefined>;
|
|
12824
|
+
/** See {@link SegmentedVariant}. */
|
|
12825
|
+
readonly variant: _angular_core.InputSignal<SegmentedVariant>;
|
|
12826
|
+
/**
|
|
12827
|
+
* Switch to multi-select: every pressed option is carried in {@link values} and
|
|
12828
|
+
* clicking one toggles it. {@link value} is ignored in this mode.
|
|
12829
|
+
*
|
|
12830
|
+
* A separate model rather than widening `value` to `string | string[]`: a consumer
|
|
12831
|
+
* would then have to narrow on every read, and every EXISTING consumer's
|
|
12832
|
+
* `[(value)]` binding would stop type-checking — a ds-compat MAJOR for a feature
|
|
12833
|
+
* none of them asked for.
|
|
12834
|
+
*/
|
|
12835
|
+
readonly multiple: _angular_core.InputSignal<boolean>;
|
|
12836
|
+
/**
|
|
12837
|
+
* The pressed options in {@link multiple} mode. Order is the consumer's; this
|
|
12838
|
+
* component appends on select and filters on deselect, so a caller that treats it
|
|
12839
|
+
* as a set is unaffected and one that treats it as a list keeps its ordering.
|
|
12840
|
+
*/
|
|
12841
|
+
readonly values: _angular_core.ModelSignal<readonly string[]>;
|
|
12506
12842
|
protected readonly selectedIndex: _angular_core.Signal<number>;
|
|
12843
|
+
/** Selected in whichever model is active. */
|
|
12844
|
+
protected isOn(value: string): boolean;
|
|
12507
12845
|
protected tabIndexFor(index: number): number;
|
|
12508
12846
|
protected select(value: string): void;
|
|
12509
12847
|
protected onKey(event: KeyboardEvent): void;
|
|
12510
12848
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlySegmentedComponent, never>;
|
|
12511
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlySegmentedComponent, "fly-segmented", never, { "options": { "alias": "options"; "required": true; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "ariaLabelKey": { "alias": "ariaLabelKey"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
|
|
12849
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlySegmentedComponent, "fly-segmented", never, { "options": { "alias": "options"; "required": true; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "ariaLabelKey": { "alias": "ariaLabelKey"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "values": { "alias": "values"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "values": "valuesChange"; }, never, never, true, never>;
|
|
12512
12850
|
}
|
|
12513
12851
|
|
|
12514
12852
|
/**
|
|
@@ -12969,6 +13307,6 @@ declare const AUDIENCE_ERROR_CODES: {
|
|
|
12969
13307
|
};
|
|
12970
13308
|
type AudienceErrorCode = (typeof AUDIENCE_ERROR_CODES)[keyof typeof AUDIENCE_ERROR_CODES];
|
|
12971
13309
|
|
|
12972
|
-
export { AGENT_DRAG_MIME, AGENT_PAYLOAD_VERSION, APP_LOOKUP, AUDIENCE_ERROR_CODES, AUDIENCE_LIMITS, AUDIENCE_PRESETS, AUDIENCE_TERM_KINDS, AgentActionBus, AgentActionUnsupportedDispatchError, AgentCommandRegistry, AgentDropRegistry, AgentFlightAnimator, AgentLookupRegistry, AgentPayloadOversizeError, AudienceBuilderComponent, AuthService, BilingualFieldComponent, CRON_MODES, CRON_WEEKDAYS, ContextMenuComponent, DEFAULT_AGENT_PAYLOAD_LIMITS, DEFAULT_FLY_THEME_MODE, DS_BASELINE_LOCALES, DashboardKpiComponent, DialogResult, ENTITY_LINK_LAUNCHER, EntityLookupComponent, FLYOS_LAUNCH_EVENT, FLYOS_LAUNCH_REQUEST_EVENT, FLYOS_REMOTE_ROUTE_EVENT, FLY_ACCENT_PROPERTY, FLY_ADMIN_ROLES, FLY_CHUNK_RELOAD_FLAG, FLY_COMPACT_THRESHOLD, FLY_COUNTRIES, FLY_CURRENCIES_BRIEF_ENDPOINT, FLY_EMOJI_BY_ID, FLY_EMOJI_CATEGORIES, FLY_EMOJI_CATEGORY_BY_ID, FLY_EMOJI_DEFAULT_CATEGORIES, FLY_EMOJI_PACK, FLY_EMOJI_PACK_MISSING_MESSAGE, FLY_EMOJI_PREVIEW_COUNT, FLY_EMPTY_VALUE, FLY_LOCALE_CATALOG, FLY_MAGIC_BAR_EVENT, FLY_MAGIC_BAR_ICONS, FLY_MAGIC_BAR_STORE_KEY, FLY_NF_CACHE_HEAL_FLAG, FLY_RELOAD_DEBOUNCE_MS, FLY_RELOAD_REARM_MS, FLY_REMOTE_BASE_PATH, FLY_REMOTE_CONTEXT_EVENT, FLY_REMOTE_CONTEXT_STORE_KEY, FLY_REMOTE_ROUTES, FLY_SCAN_PENDING_DEFAULT_DELAY_MS, FLY_SCAN_PENDING_MAX_RETRIES, FLY_SCAN_PENDING_STATUS, FLY_SEARCH_DEBOUNCE_MS, FLY_SKIN_TONES, FLY_STANDALONE_AUTH_CONFIG, FLY_THEME_MODE_IDS, FLY_VIEWPORT_IS_MOBILE, FLY_WINDOW_HELP_HINT_EVENT, FLY_WINDOW_PAGE_TITLE_EVENT, FlyAchievementProgressComponent, FlyActionMenuComponent, FlyActionStackComponent, FlyAgentDraggableDirective, FlyAnimatedEmojiComponent, FlyAppHomeComponent, FlyAppTopbarComponent, FlyAppUnavailableComponent, FlyAuthLiveRefresh, FlyBadgeWallComponent, FlyBlockUiComponent, FlyBreadcrumbComponent, FlyButtonComponent, FlyBytesPipe, FlyCaptchaComponent, FlyCardActionsComponent, FlyCardBodyComponent, FlyCardComponent, FlyCardFooterComponent, FlyCardGridComponent, FlyCardMediaComponent, FlyCardMetaComponent, FlyCardStatusComponent, FlyCardTitleComponent, FlyCellDirective, FlyCheckboxComponent, FlyChipComponent, FlyChunkReloadErrorHandler, FlyClickOutsideDirective, FlyCollapsibleComponent, FlyCommentThreadComponent, FlyCompactNumberPipe, FlyConfirmDialogComponent, FlyControlDirective, FlyCronBuilderComponent, FlyCurrencyCatalogService, FlyCurrencySelectorComponent, FlyDataTableComponent, FlyDatePipe, FlyDateTimePipe, FlyDebouncer, FlyDecimalNumberPipe, FlyDeepLinkPrefetchService, FlyDetailCardComponent, FlyDetailShellComponent, FlyDrawerComponent, FlyDurationPipe, FlyDynamicFormComponent, FlyEmojiPickerComponent, FlyFieldComponent, FlyFileDownloadService, FlyFileUploadComponent, FlyFilterPanelComponent, FlyFormBannerComponent, FlyFormFooterComponent, FlyFormGridComponent, FlyFormSectionComponent, FlyFullNumberPipe, FlyGanttComponent, FlyHubClient, FlyIconButtonComponent, FlyIfAdminDirective, FlyIfRoleDirective, FlyImageUploadComponent, FlyLeaderboardComponent, FlyMagicActionsComponent, FlyMetaListComponent, FlyModalComponent, FlyModerationQueueComponent, FlyModuleIconDirective, FlyMoneyPipe, FlyPaginationComponent, FlyPeoplePickerComponent, FlyPointsTierComponent, FlyProgressComponent, FlyRelativeTimePipe, FlyRemoteContextService, FlyRemoteRouter, FlyRemoteRouterOutletComponent, FlySearchInputComponent, FlySectionHeaderComponent, FlySecureSrcDirective, FlySegmentedComponent, FlySelectComponent, FlySkeletonComponent, FlySliderComponent, FlySparklineComponent, FlySpinnerComponent, FlyStandaloneAuthCallbackComponent, FlyStandaloneAuthService, FlyStandaloneMagicActionsComponent, FlyStateMessageComponent, FlyDynamicFormComponent as FlySurveyFormComponent, FlyTabComponent, FlyTabsComponent, FlyTagsInputComponent, FlyThemeService, FlyTimePipe, FlyToastService, FlyToggleComponent, FlyTooltipDirective, FlyTreeNavComponent, FlyTypeaheadComponent, FlyUserDirectoryService, FlyWindowHelpService, FlyWindowTitleService, FlyosPendingLaunchesGlobalKey, FlyosShellHandlesLaunchRequestsGlobalKey, FlyosShellOwnsHistoryGlobalKey, GANTT_ZOOMS, I18nService, LAUNCH_CONTEXT, MAGIC_BAR_SEARCH_WIDTH_DEFAULT, MAGIC_BAR_SEARCH_WIDTH_MAX, MAGIC_BAR_SEARCH_WIDTH_MIN, MagicBarRegistry, MessageBoxButtons, MessageBoxComponent, MessageBoxIcon, MessageBoxService, MockAuthService, NOVA_PRIORITY_TONE, NOVA_STATUS_TONE, NOVA_TONE_FALLBACK, OverlayStack, PRESENCE_COLORS, PageHeaderComponent, RTL_LOCALE_SET, SHARE_ORG_CHART_SYSTEM_KEY_APPS, SHARE_ORG_CHART_SYSTEM_KEY_DEFAULT, SHARE_PANEL_DEFAULT_FILE_LEVELS, STATE_DEFAULT_ICONS, STATE_DEFAULT_MESSAGE_KEYS, STEP_UP_CODE, STEP_UP_REAUTH_HANDLER, STEP_UP_RETURN_KEY, SUPPORTED_AGENT_PAYLOAD_VERSIONS, SharePanelComponent, SourceAppResolver, StandaloneWindowManagerService, StatusBadgeComponent, StepUpService, ToastHostComponent, TranslatePipe, WINDOW_DATA, WINDOW_HELP_HINT, WindowManagerService, applySkinTone, applySuggestion, ariaSort, buildCron, canConfirm, canGoNext, canGoPrev, captureFocus, clampMagicBarSearchWidth, clampPage, clampSliderValue, connectRemoteLaunch, enterActivatesNatively, filterGroup, filterSuggestions, findLocaleByDialect, findLocaleByPrefix, firstEnabledIndex, firstModuleIndex, flattenModules, flyAdminGuard, flyApiErrorMessage, flyCaptchaBase64Utf8, flyCaptchaBuildToken, flyCaptchaSha256Hex, flyCompactNumber, flyDebounced, flyDecimalNumber, flyDownloadBlob, flyDuration, flyEmojiFor, flyEmojiIsTonable, flyEmojiPackUrl, flyExportFileName, flyFirstEnabledIndex, flyFormatBytes, flyFormatDate, flyFormatDateTime, flyFormatMoney, flyFormatTime, flyFullNumber, flyNextEnabledIndex, flyNextSegmentIndex, flyRelativeTime, flyResolveActiveTab, flyRoleGuard, flyScanPendingDelayMs, flyScanRetry, flySignedCompact, flySkinToneLabelKey, flyStandaloneAuthGuard, flyStandaloneAuthInterceptor, flyToDateOnly, flyToPage, flyUnwrap, flyUnwrapCurrencies, flyUnwrapLenient, hasAnyRoleIn, healNativeFederationCacheOnce, initialExpanded, isAccentColor, isChunkLoadError, isFlyAuthStorePopulated, isNativeFederationCacheError, isRtlLocale, isRtlLocaleEntry, isValidCron, isValidSingleField, loadRemoteStyles, magicBarOwnerKey, magicBarSearchText, matchFlyRoutePattern, nextEnabledIndex, nextModuleIndex, nextSegmentIndex, nextSort, normalizeFlyTheme, normalizeRoles, novaPriorityToneVar, novaStatusToneVar, overlayStack, parseCron, parseStepUpChallenge, parseTags, prefetchRemoteStyles, presenceColorFor, printConsoleSecurityWarning, provideFlyChunkReloadRecovery, provideFlyEmojiPack, provideFlyStandaloneAuth, reloadOnceForChunkError, requestAppLaunch, resolveActiveModule, resolveActiveSection, resolveActiveTab, resolveCellValue, resolveStateIcon, resolveStateMessageKey, restoreFocus, sameTags, sectionHintKey, sectionLayout, sliderTrackGradient, sparklinePath, sparklinePoints, stepUpInterceptor, stepUpReturnKey, trimAgentPayload, trimAgentString, unloadRemoteStyles, utf8ByteLength, validateAgentPayload, warnIfEmbeddedSessionMissing };
|
|
12973
|
-
export type { ActionMenuItem, AgentAction, AgentActionDispatch, AgentActionVerb, AgentChipHostInputs, AgentCommand, AgentCommandContextBinding, AgentCommandHandle, AgentCommandRegistration, AgentCommandScope, AgentCommandSlashSpec, AgentDragPayload, AgentDraggableItem, AgentDropChipMode, AgentDropRendererRegistration, AgentEnvelopeAttachment, AgentMcpScope, AgentMessageEnvelope, AgentPayloadLimits, AgentPayloadValidationResult, AppEveryonePrincipal, AppEveryoneTerm, AppLookup, AppLookupEntry, AudienceEditTarget, AudienceErrorCode, AudienceFilter, AudienceOptions, AudiencePresetKind, AudienceTerm, AudienceTermKind, BreadcrumbItem, ButtonSize, ButtonVariant, CardDensity, CardLayout, ChartTerm, ChildWindowData, ChipTone, ConfirmKind, ConnectRemoteLaunchOptions, ContextMenuAlign, ContextMenuItem, ContextMenuSection, CronAdvancedFieldDef, CronMode, CronParts, CronWeekday, DesktopApp, DesktopAppCategory, DesktopAppKind, DetailSection, DialogResultWithAcknowledgement, EmbeddedSessionProbe, EntityLinkLauncher, EntityLinkSelection, FilterGroup, FlyAchievementRow, FlyApiError, FlyApiResponse, FlyAppHomeLayout, FlyAppModule, FlyAppModuleSection, FlyAppUnavailableState, FlyAuthRefreshPayload, FlyAuthStoreReadable, FlyBadgeTile, FlyBreadcrumbItem, FlyCaptchaChallenge, FlyCaptchaSolution, FlyCaptchaState, FlyCellContext, FlyColumn, FlyColumnKind, FlyComment, FlyCommentDeleteRequest, FlyCommentEditRequest, FlyCommentLoadMoreRequest, FlyCommentLoadRepliesRequest, FlyCommentLockToggleRequest, FlyCommentPage, FlyCommentReportReason, FlyCommentReportRequest, FlyCommentReportStatus, FlyCommentSubmitRequest, FlyCountry, FlyCurrency, FlyCurrencyFetchFn, FlyCurrencySelectorMode, FlyCurrencySelectorValue, FlyDeepLinkPrefetchRoute, FlyDrawerBodyPadding, FlyDrawerPosition, FlyDrawerSide, FlyDrawerSize, FlyDrawerVariant, FlyEmojiCategory, FlyEmojiCell, FlyEmojiEntry, FlyEmojiPack, FlyEmojiPackEntry, FlyEmojiPackManifest, FlyEmojiPickerSize, FlyEmojiPickerTab, FlyEmojiSection, FlyFileInfo, FlyFileSelection, FlyFormAnswer, FlyFormAnswerValue, FlyFormDefinition, FlyFormFieldOptions, FlyFormOption, FlyFormQuestion, FlyFormQuestionType, FlyFormScoreDisplay, FlyFormatMoneyOptions, FlyLaunchEventDetail, FlyLaunchRequestDetail, FlyLeaderboardRow, FlyLiveRefreshOptions, FlyLocaleEntry, FlyMagicBarIconName, FlyMetaItem, FlyModerationLoadPageRequest, FlyModerationLockThreadRequest, FlyModerationOpenSubjectRequest, FlyModerationReport, FlyModerationReportPage, FlyModerationResolutionStatus, FlyModerationResolveRequest, FlyMoneyDisplay, FlyNavigableItem, FlyPageMeta, FlyPageResult, FlyPaged, FlyPeoplePickerMode, FlyPeoplePickerOption, FlyPeopleSearchFn, FlyPointsSummary, FlyRemoteContext, FlyRemoteEagerRoute, FlyRemoteLazyRoute, FlyRemoteLoadedComponent, FlyRemoteMatch, FlyRemoteRoute, FlyRemoteRouteEventDetail, FlySearchExpandTrigger, FlySearchInputSize, FlySecureSrcState, FlySelectOption, FlySelectValue, FlySkeletonAnimation, FlySkeletonLayout, FlySkeletonShape, FlySkinTone, FlySort, FlyStandaloneAuthConfig, FlyFileSelection as FlySurveyFileSelection, FlyFormAnswer as FlySurveyFormAnswer, FlyFormAnswerValue as FlySurveyFormAnswerValue, FlyFormDefinition as FlySurveyFormDefinition, FlyFormFieldOptions as FlySurveyFormFieldOptions, FlyFormOption as FlySurveyFormOption, FlyFormQuestion as FlySurveyFormQuestion, FlyFormQuestionType as FlySurveyQuestionType, FlyThemeMode, FlyTooltipPlacement, FlyTreeNavNode, FlyTypeaheadOption, FlyWindowHelpHintEventDetail, FlyWindowHelpPublisher, FlyWindowPageTitleEventDetail, FlyWindowTitlePublisher, FlyosPendingLaunches, FocusRestore, FormBannerKind, GanttDependency, GanttDependencyCreate, GanttRow, GanttRowDatesChange, GanttRowKind, GanttZoom, IconButtonVariant, LaunchContext, LoadBundleOptions, LoadRemoteStylesOptions, LookupDescriptor, LookupHandle, LookupRegistration, LookupResult, LookupSearch, MagicBarAction, MagicBarActionKind, MagicBarActionSpec, MagicBarActionView, MagicBarContribution, MagicBarGroup, MagicBarGroupSpec, MagicBarGroupView, MagicBarOwnerRef, MagicBarPublisher, MagicBarRadioMenu, MagicBarRadioMenuSpec, MagicBarRadioMenuView, MagicBarRadioOption, MagicBarSearch, MagicBarSearchSeed, MagicBarSearchSpec, MagicBarSearchView, MagicBarTextParams, MagicBarTone, MagicBarView, MessageBoxButton, MessageBoxDontAskAgainConfig, MessageBoxOptions, MessageBoxOptionsWithAcknowledgement, MockAuthConfig, OpenWindowOptions, OuPrincipal, OuTerm, OverlayHandle, PageHeaderVariant, PresetTerm, ProgressTone, RemoteAppDef, RequestAppLaunchOptions, RoleOuLookupRow, RolePrincipal, RolesTerm, SegmentedOption, ShareOrgChartOption, ShareOuNode, SharePanelLevelOption, SharePermissionEntry, SharePrincipal, SharePrincipalKind, ShareUserResult, StateMessageKind, StepUpChallenge, StepUpReauthHandler, StepUpReauthRequest, TabsVariant, ToastAction, ToastEntry, ToastOptions, ToastVariant, User, UserPrincipal, UsersTerm, WindowHelpHint, WindowInstance, WindowState };
|
|
13310
|
+
export { AGENT_DRAG_MIME, AGENT_PAYLOAD_VERSION, APP_LOOKUP, AUDIENCE_ERROR_CODES, AUDIENCE_LIMITS, AUDIENCE_PRESETS, AUDIENCE_TERM_KINDS, AgentActionBus, AgentActionUnsupportedDispatchError, AgentCommandRegistry, AgentDropRegistry, AgentFlightAnimator, AgentLookupRegistry, AgentPayloadOversizeError, AudienceBuilderComponent, AuthService, BilingualFieldComponent, CRON_MODES, CRON_WEEKDAYS, ContextMenuComponent, DEFAULT_AGENT_PAYLOAD_LIMITS, DEFAULT_FLY_THEME_MODE, DS_BASELINE_LOCALES, DashboardKpiComponent, DialogResult, ENTITY_LINK_LAUNCHER, EntityLookupComponent, FLYOS_LAUNCH_EVENT, FLYOS_LAUNCH_REQUEST_EVENT, FLYOS_REMOTE_ROUTE_EVENT, FLY_ACCENT_PROPERTY, FLY_ADMIN_ROLES, FLY_CHUNK_RELOAD_FLAG, FLY_COMPACT_THRESHOLD, FLY_COUNTRIES, FLY_CURRENCIES_BRIEF_ENDPOINT, FLY_EMOJI_BY_ID, FLY_EMOJI_CATEGORIES, FLY_EMOJI_CATEGORY_BY_ID, FLY_EMOJI_DEFAULT_CATEGORIES, FLY_EMOJI_PACK, FLY_EMOJI_PACK_MISSING_MESSAGE, FLY_EMOJI_PREVIEW_COUNT, FLY_EMPTY_VALUE, FLY_LOCALE_CATALOG, FLY_MAGIC_BAR_EVENT, FLY_MAGIC_BAR_ICONS, FLY_MAGIC_BAR_STORE_KEY, FLY_NF_CACHE_HEAL_FLAG, FLY_RELOAD_DEBOUNCE_MS, FLY_RELOAD_REARM_MS, FLY_REMOTE_BASE_PATH, FLY_REMOTE_CONTEXT_EVENT, FLY_REMOTE_CONTEXT_STORE_KEY, FLY_REMOTE_ROUTES, FLY_SCAN_PENDING_DEFAULT_DELAY_MS, FLY_SCAN_PENDING_MAX_RETRIES, FLY_SCAN_PENDING_STATUS, FLY_SEARCH_DEBOUNCE_MS, FLY_SKIN_TONES, FLY_STANDALONE_AUTH_CONFIG, FLY_THEME_MODE_IDS, FLY_VIEWPORT_IS_MOBILE, FLY_WINDOW_HELP_HINT_EVENT, FLY_WINDOW_PAGE_TITLE_EVENT, FlyAchievementProgressComponent, FlyActionMenuComponent, FlyActionStackComponent, FlyAgentDraggableDirective, FlyAnimatedEmojiComponent, FlyAppHomeComponent, FlyAppTopbarComponent, FlyAppUnavailableComponent, FlyAuthLiveRefresh, FlyBadgeWallComponent, FlyBlockUiComponent, FlyBreadcrumbComponent, FlyButtonComponent, FlyBytesPipe, FlyCaptchaComponent, FlyCardActionsComponent, FlyCardBodyComponent, FlyCardComponent, FlyCardFooterComponent, FlyCardGridComponent, FlyCardMediaComponent, FlyCardMetaComponent, FlyCardStatusComponent, FlyCardTitleComponent, FlyCellDirective, FlyCheckboxComponent, FlyChipComponent, FlyChunkReloadErrorHandler, FlyClickOutsideDirective, FlyCollapsibleComponent, FlyCommentThreadComponent, FlyCompactNumberPipe, FlyConfirmDialogComponent, FlyControlDirective, FlyCronBuilderComponent, FlyCurrencyCatalogService, FlyCurrencySelectorComponent, FlyDataTableComponent, FlyDatePipe, FlyDateTimePipe, FlyDebouncer, FlyDecimalNumberPipe, FlyDeepLinkPrefetchService, FlyDetailCardComponent, FlyDetailShellComponent, FlyDrawerComponent, FlyDurationPipe, FlyDynamicFormComponent, FlyEmojiPickerComponent, FlyFieldComponent, FlyFileDownloadService, FlyFileUploadComponent, FlyFilterPanelComponent, FlyFormBannerComponent, FlyFormFooterComponent, FlyFormGridComponent, FlyFormSectionComponent, FlyFullNumberPipe, FlyGanttComponent, FlyHubClient, FlyIconButtonComponent, FlyIfAdminDirective, FlyIfRoleDirective, FlyImageUploadComponent, FlyLeaderboardComponent, FlyMagicActionsComponent, FlyMetaListComponent, FlyModalComponent, FlyModerationQueueComponent, FlyModuleIconDirective, FlyMoneyPipe, FlyPaginationComponent, FlyPeoplePickerComponent, FlyPointsTierComponent, FlyProgressComponent, FlyRelativeTimePipe, FlyRemoteContextService, FlyRemoteRouter, FlyRemoteRouterOutletComponent, FlySearchInputComponent, FlySectionHeaderComponent, FlySecureSrcDirective, FlySegmentedComponent, FlySelectComponent, FlySkeletonComponent, FlySliderComponent, FlySparklineComponent, FlySpinnerComponent, FlyStandaloneAuthCallbackComponent, FlyStandaloneAuthService, FlyStandaloneMagicActionsComponent, FlyStateMessageComponent, FlyDynamicFormComponent as FlySurveyFormComponent, FlyTabComponent, FlyTabsComponent, FlyTagsInputComponent, FlyThemeService, FlyTimePipe, FlyToastService, FlyToggleComponent, FlyTooltipDirective, FlyTreeNavComponent, FlyTypeaheadComponent, FlyUserDirectoryService, FlyWindowHelpService, FlyWindowTitleService, FlyosPendingLaunchesGlobalKey, FlyosShellHandlesLaunchRequestsGlobalKey, FlyosShellOwnsHistoryGlobalKey, GANTT_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, WindowManagerService, applySkinTone, applySuggestion, ariaSort, buildCron, canConfirm, canGoNext, canGoPrev, captureFocus, clampMagicBarSearchWidth, clampPage, clampSliderValue, connectRemoteLaunch, enterActivatesNatively, filterGroup, filterSuggestions, findLocaleByDialect, findLocaleByPrefix, firstEnabledIndex, firstModuleIndex, flattenModules, flyAdminGuard, flyApiErrorMessage, flyCaptchaBase64Utf8, flyCaptchaBuildToken, flyCaptchaSha256Hex, flyCompactNumber, flyDebounced, flyDecimalNumber, flyDownloadBlob, flyDuration, flyEmojiFor, flyEmojiIsTonable, flyEmojiPackUrl, flyExportFileName, flyFirstEnabledIndex, flyFormatBytes, flyFormatDate, flyFormatDateTime, flyFormatMoney, flyFormatTime, flyFullNumber, flyNextEnabledIndex, flyNextSegmentIndex, flyRelativeTime, flyResolveActiveTab, flyRoleGuard, flyScanPendingDelayMs, flyScanRetry, flySignedCompact, flySkinToneLabelKey, flyStandaloneAuthGuard, flyStandaloneAuthInterceptor, flyToDateOnly, flyToPage, flyUnwrap, flyUnwrapCurrencies, flyUnwrapLenient, hasAnyRoleIn, healNativeFederationCacheOnce, initialExpanded, isAccentColor, isChunkLoadError, isFlyAuthStorePopulated, isNativeFederationCacheError, isRtlLocale, isRtlLocaleEntry, isValidCron, isValidSingleField, loadRemoteStyles, magicBarOwnerKey, magicBarSearchText, matchFlyRoutePattern, nextEnabledIndex, nextModuleIndex, nextSegmentIndex, nextSort, normalizeFlyTheme, normalizeRoles, novaPriorityToneVar, novaStatusToneVar, overlayStack, parseCron, parseStepUpChallenge, parseTags, prefetchRemoteStyles, presenceColorFor, printConsoleSecurityWarning, provideFlyChunkReloadRecovery, provideFlyEmojiPack, provideFlyStandaloneAuth, reloadOnceForChunkError, requestAppLaunch, resolveActiveModule, resolveActiveSection, resolveActiveTab, resolveCellValue, resolveStateIcon, resolveStateMessageKey, restoreFocus, sameTags, sectionHintKey, sectionLayout, sliderTrackGradient, sparklinePath, sparklinePoints, stepUpInterceptor, stepUpReturnKey, trimAgentPayload, trimAgentString, unloadRemoteStyles, utf8ByteLength, validateAgentPayload, warnIfEmbeddedSessionMissing };
|
|
13311
|
+
export type { ActionMenuItem, AgentAction, AgentActionDispatch, AgentActionVerb, AgentChipHostInputs, AgentCommand, AgentCommandContextBinding, AgentCommandHandle, AgentCommandRegistration, AgentCommandScope, AgentCommandSlashSpec, AgentDragPayload, AgentDraggableItem, AgentDropChipMode, AgentDropRendererRegistration, AgentEnvelopeAttachment, AgentMcpScope, AgentMessageEnvelope, AgentPayloadLimits, AgentPayloadValidationResult, AppEveryonePrincipal, AppEveryoneTerm, AppLookup, AppLookupEntry, AudienceEditTarget, AudienceErrorCode, AudienceFilter, AudienceOptions, AudiencePresetKind, AudienceTerm, AudienceTermKind, BreadcrumbItem, ButtonSize, ButtonVariant, CardDensity, CardLayout, ChartTerm, ChildWindowData, ChipTone, ConfirmKind, ConnectRemoteLaunchOptions, ContextMenuAlign, ContextMenuItem, ContextMenuSection, CronAdvancedFieldDef, CronMode, CronParts, CronWeekday, DesktopApp, DesktopAppCategory, DesktopAppKind, DetailSection, DialogResultWithAcknowledgement, EmbeddedSessionProbe, EntityLinkLauncher, EntityLinkSelection, FilterGroup, FlyAchievementRow, FlyApiError, FlyApiResponse, FlyAppHomeLayout, FlyAppModule, FlyAppModuleSection, FlyAppUnavailableState, FlyAuthRefreshPayload, FlyAuthStoreReadable, FlyBadgeTile, FlyBreadcrumbItem, FlyCaptchaChallenge, FlyCaptchaSolution, FlyCaptchaState, FlyCellContext, FlyColumn, FlyColumnKind, FlyComment, FlyCommentDeleteRequest, FlyCommentEditRequest, FlyCommentLoadMoreRequest, FlyCommentLoadRepliesRequest, FlyCommentLockToggleRequest, FlyCommentPage, FlyCommentReportReason, FlyCommentReportRequest, FlyCommentReportStatus, FlyCommentSubmitRequest, FlyCountry, FlyCurrency, FlyCurrencyFetchFn, FlyCurrencySelectorMode, FlyCurrencySelectorValue, FlyDeepLinkPrefetchRoute, FlyDrawerBodyPadding, FlyDrawerPosition, FlyDrawerSide, FlyDrawerSize, FlyDrawerVariant, FlyEmojiCategory, FlyEmojiCell, FlyEmojiEntry, FlyEmojiPack, FlyEmojiPackEntry, FlyEmojiPackManifest, FlyEmojiPickerSize, FlyEmojiPickerTab, FlyEmojiSection, FlyFileInfo, FlyFileSelection, FlyFormAnswer, FlyFormAnswerValue, FlyFormDefinition, FlyFormFieldOptions, FlyFormOption, FlyFormQuestion, FlyFormQuestionType, FlyFormScoreDisplay, FlyFormatMoneyOptions, FlyLaunchEventDetail, FlyLaunchRequestDetail, FlyLeaderboardRow, FlyLiveRefreshOptions, FlyLocaleEntry, FlyMagicBarIconName, FlyMetaItem, FlyModerationLoadPageRequest, FlyModerationLockThreadRequest, FlyModerationOpenSubjectRequest, FlyModerationReport, FlyModerationReportPage, FlyModerationResolutionStatus, FlyModerationResolveRequest, FlyMoneyDisplay, FlyNavigableItem, FlyPageMeta, FlyPageResult, FlyPaged, FlyPeoplePickerMode, FlyPeoplePickerOption, FlyPeopleSearchFn, FlyPointsSummary, FlyRemoteContext, FlyRemoteEagerRoute, FlyRemoteLazyRoute, FlyRemoteLoadedComponent, FlyRemoteMatch, FlyRemoteRoute, FlyRemoteRouteEventDetail, FlySearchExpandTrigger, FlySearchInputSize, FlySecureSrcState, FlySelectOption, FlySelectValue, FlySkeletonAnimation, FlySkeletonLayout, FlySkeletonShape, FlySkinTone, FlySort, FlyStandaloneAuthConfig, FlyFileSelection as FlySurveyFileSelection, FlyFormAnswer as FlySurveyFormAnswer, FlyFormAnswerValue as FlySurveyFormAnswerValue, FlyFormDefinition as FlySurveyFormDefinition, FlyFormFieldOptions as FlySurveyFormFieldOptions, FlyFormOption as FlySurveyFormOption, FlyFormQuestion as FlySurveyFormQuestion, FlyFormQuestionType as FlySurveyQuestionType, FlyThemeMode, FlyTooltipPlacement, FlyTreeNavNode, FlyTypeaheadOption, FlyWindowHelpHintEventDetail, FlyWindowHelpPublisher, FlyWindowPageTitleEventDetail, FlyWindowTitlePublisher, FlyosPendingLaunches, FocusRestore, FormBannerKind, GanttDependency, GanttDependencyCreate, 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, WindowHelpHint, WindowInstance, WindowState };
|
|
12974
13312
|
//# sourceMappingURL=flyos-design-system.d.ts.map
|