@magmonium/one 0.2.32 → 0.2.34

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.
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { InjectionToken, inject, Injectable, signal, computed, DestroyRef, DOCUMENT, ApplicationRef, RendererFactory2, createComponent, EnvironmentInjector, Pipe, ChangeDetectorRef, ElementRef, afterNextRender, input, ChangeDetectionStrategy, Component, effect, Injector, reflectComponentType, untracked, model, HostListener, Renderer2, Directive, output, viewChild, ViewEncapsulation, forwardRef, contentChild, TemplateRef, ViewContainerRef, inputBinding, outputBinding, linkedSignal, afterRenderEffect, runInInjectionContext, Input, booleanAttribute, HostAttributeToken, EventEmitter, Output, ViewChild, ContentChild, provideZonelessChangeDetection, makeEnvironmentProviders, HostBinding, provideAppInitializer, provideBrowserGlobalErrorListeners, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
2
+ import { InjectionToken, inject, Injectable, signal, computed, DestroyRef, DOCUMENT, ApplicationRef, RendererFactory2, createComponent, EnvironmentInjector, Pipe, ChangeDetectorRef, untracked, ElementRef, afterNextRender, input, ChangeDetectionStrategy, Component, effect, Injector, reflectComponentType, model, HostListener, Renderer2, Directive, output, viewChild, ViewEncapsulation, forwardRef, contentChild, TemplateRef, ViewContainerRef, inputBinding, outputBinding, linkedSignal, afterRenderEffect, runInInjectionContext, Input, booleanAttribute, HostAttributeToken, EventEmitter, Output, ViewChild, ContentChild, provideZonelessChangeDetection, makeEnvironmentProviders, HostBinding, provideAppInitializer, provideBrowserGlobalErrorListeners, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
3
3
  import { HttpClient, HttpParams, provideHttpClient, withFetch, withInterceptors } from '@angular/common/http';
4
4
  import { firstValueFrom, of, tap, catchError, throwError, shareReplay, finalize, map, forkJoin, Observable, pipe, interval, fromEvent, switchMap as switchMap$1, filter, EMPTY, combineLatest, Subject, race, take, from } from 'rxjs';
5
5
  import { rxResource, toObservable, toSignal, takeUntilDestroyed } from '@angular/core/rxjs-interop';
@@ -2618,13 +2618,19 @@ const loadingActions = {
2618
2618
  // no change detection in between, so the overlay never rendered a frame. The
2619
2619
  // increment lands before the request is even sent; only the decrement needs to
2620
2620
  // wait for the response it belongs to.
2621
+ // `untracked`, because the increment is eager and a request may be sent from
2622
+ // inside a `computed` — a lazily read widget map, an asset a derived value
2623
+ // asks for. The counter is bookkeeping about the outside world rather than
2624
+ // anything that computed derives, so writing it there is not the bug Angular's
2625
+ // NG0600 guards against: without this, one such request threw mid-evaluation
2626
+ // and took the panel that asked for it down with it.
2621
2627
  startLoading: () => {
2622
- loadingSignal.update((state) => ({
2628
+ untracked(() => loadingSignal.update((state) => ({
2623
2629
  ...state,
2624
2630
  requestCount: state.requestCount + 1,
2625
2631
  error: undefined,
2626
2632
  cancelled: undefined,
2627
- }));
2633
+ })));
2628
2634
  },
2629
2635
  stopLoading: () => {
2630
2636
  queueMicrotask(() => {
@@ -3890,8 +3896,31 @@ const NavStore = signalStore({ providedIn: 'root' }, withState(initialState$3),
3890
3896
  const navWidgetMaps = inject(NAV_WIDGET_MAP, {
3891
3897
  optional: true,
3892
3898
  });
3893
- /** The one key. Route's NavId plus whatever Murl segments are open. */
3894
- const id = computed(() => navIdFor(store.routeNavId() ?? ROOT_NAV$1, store.murl()), ...(ngDevMode ? [{ debugName: "id" }] : /* istanbul ignore next */ []));
3899
+ /**
3900
+ * The one key. The route's NavId with its Default Navs collapsed, they
3901
+ * name no place of their own — plus whatever Murl segments are open. An app
3902
+ * whose landing route is `root_default` anchored every panel it opened at
3903
+ * `root_default_search`, which nothing registers and no asset names, so the
3904
+ * chrome opened onto the page's own menu instead of onto itself.
3905
+ */
3906
+ const anchorRouteNavId = computed(() => visibleNavId(store.routeNavId() ?? ROOT_NAV$1), ...(ngDevMode ? [{ debugName: "anchorRouteNavId" }] : /* istanbul ignore next */ []));
3907
+ const id = computed(() => navIdFor(anchorRouteNavId(), store.murl()), ...(ngDevMode ? [{ debugName: "id" }] : /* istanbul ignore next */ []));
3908
+ /**
3909
+ * The keys a panel is looked up under, nearest first: the anchored one, and
3910
+ * — while a Murl is open — the root-anchored one behind it. A Murl is a
3911
+ * panel, and an Anchor is where it was opened from rather than what fills
3912
+ * it: with nothing registered for `/page|search`, the global `root_search`
3913
+ * is what that address meant, and falling through to it beats leaving the
3914
+ * page's own menu up while a panel is addressed.
3915
+ */
3916
+ const widgetNavIds = computed(() => {
3917
+ const anchored = id();
3918
+ const murl = store.murl();
3919
+ if (!murl.length)
3920
+ return [anchored];
3921
+ const rooted = navIdFor(ROOT_NAV$1, murl);
3922
+ return anchored === rooted ? [anchored] : [anchored, rooted];
3923
+ }, ...(ngDevMode ? [{ debugName: "widgetNavIds" }] : /* istanbul ignore next */ []));
3895
3924
  const hasMurl = computed(() => store.murl().length > 0, ...(ngDevMode ? [{ debugName: "hasMurl" }] : /* istanbul ignore next */ []));
3896
3925
  const isNavOpened = computed(() => hasMurl() || store.navOpenedByUser(), ...(ngDevMode ? [{ debugName: "isNavOpened" }] : /* istanbul ignore next */ []));
3897
3926
  const isMNavOpened = hasMurl;
@@ -3912,23 +3941,25 @@ const NavStore = signalStore({ providedIn: 'root' }, withState(initialState$3),
3912
3941
  * element and leave theme / language blank.
3913
3942
  */
3914
3943
  const widgetEntry = computed(() => {
3915
- const navId = id();
3916
3944
  const appNavId = store.appNavId();
3917
3945
  const appLink = store.appLink();
3918
- if (appLink && appNavId) {
3919
- const registered = store.remoteWidgets()[appLink];
3920
- const localId = toLocalNavId(navId, appNavId);
3921
- if (registered && localId) {
3922
- const entry = registered.widgetMap()[localId];
3923
- if (entry)
3924
- return { entry, remote: true };
3925
- }
3926
- }
3927
3946
  const maps = navWidgetMaps ?? [];
3928
- for (let i = maps.length - 1; i >= 0; i--) {
3929
- const entry = maps[i]()[navId];
3930
- if (entry !== undefined)
3931
- return { entry, remote: false };
3947
+ for (const candidate of widgetNavIds()) {
3948
+ const navId = candidate;
3949
+ if (appLink && appNavId) {
3950
+ const registered = store.remoteWidgets()[appLink];
3951
+ const localId = toLocalNavId(navId, appNavId);
3952
+ if (registered && localId) {
3953
+ const entry = registered.widgetMap()[localId];
3954
+ if (entry)
3955
+ return { entry, remote: true, navId: candidate };
3956
+ }
3957
+ }
3958
+ for (let i = maps.length - 1; i >= 0; i--) {
3959
+ const entry = maps[i]()[navId];
3960
+ if (entry !== undefined)
3961
+ return { entry, remote: false, navId: candidate };
3962
+ }
3932
3963
  }
3933
3964
  return undefined;
3934
3965
  }, ...(ngDevMode ? [{ debugName: "widgetEntry" }] : /* istanbul ignore next */ []));
@@ -3952,12 +3983,30 @@ const NavStore = signalStore({ providedIn: 'root' }, withState(initialState$3),
3952
3983
  const appLink = store.appLink();
3953
3984
  return appLink ? store.wcConfigMap()[appLink] : undefined;
3954
3985
  }, ...(ngDevMode ? [{ debugName: "currentWcConfig" }] : /* istanbul ignore next */ []));
3986
+ /**
3987
+ * The Nav the open panel *is*, which is the key its content answered to.
3988
+ * A Murl that fell through to its root-anchored panel is showing that
3989
+ * panel, so the header and the trail are that one's too — reading them off
3990
+ * the anchored key would title the global panel after the page it opened
3991
+ * over.
3992
+ */
3993
+ const panelNavId = computed(() => {
3994
+ const hit = widgetEntry();
3995
+ if (hit)
3996
+ return hit.navId;
3997
+ // Nothing registered under either key, so the panel is a *menu*: the
3998
+ // same fall-through applies to the tree. `/page|settings` names the
3999
+ // global settings list, and reading it off the anchored key — a NavId no
4000
+ // asset holds — left the page's own menu up under its own header.
4001
+ const map = store.navMap();
4002
+ return widgetNavIds().find((c) => menuChildIds(c, map).length) ?? id();
4003
+ }, ...(ngDevMode ? [{ debugName: "panelNavId" }] : /* istanbul ignore next */ []));
3955
4004
  const breadcrumbResult = computed(() => {
3956
4005
  const menuConfig = resolvedNavMenuConfig();
3957
4006
  const widgetConfig = resolvedWidget();
3958
4007
  const emittedMenu = menuConfig?.navMenu();
3959
4008
  return deriveBreadcrumb({
3960
- navId: id(),
4009
+ navId: panelNavId(),
3961
4010
  navMap: store.navMap(),
3962
4011
  anchor: { navId: store.routeNavId() ?? ROOT_NAV$1, path: store.path() },
3963
4012
  breadcrumb: menuConfig?.breadcramb?.() ??
@@ -6560,7 +6609,7 @@ class SectionFormItemComponent extends ConfigComponent {
6560
6609
  break;
6561
6610
  }
6562
6611
  case InputType.TOGGLE: {
6563
- const { ToggleInputComponent } = await import('./magmonium-one-toggle-o2rUxJbn.mjs');
6612
+ const { ToggleInputComponent } = await import('./magmonium-one-toggle-CGQcwMix.mjs');
6564
6613
  this.createDynamicComponent(seq, ToggleInputComponent, [], true);
6565
6614
  break;
6566
6615
  }
@@ -6572,12 +6621,12 @@ class SectionFormItemComponent extends ConfigComponent {
6572
6621
  break;
6573
6622
  }
6574
6623
  case InputType.PASSWORD: {
6575
- const { PasswordInputComponent } = await import('./magmonium-one-password-DUuFTISJ.mjs');
6624
+ const { PasswordInputComponent } = await import('./magmonium-one-password-uZNaA0ja.mjs');
6576
6625
  this.createDynamicComponent(seq, PasswordInputComponent);
6577
6626
  break;
6578
6627
  }
6579
6628
  case InputType.OTP: {
6580
- const { OtpInputComponent } = await import('./magmonium-one-otp-BUouuBsP.mjs');
6629
+ const { OtpInputComponent } = await import('./magmonium-one-otp-H2f26MEi.mjs');
6581
6630
  this.createDynamicComponent(seq, OtpInputComponent);
6582
6631
  break;
6583
6632
  }
@@ -19980,7 +20029,7 @@ class WrapperInputComponent extends ConfigComponent {
19980
20029
  break;
19981
20030
  }
19982
20031
  case InputType.TOGGLE: {
19983
- const { ToggleInputComponent } = await import('./magmonium-one-toggle-o2rUxJbn.mjs');
20032
+ const { ToggleInputComponent } = await import('./magmonium-one-toggle-CGQcwMix.mjs');
19984
20033
  this.createDynamicComponent(seq, ToggleInputComponent, [], true);
19985
20034
  break;
19986
20035
  }
@@ -19992,12 +20041,12 @@ class WrapperInputComponent extends ConfigComponent {
19992
20041
  break;
19993
20042
  }
19994
20043
  case InputType.PASSWORD: {
19995
- const { PasswordInputComponent } = await import('./magmonium-one-password-DUuFTISJ.mjs');
20044
+ const { PasswordInputComponent } = await import('./magmonium-one-password-uZNaA0ja.mjs');
19996
20045
  this.createDynamicComponent(seq, PasswordInputComponent);
19997
20046
  break;
19998
20047
  }
19999
20048
  case InputType.OTP: {
20000
- const { OtpInputComponent } = await import('./magmonium-one-otp-BUouuBsP.mjs');
20049
+ const { OtpInputComponent } = await import('./magmonium-one-otp-H2f26MEi.mjs');
20001
20050
  this.createDynamicComponent(seq, OtpInputComponent);
20002
20051
  break;
20003
20052
  }
@@ -34217,4 +34266,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
34217
34266
  */
34218
34267
 
34219
34268
  export { DEFAULT_NAV_SEGMENT 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_ID_SEP as a$, DEFAULT_SIZE as a0, DashboardCardComponent as a1, DateInputComponent as a2, DatePickerComponent as a3, DeviceService as a4, DomService as a5, Domain as a6, DotGridComponent as a7, DragListDirective as a8, DragListItemDirective as a9, InstrumentScoreComponent as aA, InterceptorObservables as aB, JumbotronComponent as aC, KeyValueComponent as aD, LAYOUT_ASSET_FOLDER as aE, LOGIN_COMPONENT as aF, LOGIN_STORE as aG, LanguageComponent as aH, LogoComponent as aI, MAG_SOCKET_EVENT as aJ, MHeroColorDirective as aK, MHeroComponent as aL, MODAL_REF as aM, MODAL_STORE_REF as aN, MRefDirective as aO, MStepComponent as aP, MURL_PARAM as aQ, MURL_SEP as aR, ManifestEnrichmentService as aS, MenuComponent as aT, ModalDirective as aU, ModalRef as aV, ModalStore as aW, MoneyPipe as aX, MultiRangeInputComponent as aY, MurlUrlSerializer as aZ, NAV_DEFAULT_MURL as a_, DraggableDirective as aa, DropdownInputComponent as ab, FILTER_GROUP_CONTEXT as ac, FILTER_RANGE_MODES as ad, FILTER_VARIANTS as ae, FLEX_VARIANTS as af, FOLDER_PICK_LISTENER as ag, FORM_ASSET_FOLDER as ah, FileService as ai, FileUploadDirective as aj, FileUploadInputComponent as ak, FlexComponent as al, FlexItemComponent as am, FormGroupComponent as an, FrameComponent as ao, FreezeService as ap, GRID_BREAKPOINTS as aq, GetNavService as ar, HeaderComponent$1 as as, HighlightDirective as at, HttpService as au, ICON_SOURCE as av, IS_SIDE_PANEL as aw, IconComponent as ax, ImgComponent as ay, InputType as az, TextOutputComponent as b, SectionBadgesComponent as b$, NAV_MAIN_BUTTONS as b0, NAV_SEGMENT_RE as b1, NAV_STORE_REF as b2, NAV_WC_COMPONENTS as b3, NAV_WIDGET_MAP as b4, NavComponent as b5, NavDetailsComponent as b6, NavHeaderComponent as b7, NavMenuComponent as b8, NavStore as b9, PwaInstallComponent as bA, ROOT_NAV$1 as bB, RadioGroupComponent as bC, RadioInputComponent as bD, RangeInputComponent as bE, RatingInputComponent as bF, ReactiveElementComponent as bG, RemoteComponent as bH, RemoteLoaderService as bI, ResizeElementComponent as bJ, RouteContainer as bK, RowComponent as bL, SEARCH_QUERY as bM, SEARCH_RESULTS_EVENT as bN, SECTION_ACCORDION_GROUP as bO, SECTION_FORM_CONTEXT as bP, SHARED_ICONS as bQ, SIZE_CONTEXT as bR, ScoreComponent as bS, ScrollComponent as bT, ScrollService as bU, SearchPanelComponent as bV, SearchStore as bW, SearchUserPanelComponent as bX, SectionAccordionDirective as bY, SectionAccordionGroupDirective as bZ, SectionBackComponent as b_, NavTrailComponent as ba, NothingComponent as bb, NotificationElementComponent as bc, NotificationGroupComponent as bd, NotificationPopupComponent as be, NotificationService as bf, NotificationStore as bg, NotificationType as bh, NotificationWidgetComponent as bi, ONE_ASSET_BASE_URL as bj, OPTIONS_SOURCE as bk, OVERLAY_WIDGETS as bl, OneApp as bm, OptionsSourceDirective as bn, OverlayBodyComponent as bo, OverlayRef as bp, OverlayService as bq, PLATFORM_BUTTON_NAV_IDS as br, PLATFORM_EXTENSIBLE_NAV_IDS as bs, PLATFORM_NAV_MAP as bt, PLATFORM_ROOT_CHILDREN as bu, PaginationComponent as bv, PanelComponent as bw, PercentagePipe as bx, PlaygroundComponent as by, PositionDirective as bz, ButtonComponent as c, UlComponent as c$, SectionButtonGroupComponent as c0, SectionCardComponent as c1, SectionCarouselComponent as c2, SectionComponent as c3, SectionFilterComponent as c4, SectionFilterGroupComponent as c5, SectionFilterMenuComponent as c6, SectionFilterPanelComponent as c7, SectionFilterRangePanelComponent as c8, SectionFooterComponent as c9, StrokeLinejoin as cA, SummaryComponent as cB, SvgGeneratorComponent as cC, SvgGeneratorService as cD, SvgService as cE, TOTAL_COLUMNS as cF, TRANSLATION_SOURCE as cG, TableComponent as cH, TechnicalMeterComponent as cI, TextInputComponent as cJ, TextareaInputComponent as cK, ThemeComponent as cL, ThemeDataService as cM, ThemeService as cN, ThemeStore as cO, TimeAgoPipe as cP, TimelineComponent as cQ, ToggleButtonComponent as cR, ToggleInputComponent as cS, ToggleRadioInputComponent as cT, ToolTipDirective as cU, TooltipComponent as cV, TranslateService as cW, TreeGridComponent as cX, URL_SEP as cY, USER_STORE_REF as cZ, USER_TAB_MAP as c_, SectionFormComponent as ca, SectionFormItemComponent as cb, SectionHeaderComponent as cc, SectionHeroComponent as cd, SectionPaginationComponent as ce, SectionSearchComponent as cf, SectionStepperComponent as cg, SectionTabsComponent as ch, SectionToggleComponent as ci, SectionToggleItemDirective as cj, SelectableCardInputComponent as ck, SelectorDirective as cl, SettingsSearchBarComponent as cm, SettingsSearchService as cn, ShapeComponent as co, SharedStoreRegistry as cp, SidePanelDirective as cq, Size as cr, SocketStore as cs, SortComponent as ct, StatComponent as cu, StepComponent as cv, StepperComponent as cw, StepsComponent as cx, StorageService as cy, StrokeLinecap as cz, APP_CONTEXT_REF as d, hexToRgb as d$, UniverseComponent as d0, UserApiService as d1, UserAvatarComponent as d2, UserComponent as d3, UserNavComponent as d4, UserSettingsComponent as d5, UserStore as d6, WC_ROUTE_CHANGED_EVENT as d7, WC_SEARCH_GROUPS as d8, WIN_USER_TAB_HOOK as d9, evaluate as dA, evaluateBool as dB, filterHoldsList as dC, filterHoldsOneBound as dD, filterHoldsOptions as dE, filterHoldsRange as dF, filterList as dG, filterOne as dH, filterPanelOf as dI, filterPanelWidth as dJ, filterRange as dK, filterTreeGridRows as dL, filterValueList as dM, filterValues as dN, flattenTreeGridRows as dO, formatBadgeCount as dP, fullName as dQ, generateClipPath as dR, generateTransform as dS, getClassList as dT, getProperty as dU, getScrollParent as dV, getTierFromPreviewPath as dW, getTreeGridRow as dX, getUniqueId as dY, getValue as dZ, hasErrorComputed as d_, WIN_USER_TAB_KEY as da, WatermarkComponent as db, WcRouterStore as dc, WrapperInputComponent as dd, anchorNavId as de, applyColorsToElement as df, bootstrapMagApp as dg, bootstrapPwaInstall as dh, buildWcBaseUrl as di, calculateLuminance as dj, calculateRanks as dk, cellText as dl, checkFilterCondition as dm, childNavId as dn, classListSignal as dp, coerceSize as dq, cornerEdge as dr, cornerSide as ds, createMap as dt, createPlatformNavMap as du, deriveAvatarGradient as dv, deriveContrastColor as dw, deriveOppositeColor as dx, derivePropertyName as dy, emailValidation as dz, ASSET_BASE_URL as e, provideSizeContext as e$, hslToRgb$1 as e0, initMagmoniumApp as e1, initialNotificationState as e2, initialState$2 as e3, initials as e4, injectAuthenticate as e5, injectInstallApp as e6, injectParentSize as e7, injectScrollSticky as e8, isButtonName as e9, minValidation as eA, miniMarkToHtml as eB, navIdChain as eC, navIdFor as eD, navIdSegment as eE, navIdToRoutePath as eF, navIdToSegments as eG, navToId as eH, parentNavId as eI, parseAddress as eJ, parseColor as eK, parsePatternNames as eL, patternValidation as eM, patternsValidation as eN, platformNavWidgets as eO, privateGuard as eP, processImageToSvg as eQ, provideAppContext as eR, provideMagAppConfig as eS, provideMagWcConfig as eT, provideMagWcRoutes as eU, provideModalComponents as eV, provideMurlUrlSerializer as eW, provideNavWidgets as eX, provideOverlayWidgets as eY, providePlatformNavWidgets as eZ, provideSearch as e_, isCancelledComputed as ea, isExtensiblePlatformNavId as eb, isJson as ec, isLoadingComputed as ed, isLocalhost as ee, isPlatformNavId as ef, isSize as eg, isTierPreview as eh, isUrlLocalhost as ei, isValidNavId as ej, isValidNavSegment as ek, isWebComponent as el, linkToId as em, linkToNav as en, loadingActions as eo, mInterceptor as ep, manualValidation as eq, matchFieldValidation as er, maxLengthValidation as es, maxValidation as et, mergePlatformNav as eu, mergeUnique as ev, mergeUniqueBy as ew, mergeUniqueWith as ex, minAgeValidation as ey, minLengthValidation as ez, AccordionBodyDirective as f, provideUserTabs as f0, publicGuard as f1, readFieldPatterns as f2, renderAddress as f3, requiredValidation as f4, resolveConfigAsset as f5, resolveIconSize as f6, resolvePallet as f7, resolvePatternRules as f8, resolveSize as f9, rgbToHex as fa, rgbToHsl as fb, rowHasChildren as fc, samePatterns as fd, segmentsToNavId as fe, setProperty as ff, setTreeGridChildren as fg, settingsWidgets as fh, shouldShowBadge as fi, splitNavId as fj, splitOnMatch as fk, stringToColor as fl, toAttrBool as fm, toAttrNumber as fn, toCssLength as fo, toHostNavId as fp, toLength$1 as fq, toLocalNavId as fr, toggleTreeGridRow as fs, unfetchedPlatformNav as ft, urlValidation as fu, 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 };
34220
- //# sourceMappingURL=magmonium-one-magmonium-one-ByLv1VIM.mjs.map
34269
+ //# sourceMappingURL=magmonium-one-magmonium-one-Cc9Gk-uU.mjs.map