@magmonium/one 0.2.39 → 0.2.41

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.
@@ -3649,14 +3649,17 @@ const emptyResult = () => ({
3649
3649
  */
3650
3650
  const toTrailItem = (navId, navMap, anchor,
3651
3651
  /** A dynamic node standing on an instance reads that row's own label. */
3652
- label) => {
3652
+ label,
3653
+ /** ...and carries that instance, so following the entry keeps it. */
3654
+ navParams) => {
3653
3655
  const nav = navMap[navId];
3654
3656
  return {
3655
3657
  id: navId,
3656
3658
  label: label ?? nav?.title ?? navIdSegment(navId),
3657
3659
  icon: nav?.icon,
3658
3660
  nav: navId,
3659
- address: renderAddress(navId, navMap, anchor),
3661
+ ...(navParams ? { navParams } : {}),
3662
+ address: renderAddress(navId, navMap, anchor, navParams),
3660
3663
  };
3661
3664
  };
3662
3665
  /**
@@ -3665,15 +3668,20 @@ label) => {
3665
3668
  * rides alongside as the param this Nav declared, which is what `renderAddress`
3666
3669
  * fills. `id` carries the value only so the list has stable keys.
3667
3670
  */
3668
- const navRowTrailItem = (navId, nav, row, navMap, anchor) => ({
3669
- id: `${navId}${NAV_ID_SEP}${row.value}`,
3670
- label: row.label,
3671
- icon: row.icon ?? nav.icon,
3672
- nav: navId,
3673
- address: renderAddress(navId, navMap, anchor, {
3674
- [navParamOf(nav)]: row.value,
3675
- }),
3676
- });
3671
+ const navRowTrailItem = (navId, nav, row, navMap, anchor) => {
3672
+ const navParams = { [navParamOf(nav)]: row.value };
3673
+ return {
3674
+ id: `${navId}${NAV_ID_SEP}${row.value}`,
3675
+ label: row.label,
3676
+ icon: row.icon ?? nav.icon,
3677
+ nav: navId,
3678
+ // The instance the NavRef cannot name. Every row here shares `nav`, so
3679
+ // this is the only thing that tells one row's target from the next — a
3680
+ // link that dropped it followed `:id` unfilled and matched no route.
3681
+ navParams,
3682
+ address: renderAddress(navId, navMap, anchor, navParams),
3683
+ };
3684
+ };
3677
3685
  /** A Nav that *is* its parent's own content rather than a place beside it. */
3678
3686
  const isDefaultNav = (navId) => navIdSegment(navId) === DEFAULT_NAV_SEGMENT;
3679
3687
  /**
@@ -3714,9 +3722,26 @@ const childIdsOf = (navId, navMap) => {
3714
3722
  * in the middle of it. Filtering the node out without adopting its children
3715
3723
  * left that app with no rows at all.
3716
3724
  */
3717
- const menuChildIds = (navId, navMap) => childIdsOf(navId, navMap).flatMap((childId) => {
3725
+ /**
3726
+ * Whether a `dynamic` child is standing in for rows rather than for itself. A
3727
+ * source that answered with rows — or is still answering — draws *those*, and
3728
+ * the node's own `title` is beside the point: the row it would have been is the
3729
+ * one thing the splice replaces. An emitted dynamic Nav is routinely unlabelled
3730
+ * for exactly that reason (a row saying `with-category` names nothing a User
3731
+ * recognises), and gating it on a title dropped it before its rows were ever
3732
+ * read — the panel then climbed to the parent and drew the static siblings.
3733
+ */
3734
+ const drawsRows = (childId, dynamicRows) => {
3735
+ const resolved = dynamicRows[childId];
3736
+ return !!resolved && (resolved.rows.length > 0 || !!resolved.loading);
3737
+ };
3738
+ const menuChildIds = (navId, navMap, dynamicRows = {}) => childIdsOf(navId, navMap).flatMap((childId) => {
3718
3739
  if (isDefaultNav(childId))
3719
- return menuChildIds(childId, navMap);
3740
+ return menuChildIds(childId, navMap, dynamicRows);
3741
+ if (navMap[childId]?.presentation === 'dynamic' &&
3742
+ drawsRows(childId, dynamicRows)) {
3743
+ return [childId];
3744
+ }
3720
3745
  return navMap[childId]?.title ? [childId] : [];
3721
3746
  });
3722
3747
  /**
@@ -3726,9 +3751,9 @@ const menuChildIds = (navId, navMap) => childIdsOf(navId, navMap).flatMap((child
3726
3751
  * list the User moved through and the row they are on is the one marked
3727
3752
  * active. Root is the floor: its own children are the last list there is.
3728
3753
  */
3729
- const navMenuOwnerId = (navId, navMap, hasOwnContent = false) => {
3754
+ const navMenuOwnerId = (navId, navMap, hasOwnContent = false, dynamicRows = {}) => {
3730
3755
  const visible = visibleNavId(navId);
3731
- if (visible === ROOT_NAV$1 || menuChildIds(visible, navMap).length) {
3756
+ if (visible === ROOT_NAV$1 || menuChildIds(visible, navMap, dynamicRows).length) {
3732
3757
  return visible;
3733
3758
  }
3734
3759
  // A panel that answers with a widget of its own keeps its own title —
@@ -3743,7 +3768,7 @@ const navMenuOwnerId = (navId, navMap, hasOwnContent = false) => {
3743
3768
  // than the one we are on — a mistitled empty panel is worse than a titled one.
3744
3769
  for (let ancestor = parentNavId(visible); ancestor; ancestor = parentNavId(ancestor)) {
3745
3770
  const owner = visibleNavId(ancestor);
3746
- if (menuChildIds(owner, navMap).length)
3771
+ if (menuChildIds(owner, navMap, dynamicRows).length)
3747
3772
  return owner;
3748
3773
  if (owner === ROOT_NAV$1)
3749
3774
  break;
@@ -3763,7 +3788,7 @@ const navMenuOwnerId = (navId, navMap, hasOwnContent = false) => {
3763
3788
  * falling through to the static siblings around it would show a panel that
3764
3789
  * looks correct and is not.
3765
3790
  */
3766
- const buildNavMenus = (navId, navMap, anchor, dynamicRows = {}) => menuChildIds(navId, navMap).flatMap((childId) => {
3791
+ const buildNavMenus = (navId, navMap, anchor, dynamicRows = {}) => menuChildIds(navId, navMap, dynamicRows).flatMap((childId) => {
3767
3792
  const nav = navMap[childId];
3768
3793
  const resolved = nav && dynamicRows[childId];
3769
3794
  if (!nav || nav.presentation !== 'dynamic' || !resolved) {
@@ -3804,10 +3829,24 @@ function deriveBreadcrumb(params) {
3804
3829
  return undefined;
3805
3830
  return dynamicRows?.[id]?.rows.find((row) => row.value === value)?.label;
3806
3831
  };
3832
+ /**
3833
+ * The instance a dynamic node in the trail is standing on. Read off the
3834
+ * Router rather than the rows: the entry has to keep pointing at the page the
3835
+ * User is on even before a source has answered, and a NavRef with no param
3836
+ * renders `:id` unfilled.
3837
+ */
3838
+ const rowParams = (id) => {
3839
+ const nav = navMap[id];
3840
+ if (nav?.presentation !== 'dynamic')
3841
+ return undefined;
3842
+ const param = navParamOf(nav);
3843
+ const value = routeParams?.[param];
3844
+ return value ? { [param]: value } : undefined;
3845
+ };
3807
3846
  // The header and the trail belong to whichever Nav owns the menu below them:
3808
3847
  // on a leaf that is the parent, so the User reads the list they are in with
3809
3848
  // their own row marked, rather than a title over an empty panel.
3810
- const ownerId = navMenuOwnerId(navId, navMap, hasOwnContent);
3849
+ const ownerId = navMenuOwnerId(navId, navMap, hasOwnContent, dynamicRows);
3811
3850
  // An emitted breadcrumb names the panel it was emitted for. Once the panel
3812
3851
  // has been handed up to an ancestor it is no longer that panel, so the
3813
3852
  // override would title the ancestor's list after the leaf we left.
@@ -3816,8 +3855,9 @@ function deriveBreadcrumb(params) {
3816
3855
  const derivedTrail = chain
3817
3856
  .slice(0, -1)
3818
3857
  .filter((id) => !isDefaultNav(id))
3819
- .map((id) => toTrailItem(id, navMap, anchor, rowLabel(id)));
3858
+ .map((id) => toTrailItem(id, navMap, anchor, rowLabel(id), rowParams(id)));
3820
3859
  const nav = navMap[ownerId];
3860
+ const ownerParams = rowParams(ownerId);
3821
3861
  const derivedHeader = {
3822
3862
  id: ownerId,
3823
3863
  label: rowLabel(ownerId) ??
@@ -3825,7 +3865,8 @@ function deriveBreadcrumb(params) {
3825
3865
  (ownerId === ROOT_NAV$1 ? '' : navIdSegment(ownerId)),
3826
3866
  icon: nav?.icon,
3827
3867
  nav: ownerId,
3828
- address: renderAddress(ownerId, navMap, anchor),
3868
+ ...(ownerParams ? { navParams: ownerParams } : {}),
3869
+ address: renderAddress(ownerId, navMap, anchor, ownerParams),
3829
3870
  };
3830
3871
  const { trail, header } = breadcrumb && ownPanel
3831
3872
  ? mergeTrail(derivedTrail, breadcrumb, derivedHeader)
@@ -4125,7 +4166,8 @@ const NavStore = signalStore({ providedIn: 'root' }, withState(initialState$3),
4125
4166
  // asset holds — left the page's own menu up under its own header.
4126
4167
  const map = store.navMap();
4127
4168
  const candidates = widgetNavIds();
4128
- return (candidates.find((c) => menuChildIds(c, map).length) ??
4169
+ const rows = dynamicRows();
4170
+ return (candidates.find((c) => menuChildIds(c, map, rows).length) ??
4129
4171
  // A leaf nothing is registered for is still a Nav the tree knows, and
4130
4172
  // that is where the panel belongs: `|settings|app` with no widget hands
4131
4173
  // the panel back to *settings*, whose row it is, rather than climbing
@@ -5650,8 +5692,23 @@ class MRefDirective {
5650
5692
  * when the panel was opened over a page (`/page|settings` → `root_settings`).
5651
5693
  */
5652
5694
  #currentNavId = computed(() => this.#navRef?.panelNavId?.() ?? this.#navRef?.id(), ...(ngDevMode ? [{ debugName: "#currentNavId" }] : /* istanbul ignore next */ []));
5695
+ /**
5696
+ * Whether the instance this link names is the one being stood on. Every row a
5697
+ * `dynamic` Nav resolved carries the same NavId, so NavId equality alone
5698
+ * marked the whole list active; a link naming no instance is not making a
5699
+ * claim about one and stays matched on its NavId alone.
5700
+ */
5701
+ #paramsMatch = computed(() => {
5702
+ const params = this.mRefParams();
5703
+ if (!params)
5704
+ return true;
5705
+ const routeParams = this.#navRef?.routeParams?.();
5706
+ if (!routeParams)
5707
+ return false;
5708
+ return Object.entries(params).every(([name, value]) => routeParams[name] === String(value));
5709
+ }, ...(ngDevMode ? [{ debugName: "#paramsMatch" }] : /* istanbul ignore next */ []));
5653
5710
  /** Exact hit only — what a toggle re-clicks, and never an ancestor. */
5654
- #currentlySelected = computed(() => this.mRef() === this.#currentNavId(), ...(ngDevMode ? [{ debugName: "#currentlySelected" }] : /* istanbul ignore next */ []));
5711
+ #currentlySelected = computed(() => this.mRef() === this.#currentNavId() && this.#paramsMatch(), ...(ngDevMode ? [{ debugName: "#currentlySelected" }] : /* istanbul ignore next */ []));
5655
5712
  /**
5656
5713
  * The row the open Nav came through. A menu lists the Nav Menu Owner's
5657
5714
  * children, and the User may be standing deeper than a row — on a leaf that
@@ -5664,7 +5721,9 @@ class MRefDirective {
5664
5721
  const current = this.#currentNavId();
5665
5722
  if (!target || !current)
5666
5723
  return false;
5667
- return current === target || current.startsWith(`${target}_`);
5724
+ if (current !== target && !current.startsWith(`${target}_`))
5725
+ return false;
5726
+ return this.#paramsMatch();
5668
5727
  }, ...(ngDevMode ? [{ debugName: "#currentlyActive" }] : /* istanbul ignore next */ []));
5669
5728
  constructor() {
5670
5729
  effect(() => {
@@ -6771,7 +6830,7 @@ class SectionFormItemComponent extends ConfigComponent {
6771
6830
  break;
6772
6831
  }
6773
6832
  case InputType.TOGGLE: {
6774
- const { ToggleInputComponent } = await import('./magmonium-one-toggle-CzrlUm9C.mjs');
6833
+ const { ToggleInputComponent } = await import('./magmonium-one-toggle-XdWXZ3w3.mjs');
6775
6834
  this.createDynamicComponent(seq, ToggleInputComponent, [], true);
6776
6835
  break;
6777
6836
  }
@@ -6783,12 +6842,12 @@ class SectionFormItemComponent extends ConfigComponent {
6783
6842
  break;
6784
6843
  }
6785
6844
  case InputType.PASSWORD: {
6786
- const { PasswordInputComponent } = await import('./magmonium-one-password-GYSJXyp0.mjs');
6845
+ const { PasswordInputComponent } = await import('./magmonium-one-password-CniB1rrR.mjs');
6787
6846
  this.createDynamicComponent(seq, PasswordInputComponent);
6788
6847
  break;
6789
6848
  }
6790
6849
  case InputType.OTP: {
6791
- const { OtpInputComponent } = await import('./magmonium-one-otp-Crc-7_tc.mjs');
6850
+ const { OtpInputComponent } = await import('./magmonium-one-otp-BWGevRL7.mjs');
6792
6851
  this.createDynamicComponent(seq, OtpInputComponent);
6793
6852
  break;
6794
6853
  }
@@ -20289,7 +20348,7 @@ class WrapperInputComponent extends ConfigComponent {
20289
20348
  break;
20290
20349
  }
20291
20350
  case InputType.TOGGLE: {
20292
- const { ToggleInputComponent } = await import('./magmonium-one-toggle-CzrlUm9C.mjs');
20351
+ const { ToggleInputComponent } = await import('./magmonium-one-toggle-XdWXZ3w3.mjs');
20293
20352
  this.createDynamicComponent(seq, ToggleInputComponent, [], true);
20294
20353
  break;
20295
20354
  }
@@ -20301,12 +20360,12 @@ class WrapperInputComponent extends ConfigComponent {
20301
20360
  break;
20302
20361
  }
20303
20362
  case InputType.PASSWORD: {
20304
- const { PasswordInputComponent } = await import('./magmonium-one-password-GYSJXyp0.mjs');
20363
+ const { PasswordInputComponent } = await import('./magmonium-one-password-CniB1rrR.mjs');
20305
20364
  this.createDynamicComponent(seq, PasswordInputComponent);
20306
20365
  break;
20307
20366
  }
20308
20367
  case InputType.OTP: {
20309
- const { OtpInputComponent } = await import('./magmonium-one-otp-Crc-7_tc.mjs');
20368
+ const { OtpInputComponent } = await import('./magmonium-one-otp-BWGevRL7.mjs');
20310
20369
  this.createDynamicComponent(seq, OtpInputComponent);
20311
20370
  break;
20312
20371
  }
@@ -28768,7 +28827,7 @@ class NavTrailComponent {
28768
28827
  @for (item of trail; track item.id; let i = $index; let last = $last) {
28769
28828
  <div class="trail-item" [style.animation-delay.ms]="i * 50">
28770
28829
  @if (item.nav; as nav) {
28771
- <a [mRef]="nav" class="trail-link">
28830
+ <a [mRef]="nav" [mRefParams]="item.navParams" class="trail-link">
28772
28831
  {{ item.label | translate }}
28773
28832
  </a>
28774
28833
  } @else if (item.href; as href) {
@@ -28795,7 +28854,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
28795
28854
  @for (item of trail; track item.id; let i = $index; let last = $last) {
28796
28855
  <div class="trail-item" [style.animation-delay.ms]="i * 50">
28797
28856
  @if (item.nav; as nav) {
28798
- <a [mRef]="nav" class="trail-link">
28857
+ <a [mRef]="nav" [mRefParams]="item.navParams" class="trail-link">
28799
28858
  {{ item.label | translate }}
28800
28859
  </a>
28801
28860
  } @else if (item.href; as href) {
@@ -28977,7 +29036,14 @@ class NavMenuComponent {
28977
29036
  <div class="nav-menu__item">
28978
29037
  @if (item.nav; as nav) {
28979
29038
  <!-- Icon and label share one NavRef so either click reaches the same place. -->
28980
- <a [mRef]="nav" mRefLinkActive="active" class="nav-menu__link">
29039
+ <!-- A dynamic Nav's rows all share one NavId; mRefParams is the
29040
+ instance, and is what makes one row's target differ from the next. -->
29041
+ <a
29042
+ [mRef]="nav"
29043
+ [mRefParams]="item.navParams"
29044
+ mRefLinkActive="active"
29045
+ class="nav-menu__link"
29046
+ >
28981
29047
  <span class="nav-menu__icon">
28982
29048
  <m-icon [name]="item.icon || 'menu'" [baseUrl]="baseUrl()" />
28983
29049
  </span>
@@ -29012,7 +29078,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
29012
29078
  <div class="nav-menu__item">
29013
29079
  @if (item.nav; as nav) {
29014
29080
  <!-- Icon and label share one NavRef so either click reaches the same place. -->
29015
- <a [mRef]="nav" mRefLinkActive="active" class="nav-menu__link">
29081
+ <!-- A dynamic Nav's rows all share one NavId; mRefParams is the
29082
+ instance, and is what makes one row's target differ from the next. -->
29083
+ <a
29084
+ [mRef]="nav"
29085
+ [mRefParams]="item.navParams"
29086
+ mRefLinkActive="active"
29087
+ class="nav-menu__link"
29088
+ >
29016
29089
  <span class="nav-menu__icon">
29017
29090
  <m-icon [name]="item.icon || 'menu'" [baseUrl]="baseUrl()" />
29018
29091
  </span>
@@ -34526,4 +34599,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
34526
34599
  */
34527
34600
 
34528
34601
  export { DEFAULT_NAV_PARAM as $, ACCESS_DOMAINS as A, BaseInputComponent as B, COMPONENT_INPUT_REGISTRY as C, CardComponent as D, CardWrapperComponent as E, CarouselComponent as F, ChartComponent as G, CheckboxInputComponent as H, IS_DESIGN_MODE as I, ClearableInputComponent as J, ColComponent as K, LabelComponent as L, ColorPickerInputComponent as M, CommentItemComponent as N, CommentsApiService as O, CommentsComponent as P, CommentsStore as Q, ComponentInputComponent as R, ComponentStepperComponent as S, TranslatePipe as T, ConfigComponent as U, ConfirmComponent as V, ContextMenuComponent as W, CustomIconClass as X, CustomIconEditComponent as Y, DEFAULT_FILTER_RANGE_MODE as Z, DEFAULT_FILTER_VARIANT as _, BaseTextInputComponent as a, NAV_DEFAULT_MURL as a$, DEFAULT_NAV_SEGMENT as a0, DEFAULT_SIZE as a1, DashboardCardComponent as a2, DateInputComponent as a3, DatePickerComponent as a4, DeviceService as a5, DomService as a6, Domain as a7, DotGridComponent as a8, DragListDirective as a9, InputType as aA, InstrumentScoreComponent as aB, InterceptorObservables as aC, JumbotronComponent as aD, KeyValueComponent as aE, LAYOUT_ASSET_FOLDER as aF, LOGIN_COMPONENT as aG, LOGIN_STORE as aH, LanguageComponent as aI, LogoComponent as aJ, MAG_SOCKET_EVENT as aK, MHeroColorDirective as aL, MHeroComponent as aM, MODAL_REF as aN, MODAL_STORE_REF as aO, MRefDirective as aP, MStepComponent as aQ, MURL_PARAM as aR, MURL_SEP as aS, ManifestEnrichmentService as aT, MenuComponent as aU, ModalDirective as aV, ModalRef as aW, ModalStore as aX, MoneyPipe as aY, MultiRangeInputComponent as aZ, MurlUrlSerializer as a_, DragListItemDirective as aa, DraggableDirective as ab, DropdownInputComponent as ac, FILTER_GROUP_CONTEXT as ad, FILTER_RANGE_MODES as ae, FILTER_VARIANTS as af, FLEX_VARIANTS as ag, FOLDER_PICK_LISTENER as ah, FORM_ASSET_FOLDER as ai, FileService as aj, FileUploadDirective as ak, FileUploadInputComponent as al, FlexComponent as am, FlexItemComponent as an, FormGroupComponent as ao, FrameComponent as ap, FreezeService as aq, GRID_BREAKPOINTS as ar, GetNavService as as, HeaderComponent$1 as at, HighlightDirective as au, HttpService as av, ICON_SOURCE as aw, IS_SIDE_PANEL as ax, IconComponent as ay, ImgComponent as az, TextOutputComponent as b, SectionBackComponent as b$, NAV_ID_SEP as b0, NAV_MAIN_BUTTONS as b1, NAV_SEGMENT_RE as b2, NAV_STORE_REF as b3, NAV_WC_COMPONENTS as b4, NAV_WIDGET_MAP as b5, NavComponent as b6, NavDetailsComponent as b7, NavHeaderComponent as b8, NavMenuComponent as b9, PositionDirective as bA, PwaInstallComponent as bB, ROOT_NAV$1 as bC, RadioGroupComponent as bD, RadioInputComponent as bE, RangeInputComponent as bF, RatingInputComponent as bG, ReactiveElementComponent as bH, RemoteComponent as bI, RemoteLoaderService as bJ, ResizeElementComponent as bK, RouteContainer as bL, RowComponent as bM, SEARCH_QUERY as bN, SEARCH_RESULTS_EVENT as bO, SECTION_ACCORDION_GROUP as bP, SECTION_FORM_CONTEXT as bQ, SHARED_ICONS as bR, SIZE_CONTEXT as bS, ScoreComponent as bT, ScrollComponent as bU, ScrollService as bV, SearchPanelComponent as bW, SearchStore as bX, SearchUserPanelComponent as bY, SectionAccordionDirective as bZ, SectionAccordionGroupDirective as b_, NavStore as ba, NavTrailComponent as bb, NothingComponent as bc, NotificationElementComponent as bd, NotificationGroupComponent as be, NotificationPopupComponent as bf, NotificationService as bg, NotificationStore as bh, NotificationType as bi, NotificationWidgetComponent as bj, ONE_ASSET_BASE_URL as bk, OPTIONS_SOURCE as bl, OVERLAY_WIDGETS as bm, OneApp as bn, OptionsSourceDirective as bo, OverlayBodyComponent as bp, OverlayRef as bq, OverlayService as br, PLATFORM_BUTTON_NAV_IDS as bs, PLATFORM_EXTENSIBLE_NAV_IDS as bt, PLATFORM_NAV_MAP as bu, PLATFORM_ROOT_CHILDREN as bv, PaginationComponent as bw, PanelComponent as bx, PercentagePipe as by, PlaygroundComponent as bz, ButtonComponent as c, USER_TAB_MAP as c$, SectionBadgesComponent as c0, SectionButtonGroupComponent as c1, SectionCardComponent as c2, SectionCarouselComponent as c3, SectionComponent as c4, SectionFilterComponent as c5, SectionFilterGroupComponent as c6, SectionFilterMenuComponent as c7, SectionFilterPanelComponent as c8, SectionFilterRangePanelComponent as c9, StrokeLinecap as cA, StrokeLinejoin as cB, SummaryComponent as cC, SvgGeneratorComponent as cD, SvgGeneratorService as cE, SvgService as cF, TOTAL_COLUMNS as cG, TRANSLATION_SOURCE as cH, TableComponent as cI, TechnicalMeterComponent as cJ, TextInputComponent as cK, TextareaInputComponent as cL, ThemeComponent as cM, ThemeDataService as cN, ThemeService as cO, ThemeStore as cP, TimeAgoPipe as cQ, TimelineComponent as cR, ToggleButtonComponent as cS, ToggleInputComponent as cT, ToggleRadioInputComponent as cU, ToolTipDirective as cV, TooltipComponent as cW, TranslateService as cX, TreeGridComponent as cY, URL_SEP as cZ, USER_STORE_REF as c_, SectionFooterComponent as ca, SectionFormComponent as cb, SectionFormItemComponent as cc, SectionHeaderComponent as cd, SectionHeroComponent as ce, SectionPaginationComponent as cf, SectionSearchComponent as cg, SectionStepperComponent as ch, SectionTabsComponent as ci, SectionToggleComponent as cj, SectionToggleItemDirective as ck, SelectableCardInputComponent as cl, SelectorDirective as cm, SettingsSearchBarComponent as cn, SettingsSearchService as co, ShapeComponent as cp, SharedStoreRegistry as cq, SidePanelDirective as cr, Size as cs, SocketStore as ct, SortComponent as cu, StatComponent as cv, StepComponent as cw, StepperComponent as cx, StepsComponent as cy, StorageService as cz, APP_CONTEXT_REF as d, hasErrorComputed as d$, UlComponent as d0, UniverseComponent as d1, UserApiService as d2, UserAvatarComponent as d3, UserComponent as d4, UserNavComponent as d5, UserSettingsComponent as d6, UserStore as d7, WC_ROUTE_CHANGED_EVENT as d8, WC_SEARCH_GROUPS as d9, emailValidation as dA, evaluate as dB, evaluateBool as dC, filterHoldsList as dD, filterHoldsOneBound as dE, filterHoldsOptions as dF, filterHoldsRange as dG, filterList as dH, filterOne as dI, filterPanelOf as dJ, filterPanelWidth as dK, filterRange as dL, filterTreeGridRows as dM, filterValueList as dN, filterValues as dO, flattenTreeGridRows as dP, formatBadgeCount as dQ, fullName as dR, generateClipPath as dS, generateTransform as dT, getClassList as dU, getProperty as dV, getScrollParent as dW, getTierFromPreviewPath as dX, getTreeGridRow as dY, getUniqueId as dZ, getValue as d_, WIN_USER_TAB_HOOK as da, WIN_USER_TAB_KEY as db, WatermarkComponent as dc, WcRouterStore as dd, WrapperInputComponent as de, anchorNavId as df, applyColorsToElement as dg, bootstrapMagApp as dh, bootstrapPwaInstall as di, buildWcBaseUrl as dj, calculateLuminance as dk, calculateRanks as dl, cellText as dm, checkFilterCondition as dn, childNavId as dp, classListSignal as dq, coerceSize as dr, cornerEdge as ds, cornerSide as dt, createMap as du, createPlatformNavMap as dv, deriveAvatarGradient as dw, deriveContrastColor as dx, deriveOppositeColor as dy, derivePropertyName as dz, ASSET_BASE_URL as e, provideNavWidgets as e$, hexToRgb as e0, hslToRgb$1 as e1, initMagmoniumApp as e2, initialNotificationState as e3, initialState$2 as e4, initials as e5, injectAuthenticate as e6, injectInstallApp as e7, injectParentSize as e8, injectScrollSticky as e9, mergeUniqueWith as eA, minAgeValidation as eB, minLengthValidation as eC, minValidation as eD, miniMarkToHtml as eE, navIdChain as eF, navIdFor as eG, navIdSegment as eH, navIdToRoutePath as eI, navIdToSegments as eJ, navParamOf as eK, navToId as eL, parentNavId as eM, parseAddress as eN, parseColor as eO, parsePatternNames as eP, patternValidation as eQ, patternsValidation as eR, platformNavWidgets as eS, privateGuard as eT, processImageToSvg as eU, provideAppContext as eV, provideMagAppConfig as eW, provideMagWcConfig as eX, provideMagWcRoutes as eY, provideModalComponents as eZ, provideMurlUrlSerializer as e_, isButtonName as ea, isCancelledComputed as eb, isExtensiblePlatformNavId as ec, isJson as ed, isLoadingComputed as ee, isLocalhost as ef, isNavMenuConfig as eg, isNavRowsConfig as eh, isPlatformNavId as ei, isSize as ej, isTierPreview as ek, isUrlLocalhost as el, isValidNavId as em, isValidNavSegment as en, isWebComponent as eo, linkToId as ep, linkToNav as eq, loadingActions as er, mInterceptor as es, manualValidation as et, matchFieldValidation as eu, maxLengthValidation as ev, maxValidation as ew, mergePlatformNav as ex, mergeUnique as ey, mergeUniqueBy as ez, AccordionBodyDirective as f, provideOverlayWidgets as f0, providePlatformNavWidgets as f1, provideSearch as f2, provideSizeContext as f3, provideUserTabs as f4, publicGuard as f5, readFieldPatterns as f6, renderAddress as f7, requiredValidation as f8, resolveConfigAsset as f9, resolveIconSize as fa, resolvePallet as fb, resolvePatternRules as fc, resolveSize as fd, rgbToHex as fe, rgbToHsl as ff, rowHasChildren as fg, samePatterns as fh, segmentsToNavId as fi, setProperty as fj, setTreeGridChildren as fk, settingsWidgets as fl, shouldShowBadge as fm, splitNavId as fn, splitOnMatch as fo, stringToColor as fp, toAttrBool as fq, toAttrNumber as fr, toCssLength as fs, toHostNavId as ft, toLength$1 as fu, toLocalNavId as fv, toggleTreeGridRow as fw, unfetchedPlatformNav as fx, urlValidation as fy, AccordionComponent as g, AccordionGroupComponent as h, ActionComponent as i, AnimatedGraphsComponent as j, AppCardComponent as k, AppRelationType as l, AppTileComponent as m, AssetStore as n, AssetUrlPipe as o, Assets as p, AuthActivityPageComponent as q, AuthApiService as r, AuthStore as s, AutosizeDirective as t, BadgeComponent as u, BandingComponent as v, BaseArrayInputComponent as w, BaseRootWebComponent as x, BaseWebComponent as y, ButtonGroupComponent as z };
34529
- //# sourceMappingURL=magmonium-one-magmonium-one-1LRvvkZo.mjs.map
34602
+ //# sourceMappingURL=magmonium-one-magmonium-one-9zQVQ0IY.mjs.map