@magmonium/one 0.2.55 → 0.2.57

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.
@@ -6990,7 +6990,7 @@ class SectionFormItemComponent extends ConfigComponent {
6990
6990
  break;
6991
6991
  }
6992
6992
  case InputType.TOGGLE: {
6993
- const { ToggleInputComponent } = await import('./magmonium-one-toggle-BdaWSBF0.mjs');
6993
+ const { ToggleInputComponent } = await import('./magmonium-one-toggle-Dmu66J0W.mjs');
6994
6994
  this.createDynamicComponent(seq, ToggleInputComponent, [], true);
6995
6995
  break;
6996
6996
  }
@@ -7002,12 +7002,12 @@ class SectionFormItemComponent extends ConfigComponent {
7002
7002
  break;
7003
7003
  }
7004
7004
  case InputType.PASSWORD: {
7005
- const { PasswordInputComponent } = await import('./magmonium-one-password-BzO9faJz.mjs');
7005
+ const { PasswordInputComponent } = await import('./magmonium-one-password--K2CxdeN.mjs');
7006
7006
  this.createDynamicComponent(seq, PasswordInputComponent);
7007
7007
  break;
7008
7008
  }
7009
7009
  case InputType.OTP: {
7010
- const { OtpInputComponent } = await import('./magmonium-one-otp-CgwRsJD0.mjs');
7010
+ const { OtpInputComponent } = await import('./magmonium-one-otp-BS0JdT_v.mjs');
7011
7011
  this.createDynamicComponent(seq, OtpInputComponent);
7012
7012
  break;
7013
7013
  }
@@ -7356,11 +7356,17 @@ const findFirstFocusable = (root) => {
7356
7356
  * reads as "unset" to every consumer that filters empty values, so `false`
7357
7357
  * could never survive a round trip (ADR 0010). Everything else becomes a
7358
7358
  * string, an absent key becoming ''.
7359
+ *
7360
+ * `data` is typed `object` rather than `Record<string, unknown>`: a caller's
7361
+ * shape is often an `interface`, which has no implicit index signature and so
7362
+ * is refused by the narrower type. Only the keys asked for are read, off a
7363
+ * local widening rather than off the parameter.
7359
7364
  */
7360
7365
  const toModelValues = (data, keys) => {
7361
7366
  const values = {};
7367
+ const source = data;
7362
7368
  keys?.forEach((key) => {
7363
- const raw = data?.[key];
7369
+ const raw = source?.[key];
7364
7370
  if (Array.isArray(raw)) {
7365
7371
  values[key] = raw;
7366
7372
  }
@@ -7384,6 +7390,12 @@ const toModelValues = (data, keys) => {
7384
7390
  * nothing — so the call site declares the shape on the way in and Angular infers
7385
7391
  * `submitted` and `dataChange` from it. Unbound, `T` is the untyped record the
7386
7392
  * form has always handed over.
7393
+ *
7394
+ * Constrained to `object`, not `Record<string, unknown>`: an `interface` has no
7395
+ * implicit index signature, so a generated `SignupFormValue` interface bound to
7396
+ * `data` failed the narrower constraint and silently fell back to the default,
7397
+ * which then refused the very shape it was handed. Nothing here indexes `T` —
7398
+ * it is spread and handed back — so the wider bound costs nothing.
7387
7399
  */
7388
7400
  class SectionFormComponent extends ConfigComponent {
7389
7401
  // No `forms/<name>.yml` behind this one. A Section Form is markup — its
@@ -16007,6 +16019,13 @@ const ModalStore = signalStore({ providedIn: 'root' }, withState(initialModalSta
16007
16019
  if (!modalId) {
16008
16020
  return;
16009
16021
  }
16022
+ // A modal that has already gone. Closing it again is what a body and its
16023
+ // own close affordance both doing their job looks like (ADR 0031), and
16024
+ // the state patch below would hand `activeModal` to somebody else's
16025
+ // overlay, so the second call answers nothing.
16026
+ if (id && !modalTriggerMap[id]) {
16027
+ return;
16028
+ }
16010
16029
  domService.destroy({
16011
16030
  componentRef: modalTriggerMap[modalId]?.ref,
16012
16031
  parentClassName: state.parentClassName(),
@@ -16122,6 +16141,11 @@ const ModalStore = signalStore({ providedIn: 'root' }, withState(initialModalSta
16122
16141
  if (!panelId) {
16123
16142
  return;
16124
16143
  }
16144
+ // A panel that has already gone — `close`'s reason, and here it would
16145
+ // also promote a DockedPanel a second time.
16146
+ if (id && !panelTriggerMap[id]) {
16147
+ return;
16148
+ }
16125
16149
  const closing = panelTriggerMap[panelId];
16126
16150
  domService.destroy({
16127
16151
  componentRef: closing?.ref,
@@ -16227,10 +16251,18 @@ const ModalStore = signalStore({ providedIn: 'root' }, withState(initialModalSta
16227
16251
  inputBinding('inputs', () => trigger.inputs ?? {}),
16228
16252
  ];
16229
16253
  // Its own ModalRef, the way each directive mints one: the body closes
16230
- // itself through this, and nothing here is listening for the result.
16231
- const providers = [{ provide: MODAL_REF, useValue: new ModalRef() }];
16254
+ // itself through this. Nothing here listens for the *result* — a store
16255
+ // has nowhere to put a panel's answer but the close dismisses, which is
16256
+ // the whole of what a body opened this way can ask for (ADR 0031).
16257
+ const modalRef = new ModalRef();
16258
+ // What the body answered reaches the caller either way (ADR 0031): a
16259
+ // `change` reports and the overlay stays, a `close` reports and then it
16260
+ // goes. The order on a close is deliberate — a handler that reads the
16261
+ // Screen it opened must run while that Screen is still there.
16262
+ modalRef.onChange((result) => trigger.onResult?.(result));
16263
+ const providers = [{ provide: MODAL_REF, useValue: modalRef }];
16232
16264
  if (trigger.as === 'side_panel') {
16233
- return openPanel({
16265
+ const panelId = openPanel({
16234
16266
  component: overlayBodyComp,
16235
16267
  bindings,
16236
16268
  providers,
@@ -16240,13 +16272,37 @@ const ModalStore = signalStore({ providedIn: 'root' }, withState(initialModalSta
16240
16272
  dock: trigger.dock,
16241
16273
  closeProhibited: trigger.closeProhibited,
16242
16274
  });
16275
+ modalRef.onClose((result) => {
16276
+ trigger.onResult?.(result);
16277
+ closePanel(panelId);
16278
+ });
16279
+ return panelId;
16243
16280
  }
16244
- return open({
16281
+ const modalId = open({
16245
16282
  component: overlayBodyComp,
16246
16283
  bindings,
16247
16284
  providers,
16248
16285
  config: trigger.config,
16249
16286
  });
16287
+ modalRef.onClose((result) => {
16288
+ trigger.onResult?.(result);
16289
+ close(modalId);
16290
+ });
16291
+ return modalId;
16292
+ };
16293
+ /**
16294
+ * Closes the overlay with this id, whichever kind it is — what a caller
16295
+ * holding only what `openScreen` returned can say (ADR 0031). Nothing for
16296
+ * an id nothing answers to, which is what a body that already closed itself
16297
+ * leaves behind.
16298
+ */
16299
+ const dismiss = (id) => {
16300
+ if (state.modalTriggerMap()[id]) {
16301
+ close(id);
16302
+ return;
16303
+ }
16304
+ if (state.panelTriggerMap()[id])
16305
+ closePanel(id);
16250
16306
  };
16251
16307
  // The callback form, kept for every caller drawn against it. One
16252
16308
  // implementation underneath: a refusal runs nothing, which is what an
@@ -16260,6 +16316,7 @@ const ModalStore = signalStore({ providedIn: 'root' }, withState(initialModalSta
16260
16316
  return {
16261
16317
  open,
16262
16318
  close,
16319
+ dismiss,
16263
16320
  ask,
16264
16321
  confirm,
16265
16322
  openScreen,
@@ -20704,7 +20761,7 @@ class WrapperInputComponent extends ConfigComponent {
20704
20761
  break;
20705
20762
  }
20706
20763
  case InputType.TOGGLE: {
20707
- const { ToggleInputComponent } = await import('./magmonium-one-toggle-BdaWSBF0.mjs');
20764
+ const { ToggleInputComponent } = await import('./magmonium-one-toggle-Dmu66J0W.mjs');
20708
20765
  this.createDynamicComponent(seq, ToggleInputComponent, [], true);
20709
20766
  break;
20710
20767
  }
@@ -20716,12 +20773,12 @@ class WrapperInputComponent extends ConfigComponent {
20716
20773
  break;
20717
20774
  }
20718
20775
  case InputType.PASSWORD: {
20719
- const { PasswordInputComponent } = await import('./magmonium-one-password-BzO9faJz.mjs');
20776
+ const { PasswordInputComponent } = await import('./magmonium-one-password--K2CxdeN.mjs');
20720
20777
  this.createDynamicComponent(seq, PasswordInputComponent);
20721
20778
  break;
20722
20779
  }
20723
20780
  case InputType.OTP: {
20724
- const { OtpInputComponent } = await import('./magmonium-one-otp-CgwRsJD0.mjs');
20781
+ const { OtpInputComponent } = await import('./magmonium-one-otp-BS0JdT_v.mjs');
20725
20782
  this.createDynamicComponent(seq, OtpInputComponent);
20726
20783
  break;
20727
20784
  }
@@ -29247,6 +29304,12 @@ deps) {
29247
29304
  class ModalDirective {
29248
29305
  mModal = input(...(ngDevMode ? [undefined, { debugName: "mModal" }] : /* istanbul ignore next */ []));
29249
29306
  closed = output();
29307
+ /**
29308
+ * What the body answered without dismissing — `ModalRef.change` (ADR 0031).
29309
+ * Its own output beside `closed` because the two are different facts: one
29310
+ * says *here is the value*, the other says *and it is gone*.
29311
+ */
29312
+ reported = output();
29250
29313
  elementRef = inject(ElementRef);
29251
29314
  assetStore = inject(AssetStore);
29252
29315
  modalStore = inject(ModalStore);
@@ -29274,7 +29337,7 @@ class ModalDirective {
29274
29337
  }
29275
29338
  open(config) {
29276
29339
  const modalRef = new ModalRef();
29277
- this.modalStore.open({
29340
+ const id = this.modalStore.open({
29278
29341
  component: OverlayBodyComponent,
29279
29342
  bindings: [
29280
29343
  inputBinding('form', () => config.form),
@@ -29286,17 +29349,23 @@ class ModalDirective {
29286
29349
  providers: [{ provide: MODAL_REF, useValue: modalRef }],
29287
29350
  config,
29288
29351
  });
29289
- modalRef.onClose((result) => this.closed.emit(result));
29352
+ modalRef.onChange((result) => this.reported.emit(result));
29353
+ // The body dismisses through this ref and the opener reports the result
29354
+ // (ADR 0031): one channel, whichever end closed the overlay.
29355
+ modalRef.onClose((result) => {
29356
+ this.modalStore.close(id);
29357
+ this.closed.emit(result);
29358
+ });
29290
29359
  }
29291
29360
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ModalDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
29292
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "21.2.9", type: ModalDirective, isStandalone: true, selector: "[mModal]", inputs: { mModal: { classPropertyName: "mModal", publicName: "mModal", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { closed: "closed" }, host: { listeners: { "click": "onClick($event)" } }, ngImport: i0 });
29361
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "21.2.9", type: ModalDirective, isStandalone: true, selector: "[mModal]", inputs: { mModal: { classPropertyName: "mModal", publicName: "mModal", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { closed: "closed", reported: "reported" }, host: { listeners: { "click": "onClick($event)" } }, ngImport: i0 });
29293
29362
  }
29294
29363
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ModalDirective, decorators: [{
29295
29364
  type: Directive,
29296
29365
  args: [{
29297
29366
  selector: '[mModal]',
29298
29367
  }]
29299
- }], ctorParameters: () => [], propDecorators: { mModal: [{ type: i0.Input, args: [{ isSignal: true, alias: "mModal", required: false }] }], closed: [{ type: i0.Output, args: ["closed"] }], onClick: [{
29368
+ }], ctorParameters: () => [], propDecorators: { mModal: [{ type: i0.Input, args: [{ isSignal: true, alias: "mModal", required: false }] }], closed: [{ type: i0.Output, args: ["closed"] }], reported: [{ type: i0.Output, args: ["reported"] }], onClick: [{
29300
29369
  type: HostListener,
29301
29370
  args: ['click', ['$event']]
29302
29371
  }] } });
@@ -29305,6 +29374,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
29305
29374
  class SidePanelDirective {
29306
29375
  mSidePanel = input(...(ngDevMode ? [undefined, { debugName: "mSidePanel" }] : /* istanbul ignore next */ []));
29307
29376
  closed = output();
29377
+ /**
29378
+ * What the body answered without dismissing — `ModalRef.change` (ADR 0031).
29379
+ * Its own output beside `closed` because the two are different facts: one
29380
+ * says *here is the value*, the other says *and it is gone*.
29381
+ */
29382
+ reported = output();
29308
29383
  elementRef = inject(ElementRef);
29309
29384
  assetStore = inject(AssetStore);
29310
29385
  modalStore = inject(ModalStore);
@@ -29332,7 +29407,7 @@ class SidePanelDirective {
29332
29407
  }
29333
29408
  open(config) {
29334
29409
  const modalRef = new ModalRef();
29335
- this.modalStore.openPanel({
29410
+ const id = this.modalStore.openPanel({
29336
29411
  component: OverlayBodyComponent,
29337
29412
  bindings: [
29338
29413
  inputBinding('form', () => config.form),
@@ -29348,17 +29423,23 @@ class SidePanelDirective {
29348
29423
  dock: config.dock,
29349
29424
  closeProhibited: config.closeProhibited,
29350
29425
  });
29351
- modalRef.onClose((result) => this.closed.emit(result));
29426
+ modalRef.onChange((result) => this.reported.emit(result));
29427
+ // The body dismisses through this ref and the opener reports the result
29428
+ // (ADR 0031): one channel, whichever end closed the panel.
29429
+ modalRef.onClose((result) => {
29430
+ this.modalStore.closePanel(id);
29431
+ this.closed.emit(result);
29432
+ });
29352
29433
  }
29353
29434
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: SidePanelDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
29354
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "21.2.9", type: SidePanelDirective, isStandalone: true, selector: "[mSidePanel]", inputs: { mSidePanel: { classPropertyName: "mSidePanel", publicName: "mSidePanel", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { closed: "closed" }, host: { listeners: { "click": "onClick($event)" } }, ngImport: i0 });
29435
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "21.2.9", type: SidePanelDirective, isStandalone: true, selector: "[mSidePanel]", inputs: { mSidePanel: { classPropertyName: "mSidePanel", publicName: "mSidePanel", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { closed: "closed", reported: "reported" }, host: { listeners: { "click": "onClick($event)" } }, ngImport: i0 });
29355
29436
  }
29356
29437
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: SidePanelDirective, decorators: [{
29357
29438
  type: Directive,
29358
29439
  args: [{
29359
29440
  selector: '[mSidePanel]',
29360
29441
  }]
29361
- }], ctorParameters: () => [], propDecorators: { mSidePanel: [{ type: i0.Input, args: [{ isSignal: true, alias: "mSidePanel", required: false }] }], closed: [{ type: i0.Output, args: ["closed"] }], onClick: [{
29442
+ }], ctorParameters: () => [], propDecorators: { mSidePanel: [{ type: i0.Input, args: [{ isSignal: true, alias: "mSidePanel", required: false }] }], closed: [{ type: i0.Output, args: ["closed"] }], reported: [{ type: i0.Output, args: ["reported"] }], onClick: [{
29362
29443
  type: HostListener,
29363
29444
  args: ['click', ['$event']]
29364
29445
  }] } });
@@ -35264,4 +35345,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
35264
35345
  */
35265
35346
 
35266
35347
  export { DEFAULT_FILTER_VARIANT 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, ChatBubbleComponent as H, IS_DESIGN_MODE as I, CheckboxInputComponent as J, ClearableInputComponent as K, LabelComponent as L, ColComponent as M, ColorPickerInputComponent as N, CommentItemComponent as O, CommentsApiService as P, CommentsComponent as Q, CommentsStore as R, ComponentInputComponent as S, TranslatePipe as T, ComponentStepperComponent as U, ConfigComponent as V, ConfirmComponent as W, ContextMenuComponent as X, CustomIconClass as Y, CustomIconEditComponent as Z, DEFAULT_FILTER_RANGE_MODE as _, BaseTextInputComponent as a, MultiRangeInputComponent as a$, DEFAULT_NAV_PARAM as a0, DEFAULT_NAV_SEGMENT as a1, DEFAULT_SIZE as a2, DashboardCardComponent as a3, DateInputComponent as a4, DatePickerComponent as a5, DeviceService as a6, DomService as a7, Domain as a8, DotGridComponent as a9, ImgComponent as aA, InputType as aB, InstrumentScoreComponent as aC, InterceptorObservables as aD, JumbotronComponent as aE, KeyValueComponent as aF, LAYOUT_ASSET_FOLDER as aG, LOGIN_COMPONENT as aH, LOGIN_STORE as aI, LanguageComponent as aJ, ListComponent as aK, LogoComponent as aL, MAG_SOCKET_EVENT as aM, MHeroColorDirective as aN, MHeroComponent as aO, MODAL_REF as aP, MODAL_STORE_REF as aQ, MRefDirective as aR, MStepComponent as aS, MURL_PARAM as aT, MURL_SEP as aU, ManifestEnrichmentService as aV, MenuComponent as aW, ModalDirective as aX, ModalRef as aY, ModalStore as aZ, MoneyPipe as a_, DragListDirective as aa, DragListItemDirective as ab, DraggableDirective as ac, DropdownInputComponent as ad, FILTER_GROUP_CONTEXT as ae, FILTER_RANGE_MODES as af, FILTER_VARIANTS as ag, FLEX_VARIANTS as ah, FOLDER_PICK_LISTENER as ai, FORM_ASSET_FOLDER as aj, FileService as ak, FileUploadDirective as al, FileUploadInputComponent as am, FlexComponent as an, FlexItemComponent as ao, FormGroupComponent as ap, FrameComponent as aq, FreezeService as ar, GRID_BREAKPOINTS as as, GetNavService as at, HeaderComponent$1 as au, HighlightDirective as av, HttpService as aw, ICON_SOURCE as ax, IS_SIDE_PANEL as ay, IconComponent as az, TextOutputComponent as b, SectionAccordionDirective as b$, MurlUrlSerializer as b0, NAV_DEFAULT_MURL as b1, NAV_ID_SEP as b2, NAV_MAIN_BUTTONS as b3, NAV_SEGMENT_RE as b4, NAV_STORE_REF as b5, NAV_WC_COMPONENTS as b6, NAV_WIDGET_MAP as b7, NavComponent as b8, NavDetailsComponent as b9, PercentagePipe as bA, PlaygroundComponent as bB, PositionDirective as bC, PwaInstallComponent as bD, ROOT_NAV$1 as bE, RadioGroupComponent as bF, RadioInputComponent as bG, RangeInputComponent as bH, RatingInputComponent as bI, ReactiveElementComponent as bJ, RemoteComponent as bK, RemoteLoaderService as bL, ResizeElementComponent as bM, RouteContainer as bN, RowComponent as bO, SEARCH_QUERY as bP, SEARCH_RESULTS_EVENT as bQ, SECTION_ACCORDION_GROUP as bR, SECTION_FORM_CONTEXT as bS, SHARED_ICONS as bT, SIZE_CONTEXT as bU, ScoreComponent as bV, ScrollComponent as bW, ScrollService as bX, SearchPanelComponent as bY, SearchStore as bZ, SearchUserPanelComponent as b_, NavHeaderComponent as ba, NavMenuComponent as bb, NavStore as bc, NavTrailComponent as bd, NothingComponent as be, NotificationElementComponent as bf, NotificationGroupComponent as bg, NotificationPopupComponent as bh, NotificationService as bi, NotificationStore as bj, NotificationType as bk, NotificationWidgetComponent as bl, ONE_ASSET_BASE_URL as bm, OPTIONS_SOURCE as bn, OVERLAY_WIDGETS as bo, OneApp as bp, OptionsSourceDirective as bq, OverlayBodyComponent as br, OverlayRef as bs, OverlayService as bt, PLATFORM_BUTTON_NAV_IDS as bu, PLATFORM_EXTENSIBLE_NAV_IDS as bv, PLATFORM_NAV_MAP as bw, PLATFORM_ROOT_CHILDREN as bx, PaginationComponent as by, PanelComponent as bz, ButtonComponent as c, URL_SEP as c$, SectionAccordionGroupDirective as c0, SectionBackComponent as c1, SectionBadgesComponent as c2, SectionButtonGroupComponent as c3, SectionCardComponent as c4, SectionCarouselComponent as c5, SectionComponent as c6, SectionFilterComponent as c7, SectionFilterGroupComponent as c8, SectionFilterMenuComponent as c9, StepsComponent as cA, StorageService as cB, StrokeLinecap as cC, StrokeLinejoin as cD, SummaryComponent as cE, SvgGeneratorComponent as cF, SvgGeneratorService as cG, SvgService as cH, TOTAL_COLUMNS as cI, TRANSLATION_SOURCE as cJ, TableComponent as cK, TechnicalMeterComponent as cL, TextInputComponent as cM, TextareaInputComponent as cN, ThemeComponent as cO, ThemeDataService as cP, ThemeService as cQ, ThemeStore as cR, TimeAgoPipe as cS, TimelineComponent as cT, ToggleButtonComponent as cU, ToggleInputComponent as cV, ToggleRadioInputComponent as cW, ToolTipDirective as cX, TooltipComponent as cY, TranslateService as cZ, TreeGridComponent as c_, SectionFilterPanelComponent as ca, SectionFilterRangePanelComponent as cb, SectionFooterComponent as cc, SectionFormComponent as cd, SectionFormItemComponent as ce, SectionHeaderComponent as cf, SectionHeroComponent as cg, SectionPaginationComponent as ch, SectionSearchComponent as ci, SectionStepperComponent as cj, SectionTabsComponent as ck, SectionToggleComponent as cl, SectionToggleItemDirective as cm, SelectableCardInputComponent as cn, SelectorDirective as co, SettingsSearchBarComponent as cp, SettingsSearchService as cq, ShapeComponent as cr, SharedStoreRegistry as cs, SidePanelDirective as ct, Size as cu, SocketStore as cv, SortComponent as cw, StatComponent as cx, StepComponent as cy, StepperComponent as cz, APP_CONTEXT_REF as d, getTierFromPreviewPath as d$, USER_STORE_REF as d0, USER_TAB_MAP as d1, UniverseComponent as d2, UserApiService as d3, UserAvatarComponent as d4, UserComponent as d5, UserNavComponent as d6, UserSettingsComponent as d7, UserStore as d8, WC_ROUTE_CHANGED_EVENT as d9, deriveOppositeColor as dA, derivePropertyName as dB, emailValidation as dC, evaluate as dD, evaluateBool as dE, filterHoldsList as dF, filterHoldsOneBound as dG, filterHoldsOptions as dH, filterHoldsRange as dI, filterList as dJ, filterNumber as dK, filterNumberList as dL, filterOne as dM, filterPanelOf as dN, filterPanelWidth as dO, filterRange as dP, filterTreeGridRows as dQ, filterValueList as dR, filterValues as dS, flattenTreeGridRows as dT, formatBadgeCount as dU, fullName as dV, generateClipPath as dW, generateTransform as dX, getClassList as dY, getProperty as dZ, getScrollParent as d_, WC_SEARCH_GROUPS as da, WIN_USER_TAB_HOOK as db, WIN_USER_TAB_KEY as dc, WatermarkComponent as dd, WcRouterStore as de, WrapperInputComponent as df, anchorNavId as dg, applyColorsToElement as dh, assetOptions as di, bootstrapMagApp as dj, bootstrapPwaInstall as dk, buildWcBaseUrl as dl, calculateLuminance as dm, calculateRanks as dn, cellText as dp, checkFilterCondition as dq, childNavId as dr, classListSignal as ds, coerceSize as dt, cornerEdge as du, cornerSide as dv, createMap as dw, createPlatformNavMap as dx, deriveAvatarGradient as dy, deriveContrastColor as dz, ASSET_BASE_URL as e, provideAppContext as e$, getTreeGridRow as e0, getUniqueId as e1, getValue as e2, hasErrorComputed as e3, hexToRgb as e4, hslToRgb$1 as e5, initMagmoniumApp as e6, initialNotificationState as e7, initialState$2 as e8, initials as e9, 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, navParamOf as eP, navToId as eQ, normalizeAssetOptions as eR, parentNavId as eS, parseAddress as eT, parseColor as eU, parsePatternNames as eV, patternValidation as eW, patternsValidation as eX, platformNavWidgets as eY, privateGuard as eZ, processImageToSvg as e_, injectAuthenticate as ea, injectInstallApp as eb, injectParentSize as ec, injectScrollSticky as ed, isButtonName as ee, isCancelledComputed as ef, isExtensiblePlatformNavId as eg, isJson as eh, isLoadingComputed as ei, isLocalhost as ej, isNavInstanceConfig as ek, isNavMenuConfig as el, isNavRowsConfig as em, isPlatformNavId as en, isSize as eo, isTierPreview as ep, isUrlLocalhost as eq, isValidNavId as er, isValidNavSegment as es, isWebComponent as et, linkToId as eu, linkToNav as ev, loadingActions as ew, mInterceptor as ex, manualValidation as ey, matchFieldValidation as ez, AccordionBodyDirective as f, provideMagAppConfig as f0, provideMagWcConfig as f1, provideMagWcRoutes as f2, provideModalComponents as f3, provideMurlUrlSerializer as f4, provideNavWidgets as f5, provideOverlayWidgets as f6, providePlatformNavWidgets as f7, provideSearch as f8, provideSizeContext as f9, toLength$1 as fA, toLocalNavId as fB, toggleTreeGridRow as fC, unfetchedPlatformNav as fD, urlValidation as fE, provideUserTabs as fa, publicGuard as fb, readFieldPatterns as fc, renderAddress as fd, requiredValidation as fe, resolveConfigAsset as ff, resolveIconSize as fg, resolvePallet as fh, resolvePatternRules as fi, resolveSize as fj, rgbToHex as fk, rgbToHsl as fl, rowHasChildren as fm, samePatterns as fn, segmentsToNavId as fo, setProperty as fp, setTreeGridChildren as fq, settingsWidgets as fr, shouldShowBadge as fs, splitNavId as ft, splitOnMatch as fu, stringToColor as fv, toAttrBool as fw, toAttrNumber as fx, toCssLength as fy, toHostNavId as fz, 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 };
35267
- //# sourceMappingURL=magmonium-one-magmonium-one-OvVACWMJ.mjs.map
35348
+ //# sourceMappingURL=magmonium-one-magmonium-one-DmOQCRMx.mjs.map