@magmonium/one 0.0.7 → 0.0.8

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.
@@ -167,9 +167,12 @@ function buildWcBaseUrl(apiUrl, remoteId) {
167
167
  return `${apiUrl}/store/v1/wc/${remoteId}`;
168
168
  }
169
169
 
170
+ /** Access domains — routed to Auth URL when it differs from Backend URL (ADR 0012). */
171
+ const ACCESS_DOMAINS = new Set(['auth', 'user', 'admin']);
170
172
  class HttpService {
171
173
  http = inject(HttpClient);
172
174
  url = 'http://localhost:8000';
175
+ authUrl = 'http://localhost:8000';
173
176
  assetUrl = inject(ASSET_BASE_URL, { optional: true }) ?? './assets';
174
177
  oneAssetUrl = inject(ONE_ASSET_BASE_URL, { optional: true }) ?? './assets';
175
178
  publicUrl = './';
@@ -224,6 +227,12 @@ class HttpService {
224
227
  getUrl() {
225
228
  return this.url;
226
229
  }
230
+ setAuthUrl(url) {
231
+ this.authUrl = url;
232
+ }
233
+ getAuthUrl() {
234
+ return this.authUrl;
235
+ }
227
236
  buildUrl(domain, path, version) {
228
237
  return this.createUrl(domain, path, version);
229
238
  }
@@ -313,7 +322,8 @@ class HttpService {
313
322
  return this.http.get(url, requestOptions);
314
323
  }
315
324
  createUrl(domain, path, version) {
316
- return `${this.url}/${domain}/${version ?? 'v1'}/${path.join('/')}`;
325
+ const base = ACCESS_DOMAINS.has(domain) ? this.authUrl : this.url;
326
+ return `${base}/${domain}/${version ?? 'v1'}/${path.join('/')}`;
317
327
  }
318
328
  /**
319
329
  * The query, built by hand rather than handed to `fromObject`: an unset
@@ -3604,7 +3614,7 @@ const NavStore = signalStore({ providedIn: 'root' }, withState(initialState$2),
3604
3614
  };
3605
3615
  }));
3606
3616
 
3607
- function initMagmoniumApp({ backend, socketUrl, }) {
3617
+ function initMagmoniumApp({ backend, authUrl, socketUrl, }) {
3608
3618
  return () => {
3609
3619
  inject(FreezeService); // ensure the loading effect is always active
3610
3620
  const httpService = inject(HttpService);
@@ -3628,7 +3638,10 @@ function initMagmoniumApp({ backend, socketUrl, }) {
3628
3638
  console.warn('initMagmoniumApp: No backend URL provided, defaulting to http://localhost:8000. ' +
3629
3639
  'Check your environment configuration if this is unexpected.');
3630
3640
  }
3641
+ // Auth URL defaults to Backend URL so single-host apps stay unchanged (ADR 0012).
3642
+ const effectiveAuth = authUrl || effectiveBackend;
3631
3643
  httpService.setUrl(effectiveBackend);
3644
+ httpService.setAuthUrl(effectiveAuth);
3632
3645
  themeStore.init();
3633
3646
  if (socketUrl) {
3634
3647
  const socketStore = inject(SocketStore);
@@ -14549,7 +14562,7 @@ class WrapperInputComponent extends ConfigComponent {
14549
14562
  break;
14550
14563
  }
14551
14564
  case InputType.TOGGLE: {
14552
- const { ToggleInputComponent } = await import('./magmonium-one-toggle-B7q3Vvpg.mjs');
14565
+ const { ToggleInputComponent } = await import('./magmonium-one-toggle-Bk1Z74Ii.mjs');
14553
14566
  this.createDynamicComponent(seq, ToggleInputComponent, [], true);
14554
14567
  break;
14555
14568
  }
@@ -14561,12 +14574,12 @@ class WrapperInputComponent extends ConfigComponent {
14561
14574
  break;
14562
14575
  }
14563
14576
  case InputType.PASSWORD: {
14564
- const { PasswordInputComponent } = await import('./magmonium-one-password-a-Le8Z1I.mjs');
14577
+ const { PasswordInputComponent } = await import('./magmonium-one-password-CVkPkspf.mjs');
14565
14578
  this.createDynamicComponent(seq, PasswordInputComponent);
14566
14579
  break;
14567
14580
  }
14568
14581
  case InputType.OTP: {
14569
- const { OtpInputComponent } = await import('./magmonium-one-otp-2KL7aM-S.mjs');
14582
+ const { OtpInputComponent } = await import('./magmonium-one-otp-Dlp8arYw.mjs');
14570
14583
  this.createDynamicComponent(seq, OtpInputComponent);
14571
14584
  break;
14572
14585
  }
@@ -17049,7 +17062,7 @@ class SectionFormItemComponent extends ConfigComponent {
17049
17062
  break;
17050
17063
  }
17051
17064
  case InputType.TOGGLE: {
17052
- const { ToggleInputComponent } = await import('./magmonium-one-toggle-B7q3Vvpg.mjs');
17065
+ const { ToggleInputComponent } = await import('./magmonium-one-toggle-Bk1Z74Ii.mjs');
17053
17066
  this.createDynamicComponent(seq, ToggleInputComponent, [], true);
17054
17067
  break;
17055
17068
  }
@@ -17061,12 +17074,12 @@ class SectionFormItemComponent extends ConfigComponent {
17061
17074
  break;
17062
17075
  }
17063
17076
  case InputType.PASSWORD: {
17064
- const { PasswordInputComponent } = await import('./magmonium-one-password-a-Le8Z1I.mjs');
17077
+ const { PasswordInputComponent } = await import('./magmonium-one-password-CVkPkspf.mjs');
17065
17078
  this.createDynamicComponent(seq, PasswordInputComponent);
17066
17079
  break;
17067
17080
  }
17068
17081
  case InputType.OTP: {
17069
- const { OtpInputComponent } = await import('./magmonium-one-otp-2KL7aM-S.mjs');
17082
+ const { OtpInputComponent } = await import('./magmonium-one-otp-Dlp8arYw.mjs');
17070
17083
  this.createDynamicComponent(seq, OtpInputComponent);
17071
17084
  break;
17072
17085
  }
@@ -22877,7 +22890,8 @@ const mInterceptor = (request, next) => {
22877
22890
  const httpService = inject(HttpService);
22878
22891
  const injector = inject(Injector);
22879
22892
  const baseUrl = httpService.getUrl();
22880
- const isBackend = request.url.startsWith(baseUrl);
22893
+ const authBaseUrl = httpService.getAuthUrl();
22894
+ const isBackend = request.url.startsWith(baseUrl) || request.url.startsWith(authBaseUrl);
22881
22895
  const authenticate = injectAuthenticate();
22882
22896
  const installApp = injectInstallApp();
22883
22897
  const store = inject(LOGIN_STORE);
@@ -22887,7 +22901,7 @@ const mInterceptor = (request, next) => {
22887
22901
  if (!isBackend) {
22888
22902
  return next(request);
22889
22903
  }
22890
- const isAuth = request.url.includes(`${baseUrl}/auth/`);
22904
+ const isAuth = request.url.includes(`${authBaseUrl}/auth/`);
22891
22905
  const isInitCall = request.url === httpService.buildUrl('auth', ['init']);
22892
22906
  const isRefreshCall = request.url === httpService.buildUrl('auth', ['refresh']);
22893
22907
  const actions = SharedStoreRegistry.getLoadingActions() ?? loadingActions;
@@ -23575,7 +23589,11 @@ function provideMagWcConfig(options) {
23575
23589
  provideZonelessChangeDetection(),
23576
23590
  provideRouter(options.routes, withComponentInputBinding()),
23577
23591
  provideHttpClient(withFetch(), withInterceptors([mInterceptor])),
23578
- provideAppInitializer(initMagmoniumApp({ backend: options.backend })),
23592
+ provideAppInitializer(initMagmoniumApp({
23593
+ backend: options.backend,
23594
+ authUrl: options.authUrl,
23595
+ socketUrl: options.socketUrl,
23596
+ })),
23579
23597
  provideAppInitializer(() => { inject(APP_CONTEXT_REF); }),
23580
23598
  provideModalComponents(),
23581
23599
  ThemeStore,
@@ -26091,6 +26109,7 @@ function provideMagAppConfig(options) {
26091
26109
  provideHttpClient(withFetch(), withInterceptors([mInterceptor])),
26092
26110
  provideAppInitializer(initMagmoniumApp({
26093
26111
  backend: options.backend,
26112
+ authUrl: options.authUrl,
26094
26113
  socketUrl: options.socketUrl,
26095
26114
  })),
26096
26115
  provideModalComponents(),
@@ -26169,6 +26188,7 @@ function bootstrapMagApp(routesOrOptions, maybeOptions) {
26169
26188
  }
26170
26189
  const config = provideMagAppConfig({
26171
26190
  backend: options.backend,
26191
+ authUrl: options.authUrl,
26172
26192
  socketUrl: options.socketUrl,
26173
26193
  routes: finalRoutes,
26174
26194
  providers: options.providers,
@@ -29617,5 +29637,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
29617
29637
  * Generated bundle index. Do not edit.
29618
29638
  */
29619
29639
 
29620
- export { Domain as $, APP_CONTEXT_REF as A, BaseInputComponent as B, COLOR_SCHEMES$1 as C, CheckboxInputComponent as D, ErrorsComponent as E, ClearableInputComponent as F, ColComponent as G, ColorPickerInputComponent as H, CommentItemComponent as I, CommentsApiService as J, CommentsComponent as K, LabelComponent as L, CommentsStore as M, ComponentInputComponent as N, ComponentStepperComponent as O, ConfigComponent as P, ConfirmComponent as Q, ContextMenuComponent as R, CustomIconClass as S, TranslatePipe as T, CustomIconEditComponent as U, DEFAULT_SIZE as V, DashboardCardComponent as W, DateInputComponent as X, DatePickerComponent as Y, DeviceService as Z, DomService as _, BaseTextInputComponent as a, NavDetailsComponent as a$, DotGridComponent as a0, DragListDirective as a1, DragListItemDirective as a2, DraggableDirective as a3, DropdownInputComponent as a4, FLEX_VARIANTS as a5, FOLDER_PICK_LISTENER as a6, FORM_ASSET_FOLDER as a7, FileService as a8, FileUploadDirective as a9, LOGIN_STORE as aA, LanguageComponent as aB, LoginDataService as aC, LoginOneComponent as aD, LoginStore as aE, LogoComponent as aF, MAG_SOCKET_EVENT as aG, MHeroColorDirective as aH, MHeroComponent as aI, MODAL_REF as aJ, MODAL_STORE_REF as aK, MRefDirective$1 as aL, MStepComponent as aM, ManifestEnrichmentService as aN, MenuComponent as aO, ModalDirective as aP, ModalRef as aQ, ModalStore as aR, MoneyPipe as aS, MultiRangeInputComponent as aT, NAV_DEFAULT_MURL as aU, NAV_DISPLAY_ORDER as aV, NAV_MAIN_BUTTONS as aW, NAV_STORE_REF as aX, NAV_WC_COMPONENTS as aY, NAV_WIDGET_MAP as aZ, NavComponent as a_, FileUploadInputComponent as aa, FlexComponent as ab, FlexItemComponent as ac, FormGroupComponent as ad, FrameComponent as ae, FreezeService as af, GEN_NAV_DISPLAY_ORDER as ag, GRID_BREAKPOINTS as ah, GetNavService as ai, HeaderComponent$1 as aj, HighlightDirective as ak, HttpService as al, ICON_SOURCE as am, IS_DESIGN_MODE as an, IS_SIDE_PANEL as ao, IconComponent as ap, ImgComponent as aq, InputType as ar, InstrumentScoreComponent as as, InterceptorObservables as at, JumbotronComponent as au, KeyValueComponent as av, LAYOUT_ASSET_FOLDER as aw, LOGIN_COMPONENT as ax, LOGIN_FORM_GROUP as ay, LOGIN_PROCESS as az, ButtonComponent as b, SelectableCardInputComponent as b$, NavMenuComponent as b0, NavStore as b1, NavTrailComponent as b2, NothingComponent as b3, NotificationElementComponent as b4, NotificationGroupComponent as b5, NotificationPopupComponent as b6, NotificationService as b7, NotificationStore as b8, NotificationType as b9, SECTION_ACCORDION_GROUP as bA, SECTION_FORM_CONTEXT as bB, SHARED_ICONS as bC, SIZE_CONTEXT as bD, ScoreComponent as bE, ScrollComponent as bF, ScrollService as bG, SearchPanelComponent as bH, SearchStore as bI, SearchUserPanelComponent as bJ, SectionAccordionDirective as bK, SectionAccordionGroupDirective as bL, SectionBackComponent as bM, SectionBadgesComponent as bN, SectionButtonGroupComponent as bO, SectionCardComponent as bP, SectionComponent as bQ, SectionFilterComponent as bR, SectionFooterComponent as bS, SectionFormComponent as bT, SectionFormItemComponent as bU, SectionHeaderComponent as bV, SectionSearchComponent as bW, SectionStepperComponent as bX, SectionTabsComponent as bY, SectionToggleComponent as bZ, SectionToggleItemDirective as b_, NotificationWidgetComponent as ba, ONE_ASSET_BASE_URL as bb, OPTIONS_SOURCE as bc, OneApp as bd, OptionsSourceDirective as be, OverlayBodyComponent as bf, OverlayRef as bg, OverlayService as bh, PaginationComponent as bi, PanelComponent as bj, PlaygroundComponent as bk, PositionDirective as bl, PwaInstallComponent as bm, ROOT_NAV$1 as bn, RadioGroupComponent as bo, RadioInputComponent as bp, RangeInputComponent as bq, RatingInputComponent as br, ReactiveElementComponent as bs, RemoteComponent as bt, RemoteLoaderService as bu, ResizeElementComponent as bv, RouteContainer as bw, RowComponent as bx, SEARCH_QUERY as by, SEARCH_RESULTS_EVENT as bz, ASSET_BASE_URL as c, classListSignal as c$, SelectorDirective as c0, SettingsSearchBarComponent as c1, SettingsSearchService as c2, Sex as c3, ShapeComponent as c4, SharedStoreRegistry as c5, SidePanelDirective as c6, Size as c7, SocketStore as c8, SortComponent as c9, TooltipComponent as cA, TranslateService as cB, USER_STORE_REF as cC, USER_TAB_MAP as cD, UlComponent as cE, UniverseComponent as cF, UserApiService as cG, UserAvatarComponent as cH, UserComponent as cI, UserNavComponent as cJ, UserSettingsComponent as cK, UserStore as cL, WC_ROUTE_CHANGED_EVENT as cM, WC_SEARCH_GROUPS as cN, WIN_USER_TAB_HOOK as cO, WIN_USER_TAB_KEY as cP, WatermarkComponent as cQ, WcRouterStore as cR, WrapperInputComponent as cS, applyColorsToElement as cT, authGuard as cU, bootstrapMagApp as cV, bootstrapPwaInstall as cW, buildWcBaseUrl as cX, calculateLuminance as cY, calculateRanks as cZ, checkFilterCondition as c_, StepComponent as ca, StepperComponent as cb, StepsComponent as cc, StorageService as cd, StrokeLinecap as ce, StrokeLinejoin as cf, SummaryComponent as cg, SvgGeneratorComponent as ch, SvgGeneratorService as ci, SvgService as cj, TOTAL_COLUMNS as ck, TRANSLATION_SOURCE as cl, TableComponent as cm, TechnicalMeterComponent as cn, TextInputComponent as co, TextOutputComponent as cp, TextareaInputComponent as cq, ThemeComponent as cr, ThemeService as cs, ThemeStore as ct, TimeAgoPipe as cu, TimelineComponent as cv, ToggleButtonComponent as cw, ToggleInputComponent as cx, ToggleRadioInputComponent as cy, ToolTipDirective as cz, AccordionBodyDirective as d, provideModalComponents as d$, createMap as d0, deriveAvatarGradient as d1, deriveContrastColor as d2, deriveOppositeColor as d3, derivePropertyName as d4, emailValidation as d5, evaluate as d6, evaluateBool as d7, formatBadgeCount as d8, fullName as d9, isUrlLocalhost as dA, isWebComponent as dB, linkToId as dC, linkToNav as dD, loadingActions as dE, loginState as dF, mInterceptor as dG, manualValidation as dH, matchFieldValidation as dI, maxLengthValidation as dJ, maxValidation as dK, mergeUnique as dL, mergeUniqueBy as dM, mergeUniqueWith as dN, minAgeValidation as dO, minLengthValidation as dP, minValidation as dQ, miniMarkToHtml as dR, navToId as dS, parseColor as dT, patternValidation as dU, privateGuard as dV, processImageToSvg as dW, provideAppContext as dX, provideMagAppConfig as dY, provideMagWcConfig as dZ, provideMagWcRoutes as d_, generateClipPath as da, generateTransform as db, getClassList as dc, getProperty as dd, getScrollParent as de, getTierFromPreviewPath as df, getUniqueId as dg, getValue as dh, hasErrorComputed as di, hexToRgb as dj, hslToRgb$1 as dk, initMagmoniumApp as dl, initialNotificationState as dm, initials as dn, injectAuthenticate as dp, injectInstallApp as dq, injectParentSize as dr, injectScrollSticky as ds, isButtonName as dt, isCancelledComputed as du, isJson as dv, isLoadingComputed as dw, isLocalhost as dx, isSize as dy, isTierPreview as dz, AccordionComponent as e, provideNavWidgets as e0, provideSearch as e1, provideSizeContext as e2, provideUserTabs as e3, publicGuard as e4, requiredValidation as e5, resolveConfigAsset as e6, resolvePallet as e7, resolveSize as e8, rgbToHex as e9, rgbToHsl as ea, setProperty as eb, settingsWidgets as ec, shouldShowBadge as ed, stringToColor as ee, toAttrBool as ef, toAttrNumber as eg, toCssLength as eh, toLength$1 as ei, urlValidation as ej, AccordionGroupComponent as f, ActionComponent as g, AnimatedGraphsComponent as h, AppCardComponent as i, AppRelationType as j, AppTileComponent as k, AssetStore as l, AssetUrlPipe as m, Assets as n, AutosizeDirective as o, BadgeComponent as p, BandingComponent as q, BaseArrayInputComponent as r, BaseRootWebComponent as s, BaseWebComponent as t, ButtonGroupComponent as u, COMPONENT_INPUT_REGISTRY as v, CardComponent as w, CardWrapperComponent as x, CarouselComponent as y, ChartComponent as z };
29621
- //# sourceMappingURL=magmonium-one-magmonium-one-CCzzYU2z.mjs.map
29640
+ export { DomService as $, ACCESS_DOMAINS as A, BaseInputComponent as B, COLOR_SCHEMES$1 as C, ChartComponent as D, ErrorsComponent as E, CheckboxInputComponent as F, ClearableInputComponent as G, ColComponent as H, ColorPickerInputComponent as I, CommentItemComponent as J, CommentsApiService as K, LabelComponent as L, CommentsComponent as M, CommentsStore as N, ComponentInputComponent as O, ComponentStepperComponent as P, ConfigComponent as Q, ConfirmComponent as R, ContextMenuComponent as S, TranslatePipe as T, CustomIconClass as U, CustomIconEditComponent as V, DEFAULT_SIZE as W, DashboardCardComponent as X, DateInputComponent as Y, DatePickerComponent as Z, DeviceService as _, BaseTextInputComponent as a, NavComponent as a$, Domain as a0, DotGridComponent as a1, DragListDirective as a2, DragListItemDirective as a3, DraggableDirective as a4, DropdownInputComponent as a5, FLEX_VARIANTS as a6, FOLDER_PICK_LISTENER as a7, FORM_ASSET_FOLDER as a8, FileService as a9, LOGIN_PROCESS as aA, LOGIN_STORE as aB, LanguageComponent as aC, LoginDataService as aD, LoginOneComponent as aE, LoginStore as aF, LogoComponent as aG, MAG_SOCKET_EVENT as aH, MHeroColorDirective as aI, MHeroComponent as aJ, MODAL_REF as aK, MODAL_STORE_REF as aL, MRefDirective$1 as aM, MStepComponent as aN, ManifestEnrichmentService as aO, MenuComponent as aP, ModalDirective as aQ, ModalRef as aR, ModalStore as aS, MoneyPipe as aT, MultiRangeInputComponent as aU, NAV_DEFAULT_MURL as aV, NAV_DISPLAY_ORDER as aW, NAV_MAIN_BUTTONS as aX, NAV_STORE_REF as aY, NAV_WC_COMPONENTS as aZ, NAV_WIDGET_MAP as a_, FileUploadDirective as aa, FileUploadInputComponent as ab, FlexComponent as ac, FlexItemComponent as ad, FormGroupComponent as ae, FrameComponent as af, FreezeService as ag, GEN_NAV_DISPLAY_ORDER as ah, GRID_BREAKPOINTS as ai, GetNavService as aj, HeaderComponent$1 as ak, HighlightDirective as al, HttpService as am, ICON_SOURCE as an, IS_DESIGN_MODE as ao, IS_SIDE_PANEL as ap, IconComponent as aq, ImgComponent as ar, InputType as as, InstrumentScoreComponent as at, InterceptorObservables as au, JumbotronComponent as av, KeyValueComponent as aw, LAYOUT_ASSET_FOLDER as ax, LOGIN_COMPONENT as ay, LOGIN_FORM_GROUP as az, ButtonComponent as b, SectionToggleItemDirective as b$, NavDetailsComponent as b0, NavMenuComponent as b1, NavStore as b2, NavTrailComponent as b3, NothingComponent as b4, NotificationElementComponent as b5, NotificationGroupComponent as b6, NotificationPopupComponent as b7, NotificationService as b8, NotificationStore as b9, SEARCH_RESULTS_EVENT as bA, SECTION_ACCORDION_GROUP as bB, SECTION_FORM_CONTEXT as bC, SHARED_ICONS as bD, SIZE_CONTEXT as bE, ScoreComponent as bF, ScrollComponent as bG, ScrollService as bH, SearchPanelComponent as bI, SearchStore as bJ, SearchUserPanelComponent as bK, SectionAccordionDirective as bL, SectionAccordionGroupDirective as bM, SectionBackComponent as bN, SectionBadgesComponent as bO, SectionButtonGroupComponent as bP, SectionCardComponent as bQ, SectionComponent as bR, SectionFilterComponent as bS, SectionFooterComponent as bT, SectionFormComponent as bU, SectionFormItemComponent as bV, SectionHeaderComponent as bW, SectionSearchComponent as bX, SectionStepperComponent as bY, SectionTabsComponent as bZ, SectionToggleComponent as b_, NotificationType as ba, NotificationWidgetComponent as bb, ONE_ASSET_BASE_URL as bc, OPTIONS_SOURCE as bd, OneApp as be, OptionsSourceDirective as bf, OverlayBodyComponent as bg, OverlayRef as bh, OverlayService as bi, PaginationComponent as bj, PanelComponent as bk, PlaygroundComponent as bl, PositionDirective as bm, PwaInstallComponent as bn, ROOT_NAV$1 as bo, RadioGroupComponent as bp, RadioInputComponent as bq, RangeInputComponent as br, RatingInputComponent as bs, ReactiveElementComponent as bt, RemoteComponent as bu, RemoteLoaderService as bv, ResizeElementComponent as bw, RouteContainer as bx, RowComponent as by, SEARCH_QUERY as bz, APP_CONTEXT_REF as c, checkFilterCondition as c$, SelectableCardInputComponent as c0, SelectorDirective as c1, SettingsSearchBarComponent as c2, SettingsSearchService as c3, Sex as c4, ShapeComponent as c5, SharedStoreRegistry as c6, SidePanelDirective as c7, Size as c8, SocketStore as c9, ToolTipDirective as cA, TooltipComponent as cB, TranslateService as cC, USER_STORE_REF as cD, USER_TAB_MAP as cE, UlComponent as cF, UniverseComponent as cG, UserApiService as cH, UserAvatarComponent as cI, UserComponent as cJ, UserNavComponent as cK, UserSettingsComponent as cL, UserStore as cM, WC_ROUTE_CHANGED_EVENT as cN, WC_SEARCH_GROUPS as cO, WIN_USER_TAB_HOOK as cP, WIN_USER_TAB_KEY as cQ, WatermarkComponent as cR, WcRouterStore as cS, WrapperInputComponent as cT, applyColorsToElement as cU, authGuard as cV, bootstrapMagApp as cW, bootstrapPwaInstall as cX, buildWcBaseUrl as cY, calculateLuminance as cZ, calculateRanks as c_, SortComponent as ca, StepComponent as cb, StepperComponent as cc, StepsComponent as cd, StorageService as ce, StrokeLinecap as cf, StrokeLinejoin as cg, SummaryComponent as ch, SvgGeneratorComponent as ci, SvgGeneratorService as cj, SvgService as ck, TOTAL_COLUMNS as cl, TRANSLATION_SOURCE as cm, TableComponent as cn, TechnicalMeterComponent as co, TextInputComponent as cp, TextOutputComponent as cq, TextareaInputComponent as cr, ThemeComponent as cs, ThemeService as ct, ThemeStore as cu, TimeAgoPipe as cv, TimelineComponent as cw, ToggleButtonComponent as cx, ToggleInputComponent as cy, ToggleRadioInputComponent as cz, ASSET_BASE_URL as d, provideMagWcRoutes as d$, classListSignal as d0, createMap as d1, deriveAvatarGradient as d2, deriveContrastColor as d3, deriveOppositeColor as d4, derivePropertyName as d5, emailValidation as d6, evaluate as d7, evaluateBool as d8, formatBadgeCount as d9, isTierPreview as dA, isUrlLocalhost as dB, isWebComponent as dC, linkToId as dD, linkToNav as dE, loadingActions as dF, loginState as dG, mInterceptor as dH, manualValidation as dI, matchFieldValidation as dJ, maxLengthValidation as dK, maxValidation as dL, mergeUnique as dM, mergeUniqueBy as dN, mergeUniqueWith as dO, minAgeValidation as dP, minLengthValidation as dQ, minValidation as dR, miniMarkToHtml as dS, navToId as dT, parseColor as dU, patternValidation as dV, privateGuard as dW, processImageToSvg as dX, provideAppContext as dY, provideMagAppConfig as dZ, provideMagWcConfig as d_, fullName as da, generateClipPath as db, generateTransform as dc, getClassList as dd, getProperty as de, getScrollParent as df, getTierFromPreviewPath as dg, getUniqueId as dh, getValue as di, hasErrorComputed as dj, hexToRgb as dk, hslToRgb$1 as dl, initMagmoniumApp as dm, initialNotificationState as dn, initials as dp, injectAuthenticate as dq, injectInstallApp as dr, injectParentSize as ds, injectScrollSticky as dt, isButtonName as du, isCancelledComputed as dv, isJson as dw, isLoadingComputed as dx, isLocalhost as dy, isSize as dz, AccordionBodyDirective as e, provideModalComponents as e0, provideNavWidgets as e1, provideSearch as e2, provideSizeContext as e3, provideUserTabs as e4, publicGuard as e5, requiredValidation as e6, resolveConfigAsset as e7, resolvePallet as e8, resolveSize as e9, rgbToHex as ea, rgbToHsl as eb, setProperty as ec, settingsWidgets as ed, shouldShowBadge as ee, stringToColor as ef, toAttrBool as eg, toAttrNumber as eh, toCssLength as ei, toLength$1 as ej, urlValidation as ek, AccordionComponent as f, AccordionGroupComponent as g, ActionComponent as h, AnimatedGraphsComponent as i, AppCardComponent as j, AppRelationType as k, AppTileComponent as l, AssetStore as m, AssetUrlPipe as n, Assets as o, AutosizeDirective as p, BadgeComponent as q, BandingComponent as r, BaseArrayInputComponent as s, BaseRootWebComponent as t, BaseWebComponent as u, ButtonGroupComponent as v, COMPONENT_INPUT_REGISTRY as w, CardComponent as x, CardWrapperComponent as y, CarouselComponent as z };
29641
+ //# sourceMappingURL=magmonium-one-magmonium-one-B5J36xup.mjs.map