@flyos/design-system 3.10.0 → 3.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/flyos-design-system.mjs +395 -4
- package/fesm2022/flyos-design-system.mjs.map +1 -1
- package/package.json +1 -1
- package/scss/_app-surface-tokens.scss +589 -582
- package/scss/_nova-glass.scss +575 -566
- package/types/flyos-design-system.d.ts +285 -2
- package/types/flyos-design-system.d.ts.map +1 -1
|
@@ -1578,6 +1578,59 @@ declare class FlyStandaloneAuthCallbackComponent implements OnInit {
|
|
|
1578
1578
|
*/
|
|
1579
1579
|
declare function provideFlyStandaloneAuth(config: FlyStandaloneAuthConfig): EnvironmentProviders;
|
|
1580
1580
|
|
|
1581
|
+
/** What {@link provideFlyOfflineAuth} needs to stand in for a real sign-in. */
|
|
1582
|
+
interface FlyOfflineAuthConfig {
|
|
1583
|
+
/**
|
|
1584
|
+
* The SAME {@link FlyStandaloneAuthConfig} the app's online build provides. Not optional — see
|
|
1585
|
+
* the provider's remarks for why omitting it fails at runtime rather than degrading.
|
|
1586
|
+
*/
|
|
1587
|
+
readonly auth: FlyStandaloneAuthConfig;
|
|
1588
|
+
/** The representative tenant user the offline build signs in as. */
|
|
1589
|
+
readonly user: User;
|
|
1590
|
+
/**
|
|
1591
|
+
* Bearer the offline build presents. For a pure no-backend build any string does; for a
|
|
1592
|
+
* mock-auth build hitting a REAL backend it must match that backend's dev bearer exactly — the
|
|
1593
|
+
* two are a matched pair, and the backend handler is gated on the presence of this value.
|
|
1594
|
+
*/
|
|
1595
|
+
readonly accessToken: string;
|
|
1596
|
+
/**
|
|
1597
|
+
* How long the session claims to be valid. Default 24h. Offline sessions never actually expire;
|
|
1598
|
+
* this only has to be far enough out that no expiry check trips mid-review.
|
|
1599
|
+
*/
|
|
1600
|
+
readonly sessionTtlMs?: number;
|
|
1601
|
+
}
|
|
1602
|
+
/**
|
|
1603
|
+
* Auth wiring for a UI-developer build: sign in as a representative tenant user so the app runs
|
|
1604
|
+
* with **no STS**, and present a fixed bearer to whatever backend (real or mocked) it talks to.
|
|
1605
|
+
*
|
|
1606
|
+
* <p>The offline counterpart of `provideFlyStandaloneAuth`, and it deliberately provides the SAME
|
|
1607
|
+
* {@link FLY_STANDALONE_AUTH_CONFIG}. Two reasons, both learned the hard way:</p>
|
|
1608
|
+
* <ul>
|
|
1609
|
+
* <li>`flyStandaloneAuthInterceptor` injects that token unconditionally. Omitting it here does
|
|
1610
|
+
* not degrade gracefully — every HTTP call in the offline build throws a DI error at runtime,
|
|
1611
|
+
* which no typecheck or unit test catches.</li>
|
|
1612
|
+
* <li>The interceptor's path rules then hold identically in all build modes instead of being
|
|
1613
|
+
* re-stated per mode.</li>
|
|
1614
|
+
* </ul>
|
|
1615
|
+
*
|
|
1616
|
+
* <p>Seeding the shared {@link AuthService} store is the whole implementation, because that store
|
|
1617
|
+
* is the single source of truth for identity: `FlyStandaloneAuthService.isAuthenticated()` delegates
|
|
1618
|
+
* to it, so `flyStandaloneAuthGuard` passes and never reaches `startLogin()`, and the interceptor
|
|
1619
|
+
* reads the same token. No PKCE code path is entered offline.</p>
|
|
1620
|
+
*
|
|
1621
|
+
* <p><b>`STEP_UP_REAUTH_HANDLER` is intentionally NOT provided.</b> A step-up challenge cannot
|
|
1622
|
+
* arise offline, and a handler that redirected to a real STS would be actively wrong in a build
|
|
1623
|
+
* that has none.</p>
|
|
1624
|
+
*
|
|
1625
|
+
* @example
|
|
1626
|
+
* providers: [
|
|
1627
|
+
* offlineDataEnabled
|
|
1628
|
+
* ? provideFlyOfflineAuth({ auth: PPM_AUTH_CONFIG, user: OFFLINE_USER, accessToken: DEV_BEARER })
|
|
1629
|
+
* : provideFlyStandaloneAuth(PPM_AUTH_CONFIG),
|
|
1630
|
+
* ]
|
|
1631
|
+
*/
|
|
1632
|
+
declare function provideFlyOfflineAuth(config: FlyOfflineAuthConfig): EnvironmentProviders;
|
|
1633
|
+
|
|
1581
1634
|
/** Payload of the platform `AuthRefresh` push — the reason is advisory (logging only). */
|
|
1582
1635
|
interface FlyAuthRefreshPayload {
|
|
1583
1636
|
reason?: string;
|
|
@@ -12081,6 +12134,197 @@ declare class FlyMetaListComponent {
|
|
|
12081
12134
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlyMetaListComponent, "fly-meta", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
12082
12135
|
}
|
|
12083
12136
|
|
|
12137
|
+
/**
|
|
12138
|
+
* Generic Overview-section content surface — the `--w03`/`--w06` tinted
|
|
12139
|
+
* plate a non-card section body (Description text, a chips tray, a members
|
|
12140
|
+
* tray, an activity tray) sits on inside a {@link FlyOverviewSectionComponent}.
|
|
12141
|
+
* Deliberately presentation-only: no shadow, gradient, hover, or cursor —
|
|
12142
|
+
* this is quiet inner paper, not a clickable surface.
|
|
12143
|
+
*
|
|
12144
|
+
* Content is left to projection so each Overview variant keeps its own real
|
|
12145
|
+
* markup (and, for Members/Chips/Activity, its own live Angular bindings and
|
|
12146
|
+
* interactions) — this component only paints the box.
|
|
12147
|
+
*
|
|
12148
|
+
* `[proseText]` additionally applies the Description-section body-copy
|
|
12149
|
+
* typography directly on the host, for the common case of one bound string
|
|
12150
|
+
* with nothing else inside. Leave it off for any other content (chips,
|
|
12151
|
+
* member rows, a nested `fly-overview-rows`) — those bring their own type.
|
|
12152
|
+
*
|
|
12153
|
+
* ```html
|
|
12154
|
+
* <fly-overview-surface [proseText]="true">{{ project().description }}</fly-overview-surface>
|
|
12155
|
+
*
|
|
12156
|
+
* <fly-overview-surface>
|
|
12157
|
+
* @for (m of project().members; track m.id) { <fly-chip>{{ m.name }}</fly-chip> }
|
|
12158
|
+
* </fly-overview-surface>
|
|
12159
|
+
* ```
|
|
12160
|
+
*/
|
|
12161
|
+
declare class FlyOverviewSurfaceComponent {
|
|
12162
|
+
/** Apply the Description-section body-copy typography on the host. */
|
|
12163
|
+
readonly proseText: _angular_core.InputSignal<boolean>;
|
|
12164
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlyOverviewSurfaceComponent, never>;
|
|
12165
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlyOverviewSurfaceComponent, "fly-overview-surface", never, { "proseText": { "alias": "proseText"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
12166
|
+
}
|
|
12167
|
+
|
|
12168
|
+
/**
|
|
12169
|
+
* Icon tone for one {@link OverviewKpiItem}. Mapped in CSS to the nearest
|
|
12170
|
+
* existing `--sys-*` semantic hue rather than a bespoke literal per position
|
|
12171
|
+
* — `blue`/`orange`/`red`/`teal` land on `--sys-blue`/`--sys-orange`/
|
|
12172
|
+
* `--sys-red`/`--sys-teal`, whose DARK-theme values already equal the
|
|
12173
|
+
* reference design's positional literals exactly (see `_nova-tokens.scss`'s
|
|
12174
|
+
* dark block for the four matching values). `purple` is the one
|
|
12175
|
+
* approximation: the reference design's Apple-system-indigo literal has no
|
|
12176
|
+
* matching platform token, so it resolves to `--sys-purple` instead — the
|
|
12177
|
+
* closest existing hue — rather than minting a new indigo token, per the
|
|
12178
|
+
* "reuse existing tokens, no arbitrary colors" rule this component ships
|
|
12179
|
+
* under.
|
|
12180
|
+
*/
|
|
12181
|
+
type OverviewKpiTone = 'blue' | 'purple' | 'orange' | 'red' | 'teal';
|
|
12182
|
+
/** One KPI card of a {@link FlyOverviewKpiRowComponent}. */
|
|
12183
|
+
interface OverviewKpiItem {
|
|
12184
|
+
/** PrimeIcons class, e.g. `'pi-chart-line'` (no leading `pi `). */
|
|
12185
|
+
icon: string;
|
|
12186
|
+
/** Already-formatted value text, rendered verbatim. */
|
|
12187
|
+
value: string;
|
|
12188
|
+
/** i18n key for the label under the value. */
|
|
12189
|
+
labelKey: string;
|
|
12190
|
+
tone: OverviewKpiTone;
|
|
12191
|
+
}
|
|
12192
|
+
|
|
12193
|
+
/**
|
|
12194
|
+
* Overview "Summary" KPI row — a wrapping row of flat stat cards, each with
|
|
12195
|
+
* the value/label stack at inline-start and the icon on a solid tone tile at
|
|
12196
|
+
* inline-end (the KPI-tile treatment, 2026-08-20 fidelity pass).
|
|
12197
|
+
* `order: 1`/`order: 2` (not `flex-direction: row-reverse`) drive that split
|
|
12198
|
+
* so the layout auto-mirrors under `dir="rtl"`: inline-start/-end follow
|
|
12199
|
+
* direction, a fixed left/right would not.
|
|
12200
|
+
*
|
|
12201
|
+
* Default layout is a wrapping flex row (any item count degrades gracefully);
|
|
12202
|
+
* a design that pins an exact no-reflow column count (the Project-Details
|
|
12203
|
+
* Overview pins five) passes `columns` instead.
|
|
12204
|
+
*
|
|
12205
|
+
* ```html
|
|
12206
|
+
* <fly-overview-kpi-row [columns]="5" [items]="[
|
|
12207
|
+
* { icon: 'pi-chart-line', value: '64%', labelKey: 'ppm.projects.overview.progress', tone: 'blue' },
|
|
12208
|
+
* { icon: 'pi-flag', value: '3/8', labelKey: 'ppm.projects.overview.milestones', tone: 'purple' },
|
|
12209
|
+
* ]" />
|
|
12210
|
+
* ```
|
|
12211
|
+
*/
|
|
12212
|
+
declare class FlyOverviewKpiRowComponent {
|
|
12213
|
+
readonly items: _angular_core.InputSignal<readonly OverviewKpiItem[]>;
|
|
12214
|
+
/** Exact equal-width column count (no reflow). Omit for the default wrapping flex row. */
|
|
12215
|
+
readonly columns: _angular_core.InputSignal<number | undefined>;
|
|
12216
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlyOverviewKpiRowComponent, never>;
|
|
12217
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlyOverviewKpiRowComponent, "fly-overview-kpi-row", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
12218
|
+
}
|
|
12219
|
+
|
|
12220
|
+
/** One label/value row of a {@link FlyOverviewRowsComponent}. */
|
|
12221
|
+
interface OverviewRow {
|
|
12222
|
+
/** i18n key for the row label. */
|
|
12223
|
+
labelKey: string;
|
|
12224
|
+
/** Already-formatted value text, rendered verbatim. */
|
|
12225
|
+
value: string;
|
|
12226
|
+
}
|
|
12227
|
+
/**
|
|
12228
|
+
* Overview "Details" body — a self-contained `--w03`/`--w06` surface holding
|
|
12229
|
+
* label/value rows. Distinct from {@link FlyMetaListComponent} (`fly-meta`):
|
|
12230
|
+
* that component is the compact sidecard metalist (96px label column,
|
|
12231
|
+
* uppercase eyebrow labels, no surrounding surface — it expects to sit
|
|
12232
|
+
* inside a `fly-detail-card`), while this one is the wider Overview-page
|
|
12233
|
+
* "Details" block (132px label column, sentence-case labels, and the surface
|
|
12234
|
+
* built in) — the two visual specs don't share numbers, so this stays its
|
|
12235
|
+
* own component rather than a variant of the sidecard one.
|
|
12236
|
+
*
|
|
12237
|
+
* Simple rows come from `rows`; a richer value (a link, a chip, a user
|
|
12238
|
+
* label) projects through the default slot — reuse the `ovr__row` /
|
|
12239
|
+
* `ovr__label` / `ovr__value` classes on the projected markup to pick up the
|
|
12240
|
+
* same layout.
|
|
12241
|
+
*
|
|
12242
|
+
* ```html
|
|
12243
|
+
* <fly-overview-rows [rows]="[
|
|
12244
|
+
* { labelKey: 'ppm.projects.overview.owner', value: project().ownerName },
|
|
12245
|
+
* { labelKey: 'ppm.projects.overview.dueDate', value: project().dueDateLabel },
|
|
12246
|
+
* ]">
|
|
12247
|
+
* <div class="ovr__row">
|
|
12248
|
+
* <span class="ovr__label">{{ 'ppm.projects.overview.strategy' | translate }}</span>
|
|
12249
|
+
* <a class="ovr__value" [routerLink]="['/strategies', project().strategyId]">{{ project().strategyName }}</a>
|
|
12250
|
+
* </div>
|
|
12251
|
+
* </fly-overview-rows>
|
|
12252
|
+
* ```
|
|
12253
|
+
*/
|
|
12254
|
+
declare class FlyOverviewRowsComponent {
|
|
12255
|
+
readonly rows: _angular_core.InputSignal<readonly OverviewRow[]>;
|
|
12256
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlyOverviewRowsComponent, never>;
|
|
12257
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlyOverviewRowsComponent, "fly-overview-rows", never, { "rows": { "alias": "rows"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
12258
|
+
}
|
|
12259
|
+
|
|
12260
|
+
/**
|
|
12261
|
+
* One phase/gate of a {@link FlyLifecyclePipelineComponent}. Reuses
|
|
12262
|
+
* `fly-chip`'s `tone` vocabulary directly (rather than a bespoke enum) so the
|
|
12263
|
+
* step's index badge and its trailing chip always share one color — the
|
|
12264
|
+
* caller resolves domain status (approved/in-progress/not-started, …) into a
|
|
12265
|
+
* single `tone`, same discipline as `OverviewKpiItem`/`OverviewRow`.
|
|
12266
|
+
*/
|
|
12267
|
+
interface LifecycleStep {
|
|
12268
|
+
/** i18n key for the step name. Provide this OR `label` — real lifecycles mix both
|
|
12269
|
+
* (a phase-gate's name is server data, a fallback step name is a locale key). */
|
|
12270
|
+
labelKey?: string;
|
|
12271
|
+
/** Verbatim step name, rendered untranslated (e.g. a gate's stored name). Wins over
|
|
12272
|
+
* `labelKey` when both are set. */
|
|
12273
|
+
label?: string;
|
|
12274
|
+
/** i18n key for the trailing status chip text. */
|
|
12275
|
+
statusLabelKey: string;
|
|
12276
|
+
tone: ChipTone;
|
|
12277
|
+
/** Already-formatted "n / n" progress (e.g. deliverables done within the gate). Renders only when present. */
|
|
12278
|
+
progress?: string;
|
|
12279
|
+
/** Marks the active step — emphasis ring + `aria-current="step"`. */
|
|
12280
|
+
current?: boolean;
|
|
12281
|
+
}
|
|
12282
|
+
/** One tally of a {@link FlyLifecyclePipelineComponent}'s rollup strip. */
|
|
12283
|
+
interface LifecycleRollupItem {
|
|
12284
|
+
/** i18n key for the tally label. */
|
|
12285
|
+
labelKey: string;
|
|
12286
|
+
/** Already-formatted count, rendered verbatim. */
|
|
12287
|
+
value: number | string;
|
|
12288
|
+
}
|
|
12289
|
+
|
|
12290
|
+
/**
|
|
12291
|
+
* Project-lifecycle phase-gate stepper — the Overview-section kit's fourth
|
|
12292
|
+
* body variant. Summary/Description/Details are `fly-overview-kpi-row` /
|
|
12293
|
+
* `-surface` / `-rows`; this is the "Lifecycle" section's own body, per
|
|
12294
|
+
* `fly-overview-section`'s own doc comment ("Lifecycle's 'Move to' actions").
|
|
12295
|
+
* A caller resolves the gate vocabulary (approved/in-progress/not-started, …)
|
|
12296
|
+
* into an already-formatted `tone` per step — this component stays
|
|
12297
|
+
* domain-agnostic, same discipline as `OverviewKpiItem`/`OverviewRow`. Step
|
|
12298
|
+
* names accept either an i18n `labelKey` or a verbatim `label`, because real
|
|
12299
|
+
* lifecycles carry server-provided gate names that are data, not locale keys.
|
|
12300
|
+
*
|
|
12301
|
+
* The index badge and the trailing `fly-chip` always share one color, driven
|
|
12302
|
+
* by the SAME `tone` field, so the two never drift out of sync. A
|
|
12303
|
+
* `success`-toned step swaps its numeral for a check mark. The optional
|
|
12304
|
+
* rollup strip is a flat tally legend, not another `fly-overview-rows` (that
|
|
12305
|
+
* component's 132px label column is built for a vertical "Details" block,
|
|
12306
|
+
* not an inline summary strip).
|
|
12307
|
+
*
|
|
12308
|
+
* ```html
|
|
12309
|
+
* <fly-lifecycle-pipeline ariaLabelKey="ppm.projects.lifecycle.stagesLabel" [steps]="[
|
|
12310
|
+
* { labelKey: 'ppm.projects.lifecycle.phase1Gate', statusLabelKey: 'common.status.approved', tone: 'success', progress: '1 / 1' },
|
|
12311
|
+
* { labelKey: 'ppm.projects.lifecycle.phase2Gate', statusLabelKey: 'ppm.projects.lifecycle.status.inProgress', tone: 'accent', current: true },
|
|
12312
|
+
* { labelKey: 'ppm.projects.lifecycle.closureGate', statusLabelKey: 'ppm.projects.lifecycle.status.notStarted', tone: 'neutral' },
|
|
12313
|
+
* ]" [rollup]="[
|
|
12314
|
+
* { labelKey: 'ppm.projects.lifecycle.rollup.planned', value: 2 },
|
|
12315
|
+
* { labelKey: 'ppm.projects.lifecycle.rollup.inProgress', value: 2 },
|
|
12316
|
+
* ]" />
|
|
12317
|
+
* ```
|
|
12318
|
+
*/
|
|
12319
|
+
declare class FlyLifecyclePipelineComponent {
|
|
12320
|
+
readonly steps: _angular_core.InputSignal<readonly LifecycleStep[]>;
|
|
12321
|
+
readonly rollup: _angular_core.InputSignal<readonly LifecycleRollupItem[]>;
|
|
12322
|
+
/** i18n key for the `role="list"` accessible name. */
|
|
12323
|
+
readonly ariaLabelKey: _angular_core.InputSignal<string>;
|
|
12324
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlyLifecyclePipelineComponent, never>;
|
|
12325
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlyLifecyclePipelineComponent, "fly-lifecycle-pipeline", never, { "steps": { "alias": "steps"; "required": true; "isSignal": true; }; "rollup": { "alias": "rollup"; "required": false; "isSignal": true; }; "ariaLabelKey": { "alias": "ariaLabelKey"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
12326
|
+
}
|
|
12327
|
+
|
|
12084
12328
|
/**
|
|
12085
12329
|
* Previous / «page / total» / next pager (markup and styles extracted from the
|
|
12086
12330
|
* reference listing pagination), with optional first/last edge buttons behind
|
|
@@ -12714,6 +12958,45 @@ declare class FlySectionHeaderComponent {
|
|
|
12714
12958
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlySectionHeaderComponent, "fly-section-header", never, { "titleKey": { "alias": "titleKey"; "required": false; "isSignal": true; }; }, {}, never, ["[section-title]", "[section-actions]"], true, never>;
|
|
12715
12959
|
}
|
|
12716
12960
|
|
|
12961
|
+
/**
|
|
12962
|
+
* Shared shell for a Project-Details-style "Overview" page: a flat stack of
|
|
12963
|
+
* sections separated by hairlines — deliberately NOT a stack of cards. Every
|
|
12964
|
+
* section gets the same quiet eyebrow label; the body (stats / text / rows /
|
|
12965
|
+
* chips / members / …) is left to content projection, so a section that
|
|
12966
|
+
* carries real interaction (Members' add/remove, Lifecycle's "Move to"
|
|
12967
|
+
* actions) keeps its own live markup untouched. This component owns only the
|
|
12968
|
+
* shell + eyebrow + divider rhythm, never the variant bodies.
|
|
12969
|
+
*
|
|
12970
|
+
* First/last spacing resolves from DOM position (`:first-of-type` /
|
|
12971
|
+
* `:last-of-type` on the host tag), not an input — sections render from a
|
|
12972
|
+
* list, and a caller reordering or filtering that list should never also
|
|
12973
|
+
* have to recompute an explicit "am I first" flag.
|
|
12974
|
+
*
|
|
12975
|
+
* ```html
|
|
12976
|
+
* <fly-overview-section titleKey="ppm.projects.overview.summary">
|
|
12977
|
+
* <fly-overview-kpi-row [items]="kpis()" />
|
|
12978
|
+
* </fly-overview-section>
|
|
12979
|
+
*
|
|
12980
|
+
* <fly-overview-section titleKey="ppm.projects.overview.description">
|
|
12981
|
+
* <fly-overview-surface [proseText]="true">{{ project().description }}</fly-overview-surface>
|
|
12982
|
+
* </fly-overview-section>
|
|
12983
|
+
*
|
|
12984
|
+
* <!-- Sections with their own live interaction just project their existing
|
|
12985
|
+
* markup — the shell never dictates what a Members/Lifecycle body renders. -->
|
|
12986
|
+
* <fly-overview-section titleKey="ppm.projects.overview.members">
|
|
12987
|
+
* <fly-overview-surface>
|
|
12988
|
+
* <app-project-members-list [members]="members()" (removed)="onRemove($event)" />
|
|
12989
|
+
* </fly-overview-surface>
|
|
12990
|
+
* </fly-overview-section>
|
|
12991
|
+
* ```
|
|
12992
|
+
*/
|
|
12993
|
+
declare class FlyOverviewSectionComponent {
|
|
12994
|
+
/** i18n key for the eyebrow label; alternatively project `[section-title]`. */
|
|
12995
|
+
readonly titleKey: _angular_core.InputSignal<string | undefined>;
|
|
12996
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlyOverviewSectionComponent, never>;
|
|
12997
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FlyOverviewSectionComponent, "fly-overview-section", never, { "titleKey": { "alias": "titleKey"; "required": false; "isSignal": true; }; }, {}, never, ["[section-title]", "*"], true, never>;
|
|
12998
|
+
}
|
|
12999
|
+
|
|
12717
13000
|
/**
|
|
12718
13001
|
* Detail-page content card — the surface every panel and sidebar block on a detail
|
|
12719
13002
|
* screen sits on: `card-surface` fill/hairline/radius/shadow, an optional
|
|
@@ -13900,6 +14183,6 @@ declare const AUDIENCE_ERROR_CODES: {
|
|
|
13900
14183
|
};
|
|
13901
14184
|
type AudienceErrorCode = (typeof AUDIENCE_ERROR_CODES)[keyof typeof AUDIENCE_ERROR_CODES];
|
|
13902
14185
|
|
|
13903
|
-
export { AGENT_DRAG_MIME, AGENT_PAYLOAD_VERSION, APP_LOOKUP, AUDIENCE_ERROR_CODES, AUDIENCE_LIMITS, AUDIENCE_PRESETS, AUDIENCE_TERM_KINDS, AgentActionBus, AgentActionUnsupportedDispatchError, AgentCommandRegistry, AgentDropRegistry, AgentFlightAnimator, AgentLookupRegistry, AgentPayloadOversizeError, AudienceBuilderComponent, AuthService, BilingualFieldComponent, CRON_MODES, CRON_WEEKDAYS, ContextMenuComponent, DEFAULT_AGENT_PAYLOAD_LIMITS, DEFAULT_FLY_THEME_MODE, DS_BASELINE_LOCALES, DashboardKpiComponent, DialogResult, ENTITY_LINK_LAUNCHER, EntityLookupComponent, FLYOS_LAUNCH_EVENT, FLYOS_LAUNCH_REQUEST_EVENT, FLYOS_REMOTE_ROUTE_EVENT, FLY_ACCENT_PROPERTY, FLY_ADMIN_ROLES, FLY_CHUNK_RELOAD_FLAG, FLY_COMPACT_THRESHOLD, FLY_COUNTRIES, FLY_CURRENCIES_BRIEF_ENDPOINT, FLY_CURRENCY_DEFAULT_ENDPOINT, FLY_EMOJI_BY_ID, FLY_EMOJI_CATEGORIES, FLY_EMOJI_CATEGORY_BY_ID, FLY_EMOJI_DEFAULT_CATEGORIES, FLY_EMOJI_PACK, FLY_EMOJI_PACK_MISSING_MESSAGE, FLY_EMOJI_PREVIEW_COUNT, FLY_EMPTY_VALUE, FLY_LOCALE_CATALOG, FLY_MAGIC_BAR_EVENT, FLY_MAGIC_BAR_ICONS, FLY_MAGIC_BAR_STORE_KEY, FLY_NF_CACHE_HEAL_FLAG, FLY_RELOAD_DEBOUNCE_MS, FLY_RELOAD_REARM_MS, FLY_REMOTE_BASE_PATH, FLY_REMOTE_CONTEXT_EVENT, FLY_REMOTE_CONTEXT_STORE_KEY, FLY_REMOTE_ROUTES, FLY_SCAN_PENDING_DEFAULT_DELAY_MS, FLY_SCAN_PENDING_MAX_RETRIES, FLY_SCAN_PENDING_STATUS, FLY_SEARCH_DEBOUNCE_MS, FLY_SKIN_TONES, FLY_STANDALONE_AUTH_CONFIG, FLY_STRATEGY_OBJECTIVES_LOOKUP_ENDPOINT, FLY_THEME_MODE_IDS, FLY_VIEWPORT_IS_MOBILE, FLY_WINDOW_BREADCRUMBS_EVENT, FLY_WINDOW_BREADCRUMBS_STORE_KEY, FLY_WINDOW_HELP_HINT_EVENT, FLY_WINDOW_PAGE_TITLE_EVENT, FlyAchievementProgressComponent, FlyActionMenuComponent, FlyActionStackComponent, FlyAgentDraggableDirective, FlyAnimatedEmojiComponent, FlyAppHomeComponent, FlyAppTopbarComponent, FlyAppUnavailableComponent, FlyAuthLiveRefresh, FlyBadgeWallComponent, FlyBlockUiComponent, FlyBreadcrumbComponent, FlyButtonComponent, FlyBytesPipe, FlyCaptchaComponent, FlyCardActionsComponent, FlyCardBodyComponent, FlyCardComponent, FlyCardFooterComponent, FlyCardGridComponent, FlyCardMediaComponent, FlyCardMetaComponent, FlyCardStatusComponent, FlyCardTitleComponent, FlyCellDirective, FlyCheckboxComponent, FlyChipComponent, FlyChunkReloadErrorHandler, FlyClickOutsideDirective, FlyCollapsibleComponent, FlyCommentThreadComponent, FlyCompactNumberPipe, FlyConfirmDialogComponent, FlyControlDirective, FlyCronBuilderComponent, FlyCurrencyCatalogService, FlyCurrencySelectorComponent, FlyDataTableComponent, FlyDatePipe, FlyDateTimePipe, FlyDebouncer, FlyDecimalNumberPipe, FlyDeepLinkPrefetchService, FlyDetailCardComponent, FlyDetailShellComponent, FlyDrawerComponent, FlyDurationPipe, FlyDynamicFormComponent, FlyEmojiPickerComponent, FlyFieldComponent, FlyFileDownloadService, FlyFileUploadComponent, FlyFilterPanelComponent, FlyFormBannerComponent, FlyFormFooterComponent, FlyFormGridComponent, FlyFormSectionComponent, FlyFullNumberPipe, FlyGanttComponent, FlyHubClient, FlyIconButtonComponent, FlyIfAdminDirective, FlyIfRoleDirective, FlyImageUploadComponent, FlyLeaderboardComponent, FlyMagicActionsComponent, FlyMetaListComponent, FlyModalComponent, FlyModerationQueueComponent, FlyModuleIconDirective, FlyMoneyPipe, FlyPagerComponent, FlyPaginationComponent, FlyPeoplePickerComponent, FlyPointsTierComponent, FlyProgressComponent, FlyRelativeTimePipe, FlyRemoteContextService, FlyRemoteRouter, FlyRemoteRouterOutletComponent, FlySearchInputComponent, FlySectionHeaderComponent, FlySecureSrcDirective, FlySegmentedComponent, FlySelectComponent, FlySkeletonComponent, FlySliderComponent, FlySparklineComponent, FlySpinnerComponent, FlyStandaloneAuthCallbackComponent, FlyStandaloneAuthService, FlyStandaloneMagicActionsComponent, FlyStateMessageComponent, FlyStrategySelectorComponent, FlyDynamicFormComponent as FlySurveyFormComponent, FlyTabComponent, FlyTabsComponent, FlyTagsInputComponent, FlyThemeService, FlyTimePipe, FlyToastService, FlyToggleComponent, FlyTooltipDirective, FlyTreeNavComponent, FlyTypeaheadComponent, FlyUserDirectoryService, FlyWindowHelpService, FlyWindowTitleService, FlyosPendingLaunchesGlobalKey, FlyosShellHandlesLaunchRequestsGlobalKey, FlyosShellOwnsHistoryGlobalKey, GANTT_DEPENDENCY_TYPES, GANTT_ROW_TINT_ALPHA, GANTT_ZOOMS, I18nService, LAUNCH_CONTEXT, MAGIC_BAR_SEARCH_WIDTH_DEFAULT, MAGIC_BAR_SEARCH_WIDTH_MAX, MAGIC_BAR_SEARCH_WIDTH_MIN, MagicBarRegistry, MessageBoxButtons, MessageBoxComponent, MessageBoxIcon, MessageBoxService, MockAuthService, NOVA_PRIORITY_TONE, NOVA_STATUS_TONE, NOVA_TONE_FALLBACK, OverlayStack, PRESENCE_COLORS, PageHeaderComponent, RTL_LOCALE_SET, SHARE_ORG_CHART_SYSTEM_KEY_APPS, SHARE_ORG_CHART_SYSTEM_KEY_DEFAULT, SHARE_PANEL_DEFAULT_FILE_LEVELS, STATE_DEFAULT_ICONS, STATE_DEFAULT_MESSAGE_KEYS, STEP_UP_CODE, STEP_UP_REAUTH_HANDLER, STEP_UP_RETURN_KEY, SUPPORTED_AGENT_PAYLOAD_VERSIONS, SharePanelComponent, SourceAppResolver, StandaloneWindowManagerService, StatusBadgeComponent, StepUpService, ToastHostComponent, TranslatePipe, WINDOW_DATA, WINDOW_HELP_HINT, WindowBreadcrumbsRegistry, WindowManagerService, applySkinTone, applySuggestion, ariaSort, buildCron, canConfirm, canGoNext$1 as canGoNext, canGoPrev$1 as canGoPrev, captureFocus, clampMagicBarSearchWidth, clampPage$1 as clampPage, clampSliderValue, connectRemoteLaunch, enterActivatesNatively, filterGroup, filterSuggestions, findLocaleByDialect, findLocaleByPrefix, firstEnabledIndex, firstModuleIndex, flattenModules, flyAdminGuard, flyApiErrorMessage, flyCaptchaBase64Utf8, flyCaptchaBuildToken, flyCaptchaSha256Hex, flyCompactNumber, flyDebounced, flyDecimalNumber, flyDownloadBlob, flyDuration, flyEmojiFor, flyEmojiIsTonable, flyEmojiPackUrl, flyExportFileName, flyFirstEnabledIndex, flyFormatBytes, flyFormatDate, flyFormatDateTime, flyFormatMoney, flyFormatTime, flyFullNumber, flyNextEnabledIndex, flyNextSegmentIndex, flyRelativeTime, flyResolveActiveTab, flyRoleGuard, flyScanPendingDelayMs, flyScanRetry, flySignedCompact, flySkinToneLabelKey, flyStandaloneAuthGuard, flyStandaloneAuthInterceptor, flyToDateOnly, flyToPage, flyUnwrap, flyUnwrapCurrencies, flyUnwrapCurrency, flyUnwrapLenient, flyUnwrapObjectiveLookup, hasAnyRoleIn, healNativeFederationCacheOnce, initialExpanded, isAccentColor, isChunkLoadError, isFlyAuthStorePopulated, isNativeFederationCacheError, isRtlLocale, isRtlLocaleEntry, isValidCron, isValidSingleField, loadRemoteStyles, magicBarOwnerKey, magicBarSearchText, matchFlyRoutePattern, nextEnabledIndex, nextModuleIndex, nextSegmentIndex, nextSort, normalizeFlyTheme, normalizeRoles, novaPriorityToneVar, novaStatusToneVar, overlayStack, canGoNext as pagerCanGoNext, canGoPrev as pagerCanGoPrev, clampPage as pagerClampPage, parseCron, parseStepUpChallenge, parseTags, prefetchRemoteStyles, presenceColorFor, printConsoleSecurityWarning, provideFlyChunkReloadRecovery, provideFlyEmojiPack, provideFlyStandaloneAuth, reloadOnceForChunkError, requestAppLaunch, resolveActiveModule, resolveActiveSection, resolveActiveTab, resolveCellValue, resolveStateIcon, resolveStateMessageKey, restoreFocus, sameTags, sectionHintKey, sectionLayout, sliderTrackGradient, sparklinePath, sparklinePoints, stepUpInterceptor, stepUpReturnKey, trimAgentPayload, trimAgentString, unloadRemoteStyles, utf8ByteLength, validateAgentPayload, warnIfEmbeddedSessionMissing };
|
|
13904
|
-
export type { ActionMenuItem, AgentAction, AgentActionDispatch, AgentActionVerb, AgentChipHostInputs, AgentCommand, AgentCommandContextBinding, AgentCommandHandle, AgentCommandRegistration, AgentCommandScope, AgentCommandSlashSpec, AgentDragPayload, AgentDraggableItem, AgentDropChipMode, AgentDropRendererRegistration, AgentEnvelopeAttachment, AgentMcpScope, AgentMessageEnvelope, AgentPayloadLimits, AgentPayloadValidationResult, AppEveryonePrincipal, AppEveryoneTerm, AppLookup, AppLookupEntry, AudienceEditTarget, AudienceErrorCode, AudienceFilter, AudienceOptions, AudiencePresetKind, AudienceTerm, AudienceTermKind, BreadcrumbItem, ButtonSize, ButtonVariant, CardDensity, CardLayout, ChartTerm, ChildWindowData, ChipTone, ConfirmKind, ConnectRemoteLaunchOptions, ContextMenuAlign, ContextMenuItem, ContextMenuSection, CronAdvancedFieldDef, CronMode, CronParts, CronWeekday, DesktopApp, DesktopAppCategory, DesktopAppKind, DetailSection, DialogResultWithAcknowledgement, EmbeddedSessionProbe, EntityLinkLauncher, EntityLinkSelection, FilterGroup, FlyAchievementRow, FlyApiError, FlyApiResponse, FlyAppHomeLayout, FlyAppModule, FlyAppModuleSection, FlyAppUnavailableState, FlyAuthRefreshPayload, FlyAuthStoreReadable, FlyBadgeTile, FlyBreadcrumbItem, FlyCaptchaChallenge, FlyCaptchaSolution, FlyCaptchaState, FlyCellContext, FlyColumn, FlyColumnKind, FlyComment, FlyCommentDeleteRequest, FlyCommentEditRequest, FlyCommentLoadMoreRequest, FlyCommentLoadRepliesRequest, FlyCommentLockToggleRequest, FlyCommentPage, FlyCommentReportReason, FlyCommentReportRequest, FlyCommentReportStatus, FlyCommentSubmitRequest, FlyCountry, FlyCurrency, FlyCurrencyFetchFn, FlyCurrencySelectorMode, FlyCurrencySelectorValue, FlyDeepLinkPrefetchRoute, FlyDrawerBodyPadding, FlyDrawerPosition, FlyDrawerSide, FlyDrawerSize, FlyDrawerVariant, FlyEmojiCategory, FlyEmojiCell, FlyEmojiEntry, FlyEmojiPack, FlyEmojiPackEntry, FlyEmojiPackManifest, FlyEmojiPickerSize, FlyEmojiPickerTab, FlyEmojiSection, FlyFileInfo, FlyFileSelection, FlyFormAnswer, FlyFormAnswerValue, FlyFormDefinition, FlyFormFieldOptions, FlyFormOption, FlyFormQuestion, FlyFormQuestionType, FlyFormScoreDisplay, FlyFormatMoneyOptions, FlyLaunchEventDetail, FlyLaunchRequestDetail, FlyLeaderboardRow, FlyLiveRefreshOptions, FlyLocaleEntry, FlyMagicBarIconName, FlyMetaItem, FlyModerationLoadPageRequest, FlyModerationLockThreadRequest, FlyModerationOpenSubjectRequest, FlyModerationReport, FlyModerationReportPage, FlyModerationResolutionStatus, FlyModerationResolveRequest, FlyMoneyDisplay, FlyNavigableItem, FlyPageMeta, FlyPageResult, FlyPaged, FlyPeoplePickerMode, FlyPeoplePickerOption, FlyPeopleSearchFn, FlyPointsSummary, FlyRemoteContext, FlyRemoteEagerRoute, FlyRemoteLazyRoute, FlyRemoteLoadedComponent, FlyRemoteMatch, FlyRemoteRoute, FlyRemoteRouteEventDetail, FlySearchExpandTrigger, FlySearchInputSize, FlySecureSrcState, FlySelectOption, FlySelectValue, FlySkeletonAnimation, FlySkeletonLayout, FlySkeletonShape, FlySkinTone, FlySort, FlyStandaloneAuthConfig, FlyStrategyObjectiveRef, FlyStrategyObjectiveSearchFn, FlyFileSelection as FlySurveyFileSelection, FlyFormAnswer as FlySurveyFormAnswer, FlyFormAnswerValue as FlySurveyFormAnswerValue, FlyFormDefinition as FlySurveyFormDefinition, FlyFormFieldOptions as FlySurveyFormFieldOptions, FlyFormOption as FlySurveyFormOption, FlyFormQuestion as FlySurveyFormQuestion, FlyFormQuestionType as FlySurveyQuestionType, FlyTenantDefaultCurrencyFetchFn, FlyThemeMode, FlyTooltipPlacement, FlyTreeNavNode, FlyTypeaheadOption, FlyWindowHelpHintEventDetail, FlyWindowHelpPublisher, FlyWindowPageTitleEventDetail, FlyWindowTitlePublisher, FlyosPendingLaunches, FocusRestore, FormBannerKind, GanttDependency, GanttDependencyCreate, GanttDependencyDelete, GanttDependencyType, GanttRow, GanttRowDatesChange, GanttRowKind, GanttZoom, IconButtonVariant, LaunchContext, LoadBundleOptions, LoadRemoteStylesOptions, LookupDescriptor, LookupHandle, LookupRegistration, LookupResult, LookupSearch, MagicBarAction, MagicBarActionKind, MagicBarActionSpec, MagicBarActionView, MagicBarContribution, MagicBarGroup, MagicBarGroupSpec, MagicBarGroupView, MagicBarOwnerRef, MagicBarPublisher, MagicBarRadioMenu, MagicBarRadioMenuSpec, MagicBarRadioMenuView, MagicBarRadioOption, MagicBarSearch, MagicBarSearchSeed, MagicBarSearchSpec, MagicBarSearchView, MagicBarTextParams, MagicBarTone, MagicBarView, MessageBoxButton, MessageBoxDontAskAgainConfig, MessageBoxOptions, MessageBoxOptionsWithAcknowledgement, MockAuthConfig, OpenWindowOptions, OuPrincipal, OuTerm, OverlayHandle, PageHeaderVariant, PresetTerm, ProgressTone, RemoteAppDef, RequestAppLaunchOptions, RoleOuLookupRow, RolePrincipal, RolesTerm, SegmentedOption, SegmentedVariant, ShareOrgChartOption, ShareOuNode, SharePanelLevelOption, SharePermissionEntry, SharePrincipal, SharePrincipalKind, ShareUserResult, StateMessageKind, StepUpChallenge, StepUpReauthHandler, StepUpReauthRequest, TabsVariant, ToastAction, ToastEntry, ToastOptions, ToastVariant, User, UserPrincipal, UsersTerm, WindowBreadcrumb, WindowHelpHint, WindowInstance, WindowState };
|
|
14186
|
+
export { AGENT_DRAG_MIME, AGENT_PAYLOAD_VERSION, APP_LOOKUP, AUDIENCE_ERROR_CODES, AUDIENCE_LIMITS, AUDIENCE_PRESETS, AUDIENCE_TERM_KINDS, AgentActionBus, AgentActionUnsupportedDispatchError, AgentCommandRegistry, AgentDropRegistry, AgentFlightAnimator, AgentLookupRegistry, AgentPayloadOversizeError, AudienceBuilderComponent, AuthService, BilingualFieldComponent, CRON_MODES, CRON_WEEKDAYS, ContextMenuComponent, DEFAULT_AGENT_PAYLOAD_LIMITS, DEFAULT_FLY_THEME_MODE, DS_BASELINE_LOCALES, DashboardKpiComponent, DialogResult, ENTITY_LINK_LAUNCHER, EntityLookupComponent, FLYOS_LAUNCH_EVENT, FLYOS_LAUNCH_REQUEST_EVENT, FLYOS_REMOTE_ROUTE_EVENT, FLY_ACCENT_PROPERTY, FLY_ADMIN_ROLES, FLY_CHUNK_RELOAD_FLAG, FLY_COMPACT_THRESHOLD, FLY_COUNTRIES, FLY_CURRENCIES_BRIEF_ENDPOINT, FLY_CURRENCY_DEFAULT_ENDPOINT, FLY_EMOJI_BY_ID, FLY_EMOJI_CATEGORIES, FLY_EMOJI_CATEGORY_BY_ID, FLY_EMOJI_DEFAULT_CATEGORIES, FLY_EMOJI_PACK, FLY_EMOJI_PACK_MISSING_MESSAGE, FLY_EMOJI_PREVIEW_COUNT, FLY_EMPTY_VALUE, FLY_LOCALE_CATALOG, FLY_MAGIC_BAR_EVENT, FLY_MAGIC_BAR_ICONS, FLY_MAGIC_BAR_STORE_KEY, FLY_NF_CACHE_HEAL_FLAG, FLY_RELOAD_DEBOUNCE_MS, FLY_RELOAD_REARM_MS, FLY_REMOTE_BASE_PATH, FLY_REMOTE_CONTEXT_EVENT, FLY_REMOTE_CONTEXT_STORE_KEY, FLY_REMOTE_ROUTES, FLY_SCAN_PENDING_DEFAULT_DELAY_MS, FLY_SCAN_PENDING_MAX_RETRIES, FLY_SCAN_PENDING_STATUS, FLY_SEARCH_DEBOUNCE_MS, FLY_SKIN_TONES, FLY_STANDALONE_AUTH_CONFIG, FLY_STRATEGY_OBJECTIVES_LOOKUP_ENDPOINT, FLY_THEME_MODE_IDS, FLY_VIEWPORT_IS_MOBILE, FLY_WINDOW_BREADCRUMBS_EVENT, FLY_WINDOW_BREADCRUMBS_STORE_KEY, FLY_WINDOW_HELP_HINT_EVENT, FLY_WINDOW_PAGE_TITLE_EVENT, FlyAchievementProgressComponent, FlyActionMenuComponent, FlyActionStackComponent, FlyAgentDraggableDirective, FlyAnimatedEmojiComponent, FlyAppHomeComponent, FlyAppTopbarComponent, FlyAppUnavailableComponent, FlyAuthLiveRefresh, FlyBadgeWallComponent, FlyBlockUiComponent, FlyBreadcrumbComponent, FlyButtonComponent, FlyBytesPipe, FlyCaptchaComponent, FlyCardActionsComponent, FlyCardBodyComponent, FlyCardComponent, FlyCardFooterComponent, FlyCardGridComponent, FlyCardMediaComponent, FlyCardMetaComponent, FlyCardStatusComponent, FlyCardTitleComponent, FlyCellDirective, FlyCheckboxComponent, FlyChipComponent, FlyChunkReloadErrorHandler, FlyClickOutsideDirective, FlyCollapsibleComponent, FlyCommentThreadComponent, FlyCompactNumberPipe, FlyConfirmDialogComponent, FlyControlDirective, FlyCronBuilderComponent, FlyCurrencyCatalogService, FlyCurrencySelectorComponent, FlyDataTableComponent, FlyDatePipe, FlyDateTimePipe, FlyDebouncer, FlyDecimalNumberPipe, FlyDeepLinkPrefetchService, FlyDetailCardComponent, FlyDetailShellComponent, FlyDrawerComponent, FlyDurationPipe, FlyDynamicFormComponent, FlyEmojiPickerComponent, FlyFieldComponent, FlyFileDownloadService, FlyFileUploadComponent, FlyFilterPanelComponent, FlyFormBannerComponent, FlyFormFooterComponent, FlyFormGridComponent, FlyFormSectionComponent, FlyFullNumberPipe, FlyGanttComponent, FlyHubClient, FlyIconButtonComponent, FlyIfAdminDirective, FlyIfRoleDirective, FlyImageUploadComponent, FlyLeaderboardComponent, FlyLifecyclePipelineComponent, FlyMagicActionsComponent, FlyMetaListComponent, FlyModalComponent, FlyModerationQueueComponent, FlyModuleIconDirective, FlyMoneyPipe, FlyOverviewKpiRowComponent, FlyOverviewRowsComponent, FlyOverviewSectionComponent, FlyOverviewSurfaceComponent, FlyPagerComponent, FlyPaginationComponent, FlyPeoplePickerComponent, FlyPointsTierComponent, FlyProgressComponent, FlyRelativeTimePipe, FlyRemoteContextService, FlyRemoteRouter, FlyRemoteRouterOutletComponent, FlySearchInputComponent, FlySectionHeaderComponent, FlySecureSrcDirective, FlySegmentedComponent, FlySelectComponent, FlySkeletonComponent, FlySliderComponent, FlySparklineComponent, FlySpinnerComponent, FlyStandaloneAuthCallbackComponent, FlyStandaloneAuthService, FlyStandaloneMagicActionsComponent, FlyStateMessageComponent, FlyStrategySelectorComponent, FlyDynamicFormComponent as FlySurveyFormComponent, FlyTabComponent, FlyTabsComponent, FlyTagsInputComponent, FlyThemeService, FlyTimePipe, FlyToastService, FlyToggleComponent, FlyTooltipDirective, FlyTreeNavComponent, FlyTypeaheadComponent, FlyUserDirectoryService, FlyWindowHelpService, FlyWindowTitleService, FlyosPendingLaunchesGlobalKey, FlyosShellHandlesLaunchRequestsGlobalKey, FlyosShellOwnsHistoryGlobalKey, GANTT_DEPENDENCY_TYPES, GANTT_ROW_TINT_ALPHA, GANTT_ZOOMS, I18nService, LAUNCH_CONTEXT, MAGIC_BAR_SEARCH_WIDTH_DEFAULT, MAGIC_BAR_SEARCH_WIDTH_MAX, MAGIC_BAR_SEARCH_WIDTH_MIN, MagicBarRegistry, MessageBoxButtons, MessageBoxComponent, MessageBoxIcon, MessageBoxService, MockAuthService, NOVA_PRIORITY_TONE, NOVA_STATUS_TONE, NOVA_TONE_FALLBACK, OverlayStack, PRESENCE_COLORS, PageHeaderComponent, RTL_LOCALE_SET, SHARE_ORG_CHART_SYSTEM_KEY_APPS, SHARE_ORG_CHART_SYSTEM_KEY_DEFAULT, SHARE_PANEL_DEFAULT_FILE_LEVELS, STATE_DEFAULT_ICONS, STATE_DEFAULT_MESSAGE_KEYS, STEP_UP_CODE, STEP_UP_REAUTH_HANDLER, STEP_UP_RETURN_KEY, SUPPORTED_AGENT_PAYLOAD_VERSIONS, SharePanelComponent, SourceAppResolver, StandaloneWindowManagerService, StatusBadgeComponent, StepUpService, ToastHostComponent, TranslatePipe, WINDOW_DATA, WINDOW_HELP_HINT, WindowBreadcrumbsRegistry, WindowManagerService, applySkinTone, applySuggestion, ariaSort, buildCron, canConfirm, canGoNext$1 as canGoNext, canGoPrev$1 as canGoPrev, captureFocus, clampMagicBarSearchWidth, clampPage$1 as clampPage, clampSliderValue, connectRemoteLaunch, enterActivatesNatively, filterGroup, filterSuggestions, findLocaleByDialect, findLocaleByPrefix, firstEnabledIndex, firstModuleIndex, flattenModules, flyAdminGuard, flyApiErrorMessage, flyCaptchaBase64Utf8, flyCaptchaBuildToken, flyCaptchaSha256Hex, flyCompactNumber, flyDebounced, flyDecimalNumber, flyDownloadBlob, flyDuration, flyEmojiFor, flyEmojiIsTonable, flyEmojiPackUrl, flyExportFileName, flyFirstEnabledIndex, flyFormatBytes, flyFormatDate, flyFormatDateTime, flyFormatMoney, flyFormatTime, flyFullNumber, flyNextEnabledIndex, flyNextSegmentIndex, flyRelativeTime, flyResolveActiveTab, flyRoleGuard, flyScanPendingDelayMs, flyScanRetry, flySignedCompact, flySkinToneLabelKey, flyStandaloneAuthGuard, flyStandaloneAuthInterceptor, flyToDateOnly, flyToPage, flyUnwrap, flyUnwrapCurrencies, flyUnwrapCurrency, flyUnwrapLenient, flyUnwrapObjectiveLookup, hasAnyRoleIn, healNativeFederationCacheOnce, initialExpanded, isAccentColor, isChunkLoadError, isFlyAuthStorePopulated, isNativeFederationCacheError, isRtlLocale, isRtlLocaleEntry, isValidCron, isValidSingleField, loadRemoteStyles, magicBarOwnerKey, magicBarSearchText, matchFlyRoutePattern, nextEnabledIndex, nextModuleIndex, nextSegmentIndex, nextSort, normalizeFlyTheme, normalizeRoles, novaPriorityToneVar, novaStatusToneVar, overlayStack, canGoNext as pagerCanGoNext, canGoPrev as pagerCanGoPrev, clampPage as pagerClampPage, parseCron, parseStepUpChallenge, parseTags, prefetchRemoteStyles, presenceColorFor, printConsoleSecurityWarning, provideFlyChunkReloadRecovery, provideFlyEmojiPack, provideFlyOfflineAuth, provideFlyStandaloneAuth, reloadOnceForChunkError, requestAppLaunch, resolveActiveModule, resolveActiveSection, resolveActiveTab, resolveCellValue, resolveStateIcon, resolveStateMessageKey, restoreFocus, sameTags, sectionHintKey, sectionLayout, sliderTrackGradient, sparklinePath, sparklinePoints, stepUpInterceptor, stepUpReturnKey, trimAgentPayload, trimAgentString, unloadRemoteStyles, utf8ByteLength, validateAgentPayload, warnIfEmbeddedSessionMissing };
|
|
14187
|
+
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, FlyOfflineAuthConfig, FlyPageMeta, FlyPageResult, FlyPaged, FlyPeoplePickerMode, FlyPeoplePickerOption, FlyPeopleSearchFn, FlyPointsSummary, FlyRemoteContext, FlyRemoteEagerRoute, FlyRemoteLazyRoute, FlyRemoteLoadedComponent, FlyRemoteMatch, FlyRemoteRoute, FlyRemoteRouteEventDetail, FlySearchExpandTrigger, FlySearchInputSize, FlySecureSrcState, FlySelectOption, FlySelectValue, FlySkeletonAnimation, FlySkeletonLayout, FlySkeletonShape, FlySkinTone, FlySort, FlyStandaloneAuthConfig, FlyStrategyObjectiveRef, FlyStrategyObjectiveSearchFn, FlyFileSelection as FlySurveyFileSelection, FlyFormAnswer as FlySurveyFormAnswer, FlyFormAnswerValue as FlySurveyFormAnswerValue, FlyFormDefinition as FlySurveyFormDefinition, FlyFormFieldOptions as FlySurveyFormFieldOptions, FlyFormOption as FlySurveyFormOption, FlyFormQuestion as FlySurveyFormQuestion, FlyFormQuestionType as FlySurveyQuestionType, FlyTenantDefaultCurrencyFetchFn, FlyThemeMode, FlyTooltipPlacement, FlyTreeNavNode, FlyTypeaheadOption, FlyWindowHelpHintEventDetail, FlyWindowHelpPublisher, FlyWindowPageTitleEventDetail, FlyWindowTitlePublisher, FlyosPendingLaunches, FocusRestore, FormBannerKind, GanttDependency, GanttDependencyCreate, GanttDependencyDelete, GanttDependencyType, GanttRow, GanttRowDatesChange, GanttRowKind, GanttZoom, IconButtonVariant, LaunchContext, LifecycleRollupItem, LifecycleStep, 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, OverviewKpiItem, OverviewKpiTone, OverviewRow, PageHeaderVariant, PresetTerm, ProgressTone, RemoteAppDef, RequestAppLaunchOptions, RoleOuLookupRow, RolePrincipal, RolesTerm, SegmentedOption, SegmentedVariant, ShareOrgChartOption, ShareOuNode, SharePanelLevelOption, SharePermissionEntry, SharePrincipal, SharePrincipalKind, ShareUserResult, StateMessageKind, StepUpChallenge, StepUpReauthHandler, StepUpReauthRequest, TabsVariant, ToastAction, ToastEntry, ToastOptions, ToastVariant, User, UserPrincipal, UsersTerm, WindowBreadcrumb, WindowHelpHint, WindowInstance, WindowState };
|
|
13905
14188
|
//# sourceMappingURL=flyos-design-system.d.ts.map
|