@magmonium/one 0.2.56 → 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.
- package/fesm2022/{magmonium-one-magmonium-one-BZrtlbjm.mjs → magmonium-one-magmonium-one-DmOQCRMx.mjs} +88 -19
- package/fesm2022/magmonium-one-magmonium-one-DmOQCRMx.mjs.map +1 -0
- package/fesm2022/{magmonium-one-otp-R0jo2bvP.mjs → magmonium-one-otp-BS0JdT_v.mjs} +2 -2
- package/fesm2022/{magmonium-one-otp-R0jo2bvP.mjs.map → magmonium-one-otp-BS0JdT_v.mjs.map} +1 -1
- package/fesm2022/{magmonium-one-password-BhiS6qfY.mjs → magmonium-one-password--K2CxdeN.mjs} +2 -2
- package/fesm2022/{magmonium-one-password-BhiS6qfY.mjs.map → magmonium-one-password--K2CxdeN.mjs.map} +1 -1
- package/fesm2022/{magmonium-one-toggle-khCGhwEP.mjs → magmonium-one-toggle-Dmu66J0W.mjs} +2 -2
- package/fesm2022/{magmonium-one-toggle-khCGhwEP.mjs.map → magmonium-one-toggle-Dmu66J0W.mjs.map} +1 -1
- package/fesm2022/magmonium-one.mjs +1 -1
- package/package.json +1 -1
- package/types/magmonium-one.d.ts +39 -17
- package/fesm2022/magmonium-one-magmonium-one-BZrtlbjm.mjs.map +0 -1
|
@@ -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-
|
|
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
|
|
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-
|
|
7010
|
+
const { OtpInputComponent } = await import('./magmonium-one-otp-BS0JdT_v.mjs');
|
|
7011
7011
|
this.createDynamicComponent(seq, OtpInputComponent);
|
|
7012
7012
|
break;
|
|
7013
7013
|
}
|
|
@@ -16019,6 +16019,13 @@ const ModalStore = signalStore({ providedIn: 'root' }, withState(initialModalSta
|
|
|
16019
16019
|
if (!modalId) {
|
|
16020
16020
|
return;
|
|
16021
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
|
+
}
|
|
16022
16029
|
domService.destroy({
|
|
16023
16030
|
componentRef: modalTriggerMap[modalId]?.ref,
|
|
16024
16031
|
parentClassName: state.parentClassName(),
|
|
@@ -16134,6 +16141,11 @@ const ModalStore = signalStore({ providedIn: 'root' }, withState(initialModalSta
|
|
|
16134
16141
|
if (!panelId) {
|
|
16135
16142
|
return;
|
|
16136
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
|
+
}
|
|
16137
16149
|
const closing = panelTriggerMap[panelId];
|
|
16138
16150
|
domService.destroy({
|
|
16139
16151
|
componentRef: closing?.ref,
|
|
@@ -16239,10 +16251,18 @@ const ModalStore = signalStore({ providedIn: 'root' }, withState(initialModalSta
|
|
|
16239
16251
|
inputBinding('inputs', () => trigger.inputs ?? {}),
|
|
16240
16252
|
];
|
|
16241
16253
|
// Its own ModalRef, the way each directive mints one: the body closes
|
|
16242
|
-
// itself through this
|
|
16243
|
-
|
|
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 }];
|
|
16244
16264
|
if (trigger.as === 'side_panel') {
|
|
16245
|
-
|
|
16265
|
+
const panelId = openPanel({
|
|
16246
16266
|
component: overlayBodyComp,
|
|
16247
16267
|
bindings,
|
|
16248
16268
|
providers,
|
|
@@ -16252,13 +16272,37 @@ const ModalStore = signalStore({ providedIn: 'root' }, withState(initialModalSta
|
|
|
16252
16272
|
dock: trigger.dock,
|
|
16253
16273
|
closeProhibited: trigger.closeProhibited,
|
|
16254
16274
|
});
|
|
16275
|
+
modalRef.onClose((result) => {
|
|
16276
|
+
trigger.onResult?.(result);
|
|
16277
|
+
closePanel(panelId);
|
|
16278
|
+
});
|
|
16279
|
+
return panelId;
|
|
16255
16280
|
}
|
|
16256
|
-
|
|
16281
|
+
const modalId = open({
|
|
16257
16282
|
component: overlayBodyComp,
|
|
16258
16283
|
bindings,
|
|
16259
16284
|
providers,
|
|
16260
16285
|
config: trigger.config,
|
|
16261
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);
|
|
16262
16306
|
};
|
|
16263
16307
|
// The callback form, kept for every caller drawn against it. One
|
|
16264
16308
|
// implementation underneath: a refusal runs nothing, which is what an
|
|
@@ -16272,6 +16316,7 @@ const ModalStore = signalStore({ providedIn: 'root' }, withState(initialModalSta
|
|
|
16272
16316
|
return {
|
|
16273
16317
|
open,
|
|
16274
16318
|
close,
|
|
16319
|
+
dismiss,
|
|
16275
16320
|
ask,
|
|
16276
16321
|
confirm,
|
|
16277
16322
|
openScreen,
|
|
@@ -20716,7 +20761,7 @@ class WrapperInputComponent extends ConfigComponent {
|
|
|
20716
20761
|
break;
|
|
20717
20762
|
}
|
|
20718
20763
|
case InputType.TOGGLE: {
|
|
20719
|
-
const { ToggleInputComponent } = await import('./magmonium-one-toggle-
|
|
20764
|
+
const { ToggleInputComponent } = await import('./magmonium-one-toggle-Dmu66J0W.mjs');
|
|
20720
20765
|
this.createDynamicComponent(seq, ToggleInputComponent, [], true);
|
|
20721
20766
|
break;
|
|
20722
20767
|
}
|
|
@@ -20728,12 +20773,12 @@ class WrapperInputComponent extends ConfigComponent {
|
|
|
20728
20773
|
break;
|
|
20729
20774
|
}
|
|
20730
20775
|
case InputType.PASSWORD: {
|
|
20731
|
-
const { PasswordInputComponent } = await import('./magmonium-one-password
|
|
20776
|
+
const { PasswordInputComponent } = await import('./magmonium-one-password--K2CxdeN.mjs');
|
|
20732
20777
|
this.createDynamicComponent(seq, PasswordInputComponent);
|
|
20733
20778
|
break;
|
|
20734
20779
|
}
|
|
20735
20780
|
case InputType.OTP: {
|
|
20736
|
-
const { OtpInputComponent } = await import('./magmonium-one-otp-
|
|
20781
|
+
const { OtpInputComponent } = await import('./magmonium-one-otp-BS0JdT_v.mjs');
|
|
20737
20782
|
this.createDynamicComponent(seq, OtpInputComponent);
|
|
20738
20783
|
break;
|
|
20739
20784
|
}
|
|
@@ -29259,6 +29304,12 @@ deps) {
|
|
|
29259
29304
|
class ModalDirective {
|
|
29260
29305
|
mModal = input(...(ngDevMode ? [undefined, { debugName: "mModal" }] : /* istanbul ignore next */ []));
|
|
29261
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();
|
|
29262
29313
|
elementRef = inject(ElementRef);
|
|
29263
29314
|
assetStore = inject(AssetStore);
|
|
29264
29315
|
modalStore = inject(ModalStore);
|
|
@@ -29286,7 +29337,7 @@ class ModalDirective {
|
|
|
29286
29337
|
}
|
|
29287
29338
|
open(config) {
|
|
29288
29339
|
const modalRef = new ModalRef();
|
|
29289
|
-
this.modalStore.open({
|
|
29340
|
+
const id = this.modalStore.open({
|
|
29290
29341
|
component: OverlayBodyComponent,
|
|
29291
29342
|
bindings: [
|
|
29292
29343
|
inputBinding('form', () => config.form),
|
|
@@ -29298,17 +29349,23 @@ class ModalDirective {
|
|
|
29298
29349
|
providers: [{ provide: MODAL_REF, useValue: modalRef }],
|
|
29299
29350
|
config,
|
|
29300
29351
|
});
|
|
29301
|
-
modalRef.
|
|
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
|
+
});
|
|
29302
29359
|
}
|
|
29303
29360
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ModalDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
29304
|
-
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 });
|
|
29305
29362
|
}
|
|
29306
29363
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ModalDirective, decorators: [{
|
|
29307
29364
|
type: Directive,
|
|
29308
29365
|
args: [{
|
|
29309
29366
|
selector: '[mModal]',
|
|
29310
29367
|
}]
|
|
29311
|
-
}], 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: [{
|
|
29312
29369
|
type: HostListener,
|
|
29313
29370
|
args: ['click', ['$event']]
|
|
29314
29371
|
}] } });
|
|
@@ -29317,6 +29374,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
29317
29374
|
class SidePanelDirective {
|
|
29318
29375
|
mSidePanel = input(...(ngDevMode ? [undefined, { debugName: "mSidePanel" }] : /* istanbul ignore next */ []));
|
|
29319
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();
|
|
29320
29383
|
elementRef = inject(ElementRef);
|
|
29321
29384
|
assetStore = inject(AssetStore);
|
|
29322
29385
|
modalStore = inject(ModalStore);
|
|
@@ -29344,7 +29407,7 @@ class SidePanelDirective {
|
|
|
29344
29407
|
}
|
|
29345
29408
|
open(config) {
|
|
29346
29409
|
const modalRef = new ModalRef();
|
|
29347
|
-
this.modalStore.openPanel({
|
|
29410
|
+
const id = this.modalStore.openPanel({
|
|
29348
29411
|
component: OverlayBodyComponent,
|
|
29349
29412
|
bindings: [
|
|
29350
29413
|
inputBinding('form', () => config.form),
|
|
@@ -29360,17 +29423,23 @@ class SidePanelDirective {
|
|
|
29360
29423
|
dock: config.dock,
|
|
29361
29424
|
closeProhibited: config.closeProhibited,
|
|
29362
29425
|
});
|
|
29363
|
-
modalRef.
|
|
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
|
+
});
|
|
29364
29433
|
}
|
|
29365
29434
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: SidePanelDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
29366
|
-
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 });
|
|
29367
29436
|
}
|
|
29368
29437
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: SidePanelDirective, decorators: [{
|
|
29369
29438
|
type: Directive,
|
|
29370
29439
|
args: [{
|
|
29371
29440
|
selector: '[mSidePanel]',
|
|
29372
29441
|
}]
|
|
29373
|
-
}], 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: [{
|
|
29374
29443
|
type: HostListener,
|
|
29375
29444
|
args: ['click', ['$event']]
|
|
29376
29445
|
}] } });
|
|
@@ -35276,4 +35345,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
35276
35345
|
*/
|
|
35277
35346
|
|
|
35278
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 };
|
|
35279
|
-
//# sourceMappingURL=magmonium-one-magmonium-one-
|
|
35348
|
+
//# sourceMappingURL=magmonium-one-magmonium-one-DmOQCRMx.mjs.map
|