@magmonium/one 0.2.36 → 0.2.38

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.
@@ -1946,6 +1946,7 @@ type ContextMenu = Config & {
1946
1946
 
1947
1947
  declare class ContextMenuBoxComponent {
1948
1948
  readonly options: _angular_core.InputSignal<MenuItem[][]>;
1949
+ readonly hide: _angular_core.InputSignal<string[] | undefined>;
1949
1950
  readonly file: _angular_core.InputSignal<string | undefined>;
1950
1951
  readonly width: _angular_core.InputSignal<string>;
1951
1952
  readonly height: _angular_core.InputSignal<string>;
@@ -1956,7 +1957,7 @@ declare class ContextMenuBoxComponent {
1956
1957
  readonly extraData: _angular_core.InputSignal<unknown>;
1957
1958
  protected readonly emitAction: (item: MenuItem) => void;
1958
1959
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ContextMenuBoxComponent, never>;
1959
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ContextMenuBoxComponent, "m-context-menu-box", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; "file": { "alias": "file"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "isAdmin": { "alias": "isAdmin"; "required": false; "isSignal": true; }; "visibilityRule": { "alias": "visibilityRule"; "required": false; "isSignal": true; }; "disableRule": { "alias": "disableRule"; "required": false; "isSignal": true; }; "extraData": { "alias": "extraData"; "required": false; "isSignal": true; }; }, { "action": "action"; }, never, never, true, never>;
1960
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ContextMenuBoxComponent, "m-context-menu-box", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; "hide": { "alias": "hide"; "required": false; "isSignal": true; }; "file": { "alias": "file"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "isAdmin": { "alias": "isAdmin"; "required": false; "isSignal": true; }; "visibilityRule": { "alias": "visibilityRule"; "required": false; "isSignal": true; }; "disableRule": { "alias": "disableRule"; "required": false; "isSignal": true; }; "extraData": { "alias": "extraData"; "required": false; "isSignal": true; }; }, { "action": "action"; }, never, never, true, never>;
1960
1961
  }
1961
1962
 
1962
1963
  declare class ContextMenuComponent extends ConfigComponent<ContextMenu> {
@@ -6658,6 +6659,30 @@ type PanelOverlayConfig = Config & {
6658
6659
  component?: string | OverlayWidgetLoader;
6659
6660
  form?: string;
6660
6661
  };
6662
+ /**
6663
+ * What a confirmation asks. `header` and `body` are TranslationAsset keys, not
6664
+ * wording — the same indirection every other message in the library goes
6665
+ * through, so one dialog serves every language.
6666
+ *
6667
+ * `kind` is whether the question can be refused at all: `yes` is an
6668
+ * acknowledgement and `yes-no` a decision. The two label keys override the
6669
+ * library's own wording where the question needs its own verb.
6670
+ *
6671
+ * `params` fills the MessageVariables of those two keys — values, never text:
6672
+ * a name or an id the asker knows and the message names, handed to
6673
+ * `TranslatePipe` rather than spliced into the key, so one question serves
6674
+ * every language and still says which row it is about. The buttons take none;
6675
+ * a verb has no slots.
6676
+ */
6677
+ type ConfirmOptions = {
6678
+ header?: string;
6679
+ body?: string;
6680
+ params?: Record<string, string>;
6681
+ type?: 'info' | 'success' | 'warning' | 'danger';
6682
+ kind?: 'yes' | 'yes-no';
6683
+ confirmLabel?: string;
6684
+ cancelLabel?: string;
6685
+ };
6661
6686
 
6662
6687
  declare const MODAL_REF: InjectionToken<ModalRef<unknown>>;
6663
6688
  declare class ModalRef<T = unknown> {
@@ -6689,11 +6714,8 @@ declare const ModalStore: _angular_core.Type<{
6689
6714
  activePanel: _angular_core.Signal<string | undefined>;
6690
6715
  open: (modalTrigger: ModalTrigger<unknown>) => string;
6691
6716
  close: (id?: string) => void;
6692
- confirm: (opts: {
6693
- header?: string;
6694
- body?: string;
6695
- type?: "info" | "success" | "warning" | "danger";
6696
- }, onConfirm: () => void) => void;
6717
+ ask: (opts: ConfirmOptions) => Observable<boolean>;
6718
+ confirm: (opts: ConfirmOptions, onConfirm: () => void) => void;
6697
6719
  openPanel: (panelTrigger: PanelTrigger<unknown>) => string;
6698
6720
  closePanel: (id?: string) => void;
6699
6721
  cleanupOnClose: _ngrx_signals_rxjs_interop.RxMethod<Record<string, ModalTrigger<unknown>>>;
@@ -6738,11 +6760,8 @@ declare class PanelComponent implements AfterViewInit, OnDestroy {
6738
6760
  activePanel: _angular_core.Signal<string | undefined>;
6739
6761
  open: (modalTrigger: _magmonium_one.ModalTrigger<unknown>) => string;
6740
6762
  close: (id?: string) => void;
6741
- confirm: (opts: {
6742
- header?: string;
6743
- body?: string;
6744
- type?: "info" | "success" | "warning" | "danger";
6745
- }, onConfirm: () => void) => void;
6763
+ ask: (opts: _magmonium_one.ConfirmOptions) => rxjs.Observable<boolean>;
6764
+ confirm: (opts: _magmonium_one.ConfirmOptions, onConfirm: () => void) => void;
6746
6765
  openPanel: (panelTrigger: _magmonium_one.PanelTrigger<unknown>) => string;
6747
6766
  closePanel: (id?: string) => void;
6748
6767
  cleanupOnClose: _ngrx_signals_rxjs_interop.RxMethod<Record<string, _magmonium_one.ModalTrigger<unknown>>>;
@@ -6834,12 +6853,36 @@ declare class ConfirmComponent {
6834
6853
  #private;
6835
6854
  header: _angular_core.InputSignal<string>;
6836
6855
  body: _angular_core.InputSignal<string>;
6856
+ /**
6857
+ * The MessageVariable values the two keys above name — a row's name or id the
6858
+ * asker knows and the message asks about. Values and never text: they reach
6859
+ * `TranslatePipe` as params rather than spliced into the key, so the message
6860
+ * still resolves per language. Empty is a message with no slots, which is
6861
+ * every confirmation drawn before this.
6862
+ */
6863
+ params: _angular_core.InputSignal<Record<string, string>>;
6837
6864
  type: _angular_core.InputSignal<"warning" | "success" | "info" | "danger">;
6838
- protected readonly confirmLabel: _angular_core.Signal<"delete" | "okay">;
6865
+ /**
6866
+ * Whether the question can be refused. `yes` is an acknowledgement — the one
6867
+ * button commits and there is nothing else to press — and stays the default,
6868
+ * which is what every ConfirmComponent drawn before this was.
6869
+ */
6870
+ kind: _angular_core.InputSignal<"yes" | "yes-no">;
6871
+ /**
6872
+ * The wording of each button, as a TranslationAsset key. Empty falls back to
6873
+ * the library's own — derived from `type` for the commit, `cancel` for the
6874
+ * refusal — so a caller that has nothing to say about the buttons says
6875
+ * nothing.
6876
+ */
6877
+ confirmLabel: _angular_core.InputSignal<string>;
6878
+ cancelLabel: _angular_core.InputSignal<string>;
6879
+ protected readonly confirmText: _angular_core.Signal<string>;
6880
+ protected readonly cancelText: _angular_core.Signal<string>;
6839
6881
  protected readonly iconName: _angular_core.Signal<"info" | "exclamation-triangle" | "trash" | "check-circle">;
6840
6882
  protected accept(): void;
6883
+ protected decline(): void;
6841
6884
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ConfirmComponent, never>;
6842
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ConfirmComponent, "m-confirm", never, { "header": { "alias": "header"; "required": false; "isSignal": true; }; "body": { "alias": "body"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6885
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ConfirmComponent, "m-confirm", never, { "header": { "alias": "header"; "required": false; "isSignal": true; }; "body": { "alias": "body"; "required": false; "isSignal": true; }; "params": { "alias": "params"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "kind": { "alias": "kind"; "required": false; "isSignal": true; }; "confirmLabel": { "alias": "confirmLabel"; "required": false; "isSignal": true; }; "cancelLabel": { "alias": "cancelLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6843
6886
  }
6844
6887
 
6845
6888
  declare function provideModalComponents(): EnvironmentProviders;
@@ -6902,6 +6945,31 @@ type Nav = {
6902
6945
  */
6903
6946
  seeded?: boolean;
6904
6947
  };
6948
+ /**
6949
+ * One row a `dynamic` Nav resolves to at runtime (CONTEXT.md NavRow).
6950
+ *
6951
+ * `value` is the [NavParam] value and never a NavId — a NavRef names a node
6952
+ * and the instance rides alongside as params, so a row can never disagree with
6953
+ * the tree about how its target is reached. `label` is data off the wire and is
6954
+ * therefore **never translated**: the one place a menu row's label differs in
6955
+ * kind from a Nav's own `title`, which is a TranslationAsset key.
6956
+ *
6957
+ * The same two keys `DropdownOption` spells, plus an icon, so a list already
6958
+ * fit for a Field's `options` slot is fit here.
6959
+ */
6960
+ type NavRow = {
6961
+ value: string;
6962
+ label: string;
6963
+ icon?: string;
6964
+ };
6965
+ /**
6966
+ * The parameter name a `dynamic` Nav carries when it authored none. One
6967
+ * constant because the emitted route, the Address a NavRef renders and the row
6968
+ * that fills it are the same string.
6969
+ */
6970
+ declare const DEFAULT_NAV_PARAM = "id";
6971
+ /** The parameter a `dynamic` Nav contributes, authored or defaulted. */
6972
+ declare const navParamOf: (nav: Pick<Nav, "param"> | undefined) => string;
6905
6973
  type NavMap = Record<string, Nav>;
6906
6974
  /**
6907
6975
  * A NavId in type position. ADR 0014 made one string the asset filename, the
@@ -6948,12 +7016,44 @@ interface NavMenuConfig {
6948
7016
  navMenu: Signal<BreadcrumbTrail[]>;
6949
7017
  breadcramb?: Signal<BreadCrumb>;
6950
7018
  }
6951
- type NavWidgetEntry = Type<unknown> | NavWidgetConfig | NavMenuConfig;
7019
+ /**
7020
+ * What a `dynamic` Nav registers instead of a panel: the rows it resolves at
7021
+ * runtime (CONTEXT.md NavRowSource). Registered under the dynamic Nav's own
7022
+ * NavId, but drawn in *its parent's* panel — the rows are spliced where its
7023
+ * own row stood, the transparency a Default Nav already has, because a row
7024
+ * labelled `with-category` names nothing a User recognises.
7025
+ *
7026
+ * Raw NavRows rather than a ready `BreadcrumbTrail[]`: only the nav store
7027
+ * holds the NavMap and the anchor an Address is rendered against, so a source
7028
+ * that built its own would be writing Addresses the tree never agreed to.
7029
+ * `NavMenuConfig` remains the seam for a hand-written app that wants to
7030
+ * replace a whole panel's rows.
7031
+ */
7032
+ interface NavRowsConfig {
7033
+ /**
7034
+ * `undefined` where the rows are not answerable yet, which is what an
7035
+ * emitted StateComputed reads as while any argument it takes is still
7036
+ * `undefined` (m-one-ui `generateStateComputedEntry`). Read as an empty
7037
+ * panel, the same as `[]` — a source that wants the two told apart says so
7038
+ * with `loading`.
7039
+ */
7040
+ navRows: Signal<NavRow[] | undefined>;
7041
+ /**
7042
+ * True while whatever fills the rows is still filling them. Rows are seeded
7043
+ * by a StoreHook at init, so a cold load has a window where the list is
7044
+ * legitimately empty and not yet answerable — without this, a slow fetch and
7045
+ * a genuinely empty list draw the same panel.
7046
+ */
7047
+ loading?: Signal<boolean>;
7048
+ }
7049
+ type NavWidgetEntry = Type<unknown> | NavWidgetConfig | NavMenuConfig | NavRowsConfig;
6952
7050
  /**
6953
7051
  * What an app hands `provideNavWidgets`. Keyed by NavId and nothing else — the
6954
7052
  * same string as the nav asset filename and the route stamp (ADR 0014).
6955
7053
  */
6956
7054
  type NavWidgetMap = Partial<Record<NavIdKey, NavWidgetEntry>>;
7055
+ declare function isNavMenuConfig(entry: NavWidgetEntry): entry is NavMenuConfig;
7056
+ declare function isNavRowsConfig(entry: NavWidgetEntry): entry is NavRowsConfig;
6957
7057
  /**
6958
7058
  * Multi-provided, and resolved **last-wins**: the library provides its own
6959
7059
  * Platform Nav panels first so an app registering at the same NavId replaces
@@ -6976,6 +7076,7 @@ declare class FrameComponent {
6976
7076
  protected readonly navStore: {
6977
7077
  path: _angular_core.Signal<string>;
6978
7078
  routeNavId: _angular_core.Signal<string | undefined>;
7079
+ routeParams: _angular_core.Signal<Record<string, string>>;
6979
7080
  murl: _angular_core.Signal<string[]>;
6980
7081
  appLink: _angular_core.Signal<string | undefined>;
6981
7082
  appNavId: _angular_core.Signal<string | undefined>;
@@ -7001,7 +7102,7 @@ declare class FrameComponent {
7001
7102
  navMenus: _angular_core.Signal<_magmonium_one.BreadcrumbTrail[]>;
7002
7103
  navHasContent: _angular_core.Signal<boolean>;
7003
7104
  currentWcConfig: _angular_core.Signal<dist_libs_cli_src.WebComponentConfig | undefined>;
7004
- resolvedNavMenuConfig: _angular_core.Signal<NavMenuConfig | null>;
7105
+ resolvedNavMenuConfig: _angular_core.Signal<_magmonium_one.NavMenuConfig | null>;
7005
7106
  addressFor: (navId: string, params?: Record<string, string | number>) => string;
7006
7107
  goToNav: (navId: string, params?: Record<string, string | number>, options?: {
7007
7108
  keepPanel?: boolean;
@@ -7027,6 +7128,7 @@ declare class FrameComponent {
7027
7128
  } & _ngrx_signals.StateSource<{
7028
7129
  path: string;
7029
7130
  routeNavId: string | undefined;
7131
+ routeParams: Record<string, string>;
7030
7132
  murl: string[];
7031
7133
  appLink: string | undefined;
7032
7134
  appNavId: string | undefined;
@@ -7137,6 +7239,7 @@ declare class DotGridComponent {
7137
7239
  declare const NavStore: _angular_core.Type<{
7138
7240
  path: Signal<string>;
7139
7241
  routeNavId: Signal<string | undefined>;
7242
+ routeParams: Signal<Record<string, string>>;
7140
7243
  murl: Signal<string[]>;
7141
7244
  appLink: Signal<string | undefined>;
7142
7245
  appNavId: Signal<string | undefined>;
@@ -7188,6 +7291,7 @@ declare const NavStore: _angular_core.Type<{
7188
7291
  } & _ngrx_signals.StateSource<{
7189
7292
  path: string;
7190
7293
  routeNavId: string | undefined;
7294
+ routeParams: Record<string, string>;
7191
7295
  murl: string[];
7192
7296
  appLink: string | undefined;
7193
7297
  appNavId: string | undefined;
@@ -7261,16 +7365,16 @@ declare class GetNavService {
7261
7365
  */
7262
7366
 
7263
7367
  /**
7264
- * Platform Navs that also carry a chrome button — search, notification and user
7265
- * in the menubar, settings in the footer. The button is a shortcut to the same
7266
- * NavId the row names, not a substitute for it: one NavRef, reached either way.
7368
+ * Platform Navs reached by a chrome button rather than a root row — search,
7369
+ * notification and user in the menubar, settings in the footer. Kept out of
7370
+ * root's rows at runtime so the menu does not repeat the menubar.
7267
7371
  */
7268
7372
  declare const PLATFORM_BUTTON_NAV_IDS: string[];
7269
7373
  /**
7270
- * Platform children rendered as rows in the root panel the chrome, behind
7271
- * whatever App Navs the app authored. A panel that listed the app's pages and
7272
- * nothing else made chrome reachable only by finding its icon, so the rows are
7273
- * the readable half of the same NavRefs the buttons hold.
7374
+ * Platform children rendered as rows in the root panel. Empty on purpose
7375
+ * every Platform Nav carries a button of its own, and a row beside the icon
7376
+ * that already opens it is the same NavRef twice. Root's runtime rows are App
7377
+ * Navs only.
7274
7378
  */
7275
7379
  declare const PLATFORM_ROOT_CHILDREN: string[];
7276
7380
  /**
@@ -7294,8 +7398,9 @@ declare const createPlatformNavMap: () => NavMap;
7294
7398
  * same id. An extensible one merges: the asset contributes its App Nav
7295
7399
  * children (and, at `root`, the app's own `title` / `logo` / `icon`), the
7296
7400
  * platform children follow, and NavKind and NavPresentation stay the
7297
- * library's — so an asset cannot delete chrome by omitting it from `root.yml`,
7298
- * and shipping a closed Platform NavId cannot redefine it.
7401
+ * library's — so an asset cannot delete chrome (settings still exists even
7402
+ * though it is not a root row), and shipping a closed Platform NavId cannot
7403
+ * redefine it.
7299
7404
  */
7300
7405
  declare const mergePlatformNav: (nav: Nav, navId: string) => Nav;
7301
7406
  /** The seed as it stands when an app ships no asset for an extensible node. */
@@ -7362,8 +7467,9 @@ declare const splitNavId: (navId: string, navMap: NavMap) => {
7362
7467
  declare const anchorNavId: (navId: string, navMap: NavMap) => string;
7363
7468
  /**
7364
7469
  * Route path for the Url part of a NavId. `root` -> `/`. A `dynamic` Nav
7365
- * contributes `<segment>/:id`, which is why a concrete path can only be
7366
- * rendered against a live location (see `renderAddress`).
7470
+ * contributes `:id` alone — its own segment is a name, not an address — which
7471
+ * is why a concrete path can only be rendered against a live location (see
7472
+ * `renderAddress`).
7367
7473
  */
7368
7474
  declare const navIdToRoutePath: (navId: string, navMap: NavMap) => string;
7369
7475
  /**
@@ -7446,6 +7552,7 @@ declare class NavDetailsComponent {
7446
7552
  _navStore: {
7447
7553
  path: _angular_core.Signal<string>;
7448
7554
  routeNavId: _angular_core.Signal<string | undefined>;
7555
+ routeParams: _angular_core.Signal<Record<string, string>>;
7449
7556
  murl: _angular_core.Signal<string[]>;
7450
7557
  appLink: _angular_core.Signal<string | undefined>;
7451
7558
  appNavId: _angular_core.Signal<string | undefined>;
@@ -7471,7 +7578,7 @@ declare class NavDetailsComponent {
7471
7578
  navMenus: _angular_core.Signal<_magmonium_one.BreadcrumbTrail[]>;
7472
7579
  navHasContent: _angular_core.Signal<boolean>;
7473
7580
  currentWcConfig: _angular_core.Signal<dist_libs_cli_src.WebComponentConfig | undefined>;
7474
- resolvedNavMenuConfig: _angular_core.Signal<NavMenuConfig | null>;
7581
+ resolvedNavMenuConfig: _angular_core.Signal<_magmonium_one.NavMenuConfig | null>;
7475
7582
  addressFor: (navId: string, params?: Record<string, string | number>) => string;
7476
7583
  goToNav: (navId: string, params?: Record<string, string | number>, options?: {
7477
7584
  keepPanel?: boolean;
@@ -7497,6 +7604,7 @@ declare class NavDetailsComponent {
7497
7604
  } & _ngrx_signals.StateSource<{
7498
7605
  path: string;
7499
7606
  routeNavId: string | undefined;
7607
+ routeParams: Record<string, string>;
7500
7608
  murl: string[];
7501
7609
  appLink: string | undefined;
7502
7610
  appNavId: string | undefined;
@@ -7553,6 +7661,7 @@ declare class NavHeaderComponent {
7553
7661
  _navStore: {
7554
7662
  path: _angular_core.Signal<string>;
7555
7663
  routeNavId: _angular_core.Signal<string | undefined>;
7664
+ routeParams: _angular_core.Signal<Record<string, string>>;
7556
7665
  murl: _angular_core.Signal<string[]>;
7557
7666
  appLink: _angular_core.Signal<string | undefined>;
7558
7667
  appNavId: _angular_core.Signal<string | undefined>;
@@ -7578,7 +7687,7 @@ declare class NavHeaderComponent {
7578
7687
  navMenus: _angular_core.Signal<_magmonium_one.BreadcrumbTrail[]>;
7579
7688
  navHasContent: _angular_core.Signal<boolean>;
7580
7689
  currentWcConfig: _angular_core.Signal<dist_libs_cli_src.WebComponentConfig | undefined>;
7581
- resolvedNavMenuConfig: _angular_core.Signal<NavMenuConfig | null>;
7690
+ resolvedNavMenuConfig: _angular_core.Signal<_magmonium_one.NavMenuConfig | null>;
7582
7691
  addressFor: (navId: string, params?: Record<string, string | number>) => string;
7583
7692
  goToNav: (navId: string, params?: Record<string, string | number>, options?: {
7584
7693
  keepPanel?: boolean;
@@ -7604,6 +7713,7 @@ declare class NavHeaderComponent {
7604
7713
  } & _ngrx_signals.StateSource<{
7605
7714
  path: string;
7606
7715
  routeNavId: string | undefined;
7716
+ routeParams: Record<string, string>;
7607
7717
  murl: string[];
7608
7718
  appLink: string | undefined;
7609
7719
  appNavId: string | undefined;
@@ -8157,11 +8267,8 @@ declare class SearchUserPanelComponent {
8157
8267
  activePanel: _angular_core.Signal<string | undefined>;
8158
8268
  open: (modalTrigger: _magmonium_one.ModalTrigger<unknown>) => string;
8159
8269
  close: (id?: string) => void;
8160
- confirm: (opts: {
8161
- header?: string;
8162
- body?: string;
8163
- type?: "info" | "success" | "warning" | "danger";
8164
- }, onConfirm: () => void) => void;
8270
+ ask: (opts: _magmonium_one.ConfirmOptions) => rxjs.Observable<boolean>;
8271
+ confirm: (opts: _magmonium_one.ConfirmOptions, onConfirm: () => void) => void;
8165
8272
  openPanel: (panelTrigger: _magmonium_one.PanelTrigger<unknown>) => string;
8166
8273
  closePanel: (id?: string) => void;
8167
8274
  cleanupOnClose: _ngrx_signals_rxjs_interop.RxMethod<Record<string, _magmonium_one.ModalTrigger<unknown>>>;
@@ -8589,6 +8696,7 @@ declare class AuthActivityPageComponent {
8589
8696
  navStore: ({
8590
8697
  path: _angular_core.Signal<string>;
8591
8698
  routeNavId: _angular_core.Signal<string | undefined>;
8699
+ routeParams: _angular_core.Signal<Record<string, string>>;
8592
8700
  murl: _angular_core.Signal<string[]>;
8593
8701
  appLink: _angular_core.Signal<string | undefined>;
8594
8702
  appNavId: _angular_core.Signal<string | undefined>;
@@ -8614,7 +8722,7 @@ declare class AuthActivityPageComponent {
8614
8722
  navMenus: _angular_core.Signal<_magmonium_one.BreadcrumbTrail[]>;
8615
8723
  navHasContent: _angular_core.Signal<boolean>;
8616
8724
  currentWcConfig: _angular_core.Signal<dist_libs_cli_src.WebComponentConfig | undefined>;
8617
- resolvedNavMenuConfig: _angular_core.Signal<NavMenuConfig | null>;
8725
+ resolvedNavMenuConfig: _angular_core.Signal<_magmonium_one.NavMenuConfig | null>;
8618
8726
  addressFor: (navId: string, params?: Record<string, string | number>) => string;
8619
8727
  goToNav: (navId: string, params?: Record<string, string | number>, options?: {
8620
8728
  keepPanel?: boolean;
@@ -8640,6 +8748,7 @@ declare class AuthActivityPageComponent {
8640
8748
  } & _ngrx_signals.StateSource<{
8641
8749
  path: string;
8642
8750
  routeNavId: string | undefined;
8751
+ routeParams: Record<string, string>;
8643
8752
  murl: string[];
8644
8753
  appLink: string | undefined;
8645
8754
  appNavId: string | undefined;
@@ -8814,6 +8923,7 @@ declare const AuthStore: Type<{
8814
8923
  navStore: ({
8815
8924
  path: _angular_core.Signal<string>;
8816
8925
  routeNavId: _angular_core.Signal<string | undefined>;
8926
+ routeParams: _angular_core.Signal<Record<string, string>>;
8817
8927
  murl: _angular_core.Signal<string[]>;
8818
8928
  appLink: _angular_core.Signal<string | undefined>;
8819
8929
  appNavId: _angular_core.Signal<string | undefined>;
@@ -8839,7 +8949,7 @@ declare const AuthStore: Type<{
8839
8949
  navMenus: _angular_core.Signal<_magmonium_one.BreadcrumbTrail[]>;
8840
8950
  navHasContent: _angular_core.Signal<boolean>;
8841
8951
  currentWcConfig: _angular_core.Signal<dist_libs_cli_src.WebComponentConfig | undefined>;
8842
- resolvedNavMenuConfig: _angular_core.Signal<NavMenuConfig | null>;
8952
+ resolvedNavMenuConfig: _angular_core.Signal<_magmonium_one.NavMenuConfig | null>;
8843
8953
  addressFor: (navId: string, params?: Record<string, string | number>) => string;
8844
8954
  goToNav: (navId: string, params?: Record<string, string | number>, options?: {
8845
8955
  keepPanel?: boolean;
@@ -8865,6 +8975,7 @@ declare const AuthStore: Type<{
8865
8975
  } & _ngrx_signals.StateSource<{
8866
8976
  path: string;
8867
8977
  routeNavId: string | undefined;
8978
+ routeParams: Record<string, string>;
8868
8979
  murl: string[];
8869
8980
  appLink: string | undefined;
8870
8981
  appNavId: string | undefined;
@@ -9101,5 +9212,5 @@ interface AuthResult {
9101
9212
  }
9102
9213
  declare function injectAuthenticate(): () => Promise<AuthResult>;
9103
9214
 
9104
- export { ACCESS_DOMAINS, APP_CONTEXT_REF, ASSET_BASE_URL, AccordionBodyDirective, AccordionComponent, AccordionGroupComponent, ActionComponent, AnimatedGraphsComponent, AppCardComponent, AppRelationType, AppTileComponent, AssetStore, AssetUrlPipe, Assets, AuthActivityPageComponent, AuthApiService, AuthStore, AutosizeDirective, BadgeComponent, BandingComponent, BaseArrayInputComponent, BaseRootWebComponent, BaseWebComponent, ButtonComponent, ButtonGroupComponent, COMPONENT_INPUT_REGISTRY, CardComponent, CardWrapperComponent, CarouselComponent, ChartComponent, CheckboxInputComponent, ClearableInputComponent, ColComponent, ColorPickerInputComponent, CommentItemComponent, CommentsApiService, CommentsComponent, CommentsStore, ComponentInputComponent, ComponentStepperComponent, ConfigComponent, ConfirmComponent, ContextMenuComponent, CustomIconClass, CustomIconEditComponent, DEFAULT_FILTER_RANGE_MODE, DEFAULT_FILTER_VARIANT, DEFAULT_NAV_SEGMENT, DEFAULT_SIZE, DashboardCardComponent, DateInputComponent, DatePickerComponent, DeviceService, DomService, Domain, DotGridComponent, DragListDirective, DragListItemDirective, DraggableDirective, DropdownInputComponent, FILTER_GROUP_CONTEXT, FILTER_RANGE_MODES, FILTER_VARIANTS, FLEX_VARIANTS, FOLDER_PICK_LISTENER, FORM_ASSET_FOLDER, FileService, FileUploadDirective, FileUploadInputComponent, FlexComponent, FlexItemComponent, FormGroupComponent, FrameComponent, FreezeService, GRID_BREAKPOINTS, GetNavService, HeaderComponent, HighlightDirective, HttpService, ICON_SOURCE, IS_DESIGN_MODE, IS_SIDE_PANEL, IconComponent, ImgComponent, InputType, InstrumentScoreComponent, InterceptorObservables, JumbotronComponent, KeyValueComponent, LAYOUT_ASSET_FOLDER, LOGIN_COMPONENT, LOGIN_STORE, LanguageComponent, LogoComponent, MAG_SOCKET_EVENT, MHeroColorDirective, MHeroComponent, MODAL_REF, MODAL_STORE_REF, MRefDirective, MStepComponent, MURL_PARAM, MURL_SEP, ManifestEnrichmentService, MenuComponent, ModalDirective, ModalRef, ModalStore, MoneyPipe, MultiRangeInputComponent, MurlUrlSerializer, NAV_DEFAULT_MURL, NAV_ID_SEP, NAV_MAIN_BUTTONS, NAV_SEGMENT_RE, NAV_STORE_REF, NAV_WC_COMPONENTS, NAV_WIDGET_MAP, NavComponent, NavDetailsComponent, NavHeaderComponent, NavMenuComponent, NavStore, NavTrailComponent, NothingComponent, NotificationElementComponent, NotificationGroupComponent, NotificationPopupComponent, NotificationService, NotificationStore, NotificationType, NotificationWidgetComponent, ONE_ASSET_BASE_URL, OPTIONS_SOURCE, OVERLAY_WIDGETS, OneApp, OptionsSourceDirective, OverlayBodyComponent, OverlayRef, OverlayService, PLATFORM_BUTTON_NAV_IDS, PLATFORM_EXTENSIBLE_NAV_IDS, PLATFORM_NAV_MAP, PLATFORM_ROOT_CHILDREN, PaginationComponent, PanelComponent, PercentagePipe, PlaygroundComponent, PositionDirective, PwaInstallComponent, ROOT_NAV, RadioGroupComponent, RadioInputComponent, RangeInputComponent, RatingInputComponent, ReactiveElementComponent, RemoteComponent, RemoteLoaderService, ResizeElementComponent, RouteContainer, RowComponent, SEARCH_QUERY, SEARCH_RESULTS_EVENT, SECTION_ACCORDION_GROUP, SECTION_FORM_CONTEXT, SHARED_ICONS, SIZE_CONTEXT, ScoreComponent, ScrollComponent, ScrollService, SearchPanelComponent, SearchStore, SearchUserPanelComponent, SectionAccordionDirective, SectionAccordionGroupDirective, SectionBackComponent, SectionBadgesComponent, SectionButtonGroupComponent, SectionCardComponent, SectionCarouselComponent, SectionComponent, SectionFilterComponent, SectionFilterGroupComponent, SectionFilterMenuComponent, SectionFilterPanelComponent, SectionFilterRangePanelComponent, SectionFooterComponent, SectionFormComponent, SectionFormItemComponent, SectionHeaderComponent, SectionHeroComponent, SectionPaginationComponent, SectionSearchComponent, SectionStepperComponent, SectionTabsComponent, SectionToggleComponent, SectionToggleItemDirective, SelectableCardInputComponent, SelectorDirective, SettingsSearchBarComponent, SettingsSearchService, ShapeComponent, SharedStoreRegistry, SidePanelDirective, Size, SocketStore, SortComponent, StatComponent, StepComponent, StepperComponent, StepsComponent, StorageService, StrokeLinecap, StrokeLinejoin, SummaryComponent, SvgGeneratorComponent, SvgGeneratorService, SvgService, TOTAL_COLUMNS, TRANSLATION_SOURCE, TableComponent, TableFilterCondition, TechnicalMeterComponent, TextInputComponent, TextOutputComponent, TextareaInputComponent, ThemeComponent, ThemeDataService, ThemeService, ThemeStore, TimeAgoPipe, TimelineComponent, ToggleButtonComponent, ToggleInputComponent, ToggleRadioInputComponent, ToolTipDirective, TooltipComponent, TranslatePipe, TranslateService, TreeGridComponent, URL_SEP, USER_STORE_REF, USER_TAB_MAP, UlComponent, UniverseComponent, UserApiService, UserAvatarComponent, UserComponent, UserNavComponent, UserSettingsComponent, UserStore, WC_ROUTE_CHANGED_EVENT, WC_SEARCH_GROUPS, WIN_USER_TAB_HOOK, WIN_USER_TAB_KEY, WatermarkComponent, WcRouterStore, WrapperInputComponent, anchorNavId, applyColorsToElement, bootstrapMagApp, bootstrapPwaInstall, buildWcBaseUrl, calculateLuminance, calculateRanks, cellText, checkFilterCondition, childNavId, classListSignal, coerceSize, cornerEdge, cornerSide, createMap, createPlatformNavMap, deriveAvatarGradient, deriveContrastColor, deriveOppositeColor, derivePropertyName, emailValidation, evaluate, evaluateBool, filterHoldsList, filterHoldsOneBound, filterHoldsOptions, filterHoldsRange, filterList, filterOne, filterPanelOf, filterPanelWidth, filterRange, filterTreeGridRows, filterValueList, filterValues, flattenTreeGridRows, formatBadgeCount, fullName, generateClipPath, generateTransform, getClassList, getProperty, getScrollParent, getTierFromPreviewPath, getTreeGridRow, getUniqueId, getValue, hasErrorComputed, hexToRgb, hslToRgb, initMagmoniumApp, initialNotificationState, initialState, initials, injectAuthenticate, injectInstallApp, injectParentSize, injectScrollSticky, isButtonName, isCancelledComputed, isExtensiblePlatformNavId, isJson, isLoadingComputed, isLocalhost, isPlatformNavId, isSize, isTierPreview, isUrlLocalhost, isValidNavId, isValidNavSegment, isWebComponent, linkToId, linkToNav, loadingActions, mInterceptor, manualValidation, matchFieldValidation, maxLengthValidation, maxValidation, mergePlatformNav, mergeUnique, mergeUniqueBy, mergeUniqueWith, minAgeValidation, minLengthValidation, minValidation, miniMarkToHtml, navIdChain, navIdFor, navIdSegment, navIdToRoutePath, navIdToSegments, navToId, parentNavId, parseAddress, parseColor, parsePatternNames, patternValidation, patternsValidation, platformNavWidgets, privateGuard, processImageToSvg, provideAppContext, provideMagAppConfig, provideMagWcConfig, provideMagWcRoutes, provideModalComponents, provideMurlUrlSerializer, provideNavWidgets, provideOverlayWidgets, providePlatformNavWidgets, provideSearch, provideSizeContext, provideUserTabs, publicGuard, readFieldPatterns, renderAddress, requiredValidation, resolveConfigAsset, resolveIconSize, resolvePallet, resolvePatternRules, resolveSize, rgbToHex, rgbToHsl, rowHasChildren, samePatterns, segmentsToNavId, setProperty, setTreeGridChildren, settingsWidgets, shouldShowBadge, splitNavId, splitOnMatch, stringToColor, toAttrBool, toAttrNumber, toCssLength, toHostNavId, toLength, toLocalNavId, toggleTreeGridRow, unfetchedPlatformNav, urlValidation };
9105
- export type { Accordion, AccordionGroup, AccordionVariant, ActionNotification, Align, AnimatedGraphConfig, AnimatedGraphCurveInput, AppCardData, AppCardInputs, AppCardVariant, AppContextRef, AppHint, AppManifest, AppRelation, AppTileData, AuthEmailCreate404Response, AuthEmailCreate422Response, AuthEmailCreateRequest, AuthEmailCreateResponse, AuthIdentitiesListResponse, AuthOtpCreateRequest, AuthOtpCreateResponse, AuthOtpUpdateRequest, AuthOtpUpdateResponse, AuthPasswordCreateRequest, AuthPasswordCreateResponse, AuthPasswordCreateResponseTokens, AuthPasswordCreateResponseUser, AuthPasswordUpdateRequest, AuthPasswordUpdateResponse, AuthPasswordUpdateResponseTokens, AuthPasswordUpdateResponseUser, AuthResult, AuthSignupCreateRequest, AuthSignupCreateRequestUser, AuthSignupCreateResponse, AuthSignupCreateResponseTokens, AuthState, AuthUser, Badge, BadgePosition, BadgeVariant, BandingConfig, BreadCrumb, BreadcrumbTrail, Button, ButtonGroup, Carousel, CarouselIndicatorPosition, CarouselIndicatorShape, CarouselPosition, CarouselSlide, CellChangeEvent, CellClickEvent, Chart, ChartSeries, ColBreakpoint, ColSpan, ColorInput, ColorPallet, ColorPropertyType, ColumnDef, Comment, CommentItem, ComponentInput, Config, ContextMenu, ContextMenuEvent, CropData, Cursor, CustomIcon, DateInput, Direction$2 as Direction, DotGridVariant, DragListReorder, Draggable, DraggableState, DropdownInput, DropdownOption, ElementType, FieldPatterns, FileUploadConfig, FileUploadEvent, FileUploadInput, FilterGroupContext, FilterGroupMember, FilterOption, FilterPanel, FilterPanelIo, FilterRangeMode, FilterSelectionMap, FilterValue, FilterVariant, FilteredTreeGrid, FlatTreeGridRow, FlexAlign, FlexAlignSelf, FlexConfig, FlexDirection, FlexItemConfig, FlexJustify, FlexVariant, FolderPickListener, Form, FormState, Genre, GridAlignX, GridAlignY, GridBreakpoint, Header, HeaderLevel, HeldShelf, HeroDataRecord, HeroDimensions, HslColor, Icon, Input, InputModel, InputSpan, InputState, InputValue, Jumbotron, JumbotronAnimation, KeyValueVariant, LabelSegment, LoadingActionsApi, LoginStoreContract, LogoVariant, MagAppConfigOptions, MagWcConfigOptions, ManualErrorValidator, MenuItem, Modal, ModalOverlayConfig, ModalStoreRef, ModalStoreTrigger, ModalTrigger, MoneySystem, MultiRangeInput, Nav, NavIdKey, NavKind, NavMap, NavPresentation, NavStoreRef, NavWidgetConfig, NavWidgetEntry, NavWidgetMap, Notification, NotificationSeverity, NotificationState, NotificationUser, NumberInput, Option, OtpInput, OverlayConfig, OverlayWidgetLoader, OverlayWidgetMap, PageChangeEvent, Pagination, PaginationWindow, PanelOverlayConfig, PanelTrigger, PasswordInput, PatternRule, Position, QueryParams, QueryValue, RadioGroupInput, RadioInput, RangeInput, RatingInput, RemoteSelectorConfig, ResolvedUserTab, RgbColor, SearchChangeEvent, SearchInput, SearchResult, SearchSourceGroup, SearchState, SectionAccordion, SectionAccordionGroup, SectionAccordionGroupContext, SectionAccordionRef, SectionButtonGroupConfig, SectionCarousel, SectionCarouselContext, SectionCarouselItem, SectionFilterGroupConfig, SectionFormConfig, SectionFormContext, SectionHero, SectionHeroVariant, SectionToggleItem, SectionToggleItemContext, SelectableCardContext, SelectableCardInput, SelectableCardItem, SelectionAction, SelectionActionEvent, SelectionChangeEvent, SelectorConfig, Shape, ShapeType, ShapeVariant, SharedToken, SharedUser, SizeContext, SizeDeclarer, SocketMessage, Sort, SortChange, SortChangeEvent, SortOption, SortOrder, SqueezeMode, StatAlign, StatCornerEdge, StatCornerPosition, StatCornerSide, StatSurface, StatVariant, Step, Stepper, StepperResponsiveConfig, StepperStep, Steps, StickyBehavior, Summary, SummaryAction, SummaryRow, SummaryRowType, Svg, SvgGenOptions, SvgGeneratorCoreOptions, SvgGeneratorEditOptions, TabGroup, TableConfig, TableFilterDef, TextInput, TextNotification, TextOutputAlign, TextOutputConfig, TextOutputVariant, TextareaInput, Timeline, TimelineItem, ToggleInput, ToggleRadioInput, Tokens, TreeGridCellClickEvent, TreeGridLoadChildrenEvent, TreeGridRow, TreeGridRowSelectEvent, TreeGridToggleEvent, UniverseColorScheme, User, UserStoreRef, Version, Watermark, WebComponentConfig, WeeklyData };
9215
+ export { ACCESS_DOMAINS, APP_CONTEXT_REF, ASSET_BASE_URL, AccordionBodyDirective, AccordionComponent, AccordionGroupComponent, ActionComponent, AnimatedGraphsComponent, AppCardComponent, AppRelationType, AppTileComponent, AssetStore, AssetUrlPipe, Assets, AuthActivityPageComponent, AuthApiService, AuthStore, AutosizeDirective, BadgeComponent, BandingComponent, BaseArrayInputComponent, BaseRootWebComponent, BaseWebComponent, ButtonComponent, ButtonGroupComponent, COMPONENT_INPUT_REGISTRY, CardComponent, CardWrapperComponent, CarouselComponent, ChartComponent, CheckboxInputComponent, ClearableInputComponent, ColComponent, ColorPickerInputComponent, CommentItemComponent, CommentsApiService, CommentsComponent, CommentsStore, ComponentInputComponent, ComponentStepperComponent, ConfigComponent, ConfirmComponent, ContextMenuComponent, CustomIconClass, CustomIconEditComponent, DEFAULT_FILTER_RANGE_MODE, DEFAULT_FILTER_VARIANT, DEFAULT_NAV_PARAM, DEFAULT_NAV_SEGMENT, DEFAULT_SIZE, DashboardCardComponent, DateInputComponent, DatePickerComponent, DeviceService, DomService, Domain, DotGridComponent, DragListDirective, DragListItemDirective, DraggableDirective, DropdownInputComponent, FILTER_GROUP_CONTEXT, FILTER_RANGE_MODES, FILTER_VARIANTS, FLEX_VARIANTS, FOLDER_PICK_LISTENER, FORM_ASSET_FOLDER, FileService, FileUploadDirective, FileUploadInputComponent, FlexComponent, FlexItemComponent, FormGroupComponent, FrameComponent, FreezeService, GRID_BREAKPOINTS, GetNavService, HeaderComponent, HighlightDirective, HttpService, ICON_SOURCE, IS_DESIGN_MODE, IS_SIDE_PANEL, IconComponent, ImgComponent, InputType, InstrumentScoreComponent, InterceptorObservables, JumbotronComponent, KeyValueComponent, LAYOUT_ASSET_FOLDER, LOGIN_COMPONENT, LOGIN_STORE, LanguageComponent, LogoComponent, MAG_SOCKET_EVENT, MHeroColorDirective, MHeroComponent, MODAL_REF, MODAL_STORE_REF, MRefDirective, MStepComponent, MURL_PARAM, MURL_SEP, ManifestEnrichmentService, MenuComponent, ModalDirective, ModalRef, ModalStore, MoneyPipe, MultiRangeInputComponent, MurlUrlSerializer, NAV_DEFAULT_MURL, NAV_ID_SEP, NAV_MAIN_BUTTONS, NAV_SEGMENT_RE, NAV_STORE_REF, NAV_WC_COMPONENTS, NAV_WIDGET_MAP, NavComponent, NavDetailsComponent, NavHeaderComponent, NavMenuComponent, NavStore, NavTrailComponent, NothingComponent, NotificationElementComponent, NotificationGroupComponent, NotificationPopupComponent, NotificationService, NotificationStore, NotificationType, NotificationWidgetComponent, ONE_ASSET_BASE_URL, OPTIONS_SOURCE, OVERLAY_WIDGETS, OneApp, OptionsSourceDirective, OverlayBodyComponent, OverlayRef, OverlayService, PLATFORM_BUTTON_NAV_IDS, PLATFORM_EXTENSIBLE_NAV_IDS, PLATFORM_NAV_MAP, PLATFORM_ROOT_CHILDREN, PaginationComponent, PanelComponent, PercentagePipe, PlaygroundComponent, PositionDirective, PwaInstallComponent, ROOT_NAV, RadioGroupComponent, RadioInputComponent, RangeInputComponent, RatingInputComponent, ReactiveElementComponent, RemoteComponent, RemoteLoaderService, ResizeElementComponent, RouteContainer, RowComponent, SEARCH_QUERY, SEARCH_RESULTS_EVENT, SECTION_ACCORDION_GROUP, SECTION_FORM_CONTEXT, SHARED_ICONS, SIZE_CONTEXT, ScoreComponent, ScrollComponent, ScrollService, SearchPanelComponent, SearchStore, SearchUserPanelComponent, SectionAccordionDirective, SectionAccordionGroupDirective, SectionBackComponent, SectionBadgesComponent, SectionButtonGroupComponent, SectionCardComponent, SectionCarouselComponent, SectionComponent, SectionFilterComponent, SectionFilterGroupComponent, SectionFilterMenuComponent, SectionFilterPanelComponent, SectionFilterRangePanelComponent, SectionFooterComponent, SectionFormComponent, SectionFormItemComponent, SectionHeaderComponent, SectionHeroComponent, SectionPaginationComponent, SectionSearchComponent, SectionStepperComponent, SectionTabsComponent, SectionToggleComponent, SectionToggleItemDirective, SelectableCardInputComponent, SelectorDirective, SettingsSearchBarComponent, SettingsSearchService, ShapeComponent, SharedStoreRegistry, SidePanelDirective, Size, SocketStore, SortComponent, StatComponent, StepComponent, StepperComponent, StepsComponent, StorageService, StrokeLinecap, StrokeLinejoin, SummaryComponent, SvgGeneratorComponent, SvgGeneratorService, SvgService, TOTAL_COLUMNS, TRANSLATION_SOURCE, TableComponent, TableFilterCondition, TechnicalMeterComponent, TextInputComponent, TextOutputComponent, TextareaInputComponent, ThemeComponent, ThemeDataService, ThemeService, ThemeStore, TimeAgoPipe, TimelineComponent, ToggleButtonComponent, ToggleInputComponent, ToggleRadioInputComponent, ToolTipDirective, TooltipComponent, TranslatePipe, TranslateService, TreeGridComponent, URL_SEP, USER_STORE_REF, USER_TAB_MAP, UlComponent, UniverseComponent, UserApiService, UserAvatarComponent, UserComponent, UserNavComponent, UserSettingsComponent, UserStore, WC_ROUTE_CHANGED_EVENT, WC_SEARCH_GROUPS, WIN_USER_TAB_HOOK, WIN_USER_TAB_KEY, WatermarkComponent, WcRouterStore, WrapperInputComponent, anchorNavId, applyColorsToElement, bootstrapMagApp, bootstrapPwaInstall, buildWcBaseUrl, calculateLuminance, calculateRanks, cellText, checkFilterCondition, childNavId, classListSignal, coerceSize, cornerEdge, cornerSide, createMap, createPlatformNavMap, deriveAvatarGradient, deriveContrastColor, deriveOppositeColor, derivePropertyName, emailValidation, evaluate, evaluateBool, filterHoldsList, filterHoldsOneBound, filterHoldsOptions, filterHoldsRange, filterList, filterOne, filterPanelOf, filterPanelWidth, filterRange, filterTreeGridRows, filterValueList, filterValues, flattenTreeGridRows, formatBadgeCount, fullName, generateClipPath, generateTransform, getClassList, getProperty, getScrollParent, getTierFromPreviewPath, getTreeGridRow, getUniqueId, getValue, hasErrorComputed, hexToRgb, hslToRgb, initMagmoniumApp, initialNotificationState, initialState, initials, injectAuthenticate, injectInstallApp, injectParentSize, injectScrollSticky, isButtonName, isCancelledComputed, isExtensiblePlatformNavId, isJson, isLoadingComputed, isLocalhost, isNavMenuConfig, isNavRowsConfig, isPlatformNavId, isSize, isTierPreview, isUrlLocalhost, isValidNavId, isValidNavSegment, isWebComponent, linkToId, linkToNav, loadingActions, mInterceptor, manualValidation, matchFieldValidation, maxLengthValidation, maxValidation, mergePlatformNav, mergeUnique, mergeUniqueBy, mergeUniqueWith, minAgeValidation, minLengthValidation, minValidation, miniMarkToHtml, navIdChain, navIdFor, navIdSegment, navIdToRoutePath, navIdToSegments, navParamOf, navToId, parentNavId, parseAddress, parseColor, parsePatternNames, patternValidation, patternsValidation, platformNavWidgets, privateGuard, processImageToSvg, provideAppContext, provideMagAppConfig, provideMagWcConfig, provideMagWcRoutes, provideModalComponents, provideMurlUrlSerializer, provideNavWidgets, provideOverlayWidgets, providePlatformNavWidgets, provideSearch, provideSizeContext, provideUserTabs, publicGuard, readFieldPatterns, renderAddress, requiredValidation, resolveConfigAsset, resolveIconSize, resolvePallet, resolvePatternRules, resolveSize, rgbToHex, rgbToHsl, rowHasChildren, samePatterns, segmentsToNavId, setProperty, setTreeGridChildren, settingsWidgets, shouldShowBadge, splitNavId, splitOnMatch, stringToColor, toAttrBool, toAttrNumber, toCssLength, toHostNavId, toLength, toLocalNavId, toggleTreeGridRow, unfetchedPlatformNav, urlValidation };
9216
+ export type { Accordion, AccordionGroup, AccordionVariant, ActionNotification, Align, AnimatedGraphConfig, AnimatedGraphCurveInput, AppCardData, AppCardInputs, AppCardVariant, AppContextRef, AppHint, AppManifest, AppRelation, AppTileData, AuthEmailCreate404Response, AuthEmailCreate422Response, AuthEmailCreateRequest, AuthEmailCreateResponse, AuthIdentitiesListResponse, AuthOtpCreateRequest, AuthOtpCreateResponse, AuthOtpUpdateRequest, AuthOtpUpdateResponse, AuthPasswordCreateRequest, AuthPasswordCreateResponse, AuthPasswordCreateResponseTokens, AuthPasswordCreateResponseUser, AuthPasswordUpdateRequest, AuthPasswordUpdateResponse, AuthPasswordUpdateResponseTokens, AuthPasswordUpdateResponseUser, AuthResult, AuthSignupCreateRequest, AuthSignupCreateRequestUser, AuthSignupCreateResponse, AuthSignupCreateResponseTokens, AuthState, AuthUser, Badge, BadgePosition, BadgeVariant, BandingConfig, BreadCrumb, BreadcrumbTrail, Button, ButtonGroup, Carousel, CarouselIndicatorPosition, CarouselIndicatorShape, CarouselPosition, CarouselSlide, CellChangeEvent, CellClickEvent, Chart, ChartSeries, ColBreakpoint, ColSpan, ColorInput, ColorPallet, ColorPropertyType, ColumnDef, Comment, CommentItem, ComponentInput, Config, ConfirmOptions, ContextMenu, ContextMenuEvent, CropData, Cursor, CustomIcon, DateInput, Direction$2 as Direction, DotGridVariant, DragListReorder, Draggable, DraggableState, DropdownInput, DropdownOption, ElementType, FieldPatterns, FileUploadConfig, FileUploadEvent, FileUploadInput, FilterGroupContext, FilterGroupMember, FilterOption, FilterPanel, FilterPanelIo, FilterRangeMode, FilterSelectionMap, FilterValue, FilterVariant, FilteredTreeGrid, FlatTreeGridRow, FlexAlign, FlexAlignSelf, FlexConfig, FlexDirection, FlexItemConfig, FlexJustify, FlexVariant, FolderPickListener, Form, FormState, Genre, GridAlignX, GridAlignY, GridBreakpoint, Header, HeaderLevel, HeldShelf, HeroDataRecord, HeroDimensions, HslColor, Icon, Input, InputModel, InputSpan, InputState, InputValue, Jumbotron, JumbotronAnimation, KeyValueVariant, LabelSegment, LoadingActionsApi, LoginStoreContract, LogoVariant, MagAppConfigOptions, MagWcConfigOptions, ManualErrorValidator, MenuItem, Modal, ModalOverlayConfig, ModalStoreRef, ModalStoreTrigger, ModalTrigger, MoneySystem, MultiRangeInput, Nav, NavIdKey, NavKind, NavMap, NavMenuConfig, NavPresentation, NavRow, NavRowsConfig, NavStoreRef, NavWidgetConfig, NavWidgetEntry, NavWidgetMap, Notification, NotificationSeverity, NotificationState, NotificationUser, NumberInput, Option, OtpInput, OverlayConfig, OverlayWidgetLoader, OverlayWidgetMap, PageChangeEvent, Pagination, PaginationWindow, PanelOverlayConfig, PanelTrigger, PasswordInput, PatternRule, Position, QueryParams, QueryValue, RadioGroupInput, RadioInput, RangeInput, RatingInput, RemoteSelectorConfig, ResolvedUserTab, RgbColor, SearchChangeEvent, SearchInput, SearchResult, SearchSourceGroup, SearchState, SectionAccordion, SectionAccordionGroup, SectionAccordionGroupContext, SectionAccordionRef, SectionButtonGroupConfig, SectionCarousel, SectionCarouselContext, SectionCarouselItem, SectionFilterGroupConfig, SectionFormConfig, SectionFormContext, SectionHero, SectionHeroVariant, SectionToggleItem, SectionToggleItemContext, SelectableCardContext, SelectableCardInput, SelectableCardItem, SelectionAction, SelectionActionEvent, SelectionChangeEvent, SelectorConfig, Shape, ShapeType, ShapeVariant, SharedToken, SharedUser, SizeContext, SizeDeclarer, SocketMessage, Sort, SortChange, SortChangeEvent, SortOption, SortOrder, SqueezeMode, StatAlign, StatCornerEdge, StatCornerPosition, StatCornerSide, StatSurface, StatVariant, Step, Stepper, StepperResponsiveConfig, StepperStep, Steps, StickyBehavior, Summary, SummaryAction, SummaryRow, SummaryRowType, Svg, SvgGenOptions, SvgGeneratorCoreOptions, SvgGeneratorEditOptions, TabGroup, TableConfig, TableFilterDef, TextInput, TextNotification, TextOutputAlign, TextOutputConfig, TextOutputVariant, TextareaInput, Timeline, TimelineItem, ToggleInput, ToggleRadioInput, Tokens, TreeGridCellClickEvent, TreeGridLoadChildrenEvent, TreeGridRow, TreeGridRowSelectEvent, TreeGridToggleEvent, UniverseColorScheme, User, UserStoreRef, Version, Watermark, WebComponentConfig, WeeklyData };