@magmonium/one 0.1.2 → 0.1.4
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-Cq8nOJ5L.mjs → magmonium-one-magmonium-one-B2oNgw3v.mjs} +11 -9
- package/fesm2022/magmonium-one-magmonium-one-B2oNgw3v.mjs.map +1 -0
- package/fesm2022/{magmonium-one-otp-B_VqwsDr.mjs → magmonium-one-otp-BLAvWk9U.mjs} +2 -2
- package/fesm2022/{magmonium-one-otp-B_VqwsDr.mjs.map → magmonium-one-otp-BLAvWk9U.mjs.map} +1 -1
- package/fesm2022/{magmonium-one-password-Dp_VQTEj.mjs → magmonium-one-password-D_SMzA9J.mjs} +2 -2
- package/fesm2022/{magmonium-one-password-Dp_VQTEj.mjs.map → magmonium-one-password-D_SMzA9J.mjs.map} +1 -1
- package/fesm2022/{magmonium-one-toggle-YvsBxdtA.mjs → magmonium-one-toggle-BEGdyoko.mjs} +2 -2
- package/fesm2022/{magmonium-one-toggle-YvsBxdtA.mjs.map → magmonium-one-toggle-BEGdyoko.mjs.map} +1 -1
- package/fesm2022/magmonium-one.mjs +1 -1
- package/package.json +1 -1
- package/types/magmonium-one.d.ts +108 -19
- package/fesm2022/magmonium-one-magmonium-one-Cq8nOJ5L.mjs.map +0 -1
|
@@ -3343,7 +3343,9 @@ const toTrailItem = (navId, navMap, anchor) => {
|
|
|
3343
3343
|
address: renderAddress(navId, navMap, anchor),
|
|
3344
3344
|
};
|
|
3345
3345
|
};
|
|
3346
|
-
const buildNavMenus = (navId, navMap, anchor) => (navMap[navId]?.children ?? [])
|
|
3346
|
+
const buildNavMenus = (navId, navMap, anchor) => (navMap[navId]?.children ?? [])
|
|
3347
|
+
.filter((childId) => navMap[childId]?.title)
|
|
3348
|
+
.map((childId) => toTrailItem(childId, navMap, anchor));
|
|
3347
3349
|
/**
|
|
3348
3350
|
* Merges a widget's emitted trail over the derived one, matching by depth.
|
|
3349
3351
|
* With a single keyspace there is nothing to translate — an emitted entry is
|
|
@@ -6429,7 +6431,7 @@ class SectionFormItemComponent extends ConfigComponent {
|
|
|
6429
6431
|
break;
|
|
6430
6432
|
}
|
|
6431
6433
|
case InputType.TOGGLE: {
|
|
6432
|
-
const { ToggleInputComponent } = await import('./magmonium-one-toggle-
|
|
6434
|
+
const { ToggleInputComponent } = await import('./magmonium-one-toggle-BEGdyoko.mjs');
|
|
6433
6435
|
this.createDynamicComponent(seq, ToggleInputComponent, [], true);
|
|
6434
6436
|
break;
|
|
6435
6437
|
}
|
|
@@ -6441,12 +6443,12 @@ class SectionFormItemComponent extends ConfigComponent {
|
|
|
6441
6443
|
break;
|
|
6442
6444
|
}
|
|
6443
6445
|
case InputType.PASSWORD: {
|
|
6444
|
-
const { PasswordInputComponent } = await import('./magmonium-one-password-
|
|
6446
|
+
const { PasswordInputComponent } = await import('./magmonium-one-password-D_SMzA9J.mjs');
|
|
6445
6447
|
this.createDynamicComponent(seq, PasswordInputComponent);
|
|
6446
6448
|
break;
|
|
6447
6449
|
}
|
|
6448
6450
|
case InputType.OTP: {
|
|
6449
|
-
const { OtpInputComponent } = await import('./magmonium-one-otp-
|
|
6451
|
+
const { OtpInputComponent } = await import('./magmonium-one-otp-BLAvWk9U.mjs');
|
|
6450
6452
|
this.createDynamicComponent(seq, OtpInputComponent);
|
|
6451
6453
|
break;
|
|
6452
6454
|
}
|
|
@@ -17509,7 +17511,7 @@ class WrapperInputComponent extends ConfigComponent {
|
|
|
17509
17511
|
break;
|
|
17510
17512
|
}
|
|
17511
17513
|
case InputType.TOGGLE: {
|
|
17512
|
-
const { ToggleInputComponent } = await import('./magmonium-one-toggle-
|
|
17514
|
+
const { ToggleInputComponent } = await import('./magmonium-one-toggle-BEGdyoko.mjs');
|
|
17513
17515
|
this.createDynamicComponent(seq, ToggleInputComponent, [], true);
|
|
17514
17516
|
break;
|
|
17515
17517
|
}
|
|
@@ -17521,12 +17523,12 @@ class WrapperInputComponent extends ConfigComponent {
|
|
|
17521
17523
|
break;
|
|
17522
17524
|
}
|
|
17523
17525
|
case InputType.PASSWORD: {
|
|
17524
|
-
const { PasswordInputComponent } = await import('./magmonium-one-password-
|
|
17526
|
+
const { PasswordInputComponent } = await import('./magmonium-one-password-D_SMzA9J.mjs');
|
|
17525
17527
|
this.createDynamicComponent(seq, PasswordInputComponent);
|
|
17526
17528
|
break;
|
|
17527
17529
|
}
|
|
17528
17530
|
case InputType.OTP: {
|
|
17529
|
-
const { OtpInputComponent } = await import('./magmonium-one-otp-
|
|
17531
|
+
const { OtpInputComponent } = await import('./magmonium-one-otp-BLAvWk9U.mjs');
|
|
17530
17532
|
this.createDynamicComponent(seq, OtpInputComponent);
|
|
17531
17533
|
break;
|
|
17532
17534
|
}
|
|
@@ -31289,5 +31291,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
31289
31291
|
* Generated bundle index. Do not edit.
|
|
31290
31292
|
*/
|
|
31291
31293
|
|
|
31292
|
-
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,
|
|
31293
|
-
//# sourceMappingURL=magmonium-one-magmonium-one-
|
|
31294
|
+
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, SectionHeaderComponent 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, RemoteLoaderService as bA, ResizeElementComponent as bB, RouteContainer as bC, RowComponent as bD, SEARCH_QUERY as bE, SEARCH_RESULTS_EVENT as bF, SECTION_ACCORDION_GROUP as bG, SECTION_FORM_CONTEXT as bH, SHARED_ICONS as bI, SIZE_CONTEXT as bJ, ScoreComponent as bK, ScrollComponent as bL, ScrollService as bM, SearchPanelComponent as bN, SearchStore as bO, SearchUserPanelComponent as bP, SectionAccordionDirective as bQ, SectionAccordionGroupDirective as bR, SectionBackComponent as bS, SectionBadgesComponent as bT, SectionButtonGroupComponent as bU, SectionCardComponent as bV, SectionComponent as bW, SectionFilterComponent as bX, SectionFooterComponent as bY, SectionFormComponent as bZ, SectionFormItemComponent as b_, NotificationStore as ba, NotificationType as bb, NotificationWidgetComponent as bc, ONE_ASSET_BASE_URL as bd, OPTIONS_SOURCE as be, OneApp as bf, OptionsSourceDirective as bg, OverlayBodyComponent as bh, OverlayRef as bi, OverlayService as bj, PLATFORM_BUTTON_NAV_IDS as bk, PLATFORM_EXTENSIBLE_NAV_IDS as bl, PLATFORM_NAV_MAP as bm, PLATFORM_ROOT_CHILDREN as bn, PaginationComponent as bo, PanelComponent as bp, PlaygroundComponent as bq, PositionDirective as br, PwaInstallComponent as bs, ROOT_NAV$1 as bt, RadioGroupComponent as bu, RadioInputComponent as bv, RangeInputComponent as bw, RatingInputComponent as bx, ReactiveElementComponent as by, RemoteComponent as bz, ButtonComponent as c, applyColorsToElement as c$, SectionHeroComponent as c0, SectionSearchComponent as c1, SectionStepperComponent as c2, SectionTabsComponent as c3, SectionToggleComponent as c4, SectionToggleItemDirective as c5, SelectableCardInputComponent as c6, SelectorDirective as c7, SettingsSearchBarComponent as c8, SettingsSearchService as c9, TimelineComponent as cA, ToggleButtonComponent as cB, ToggleInputComponent as cC, ToggleRadioInputComponent as cD, ToolTipDirective as cE, TooltipComponent as cF, TranslateService as cG, TreeGridComponent as cH, URL_SEP as cI, USER_STORE_REF as cJ, USER_TAB_MAP as cK, UlComponent as cL, UniverseComponent as cM, UserApiService as cN, UserAvatarComponent as cO, UserComponent as cP, UserNavComponent as cQ, UserSettingsComponent as cR, UserStore as cS, WC_ROUTE_CHANGED_EVENT as cT, WC_SEARCH_GROUPS as cU, WIN_USER_TAB_HOOK as cV, WIN_USER_TAB_KEY as cW, WatermarkComponent as cX, WcRouterStore as cY, WrapperInputComponent as cZ, anchorNavId as c_, ShapeComponent as ca, SharedStoreRegistry as cb, SidePanelDirective as cc, Size as cd, SocketStore as ce, SortComponent as cf, StepComponent as cg, StepperComponent as ch, StepsComponent as ci, StorageService as cj, StrokeLinecap as ck, StrokeLinejoin as cl, SummaryComponent as cm, SvgGeneratorComponent as cn, SvgGeneratorService as co, SvgService as cp, TOTAL_COLUMNS as cq, TRANSLATION_SOURCE as cr, TableComponent as cs, TechnicalMeterComponent as ct, TextInputComponent as cu, TextareaInputComponent as cv, ThemeComponent as cw, ThemeService as cx, ThemeStore as cy, TimeAgoPipe as cz, APP_CONTEXT_REF as d, maxValidation as d$, bootstrapMagApp as d0, bootstrapPwaInstall as d1, buildWcBaseUrl as d2, calculateLuminance as d3, calculateRanks as d4, cellText as d5, checkFilterCondition as d6, childNavId as d7, classListSignal as d8, coerceSize as d9, initialNotificationState as dA, initialState$2 as dB, initials as dC, injectAuthenticate as dD, injectInstallApp as dE, injectParentSize as dF, injectScrollSticky as dG, isButtonName as dH, isCancelledComputed as dI, isExtensiblePlatformNavId as dJ, isJson as dK, isLoadingComputed as dL, isLocalhost as dM, isPlatformNavId as dN, isSize as dO, isTierPreview as dP, isUrlLocalhost as dQ, isValidNavId as dR, isValidNavSegment as dS, isWebComponent as dT, linkToId as dU, linkToNav as dV, loadingActions as dW, mInterceptor as dX, manualValidation as dY, matchFieldValidation as dZ, maxLengthValidation as d_, createMap as da, createPlatformNavMap as db, deriveAvatarGradient as dc, deriveContrastColor as dd, deriveOppositeColor as de, derivePropertyName as df, emailValidation as dg, evaluate as dh, evaluateBool as di, flattenTreeGridRows as dj, formatBadgeCount as dk, fullName as dl, generateClipPath as dm, generateTransform as dn, getClassList as dp, getProperty as dq, getScrollParent as dr, getTierFromPreviewPath as ds, getTreeGridRow as dt, getUniqueId as du, getValue as dv, hasErrorComputed as dw, hexToRgb as dx, hslToRgb$1 as dy, initMagmoniumApp as dz, ASSET_BASE_URL as e, mergePlatformNav as e0, mergeUnique as e1, mergeUniqueBy as e2, mergeUniqueWith as e3, minAgeValidation as e4, minLengthValidation as e5, minValidation as e6, miniMarkToHtml as e7, navIdChain as e8, navIdFor as e9, renderAddress as eA, requiredValidation as eB, resolveConfigAsset as eC, resolveIconSize as eD, resolvePallet as eE, resolvePatternRules as eF, resolveSize as eG, rgbToHex as eH, rgbToHsl as eI, rowHasChildren as eJ, samePatterns as eK, segmentsToNavId as eL, setProperty as eM, setTreeGridChildren as eN, settingsWidgets as eO, shouldShowBadge as eP, splitNavId as eQ, stringToColor as eR, toAttrBool as eS, toAttrNumber as eT, toCssLength as eU, toHostNavId as eV, toLength$1 as eW, toLocalNavId as eX, toggleTreeGridRow as eY, unfetchedPlatformNav as eZ, urlValidation as e_, navIdSegment as ea, navIdToRoutePath as eb, navIdToSegments as ec, navToId as ed, parentNavId as ee, parseAddress as ef, parseColor as eg, parsePatternNames as eh, patternValidation as ei, patternsValidation as ej, platformNavWidgets as ek, privateGuard as el, processImageToSvg as em, provideAppContext as en, provideMagAppConfig as eo, provideMagWcConfig as ep, provideMagWcRoutes as eq, provideModalComponents as er, provideMurlUrlSerializer as es, provideNavWidgets as et, providePlatformNavWidgets as eu, provideSearch as ev, provideSizeContext as ew, provideUserTabs as ex, publicGuard as ey, readFieldPatterns as ez, AccordionBodyDirective as f, 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 };
|
|
31295
|
+
//# sourceMappingURL=magmonium-one-magmonium-one-B2oNgw3v.mjs.map
|