@magmonium/one 0.2.37 → 0.2.39

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;
@@ -7363,8 +7467,9 @@ declare const splitNavId: (navId: string, navMap: NavMap) => {
7363
7467
  declare const anchorNavId: (navId: string, navMap: NavMap) => string;
7364
7468
  /**
7365
7469
  * Route path for the Url part of a NavId. `root` -> `/`. A `dynamic` Nav
7366
- * contributes `<segment>/:id`, which is why a concrete path can only be
7367
- * 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`).
7368
7473
  */
7369
7474
  declare const navIdToRoutePath: (navId: string, navMap: NavMap) => string;
7370
7475
  /**
@@ -7447,6 +7552,7 @@ declare class NavDetailsComponent {
7447
7552
  _navStore: {
7448
7553
  path: _angular_core.Signal<string>;
7449
7554
  routeNavId: _angular_core.Signal<string | undefined>;
7555
+ routeParams: _angular_core.Signal<Record<string, string>>;
7450
7556
  murl: _angular_core.Signal<string[]>;
7451
7557
  appLink: _angular_core.Signal<string | undefined>;
7452
7558
  appNavId: _angular_core.Signal<string | undefined>;
@@ -7472,7 +7578,7 @@ declare class NavDetailsComponent {
7472
7578
  navMenus: _angular_core.Signal<_magmonium_one.BreadcrumbTrail[]>;
7473
7579
  navHasContent: _angular_core.Signal<boolean>;
7474
7580
  currentWcConfig: _angular_core.Signal<dist_libs_cli_src.WebComponentConfig | undefined>;
7475
- resolvedNavMenuConfig: _angular_core.Signal<NavMenuConfig | null>;
7581
+ resolvedNavMenuConfig: _angular_core.Signal<_magmonium_one.NavMenuConfig | null>;
7476
7582
  addressFor: (navId: string, params?: Record<string, string | number>) => string;
7477
7583
  goToNav: (navId: string, params?: Record<string, string | number>, options?: {
7478
7584
  keepPanel?: boolean;
@@ -7498,6 +7604,7 @@ declare class NavDetailsComponent {
7498
7604
  } & _ngrx_signals.StateSource<{
7499
7605
  path: string;
7500
7606
  routeNavId: string | undefined;
7607
+ routeParams: Record<string, string>;
7501
7608
  murl: string[];
7502
7609
  appLink: string | undefined;
7503
7610
  appNavId: string | undefined;
@@ -7554,6 +7661,7 @@ declare class NavHeaderComponent {
7554
7661
  _navStore: {
7555
7662
  path: _angular_core.Signal<string>;
7556
7663
  routeNavId: _angular_core.Signal<string | undefined>;
7664
+ routeParams: _angular_core.Signal<Record<string, string>>;
7557
7665
  murl: _angular_core.Signal<string[]>;
7558
7666
  appLink: _angular_core.Signal<string | undefined>;
7559
7667
  appNavId: _angular_core.Signal<string | undefined>;
@@ -7579,7 +7687,7 @@ declare class NavHeaderComponent {
7579
7687
  navMenus: _angular_core.Signal<_magmonium_one.BreadcrumbTrail[]>;
7580
7688
  navHasContent: _angular_core.Signal<boolean>;
7581
7689
  currentWcConfig: _angular_core.Signal<dist_libs_cli_src.WebComponentConfig | undefined>;
7582
- resolvedNavMenuConfig: _angular_core.Signal<NavMenuConfig | null>;
7690
+ resolvedNavMenuConfig: _angular_core.Signal<_magmonium_one.NavMenuConfig | null>;
7583
7691
  addressFor: (navId: string, params?: Record<string, string | number>) => string;
7584
7692
  goToNav: (navId: string, params?: Record<string, string | number>, options?: {
7585
7693
  keepPanel?: boolean;
@@ -7605,6 +7713,7 @@ declare class NavHeaderComponent {
7605
7713
  } & _ngrx_signals.StateSource<{
7606
7714
  path: string;
7607
7715
  routeNavId: string | undefined;
7716
+ routeParams: Record<string, string>;
7608
7717
  murl: string[];
7609
7718
  appLink: string | undefined;
7610
7719
  appNavId: string | undefined;
@@ -8158,11 +8267,8 @@ declare class SearchUserPanelComponent {
8158
8267
  activePanel: _angular_core.Signal<string | undefined>;
8159
8268
  open: (modalTrigger: _magmonium_one.ModalTrigger<unknown>) => string;
8160
8269
  close: (id?: string) => void;
8161
- confirm: (opts: {
8162
- header?: string;
8163
- body?: string;
8164
- type?: "info" | "success" | "warning" | "danger";
8165
- }, onConfirm: () => void) => void;
8270
+ ask: (opts: _magmonium_one.ConfirmOptions) => rxjs.Observable<boolean>;
8271
+ confirm: (opts: _magmonium_one.ConfirmOptions, onConfirm: () => void) => void;
8166
8272
  openPanel: (panelTrigger: _magmonium_one.PanelTrigger<unknown>) => string;
8167
8273
  closePanel: (id?: string) => void;
8168
8274
  cleanupOnClose: _ngrx_signals_rxjs_interop.RxMethod<Record<string, _magmonium_one.ModalTrigger<unknown>>>;
@@ -8587,72 +8693,6 @@ declare class AuthActivityPageComponent {
8587
8693
  user: _angular_core.Signal<_magmonium_one.AuthUser | undefined>;
8588
8694
  wrongPassword: _angular_core.Signal<boolean | undefined>;
8589
8695
  hostUserTabs: Record<string, _angular_core.Type<unknown>>;
8590
- navStore: ({
8591
- path: _angular_core.Signal<string>;
8592
- routeNavId: _angular_core.Signal<string | undefined>;
8593
- murl: _angular_core.Signal<string[]>;
8594
- appLink: _angular_core.Signal<string | undefined>;
8595
- appNavId: _angular_core.Signal<string | undefined>;
8596
- navOpenedByUser: _angular_core.Signal<boolean>;
8597
- keepPanelOnPathChange: _angular_core.Signal<boolean>;
8598
- panelPushed: _angular_core.Signal<boolean>;
8599
- navScrolledDown: _angular_core.Signal<boolean>;
8600
- remoteWidgets: _angular_core.Signal<Record<string, NavWidgetRegistryEntry>>;
8601
- navMap: _angular_core.Signal<_magmonium_one.NavMap>;
8602
- wcConfigMap: _angular_core.Signal<Record<string, dist_libs_cli_src.WebComponentConfig>>;
8603
- navLoading: _angular_core.Signal<boolean>;
8604
- navigationEnd: _angular_core.Signal<_angular_router.RouterStateSnapshot>;
8605
- router: _angular_router.Router;
8606
- id: _angular_core.Signal<string>;
8607
- panelNavId: _angular_core.Signal<string>;
8608
- hasMurl: _angular_core.Signal<boolean>;
8609
- isNavOpened: _angular_core.Signal<boolean>;
8610
- isMNavOpened: _angular_core.Signal<boolean>;
8611
- resolvedWidget: _angular_core.Signal<(_magmonium_one.NavWidgetConfig & {
8612
- ceSelector?: string;
8613
- }) | null>;
8614
- breadcrumb: _angular_core.Signal<_magmonium_one.BreadCrumb>;
8615
- navMenus: _angular_core.Signal<_magmonium_one.BreadcrumbTrail[]>;
8616
- navHasContent: _angular_core.Signal<boolean>;
8617
- currentWcConfig: _angular_core.Signal<dist_libs_cli_src.WebComponentConfig | undefined>;
8618
- resolvedNavMenuConfig: _angular_core.Signal<NavMenuConfig | null>;
8619
- addressFor: (navId: string, params?: Record<string, string | number>) => string;
8620
- goToNav: (navId: string, params?: Record<string, string | number>, options?: {
8621
- keepPanel?: boolean;
8622
- }) => void;
8623
- closePanel: () => void;
8624
- syncFromRouter: _ngrx_signals_rxjs_interop.RxMethod<_angular_router.RouterStateSnapshot | undefined>;
8625
- toggleMenu: () => void;
8626
- setSelected: (navId: string | undefined, params?: Record<string, string | number>) => void;
8627
- setAppLink: (appLink: string | undefined, appNavId?: string) => void;
8628
- setWcConfig: (appLink: string, config: dist_libs_cli_src.WebComponentConfig) => void;
8629
- loadWcConfig: _ngrx_signals_rxjs_interop.RxMethod<string | undefined>;
8630
- loadNav: _ngrx_signals_rxjs_interop.RxMethod<{
8631
- navId: string;
8632
- appNavId: string | undefined;
8633
- }>;
8634
- registerWidgets: (appLink: string, entry: NavWidgetRegistryEntry) => void;
8635
- back: () => void;
8636
- resolveUrl: (url: string) => string;
8637
- setNavScrolledDown: (value: boolean) => void;
8638
- routePathFor: (navId: string) => string;
8639
- anchorOf: (navId: string) => string;
8640
- navIdChain: (navId: string) => string[];
8641
- } & _ngrx_signals.StateSource<{
8642
- path: string;
8643
- routeNavId: string | undefined;
8644
- murl: string[];
8645
- appLink: string | undefined;
8646
- appNavId: string | undefined;
8647
- navOpenedByUser: boolean;
8648
- keepPanelOnPathChange: boolean;
8649
- panelPushed: boolean;
8650
- navScrolledDown: boolean;
8651
- remoteWidgets: Record<string, NavWidgetRegistryEntry>;
8652
- navMap: _magmonium_one.NavMap;
8653
- wcConfigMap: Record<string, dist_libs_cli_src.WebComponentConfig>;
8654
- navLoading: boolean;
8655
- }>) | null;
8656
8696
  userId: _angular_core.Signal<string | undefined>;
8657
8697
  isLoggedIn: _angular_core.Signal<boolean>;
8658
8698
  variant: _angular_core.Signal<{
@@ -8812,72 +8852,6 @@ declare const AuthStore: Type<{
8812
8852
  user: _angular_core.Signal<_magmonium_one.AuthUser | undefined>;
8813
8853
  wrongPassword: _angular_core.Signal<boolean | undefined>;
8814
8854
  hostUserTabs: Record<string, Type<unknown>>;
8815
- navStore: ({
8816
- path: _angular_core.Signal<string>;
8817
- routeNavId: _angular_core.Signal<string | undefined>;
8818
- murl: _angular_core.Signal<string[]>;
8819
- appLink: _angular_core.Signal<string | undefined>;
8820
- appNavId: _angular_core.Signal<string | undefined>;
8821
- navOpenedByUser: _angular_core.Signal<boolean>;
8822
- keepPanelOnPathChange: _angular_core.Signal<boolean>;
8823
- panelPushed: _angular_core.Signal<boolean>;
8824
- navScrolledDown: _angular_core.Signal<boolean>;
8825
- remoteWidgets: _angular_core.Signal<Record<string, NavWidgetRegistryEntry>>;
8826
- navMap: _angular_core.Signal<_magmonium_one.NavMap>;
8827
- wcConfigMap: _angular_core.Signal<Record<string, dist_libs_cli_src.WebComponentConfig>>;
8828
- navLoading: _angular_core.Signal<boolean>;
8829
- navigationEnd: _angular_core.Signal<_angular_router.RouterStateSnapshot>;
8830
- router: _angular_router.Router;
8831
- id: _angular_core.Signal<string>;
8832
- panelNavId: _angular_core.Signal<string>;
8833
- hasMurl: _angular_core.Signal<boolean>;
8834
- isNavOpened: _angular_core.Signal<boolean>;
8835
- isMNavOpened: _angular_core.Signal<boolean>;
8836
- resolvedWidget: _angular_core.Signal<(_magmonium_one.NavWidgetConfig & {
8837
- ceSelector?: string;
8838
- }) | null>;
8839
- breadcrumb: _angular_core.Signal<_magmonium_one.BreadCrumb>;
8840
- navMenus: _angular_core.Signal<_magmonium_one.BreadcrumbTrail[]>;
8841
- navHasContent: _angular_core.Signal<boolean>;
8842
- currentWcConfig: _angular_core.Signal<dist_libs_cli_src.WebComponentConfig | undefined>;
8843
- resolvedNavMenuConfig: _angular_core.Signal<NavMenuConfig | null>;
8844
- addressFor: (navId: string, params?: Record<string, string | number>) => string;
8845
- goToNav: (navId: string, params?: Record<string, string | number>, options?: {
8846
- keepPanel?: boolean;
8847
- }) => void;
8848
- closePanel: () => void;
8849
- syncFromRouter: _ngrx_signals_rxjs_interop.RxMethod<_angular_router.RouterStateSnapshot | undefined>;
8850
- toggleMenu: () => void;
8851
- setSelected: (navId: string | undefined, params?: Record<string, string | number>) => void;
8852
- setAppLink: (appLink: string | undefined, appNavId?: string) => void;
8853
- setWcConfig: (appLink: string, config: dist_libs_cli_src.WebComponentConfig) => void;
8854
- loadWcConfig: _ngrx_signals_rxjs_interop.RxMethod<string | undefined>;
8855
- loadNav: _ngrx_signals_rxjs_interop.RxMethod<{
8856
- navId: string;
8857
- appNavId: string | undefined;
8858
- }>;
8859
- registerWidgets: (appLink: string, entry: NavWidgetRegistryEntry) => void;
8860
- back: () => void;
8861
- resolveUrl: (url: string) => string;
8862
- setNavScrolledDown: (value: boolean) => void;
8863
- routePathFor: (navId: string) => string;
8864
- anchorOf: (navId: string) => string;
8865
- navIdChain: (navId: string) => string[];
8866
- } & _ngrx_signals.StateSource<{
8867
- path: string;
8868
- routeNavId: string | undefined;
8869
- murl: string[];
8870
- appLink: string | undefined;
8871
- appNavId: string | undefined;
8872
- navOpenedByUser: boolean;
8873
- keepPanelOnPathChange: boolean;
8874
- panelPushed: boolean;
8875
- navScrolledDown: boolean;
8876
- remoteWidgets: Record<string, NavWidgetRegistryEntry>;
8877
- navMap: _magmonium_one.NavMap;
8878
- wcConfigMap: Record<string, dist_libs_cli_src.WebComponentConfig>;
8879
- navLoading: boolean;
8880
- }>) | null;
8881
8855
  userId: _angular_core.Signal<string | undefined>;
8882
8856
  isLoggedIn: _angular_core.Signal<boolean>;
8883
8857
  variant: _angular_core.Signal<{
@@ -9102,5 +9076,5 @@ interface AuthResult {
9102
9076
  }
9103
9077
  declare function injectAuthenticate(): () => Promise<AuthResult>;
9104
9078
 
9105
- 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 };
9106
- 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 };
9079
+ 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 };
9080
+ 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 };