@flyos/design-system 3.1.0 → 3.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/package.json
CHANGED
|
@@ -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. */
|
|
@@ -12969,6 +13102,6 @@ declare const AUDIENCE_ERROR_CODES: {
|
|
|
12969
13102
|
};
|
|
12970
13103
|
type AudienceErrorCode = (typeof AUDIENCE_ERROR_CODES)[keyof typeof AUDIENCE_ERROR_CODES];
|
|
12971
13104
|
|
|
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 };
|
|
13105
|
+
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 };
|
|
13106
|
+
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, ShareOrgChartOption, ShareOuNode, SharePanelLevelOption, SharePermissionEntry, SharePrincipal, SharePrincipalKind, ShareUserResult, StateMessageKind, StepUpChallenge, StepUpReauthHandler, StepUpReauthRequest, TabsVariant, ToastAction, ToastEntry, ToastOptions, ToastVariant, User, UserPrincipal, UsersTerm, WindowHelpHint, WindowInstance, WindowState };
|
|
12974
13107
|
//# sourceMappingURL=flyos-design-system.d.ts.map
|