@magmonium/one 0.1.12 → 0.1.14

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.
@@ -6468,7 +6468,7 @@ class SectionFormItemComponent extends ConfigComponent {
6468
6468
  break;
6469
6469
  }
6470
6470
  case InputType.TOGGLE: {
6471
- const { ToggleInputComponent } = await import('./magmonium-one-toggle-PPEUz047.mjs');
6471
+ const { ToggleInputComponent } = await import('./magmonium-one-toggle-UVuimY8O.mjs');
6472
6472
  this.createDynamicComponent(seq, ToggleInputComponent, [], true);
6473
6473
  break;
6474
6474
  }
@@ -6480,12 +6480,12 @@ class SectionFormItemComponent extends ConfigComponent {
6480
6480
  break;
6481
6481
  }
6482
6482
  case InputType.PASSWORD: {
6483
- const { PasswordInputComponent } = await import('./magmonium-one-password-Bxbc4xbD.mjs');
6483
+ const { PasswordInputComponent } = await import('./magmonium-one-password-BJyjGWvN.mjs');
6484
6484
  this.createDynamicComponent(seq, PasswordInputComponent);
6485
6485
  break;
6486
6486
  }
6487
6487
  case InputType.OTP: {
6488
- const { OtpInputComponent } = await import('./magmonium-one-otp-Cwlaj225.mjs');
6488
+ const { OtpInputComponent } = await import('./magmonium-one-otp-BhQvfyaM.mjs');
6489
6489
  this.createDynamicComponent(seq, OtpInputComponent);
6490
6490
  break;
6491
6491
  }
@@ -13974,6 +13974,51 @@ function generateDragStyle({ position, direction }, modal) {
13974
13974
  }
13975
13975
  }
13976
13976
 
13977
+ // One promise per tag, kept for the life of the page. Two overlays naming the
13978
+ // same widget open in the same tick often enough — a second `import()` would
13979
+ // resolve after the first has already defined the tag, and
13980
+ // `customElements.define` throws on a name it already holds.
13981
+ const inFlight = new Map();
13982
+ const defined = (tag) => typeof customElements !== 'undefined' && !!customElements.get(tag);
13983
+ /**
13984
+ * Makes `tag` renderable, loading the widget behind it if this is the first
13985
+ * time anything asked. Answers `false` when the tag is unknown to the map and
13986
+ * undefined in the registry — the caller renders nothing rather than an
13987
+ * element the browser treats as an unknown one.
13988
+ *
13989
+ * A tag the host already defined short-circuits: an app running as a Remote
13990
+ * has its panels registered by the host, and re-defining one is an error.
13991
+ */
13992
+ function defineOverlayWidget(tag, widgets, injector) {
13993
+ if (!tag)
13994
+ return Promise.resolve(false);
13995
+ if (defined(tag))
13996
+ return Promise.resolve(true);
13997
+ const pending = inFlight.get(tag);
13998
+ if (pending)
13999
+ return pending;
14000
+ const load = widgets?.[tag];
14001
+ if (!load)
14002
+ return Promise.resolve(false);
14003
+ const task = load()
14004
+ .then((component) => {
14005
+ // Re-checked after the await: the host may have defined the tag while
14006
+ // the chunk was in the air.
14007
+ if (defined(tag))
14008
+ return true;
14009
+ customElements.define(tag, createCustomElement(component, { injector }));
14010
+ return true;
14011
+ })
14012
+ .catch(() => {
14013
+ // A chunk that failed to load is not a permanent verdict — the next open
14014
+ // gets to try again.
14015
+ inFlight.delete(tag);
14016
+ return false;
14017
+ });
14018
+ inFlight.set(tag, task);
14019
+ return task;
14020
+ }
14021
+
13977
14022
  class ToggleButtonComponent extends ConfigComponent {
13978
14023
  value = model(...(ngDevMode ? [undefined, { debugName: "value" }] : /* istanbul ignore next */ []));
13979
14024
  buttons = input(...(ngDevMode ? [undefined, { debugName: "buttons" }] : /* istanbul ignore next */ []));
@@ -17548,7 +17593,7 @@ class WrapperInputComponent extends ConfigComponent {
17548
17593
  break;
17549
17594
  }
17550
17595
  case InputType.TOGGLE: {
17551
- const { ToggleInputComponent } = await import('./magmonium-one-toggle-PPEUz047.mjs');
17596
+ const { ToggleInputComponent } = await import('./magmonium-one-toggle-UVuimY8O.mjs');
17552
17597
  this.createDynamicComponent(seq, ToggleInputComponent, [], true);
17553
17598
  break;
17554
17599
  }
@@ -17560,12 +17605,12 @@ class WrapperInputComponent extends ConfigComponent {
17560
17605
  break;
17561
17606
  }
17562
17607
  case InputType.PASSWORD: {
17563
- const { PasswordInputComponent } = await import('./magmonium-one-password-Bxbc4xbD.mjs');
17608
+ const { PasswordInputComponent } = await import('./magmonium-one-password-BJyjGWvN.mjs');
17564
17609
  this.createDynamicComponent(seq, PasswordInputComponent);
17565
17610
  break;
17566
17611
  }
17567
17612
  case InputType.OTP: {
17568
- const { OtpInputComponent } = await import('./magmonium-one-otp-Cwlaj225.mjs');
17613
+ const { OtpInputComponent } = await import('./magmonium-one-otp-BhQvfyaM.mjs');
17569
17614
  this.createDynamicComponent(seq, OtpInputComponent);
17570
17615
  break;
17571
17616
  }
@@ -25512,18 +25557,49 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
25512
25557
  }]
25513
25558
  }], ctorParameters: () => [], propDecorators: { tag: [{ type: i0.Input, args: [{ isSignal: true, alias: "tag", required: true }] }] } });
25514
25559
 
25560
+ const OVERLAY_WIDGETS = new InjectionToken('OVERLAY_WIDGETS');
25561
+ const provideOverlayWidgets = (map) => ({
25562
+ provide: OVERLAY_WIDGETS,
25563
+ useValue: map,
25564
+ });
25565
+
25515
25566
  /**
25516
25567
  * Turns an overlay's named content — a form asset name or a custom-element
25517
25568
  * tag — into rendered content. Presentational only, no business logic.
25569
+ *
25570
+ * The tag is not assumed to answer to anything yet: the widget behind it is
25571
+ * loaded and defined on first open (`OVERLAY_WIDGETS`), which is what lets an
25572
+ * App Widget be named by an overlay without being registered at bootstrap.
25518
25573
  */
25519
25574
  class OverlayBodyComponent {
25520
25575
  form = input(...(ngDevMode ? [undefined, { debugName: "form" }] : /* istanbul ignore next */ []));
25521
25576
  tag = input(...(ngDevMode ? [undefined, { debugName: "tag" }] : /* istanbul ignore next */ []));
25577
+ injector = inject(Injector);
25578
+ widgets = inject(OVERLAY_WIDGETS, { optional: true });
25579
+ // Held rather than derived: whether a tag can render is the answer to an
25580
+ // async question, and rendering the element before that answer arrives is
25581
+ // how an unknown element ends up in the DOM.
25582
+ ready = signal('', ...(ngDevMode ? [{ debugName: "ready" }] : /* istanbul ignore next */ []));
25583
+ readyTag = computed(() => this.ready() === this.tag() ? this.ready() : '', ...(ngDevMode ? [{ debugName: "readyTag" }] : /* istanbul ignore next */ []));
25584
+ constructor() {
25585
+ effect(() => {
25586
+ const tag = this.tag() ?? '';
25587
+ this.ready.set('');
25588
+ if (!tag)
25589
+ return;
25590
+ defineOverlayWidget(tag, this.widgets, this.injector).then((ok) => {
25591
+ // A tag the User changed while the chunk was loading is not this
25592
+ // effect's to render any more.
25593
+ if (ok && this.tag() === tag)
25594
+ this.ready.set(tag);
25595
+ });
25596
+ });
25597
+ }
25522
25598
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: OverlayBodyComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
25523
25599
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.9", type: OverlayBodyComponent, isStandalone: true, selector: "m-overlay-body", inputs: { form: { classPropertyName: "form", publicName: "form", isSignal: true, isRequired: false, transformFunction: null }, tag: { classPropertyName: "tag", publicName: "tag", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
25524
25600
  @if (form(); as f) {
25525
25601
  <m-form [name]="f" />
25526
- } @else if (tag(); as t) {
25602
+ } @else if (readyTag(); as t) {
25527
25603
  <m-ce-outlet [tag]="t" />
25528
25604
  }
25529
25605
  `, isInline: true, dependencies: [{ kind: "component", type: FormGroupComponent, selector: "m-form, m-one-form", inputs: ["data", "state", "validation", "options", "fieldConfigs", "aclResolver", "autofocus", "readonly", "fieldRenderIds", "elements", "templates", "datas", "label", "subtitle"], outputs: ["dataChange", "act", "stateChange"] }, { kind: "component", type: CeOutletComponent, selector: "m-ce-outlet", inputs: ["tag"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
@@ -25535,14 +25611,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
25535
25611
  template: `
25536
25612
  @if (form(); as f) {
25537
25613
  <m-form [name]="f" />
25538
- } @else if (tag(); as t) {
25614
+ } @else if (readyTag(); as t) {
25539
25615
  <m-ce-outlet [tag]="t" />
25540
25616
  }
25541
25617
  `,
25542
25618
  changeDetection: ChangeDetectionStrategy.OnPush,
25543
25619
  imports: [FormGroupComponent, CeOutletComponent],
25544
25620
  }]
25545
- }], propDecorators: { form: [{ type: i0.Input, args: [{ isSignal: true, alias: "form", required: false }] }], tag: [{ type: i0.Input, args: [{ isSignal: true, alias: "tag", required: false }] }] } });
25621
+ }], ctorParameters: () => [], propDecorators: { form: [{ type: i0.Input, args: [{ isSignal: true, alias: "form", required: false }] }], tag: [{ type: i0.Input, args: [{ isSignal: true, alias: "tag", required: false }] }] } });
25546
25622
 
25547
25623
  /** Opens a Modal from an asset name (`modal/<name>.yml`) or an inline config. */
25548
25624
  class ModalDirective {
@@ -31423,5 +31499,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
31423
31499
  * Generated bundle index. Do not edit.
31424
31500
  */
31425
31501
 
31426
- export { DateInputComponent 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_SIZE as Z, DashboardCardComponent as _, BaseTextInputComponent as a, NavComponent as a$, DatePickerComponent as a0, DeviceService as a1, DomService as a2, Domain as a3, DotGridComponent as a4, DragListDirective as a5, DragListItemDirective as a6, DraggableDirective as a7, DropdownInputComponent as a8, FLEX_VARIANTS as a9, LOGIN_STORE as aA, LanguageComponent as aB, LogoComponent as aC, MAG_SOCKET_EVENT as aD, MHeroColorDirective as aE, MHeroComponent as aF, MODAL_REF as aG, MODAL_STORE_REF as aH, MRefDirective as aI, MStepComponent as aJ, MURL_PARAM as aK, MURL_SEP as aL, ManifestEnrichmentService as aM, MenuComponent as aN, ModalDirective as aO, ModalRef as aP, ModalStore as aQ, MoneyPipe as aR, MultiRangeInputComponent as aS, MurlUrlSerializer as aT, NAV_DEFAULT_MURL as aU, NAV_ID_SEP as aV, NAV_MAIN_BUTTONS as aW, NAV_SEGMENT_RE as aX, NAV_STORE_REF as aY, NAV_WC_COMPONENTS as aZ, NAV_WIDGET_MAP as a_, FOLDER_PICK_LISTENER as aa, FORM_ASSET_FOLDER as ab, FileService as ac, FileUploadDirective as ad, FileUploadInputComponent as ae, FlexComponent as af, FlexItemComponent as ag, FormGroupComponent as ah, FrameComponent as ai, FreezeService as aj, GRID_BREAKPOINTS as ak, GetNavService as al, HeaderComponent$1 as am, HighlightDirective as an, HttpService as ao, ICON_SOURCE as ap, IS_SIDE_PANEL as aq, IconComponent as ar, ImgComponent as as, InputType as at, InstrumentScoreComponent as au, InterceptorObservables as av, JumbotronComponent as aw, KeyValueComponent as ax, LAYOUT_ASSET_FOLDER as ay, LOGIN_COMPONENT as az, TextOutputComponent as b, SectionFormItemComponent as b$, NavDetailsComponent as b0, NavHeaderComponent as b1, NavMenuComponent as b2, NavStore as b3, NavTrailComponent as b4, NothingComponent as b5, NotificationElementComponent as b6, NotificationGroupComponent as b7, NotificationPopupComponent as b8, NotificationService as b9, RemoteComponent as bA, RemoteLoaderService as bB, ResizeElementComponent as bC, RouteContainer as bD, RowComponent as bE, SEARCH_QUERY as bF, SEARCH_RESULTS_EVENT as bG, SECTION_ACCORDION_GROUP as bH, SECTION_FORM_CONTEXT as bI, SHARED_ICONS as bJ, SIZE_CONTEXT as bK, ScoreComponent as bL, ScrollComponent as bM, ScrollService as bN, SearchPanelComponent as bO, SearchStore as bP, SearchUserPanelComponent as bQ, SectionAccordionDirective as bR, SectionAccordionGroupDirective as bS, SectionBackComponent as bT, SectionBadgesComponent as bU, SectionButtonGroupComponent as bV, SectionCardComponent as bW, SectionComponent as bX, SectionFilterComponent as bY, SectionFooterComponent as bZ, SectionFormComponent as b_, NotificationStore as ba, NotificationType as bb, NotificationWidgetComponent as bc, ONE_ASSET_BASE_URL as bd, OPTIONS_SOURCE as be, OneApp as bf, OptionsSourceDirective as bg, OverlayBodyComponent as bh, OverlayRef as bi, OverlayService as bj, PLATFORM_BUTTON_NAV_IDS as bk, PLATFORM_EXTENSIBLE_NAV_IDS as bl, PLATFORM_NAV_MAP as bm, PLATFORM_ROOT_CHILDREN as bn, PaginationComponent as bo, PanelComponent as bp, PercentagePipe as bq, PlaygroundComponent as br, PositionDirective as bs, PwaInstallComponent as bt, ROOT_NAV$1 as bu, RadioGroupComponent as bv, RadioInputComponent as bw, RangeInputComponent as bx, RatingInputComponent as by, ReactiveElementComponent as bz, ButtonComponent as c, WrapperInputComponent as c$, SectionHeaderComponent as c0, SectionHeroComponent as c1, SectionSearchComponent as c2, SectionStepperComponent as c3, SectionTabsComponent as c4, SectionToggleComponent as c5, SectionToggleItemDirective as c6, SelectableCardInputComponent as c7, SelectorDirective as c8, SettingsSearchBarComponent as c9, ThemeStore as cA, TimeAgoPipe as cB, TimelineComponent as cC, ToggleButtonComponent as cD, ToggleInputComponent as cE, ToggleRadioInputComponent as cF, ToolTipDirective as cG, TooltipComponent as cH, TranslateService as cI, TreeGridComponent as cJ, URL_SEP as cK, USER_STORE_REF as cL, USER_TAB_MAP as cM, UlComponent as cN, UniverseComponent as cO, UserApiService as cP, UserAvatarComponent as cQ, UserComponent as cR, UserNavComponent as cS, UserSettingsComponent as cT, UserStore as cU, WC_ROUTE_CHANGED_EVENT as cV, WC_SEARCH_GROUPS as cW, WIN_USER_TAB_HOOK as cX, WIN_USER_TAB_KEY as cY, WatermarkComponent as cZ, WcRouterStore as c_, SettingsSearchService as ca, ShapeComponent as cb, SharedStoreRegistry as cc, SidePanelDirective as cd, Size as ce, SocketStore as cf, SortComponent as cg, StatComponent as ch, StepComponent as ci, StepperComponent as cj, StepsComponent as ck, StorageService as cl, StrokeLinecap as cm, StrokeLinejoin as cn, SummaryComponent as co, SvgGeneratorComponent as cp, SvgGeneratorService as cq, SvgService as cr, TOTAL_COLUMNS as cs, TRANSLATION_SOURCE as ct, TableComponent as cu, TechnicalMeterComponent as cv, TextInputComponent as cw, TextareaInputComponent as cx, ThemeComponent as cy, ThemeService as cz, APP_CONTEXT_REF as d, mInterceptor as d$, anchorNavId as d0, applyColorsToElement as d1, bootstrapMagApp as d2, bootstrapPwaInstall as d3, buildWcBaseUrl as d4, calculateLuminance as d5, calculateRanks as d6, cellText as d7, checkFilterCondition as d8, childNavId as d9, hasErrorComputed as dA, hexToRgb as dB, hslToRgb$1 as dC, initMagmoniumApp as dD, initialNotificationState as dE, initialState$2 as dF, initials as dG, injectAuthenticate as dH, injectInstallApp as dI, injectParentSize as dJ, injectScrollSticky as dK, isButtonName as dL, isCancelledComputed as dM, isExtensiblePlatformNavId as dN, isJson as dO, isLoadingComputed as dP, isLocalhost as dQ, isPlatformNavId as dR, isSize as dS, isTierPreview as dT, isUrlLocalhost as dU, isValidNavId as dV, isValidNavSegment as dW, isWebComponent as dX, linkToId as dY, linkToNav as dZ, loadingActions as d_, classListSignal as da, coerceSize as db, cornerEdge as dc, cornerSide as dd, createMap as de, createPlatformNavMap as df, deriveAvatarGradient as dg, deriveContrastColor as dh, deriveOppositeColor as di, derivePropertyName as dj, emailValidation as dk, evaluate as dl, evaluateBool as dm, flattenTreeGridRows as dn, 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, ASSET_BASE_URL as e, toLocalNavId as e$, manualValidation as e0, matchFieldValidation as e1, maxLengthValidation as e2, maxValidation as e3, mergePlatformNav as e4, mergeUnique as e5, mergeUniqueBy as e6, mergeUniqueWith as e7, minAgeValidation as e8, minLengthValidation as e9, provideSizeContext as eA, provideUserTabs as eB, publicGuard as eC, readFieldPatterns as eD, renderAddress as eE, requiredValidation as eF, resolveConfigAsset as eG, resolveIconSize as eH, resolvePallet as eI, resolvePatternRules as eJ, resolveSize as eK, rgbToHex as eL, rgbToHsl as eM, rowHasChildren as eN, samePatterns as eO, segmentsToNavId as eP, setProperty as eQ, setTreeGridChildren as eR, settingsWidgets as eS, shouldShowBadge as eT, splitNavId as eU, stringToColor as eV, toAttrBool as eW, toAttrNumber as eX, toCssLength as eY, toHostNavId as eZ, toLength$1 as e_, 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, providePlatformNavWidgets as ey, provideSearch as ez, AccordionBodyDirective as f, toggleTreeGridRow as f0, unfetchedPlatformNav as f1, urlValidation as f2, 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 };
31427
- //# sourceMappingURL=magmonium-one-magmonium-one-zyXmxgUB.mjs.map
31502
+ export { DateInputComponent 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_SIZE as Z, DashboardCardComponent as _, BaseTextInputComponent as a, NavComponent as a$, DatePickerComponent as a0, DeviceService as a1, DomService as a2, Domain as a3, DotGridComponent as a4, DragListDirective as a5, DragListItemDirective as a6, DraggableDirective as a7, DropdownInputComponent as a8, FLEX_VARIANTS as a9, LOGIN_STORE as aA, LanguageComponent as aB, LogoComponent as aC, MAG_SOCKET_EVENT as aD, MHeroColorDirective as aE, MHeroComponent as aF, MODAL_REF as aG, MODAL_STORE_REF as aH, MRefDirective as aI, MStepComponent as aJ, MURL_PARAM as aK, MURL_SEP as aL, ManifestEnrichmentService as aM, MenuComponent as aN, ModalDirective as aO, ModalRef as aP, ModalStore as aQ, MoneyPipe as aR, MultiRangeInputComponent as aS, MurlUrlSerializer as aT, NAV_DEFAULT_MURL as aU, NAV_ID_SEP as aV, NAV_MAIN_BUTTONS as aW, NAV_SEGMENT_RE as aX, NAV_STORE_REF as aY, NAV_WC_COMPONENTS as aZ, NAV_WIDGET_MAP as a_, FOLDER_PICK_LISTENER as aa, FORM_ASSET_FOLDER as ab, FileService as ac, FileUploadDirective as ad, FileUploadInputComponent as ae, FlexComponent as af, FlexItemComponent as ag, FormGroupComponent as ah, FrameComponent as ai, FreezeService as aj, GRID_BREAKPOINTS as ak, GetNavService as al, HeaderComponent$1 as am, HighlightDirective as an, HttpService as ao, ICON_SOURCE as ap, IS_SIDE_PANEL as aq, IconComponent as ar, ImgComponent as as, InputType as at, InstrumentScoreComponent as au, InterceptorObservables as av, JumbotronComponent as aw, KeyValueComponent as ax, LAYOUT_ASSET_FOLDER as ay, LOGIN_COMPONENT as az, TextOutputComponent as b, SectionFormComponent as b$, NavDetailsComponent as b0, NavHeaderComponent as b1, NavMenuComponent as b2, NavStore as b3, NavTrailComponent as b4, NothingComponent as b5, NotificationElementComponent as b6, NotificationGroupComponent as b7, NotificationPopupComponent as b8, NotificationService as b9, ReactiveElementComponent as bA, RemoteComponent as bB, RemoteLoaderService as bC, ResizeElementComponent as bD, RouteContainer as bE, RowComponent as bF, SEARCH_QUERY as bG, SEARCH_RESULTS_EVENT as bH, SECTION_ACCORDION_GROUP as bI, SECTION_FORM_CONTEXT as bJ, SHARED_ICONS as bK, SIZE_CONTEXT as bL, ScoreComponent as bM, ScrollComponent as bN, ScrollService as bO, SearchPanelComponent as bP, SearchStore as bQ, SearchUserPanelComponent as bR, SectionAccordionDirective as bS, SectionAccordionGroupDirective as bT, SectionBackComponent as bU, SectionBadgesComponent as bV, SectionButtonGroupComponent as bW, SectionCardComponent as bX, SectionComponent as bY, SectionFilterComponent as bZ, SectionFooterComponent as b_, NotificationStore as ba, NotificationType as bb, NotificationWidgetComponent as bc, ONE_ASSET_BASE_URL as bd, OPTIONS_SOURCE as be, OVERLAY_WIDGETS as bf, OneApp as bg, OptionsSourceDirective as bh, OverlayBodyComponent as bi, OverlayRef as bj, OverlayService as bk, PLATFORM_BUTTON_NAV_IDS as bl, PLATFORM_EXTENSIBLE_NAV_IDS as bm, PLATFORM_NAV_MAP as bn, PLATFORM_ROOT_CHILDREN as bo, PaginationComponent as bp, PanelComponent as bq, PercentagePipe as br, PlaygroundComponent as bs, PositionDirective as bt, PwaInstallComponent as bu, ROOT_NAV$1 as bv, RadioGroupComponent as bw, RadioInputComponent as bx, RangeInputComponent as by, RatingInputComponent as bz, ButtonComponent as c, WcRouterStore as c$, SectionFormItemComponent as c0, SectionHeaderComponent as c1, SectionHeroComponent as c2, SectionSearchComponent as c3, SectionStepperComponent as c4, SectionTabsComponent as c5, SectionToggleComponent as c6, SectionToggleItemDirective as c7, SelectableCardInputComponent as c8, SelectorDirective as c9, ThemeService as cA, ThemeStore as cB, TimeAgoPipe as cC, TimelineComponent as cD, ToggleButtonComponent as cE, ToggleInputComponent as cF, ToggleRadioInputComponent as cG, ToolTipDirective as cH, TooltipComponent as cI, TranslateService as cJ, TreeGridComponent as cK, URL_SEP as cL, USER_STORE_REF as cM, USER_TAB_MAP as cN, UlComponent as cO, UniverseComponent as cP, UserApiService as cQ, UserAvatarComponent as cR, UserComponent as cS, UserNavComponent as cT, UserSettingsComponent as cU, UserStore as cV, WC_ROUTE_CHANGED_EVENT as cW, WC_SEARCH_GROUPS as cX, WIN_USER_TAB_HOOK as cY, WIN_USER_TAB_KEY as cZ, WatermarkComponent as c_, SettingsSearchBarComponent as ca, SettingsSearchService as cb, ShapeComponent as cc, SharedStoreRegistry as cd, SidePanelDirective as ce, Size as cf, SocketStore as cg, SortComponent as ch, StatComponent as ci, StepComponent as cj, StepperComponent as ck, StepsComponent as cl, StorageService as cm, StrokeLinecap as cn, StrokeLinejoin as co, SummaryComponent as cp, SvgGeneratorComponent as cq, SvgGeneratorService as cr, SvgService as cs, TOTAL_COLUMNS as ct, TRANSLATION_SOURCE as cu, TableComponent as cv, TechnicalMeterComponent as cw, TextInputComponent as cx, TextareaInputComponent as cy, ThemeComponent as cz, APP_CONTEXT_REF as d, loadingActions as d$, WrapperInputComponent as d0, anchorNavId as d1, applyColorsToElement as d2, bootstrapMagApp as d3, bootstrapPwaInstall as d4, buildWcBaseUrl as d5, calculateLuminance as d6, calculateRanks as d7, cellText as d8, checkFilterCondition as d9, getValue as dA, hasErrorComputed as dB, hexToRgb as dC, hslToRgb$1 as dD, initMagmoniumApp as dE, initialNotificationState as dF, initialState$2 as dG, initials as dH, injectAuthenticate as dI, injectInstallApp as dJ, injectParentSize as dK, injectScrollSticky as dL, isButtonName as dM, isCancelledComputed as dN, isExtensiblePlatformNavId as dO, isJson as dP, isLoadingComputed as dQ, isLocalhost as dR, isPlatformNavId as dS, isSize as dT, isTierPreview as dU, isUrlLocalhost as dV, isValidNavId as dW, isValidNavSegment as dX, isWebComponent as dY, linkToId as dZ, linkToNav as d_, childNavId as da, classListSignal as db, coerceSize as dc, cornerEdge as dd, cornerSide as de, createMap as df, createPlatformNavMap as dg, deriveAvatarGradient as dh, deriveContrastColor as di, deriveOppositeColor as dj, derivePropertyName as dk, emailValidation as dl, evaluate as dm, evaluateBool as dn, 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, ASSET_BASE_URL as e, toHostNavId as e$, mInterceptor as e0, manualValidation as e1, matchFieldValidation as e2, maxLengthValidation as e3, maxValidation as e4, mergePlatformNav as e5, mergeUnique as e6, mergeUniqueBy as e7, mergeUniqueWith as e8, minAgeValidation as e9, providePlatformNavWidgets as eA, provideSearch as eB, provideSizeContext as eC, provideUserTabs as eD, publicGuard as eE, readFieldPatterns as eF, renderAddress as eG, requiredValidation as eH, resolveConfigAsset as eI, resolveIconSize as eJ, resolvePallet as eK, resolvePatternRules as eL, resolveSize as eM, rgbToHex as eN, rgbToHsl as eO, rowHasChildren as eP, samePatterns as eQ, segmentsToNavId as eR, setProperty as eS, setTreeGridChildren as eT, settingsWidgets as eU, shouldShowBadge as eV, splitNavId as eW, stringToColor as eX, toAttrBool as eY, toAttrNumber as eZ, toCssLength as e_, minLengthValidation as ea, minValidation as eb, miniMarkToHtml as ec, navIdChain as ed, navIdFor as ee, navIdSegment as ef, navIdToRoutePath as eg, navIdToSegments as eh, navToId as ei, parentNavId as ej, parseAddress as ek, parseColor as el, parsePatternNames as em, patternValidation as en, patternsValidation as eo, platformNavWidgets as ep, privateGuard as eq, processImageToSvg as er, provideAppContext as es, provideMagAppConfig as et, provideMagWcConfig as eu, provideMagWcRoutes as ev, provideModalComponents as ew, provideMurlUrlSerializer as ex, provideNavWidgets as ey, provideOverlayWidgets as ez, AccordionBodyDirective as f, toLength$1 as f0, toLocalNavId as f1, toggleTreeGridRow as f2, unfetchedPlatformNav as f3, urlValidation as f4, 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 };
31503
+ //# sourceMappingURL=magmonium-one-magmonium-one-BGcwClRr.mjs.map