@magmonium/one 0.2.29 → 0.2.30
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.
- package/fesm2022/{magmonium-one-magmonium-one-lhU_xBZf.mjs → magmonium-one-magmonium-one-7AyJYdDN.mjs} +72 -23
- package/fesm2022/magmonium-one-magmonium-one-7AyJYdDN.mjs.map +1 -0
- package/fesm2022/{magmonium-one-otp-DeUCHCNZ.mjs → magmonium-one-otp-9ViyVIbd.mjs} +2 -2
- package/fesm2022/{magmonium-one-otp-DeUCHCNZ.mjs.map → magmonium-one-otp-9ViyVIbd.mjs.map} +1 -1
- package/fesm2022/{magmonium-one-password-Cr3XxtEj.mjs → magmonium-one-password-XcxANvjC.mjs} +2 -2
- package/fesm2022/{magmonium-one-password-Cr3XxtEj.mjs.map → magmonium-one-password-XcxANvjC.mjs.map} +1 -1
- package/fesm2022/{magmonium-one-toggle-CsuV_RXV.mjs → magmonium-one-toggle-DGDQ1WqU.mjs} +2 -2
- package/fesm2022/{magmonium-one-toggle-CsuV_RXV.mjs.map → magmonium-one-toggle-DGDQ1WqU.mjs.map} +1 -1
- package/fesm2022/magmonium-one.mjs +1 -1
- package/package.json +1 -1
- package/fesm2022/magmonium-one-magmonium-one-lhU_xBZf.mjs.map +0 -1
|
@@ -3479,6 +3479,19 @@ const visibleNavId = (navId) => {
|
|
|
3479
3479
|
id = parentNavId(id) ?? ROOT_NAV$1;
|
|
3480
3480
|
return id;
|
|
3481
3481
|
};
|
|
3482
|
+
/**
|
|
3483
|
+
* The direct children of a Nav. `children` is the authored list, but a Nav that
|
|
3484
|
+
* never declared one is not childless: the map already holds every node fetched
|
|
3485
|
+
* for this descent, and a child is named by its own id. Reading the map when the
|
|
3486
|
+
* list is absent is what keeps a generated tree — where only the leaves were
|
|
3487
|
+
* emitted — from titling a leaf over an empty panel.
|
|
3488
|
+
*/
|
|
3489
|
+
const childIdsOf = (navId, navMap) => {
|
|
3490
|
+
const declared = navMap[navId]?.children;
|
|
3491
|
+
if (declared?.length)
|
|
3492
|
+
return declared;
|
|
3493
|
+
return Object.keys(navMap).filter((id) => parentNavId(id) === navId);
|
|
3494
|
+
};
|
|
3482
3495
|
/**
|
|
3483
3496
|
* The children a menu may draw. A Nav needs a title to be a row at all, and a
|
|
3484
3497
|
* `default` node is not a row: it is its parent's own content, so it is
|
|
@@ -3488,7 +3501,7 @@ const visibleNavId = (navId) => {
|
|
|
3488
3501
|
* in the middle of it. Filtering the node out without adopting its children
|
|
3489
3502
|
* left that app with no rows at all.
|
|
3490
3503
|
*/
|
|
3491
|
-
const menuChildIds = (navId, navMap) => (
|
|
3504
|
+
const menuChildIds = (navId, navMap) => childIdsOf(navId, navMap).flatMap((childId) => {
|
|
3492
3505
|
if (isDefaultNav(childId))
|
|
3493
3506
|
return menuChildIds(childId, navMap);
|
|
3494
3507
|
return navMap[childId]?.title ? [childId] : [];
|
|
@@ -3500,20 +3513,29 @@ const menuChildIds = (navId, navMap) => (navMap[navId]?.children ?? []).flatMap(
|
|
|
3500
3513
|
* list the User moved through and the row they are on is the one marked
|
|
3501
3514
|
* active. Root is the floor: its own children are the last list there is.
|
|
3502
3515
|
*/
|
|
3503
|
-
const navMenuOwnerId = (navId, navMap) => {
|
|
3516
|
+
const navMenuOwnerId = (navId, navMap, hasOwnContent = false) => {
|
|
3504
3517
|
const visible = visibleNavId(navId);
|
|
3505
3518
|
if (visible === ROOT_NAV$1 || menuChildIds(visible, navMap).length) {
|
|
3506
3519
|
return visible;
|
|
3507
3520
|
}
|
|
3508
|
-
//
|
|
3509
|
-
//
|
|
3510
|
-
// wrong panel.
|
|
3511
|
-
|
|
3521
|
+
// A panel that answers with a widget of its own keeps its own title —
|
|
3522
|
+
// titling it after its parent while showing its own content reads as the
|
|
3523
|
+
// wrong panel. Being a Murl is not that proof: a Murl leaf nothing is
|
|
3524
|
+
// registered for draws nothing, and an empty panel must not name itself.
|
|
3525
|
+
if (hasOwnContent)
|
|
3512
3526
|
return visible;
|
|
3513
|
-
//
|
|
3514
|
-
//
|
|
3515
|
-
|
|
3516
|
-
|
|
3527
|
+
// Nothing of its own and no rows under it: hand the panel to the nearest
|
|
3528
|
+
// ancestor that has rows, so the User reads the list they are in with their
|
|
3529
|
+
// own row marked. Where no ancestor lists anything there is no better title
|
|
3530
|
+
// than the one we are on — a mistitled empty panel is worse than a titled one.
|
|
3531
|
+
for (let ancestor = parentNavId(visible); ancestor; ancestor = parentNavId(ancestor)) {
|
|
3532
|
+
const owner = visibleNavId(ancestor);
|
|
3533
|
+
if (menuChildIds(owner, navMap).length)
|
|
3534
|
+
return owner;
|
|
3535
|
+
if (owner === ROOT_NAV$1)
|
|
3536
|
+
break;
|
|
3537
|
+
}
|
|
3538
|
+
return visible;
|
|
3517
3539
|
};
|
|
3518
3540
|
const buildNavMenus = (navId, navMap, anchor) => menuChildIds(navId, navMap).map((childId) => toTrailItem(childId, navMap, anchor));
|
|
3519
3541
|
/**
|
|
@@ -3530,13 +3552,17 @@ const mergeTrail = (derived, override, derivedHeader) => {
|
|
|
3530
3552
|
return { trail, header: override.header ?? derivedHeader };
|
|
3531
3553
|
};
|
|
3532
3554
|
function deriveBreadcrumb(params) {
|
|
3533
|
-
const { navId, navMap, anchor, breadcrumb, navMenu } = params;
|
|
3555
|
+
const { navId, navMap, anchor, breadcrumb, navMenu, hasOwnContent } = params;
|
|
3534
3556
|
if (!navId)
|
|
3535
3557
|
return emptyResult();
|
|
3536
3558
|
// The header and the trail belong to whichever Nav owns the menu below them:
|
|
3537
3559
|
// on a leaf that is the parent, so the User reads the list they are in with
|
|
3538
3560
|
// their own row marked, rather than a title over an empty panel.
|
|
3539
|
-
const ownerId = navMenuOwnerId(navId, navMap);
|
|
3561
|
+
const ownerId = navMenuOwnerId(navId, navMap, hasOwnContent);
|
|
3562
|
+
// An emitted breadcrumb names the panel it was emitted for. Once the panel
|
|
3563
|
+
// has been handed up to an ancestor it is no longer that panel, so the
|
|
3564
|
+
// override would title the ancestor's list after the leaf we left.
|
|
3565
|
+
const ownPanel = ownerId === visibleNavId(navId);
|
|
3540
3566
|
const chain = navIdChain(ownerId);
|
|
3541
3567
|
const derivedTrail = chain
|
|
3542
3568
|
.slice(0, -1)
|
|
@@ -3550,12 +3576,14 @@ function deriveBreadcrumb(params) {
|
|
|
3550
3576
|
nav: ownerId,
|
|
3551
3577
|
address: renderAddress(ownerId, navMap, anchor),
|
|
3552
3578
|
};
|
|
3553
|
-
const { trail, header } = breadcrumb
|
|
3579
|
+
const { trail, header } = breadcrumb && ownPanel
|
|
3554
3580
|
? mergeTrail(derivedTrail, breadcrumb, derivedHeader)
|
|
3555
3581
|
: { trail: derivedTrail, header: derivedHeader };
|
|
3556
3582
|
return {
|
|
3557
3583
|
breadcrumb: { trail, header },
|
|
3558
|
-
navMenus: navMenu
|
|
3584
|
+
navMenus: navMenu?.length && ownPanel
|
|
3585
|
+
? navMenu
|
|
3586
|
+
: buildNavMenus(ownerId, navMap, anchor),
|
|
3559
3587
|
};
|
|
3560
3588
|
}
|
|
3561
3589
|
|
|
@@ -3928,6 +3956,7 @@ const NavStore = signalStore({ providedIn: 'root' }, withState(initialState$3),
|
|
|
3928
3956
|
const breadcrumbResult = computed(() => {
|
|
3929
3957
|
const menuConfig = resolvedNavMenuConfig();
|
|
3930
3958
|
const widgetConfig = resolvedWidget();
|
|
3959
|
+
const emittedMenu = menuConfig?.navMenu();
|
|
3931
3960
|
return deriveBreadcrumb({
|
|
3932
3961
|
navId: id(),
|
|
3933
3962
|
navMap: store.navMap(),
|
|
@@ -3936,7 +3965,12 @@ const NavStore = signalStore({ providedIn: 'root' }, withState(initialState$3),
|
|
|
3936
3965
|
(typeof widgetConfig?.breadcramb === 'function'
|
|
3937
3966
|
? widgetConfig.breadcramb()
|
|
3938
3967
|
: widgetConfig?.breadcramb),
|
|
3939
|
-
navMenu:
|
|
3968
|
+
navMenu: emittedMenu,
|
|
3969
|
+
// What this Nav can draw on its own, which is what earns it the header.
|
|
3970
|
+
// A registered widget, or rows it emitted — an emitted *empty* list is
|
|
3971
|
+
// not content, so such a panel falls back to its descent like any other
|
|
3972
|
+
// leaf rather than titling itself over nothing.
|
|
3973
|
+
hasOwnContent: !!widgetConfig || !!emittedMenu?.length,
|
|
3940
3974
|
});
|
|
3941
3975
|
}, ...(ngDevMode ? [{ debugName: "breadcrumbResult" }] : /* istanbul ignore next */ []));
|
|
3942
3976
|
const breadcrumb = computed(() => breadcrumbResult().breadcrumb, ...(ngDevMode ? [{ debugName: "breadcrumb" }] : /* istanbul ignore next */ []));
|
|
@@ -5406,11 +5440,26 @@ class MRefDirective {
|
|
|
5406
5440
|
#navRef = inject(NAV_STORE_REF, { optional: true });
|
|
5407
5441
|
#renderer = inject(Renderer2);
|
|
5408
5442
|
#elementRef = inject(ElementRef);
|
|
5443
|
+
/** Exact hit only — what a toggle re-clicks, and never an ancestor. */
|
|
5409
5444
|
#currentlySelected = computed(() => this.mRef() === this.#navRef?.id(), ...(ngDevMode ? [{ debugName: "#currentlySelected" }] : /* istanbul ignore next */ []));
|
|
5445
|
+
/**
|
|
5446
|
+
* The row the open Nav came through. A menu lists the Nav Menu Owner's
|
|
5447
|
+
* children, and the User may be standing deeper than a row — on a leaf that
|
|
5448
|
+
* handed the panel back up, or on that row's own `default` — so the row is
|
|
5449
|
+
* marked when the current NavId is it or under it. Comparing for equality
|
|
5450
|
+
* alone left such a list with nothing marked at all.
|
|
5451
|
+
*/
|
|
5452
|
+
#currentlyActive = computed(() => {
|
|
5453
|
+
const target = this.mRef();
|
|
5454
|
+
const current = this.#navRef?.id();
|
|
5455
|
+
if (!target || !current)
|
|
5456
|
+
return false;
|
|
5457
|
+
return current === target || current.startsWith(`${target}_`);
|
|
5458
|
+
}, ...(ngDevMode ? [{ debugName: "#currentlyActive" }] : /* istanbul ignore next */ []));
|
|
5410
5459
|
constructor() {
|
|
5411
5460
|
effect(() => {
|
|
5412
5461
|
const activeClass = this.mRefLinkActive();
|
|
5413
|
-
const isSelected = this.#
|
|
5462
|
+
const isSelected = this.#currentlyActive();
|
|
5414
5463
|
if (!activeClass)
|
|
5415
5464
|
return;
|
|
5416
5465
|
if (isSelected) {
|
|
@@ -6512,7 +6561,7 @@ class SectionFormItemComponent extends ConfigComponent {
|
|
|
6512
6561
|
break;
|
|
6513
6562
|
}
|
|
6514
6563
|
case InputType.TOGGLE: {
|
|
6515
|
-
const { ToggleInputComponent } = await import('./magmonium-one-toggle-
|
|
6564
|
+
const { ToggleInputComponent } = await import('./magmonium-one-toggle-DGDQ1WqU.mjs');
|
|
6516
6565
|
this.createDynamicComponent(seq, ToggleInputComponent, [], true);
|
|
6517
6566
|
break;
|
|
6518
6567
|
}
|
|
@@ -6524,12 +6573,12 @@ class SectionFormItemComponent extends ConfigComponent {
|
|
|
6524
6573
|
break;
|
|
6525
6574
|
}
|
|
6526
6575
|
case InputType.PASSWORD: {
|
|
6527
|
-
const { PasswordInputComponent } = await import('./magmonium-one-password-
|
|
6576
|
+
const { PasswordInputComponent } = await import('./magmonium-one-password-XcxANvjC.mjs');
|
|
6528
6577
|
this.createDynamicComponent(seq, PasswordInputComponent);
|
|
6529
6578
|
break;
|
|
6530
6579
|
}
|
|
6531
6580
|
case InputType.OTP: {
|
|
6532
|
-
const { OtpInputComponent } = await import('./magmonium-one-otp-
|
|
6581
|
+
const { OtpInputComponent } = await import('./magmonium-one-otp-9ViyVIbd.mjs');
|
|
6533
6582
|
this.createDynamicComponent(seq, OtpInputComponent);
|
|
6534
6583
|
break;
|
|
6535
6584
|
}
|
|
@@ -19932,7 +19981,7 @@ class WrapperInputComponent extends ConfigComponent {
|
|
|
19932
19981
|
break;
|
|
19933
19982
|
}
|
|
19934
19983
|
case InputType.TOGGLE: {
|
|
19935
|
-
const { ToggleInputComponent } = await import('./magmonium-one-toggle-
|
|
19984
|
+
const { ToggleInputComponent } = await import('./magmonium-one-toggle-DGDQ1WqU.mjs');
|
|
19936
19985
|
this.createDynamicComponent(seq, ToggleInputComponent, [], true);
|
|
19937
19986
|
break;
|
|
19938
19987
|
}
|
|
@@ -19944,12 +19993,12 @@ class WrapperInputComponent extends ConfigComponent {
|
|
|
19944
19993
|
break;
|
|
19945
19994
|
}
|
|
19946
19995
|
case InputType.PASSWORD: {
|
|
19947
|
-
const { PasswordInputComponent } = await import('./magmonium-one-password-
|
|
19996
|
+
const { PasswordInputComponent } = await import('./magmonium-one-password-XcxANvjC.mjs');
|
|
19948
19997
|
this.createDynamicComponent(seq, PasswordInputComponent);
|
|
19949
19998
|
break;
|
|
19950
19999
|
}
|
|
19951
20000
|
case InputType.OTP: {
|
|
19952
|
-
const { OtpInputComponent } = await import('./magmonium-one-otp-
|
|
20001
|
+
const { OtpInputComponent } = await import('./magmonium-one-otp-9ViyVIbd.mjs');
|
|
19953
20002
|
this.createDynamicComponent(seq, OtpInputComponent);
|
|
19954
20003
|
break;
|
|
19955
20004
|
}
|
|
@@ -34169,4 +34218,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
34169
34218
|
*/
|
|
34170
34219
|
|
|
34171
34220
|
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 };
|
|
34172
|
-
//# sourceMappingURL=magmonium-one-magmonium-one-
|
|
34221
|
+
//# sourceMappingURL=magmonium-one-magmonium-one-7AyJYdDN.mjs.map
|