@magmonium/one 0.2.18 → 0.2.20

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.
@@ -6447,7 +6447,7 @@ class SectionFormItemComponent extends ConfigComponent {
6447
6447
  break;
6448
6448
  }
6449
6449
  case InputType.TOGGLE: {
6450
- const { ToggleInputComponent } = await import('./magmonium-one-toggle-BOM0YIYl.mjs');
6450
+ const { ToggleInputComponent } = await import('./magmonium-one-toggle-C7x9RD6s.mjs');
6451
6451
  this.createDynamicComponent(seq, ToggleInputComponent, [], true);
6452
6452
  break;
6453
6453
  }
@@ -6459,12 +6459,12 @@ class SectionFormItemComponent extends ConfigComponent {
6459
6459
  break;
6460
6460
  }
6461
6461
  case InputType.PASSWORD: {
6462
- const { PasswordInputComponent } = await import('./magmonium-one-password-CQgCBVXn.mjs');
6462
+ const { PasswordInputComponent } = await import('./magmonium-one-password-__PrZcdG.mjs');
6463
6463
  this.createDynamicComponent(seq, PasswordInputComponent);
6464
6464
  break;
6465
6465
  }
6466
6466
  case InputType.OTP: {
6467
- const { OtpInputComponent } = await import('./magmonium-one-otp-DbKeX4tp.mjs');
6467
+ const { OtpInputComponent } = await import('./magmonium-one-otp-DNMHPQJR.mjs');
6468
6468
  this.createDynamicComponent(seq, OtpInputComponent);
6469
6469
  break;
6470
6470
  }
@@ -10563,6 +10563,35 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
10563
10563
  }, styles: ["@keyframes toggle-pulse{0%,to{transform:scale(1)}50%{transform:scale(1.02)}}@keyframes thumb-slide{0%{transform:translate(0) scale(1)}50%{transform:translate(.3em) scale(.9)}to{transform:translate(.6em) scale(1)}}:host{display:block;border-bottom:1px solid var(--m-section-filter-border, var(--m-backdrop-border))}:host(.no-border){border-bottom:none}.section-filter__bar{display:flex;align-items:center;justify-content:space-between;gap:.5rem;min-height:var(--section-header-min-height, calc(var(--section-header-py, 1rem) * 2 + 1.375rem));padding:var(--section-header-py, .75rem) var(--section-px, 1rem)}.section-filter__bar m-header{flex:1;min-width:0;font-size:1rem}.section-filter__bar .section-filter__toggle{flex-shrink:0;--m-button-size: 1rem !important}.section-filter__bar .section-filter__toggle.is-active{--m-button-color: var(--m-mm) !important}.section-filter__badges{display:flex;flex-wrap:wrap;gap:.375rem;flex:1;min-width:0;align-items:center}.section-filter__badges m-badge{--m-badge-size: .6rem}.section-filter__badges m-badge m-button{--m-button-size: .6em;--m-button-color: var(--m-mm);opacity:.7}.section-filter__badges m-badge m-button:hover{opacity:1}.section-filter__dropdown{flex-shrink:0}\n"] }]
10564
10564
  }], ctorParameters: () => [], propDecorators: { label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }], name: [{ type: i0.Input, args: [{ isSignal: true, alias: "name", required: false }] }], options: [{ type: i0.Input, args: [{ isSignal: true, alias: "options", required: false }] }], optionsAsset: [{ type: i0.Input, args: [{ isSignal: true, alias: "optionsAsset", required: false }] }], multiple: [{ type: i0.Input, args: [{ isSignal: true, alias: "multiple", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }, { type: i0.Output, args: ["valueChange"] }], filterChange: [{ type: i0.Output, args: ["filterChange"] }], dropdownRef: [{ type: i0.ViewChild, args: [i0.forwardRef(() => SelectorDirective), { isSignal: true }] }] } });
10565
10565
 
10566
+ /**
10567
+ * One key of a group's selection read as the list a `multiple` Filter carries.
10568
+ * A scalar is widened back into a one-element list and an absent key reads as
10569
+ * empty, so the caller never unwraps what the map's value type left open. A
10570
+ * `number` becomes its own text, options being matched by `value` strings all
10571
+ * the way down (ADR 0026).
10572
+ */
10573
+ function filterList(selection, name) {
10574
+ return toList(selection?.[name]);
10575
+ }
10576
+ /**
10577
+ * One key read as the single value a Filter without `multiple` carries.
10578
+ * `undefined` when the Filter holds nothing, because a key is absent rather
10579
+ * than empty in that case (ADR 0026) — the absence is what a consumer drops
10580
+ * from a query rather than sending as a blank.
10581
+ *
10582
+ * A key that unexpectedly holds a list reads as its first entry, so a Filter
10583
+ * whose `multiple` was flipped after a selection was made still answers with a
10584
+ * value of the type it now declares.
10585
+ */
10586
+ function filterOne(selection, name) {
10587
+ return toList(selection?.[name])[0];
10588
+ }
10589
+ const toList = (value) => {
10590
+ if (value === undefined)
10591
+ return [];
10592
+ return (Array.isArray(value) ? value : [value]).map(String);
10593
+ };
10594
+
10566
10595
  /**
10567
10596
  * A Row-like container that owns the selection for every Filter beneath it and
10568
10597
  * emits one aggregate whenever any of them changes (ADR 0025). Admits Cols, so
@@ -10582,11 +10611,12 @@ class SectionFilterGroupComponent {
10582
10611
  align = input(undefined, ...(ngDevMode ? [{ debugName: "align" }] : /* istanbul ignore next */ []));
10583
10612
  config = input(...(ngDevMode ? [undefined, { debugName: "config" }] : /* istanbul ignore next */ []));
10584
10613
  /**
10585
- * The whole group's selection, one entry per Filter that has ever been
10586
- * touched. A list rather than an object keyed by name — the keys would come
10587
- * from whichever Filters are dropped in (ADR 0025).
10614
+ * The whole group's selection, keyed by each Filter's `name` one key per
10615
+ * Filter holding something, and none for a Filter holding nothing. A
10616
+ * `multiple` Filter's key carries its list, a single-select one's carries the
10617
+ * value itself (ADR 0026).
10588
10618
  */
10589
- value = model([], ...(ngDevMode ? [{ debugName: "value" }] : /* istanbul ignore next */ []));
10619
+ value = model({}, ...(ngDevMode ? [{ debugName: "value" }] : /* istanbul ignore next */ []));
10590
10620
  filterChange = output();
10591
10621
  isOpen = signal(false, ...(ngDevMode ? [{ debugName: "isOpen" }] : /* istanbul ignore next */ []));
10592
10622
  members = signal([], ...(ngDevMode ? [{ debugName: "members" }] : /* istanbul ignore next */ []));
@@ -10608,7 +10638,7 @@ class SectionFilterGroupComponent {
10608
10638
  * own count is already on its menu row, so a sum would be the same
10609
10639
  * information twice (ADR 0025).
10610
10640
  */
10611
- activeCount = computed(() => this.value().filter((entry) => entry.value.length > 0).length, ...(ngDevMode ? [{ debugName: "activeCount" }] : /* istanbul ignore next */ []));
10641
+ activeCount = computed(() => Object.keys(this.value()).length, ...(ngDevMode ? [{ debugName: "activeCount" }] : /* istanbul ignore next */ []));
10612
10642
  toggleConfig = computed(() => ({
10613
10643
  icon: this.isOpen() ? 'x' : 'adjust',
10614
10644
  one: true,
@@ -10680,13 +10710,28 @@ class SectionFilterGroupComponent {
10680
10710
  return;
10681
10711
  this.toggle(name, option, member.multiple());
10682
10712
  };
10683
- valueOf = (name) => this.value().find((entry) => entry.name === name)?.value ?? [];
10713
+ /**
10714
+ * A Filter reads its slice as the list it draws badges from, whatever shape
10715
+ * the key holds — the map is the payload's shape and not the row's, so the
10716
+ * scalar a single-select Filter carries is widened back here rather than at
10717
+ * every reader (ADR 0026).
10718
+ */
10719
+ valueOf = (name) => filterList(this.value(), name);
10720
+ /**
10721
+ * Whether this Filter's key carries a list. Read off the registration rather
10722
+ * than passed in, because `remove` is called from a badge and knows only the
10723
+ * value it is dropping. An unregistered name is `multiple`, the input's own
10724
+ * default.
10725
+ */
10726
+ isMultiple = (name) => this.members().find((m) => m.name() === name)?.multiple() ?? true;
10684
10727
  write = (name, next) => {
10685
- const current = this.value();
10686
- const index = current.findIndex((entry) => entry.name === name);
10687
- const updated = index < 0
10688
- ? [...current, { name, value: next }]
10689
- : current.map((entry, i) => (i === index ? { name, value: next } : entry));
10728
+ const updated = { ...this.value() };
10729
+ if (!next.length) {
10730
+ delete updated[name];
10731
+ }
10732
+ else {
10733
+ updated[name] = this.isMultiple(name) ? next : next[0];
10734
+ }
10690
10735
  this.value.set(updated);
10691
10736
  this.filterChange.emit(updated);
10692
10737
  };
@@ -18617,7 +18662,7 @@ class WrapperInputComponent extends ConfigComponent {
18617
18662
  break;
18618
18663
  }
18619
18664
  case InputType.TOGGLE: {
18620
- const { ToggleInputComponent } = await import('./magmonium-one-toggle-BOM0YIYl.mjs');
18665
+ const { ToggleInputComponent } = await import('./magmonium-one-toggle-C7x9RD6s.mjs');
18621
18666
  this.createDynamicComponent(seq, ToggleInputComponent, [], true);
18622
18667
  break;
18623
18668
  }
@@ -18629,12 +18674,12 @@ class WrapperInputComponent extends ConfigComponent {
18629
18674
  break;
18630
18675
  }
18631
18676
  case InputType.PASSWORD: {
18632
- const { PasswordInputComponent } = await import('./magmonium-one-password-CQgCBVXn.mjs');
18677
+ const { PasswordInputComponent } = await import('./magmonium-one-password-__PrZcdG.mjs');
18633
18678
  this.createDynamicComponent(seq, PasswordInputComponent);
18634
18679
  break;
18635
18680
  }
18636
18681
  case InputType.OTP: {
18637
- const { OtpInputComponent } = await import('./magmonium-one-otp-DbKeX4tp.mjs');
18682
+ const { OtpInputComponent } = await import('./magmonium-one-otp-DNMHPQJR.mjs');
18638
18683
  this.createDynamicComponent(seq, OtpInputComponent);
18639
18684
  break;
18640
18685
  }
@@ -32980,5 +33025,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
32980
33025
  * Generated bundle index. Do not edit.
32981
33026
  */
32982
33027
 
32983
- 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, NAV_WIDGET_MAP 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, FILTER_GROUP_CONTEXT as a9, LOGIN_COMPONENT as aA, LOGIN_STORE as aB, LanguageComponent as aC, LogoComponent as aD, MAG_SOCKET_EVENT as aE, MHeroColorDirective as aF, MHeroComponent as aG, MODAL_REF as aH, MODAL_STORE_REF as aI, MRefDirective as aJ, MStepComponent as aK, MURL_PARAM as aL, MURL_SEP as aM, ManifestEnrichmentService as aN, MenuComponent as aO, ModalDirective as aP, ModalRef as aQ, ModalStore as aR, MoneyPipe as aS, MultiRangeInputComponent as aT, MurlUrlSerializer as aU, NAV_DEFAULT_MURL as aV, NAV_ID_SEP as aW, NAV_MAIN_BUTTONS as aX, NAV_SEGMENT_RE as aY, NAV_STORE_REF as aZ, NAV_WC_COMPONENTS as a_, FLEX_VARIANTS as aa, FOLDER_PICK_LISTENER as ab, FORM_ASSET_FOLDER as ac, FileService as ad, FileUploadDirective as ae, FileUploadInputComponent as af, FlexComponent as ag, FlexItemComponent as ah, FormGroupComponent as ai, FrameComponent as aj, FreezeService as ak, GRID_BREAKPOINTS as al, GetNavService as am, HeaderComponent$1 as an, HighlightDirective as ao, HttpService as ap, ICON_SOURCE as aq, IS_SIDE_PANEL as ar, IconComponent as as, ImgComponent as at, InputType as au, InstrumentScoreComponent as av, InterceptorObservables as aw, JumbotronComponent as ax, KeyValueComponent as ay, LAYOUT_ASSET_FOLDER as az, TextOutputComponent as b, SectionFilterComponent as b$, NavComponent as b0, NavDetailsComponent as b1, NavHeaderComponent as b2, NavMenuComponent as b3, NavStore as b4, NavTrailComponent as b5, NothingComponent as b6, NotificationElementComponent as b7, NotificationGroupComponent as b8, NotificationPopupComponent as b9, RatingInputComponent as bA, ReactiveElementComponent as bB, RemoteComponent as bC, RemoteLoaderService as bD, ResizeElementComponent as bE, RouteContainer as bF, RowComponent as bG, SEARCH_QUERY as bH, SEARCH_RESULTS_EVENT as bI, SECTION_ACCORDION_GROUP as bJ, SECTION_FORM_CONTEXT as bK, SHARED_ICONS as bL, SIZE_CONTEXT as bM, ScoreComponent as bN, ScrollComponent as bO, ScrollService as bP, SearchPanelComponent as bQ, SearchStore as bR, SearchUserPanelComponent as bS, SectionAccordionDirective as bT, SectionAccordionGroupDirective as bU, SectionBackComponent as bV, SectionBadgesComponent as bW, SectionButtonGroupComponent as bX, SectionCardComponent as bY, SectionCarouselComponent as bZ, SectionComponent as b_, NotificationService as ba, NotificationStore as bb, NotificationType as bc, NotificationWidgetComponent as bd, ONE_ASSET_BASE_URL as be, OPTIONS_SOURCE as bf, OVERLAY_WIDGETS as bg, OneApp as bh, OptionsSourceDirective as bi, OverlayBodyComponent as bj, OverlayRef as bk, OverlayService as bl, PLATFORM_BUTTON_NAV_IDS as bm, PLATFORM_EXTENSIBLE_NAV_IDS as bn, PLATFORM_NAV_MAP as bo, PLATFORM_ROOT_CHILDREN as bp, PaginationComponent as bq, PanelComponent as br, PercentagePipe as bs, PlaygroundComponent as bt, PositionDirective as bu, PwaInstallComponent as bv, ROOT_NAV$1 as bw, RadioGroupComponent as bx, RadioInputComponent as by, RangeInputComponent as bz, ButtonComponent as c, WC_ROUTE_CHANGED_EVENT as c$, SectionFilterGroupComponent as c0, SectionFooterComponent as c1, SectionFormComponent as c2, SectionFormItemComponent as c3, SectionHeaderComponent as c4, SectionHeroComponent as c5, SectionPaginationComponent as c6, SectionSearchComponent as c7, SectionStepperComponent as c8, SectionTabsComponent as c9, TechnicalMeterComponent as cA, TextInputComponent as cB, TextareaInputComponent as cC, ThemeComponent as cD, ThemeDataService as cE, ThemeService as cF, ThemeStore as cG, TimeAgoPipe as cH, TimelineComponent as cI, ToggleButtonComponent as cJ, ToggleInputComponent as cK, ToggleRadioInputComponent as cL, ToolTipDirective as cM, TooltipComponent as cN, TranslateService as cO, TreeGridComponent as cP, URL_SEP as cQ, USER_STORE_REF as cR, USER_TAB_MAP as cS, UlComponent as cT, UniverseComponent as cU, UserApiService as cV, UserAvatarComponent as cW, UserComponent as cX, UserNavComponent as cY, UserSettingsComponent as cZ, UserStore as c_, SectionToggleComponent as ca, SectionToggleItemDirective as cb, SelectableCardInputComponent as cc, SelectorDirective as cd, SettingsSearchBarComponent as ce, SettingsSearchService as cf, ShapeComponent as cg, SharedStoreRegistry as ch, SidePanelDirective as ci, Size as cj, SocketStore as ck, SortComponent as cl, StatComponent as cm, StepComponent as cn, StepperComponent as co, StepsComponent as cp, StorageService as cq, StrokeLinecap as cr, StrokeLinejoin as cs, SummaryComponent as ct, SvgGeneratorComponent as cu, SvgGeneratorService as cv, SvgService as cw, TOTAL_COLUMNS as cx, TRANSLATION_SOURCE as cy, TableComponent as cz, APP_CONTEXT_REF as d, isValidNavId as d$, WC_SEARCH_GROUPS as d0, WIN_USER_TAB_HOOK as d1, WIN_USER_TAB_KEY as d2, WatermarkComponent as d3, WcRouterStore as d4, WrapperInputComponent as d5, anchorNavId as d6, applyColorsToElement as d7, bootstrapMagApp as d8, bootstrapPwaInstall as d9, getProperty as dA, getScrollParent as dB, getTierFromPreviewPath as dC, getTreeGridRow as dD, getUniqueId as dE, getValue as dF, hasErrorComputed as dG, hexToRgb as dH, hslToRgb$1 as dI, initMagmoniumApp as dJ, initialNotificationState as dK, initialState$2 as dL, initials as dM, injectAuthenticate as dN, injectInstallApp as dO, injectParentSize as dP, injectScrollSticky as dQ, isButtonName as dR, isCancelledComputed as dS, isExtensiblePlatformNavId as dT, isJson as dU, isLoadingComputed as dV, isLocalhost as dW, isPlatformNavId as dX, isSize as dY, isTierPreview as dZ, isUrlLocalhost as d_, buildWcBaseUrl as da, calculateLuminance as db, calculateRanks as dc, cellText as dd, checkFilterCondition as de, childNavId as df, classListSignal as dg, coerceSize as dh, cornerEdge as di, cornerSide as dj, createMap as dk, createPlatformNavMap as dl, deriveAvatarGradient as dm, deriveContrastColor as dn, deriveOppositeColor as dp, derivePropertyName as dq, emailValidation as dr, evaluate as ds, evaluateBool as dt, flattenTreeGridRows as du, formatBadgeCount as dv, fullName as dw, generateClipPath as dx, generateTransform as dy, getClassList as dz, ASSET_BASE_URL as e, splitNavId as e$, isValidNavSegment as e0, isWebComponent as e1, linkToId as e2, linkToNav as e3, loadingActions as e4, mInterceptor as e5, manualValidation as e6, matchFieldValidation as e7, maxLengthValidation as e8, maxValidation as e9, provideMagWcRoutes as eA, provideModalComponents as eB, provideMurlUrlSerializer as eC, provideNavWidgets as eD, provideOverlayWidgets as eE, providePlatformNavWidgets as eF, provideSearch as eG, provideSizeContext as eH, provideUserTabs as eI, publicGuard as eJ, readFieldPatterns as eK, renderAddress as eL, requiredValidation as eM, resolveConfigAsset as eN, resolveIconSize as eO, resolvePallet as eP, resolvePatternRules as eQ, resolveSize as eR, rgbToHex as eS, rgbToHsl as eT, rowHasChildren as eU, samePatterns as eV, segmentsToNavId as eW, setProperty as eX, setTreeGridChildren as eY, settingsWidgets as eZ, shouldShowBadge as e_, mergePlatformNav as ea, mergeUnique as eb, mergeUniqueBy as ec, mergeUniqueWith as ed, minAgeValidation as ee, minLengthValidation as ef, minValidation as eg, miniMarkToHtml as eh, navIdChain as ei, navIdFor as ej, navIdSegment as ek, navIdToRoutePath as el, navIdToSegments as em, navToId as en, parentNavId as eo, parseAddress as ep, parseColor as eq, parsePatternNames as er, patternValidation as es, patternsValidation as et, platformNavWidgets as eu, privateGuard as ev, processImageToSvg as ew, provideAppContext as ex, provideMagAppConfig as ey, provideMagWcConfig as ez, AccordionBodyDirective as f, stringToColor as f0, toAttrBool as f1, toAttrNumber as f2, toCssLength as f3, toHostNavId as f4, toLength$1 as f5, toLocalNavId as f6, toggleTreeGridRow as f7, unfetchedPlatformNav as f8, urlValidation as f9, 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 };
32984
- //# sourceMappingURL=magmonium-one-magmonium-one-Df7XDosn.mjs.map
33028
+ 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, NAV_WIDGET_MAP 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, FILTER_GROUP_CONTEXT as a9, LOGIN_COMPONENT as aA, LOGIN_STORE as aB, LanguageComponent as aC, LogoComponent as aD, MAG_SOCKET_EVENT as aE, MHeroColorDirective as aF, MHeroComponent as aG, MODAL_REF as aH, MODAL_STORE_REF as aI, MRefDirective as aJ, MStepComponent as aK, MURL_PARAM as aL, MURL_SEP as aM, ManifestEnrichmentService as aN, MenuComponent as aO, ModalDirective as aP, ModalRef as aQ, ModalStore as aR, MoneyPipe as aS, MultiRangeInputComponent as aT, MurlUrlSerializer as aU, NAV_DEFAULT_MURL as aV, NAV_ID_SEP as aW, NAV_MAIN_BUTTONS as aX, NAV_SEGMENT_RE as aY, NAV_STORE_REF as aZ, NAV_WC_COMPONENTS as a_, FLEX_VARIANTS as aa, FOLDER_PICK_LISTENER as ab, FORM_ASSET_FOLDER as ac, FileService as ad, FileUploadDirective as ae, FileUploadInputComponent as af, FlexComponent as ag, FlexItemComponent as ah, FormGroupComponent as ai, FrameComponent as aj, FreezeService as ak, GRID_BREAKPOINTS as al, GetNavService as am, HeaderComponent$1 as an, HighlightDirective as ao, HttpService as ap, ICON_SOURCE as aq, IS_SIDE_PANEL as ar, IconComponent as as, ImgComponent as at, InputType as au, InstrumentScoreComponent as av, InterceptorObservables as aw, JumbotronComponent as ax, KeyValueComponent as ay, LAYOUT_ASSET_FOLDER as az, TextOutputComponent as b, SectionFilterComponent as b$, NavComponent as b0, NavDetailsComponent as b1, NavHeaderComponent as b2, NavMenuComponent as b3, NavStore as b4, NavTrailComponent as b5, NothingComponent as b6, NotificationElementComponent as b7, NotificationGroupComponent as b8, NotificationPopupComponent as b9, RatingInputComponent as bA, ReactiveElementComponent as bB, RemoteComponent as bC, RemoteLoaderService as bD, ResizeElementComponent as bE, RouteContainer as bF, RowComponent as bG, SEARCH_QUERY as bH, SEARCH_RESULTS_EVENT as bI, SECTION_ACCORDION_GROUP as bJ, SECTION_FORM_CONTEXT as bK, SHARED_ICONS as bL, SIZE_CONTEXT as bM, ScoreComponent as bN, ScrollComponent as bO, ScrollService as bP, SearchPanelComponent as bQ, SearchStore as bR, SearchUserPanelComponent as bS, SectionAccordionDirective as bT, SectionAccordionGroupDirective as bU, SectionBackComponent as bV, SectionBadgesComponent as bW, SectionButtonGroupComponent as bX, SectionCardComponent as bY, SectionCarouselComponent as bZ, SectionComponent as b_, NotificationService as ba, NotificationStore as bb, NotificationType as bc, NotificationWidgetComponent as bd, ONE_ASSET_BASE_URL as be, OPTIONS_SOURCE as bf, OVERLAY_WIDGETS as bg, OneApp as bh, OptionsSourceDirective as bi, OverlayBodyComponent as bj, OverlayRef as bk, OverlayService as bl, PLATFORM_BUTTON_NAV_IDS as bm, PLATFORM_EXTENSIBLE_NAV_IDS as bn, PLATFORM_NAV_MAP as bo, PLATFORM_ROOT_CHILDREN as bp, PaginationComponent as bq, PanelComponent as br, PercentagePipe as bs, PlaygroundComponent as bt, PositionDirective as bu, PwaInstallComponent as bv, ROOT_NAV$1 as bw, RadioGroupComponent as bx, RadioInputComponent as by, RangeInputComponent as bz, ButtonComponent as c, WC_ROUTE_CHANGED_EVENT as c$, SectionFilterGroupComponent as c0, SectionFooterComponent as c1, SectionFormComponent as c2, SectionFormItemComponent as c3, SectionHeaderComponent as c4, SectionHeroComponent as c5, SectionPaginationComponent as c6, SectionSearchComponent as c7, SectionStepperComponent as c8, SectionTabsComponent as c9, TechnicalMeterComponent as cA, TextInputComponent as cB, TextareaInputComponent as cC, ThemeComponent as cD, ThemeDataService as cE, ThemeService as cF, ThemeStore as cG, TimeAgoPipe as cH, TimelineComponent as cI, ToggleButtonComponent as cJ, ToggleInputComponent as cK, ToggleRadioInputComponent as cL, ToolTipDirective as cM, TooltipComponent as cN, TranslateService as cO, TreeGridComponent as cP, URL_SEP as cQ, USER_STORE_REF as cR, USER_TAB_MAP as cS, UlComponent as cT, UniverseComponent as cU, UserApiService as cV, UserAvatarComponent as cW, UserComponent as cX, UserNavComponent as cY, UserSettingsComponent as cZ, UserStore as c_, SectionToggleComponent as ca, SectionToggleItemDirective as cb, SelectableCardInputComponent as cc, SelectorDirective as cd, SettingsSearchBarComponent as ce, SettingsSearchService as cf, ShapeComponent as cg, SharedStoreRegistry as ch, SidePanelDirective as ci, Size as cj, SocketStore as ck, SortComponent as cl, StatComponent as cm, StepComponent as cn, StepperComponent as co, StepsComponent as cp, StorageService as cq, StrokeLinecap as cr, StrokeLinejoin as cs, SummaryComponent as ct, SvgGeneratorComponent as cu, SvgGeneratorService as cv, SvgService as cw, TOTAL_COLUMNS as cx, TRANSLATION_SOURCE as cy, TableComponent as cz, APP_CONTEXT_REF as d, isTierPreview as d$, WC_SEARCH_GROUPS as d0, WIN_USER_TAB_HOOK as d1, WIN_USER_TAB_KEY as d2, WatermarkComponent as d3, WcRouterStore as d4, WrapperInputComponent as d5, anchorNavId as d6, applyColorsToElement as d7, bootstrapMagApp as d8, bootstrapPwaInstall as d9, generateTransform as dA, getClassList as dB, getProperty as dC, getScrollParent as dD, getTierFromPreviewPath as dE, getTreeGridRow as dF, getUniqueId as dG, getValue as dH, hasErrorComputed as dI, hexToRgb as dJ, hslToRgb$1 as dK, initMagmoniumApp as dL, initialNotificationState as dM, initialState$2 as dN, initials as dO, injectAuthenticate as dP, injectInstallApp as dQ, injectParentSize as dR, injectScrollSticky as dS, isButtonName as dT, isCancelledComputed as dU, isExtensiblePlatformNavId as dV, isJson as dW, isLoadingComputed as dX, isLocalhost as dY, isPlatformNavId as dZ, isSize as d_, buildWcBaseUrl as da, calculateLuminance as db, calculateRanks as dc, cellText as dd, checkFilterCondition as de, childNavId as df, classListSignal as dg, coerceSize as dh, cornerEdge as di, cornerSide as dj, createMap as dk, createPlatformNavMap as dl, deriveAvatarGradient as dm, deriveContrastColor as dn, deriveOppositeColor as dp, derivePropertyName as dq, emailValidation as dr, evaluate as ds, evaluateBool as dt, filterList as du, filterOne as dv, flattenTreeGridRows as dw, formatBadgeCount as dx, fullName as dy, generateClipPath as dz, ASSET_BASE_URL as e, settingsWidgets as e$, isUrlLocalhost as e0, isValidNavId as e1, isValidNavSegment as e2, isWebComponent as e3, linkToId as e4, linkToNav as e5, loadingActions as e6, mInterceptor as e7, manualValidation as e8, matchFieldValidation as e9, provideMagAppConfig as eA, provideMagWcConfig as eB, provideMagWcRoutes as eC, provideModalComponents as eD, provideMurlUrlSerializer as eE, provideNavWidgets as eF, provideOverlayWidgets as eG, providePlatformNavWidgets as eH, provideSearch as eI, provideSizeContext as eJ, provideUserTabs as eK, publicGuard as eL, readFieldPatterns as eM, renderAddress as eN, requiredValidation as eO, resolveConfigAsset as eP, resolveIconSize as eQ, resolvePallet as eR, resolvePatternRules as eS, resolveSize as eT, rgbToHex as eU, rgbToHsl as eV, rowHasChildren as eW, samePatterns as eX, segmentsToNavId as eY, setProperty as eZ, setTreeGridChildren as e_, maxLengthValidation as ea, maxValidation as eb, mergePlatformNav as ec, mergeUnique as ed, mergeUniqueBy as ee, mergeUniqueWith as ef, minAgeValidation as eg, minLengthValidation as eh, minValidation as ei, miniMarkToHtml as ej, navIdChain as ek, navIdFor as el, navIdSegment as em, navIdToRoutePath as en, navIdToSegments as eo, navToId as ep, parentNavId as eq, parseAddress as er, parseColor as es, parsePatternNames as et, patternValidation as eu, patternsValidation as ev, platformNavWidgets as ew, privateGuard as ex, processImageToSvg as ey, provideAppContext as ez, AccordionBodyDirective as f, shouldShowBadge as f0, splitNavId as f1, stringToColor as f2, toAttrBool as f3, toAttrNumber as f4, toCssLength as f5, toHostNavId as f6, toLength$1 as f7, toLocalNavId as f8, toggleTreeGridRow as f9, unfetchedPlatformNav as fa, urlValidation as fb, 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 };
33029
+ //# sourceMappingURL=magmonium-one-magmonium-one-DnUmvFAM.mjs.map