@magmonium/one 0.1.16 → 0.1.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/{magmonium-one-magmonium-one-BtEA90hr.mjs → magmonium-one-magmonium-one-Cp9Esj3q.mjs} +32 -17
- package/fesm2022/magmonium-one-magmonium-one-Cp9Esj3q.mjs.map +1 -0
- package/fesm2022/{magmonium-one-otp-DBgdQmDG.mjs → magmonium-one-otp-B1z8_ZHg.mjs} +2 -2
- package/fesm2022/{magmonium-one-otp-DBgdQmDG.mjs.map → magmonium-one-otp-B1z8_ZHg.mjs.map} +1 -1
- package/fesm2022/{magmonium-one-password-jNzbCtyz.mjs → magmonium-one-password-huztGh8b.mjs} +2 -2
- package/fesm2022/{magmonium-one-password-jNzbCtyz.mjs.map → magmonium-one-password-huztGh8b.mjs.map} +1 -1
- package/fesm2022/{magmonium-one-toggle-DEkZeqYY.mjs → magmonium-one-toggle-EpgW1Kg3.mjs} +2 -2
- package/fesm2022/{magmonium-one-toggle-DEkZeqYY.mjs.map → magmonium-one-toggle-EpgW1Kg3.mjs.map} +1 -1
- package/fesm2022/magmonium-one.mjs +1 -1
- package/package.json +1 -1
- package/types/magmonium-one.d.ts +1 -1
- package/fesm2022/magmonium-one-magmonium-one-BtEA90hr.mjs.map +0 -1
|
@@ -4897,7 +4897,13 @@ class ConfigComponent {
|
|
|
4897
4897
|
if (!config) {
|
|
4898
4898
|
return;
|
|
4899
4899
|
}
|
|
4900
|
-
|
|
4900
|
+
// Scalar inputs override the resolved config everywhere else. Apply the
|
|
4901
|
+
// same precedence to the host palette so its contrast and opposite values
|
|
4902
|
+
// cannot lag behind an explicit `color` input.
|
|
4903
|
+
const color = this.resolveComponentOverrides().color ??
|
|
4904
|
+
config.color ??
|
|
4905
|
+
this.defaultColor;
|
|
4906
|
+
this.pallet.set(applyColorsToElement(color, this.themeStore.color(), this.elementRef.nativeElement));
|
|
4901
4907
|
};
|
|
4902
4908
|
updateConfig = () => {
|
|
4903
4909
|
const currentName = untracked(() => this.name());
|
|
@@ -6468,7 +6474,7 @@ class SectionFormItemComponent extends ConfigComponent {
|
|
|
6468
6474
|
break;
|
|
6469
6475
|
}
|
|
6470
6476
|
case InputType.TOGGLE: {
|
|
6471
|
-
const { ToggleInputComponent } = await import('./magmonium-one-toggle-
|
|
6477
|
+
const { ToggleInputComponent } = await import('./magmonium-one-toggle-EpgW1Kg3.mjs');
|
|
6472
6478
|
this.createDynamicComponent(seq, ToggleInputComponent, [], true);
|
|
6473
6479
|
break;
|
|
6474
6480
|
}
|
|
@@ -6480,12 +6486,12 @@ class SectionFormItemComponent extends ConfigComponent {
|
|
|
6480
6486
|
break;
|
|
6481
6487
|
}
|
|
6482
6488
|
case InputType.PASSWORD: {
|
|
6483
|
-
const { PasswordInputComponent } = await import('./magmonium-one-password-
|
|
6489
|
+
const { PasswordInputComponent } = await import('./magmonium-one-password-huztGh8b.mjs');
|
|
6484
6490
|
this.createDynamicComponent(seq, PasswordInputComponent);
|
|
6485
6491
|
break;
|
|
6486
6492
|
}
|
|
6487
6493
|
case InputType.OTP: {
|
|
6488
|
-
const { OtpInputComponent } = await import('./magmonium-one-otp-
|
|
6494
|
+
const { OtpInputComponent } = await import('./magmonium-one-otp-B1z8_ZHg.mjs');
|
|
6489
6495
|
this.createDynamicComponent(seq, OtpInputComponent);
|
|
6490
6496
|
break;
|
|
6491
6497
|
}
|
|
@@ -9081,12 +9087,7 @@ class TextOutputComponent extends ConfigComponent {
|
|
|
9081
9087
|
params = input(undefined, ...(ngDevMode ? [{ debugName: "params" }] : /* istanbul ignore next */ []));
|
|
9082
9088
|
resolvedAlign = computed(() => this.align() ?? this.config()?.align ?? 'left', ...(ngDevMode ? [{ debugName: "resolvedAlign" }] : /* istanbul ignore next */ []));
|
|
9083
9089
|
resolvedVariant = computed(() => this.variant() ?? this.config()?.variant, ...(ngDevMode ? [{ debugName: "resolvedVariant" }] : /* istanbul ignore next */ []));
|
|
9084
|
-
|
|
9085
|
-
const color = this.color() ?? this.config()?.color;
|
|
9086
|
-
if (!color)
|
|
9087
|
-
return null;
|
|
9088
|
-
return resolvePallet(color, this.themeStore.color()).color;
|
|
9089
|
-
}, ...(ngDevMode ? [{ debugName: "resolvedColor" }] : /* istanbul ignore next */ []));
|
|
9090
|
+
resolvedColorPallet = computed(() => resolvePallet(this.color() ?? this.config()?.color ?? this.defaultColor, this.themeStore.color()), ...(ngDevMode ? [{ debugName: "resolvedColorPallet" }] : /* istanbul ignore next */ []));
|
|
9090
9091
|
resolveComponentOverrides() {
|
|
9091
9092
|
const overrides = {};
|
|
9092
9093
|
const align = this.align();
|
|
@@ -9115,18 +9116,32 @@ class TextOutputComponent extends ConfigComponent {
|
|
|
9115
9116
|
: this.translateService.toSafeHtml(label);
|
|
9116
9117
|
}, ...(ngDevMode ? [{ debugName: "html" }] : /* istanbul ignore next */ []));
|
|
9117
9118
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: TextOutputComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
9118
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.9", type: TextOutputComponent, isStandalone: true, selector: "m-text-output", inputs: { config: { classPropertyName: "config", publicName: "config", isSignal: true, isRequired: false, transformFunction: null }, align: { classPropertyName: "align", publicName: "align", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, color: { classPropertyName: "color", publicName: "color", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, noTranslate: { classPropertyName: "noTranslate", publicName: "noTranslate", isSignal: true, isRequired: false, transformFunction: null }, params: { classPropertyName: "params", publicName: "params", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { config: "configChange" }, host: { properties: { "class.is-design-mode": "isDesignMode", "class.align-left": "resolvedAlign() === \"left\"", "class.align-right": "resolvedAlign() === \"right\"", "class.align-center": "resolvedAlign() === \"center\"", "class.variant-footer": "resolvedVariant() === \"footer\"", "style.--m-text-output-color": "
|
|
9119
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.2.9", type: TextOutputComponent, isStandalone: true, selector: "m-text-output", inputs: { config: { classPropertyName: "config", publicName: "config", isSignal: true, isRequired: false, transformFunction: null }, align: { classPropertyName: "align", publicName: "align", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null }, color: { classPropertyName: "color", publicName: "color", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, noTranslate: { classPropertyName: "noTranslate", publicName: "noTranslate", isSignal: true, isRequired: false, transformFunction: null }, params: { classPropertyName: "params", publicName: "params", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { config: "configChange" }, host: { properties: { "class.is-design-mode": "isDesignMode", "class.align-left": "resolvedAlign() === \"left\"", "class.align-right": "resolvedAlign() === \"right\"", "class.align-center": "resolvedAlign() === \"center\"", "class.variant-footer": "resolvedVariant() === \"footer\"", "style.--m-text-output-color": "resolvedColorPallet().color", "style.--m-text-output-color-contrast": "resolvedColorPallet().contrastColor", "style.--m-text-output-color-opposite": "resolvedColorPallet().oppositeColor" }, classAttribute: "m-text-output-host" }, usesInheritance: true, ngImport: i0, template: `
|
|
9120
|
+
<div
|
|
9121
|
+
class="m-text-output"
|
|
9122
|
+
[style.color]="resolvedColorPallet().color"
|
|
9123
|
+
[innerHTML]="html()"
|
|
9124
|
+
></div>
|
|
9125
|
+
`, isInline: true, 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(.is-design-mode){display:block;min-width:1em;min-height:1em}:host(.align-left) .m-text-output{text-align:left}:host(.align-center) .m-text-output{text-align:center}:host(.align-right) .m-text-output{text-align:right}:host{font-size:inherit}:host(.variant-footer){display:block;font-size:.8em;margin-top:.25rem}:host(.variant-footer) .m-text-output{line-height:1.35}.m-text-output{color:var(--m-text-output-color, var(--m-text));font-size:inherit;line-height:1.5}.m-text-output>:first-child{margin-top:0}.m-text-output>:last-child{margin-bottom:0}.m-text-output p,.m-text-output ul,.m-text-output blockquote,.m-text-output h1,.m-text-output h2,.m-text-output h3,.m-text-output h4,.m-text-output h5,.m-text-output h6{margin:0 0 1rem}.m-text-output ul{padding-left:1.5rem;list-style-type:disc;list-style-position:outside}.m-text-output li{margin-bottom:.25rem}.m-text-output li:last-child{margin-bottom:0}.m-text-output a{color:var(--m-text-output-link-color, var(--m-mm));text-decoration:underline}.m-text-output a:hover{text-decoration:none}.m-text-output blockquote{padding-left:1rem;border-left:1px solid var(--m-border);color:var(--m-text-output-color, var(--m-text-secondary))}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
9119
9126
|
}
|
|
9120
9127
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: TextOutputComponent, decorators: [{
|
|
9121
9128
|
type: Component,
|
|
9122
|
-
args: [{ selector: 'm-text-output', imports: [], template: `
|
|
9129
|
+
args: [{ selector: 'm-text-output', imports: [], template: `
|
|
9130
|
+
<div
|
|
9131
|
+
class="m-text-output"
|
|
9132
|
+
[style.color]="resolvedColorPallet().color"
|
|
9133
|
+
[innerHTML]="html()"
|
|
9134
|
+
></div>
|
|
9135
|
+
`, changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
9123
9136
|
class: 'm-text-output-host',
|
|
9124
9137
|
'[class.is-design-mode]': 'isDesignMode',
|
|
9125
9138
|
'[class.align-left]': 'resolvedAlign() === "left"',
|
|
9126
9139
|
'[class.align-right]': 'resolvedAlign() === "right"',
|
|
9127
9140
|
'[class.align-center]': 'resolvedAlign() === "center"',
|
|
9128
9141
|
'[class.variant-footer]': 'resolvedVariant() === "footer"',
|
|
9129
|
-
'[style.--m-text-output-color]': '
|
|
9142
|
+
'[style.--m-text-output-color]': 'resolvedColorPallet().color',
|
|
9143
|
+
'[style.--m-text-output-color-contrast]': 'resolvedColorPallet().contrastColor',
|
|
9144
|
+
'[style.--m-text-output-color-opposite]': 'resolvedColorPallet().oppositeColor',
|
|
9130
9145
|
}, 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(.is-design-mode){display:block;min-width:1em;min-height:1em}:host(.align-left) .m-text-output{text-align:left}:host(.align-center) .m-text-output{text-align:center}:host(.align-right) .m-text-output{text-align:right}:host{font-size:inherit}:host(.variant-footer){display:block;font-size:.8em;margin-top:.25rem}:host(.variant-footer) .m-text-output{line-height:1.35}.m-text-output{color:var(--m-text-output-color, var(--m-text));font-size:inherit;line-height:1.5}.m-text-output>:first-child{margin-top:0}.m-text-output>:last-child{margin-bottom:0}.m-text-output p,.m-text-output ul,.m-text-output blockquote,.m-text-output h1,.m-text-output h2,.m-text-output h3,.m-text-output h4,.m-text-output h5,.m-text-output h6{margin:0 0 1rem}.m-text-output ul{padding-left:1.5rem;list-style-type:disc;list-style-position:outside}.m-text-output li{margin-bottom:.25rem}.m-text-output li:last-child{margin-bottom:0}.m-text-output a{color:var(--m-text-output-link-color, var(--m-mm));text-decoration:underline}.m-text-output a:hover{text-decoration:none}.m-text-output blockquote{padding-left:1rem;border-left:1px solid var(--m-border);color:var(--m-text-output-color, var(--m-text-secondary))}\n"] }]
|
|
9131
9146
|
}], propDecorators: { config: [{ type: i0.Input, args: [{ isSignal: true, alias: "config", required: false }] }, { type: i0.Output, args: ["configChange"] }], align: [{ type: i0.Input, args: [{ isSignal: true, alias: "align", required: false }] }], variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], color: [{ type: i0.Input, args: [{ isSignal: true, alias: "color", required: false }] }], label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }], noTranslate: [{ type: i0.Input, args: [{ isSignal: true, alias: "noTranslate", required: false }] }], params: [{ type: i0.Input, args: [{ isSignal: true, alias: "params", required: false }] }] } });
|
|
9132
9147
|
|
|
@@ -17593,7 +17608,7 @@ class WrapperInputComponent extends ConfigComponent {
|
|
|
17593
17608
|
break;
|
|
17594
17609
|
}
|
|
17595
17610
|
case InputType.TOGGLE: {
|
|
17596
|
-
const { ToggleInputComponent } = await import('./magmonium-one-toggle-
|
|
17611
|
+
const { ToggleInputComponent } = await import('./magmonium-one-toggle-EpgW1Kg3.mjs');
|
|
17597
17612
|
this.createDynamicComponent(seq, ToggleInputComponent, [], true);
|
|
17598
17613
|
break;
|
|
17599
17614
|
}
|
|
@@ -17605,12 +17620,12 @@ class WrapperInputComponent extends ConfigComponent {
|
|
|
17605
17620
|
break;
|
|
17606
17621
|
}
|
|
17607
17622
|
case InputType.PASSWORD: {
|
|
17608
|
-
const { PasswordInputComponent } = await import('./magmonium-one-password-
|
|
17623
|
+
const { PasswordInputComponent } = await import('./magmonium-one-password-huztGh8b.mjs');
|
|
17609
17624
|
this.createDynamicComponent(seq, PasswordInputComponent);
|
|
17610
17625
|
break;
|
|
17611
17626
|
}
|
|
17612
17627
|
case InputType.OTP: {
|
|
17613
|
-
const { OtpInputComponent } = await import('./magmonium-one-otp-
|
|
17628
|
+
const { OtpInputComponent } = await import('./magmonium-one-otp-B1z8_ZHg.mjs');
|
|
17614
17629
|
this.createDynamicComponent(seq, OtpInputComponent);
|
|
17615
17630
|
break;
|
|
17616
17631
|
}
|
|
@@ -31543,4 +31558,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
31543
31558
|
*/
|
|
31544
31559
|
|
|
31545
31560
|
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 };
|
|
31546
|
-
//# sourceMappingURL=magmonium-one-magmonium-one-
|
|
31561
|
+
//# sourceMappingURL=magmonium-one-magmonium-one-Cp9Esj3q.mjs.map
|