@magmonium/one 0.2.24 → 0.2.25
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-CPDCRguV.mjs → magmonium-one-magmonium-one-39v09CW3.mjs} +91 -35
- package/fesm2022/magmonium-one-magmonium-one-39v09CW3.mjs.map +1 -0
- package/fesm2022/{magmonium-one-otp-LcVRya6_.mjs → magmonium-one-otp-DpHvMD-U.mjs} +2 -2
- package/fesm2022/{magmonium-one-otp-LcVRya6_.mjs.map → magmonium-one-otp-DpHvMD-U.mjs.map} +1 -1
- package/fesm2022/{magmonium-one-password-DgKbJq2O.mjs → magmonium-one-password-BzPq0-OQ.mjs} +2 -2
- package/fesm2022/{magmonium-one-password-DgKbJq2O.mjs.map → magmonium-one-password-BzPq0-OQ.mjs.map} +1 -1
- package/fesm2022/{magmonium-one-toggle-D-JsuCLL.mjs → magmonium-one-toggle-BuLdrdrD.mjs} +2 -2
- package/fesm2022/{magmonium-one-toggle-D-JsuCLL.mjs.map → magmonium-one-toggle-BuLdrdrD.mjs.map} +1 -1
- package/fesm2022/magmonium-one.mjs +1 -1
- package/package.json +1 -1
- package/types/magmonium-one.d.ts +65 -34
- package/fesm2022/magmonium-one-magmonium-one-CPDCRguV.mjs.map +0 -1
|
@@ -6447,7 +6447,7 @@ class SectionFormItemComponent extends ConfigComponent {
|
|
|
6447
6447
|
break;
|
|
6448
6448
|
}
|
|
6449
6449
|
case InputType.TOGGLE: {
|
|
6450
|
-
const { ToggleInputComponent } = await import('./magmonium-one-toggle-
|
|
6450
|
+
const { ToggleInputComponent } = await import('./magmonium-one-toggle-BuLdrdrD.mjs');
|
|
6451
6451
|
this.createDynamicComponent(seq, ToggleInputComponent, [], true);
|
|
6452
6452
|
break;
|
|
6453
6453
|
}
|
|
@@ -6459,12 +6459,12 @@ class SectionFormItemComponent extends ConfigComponent {
|
|
|
6459
6459
|
break;
|
|
6460
6460
|
}
|
|
6461
6461
|
case InputType.PASSWORD: {
|
|
6462
|
-
const { PasswordInputComponent } = await import('./magmonium-one-password-
|
|
6462
|
+
const { PasswordInputComponent } = await import('./magmonium-one-password-BzPq0-OQ.mjs');
|
|
6463
6463
|
this.createDynamicComponent(seq, PasswordInputComponent);
|
|
6464
6464
|
break;
|
|
6465
6465
|
}
|
|
6466
6466
|
case InputType.OTP: {
|
|
6467
|
-
const { OtpInputComponent } = await import('./magmonium-one-otp-
|
|
6467
|
+
const { OtpInputComponent } = await import('./magmonium-one-otp-DpHvMD-U.mjs');
|
|
6468
6468
|
this.createDynamicComponent(seq, OtpInputComponent);
|
|
6469
6469
|
break;
|
|
6470
6470
|
}
|
|
@@ -10301,7 +10301,11 @@ class SectionFilterPanelComponent {
|
|
|
10301
10301
|
};
|
|
10302
10302
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: SectionFilterPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
10303
10303
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.9", type: SectionFilterPanelComponent, isStandalone: true, selector: "m-section-filter-panel", inputs: { options: { classPropertyName: "options", publicName: "options", isSignal: true, isRequired: false, transformFunction: null }, selected: { classPropertyName: "selected", publicName: "selected", isSignal: true, isRequired: false, transformFunction: null }, multiple: { classPropertyName: "multiple", publicName: "multiple", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { action: "action" }, ngImport: i0, template: `
|
|
10304
|
-
<ul
|
|
10304
|
+
<ul
|
|
10305
|
+
class="section-filter-panel"
|
|
10306
|
+
role="listbox"
|
|
10307
|
+
[attr.aria-multiselectable]="multiple() || null"
|
|
10308
|
+
>
|
|
10305
10309
|
@for (opt of options(); track opt.value) {
|
|
10306
10310
|
@let selected = isSelected(opt.value);
|
|
10307
10311
|
<li
|
|
@@ -10315,23 +10319,34 @@ class SectionFilterPanelComponent {
|
|
|
10315
10319
|
(keydown.space)="$event.preventDefault(); selectOption(opt)"
|
|
10316
10320
|
tabindex="0"
|
|
10317
10321
|
>
|
|
10318
|
-
|
|
10319
|
-
|
|
10320
|
-
|
|
10321
|
-
|
|
10322
|
-
|
|
10323
|
-
|
|
10324
|
-
|
|
10322
|
+
<!-- The mark says which variant this is before anything is picked:
|
|
10323
|
+
a box under multiple, a ring under single-select. Drawn here
|
|
10324
|
+
rather than reusing m-checkbox / m-radio, which are form inputs
|
|
10325
|
+
carrying a name, an id and a ControlValueAccessor — a panel row
|
|
10326
|
+
is a listbox option and owns none of that. -->
|
|
10327
|
+
<span
|
|
10328
|
+
class="section-filter-panel__mark"
|
|
10329
|
+
[class.section-filter-panel__mark--radio]="!multiple()"
|
|
10330
|
+
[class.is-checked]="selected"
|
|
10331
|
+
>
|
|
10332
|
+
@if (selected && multiple()) {
|
|
10333
|
+
<m-icon [config]="{ name: 'check' }" />
|
|
10334
|
+
}
|
|
10335
|
+
</span>
|
|
10325
10336
|
<span>{{ opt.label | translate }}</span>
|
|
10326
10337
|
</li>
|
|
10327
10338
|
}
|
|
10328
10339
|
</ul>
|
|
10329
|
-
`, 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)}}.section-filter-panel{list-style:none;margin:0;padding:0;min-width:10rem;max-height:15rem;overflow-y:auto;background:var(--m-background);border:1px solid var(--m-mm);border-radius:0;animation:filter-panel-in .2s ease-out}.section-filter-panel__option{display:flex;align-items:center;gap:.5em;padding:calc(.6rem * var(--filter-size, 1)) calc(.9rem * var(--filter-size, 1));cursor:pointer;font-size:calc(.875rem * var(--filter-size, 1));color:var(--m-text);transition:all .3s cubic-bezier(.16,1,.3,1);outline:none}.section-filter-panel__option:hover:not(.is-disabled){background-color:var(--m-backdrop-standard)}.section-filter-panel__option:focus-visible:not(.is-disabled){background-color:var(--m-backdrop-standard)}.section-filter-panel__option.is-selected{color:var(--m-mm);font-weight:500}.section-filter-panel__option.is-disabled{opacity:.4;cursor:not-allowed}.section-filter-
|
|
10340
|
+
`, 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)}}.section-filter-panel{list-style:none;margin:0;padding:0;min-width:10rem;max-height:15rem;overflow-y:auto;background:var(--m-background);border:1px solid var(--m-mm);border-radius:0;animation:filter-panel-in .2s ease-out}.section-filter-panel__option{display:flex;align-items:center;gap:.5em;padding:calc(.6rem * var(--filter-size, 1)) calc(.9rem * var(--filter-size, 1));cursor:pointer;font-size:calc(.875rem * var(--filter-size, 1));color:var(--m-text);transition:all .3s cubic-bezier(.16,1,.3,1);outline:none}.section-filter-panel__option:hover:not(.is-disabled){background-color:var(--m-backdrop-standard)}.section-filter-panel__option:focus-visible:not(.is-disabled){background-color:var(--m-backdrop-standard)}.section-filter-panel__option.is-selected{color:var(--m-mm);font-weight:500}.section-filter-panel__option.is-disabled{opacity:.4;cursor:not-allowed}.section-filter-panel__mark{width:1em;height:1em;flex-shrink:0;display:flex;align-items:center;justify-content:center;box-sizing:border-box;border:1px solid var(--m-backdrop-border);border-radius:2px;color:var(--m-background);font-size:inherit;transition:all .3s cubic-bezier(.16,1,.3,1)}.section-filter-panel__mark m-icon{--m-icon-size: .75em;display:flex}.section-filter-panel__mark.is-checked{background-color:var(--m-mm);border-color:var(--m-mm)}.section-filter-panel__mark--radio{border-radius:50%;background-color:transparent}.section-filter-panel__mark--radio.is-checked{background-color:transparent;border-color:var(--m-mm)}.section-filter-panel__mark--radio.is-checked:after{content:\"\";width:.5em;height:.5em;border-radius:50%;background-color:var(--m-mm)}@keyframes filter-panel-in{0%{opacity:0;transform:scale(.95) translateY(-4px)}to{opacity:1;transform:scale(1) translateY(0)}}\n"], dependencies: [{ kind: "component", type: IconComponent, selector: "m-icon, m-one-icon", inputs: ["config", "name", "color", "size", "one", "baseUrl", "remote"], outputs: ["configChange"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
10330
10341
|
}
|
|
10331
10342
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: SectionFilterPanelComponent, decorators: [{
|
|
10332
10343
|
type: Component,
|
|
10333
10344
|
args: [{ selector: 'm-section-filter-panel', template: `
|
|
10334
|
-
<ul
|
|
10345
|
+
<ul
|
|
10346
|
+
class="section-filter-panel"
|
|
10347
|
+
role="listbox"
|
|
10348
|
+
[attr.aria-multiselectable]="multiple() || null"
|
|
10349
|
+
>
|
|
10335
10350
|
@for (opt of options(); track opt.value) {
|
|
10336
10351
|
@let selected = isSelected(opt.value);
|
|
10337
10352
|
<li
|
|
@@ -10345,18 +10360,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
10345
10360
|
(keydown.space)="$event.preventDefault(); selectOption(opt)"
|
|
10346
10361
|
tabindex="0"
|
|
10347
10362
|
>
|
|
10348
|
-
|
|
10349
|
-
|
|
10350
|
-
|
|
10351
|
-
|
|
10352
|
-
|
|
10353
|
-
|
|
10354
|
-
|
|
10363
|
+
<!-- The mark says which variant this is before anything is picked:
|
|
10364
|
+
a box under multiple, a ring under single-select. Drawn here
|
|
10365
|
+
rather than reusing m-checkbox / m-radio, which are form inputs
|
|
10366
|
+
carrying a name, an id and a ControlValueAccessor — a panel row
|
|
10367
|
+
is a listbox option and owns none of that. -->
|
|
10368
|
+
<span
|
|
10369
|
+
class="section-filter-panel__mark"
|
|
10370
|
+
[class.section-filter-panel__mark--radio]="!multiple()"
|
|
10371
|
+
[class.is-checked]="selected"
|
|
10372
|
+
>
|
|
10373
|
+
@if (selected && multiple()) {
|
|
10374
|
+
<m-icon [config]="{ name: 'check' }" />
|
|
10375
|
+
}
|
|
10376
|
+
</span>
|
|
10355
10377
|
<span>{{ opt.label | translate }}</span>
|
|
10356
10378
|
</li>
|
|
10357
10379
|
}
|
|
10358
10380
|
</ul>
|
|
10359
|
-
`, imports: [IconComponent, TranslatePipe], changeDetection: ChangeDetectionStrategy.OnPush, 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)}}.section-filter-panel{list-style:none;margin:0;padding:0;min-width:10rem;max-height:15rem;overflow-y:auto;background:var(--m-background);border:1px solid var(--m-mm);border-radius:0;animation:filter-panel-in .2s ease-out}.section-filter-panel__option{display:flex;align-items:center;gap:.5em;padding:calc(.6rem * var(--filter-size, 1)) calc(.9rem * var(--filter-size, 1));cursor:pointer;font-size:calc(.875rem * var(--filter-size, 1));color:var(--m-text);transition:all .3s cubic-bezier(.16,1,.3,1);outline:none}.section-filter-panel__option:hover:not(.is-disabled){background-color:var(--m-backdrop-standard)}.section-filter-panel__option:focus-visible:not(.is-disabled){background-color:var(--m-backdrop-standard)}.section-filter-panel__option.is-selected{color:var(--m-mm);font-weight:500}.section-filter-panel__option.is-disabled{opacity:.4;cursor:not-allowed}.section-filter-
|
|
10381
|
+
`, imports: [IconComponent, TranslatePipe], changeDetection: ChangeDetectionStrategy.OnPush, 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)}}.section-filter-panel{list-style:none;margin:0;padding:0;min-width:10rem;max-height:15rem;overflow-y:auto;background:var(--m-background);border:1px solid var(--m-mm);border-radius:0;animation:filter-panel-in .2s ease-out}.section-filter-panel__option{display:flex;align-items:center;gap:.5em;padding:calc(.6rem * var(--filter-size, 1)) calc(.9rem * var(--filter-size, 1));cursor:pointer;font-size:calc(.875rem * var(--filter-size, 1));color:var(--m-text);transition:all .3s cubic-bezier(.16,1,.3,1);outline:none}.section-filter-panel__option:hover:not(.is-disabled){background-color:var(--m-backdrop-standard)}.section-filter-panel__option:focus-visible:not(.is-disabled){background-color:var(--m-backdrop-standard)}.section-filter-panel__option.is-selected{color:var(--m-mm);font-weight:500}.section-filter-panel__option.is-disabled{opacity:.4;cursor:not-allowed}.section-filter-panel__mark{width:1em;height:1em;flex-shrink:0;display:flex;align-items:center;justify-content:center;box-sizing:border-box;border:1px solid var(--m-backdrop-border);border-radius:2px;color:var(--m-background);font-size:inherit;transition:all .3s cubic-bezier(.16,1,.3,1)}.section-filter-panel__mark m-icon{--m-icon-size: .75em;display:flex}.section-filter-panel__mark.is-checked{background-color:var(--m-mm);border-color:var(--m-mm)}.section-filter-panel__mark--radio{border-radius:50%;background-color:transparent}.section-filter-panel__mark--radio.is-checked{background-color:transparent;border-color:var(--m-mm)}.section-filter-panel__mark--radio.is-checked:after{content:\"\";width:.5em;height:.5em;border-radius:50%;background-color:var(--m-mm)}@keyframes filter-panel-in{0%{opacity:0;transform:scale(.95) translateY(-4px)}to{opacity:1;transform:scale(1) translateY(0)}}\n"] }]
|
|
10360
10382
|
}], propDecorators: { options: [{ type: i0.Input, args: [{ isSignal: true, alias: "options", required: false }] }], selected: [{ type: i0.Input, args: [{ isSignal: true, alias: "selected", required: false }] }], multiple: [{ type: i0.Input, args: [{ isSignal: true, alias: "multiple", required: false }] }], action: [{ type: i0.Output, args: ["action"] }] } });
|
|
10361
10383
|
|
|
10362
10384
|
const FILTER_GROUP_CONTEXT = new InjectionToken('FILTER_GROUP_CONTEXT');
|
|
@@ -10372,7 +10394,21 @@ class SectionFilterComponent {
|
|
|
10372
10394
|
options = input([], ...(ngDevMode ? [{ debugName: "options" }] : /* istanbul ignore next */ []));
|
|
10373
10395
|
optionsAsset = input(...(ngDevMode ? [undefined, { debugName: "optionsAsset" }] : /* istanbul ignore next */ []));
|
|
10374
10396
|
multiple = input(true, ...(ngDevMode ? [{ debugName: "multiple" }] : /* istanbul ignore next */ []));
|
|
10397
|
+
/**
|
|
10398
|
+
* The glyph on the dropdown toggle, an IconAsset name. Unset keeps the
|
|
10399
|
+
* `adjust` tuning icon every Filter wears by default — this replaces that
|
|
10400
|
+
* one rather than adding a second mark, a Filter having one affordance and
|
|
10401
|
+
* therefore one place for an icon to sit.
|
|
10402
|
+
*/
|
|
10403
|
+
icon = input(...(ngDevMode ? [undefined, { debugName: "icon" }] : /* istanbul ignore next */ []));
|
|
10375
10404
|
value = model([], ...(ngDevMode ? [{ debugName: "value" }] : /* istanbul ignore next */ []));
|
|
10405
|
+
/**
|
|
10406
|
+
* The picked value, shaped the way this Filter was authored: the value
|
|
10407
|
+
* itself under single-select and the list under `multiple`, matching the
|
|
10408
|
+
* slice a FilterGroup's key would carry (ADR 0026). A single-select cleared
|
|
10409
|
+
* emits `''` — a group deletes the key instead, and a bare Filter has no key
|
|
10410
|
+
* to delete.
|
|
10411
|
+
*/
|
|
10376
10412
|
filterChange = output();
|
|
10377
10413
|
isOpen = signal(false, ...(ngDevMode ? [{ debugName: "isOpen" }] : /* istanbul ignore next */ []));
|
|
10378
10414
|
/**
|
|
@@ -10390,8 +10426,10 @@ class SectionFilterComponent {
|
|
|
10390
10426
|
resolvedName = computed(() => this.name() || this.label(), ...(ngDevMode ? [{ debugName: "resolvedName" }] : /* istanbul ignore next */ []));
|
|
10391
10427
|
/** The group's slice when there is one, this Filter's own model otherwise. */
|
|
10392
10428
|
selected = computed(() => this.group ? this.group.valueOf(this.resolvedName()) : this.value(), ...(ngDevMode ? [{ debugName: "selected" }] : /* istanbul ignore next */ []));
|
|
10429
|
+
// Open, the toggle is always the close mark: what it does at that moment is
|
|
10430
|
+
// dismiss the panel, whatever glyph opened it.
|
|
10393
10431
|
toggleConfig = computed(() => ({
|
|
10394
|
-
icon: this.isOpen() ? 'x' : 'adjust',
|
|
10432
|
+
icon: this.isOpen() ? 'x' : this.icon() || 'adjust',
|
|
10395
10433
|
one: true,
|
|
10396
10434
|
variant: 'ghost',
|
|
10397
10435
|
iconOnly: true,
|
|
@@ -10450,14 +10488,12 @@ class SectionFilterComponent {
|
|
|
10450
10488
|
const next = current.includes(opt.value)
|
|
10451
10489
|
? current.filter((v) => v !== opt.value)
|
|
10452
10490
|
: [...current, opt.value];
|
|
10453
|
-
this.
|
|
10454
|
-
this.filterChange.emit(next);
|
|
10491
|
+
this.write(next);
|
|
10455
10492
|
}
|
|
10456
10493
|
else {
|
|
10457
10494
|
const current = this.value();
|
|
10458
10495
|
const next = current.includes(opt.value) ? [] : [opt.value];
|
|
10459
|
-
this.
|
|
10460
|
-
this.filterChange.emit(next);
|
|
10496
|
+
this.write(next);
|
|
10461
10497
|
this.dropdownRef()?.close();
|
|
10462
10498
|
}
|
|
10463
10499
|
};
|
|
@@ -10466,9 +10502,15 @@ class SectionFilterComponent {
|
|
|
10466
10502
|
this.group.remove(this.resolvedName(), val);
|
|
10467
10503
|
return;
|
|
10468
10504
|
}
|
|
10469
|
-
|
|
10505
|
+
this.write(this.value().filter((v) => v !== val));
|
|
10506
|
+
};
|
|
10507
|
+
/**
|
|
10508
|
+
* The model is a list whatever the variant, the badges and the panel both
|
|
10509
|
+
* reading one; only what leaves the component is narrowed.
|
|
10510
|
+
*/
|
|
10511
|
+
write = (next) => {
|
|
10470
10512
|
this.value.set(next);
|
|
10471
|
-
this.filterChange.emit(next);
|
|
10513
|
+
this.filterChange.emit(this.multiple() ? next : (next[0] ?? ''));
|
|
10472
10514
|
};
|
|
10473
10515
|
constructor() {
|
|
10474
10516
|
const group = this.group;
|
|
@@ -10488,7 +10530,7 @@ class SectionFilterComponent {
|
|
|
10488
10530
|
inject(DestroyRef).onDestroy(() => group.unregister(member));
|
|
10489
10531
|
}
|
|
10490
10532
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: SectionFilterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
10491
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.9", type: SectionFilterComponent, isStandalone: true, selector: "m-section-filter", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, options: { classPropertyName: "options", publicName: "options", isSignal: true, isRequired: false, transformFunction: null }, optionsAsset: { classPropertyName: "optionsAsset", publicName: "optionsAsset", isSignal: true, isRequired: false, transformFunction: null }, multiple: { classPropertyName: "multiple", publicName: "multiple", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { value: "valueChange", filterChange: "filterChange" }, host: { properties: { "class.has-sidepanel": "sidepanel()", "class.no-border": "noBorder()", "class.in-group": "!!group" } }, viewQueries: [{ propertyName: "dropdownRef", first: true, predicate: SelectorDirective, descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
10533
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.9", type: SectionFilterComponent, isStandalone: true, selector: "m-section-filter", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, options: { classPropertyName: "options", publicName: "options", isSignal: true, isRequired: false, transformFunction: null }, optionsAsset: { classPropertyName: "optionsAsset", publicName: "optionsAsset", isSignal: true, isRequired: false, transformFunction: null }, multiple: { classPropertyName: "multiple", publicName: "multiple", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { value: "valueChange", filterChange: "filterChange" }, host: { properties: { "class.has-sidepanel": "sidepanel()", "class.no-border": "noBorder()", "class.in-group": "!!group" } }, viewQueries: [{ propertyName: "dropdownRef", first: true, predicate: SelectorDirective, descendants: true, isSignal: true }], ngImport: i0, template: `
|
|
10492
10534
|
<div class="section-filter__bar">
|
|
10493
10535
|
@if (hasSelection()) {
|
|
10494
10536
|
<div class="section-filter__badges">
|
|
@@ -10561,7 +10603,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
10561
10603
|
'[class.no-border]': 'noBorder()',
|
|
10562
10604
|
'[class.in-group]': '!!group',
|
|
10563
10605
|
}, 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;border-bottom:1px solid var(--m-section-filter-border, var(--m-backdrop-border))}:host(.no-border){border-bottom:none}.section-filter__bar{display:flex;align-items:center;justify-content:space-between;gap:.5rem;min-height:var(--section-header-min-height, calc(var(--section-header-py, 1rem) * 2 + 1.375rem));padding:var(--section-header-py, .75rem) var(--section-px, 1rem)}.section-filter__bar m-header{flex:1;min-width:0;font-size:1rem}.section-filter__bar .section-filter__toggle{flex-shrink:0;--m-button-size: 1rem !important}.section-filter__bar .section-filter__toggle.is-active{--m-button-color: var(--m-mm) !important}.section-filter__badges{display:flex;flex-wrap:wrap;gap:.375rem;flex:1;min-width:0;align-items:center}.section-filter__badges m-badge{--m-badge-size: .6rem;--m-badge-chip-padding: 0 .25em}.section-filter__badges m-badge m-button{--m-button-size: .6em;--m-button-color: var(--m-mm);opacity:.7}.section-filter__badges m-badge m-button:hover{opacity:1}.section-filter__dropdown{flex-shrink:0}\n"] }]
|
|
10564
|
-
}], ctorParameters: () => [], propDecorators: { label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }], name: [{ type: i0.Input, args: [{ isSignal: true, alias: "name", required: false }] }], options: [{ type: i0.Input, args: [{ isSignal: true, alias: "options", required: false }] }], optionsAsset: [{ type: i0.Input, args: [{ isSignal: true, alias: "optionsAsset", required: false }] }], multiple: [{ type: i0.Input, args: [{ isSignal: true, alias: "multiple", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }, { type: i0.Output, args: ["valueChange"] }], filterChange: [{ type: i0.Output, args: ["filterChange"] }], dropdownRef: [{ type: i0.ViewChild, args: [i0.forwardRef(() => SelectorDirective), { isSignal: true }] }] } });
|
|
10606
|
+
}], ctorParameters: () => [], propDecorators: { label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }], name: [{ type: i0.Input, args: [{ isSignal: true, alias: "name", required: false }] }], options: [{ type: i0.Input, args: [{ isSignal: true, alias: "options", required: false }] }], optionsAsset: [{ type: i0.Input, args: [{ isSignal: true, alias: "optionsAsset", required: false }] }], multiple: [{ type: i0.Input, args: [{ isSignal: true, alias: "multiple", required: false }] }], icon: [{ type: i0.Input, args: [{ isSignal: true, alias: "icon", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }, { type: i0.Output, args: ["valueChange"] }], filterChange: [{ type: i0.Output, args: ["filterChange"] }], dropdownRef: [{ type: i0.ViewChild, args: [i0.forwardRef(() => SelectorDirective), { isSignal: true }] }] } });
|
|
10565
10607
|
|
|
10566
10608
|
/**
|
|
10567
10609
|
* One key of a group's selection read as the list a `multiple` Filter carries.
|
|
@@ -10586,6 +10628,20 @@ function filterList(selection, name) {
|
|
|
10586
10628
|
function filterOne(selection, name) {
|
|
10587
10629
|
return toList(selection?.[name])[0];
|
|
10588
10630
|
}
|
|
10631
|
+
/**
|
|
10632
|
+
* One Filter's own emit read as a list, whichever shape it was authored to
|
|
10633
|
+
* carry — a standalone `multiple` Filter emits its list and a single-select one
|
|
10634
|
+
* emits the value itself (ADR 0026). What `filterList` does for a key of a
|
|
10635
|
+
* group's map, for the Filter that has no group and therefore no map.
|
|
10636
|
+
*
|
|
10637
|
+
* The empty string drops out: a cleared single-select Filter emits it where a
|
|
10638
|
+
* group would delete the key, so the two spellings of "nothing picked" read
|
|
10639
|
+
* the same. `filterList` keeps it — a key a group wrote is a value a User
|
|
10640
|
+
* picked, and a group writes no key at all for nothing.
|
|
10641
|
+
*/
|
|
10642
|
+
function filterValueList(value) {
|
|
10643
|
+
return toList(value).filter((entry) => entry !== '');
|
|
10644
|
+
}
|
|
10589
10645
|
const toList = (value) => {
|
|
10590
10646
|
if (value === undefined)
|
|
10591
10647
|
return [];
|
|
@@ -18662,7 +18718,7 @@ class WrapperInputComponent extends ConfigComponent {
|
|
|
18662
18718
|
break;
|
|
18663
18719
|
}
|
|
18664
18720
|
case InputType.TOGGLE: {
|
|
18665
|
-
const { ToggleInputComponent } = await import('./magmonium-one-toggle-
|
|
18721
|
+
const { ToggleInputComponent } = await import('./magmonium-one-toggle-BuLdrdrD.mjs');
|
|
18666
18722
|
this.createDynamicComponent(seq, ToggleInputComponent, [], true);
|
|
18667
18723
|
break;
|
|
18668
18724
|
}
|
|
@@ -18674,12 +18730,12 @@ class WrapperInputComponent extends ConfigComponent {
|
|
|
18674
18730
|
break;
|
|
18675
18731
|
}
|
|
18676
18732
|
case InputType.PASSWORD: {
|
|
18677
|
-
const { PasswordInputComponent } = await import('./magmonium-one-password-
|
|
18733
|
+
const { PasswordInputComponent } = await import('./magmonium-one-password-BzPq0-OQ.mjs');
|
|
18678
18734
|
this.createDynamicComponent(seq, PasswordInputComponent);
|
|
18679
18735
|
break;
|
|
18680
18736
|
}
|
|
18681
18737
|
case InputType.OTP: {
|
|
18682
|
-
const { OtpInputComponent } = await import('./magmonium-one-otp-
|
|
18738
|
+
const { OtpInputComponent } = await import('./magmonium-one-otp-DpHvMD-U.mjs');
|
|
18683
18739
|
this.createDynamicComponent(seq, OtpInputComponent);
|
|
18684
18740
|
break;
|
|
18685
18741
|
}
|
|
@@ -33025,5 +33081,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
33025
33081
|
* Generated bundle index. Do not edit.
|
|
33026
33082
|
*/
|
|
33027
33083
|
|
|
33028
|
-
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, NAV_WIDGET_MAP 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, FILTER_GROUP_CONTEXT as a9, LOGIN_COMPONENT as aA, LOGIN_STORE as aB, LanguageComponent as aC, LogoComponent as aD, MAG_SOCKET_EVENT as aE, MHeroColorDirective as aF, MHeroComponent as aG, MODAL_REF as aH, MODAL_STORE_REF as aI, MRefDirective as aJ, MStepComponent as aK, MURL_PARAM as aL, MURL_SEP as aM, ManifestEnrichmentService as aN, MenuComponent as aO, ModalDirective as aP, ModalRef as aQ, ModalStore as aR, MoneyPipe as aS, MultiRangeInputComponent as aT, MurlUrlSerializer as aU, NAV_DEFAULT_MURL as aV, NAV_ID_SEP as aW, NAV_MAIN_BUTTONS as aX, NAV_SEGMENT_RE as aY, NAV_STORE_REF as aZ, NAV_WC_COMPONENTS as a_, FLEX_VARIANTS as aa, FOLDER_PICK_LISTENER as ab, FORM_ASSET_FOLDER as ac, FileService as ad, FileUploadDirective as ae, FileUploadInputComponent as af, FlexComponent as ag, FlexItemComponent as ah, FormGroupComponent as ai, FrameComponent as aj, FreezeService as ak, GRID_BREAKPOINTS as al, GetNavService as am, HeaderComponent$1 as an, HighlightDirective as ao, HttpService as ap, ICON_SOURCE as aq, IS_SIDE_PANEL as ar, IconComponent as as, ImgComponent as at, InputType as au, InstrumentScoreComponent as av, InterceptorObservables as aw, JumbotronComponent as ax, KeyValueComponent as ay, LAYOUT_ASSET_FOLDER as az, TextOutputComponent as b, SectionFilterComponent as b$, NavComponent as b0, NavDetailsComponent as b1, NavHeaderComponent as b2, NavMenuComponent as b3, NavStore as b4, NavTrailComponent as b5, NothingComponent as b6, NotificationElementComponent as b7, NotificationGroupComponent as b8, NotificationPopupComponent as b9, RatingInputComponent as bA, ReactiveElementComponent as bB, RemoteComponent as bC, RemoteLoaderService as bD, ResizeElementComponent as bE, RouteContainer as bF, RowComponent as bG, SEARCH_QUERY as bH, SEARCH_RESULTS_EVENT as bI, SECTION_ACCORDION_GROUP as bJ, SECTION_FORM_CONTEXT as bK, SHARED_ICONS as bL, SIZE_CONTEXT as bM, ScoreComponent as bN, ScrollComponent as bO, ScrollService as bP, SearchPanelComponent as bQ, SearchStore as bR, SearchUserPanelComponent as bS, SectionAccordionDirective as bT, SectionAccordionGroupDirective as bU, SectionBackComponent as bV, SectionBadgesComponent as bW, SectionButtonGroupComponent as bX, SectionCardComponent as bY, SectionCarouselComponent as bZ, SectionComponent as b_, NotificationService as ba, NotificationStore as bb, NotificationType as bc, NotificationWidgetComponent as bd, ONE_ASSET_BASE_URL as be, OPTIONS_SOURCE as bf, OVERLAY_WIDGETS as bg, OneApp as bh, OptionsSourceDirective as bi, OverlayBodyComponent as bj, OverlayRef as bk, OverlayService as bl, PLATFORM_BUTTON_NAV_IDS as bm, PLATFORM_EXTENSIBLE_NAV_IDS as bn, PLATFORM_NAV_MAP as bo, PLATFORM_ROOT_CHILDREN as bp, PaginationComponent as bq, PanelComponent as br, PercentagePipe as bs, PlaygroundComponent as bt, PositionDirective as bu, PwaInstallComponent as bv, ROOT_NAV$1 as bw, RadioGroupComponent as bx, RadioInputComponent as by, RangeInputComponent as bz, ButtonComponent as c, WC_ROUTE_CHANGED_EVENT as c$, SectionFilterGroupComponent as c0, SectionFooterComponent as c1, SectionFormComponent as c2, SectionFormItemComponent as c3, SectionHeaderComponent as c4, SectionHeroComponent as c5, SectionPaginationComponent as c6, SectionSearchComponent as c7, SectionStepperComponent as c8, SectionTabsComponent as c9, TechnicalMeterComponent as cA, TextInputComponent as cB, TextareaInputComponent as cC, ThemeComponent as cD, ThemeDataService as cE, ThemeService as cF, ThemeStore as cG, TimeAgoPipe as cH, TimelineComponent as cI, ToggleButtonComponent as cJ, ToggleInputComponent as cK, ToggleRadioInputComponent as cL, ToolTipDirective as cM, TooltipComponent as cN, TranslateService as cO, TreeGridComponent as cP, URL_SEP as cQ, USER_STORE_REF as cR, USER_TAB_MAP as cS, UlComponent as cT, UniverseComponent as cU, UserApiService as cV, UserAvatarComponent as cW, UserComponent as cX, UserNavComponent as cY, UserSettingsComponent as cZ, UserStore as c_, SectionToggleComponent as ca, SectionToggleItemDirective as cb, SelectableCardInputComponent as cc, SelectorDirective as cd, SettingsSearchBarComponent as ce, SettingsSearchService as cf, ShapeComponent as cg, SharedStoreRegistry as ch, SidePanelDirective as ci, Size as cj, SocketStore as ck, SortComponent as cl, StatComponent as cm, StepComponent as cn, StepperComponent as co, StepsComponent as cp, StorageService as cq, StrokeLinecap as cr, StrokeLinejoin as cs, SummaryComponent as ct, SvgGeneratorComponent as cu, SvgGeneratorService as cv, SvgService as cw, TOTAL_COLUMNS as cx, TRANSLATION_SOURCE as cy, TableComponent as cz, APP_CONTEXT_REF as d,
|
|
33029
|
-
//# sourceMappingURL=magmonium-one-magmonium-one-
|
|
33084
|
+
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, NAV_WIDGET_MAP 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, FILTER_GROUP_CONTEXT as a9, LOGIN_COMPONENT as aA, LOGIN_STORE as aB, LanguageComponent as aC, LogoComponent as aD, MAG_SOCKET_EVENT as aE, MHeroColorDirective as aF, MHeroComponent as aG, MODAL_REF as aH, MODAL_STORE_REF as aI, MRefDirective as aJ, MStepComponent as aK, MURL_PARAM as aL, MURL_SEP as aM, ManifestEnrichmentService as aN, MenuComponent as aO, ModalDirective as aP, ModalRef as aQ, ModalStore as aR, MoneyPipe as aS, MultiRangeInputComponent as aT, MurlUrlSerializer as aU, NAV_DEFAULT_MURL as aV, NAV_ID_SEP as aW, NAV_MAIN_BUTTONS as aX, NAV_SEGMENT_RE as aY, NAV_STORE_REF as aZ, NAV_WC_COMPONENTS as a_, FLEX_VARIANTS as aa, FOLDER_PICK_LISTENER as ab, FORM_ASSET_FOLDER as ac, FileService as ad, FileUploadDirective as ae, FileUploadInputComponent as af, FlexComponent as ag, FlexItemComponent as ah, FormGroupComponent as ai, FrameComponent as aj, FreezeService as ak, GRID_BREAKPOINTS as al, GetNavService as am, HeaderComponent$1 as an, HighlightDirective as ao, HttpService as ap, ICON_SOURCE as aq, IS_SIDE_PANEL as ar, IconComponent as as, ImgComponent as at, InputType as au, InstrumentScoreComponent as av, InterceptorObservables as aw, JumbotronComponent as ax, KeyValueComponent as ay, LAYOUT_ASSET_FOLDER as az, TextOutputComponent as b, SectionFilterComponent as b$, NavComponent as b0, NavDetailsComponent as b1, NavHeaderComponent as b2, NavMenuComponent as b3, NavStore as b4, NavTrailComponent as b5, NothingComponent as b6, NotificationElementComponent as b7, NotificationGroupComponent as b8, NotificationPopupComponent as b9, RatingInputComponent as bA, ReactiveElementComponent as bB, RemoteComponent as bC, RemoteLoaderService as bD, ResizeElementComponent as bE, RouteContainer as bF, RowComponent as bG, SEARCH_QUERY as bH, SEARCH_RESULTS_EVENT as bI, SECTION_ACCORDION_GROUP as bJ, SECTION_FORM_CONTEXT as bK, SHARED_ICONS as bL, SIZE_CONTEXT as bM, ScoreComponent as bN, ScrollComponent as bO, ScrollService as bP, SearchPanelComponent as bQ, SearchStore as bR, SearchUserPanelComponent as bS, SectionAccordionDirective as bT, SectionAccordionGroupDirective as bU, SectionBackComponent as bV, SectionBadgesComponent as bW, SectionButtonGroupComponent as bX, SectionCardComponent as bY, SectionCarouselComponent as bZ, SectionComponent as b_, NotificationService as ba, NotificationStore as bb, NotificationType as bc, NotificationWidgetComponent as bd, ONE_ASSET_BASE_URL as be, OPTIONS_SOURCE as bf, OVERLAY_WIDGETS as bg, OneApp as bh, OptionsSourceDirective as bi, OverlayBodyComponent as bj, OverlayRef as bk, OverlayService as bl, PLATFORM_BUTTON_NAV_IDS as bm, PLATFORM_EXTENSIBLE_NAV_IDS as bn, PLATFORM_NAV_MAP as bo, PLATFORM_ROOT_CHILDREN as bp, PaginationComponent as bq, PanelComponent as br, PercentagePipe as bs, PlaygroundComponent as bt, PositionDirective as bu, PwaInstallComponent as bv, ROOT_NAV$1 as bw, RadioGroupComponent as bx, RadioInputComponent as by, RangeInputComponent as bz, ButtonComponent as c, WC_ROUTE_CHANGED_EVENT as c$, SectionFilterGroupComponent as c0, SectionFooterComponent as c1, SectionFormComponent as c2, SectionFormItemComponent as c3, SectionHeaderComponent as c4, SectionHeroComponent as c5, SectionPaginationComponent as c6, SectionSearchComponent as c7, SectionStepperComponent as c8, SectionTabsComponent as c9, TechnicalMeterComponent as cA, TextInputComponent as cB, TextareaInputComponent as cC, ThemeComponent as cD, ThemeDataService as cE, ThemeService as cF, ThemeStore as cG, TimeAgoPipe as cH, TimelineComponent as cI, ToggleButtonComponent as cJ, ToggleInputComponent as cK, ToggleRadioInputComponent as cL, ToolTipDirective as cM, TooltipComponent as cN, TranslateService as cO, TreeGridComponent as cP, URL_SEP as cQ, USER_STORE_REF as cR, USER_TAB_MAP as cS, UlComponent as cT, UniverseComponent as cU, UserApiService as cV, UserAvatarComponent as cW, UserComponent as cX, UserNavComponent as cY, UserSettingsComponent as cZ, UserStore as c_, SectionToggleComponent as ca, SectionToggleItemDirective as cb, SelectableCardInputComponent as cc, SelectorDirective as cd, SettingsSearchBarComponent as ce, SettingsSearchService as cf, ShapeComponent as cg, SharedStoreRegistry as ch, SidePanelDirective as ci, Size as cj, SocketStore as ck, SortComponent as cl, StatComponent as cm, StepComponent as cn, StepperComponent as co, StepsComponent as cp, StorageService as cq, StrokeLinecap as cr, StrokeLinejoin as cs, SummaryComponent as ct, SvgGeneratorComponent as cu, SvgGeneratorService as cv, SvgService as cw, TOTAL_COLUMNS as cx, TRANSLATION_SOURCE as cy, TableComponent as cz, APP_CONTEXT_REF as d, isSize as d$, WC_SEARCH_GROUPS as d0, WIN_USER_TAB_HOOK as d1, WIN_USER_TAB_KEY as d2, WatermarkComponent as d3, WcRouterStore as d4, WrapperInputComponent as d5, anchorNavId as d6, applyColorsToElement as d7, bootstrapMagApp as d8, bootstrapPwaInstall as d9, generateClipPath as dA, generateTransform as dB, getClassList as dC, getProperty as dD, getScrollParent as dE, getTierFromPreviewPath as dF, getTreeGridRow as dG, getUniqueId as dH, getValue as dI, hasErrorComputed as dJ, hexToRgb as dK, hslToRgb$1 as dL, initMagmoniumApp as dM, initialNotificationState as dN, initialState$2 as dO, initials as dP, injectAuthenticate as dQ, injectInstallApp as dR, injectParentSize as dS, injectScrollSticky as dT, isButtonName as dU, isCancelledComputed as dV, isExtensiblePlatformNavId as dW, isJson as dX, isLoadingComputed as dY, isLocalhost as dZ, isPlatformNavId as d_, buildWcBaseUrl as da, calculateLuminance as db, calculateRanks as dc, cellText as dd, checkFilterCondition as de, childNavId as df, classListSignal as dg, coerceSize as dh, cornerEdge as di, cornerSide as dj, createMap as dk, createPlatformNavMap as dl, deriveAvatarGradient as dm, deriveContrastColor as dn, deriveOppositeColor as dp, derivePropertyName as dq, emailValidation as dr, evaluate as ds, evaluateBool as dt, filterList as du, filterOne as dv, filterValueList as dw, flattenTreeGridRows as dx, formatBadgeCount as dy, fullName as dz, ASSET_BASE_URL as e, setTreeGridChildren as e$, isTierPreview as e0, isUrlLocalhost as e1, isValidNavId as e2, isValidNavSegment as e3, isWebComponent as e4, linkToId as e5, linkToNav as e6, loadingActions as e7, mInterceptor as e8, manualValidation as e9, provideAppContext as eA, provideMagAppConfig as eB, provideMagWcConfig as eC, provideMagWcRoutes as eD, provideModalComponents as eE, provideMurlUrlSerializer as eF, provideNavWidgets as eG, provideOverlayWidgets as eH, providePlatformNavWidgets as eI, provideSearch as eJ, provideSizeContext as eK, provideUserTabs as eL, publicGuard as eM, readFieldPatterns as eN, renderAddress as eO, requiredValidation as eP, resolveConfigAsset as eQ, resolveIconSize as eR, resolvePallet as eS, resolvePatternRules as eT, resolveSize as eU, rgbToHex as eV, rgbToHsl as eW, rowHasChildren as eX, samePatterns as eY, segmentsToNavId as eZ, setProperty as e_, matchFieldValidation as ea, maxLengthValidation as eb, maxValidation as ec, mergePlatformNav as ed, mergeUnique as ee, mergeUniqueBy as ef, mergeUniqueWith as eg, minAgeValidation as eh, minLengthValidation as ei, minValidation as ej, miniMarkToHtml as ek, navIdChain as el, navIdFor as em, navIdSegment as en, navIdToRoutePath as eo, navIdToSegments as ep, navToId as eq, parentNavId as er, parseAddress as es, parseColor as et, parsePatternNames as eu, patternValidation as ev, patternsValidation as ew, platformNavWidgets as ex, privateGuard as ey, processImageToSvg as ez, AccordionBodyDirective as f, settingsWidgets as f0, shouldShowBadge as f1, splitNavId as f2, stringToColor as f3, toAttrBool as f4, toAttrNumber as f5, toCssLength as f6, toHostNavId as f7, toLength$1 as f8, toLocalNavId as f9, toggleTreeGridRow as fa, unfetchedPlatformNav as fb, urlValidation as fc, 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 };
|
|
33085
|
+
//# sourceMappingURL=magmonium-one-magmonium-one-39v09CW3.mjs.map
|