@magmonium/one 0.2.9 → 0.2.11
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-N1WmgAQH.mjs → magmonium-one-magmonium-one-CIWuVgp7.mjs} +92 -101
- package/fesm2022/magmonium-one-magmonium-one-CIWuVgp7.mjs.map +1 -0
- package/fesm2022/{magmonium-one-otp-D96jgeof.mjs → magmonium-one-otp-DcfxLSxj.mjs} +2 -2
- package/fesm2022/{magmonium-one-otp-D96jgeof.mjs.map → magmonium-one-otp-DcfxLSxj.mjs.map} +1 -1
- package/fesm2022/{magmonium-one-password-DARd8Drq.mjs → magmonium-one-password-DGc2RuLa.mjs} +2 -2
- package/fesm2022/{magmonium-one-password-DARd8Drq.mjs.map → magmonium-one-password-DGc2RuLa.mjs.map} +1 -1
- package/fesm2022/{magmonium-one-toggle-CuXmaquM.mjs → magmonium-one-toggle-BAYE2o_R.mjs} +2 -2
- package/fesm2022/{magmonium-one-toggle-CuXmaquM.mjs.map → magmonium-one-toggle-BAYE2o_R.mjs.map} +1 -1
- package/fesm2022/magmonium-one.mjs +1 -1
- package/package.json +1 -1
- package/types/magmonium-one.d.ts +2 -2
- package/fesm2022/magmonium-one-magmonium-one-N1WmgAQH.mjs.map +0 -1
|
@@ -5413,8 +5413,9 @@ class ImgComponent {
|
|
|
5413
5413
|
return undefined;
|
|
5414
5414
|
}, ...(ngDevMode ? [{ debugName: "autoNgSrcset" }] : /* istanbul ignore next */ []));
|
|
5415
5415
|
// --- State ---
|
|
5416
|
-
|
|
5417
|
-
|
|
5416
|
+
// One signal rather than a loaded/error pair: the three states are
|
|
5417
|
+
// exclusive, and two booleans could say both or neither.
|
|
5418
|
+
status = signal('loading', ...(ngDevMode ? [{ debugName: "status" }] : /* istanbul ignore next */ []));
|
|
5418
5419
|
effectiveSrc = computed(() => {
|
|
5419
5420
|
const d = this.data();
|
|
5420
5421
|
if (d)
|
|
@@ -5430,24 +5431,26 @@ class ImgComponent {
|
|
|
5430
5431
|
}
|
|
5431
5432
|
return src;
|
|
5432
5433
|
}, ...(ngDevMode ? [{ debugName: "effectiveSrc" }] : /* istanbul ignore next */ []));
|
|
5434
|
+
// The one stand-in this component draws, for every case that has no picture
|
|
5435
|
+
// to show: a load that failed, a url nobody set, and design mode, where a
|
|
5436
|
+
// picture is placed on the canvas long before it points anywhere.
|
|
5437
|
+
showFallback = computed(() => this.status() === 'error' || !this.effectiveSrc(), ...(ngDevMode ? [{ debugName: "showFallback" }] : /* istanbul ignore next */ []));
|
|
5433
5438
|
isDataUri = computed(() => {
|
|
5434
5439
|
const s = this.effectiveSrc();
|
|
5435
5440
|
return !!s && (s.startsWith('data:') || s.startsWith('blob:'));
|
|
5436
5441
|
}, ...(ngDevMode ? [{ debugName: "isDataUri" }] : /* istanbul ignore next */ []));
|
|
5437
5442
|
constructor() {
|
|
5438
5443
|
effect(() => {
|
|
5444
|
+
// A source change starts the wait over.
|
|
5439
5445
|
const source = this.effectiveSrc();
|
|
5440
|
-
this.
|
|
5441
|
-
this.hasError.set(!source);
|
|
5446
|
+
this.status.set(source ? 'loading' : 'error');
|
|
5442
5447
|
});
|
|
5443
5448
|
}
|
|
5444
5449
|
onLoad() {
|
|
5445
|
-
this.
|
|
5446
|
-
this.hasError.set(false);
|
|
5450
|
+
this.status.set('loaded');
|
|
5447
5451
|
}
|
|
5448
5452
|
onError() {
|
|
5449
|
-
this.
|
|
5450
|
-
this.isLoaded.set(false);
|
|
5453
|
+
this.status.set('error');
|
|
5451
5454
|
}
|
|
5452
5455
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ImgComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5453
5456
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.9", type: ImgComponent, isStandalone: true, selector: "m-img", inputs: { src: { classPropertyName: "src", publicName: "src", isSignal: true, isRequired: false, transformFunction: null }, data: { classPropertyName: "data", publicName: "data", isSignal: true, isRequired: false, transformFunction: null }, dataType: { classPropertyName: "dataType", publicName: "dataType", isSignal: true, isRequired: false, transformFunction: null }, alt: { classPropertyName: "alt", publicName: "alt", isSignal: true, isRequired: true, transformFunction: null }, priority: { classPropertyName: "priority", publicName: "priority", isSignal: true, isRequired: false, transformFunction: null }, fill: { classPropertyName: "fill", publicName: "fill", isSignal: true, isRequired: false, transformFunction: null }, width: { classPropertyName: "width", publicName: "width", isSignal: true, isRequired: false, transformFunction: null }, height: { classPropertyName: "height", publicName: "height", isSignal: true, isRequired: false, transformFunction: null }, remote: { classPropertyName: "remote", publicName: "remote", isSignal: true, isRequired: false, transformFunction: null }, ngSrcset: { classPropertyName: "ngSrcset", publicName: "ngSrcset", isSignal: true, isRequired: false, transformFunction: null }, sizes: { classPropertyName: "sizes", publicName: "sizes", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "style.width.px": "boxWidth()", "style.height.px": "boxHeight()" } }, providers: [
|
|
@@ -5467,58 +5470,52 @@ class ImgComponent {
|
|
|
5467
5470
|
], ngImport: i0, template: `
|
|
5468
5471
|
<div
|
|
5469
5472
|
class="m-img"
|
|
5470
|
-
[class.m-img--loaded]="
|
|
5471
|
-
[class.m-img--error]="
|
|
5473
|
+
[class.m-img--loaded]="status() === 'loaded'"
|
|
5474
|
+
[class.m-img--error]="showFallback()"
|
|
5472
5475
|
[class.m-img--fill]="fill()"
|
|
5473
5476
|
[class.m-img--priority]="priority()"
|
|
5474
5477
|
[class.m-img--sized]="isSized()"
|
|
5475
5478
|
>
|
|
5476
|
-
@if (
|
|
5479
|
+
@if (showFallback()) {
|
|
5477
5480
|
<div class="m-img__fallback" role="img" [attr.aria-label]="alt()">
|
|
5478
|
-
<svg viewBox="0 0
|
|
5479
|
-
<
|
|
5480
|
-
<path d="
|
|
5481
|
-
<circle cx="8.5" cy="8.5" r="2.5" opacity="0.4" />
|
|
5482
|
-
<path d="M22 13L17 8L10 15L7 12L2 17" stroke-linejoin="round" opacity="0.4" />
|
|
5481
|
+
<svg viewBox="0 0 320 240" fill="none" preserveAspectRatio="xMidYMid slice">
|
|
5482
|
+
<circle cx="112" cy="92" r="22" fill="currentColor" />
|
|
5483
|
+
<path d="M40 200l72-72 56 56 40-40 72 72z" fill="currentColor" />
|
|
5483
5484
|
</svg>
|
|
5484
5485
|
</div>
|
|
5485
|
-
} @else if (
|
|
5486
|
-
<
|
|
5487
|
-
|
|
5488
|
-
|
|
5489
|
-
|
|
5490
|
-
|
|
5491
|
-
|
|
5492
|
-
|
|
5493
|
-
|
|
5494
|
-
|
|
5495
|
-
|
|
5496
|
-
|
|
5497
|
-
|
|
5498
|
-
|
|
5499
|
-
|
|
5500
|
-
|
|
5501
|
-
|
|
5502
|
-
|
|
5503
|
-
|
|
5504
|
-
|
|
5505
|
-
|
|
5506
|
-
|
|
5507
|
-
|
|
5508
|
-
|
|
5509
|
-
|
|
5510
|
-
|
|
5511
|
-
|
|
5512
|
-
|
|
5513
|
-
|
|
5514
|
-
|
|
5515
|
-
@if (!isLoaded() && !priority()) {
|
|
5516
|
-
<div class="m-img__skeleton"></div>
|
|
5517
|
-
}
|
|
5518
|
-
</div>
|
|
5486
|
+
} @else if (isDataUri()) {
|
|
5487
|
+
<img
|
|
5488
|
+
class="m-img__img"
|
|
5489
|
+
[src]="effectiveSrc()!"
|
|
5490
|
+
[alt]="alt()"
|
|
5491
|
+
(load)="onLoad()"
|
|
5492
|
+
(error)="onError()"
|
|
5493
|
+
[width]="widthAttr()"
|
|
5494
|
+
[height]="heightAttr()"
|
|
5495
|
+
referrerpolicy="no-referrer"
|
|
5496
|
+
/>
|
|
5497
|
+
} @else {
|
|
5498
|
+
<img
|
|
5499
|
+
class="m-img__img"
|
|
5500
|
+
[ngSrc]="effectiveSrc()!"
|
|
5501
|
+
[alt]="alt()"
|
|
5502
|
+
[priority]="priority()"
|
|
5503
|
+
(load)="onLoad()"
|
|
5504
|
+
(error)="onError()"
|
|
5505
|
+
[fill]="fill()"
|
|
5506
|
+
[width]="widthAttr()"
|
|
5507
|
+
[height]="heightAttr()"
|
|
5508
|
+
[ngSrcset]="autoNgSrcset()!"
|
|
5509
|
+
[sizes]="sizes() || undefined"
|
|
5510
|
+
decoding="async"
|
|
5511
|
+
referrerpolicy="no-referrer"
|
|
5512
|
+
/>
|
|
5513
|
+
}
|
|
5514
|
+
@if (status() === 'loading' && !priority()) {
|
|
5515
|
+
<div class="m-img__skeleton"></div>
|
|
5519
5516
|
}
|
|
5520
5517
|
</div>
|
|
5521
|
-
`, isInline: true, styles: [":host{display:block;width:100%;height:100%;max-width:100%;overflow:hidden;border-radius:inherit;contain:paint}.m-img{position:relative;width:100%;height:100%;background:#ffffff05;border-radius:inherit;transition:transform .6s cubic-bezier(.2,0,.2,1);display:flex;flex-direction:column}.m-
|
|
5518
|
+
`, isInline: true, styles: [":host{display:block;width:100%;height:100%;max-width:100%;overflow:hidden;border-radius:inherit;contain:paint}.m-img{position:relative;width:100%;height:100%;background:#ffffff05;border-radius:inherit;transition:transform .6s cubic-bezier(.2,0,.2,1);display:flex;flex-direction:column}.m-img__img{display:block;width:100%;height:100%;object-fit:cover;opacity:0;transform:scale(1.05) translateZ(0);filter:blur(10px) brightness(.8);transition:opacity 1.2s cubic-bezier(.4,0,.2,1),transform 1.2s cubic-bezier(.2,0,.2,1),filter 1s ease-out}.m-img--loaded .m-img__img,.m-img--priority .m-img__img{opacity:1;transform:scale(1) translateZ(0);filter:blur(0) brightness(1)}.m-img__skeleton{position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(90deg,#fff0,#ffffff0d,#fff0);background-size:200% 100%;animation:shimmer 2s infinite linear,pulse 2.5s infinite ease-in-out;border-radius:inherit}.m-img__fallback{background:#0003;display:flex;align-items:center;justify-content:center;width:100%;height:100%;aspect-ratio:4/3;color:#ffffff52;border-radius:inherit}.m-img__fallback svg{display:block;width:100%;height:100%;border-radius:inherit}@media(hover:hover){.m-img:hover .m-img__img{transform:scale(1.04) translateZ(0);transition-duration:2s}}@keyframes shimmer{0%{background-position:200% 0}to{background-position:-200% 0}}@keyframes pulse{0%,to{opacity:1}50%{opacity:.4}}\n"], dependencies: [{ kind: "directive", type: NgOptimizedImage, selector: "img[ngSrc]", inputs: ["ngSrc", "ngSrcset", "sizes", "width", "height", "decoding", "loading", "priority", "loaderParams", "disableOptimizedSrcset", "fill", "placeholder", "placeholderConfig", "src", "srcset"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5522
5519
|
}
|
|
5523
5520
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ImgComponent, decorators: [{
|
|
5524
5521
|
type: Component,
|
|
@@ -5544,58 +5541,52 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
5544
5541
|
], template: `
|
|
5545
5542
|
<div
|
|
5546
5543
|
class="m-img"
|
|
5547
|
-
[class.m-img--loaded]="
|
|
5548
|
-
[class.m-img--error]="
|
|
5544
|
+
[class.m-img--loaded]="status() === 'loaded'"
|
|
5545
|
+
[class.m-img--error]="showFallback()"
|
|
5549
5546
|
[class.m-img--fill]="fill()"
|
|
5550
5547
|
[class.m-img--priority]="priority()"
|
|
5551
5548
|
[class.m-img--sized]="isSized()"
|
|
5552
5549
|
>
|
|
5553
|
-
@if (
|
|
5550
|
+
@if (showFallback()) {
|
|
5554
5551
|
<div class="m-img__fallback" role="img" [attr.aria-label]="alt()">
|
|
5555
|
-
<svg viewBox="0 0
|
|
5556
|
-
<
|
|
5557
|
-
<path d="
|
|
5558
|
-
<circle cx="8.5" cy="8.5" r="2.5" opacity="0.4" />
|
|
5559
|
-
<path d="M22 13L17 8L10 15L7 12L2 17" stroke-linejoin="round" opacity="0.4" />
|
|
5552
|
+
<svg viewBox="0 0 320 240" fill="none" preserveAspectRatio="xMidYMid slice">
|
|
5553
|
+
<circle cx="112" cy="92" r="22" fill="currentColor" />
|
|
5554
|
+
<path d="M40 200l72-72 56 56 40-40 72 72z" fill="currentColor" />
|
|
5560
5555
|
</svg>
|
|
5561
5556
|
</div>
|
|
5562
|
-
} @else if (
|
|
5563
|
-
<
|
|
5564
|
-
|
|
5565
|
-
|
|
5566
|
-
|
|
5567
|
-
|
|
5568
|
-
|
|
5569
|
-
|
|
5570
|
-
|
|
5571
|
-
|
|
5572
|
-
|
|
5573
|
-
|
|
5574
|
-
|
|
5575
|
-
|
|
5576
|
-
|
|
5577
|
-
|
|
5578
|
-
|
|
5579
|
-
|
|
5580
|
-
|
|
5581
|
-
|
|
5582
|
-
|
|
5583
|
-
|
|
5584
|
-
|
|
5585
|
-
|
|
5586
|
-
|
|
5587
|
-
|
|
5588
|
-
|
|
5589
|
-
|
|
5590
|
-
|
|
5591
|
-
|
|
5592
|
-
@if (!isLoaded() && !priority()) {
|
|
5593
|
-
<div class="m-img__skeleton"></div>
|
|
5594
|
-
}
|
|
5595
|
-
</div>
|
|
5557
|
+
} @else if (isDataUri()) {
|
|
5558
|
+
<img
|
|
5559
|
+
class="m-img__img"
|
|
5560
|
+
[src]="effectiveSrc()!"
|
|
5561
|
+
[alt]="alt()"
|
|
5562
|
+
(load)="onLoad()"
|
|
5563
|
+
(error)="onError()"
|
|
5564
|
+
[width]="widthAttr()"
|
|
5565
|
+
[height]="heightAttr()"
|
|
5566
|
+
referrerpolicy="no-referrer"
|
|
5567
|
+
/>
|
|
5568
|
+
} @else {
|
|
5569
|
+
<img
|
|
5570
|
+
class="m-img__img"
|
|
5571
|
+
[ngSrc]="effectiveSrc()!"
|
|
5572
|
+
[alt]="alt()"
|
|
5573
|
+
[priority]="priority()"
|
|
5574
|
+
(load)="onLoad()"
|
|
5575
|
+
(error)="onError()"
|
|
5576
|
+
[fill]="fill()"
|
|
5577
|
+
[width]="widthAttr()"
|
|
5578
|
+
[height]="heightAttr()"
|
|
5579
|
+
[ngSrcset]="autoNgSrcset()!"
|
|
5580
|
+
[sizes]="sizes() || undefined"
|
|
5581
|
+
decoding="async"
|
|
5582
|
+
referrerpolicy="no-referrer"
|
|
5583
|
+
/>
|
|
5584
|
+
}
|
|
5585
|
+
@if (status() === 'loading' && !priority()) {
|
|
5586
|
+
<div class="m-img__skeleton"></div>
|
|
5596
5587
|
}
|
|
5597
5588
|
</div>
|
|
5598
|
-
`, styles: [":host{display:block;width:100%;height:100%;max-width:100%;overflow:hidden;border-radius:inherit;contain:paint}.m-img{position:relative;width:100%;height:100%;background:#ffffff05;border-radius:inherit;transition:transform .6s cubic-bezier(.2,0,.2,1);display:flex;flex-direction:column}.m-
|
|
5589
|
+
`, styles: [":host{display:block;width:100%;height:100%;max-width:100%;overflow:hidden;border-radius:inherit;contain:paint}.m-img{position:relative;width:100%;height:100%;background:#ffffff05;border-radius:inherit;transition:transform .6s cubic-bezier(.2,0,.2,1);display:flex;flex-direction:column}.m-img__img{display:block;width:100%;height:100%;object-fit:cover;opacity:0;transform:scale(1.05) translateZ(0);filter:blur(10px) brightness(.8);transition:opacity 1.2s cubic-bezier(.4,0,.2,1),transform 1.2s cubic-bezier(.2,0,.2,1),filter 1s ease-out}.m-img--loaded .m-img__img,.m-img--priority .m-img__img{opacity:1;transform:scale(1) translateZ(0);filter:blur(0) brightness(1)}.m-img__skeleton{position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(90deg,#fff0,#ffffff0d,#fff0);background-size:200% 100%;animation:shimmer 2s infinite linear,pulse 2.5s infinite ease-in-out;border-radius:inherit}.m-img__fallback{background:#0003;display:flex;align-items:center;justify-content:center;width:100%;height:100%;aspect-ratio:4/3;color:#ffffff52;border-radius:inherit}.m-img__fallback svg{display:block;width:100%;height:100%;border-radius:inherit}@media(hover:hover){.m-img:hover .m-img__img{transform:scale(1.04) translateZ(0);transition-duration:2s}}@keyframes shimmer{0%{background-position:200% 0}to{background-position:-200% 0}}@keyframes pulse{0%,to{opacity:1}50%{opacity:.4}}\n"] }]
|
|
5599
5590
|
}], ctorParameters: () => [], propDecorators: { src: [{ type: i0.Input, args: [{ isSignal: true, alias: "src", required: false }] }], data: [{ type: i0.Input, args: [{ isSignal: true, alias: "data", required: false }] }], dataType: [{ type: i0.Input, args: [{ isSignal: true, alias: "dataType", required: false }] }], alt: [{ type: i0.Input, args: [{ isSignal: true, alias: "alt", required: true }] }], priority: [{ type: i0.Input, args: [{ isSignal: true, alias: "priority", required: false }] }], fill: [{ type: i0.Input, args: [{ isSignal: true, alias: "fill", required: false }] }], width: [{ type: i0.Input, args: [{ isSignal: true, alias: "width", required: false }] }], height: [{ type: i0.Input, args: [{ isSignal: true, alias: "height", required: false }] }], remote: [{ type: i0.Input, args: [{ isSignal: true, alias: "remote", required: false }] }], ngSrcset: [{ type: i0.Input, args: [{ isSignal: true, alias: "ngSrcset", required: false }] }], sizes: [{ type: i0.Input, args: [{ isSignal: true, alias: "sizes", required: false }] }] } });
|
|
5600
5591
|
|
|
5601
5592
|
const SECTION_FORM_CONTEXT = new InjectionToken('SECTION_FORM_CONTEXT');
|
|
@@ -6426,7 +6417,7 @@ class SectionFormItemComponent extends ConfigComponent {
|
|
|
6426
6417
|
break;
|
|
6427
6418
|
}
|
|
6428
6419
|
case InputType.TOGGLE: {
|
|
6429
|
-
const { ToggleInputComponent } = await import('./magmonium-one-toggle-
|
|
6420
|
+
const { ToggleInputComponent } = await import('./magmonium-one-toggle-BAYE2o_R.mjs');
|
|
6430
6421
|
this.createDynamicComponent(seq, ToggleInputComponent, [], true);
|
|
6431
6422
|
break;
|
|
6432
6423
|
}
|
|
@@ -6438,12 +6429,12 @@ class SectionFormItemComponent extends ConfigComponent {
|
|
|
6438
6429
|
break;
|
|
6439
6430
|
}
|
|
6440
6431
|
case InputType.PASSWORD: {
|
|
6441
|
-
const { PasswordInputComponent } = await import('./magmonium-one-password-
|
|
6432
|
+
const { PasswordInputComponent } = await import('./magmonium-one-password-DGc2RuLa.mjs');
|
|
6442
6433
|
this.createDynamicComponent(seq, PasswordInputComponent);
|
|
6443
6434
|
break;
|
|
6444
6435
|
}
|
|
6445
6436
|
case InputType.OTP: {
|
|
6446
|
-
const { OtpInputComponent } = await import('./magmonium-one-otp-
|
|
6437
|
+
const { OtpInputComponent } = await import('./magmonium-one-otp-DcfxLSxj.mjs');
|
|
6447
6438
|
this.createDynamicComponent(seq, OtpInputComponent);
|
|
6448
6439
|
break;
|
|
6449
6440
|
}
|
|
@@ -17864,7 +17855,7 @@ class WrapperInputComponent extends ConfigComponent {
|
|
|
17864
17855
|
break;
|
|
17865
17856
|
}
|
|
17866
17857
|
case InputType.TOGGLE: {
|
|
17867
|
-
const { ToggleInputComponent } = await import('./magmonium-one-toggle-
|
|
17858
|
+
const { ToggleInputComponent } = await import('./magmonium-one-toggle-BAYE2o_R.mjs');
|
|
17868
17859
|
this.createDynamicComponent(seq, ToggleInputComponent, [], true);
|
|
17869
17860
|
break;
|
|
17870
17861
|
}
|
|
@@ -17876,12 +17867,12 @@ class WrapperInputComponent extends ConfigComponent {
|
|
|
17876
17867
|
break;
|
|
17877
17868
|
}
|
|
17878
17869
|
case InputType.PASSWORD: {
|
|
17879
|
-
const { PasswordInputComponent } = await import('./magmonium-one-password-
|
|
17870
|
+
const { PasswordInputComponent } = await import('./magmonium-one-password-DGc2RuLa.mjs');
|
|
17880
17871
|
this.createDynamicComponent(seq, PasswordInputComponent);
|
|
17881
17872
|
break;
|
|
17882
17873
|
}
|
|
17883
17874
|
case InputType.OTP: {
|
|
17884
|
-
const { OtpInputComponent } = await import('./magmonium-one-otp-
|
|
17875
|
+
const { OtpInputComponent } = await import('./magmonium-one-otp-DcfxLSxj.mjs');
|
|
17885
17876
|
this.createDynamicComponent(seq, OtpInputComponent);
|
|
17886
17877
|
break;
|
|
17887
17878
|
}
|
|
@@ -32214,4 +32205,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
32214
32205
|
*/
|
|
32215
32206
|
|
|
32216
32207
|
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, SectionFooterComponent 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, SectionCarouselComponent as bY, SectionComponent as bZ, SectionFilterComponent 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, WIN_USER_TAB_KEY as c$, SectionFormComponent as c0, SectionFormItemComponent as c1, SectionHeaderComponent as c2, SectionHeroComponent as c3, SectionSearchComponent as c4, SectionStepperComponent as c5, SectionTabsComponent as c6, SectionToggleComponent as c7, SectionToggleItemDirective as c8, SelectableCardInputComponent as c9, ThemeComponent as cA, ThemeDataService 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, ShapeComponent as cd, SharedStoreRegistry as ce, SidePanelDirective as cf, Size as cg, SocketStore as ch, SortComponent as ci, StatComponent 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, TextareaInputComponent as cz, APP_CONTEXT_REF as d, linkToId as d$, WatermarkComponent as d0, WcRouterStore as d1, WrapperInputComponent as d2, anchorNavId as d3, applyColorsToElement as d4, bootstrapMagApp as d5, bootstrapPwaInstall as d6, buildWcBaseUrl as d7, calculateLuminance as d8, calculateRanks as d9, getTreeGridRow as dA, getUniqueId as dB, getValue as dC, hasErrorComputed as dD, hexToRgb as dE, hslToRgb$1 as dF, initMagmoniumApp as dG, initialNotificationState as dH, initialState$2 as dI, initials as dJ, injectAuthenticate as dK, injectInstallApp as dL, injectParentSize as dM, injectScrollSticky as dN, isButtonName as dO, isCancelledComputed as dP, isExtensiblePlatformNavId as dQ, isJson as dR, isLoadingComputed as dS, isLocalhost as dT, isPlatformNavId as dU, isSize as dV, isTierPreview as dW, isUrlLocalhost as dX, isValidNavId as dY, isValidNavSegment as dZ, isWebComponent as d_, cellText as da, checkFilterCondition as db, childNavId as dc, classListSignal as dd, coerceSize as de, cornerEdge as df, cornerSide as dg, createMap as dh, createPlatformNavMap as di, deriveAvatarGradient as dj, deriveContrastColor as dk, deriveOppositeColor as dl, derivePropertyName as dm, emailValidation as dn, evaluate as dp, evaluateBool as dq, flattenTreeGridRows as dr, formatBadgeCount as ds, fullName as dt, generateClipPath as du, generateTransform as dv, getClassList as dw, getProperty as dx, getScrollParent as dy, getTierFromPreviewPath as dz, ASSET_BASE_URL as e, toAttrNumber as e$, linkToNav as e0, loadingActions as e1, mInterceptor as e2, manualValidation as e3, matchFieldValidation as e4, maxLengthValidation as e5, maxValidation as e6, mergePlatformNav as e7, mergeUnique as e8, mergeUniqueBy as e9, provideNavWidgets as eA, provideOverlayWidgets as eB, providePlatformNavWidgets as eC, provideSearch as eD, provideSizeContext as eE, provideUserTabs as eF, publicGuard as eG, readFieldPatterns as eH, renderAddress as eI, requiredValidation as eJ, resolveConfigAsset as eK, resolveIconSize as eL, resolvePallet as eM, resolvePatternRules as eN, resolveSize as eO, rgbToHex as eP, rgbToHsl as eQ, rowHasChildren as eR, samePatterns as eS, segmentsToNavId as eT, setProperty as eU, setTreeGridChildren as eV, settingsWidgets as eW, shouldShowBadge as eX, splitNavId as eY, stringToColor as eZ, toAttrBool as e_, mergeUniqueWith as ea, minAgeValidation as eb, minLengthValidation as ec, minValidation as ed, miniMarkToHtml as ee, navIdChain as ef, navIdFor as eg, navIdSegment as eh, navIdToRoutePath as ei, navIdToSegments as ej, navToId as ek, parentNavId as el, parseAddress as em, parseColor as en, parsePatternNames as eo, patternValidation as ep, patternsValidation as eq, platformNavWidgets as er, privateGuard as es, processImageToSvg as et, provideAppContext as eu, provideMagAppConfig as ev, provideMagWcConfig as ew, provideMagWcRoutes as ex, provideModalComponents as ey, provideMurlUrlSerializer as ez, AccordionBodyDirective as f, toCssLength as f0, toHostNavId as f1, toLength$1 as f2, toLocalNavId as f3, toggleTreeGridRow as f4, unfetchedPlatformNav as f5, urlValidation as f6, 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 };
|
|
32217
|
-
//# sourceMappingURL=magmonium-one-magmonium-one-
|
|
32208
|
+
//# sourceMappingURL=magmonium-one-magmonium-one-CIWuVgp7.mjs.map
|