@magmonium/one 0.2.39 → 0.2.40

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
  /**
@@ -3804,6 +3812,20 @@ function deriveBreadcrumb(params) {
3804
3812
  return undefined;
3805
3813
  return dynamicRows?.[id]?.rows.find((row) => row.value === value)?.label;
3806
3814
  };
3815
+ /**
3816
+ * The instance a dynamic node in the trail is standing on. Read off the
3817
+ * Router rather than the rows: the entry has to keep pointing at the page the
3818
+ * User is on even before a source has answered, and a NavRef with no param
3819
+ * renders `:id` unfilled.
3820
+ */
3821
+ const rowParams = (id) => {
3822
+ const nav = navMap[id];
3823
+ if (nav?.presentation !== 'dynamic')
3824
+ return undefined;
3825
+ const param = navParamOf(nav);
3826
+ const value = routeParams?.[param];
3827
+ return value ? { [param]: value } : undefined;
3828
+ };
3807
3829
  // The header and the trail belong to whichever Nav owns the menu below them:
3808
3830
  // on a leaf that is the parent, so the User reads the list they are in with
3809
3831
  // their own row marked, rather than a title over an empty panel.
@@ -3816,8 +3838,9 @@ function deriveBreadcrumb(params) {
3816
3838
  const derivedTrail = chain
3817
3839
  .slice(0, -1)
3818
3840
  .filter((id) => !isDefaultNav(id))
3819
- .map((id) => toTrailItem(id, navMap, anchor, rowLabel(id)));
3841
+ .map((id) => toTrailItem(id, navMap, anchor, rowLabel(id), rowParams(id)));
3820
3842
  const nav = navMap[ownerId];
3843
+ const ownerParams = rowParams(ownerId);
3821
3844
  const derivedHeader = {
3822
3845
  id: ownerId,
3823
3846
  label: rowLabel(ownerId) ??
@@ -3825,7 +3848,8 @@ function deriveBreadcrumb(params) {
3825
3848
  (ownerId === ROOT_NAV$1 ? '' : navIdSegment(ownerId)),
3826
3849
  icon: nav?.icon,
3827
3850
  nav: ownerId,
3828
- address: renderAddress(ownerId, navMap, anchor),
3851
+ ...(ownerParams ? { navParams: ownerParams } : {}),
3852
+ address: renderAddress(ownerId, navMap, anchor, ownerParams),
3829
3853
  };
3830
3854
  const { trail, header } = breadcrumb && ownPanel
3831
3855
  ? mergeTrail(derivedTrail, breadcrumb, derivedHeader)
@@ -5650,8 +5674,23 @@ class MRefDirective {
5650
5674
  * when the panel was opened over a page (`/page|settings` → `root_settings`).
5651
5675
  */
5652
5676
  #currentNavId = computed(() => this.#navRef?.panelNavId?.() ?? this.#navRef?.id(), ...(ngDevMode ? [{ debugName: "#currentNavId" }] : /* istanbul ignore next */ []));
5677
+ /**
5678
+ * Whether the instance this link names is the one being stood on. Every row a
5679
+ * `dynamic` Nav resolved carries the same NavId, so NavId equality alone
5680
+ * marked the whole list active; a link naming no instance is not making a
5681
+ * claim about one and stays matched on its NavId alone.
5682
+ */
5683
+ #paramsMatch = computed(() => {
5684
+ const params = this.mRefParams();
5685
+ if (!params)
5686
+ return true;
5687
+ const routeParams = this.#navRef?.routeParams?.();
5688
+ if (!routeParams)
5689
+ return false;
5690
+ return Object.entries(params).every(([name, value]) => routeParams[name] === String(value));
5691
+ }, ...(ngDevMode ? [{ debugName: "#paramsMatch" }] : /* istanbul ignore next */ []));
5653
5692
  /** 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 */ []));
5693
+ #currentlySelected = computed(() => this.mRef() === this.#currentNavId() && this.#paramsMatch(), ...(ngDevMode ? [{ debugName: "#currentlySelected" }] : /* istanbul ignore next */ []));
5655
5694
  /**
5656
5695
  * The row the open Nav came through. A menu lists the Nav Menu Owner's
5657
5696
  * children, and the User may be standing deeper than a row — on a leaf that
@@ -5664,7 +5703,9 @@ class MRefDirective {
5664
5703
  const current = this.#currentNavId();
5665
5704
  if (!target || !current)
5666
5705
  return false;
5667
- return current === target || current.startsWith(`${target}_`);
5706
+ if (current !== target && !current.startsWith(`${target}_`))
5707
+ return false;
5708
+ return this.#paramsMatch();
5668
5709
  }, ...(ngDevMode ? [{ debugName: "#currentlyActive" }] : /* istanbul ignore next */ []));
5669
5710
  constructor() {
5670
5711
  effect(() => {
@@ -6771,7 +6812,7 @@ class SectionFormItemComponent extends ConfigComponent {
6771
6812
  break;
6772
6813
  }
6773
6814
  case InputType.TOGGLE: {
6774
- const { ToggleInputComponent } = await import('./magmonium-one-toggle-CzrlUm9C.mjs');
6815
+ const { ToggleInputComponent } = await import('./magmonium-one-toggle-BQEqhSdp.mjs');
6775
6816
  this.createDynamicComponent(seq, ToggleInputComponent, [], true);
6776
6817
  break;
6777
6818
  }
@@ -6783,12 +6824,12 @@ class SectionFormItemComponent extends ConfigComponent {
6783
6824
  break;
6784
6825
  }
6785
6826
  case InputType.PASSWORD: {
6786
- const { PasswordInputComponent } = await import('./magmonium-one-password-GYSJXyp0.mjs');
6827
+ const { PasswordInputComponent } = await import('./magmonium-one-password-CseJCPaP.mjs');
6787
6828
  this.createDynamicComponent(seq, PasswordInputComponent);
6788
6829
  break;
6789
6830
  }
6790
6831
  case InputType.OTP: {
6791
- const { OtpInputComponent } = await import('./magmonium-one-otp-Crc-7_tc.mjs');
6832
+ const { OtpInputComponent } = await import('./magmonium-one-otp-Ct5-Sryt.mjs');
6792
6833
  this.createDynamicComponent(seq, OtpInputComponent);
6793
6834
  break;
6794
6835
  }
@@ -20289,7 +20330,7 @@ class WrapperInputComponent extends ConfigComponent {
20289
20330
  break;
20290
20331
  }
20291
20332
  case InputType.TOGGLE: {
20292
- const { ToggleInputComponent } = await import('./magmonium-one-toggle-CzrlUm9C.mjs');
20333
+ const { ToggleInputComponent } = await import('./magmonium-one-toggle-BQEqhSdp.mjs');
20293
20334
  this.createDynamicComponent(seq, ToggleInputComponent, [], true);
20294
20335
  break;
20295
20336
  }
@@ -20301,12 +20342,12 @@ class WrapperInputComponent extends ConfigComponent {
20301
20342
  break;
20302
20343
  }
20303
20344
  case InputType.PASSWORD: {
20304
- const { PasswordInputComponent } = await import('./magmonium-one-password-GYSJXyp0.mjs');
20345
+ const { PasswordInputComponent } = await import('./magmonium-one-password-CseJCPaP.mjs');
20305
20346
  this.createDynamicComponent(seq, PasswordInputComponent);
20306
20347
  break;
20307
20348
  }
20308
20349
  case InputType.OTP: {
20309
- const { OtpInputComponent } = await import('./magmonium-one-otp-Crc-7_tc.mjs');
20350
+ const { OtpInputComponent } = await import('./magmonium-one-otp-Ct5-Sryt.mjs');
20310
20351
  this.createDynamicComponent(seq, OtpInputComponent);
20311
20352
  break;
20312
20353
  }
@@ -28768,7 +28809,7 @@ class NavTrailComponent {
28768
28809
  @for (item of trail; track item.id; let i = $index; let last = $last) {
28769
28810
  <div class="trail-item" [style.animation-delay.ms]="i * 50">
28770
28811
  @if (item.nav; as nav) {
28771
- <a [mRef]="nav" class="trail-link">
28812
+ <a [mRef]="nav" [mRefParams]="item.navParams" class="trail-link">
28772
28813
  {{ item.label | translate }}
28773
28814
  </a>
28774
28815
  } @else if (item.href; as href) {
@@ -28795,7 +28836,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
28795
28836
  @for (item of trail; track item.id; let i = $index; let last = $last) {
28796
28837
  <div class="trail-item" [style.animation-delay.ms]="i * 50">
28797
28838
  @if (item.nav; as nav) {
28798
- <a [mRef]="nav" class="trail-link">
28839
+ <a [mRef]="nav" [mRefParams]="item.navParams" class="trail-link">
28799
28840
  {{ item.label | translate }}
28800
28841
  </a>
28801
28842
  } @else if (item.href; as href) {
@@ -28977,7 +29018,14 @@ class NavMenuComponent {
28977
29018
  <div class="nav-menu__item">
28978
29019
  @if (item.nav; as nav) {
28979
29020
  <!-- Icon and label share one NavRef so either click reaches the same place. -->
28980
- <a [mRef]="nav" mRefLinkActive="active" class="nav-menu__link">
29021
+ <!-- A dynamic Nav's rows all share one NavId; mRefParams is the
29022
+ instance, and is what makes one row's target differ from the next. -->
29023
+ <a
29024
+ [mRef]="nav"
29025
+ [mRefParams]="item.navParams"
29026
+ mRefLinkActive="active"
29027
+ class="nav-menu__link"
29028
+ >
28981
29029
  <span class="nav-menu__icon">
28982
29030
  <m-icon [name]="item.icon || 'menu'" [baseUrl]="baseUrl()" />
28983
29031
  </span>
@@ -29012,7 +29060,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
29012
29060
  <div class="nav-menu__item">
29013
29061
  @if (item.nav; as nav) {
29014
29062
  <!-- Icon and label share one NavRef so either click reaches the same place. -->
29015
- <a [mRef]="nav" mRefLinkActive="active" class="nav-menu__link">
29063
+ <!-- A dynamic Nav's rows all share one NavId; mRefParams is the
29064
+ instance, and is what makes one row's target differ from the next. -->
29065
+ <a
29066
+ [mRef]="nav"
29067
+ [mRefParams]="item.navParams"
29068
+ mRefLinkActive="active"
29069
+ class="nav-menu__link"
29070
+ >
29016
29071
  <span class="nav-menu__icon">
29017
29072
  <m-icon [name]="item.icon || 'menu'" [baseUrl]="baseUrl()" />
29018
29073
  </span>
@@ -34526,4 +34581,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
34526
34581
  */
34527
34582
 
34528
34583
  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
34584
+ //# sourceMappingURL=magmonium-one-magmonium-one-cbkImPRD.mjs.map