@magmonium/one 0.0.11 → 0.0.12
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-8HzitX0z.mjs → magmonium-one-magmonium-one-BGr9hr10.mjs} +83 -40
- package/fesm2022/{magmonium-one-magmonium-one-8HzitX0z.mjs.map → magmonium-one-magmonium-one-BGr9hr10.mjs.map} +1 -1
- package/fesm2022/{magmonium-one-otp-DetrBKAU.mjs → magmonium-one-otp-DuzxXxaV.mjs} +2 -2
- package/fesm2022/{magmonium-one-otp-DetrBKAU.mjs.map → magmonium-one-otp-DuzxXxaV.mjs.map} +1 -1
- package/fesm2022/{magmonium-one-password-GsYbtXWv.mjs → magmonium-one-password-D3Y-fAu1.mjs} +2 -2
- package/fesm2022/{magmonium-one-password-GsYbtXWv.mjs.map → magmonium-one-password-D3Y-fAu1.mjs.map} +1 -1
- package/fesm2022/{magmonium-one-toggle-OQMCej2l.mjs → magmonium-one-toggle-B2na96RD.mjs} +2 -2
- package/fesm2022/{magmonium-one-toggle-OQMCej2l.mjs.map → magmonium-one-toggle-B2na96RD.mjs.map} +1 -1
- package/fesm2022/magmonium-one.mjs +1 -1
- package/package.json +1 -1
- package/types/magmonium-one.d.ts +12 -0
|
@@ -3576,6 +3576,7 @@ const initialState$2 = {
|
|
|
3576
3576
|
appLink: undefined,
|
|
3577
3577
|
appNavId: undefined,
|
|
3578
3578
|
navOpenedByUser: false,
|
|
3579
|
+
keepPanelOnPathChange: false,
|
|
3579
3580
|
panelPushed: false,
|
|
3580
3581
|
navScrolledDown: false,
|
|
3581
3582
|
remoteWidgets: {},
|
|
@@ -3717,14 +3718,27 @@ const NavStore = signalStore({ providedIn: 'root' }, withState(initialState$2),
|
|
|
3717
3718
|
* Opening a panel from closed pushes one history entry; moving within an
|
|
3718
3719
|
* open panel replaces. Back therefore closes the panel and lands on the
|
|
3719
3720
|
* page rather than stepping out one Murl at a time (ADR 0013).
|
|
3721
|
+
*
|
|
3722
|
+
* A Url chosen while the panel is already open still navigates the page,
|
|
3723
|
+
* but keeps the panel so the menu shows that route's children. The same
|
|
3724
|
+
* Url with the panel closed only navigates — the page is the destination.
|
|
3720
3725
|
*/
|
|
3721
3726
|
const goToNav = (navId, params) => {
|
|
3722
3727
|
const wasOpen = untracked(() => store.hasMurl());
|
|
3728
|
+
const panelOpen = untracked(() => store.isNavOpened());
|
|
3723
3729
|
const address = addressFor(navId, params);
|
|
3724
3730
|
const willOpen = untracked(() => splitNavId(navId, store.navMap()).murl.length > 0);
|
|
3725
3731
|
if (willOpen && !wasOpen) {
|
|
3726
3732
|
patchState(store, { panelPushed: true });
|
|
3727
3733
|
}
|
|
3734
|
+
// Panel open + Url: hold the icon-opened flag across the path settle so
|
|
3735
|
+
// syncFromRouter does not treat the page change as closing the menu.
|
|
3736
|
+
if (panelOpen && !willOpen) {
|
|
3737
|
+
patchState(store, {
|
|
3738
|
+
navOpenedByUser: true,
|
|
3739
|
+
keepPanelOnPathChange: true,
|
|
3740
|
+
});
|
|
3741
|
+
}
|
|
3728
3742
|
router.navigateByUrl(address, { replaceUrl: wasOpen && willOpen });
|
|
3729
3743
|
};
|
|
3730
3744
|
/** Closes the panel, popping our own entry when we are the one who pushed it. */
|
|
@@ -3758,13 +3772,16 @@ const NavStore = signalStore({ providedIn: 'root' }, withState(initialState$2),
|
|
|
3758
3772
|
const path = router.url.split(MURL_SEP)[0].split('?')[0];
|
|
3759
3773
|
untracked(() => {
|
|
3760
3774
|
const pathChanged = path !== store.path();
|
|
3775
|
+
const keepPanel = store.keepPanelOnPathChange();
|
|
3761
3776
|
patchState(store, {
|
|
3762
3777
|
path,
|
|
3763
3778
|
routeNavId,
|
|
3764
3779
|
murl,
|
|
3765
|
-
//
|
|
3766
|
-
//
|
|
3767
|
-
|
|
3780
|
+
// Address changes clear the icon-opened flag (ADR 0013), except
|
|
3781
|
+
// a Url chosen while the panel was already open — that keep is
|
|
3782
|
+
// one-shot via `keepPanelOnPathChange`.
|
|
3783
|
+
navOpenedByUser: pathChanged && !keepPanel ? false : store.navOpenedByUser(),
|
|
3784
|
+
keepPanelOnPathChange: false,
|
|
3768
3785
|
navScrolledDown: pathChanged ? false : store.navScrolledDown(),
|
|
3769
3786
|
panelPushed: murl.length ? store.panelPushed() : false,
|
|
3770
3787
|
});
|
|
@@ -14886,7 +14903,7 @@ class WrapperInputComponent extends ConfigComponent {
|
|
|
14886
14903
|
break;
|
|
14887
14904
|
}
|
|
14888
14905
|
case InputType.TOGGLE: {
|
|
14889
|
-
const { ToggleInputComponent } = await import('./magmonium-one-toggle-
|
|
14906
|
+
const { ToggleInputComponent } = await import('./magmonium-one-toggle-B2na96RD.mjs');
|
|
14890
14907
|
this.createDynamicComponent(seq, ToggleInputComponent, [], true);
|
|
14891
14908
|
break;
|
|
14892
14909
|
}
|
|
@@ -14898,12 +14915,12 @@ class WrapperInputComponent extends ConfigComponent {
|
|
|
14898
14915
|
break;
|
|
14899
14916
|
}
|
|
14900
14917
|
case InputType.PASSWORD: {
|
|
14901
|
-
const { PasswordInputComponent } = await import('./magmonium-one-password-
|
|
14918
|
+
const { PasswordInputComponent } = await import('./magmonium-one-password-D3Y-fAu1.mjs');
|
|
14902
14919
|
this.createDynamicComponent(seq, PasswordInputComponent);
|
|
14903
14920
|
break;
|
|
14904
14921
|
}
|
|
14905
14922
|
case InputType.OTP: {
|
|
14906
|
-
const { OtpInputComponent } = await import('./magmonium-one-otp-
|
|
14923
|
+
const { OtpInputComponent } = await import('./magmonium-one-otp-DuzxXxaV.mjs');
|
|
14907
14924
|
this.createDynamicComponent(seq, OtpInputComponent);
|
|
14908
14925
|
break;
|
|
14909
14926
|
}
|
|
@@ -17386,7 +17403,7 @@ class SectionFormItemComponent extends ConfigComponent {
|
|
|
17386
17403
|
break;
|
|
17387
17404
|
}
|
|
17388
17405
|
case InputType.TOGGLE: {
|
|
17389
|
-
const { ToggleInputComponent } = await import('./magmonium-one-toggle-
|
|
17406
|
+
const { ToggleInputComponent } = await import('./magmonium-one-toggle-B2na96RD.mjs');
|
|
17390
17407
|
this.createDynamicComponent(seq, ToggleInputComponent, [], true);
|
|
17391
17408
|
break;
|
|
17392
17409
|
}
|
|
@@ -17398,12 +17415,12 @@ class SectionFormItemComponent extends ConfigComponent {
|
|
|
17398
17415
|
break;
|
|
17399
17416
|
}
|
|
17400
17417
|
case InputType.PASSWORD: {
|
|
17401
|
-
const { PasswordInputComponent } = await import('./magmonium-one-password-
|
|
17418
|
+
const { PasswordInputComponent } = await import('./magmonium-one-password-D3Y-fAu1.mjs');
|
|
17402
17419
|
this.createDynamicComponent(seq, PasswordInputComponent);
|
|
17403
17420
|
break;
|
|
17404
17421
|
}
|
|
17405
17422
|
case InputType.OTP: {
|
|
17406
|
-
const { OtpInputComponent } = await import('./magmonium-one-otp-
|
|
17423
|
+
const { OtpInputComponent } = await import('./magmonium-one-otp-DuzxXxaV.mjs');
|
|
17407
17424
|
this.createDynamicComponent(seq, OtpInputComponent);
|
|
17408
17425
|
break;
|
|
17409
17426
|
}
|
|
@@ -25036,52 +25053,72 @@ class NavMenuComponent {
|
|
|
25036
25053
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.9", type: NavMenuComponent, isStandalone: true, selector: "m-nav-menu", inputs: { items: { classPropertyName: "items", publicName: "items", isSignal: true, isRequired: false, transformFunction: null }, baseUrl: { classPropertyName: "baseUrl", publicName: "baseUrl", isSignal: true, isRequired: false, transformFunction: null }, filterBySearch: { classPropertyName: "filterBySearch", publicName: "filterBySearch", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
|
|
25037
25054
|
<ng-template #menuTemplate let-item let-index="index">
|
|
25038
25055
|
<div class="nav-menu__item">
|
|
25039
|
-
|
|
25040
|
-
|
|
25041
|
-
|
|
25042
|
-
|
|
25043
|
-
|
|
25044
|
-
|
|
25045
|
-
|
|
25046
|
-
</
|
|
25047
|
-
|
|
25048
|
-
|
|
25049
|
-
|
|
25056
|
+
@if (item.nav; as nav) {
|
|
25057
|
+
<!-- Icon and label share one NavRef so a click on either reaches the
|
|
25058
|
+
same place — open menu keeps the panel on a Url; closed navigates. -->
|
|
25059
|
+
<a [mRef]="nav" mRefLinkActive="active" class="nav-menu__link">
|
|
25060
|
+
<span class="nav-menu__icon">
|
|
25061
|
+
<m-icon [name]="item.icon || 'menu'" [baseUrl]="baseUrl()" />
|
|
25062
|
+
</span>
|
|
25063
|
+
<span class="nav-menu__label">{{ item.label | translate }}</span>
|
|
25064
|
+
</a>
|
|
25065
|
+
} @else if (item.href; as href) {
|
|
25066
|
+
<a [href]="href" class="nav-menu__link">
|
|
25067
|
+
<span class="nav-menu__icon">
|
|
25068
|
+
<m-icon [name]="item.icon || 'menu'" [baseUrl]="baseUrl()" />
|
|
25069
|
+
</span>
|
|
25070
|
+
<span class="nav-menu__label">{{ item.label | translate }}</span>
|
|
25071
|
+
</a>
|
|
25072
|
+
} @else {
|
|
25073
|
+
<span class="nav-menu__icon">
|
|
25074
|
+
<m-icon [name]="item.icon || 'menu'" [baseUrl]="baseUrl()" />
|
|
25075
|
+
</span>
|
|
25076
|
+
<span class="nav-menu__label">
|
|
25050
25077
|
<span class="nav-menu__text">{{ item.label | translate }}</span>
|
|
25051
|
-
|
|
25052
|
-
|
|
25078
|
+
</span>
|
|
25079
|
+
}
|
|
25053
25080
|
</div>
|
|
25054
25081
|
</ng-template>
|
|
25055
25082
|
<div class="nav-menu">
|
|
25056
25083
|
<m-ul [items]="navList()" [template]="menuTemplate" />
|
|
25057
25084
|
</div>
|
|
25058
|
-
`, 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{display:block;width:100%}.nav-menu{padding:0;margin:0}.nav-menu ul{display:flex;flex-direction:column;gap:0;padding:0;margin:0}.nav-menu li{padding:0;list-style:none;width:100%;border-bottom:1px solid rgba(0,0,0,.02)}.nav-menu li:last-child{border-bottom:none}.nav-menu__item{display:flex;align-items:center;gap:.75rem;padding:.625rem 1rem;border-radius:0;transition:all .15s cubic-bezier(.4,0,.2,1);cursor:pointer;width:100%;
|
|
25085
|
+
`, 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{display:block;width:100%}.nav-menu{padding:0;margin:0}.nav-menu ul{display:flex;flex-direction:column;gap:0;padding:0;margin:0}.nav-menu li{padding:0;list-style:none;width:100%;border-bottom:1px solid rgba(0,0,0,.02)}.nav-menu li:last-child{border-bottom:none}.nav-menu__item{display:flex;align-items:center;gap:.75rem;width:100%;position:relative;color:var(--m-text-secondary);background:transparent}.nav-menu__item:not(:has(.nav-menu__link)){padding:.625rem 1rem}.nav-menu__link{display:flex;align-items:center;gap:.75rem;padding:.625rem 1rem;border-radius:0;transition:all .15s cubic-bezier(.4,0,.2,1);cursor:pointer;width:100%;color:inherit;text-decoration:none}.nav-menu__link:hover{background:#00000008;color:var(--m-text)}.nav-menu__link:hover .nav-menu__icon{color:var(--m-text)}.nav-menu__link:hover .nav-menu__label{color:var(--m-text);font-weight:600}.nav-menu__icon{display:flex;align-items:center;justify-content:center;color:var(--m-text-tertiary);transition:color .15s ease;width:1.15rem;height:1.15rem}.nav-menu__icon .m-icon{display:flex;align-items:center}.nav-menu__label{flex:1;display:block;width:100%;font-size:.8125rem;font-weight:500;letter-spacing:.01em;color:inherit;text-decoration:none}.nav-menu__item:has(.active){background:linear-gradient(90deg,color-mix(in srgb,var(--m-mm) 6%,transparent) 0%,color-mix(in srgb,var(--m-mm) 2%,transparent) 60%,transparent 100%);color:var(--m-mm);border-radius:0}.nav-menu__item:has(.active):after{content:\"\";position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,rgba(255,255,255,.3) 0%,rgba(255,255,255,.05) 50%,transparent 100%);z-index:3}.nav-menu__item:has(.active) .nav-menu__icon{color:var(--m-mm);filter:drop-shadow(0 0 3px color-mix(in srgb,var(--m-mm) 20%,transparent))}.nav-menu__item:has(.active) .nav-menu__label{color:var(--m-mm);font-weight:700;letter-spacing:.015em}\n"], dependencies: [{ kind: "component", type: IconComponent, selector: "m-icon, m-one-icon", inputs: ["config", "name", "color", "one", "baseUrl", "remote"], outputs: ["configChange"] }, { kind: "directive", type: MRefDirective, selector: "[mRef]", inputs: ["mRef", "mRefLinkActive", "mRefToggle", "mRefParams"] }, { kind: "component", type: UlComponent, selector: "m-ul", inputs: ["items", "template"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
25059
25086
|
}
|
|
25060
25087
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: NavMenuComponent, decorators: [{
|
|
25061
25088
|
type: Component,
|
|
25062
25089
|
args: [{ selector: 'm-nav-menu', template: `
|
|
25063
25090
|
<ng-template #menuTemplate let-item let-index="index">
|
|
25064
25091
|
<div class="nav-menu__item">
|
|
25065
|
-
|
|
25066
|
-
|
|
25067
|
-
|
|
25068
|
-
|
|
25069
|
-
|
|
25070
|
-
|
|
25071
|
-
|
|
25072
|
-
</
|
|
25073
|
-
|
|
25074
|
-
|
|
25075
|
-
|
|
25092
|
+
@if (item.nav; as nav) {
|
|
25093
|
+
<!-- Icon and label share one NavRef so a click on either reaches the
|
|
25094
|
+
same place — open menu keeps the panel on a Url; closed navigates. -->
|
|
25095
|
+
<a [mRef]="nav" mRefLinkActive="active" class="nav-menu__link">
|
|
25096
|
+
<span class="nav-menu__icon">
|
|
25097
|
+
<m-icon [name]="item.icon || 'menu'" [baseUrl]="baseUrl()" />
|
|
25098
|
+
</span>
|
|
25099
|
+
<span class="nav-menu__label">{{ item.label | translate }}</span>
|
|
25100
|
+
</a>
|
|
25101
|
+
} @else if (item.href; as href) {
|
|
25102
|
+
<a [href]="href" class="nav-menu__link">
|
|
25103
|
+
<span class="nav-menu__icon">
|
|
25104
|
+
<m-icon [name]="item.icon || 'menu'" [baseUrl]="baseUrl()" />
|
|
25105
|
+
</span>
|
|
25106
|
+
<span class="nav-menu__label">{{ item.label | translate }}</span>
|
|
25107
|
+
</a>
|
|
25108
|
+
} @else {
|
|
25109
|
+
<span class="nav-menu__icon">
|
|
25110
|
+
<m-icon [name]="item.icon || 'menu'" [baseUrl]="baseUrl()" />
|
|
25111
|
+
</span>
|
|
25112
|
+
<span class="nav-menu__label">
|
|
25076
25113
|
<span class="nav-menu__text">{{ item.label | translate }}</span>
|
|
25077
|
-
|
|
25078
|
-
|
|
25114
|
+
</span>
|
|
25115
|
+
}
|
|
25079
25116
|
</div>
|
|
25080
25117
|
</ng-template>
|
|
25081
25118
|
<div class="nav-menu">
|
|
25082
25119
|
<m-ul [items]="navList()" [template]="menuTemplate" />
|
|
25083
25120
|
</div>
|
|
25084
|
-
`, changeDetection: ChangeDetectionStrategy.OnPush, imports: [IconComponent, MRefDirective, TranslatePipe, UlComponent], 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;width:100%}.nav-menu{padding:0;margin:0}.nav-menu ul{display:flex;flex-direction:column;gap:0;padding:0;margin:0}.nav-menu li{padding:0;list-style:none;width:100%;border-bottom:1px solid rgba(0,0,0,.02)}.nav-menu li:last-child{border-bottom:none}.nav-menu__item{display:flex;align-items:center;gap:.75rem;padding:.625rem 1rem;border-radius:0;transition:all .15s cubic-bezier(.4,0,.2,1);cursor:pointer;width:100%;
|
|
25121
|
+
`, changeDetection: ChangeDetectionStrategy.OnPush, imports: [IconComponent, MRefDirective, TranslatePipe, UlComponent], 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;width:100%}.nav-menu{padding:0;margin:0}.nav-menu ul{display:flex;flex-direction:column;gap:0;padding:0;margin:0}.nav-menu li{padding:0;list-style:none;width:100%;border-bottom:1px solid rgba(0,0,0,.02)}.nav-menu li:last-child{border-bottom:none}.nav-menu__item{display:flex;align-items:center;gap:.75rem;width:100%;position:relative;color:var(--m-text-secondary);background:transparent}.nav-menu__item:not(:has(.nav-menu__link)){padding:.625rem 1rem}.nav-menu__link{display:flex;align-items:center;gap:.75rem;padding:.625rem 1rem;border-radius:0;transition:all .15s cubic-bezier(.4,0,.2,1);cursor:pointer;width:100%;color:inherit;text-decoration:none}.nav-menu__link:hover{background:#00000008;color:var(--m-text)}.nav-menu__link:hover .nav-menu__icon{color:var(--m-text)}.nav-menu__link:hover .nav-menu__label{color:var(--m-text);font-weight:600}.nav-menu__icon{display:flex;align-items:center;justify-content:center;color:var(--m-text-tertiary);transition:color .15s ease;width:1.15rem;height:1.15rem}.nav-menu__icon .m-icon{display:flex;align-items:center}.nav-menu__label{flex:1;display:block;width:100%;font-size:.8125rem;font-weight:500;letter-spacing:.01em;color:inherit;text-decoration:none}.nav-menu__item:has(.active){background:linear-gradient(90deg,color-mix(in srgb,var(--m-mm) 6%,transparent) 0%,color-mix(in srgb,var(--m-mm) 2%,transparent) 60%,transparent 100%);color:var(--m-mm);border-radius:0}.nav-menu__item:has(.active):after{content:\"\";position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,rgba(255,255,255,.3) 0%,rgba(255,255,255,.05) 50%,transparent 100%);z-index:3}.nav-menu__item:has(.active) .nav-menu__icon{color:var(--m-mm);filter:drop-shadow(0 0 3px color-mix(in srgb,var(--m-mm) 20%,transparent))}.nav-menu__item:has(.active) .nav-menu__label{color:var(--m-mm);font-weight:700;letter-spacing:.015em}\n"] }]
|
|
25085
25122
|
}], propDecorators: { items: [{ type: i0.Input, args: [{ isSignal: true, alias: "items", required: false }] }], baseUrl: [{ type: i0.Input, args: [{ isSignal: true, alias: "baseUrl", required: false }] }], filterBySearch: [{ type: i0.Input, args: [{ isSignal: true, alias: "filterBySearch", required: false }] }] } });
|
|
25086
25123
|
|
|
25087
25124
|
class SettingsSearchBarComponent {
|
|
@@ -28083,10 +28120,16 @@ function provideMagAppConfig(options) {
|
|
|
28083
28120
|
new NavStore(),
|
|
28084
28121
|
},
|
|
28085
28122
|
{
|
|
28123
|
+
// Same shape as LOGIN_STORE / MODAL_STORE_REF: a standalone scaffold
|
|
28124
|
+
// has no host and the registry is empty until init runs, so the local
|
|
28125
|
+
// NavStore is the fallback. Falling through to `null` left every
|
|
28126
|
+
// `[mRef]` click a no-op — menu rows rendered (they inject NavStore)
|
|
28127
|
+
// but never navigated or showed as chosen (they inject NAV_STORE_REF).
|
|
28086
28128
|
provide: NAV_STORE_REF,
|
|
28087
|
-
useFactory: () => SharedStoreRegistry.getNavStore() ||
|
|
28129
|
+
useFactory: (localStore) => SharedStoreRegistry.getNavStore() ||
|
|
28088
28130
|
SharedStoreRegistry.getHostInjector()?.get(NAV_STORE_REF, null) ||
|
|
28089
|
-
|
|
28131
|
+
localStore,
|
|
28132
|
+
deps: [NavStore],
|
|
28090
28133
|
},
|
|
28091
28134
|
{
|
|
28092
28135
|
provide: MODAL_STORE_REF,
|
|
@@ -30547,4 +30590,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
30547
30590
|
*/
|
|
30548
30591
|
|
|
30549
30592
|
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, NAV_MAIN_BUTTONS 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 as aM, MStepComponent as aN, MURL_PARAM as aO, MURL_SEP as aP, ManifestEnrichmentService as aQ, MenuComponent as aR, ModalDirective as aS, ModalRef as aT, ModalStore as aU, MoneyPipe as aV, MultiRangeInputComponent as aW, MurlUrlSerializer as aX, NAV_DEFAULT_MURL as aY, NAV_DISPLAY_ORDER as aZ, NAV_ID_SEP 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, SectionFilterComponent as b$, NAV_SEGMENT_RE as b0, NAV_STORE_REF as b1, NAV_WC_COMPONENTS as b2, NAV_WIDGET_MAP as b3, NavComponent as b4, NavDetailsComponent as b5, NavMenuComponent as b6, NavStore as b7, NavTrailComponent as b8, NothingComponent as b9, RangeInputComponent as bA, RatingInputComponent as bB, ReactiveElementComponent as bC, RemoteComponent as bD, RemoteLoaderService as bE, ResizeElementComponent as bF, RouteContainer as bG, RowComponent as bH, SEARCH_QUERY as bI, SEARCH_RESULTS_EVENT as bJ, SECTION_ACCORDION_GROUP as bK, SECTION_FORM_CONTEXT as bL, SHARED_ICONS as bM, SIZE_CONTEXT as bN, ScoreComponent as bO, ScrollComponent as bP, ScrollService as bQ, SearchPanelComponent as bR, SearchStore as bS, SearchUserPanelComponent as bT, SectionAccordionDirective as bU, SectionAccordionGroupDirective as bV, SectionBackComponent as bW, SectionBadgesComponent as bX, SectionButtonGroupComponent as bY, SectionCardComponent as bZ, SectionComponent as b_, NotificationElementComponent as ba, NotificationGroupComponent as bb, NotificationPopupComponent as bc, NotificationService as bd, NotificationStore as be, NotificationType as bf, NotificationWidgetComponent as bg, ONE_ASSET_BASE_URL as bh, OPTIONS_SOURCE as bi, OneApp as bj, OptionsSourceDirective as bk, OverlayBodyComponent as bl, OverlayRef as bm, OverlayService as bn, PLATFORM_BUTTON_NAV_IDS as bo, PLATFORM_EXTENSIBLE_NAV_IDS as bp, PLATFORM_NAV_MAP as bq, PLATFORM_ROOT_CHILDREN as br, PaginationComponent as bs, PanelComponent as bt, PlaygroundComponent as bu, PositionDirective as bv, PwaInstallComponent as bw, ROOT_NAV$1 as bx, RadioGroupComponent as by, RadioInputComponent as bz, APP_CONTEXT_REF as c, WIN_USER_TAB_KEY as c$, SectionFooterComponent as c0, SectionFormComponent as c1, SectionFormItemComponent as c2, SectionHeaderComponent as c3, SectionSearchComponent as c4, SectionStepperComponent as c5, SectionTabsComponent as c6, SectionToggleComponent as c7, SectionToggleItemDirective as c8, SelectableCardInputComponent as c9, TextareaInputComponent as cA, ThemeComponent as cB, ThemeService as cC, ThemeStore as cD, TimeAgoPipe as cE, TimelineComponent as cF, ToggleButtonComponent as cG, ToggleInputComponent as cH, ToggleRadioInputComponent as cI, ToolTipDirective as cJ, TooltipComponent as cK, TranslateService as cL, TreeGridComponent as cM, URL_SEP as cN, USER_STORE_REF as cO, USER_TAB_MAP as cP, UlComponent as cQ, UniverseComponent as cR, UserApiService as cS, UserAvatarComponent as cT, UserComponent as cU, UserNavComponent as cV, UserSettingsComponent as cW, UserStore as cX, WC_ROUTE_CHANGED_EVENT as cY, WC_SEARCH_GROUPS as cZ, WIN_USER_TAB_HOOK as c_, SelectorDirective as ca, SettingsSearchBarComponent as cb, SettingsSearchService as cc, Sex as cd, ShapeComponent as ce, SharedStoreRegistry as cf, SidePanelDirective as cg, Size as ch, SocketStore as ci, SortComponent as cj, StepComponent as ck, StepperComponent as cl, StepsComponent as cm, StorageService as cn, StrokeLinecap as co, StrokeLinejoin as cp, SummaryComponent as cq, SvgGeneratorComponent as cr, SvgGeneratorService as cs, SvgService as ct, TOTAL_COLUMNS as cu, TRANSLATION_SOURCE as cv, TableComponent as cw, TechnicalMeterComponent as cx, TextInputComponent as cy, TextOutputComponent as cz, ASSET_BASE_URL as d, loginState as d$, WatermarkComponent as d0, WcRouterStore as d1, WrapperInputComponent as d2, anchorNavId as d3, applyColorsToElement as d4, authGuard as d5, bootstrapMagApp as d6, bootstrapPwaInstall as d7, buildWcBaseUrl as d8, calculateLuminance as d9, getValue as dA, hasErrorComputed as dB, hexToRgb as dC, hslToRgb$1 as dD, initMagmoniumApp as dE, initialNotificationState as dF, initials as dG, injectAuthenticate as dH, injectInstallApp as dI, injectParentSize as dJ, injectScrollSticky as dK, isButtonName as dL, isCancelledComputed as dM, isExtensiblePlatformNavId as dN, isJson as dO, isLoadingComputed as dP, isLocalhost as dQ, isPlatformNavId as dR, isSize as dS, isTierPreview as dT, isUrlLocalhost as dU, isValidNavId as dV, isValidNavSegment as dW, isWebComponent as dX, linkToId as dY, linkToNav as dZ, loadingActions as d_, calculateRanks as da, cellText as db, checkFilterCondition as dc, childNavId as dd, classListSignal 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, AccordionBodyDirective 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, provideUserTabs as eA, publicGuard as eB, renderAddress as eC, requiredValidation as eD, resolveConfigAsset as eE, resolvePallet as eF, resolveSize as eG, rgbToHex as eH, rgbToHsl as eI, rowHasChildren as eJ, segmentsToNavId as eK, setProperty as eL, setTreeGridChildren as eM, settingsWidgets as eN, shouldShowBadge as eO, splitNavId as eP, stringToColor as eQ, toAttrBool as eR, toAttrNumber as eS, toCssLength as eT, toHostNavId as eU, toLength$1 as eV, toLocalNavId as eW, toggleTreeGridRow as eX, unfetchedPlatformNav as eY, urlValidation as eZ, 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, patternValidation as em, platformNavWidgets as en, privateGuard as eo, processImageToSvg as ep, provideAppContext as eq, provideMagAppConfig as er, provideMagWcConfig as es, provideMagWcRoutes as et, provideModalComponents as eu, provideMurlUrlSerializer as ev, provideNavWidgets as ew, providePlatformNavWidgets as ex, provideSearch as ey, provideSizeContext as ez, 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 };
|
|
30550
|
-
//# sourceMappingURL=magmonium-one-magmonium-one-
|
|
30593
|
+
//# sourceMappingURL=magmonium-one-magmonium-one-BGr9hr10.mjs.map
|