@magmonium/one 0.2.26 → 0.2.27

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.
@@ -1028,13 +1028,32 @@ type DraggableState = {
1028
1028
  declare class DraggableDirective {
1029
1029
  mDraggable: _angular_core.ModelSignal<Draggable>;
1030
1030
  handleSelector: _angular_core.InputSignal<string | undefined>;
1031
+ /**
1032
+ * The bounds, read at drag time and never written into `mDraggable`.
1033
+ *
1034
+ * They used to be merged in by a setter, which lost them the moment a parent
1035
+ * replaced its Draggable — a `linkedSignal` recomputed from the value the
1036
+ * drag itself writes back, which is what both Ranges do. Angular memoizes an
1037
+ * inline object literal in a template, so `[min]="{ x: 0, y: 3 }"` is the
1038
+ * same reference on the next pass and its setter never fires again to put
1039
+ * the bound back. The config then had no `max`, `isWithinBoundary` fell
1040
+ * through to `window.innerWidth`, and the thumb slid off the track.
1041
+ *
1042
+ * A bound is what the caller says the drag may not pass, not state the drag
1043
+ * mutates — so it stays an input and the two never share an object.
1044
+ */
1045
+ readonly min: _angular_core.InputSignal<Position | undefined>;
1046
+ readonly max: _angular_core.InputSignal<Position | undefined>;
1031
1047
  readonly dragStart: _angular_core.OutputEmitterRef<void>;
1032
1048
  readonly dragEnd: _angular_core.OutputEmitterRef<void>;
1033
1049
  protected readonly cursor: _angular_core.Signal<"ew-resize" | "ns-resize" | "move">;
1034
1050
  protected state: DraggableState;
1035
1051
  set pos(position: Position);
1036
- set max(max: Position);
1037
- set min(min: Position);
1052
+ /**
1053
+ * The config a move is clamped against: the bounds on the tag win, and a
1054
+ * caller that carries them inside its own Draggable keeps working.
1055
+ */
1056
+ private readonly bounded;
1038
1057
  protected handleMouseDown(event: MouseEvent): void;
1039
1058
  protected handleMouseMove(event: MouseEvent): void;
1040
1059
  protected handleMouseUp(event: MouseEvent): void;
@@ -1042,7 +1061,7 @@ declare class DraggableDirective {
1042
1061
  protected handleTouchMove(event: TouchEvent): void;
1043
1062
  protected handleTouchEnd(event: TouchEvent): void;
1044
1063
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DraggableDirective, never>;
1045
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DraggableDirective, "[mDraggable]", never, { "mDraggable": { "alias": "mDraggable"; "required": true; "isSignal": true; }; "handleSelector": { "alias": "handleSelector"; "required": false; "isSignal": true; }; "pos": { "alias": "pos"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; }, { "mDraggable": "mDraggableChange"; "dragStart": "dragStart"; "dragEnd": "dragEnd"; }, never, never, true, never>;
1064
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DraggableDirective, "[mDraggable]", never, { "mDraggable": { "alias": "mDraggable"; "required": true; "isSignal": true; }; "handleSelector": { "alias": "handleSelector"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "pos": { "alias": "pos"; "required": false; }; }, { "mDraggable": "mDraggableChange"; "dragStart": "dragStart"; "dragEnd": "dragEnd"; }, never, never, true, never>;
1046
1065
  }
1047
1066
 
1048
1067
  interface DragListReorder {
@@ -2616,11 +2635,32 @@ declare const FILTER_VARIANTS: readonly FilterVariant[];
2616
2635
  /** The default a Filter falls back to, and the one variant left off the tag. */
2617
2636
  declare const DEFAULT_FILTER_VARIANT: FilterVariant;
2618
2637
  /**
2619
- * Whether this variant's key carries a list rather than one value. `range`
2620
- * counts: a pair is a list, which is what keeps `FilterValue` unchanged and
2621
- * `filterList` working over every variant that has ever shipped.
2638
+ * How many numbers a `range` Filter picks. `range` takes two and its key
2639
+ * carries the `[min, max]` pair; `single` takes one and its key carries that
2640
+ * number alone one thumb on the slider, one box beneath it.
2641
+ *
2642
+ * A second axis rather than a fourth FilterVariant: both modes are authored
2643
+ * the same way — bounds, never an OptionSet — and open the same
2644
+ * panel. What differs is how many answers come back, which is why the author
2645
+ * picks it on a toggle beside the bounds rather than on the variant dropdown.
2646
+ * Ignored by the option-picking variants, which have no bounds to halve.
2647
+ */
2648
+ type FilterRangeMode = 'range' | 'single';
2649
+ declare const FILTER_RANGE_MODES: readonly FilterRangeMode[];
2650
+ /** The mode a `range` Filter falls back to, and the one left off the tag. */
2651
+ declare const DEFAULT_FILTER_RANGE_MODE: FilterRangeMode;
2652
+ /**
2653
+ * Whether this Filter's key carries a list rather than one value. A `range`
2654
+ * counts, because a pair is a list — which is what keeps `FilterValue`
2655
+ * unchanged and `filterList` working over every variant that has ever shipped.
2656
+ *
2657
+ * `mode` is the exception a pair-shaped variant needs: a `range` in `single`
2658
+ * mode picks one number, so its key carries that number the way `single` does
2659
+ * rather than a one-entry list nothing would read.
2622
2660
  */
2623
- declare const filterHoldsList: (variant: FilterVariant) => boolean;
2661
+ declare const filterHoldsList: (variant: FilterVariant, mode?: FilterRangeMode) => boolean;
2662
+ /** Whether this Filter draws one thumb rather than two. */
2663
+ declare const filterHoldsOneBound: (variant: FilterVariant, mode?: FilterRangeMode) => boolean;
2624
2664
  /** Whether this variant is authored with bounds rather than with options. */
2625
2665
  declare const filterHoldsRange: (variant: FilterVariant) => boolean;
2626
2666
  /** Whether this variant picks from an OptionSet. The complement of the above. */
@@ -2679,7 +2719,12 @@ declare class SectionFilterComponent {
2679
2719
  /** A `range` variant's bounds. Ignored by the option-picking variants. */
2680
2720
  readonly min: _angular_core.InputSignal<number | undefined>;
2681
2721
  readonly max: _angular_core.InputSignal<number | undefined>;
2682
- readonly step: _angular_core.InputSignal<number | undefined>;
2722
+ /**
2723
+ * How many numbers a `range` Filter picks: two by default, one under
2724
+ * `single`, where its key carries that number rather than a pair
2725
+ * (CONTEXT.md FilterRangeMode). Ignored by the option-picking variants.
2726
+ */
2727
+ readonly mode: _angular_core.InputSignal<FilterRangeMode>;
2683
2728
  /**
2684
2729
  * The glyph on the dropdown toggle, an IconAsset name. Unset keeps the
2685
2730
  * `adjust` tuning icon every Filter wears by default — this replaces that
@@ -2718,20 +2763,25 @@ declare class SectionFilterComponent {
2718
2763
  protected readonly toggleConfig: _angular_core.Signal<Button>;
2719
2764
  protected readonly chipConfig: _angular_core.Signal<Partial<Badge>>;
2720
2765
  private readonly dropdownRef;
2721
- private readonly assetStore;
2722
- private readonly assetOptionsResource;
2766
+ private readonly namedOptions;
2723
2767
  protected readonly resolvedOptions: _angular_core.Signal<FilterOption[]>;
2724
2768
  protected readonly hasSelection: _angular_core.Signal<boolean>;
2725
2769
  protected readonly selectedOptions: _angular_core.Signal<FilterOption[]>;
2726
- /** The pair drawn as one chip, or `undefined` for the option variants. */
2770
+ /**
2771
+ * The numeric answer drawn as one chip, or `undefined` for the option
2772
+ * variants. One chip whether it is a pair or a lone number: a range is one
2773
+ * answer, and its × clears the whole key.
2774
+ */
2727
2775
  protected readonly rangeLabel: _angular_core.Signal<string | undefined>;
2728
2776
  protected readonly selectorConfig: _angular_core.Signal<SelectorConfig<unknown>>;
2729
2777
  protected readonly selectOption: (opt: FilterOption) => void;
2730
2778
  /**
2731
2779
  * A bound moved. Stays open whichever half was typed: a range is two numbers
2732
- * and closing on the first would take the box away mid-answer.
2780
+ * and closing on the first would take the box away mid-answer. `single` mode
2781
+ * stays open too — one thumb is dragged, and a drag that closed the panel
2782
+ * under the cursor could not be corrected.
2733
2783
  */
2734
- protected readonly writeRange: (next: readonly [number, number] | undefined) => void;
2784
+ protected readonly writeRange: (next: readonly number[] | undefined) => void;
2735
2785
  protected readonly clearRange: () => void;
2736
2786
  protected readonly removeOption: (val: string | number) => void;
2737
2787
  /**
@@ -2741,7 +2791,7 @@ declare class SectionFilterComponent {
2741
2791
  private readonly write;
2742
2792
  constructor();
2743
2793
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SectionFilterComponent, never>;
2744
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SectionFilterComponent, "m-section-filter", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "optionsAsset": { "alias": "optionsAsset"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "filterChange": "filterChange"; }, never, never, true, never>;
2794
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SectionFilterComponent, "m-section-filter", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "optionsAsset": { "alias": "optionsAsset"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "filterChange": "filterChange"; }, never, never, true, never>;
2745
2795
  }
2746
2796
 
2747
2797
  /**
@@ -2761,7 +2811,7 @@ interface FilterGroupMember {
2761
2811
  readonly variant: Signal<FilterVariant>;
2762
2812
  readonly min: Signal<number | undefined>;
2763
2813
  readonly max: Signal<number | undefined>;
2764
- readonly step: Signal<number | undefined>;
2814
+ readonly mode: Signal<FilterRangeMode>;
2765
2815
  }
2766
2816
  /**
2767
2817
  * The group's side of the contract. A Filter injects this optionally: with one
@@ -2783,8 +2833,11 @@ interface FilterGroupContext {
2783
2833
  */
2784
2834
  valueOf(name: string): readonly (string | number)[];
2785
2835
  toggle(name: string, option: FilterOption, variant: FilterVariant): void;
2786
- /** A `range` member's new pair; `undefined` deletes the key. */
2787
- setRange(name: string, next: readonly [number, number] | undefined): void;
2836
+ /**
2837
+ * A `range` member's new pair, or the one number its `single` mode picks;
2838
+ * `undefined` deletes the key.
2839
+ */
2840
+ setRange(name: string, next: readonly number[] | undefined): void;
2788
2841
  remove(name: string, value: string | number): void;
2789
2842
  }
2790
2843
  declare const FILTER_GROUP_CONTEXT: InjectionToken<FilterGroupContext>;
@@ -2832,7 +2885,7 @@ declare class SectionFilterMenuComponent {
2832
2885
  private readonly activeSelected;
2833
2886
  private readonly activeMin;
2834
2887
  private readonly activeMax;
2835
- private readonly activeStep;
2888
+ private readonly activeMode;
2836
2889
  constructor();
2837
2890
  private readonly pick;
2838
2891
  private readonly setRange;
@@ -2877,7 +2930,6 @@ declare class SectionFilterGroupComponent {
2877
2930
  private readonly members;
2878
2931
  protected readonly isDesignMode: boolean;
2879
2932
  private readonly sectionContext;
2880
- private readonly selectorDir;
2881
2933
  protected readonly squeezed: _angular_core.Signal<boolean>;
2882
2934
  protected readonly resolvedPadding: _angular_core.Signal<boolean>;
2883
2935
  protected readonly resolvedPaddingX: _angular_core.Signal<boolean>;
@@ -2915,12 +2967,19 @@ declare class SectionFilterGroupComponent {
2915
2967
  * own default.
2916
2968
  */
2917
2969
  private readonly variantOf;
2970
+ /**
2971
+ * A `range` member's thumb count, which decides whether its key carries a
2972
+ * pair or one number. Read off the member rather than passed with the value,
2973
+ * the way `variantOf` is — the group owns the selection and the member owns
2974
+ * how it was authored.
2975
+ */
2976
+ private readonly modeOf;
2918
2977
  private readonly write;
2919
2978
  private readonly toggle;
2920
2979
  /**
2921
- * A `range` member's new pair, or the deletion of its key. Goes through the
2922
- * same `write` every other variant does one selection, one owner, whatever
2923
- * shape the key holds (ADR 0025).
2980
+ * A `range` member's new pair or the one number its `single` mode picks,
2981
+ * or the deletion of its key. Goes through the same `write` every other
2982
+ * variant does; `write` asks the member which shape its key holds (ADR 0025).
2924
2983
  */
2925
2984
  private readonly setRange;
2926
2985
  readonly context: FilterGroupContext;
@@ -3468,6 +3527,20 @@ declare class SectionTabsComponent extends ConfigComponent<TabGroup> implements
3468
3527
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<SectionTabsComponent, "m-section-tabs", never, { "xs": { "alias": "xs"; "required": false; "isSignal": true; }; "sm": { "alias": "sm"; "required": false; "isSignal": true; }; "md": { "alias": "md"; "required": false; "isSignal": true; }; "lg": { "alias": "lg"; "required": false; "isSignal": true; }; "xl": { "alias": "xl"; "required": false; "isSignal": true; }; "xxl": { "alias": "xxl"; "required": false; "isSignal": true; }; "sticky": { "alias": "sticky"; "required": false; "isSignal": true; }; "inverse": { "alias": "inverse"; "required": false; "isSignal": true; }; }, { "action": "action"; }, never, never, true, never>;
3469
3528
  }
3470
3529
 
3530
+ /**
3531
+ * One option's row, with the configs both controls need built once per option
3532
+ * rather than per change detection — an inline config object is a new
3533
+ * reference every check, and `no-inline-config` refuses one anyway.
3534
+ *
3535
+ * Both are built whatever the variant: a flat object rather than a union arm,
3536
+ * because the `assets:wc` build runs without `strict` and a union does not
3537
+ * narrow there.
3538
+ */
3539
+ type PanelRow = {
3540
+ readonly option: FilterOption;
3541
+ readonly checkbox: Partial<Input>;
3542
+ readonly radio: Partial<RadioInput>;
3543
+ };
3471
3544
  declare class SectionFilterPanelComponent {
3472
3545
  readonly options: _angular_core.InputSignal<readonly FilterOption[]>;
3473
3546
  readonly selected: _angular_core.InputSignal<readonly (string | number)[]>;
@@ -3479,7 +3552,15 @@ declare class SectionFilterPanelComponent {
3479
3552
  readonly variant: _angular_core.InputSignal<FilterVariant>;
3480
3553
  readonly action: _angular_core.OutputEmitterRef<FilterOption>;
3481
3554
  protected readonly multiple: _angular_core.Signal<boolean>;
3482
- protected readonly isSelected: (val: string) => boolean;
3555
+ /**
3556
+ * Unique per panel instance: a radio's `name` is what groups its buttons in
3557
+ * the DOM, and its `id` is what a label points at. Two panels open at once
3558
+ * — a Filter's own dropdown and a group's drill-in — would otherwise share
3559
+ * both and steer each other's rings.
3560
+ */
3561
+ private readonly uid;
3562
+ protected readonly rows: _angular_core.Signal<PanelRow[]>;
3563
+ protected readonly isSelected: (val: string | number) => boolean;
3483
3564
  protected readonly selectOption: (opt: FilterOption) => void;
3484
3565
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SectionFilterPanelComponent, never>;
3485
3566
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<SectionFilterPanelComponent, "m-section-filter-panel", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, { "action": "action"; }, never, never, true, never>;
@@ -3489,16 +3570,25 @@ type BoundConfig = Partial<Input> & {
3489
3570
  type: InputType.NUMBER;
3490
3571
  min?: number;
3491
3572
  max?: number;
3492
- step?: number;
3493
3573
  };
3494
3574
  /**
3495
- * The panel a `range` Filter opens: two numeric bounds, and nothing else.
3575
+ * The panel a `range` Filter opens: a slider over the authored bounds, and the
3576
+ * numeric boxes under it. Two thumbs and two boxes by default; one of each in
3577
+ * `single` mode, where the Filter picks one number rather than a pair
3578
+ * (CONTEXT.md FilterRangeMode). One panel for both, because the modes differ
3579
+ * only in how many answers come back — the bounds and the fallbacks are the
3580
+ * same authoring either way.
3581
+ *
3582
+ * Both, not one. The slider is how a range is *picked* — dragging is the
3583
+ * gesture the shape asks for, and the fill says at a glance how much of the
3584
+ * span is being kept. The boxes are how it is *stated*: a thumb cannot land on
3585
+ * an exact number at 260px, and they are the only affordance a keyboard has.
3586
+ * They drive one value between them, so a drag retypes the boxes and a typed
3587
+ * bound moves the thumb.
3496
3588
  *
3497
- * Two inputs rather than the `m-multi-range` slider beside them because this
3498
- * panel opens inside a selector 260px wide, and narrower still inside a
3499
- * squeezed FilterGroup's drill-in — a slider needs a pixel width to be usable
3500
- * and has no keyboard story at that size. The authored bounds clamp the boxes
3501
- * and stand in as their placeholders rather than being drawn to scale.
3589
+ * The slider needs real bounds to draw against and falls back to 0–100 when
3590
+ * the author gave none, which is the same span `m-multi-range` assumes
3591
+ * everywhere else.
3502
3592
  *
3503
3593
  * The two boxes are prefixed `≥` and `≤` rather than labelled with words. A
3504
3594
  * bound reads the same in every locale, and libs/one's TranslationAssets carry
@@ -3513,20 +3603,63 @@ declare class SectionFilterRangePanelComponent {
3513
3603
  readonly value: _angular_core.InputSignal<readonly (string | number)[]>;
3514
3604
  readonly min: _angular_core.InputSignal<number | undefined>;
3515
3605
  readonly max: _angular_core.InputSignal<number | undefined>;
3516
- readonly step: _angular_core.InputSignal<number | undefined>;
3606
+ /** One thumb or two. `range` by default (CONTEXT.md FilterRangeMode). */
3607
+ readonly mode: _angular_core.InputSignal<FilterRangeMode>;
3517
3608
  /** The Filter's own heading, already a TranslationAsset key. */
3518
3609
  readonly label: _angular_core.InputSignal<string>;
3519
3610
  /**
3520
- * The new pair, or `undefined` once both boxes are empty which is what
3521
- * deletes the key rather than writing a pair of blanks into it.
3611
+ * What was picked — the pair under `range`, the one number under `single`
3612
+ * or `undefined` once the boxes are empty, which is what deletes the key
3613
+ * rather than writing blanks into it.
3614
+ *
3615
+ * A list either way, not a union of a pair and a number: the `assets:wc`
3616
+ * build runs without `strict`, where a union arm does not narrow, and the
3617
+ * Filter is the one that knows which shape its key carries.
3522
3618
  */
3523
- readonly action: _angular_core.OutputEmitterRef<readonly [number, number] | undefined>;
3619
+ readonly action: _angular_core.OutputEmitterRef<readonly number[] | undefined>;
3620
+ protected readonly isSingle: _angular_core.Signal<boolean>;
3524
3621
  protected readonly from: _angular_core.Signal<number | undefined>;
3525
3622
  protected readonly to: _angular_core.Signal<number | undefined>;
3526
3623
  protected readonly fromText: _angular_core.Signal<string>;
3527
3624
  protected readonly toText: _angular_core.Signal<string>;
3625
+ /**
3626
+ * Where the thumbs sit. An empty half is not a thumb in the middle of
3627
+ * nowhere — it rests on the bound it falls back to, which is exactly what
3628
+ * that half filters from.
3629
+ */
3630
+ protected readonly sliderValue: _angular_core.Signal<number[]>;
3631
+ /**
3632
+ * No label on the slider: in the Filter's own dropdown the bar above it
3633
+ * already carries the Filter's name, and in a squeezed group's drill-in the
3634
+ * back row does. `label` stays an input because `filterPanelOf` binds it for
3635
+ * both panels.
3636
+ */
3637
+ protected readonly sliderConfig: _angular_core.Signal<MultiRangeInput>;
3638
+ /**
3639
+ * `single` mode's one thumb. Empty rests on the low bound rather than in the
3640
+ * middle of nowhere — the same fallback each half of a pair makes.
3641
+ */
3642
+ protected readonly oneSliderText: _angular_core.Signal<string>;
3643
+ protected readonly oneText: _angular_core.Signal<string>;
3644
+ /** No label, for the reason `sliderConfig` carries none. */
3645
+ protected readonly oneSliderConfig: _angular_core.Signal<RangeInput>;
3646
+ /**
3647
+ * No `≥` prefix: one box is not a half of anything, and the bound it clamps
3648
+ * to is already the placeholder.
3649
+ */
3650
+ protected readonly oneConfig: _angular_core.Signal<BoundConfig>;
3528
3651
  protected readonly fromConfig: _angular_core.Signal<BoundConfig>;
3529
3652
  protected readonly toConfig: _angular_core.Signal<BoundConfig>;
3653
+ /**
3654
+ * A drag moved a thumb. Goes through the same `emit` a typed bound does —
3655
+ * one pair leaves this panel however it was picked.
3656
+ */
3657
+ protected readonly writeSlider: (next: number[]) => void;
3658
+ /** The single thumb moved. `m-range` speaks text, as every text input does. */
3659
+ protected readonly writeOneSlider: (raw: string) => void;
3660
+ protected readonly writeOne: (raw: string) => void;
3661
+ private readonly lowBound;
3662
+ private readonly highBound;
3530
3663
  protected readonly writeFrom: (raw: string) => void;
3531
3664
  protected readonly writeTo: (raw: string) => void;
3532
3665
  /**
@@ -3542,8 +3675,13 @@ declare class SectionFilterRangePanelComponent {
3542
3675
  * the `undefined` that drops the key.
3543
3676
  */
3544
3677
  private readonly emit;
3678
+ /**
3679
+ * `single` mode's one answer. An emptied box drops the key the way an
3680
+ * emptied pair does — there is no bound left to filter from.
3681
+ */
3682
+ private readonly emitOne;
3545
3683
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SectionFilterRangePanelComponent, never>;
3546
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SectionFilterRangePanelComponent, "m-section-filter-range-panel", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; }, { "action": "action"; }, never, never, true, never>;
3684
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SectionFilterRangePanelComponent, "m-section-filter-range-panel", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; }, { "action": "action"; }, never, never, true, never>;
3547
3685
  }
3548
3686
 
3549
3687
  /**
@@ -3559,11 +3697,15 @@ type FilterPanelIo = {
3559
3697
  readonly selected: Signal<readonly (string | number)[]>;
3560
3698
  readonly min: Signal<number | undefined>;
3561
3699
  readonly max: Signal<number | undefined>;
3562
- readonly step: Signal<number | undefined>;
3700
+ /** A `range` variant's thumb count. Ignored by the option-picking ones. */
3701
+ readonly mode: Signal<FilterRangeMode>;
3563
3702
  /** An option-picking variant picked one. */
3564
3703
  readonly pick: (option: FilterOption) => void;
3565
- /** A `range` variant moved a bound; `undefined` once both boxes are empty. */
3566
- readonly setRange: (next: readonly [number, number] | undefined) => void;
3704
+ /**
3705
+ * A `range` variant moved a bound — the pair, or the one number `single`
3706
+ * mode picks; `undefined` once the boxes are empty.
3707
+ */
3708
+ readonly setRange: (next: readonly number[] | undefined) => void;
3567
3709
  };
3568
3710
  /** A component and the bindings that drive it, ready for `createComponent`. */
3569
3711
  type FilterPanel = {
@@ -4233,6 +4375,15 @@ declare class RangeInputComponent extends BaseTextInputComponent<RangeInput> {
4233
4375
  private readonly _track;
4234
4376
  protected readonly _trackWidth: _angular_core.WritableSignal<number>;
4235
4377
  protected readonly _TRACK_HALF_H = 3;
4378
+ /**
4379
+ * Measured live rather than once. The track shares its row with the value
4380
+ * readout and opens inside panels that animate in, and a width read mid
4381
+ * animation is the scaled one — `getBoundingClientRect` counts transforms
4382
+ * where a ResizeObserver's box does not. A stale width is a thumb that stops
4383
+ * short of the track's end or, before the bounds became inputs on the
4384
+ * Draggable, ran clean past it.
4385
+ */
4386
+ private readonly _measure;
4236
4387
  thumbDraggable: _angular_core.WritableSignal<Draggable>;
4237
4388
  readonly _displayValue: _angular_core.Signal<number>;
4238
4389
  constructor();
@@ -4261,6 +4412,15 @@ declare class MultiRangeInputComponent extends BaseArrayInputComponent {
4261
4412
  private readonly _track;
4262
4413
  protected readonly _trackWidth: _angular_core.WritableSignal<number>;
4263
4414
  protected readonly _TRACK_HALF_H = 3;
4415
+ /**
4416
+ * Measured live rather than once. The track fills its row and opens inside
4417
+ * panels that animate in, and a width read mid
4418
+ * animation is the scaled one — `getBoundingClientRect` counts transforms
4419
+ * where a ResizeObserver's box does not. A stale width is a thumb that stops
4420
+ * short of the track's end or, before the bounds became inputs on the
4421
+ * Draggable, ran clean past it.
4422
+ */
4423
+ private readonly _measure;
4264
4424
  readonly minThumb: _angular_core.WritableSignal<Draggable>;
4265
4425
  readonly maxThumb: _angular_core.WritableSignal<Draggable>;
4266
4426
  readonly fillWidth: _angular_core.Signal<number>;
@@ -8792,5 +8952,5 @@ interface AuthResult {
8792
8952
  }
8793
8953
  declare function injectAuthenticate(): () => Promise<AuthResult>;
8794
8954
 
8795
- export { ACCESS_DOMAINS, APP_CONTEXT_REF, ASSET_BASE_URL, AccordionBodyDirective, AccordionComponent, AccordionGroupComponent, ActionComponent, AnimatedGraphsComponent, AppCardComponent, AppRelationType, AppTileComponent, AssetStore, AssetUrlPipe, Assets, AuthActivityPageComponent, AuthApiService, AuthStore, AutosizeDirective, BadgeComponent, BandingComponent, BaseArrayInputComponent, BaseRootWebComponent, BaseWebComponent, ButtonComponent, ButtonGroupComponent, COMPONENT_INPUT_REGISTRY, CardComponent, CardWrapperComponent, CarouselComponent, ChartComponent, CheckboxInputComponent, ClearableInputComponent, ColComponent, ColorPickerInputComponent, CommentItemComponent, CommentsApiService, CommentsComponent, CommentsStore, ComponentInputComponent, ComponentStepperComponent, ConfigComponent, ConfirmComponent, ContextMenuComponent, CustomIconClass, CustomIconEditComponent, DEFAULT_FILTER_VARIANT, DEFAULT_SIZE, DashboardCardComponent, DateInputComponent, DatePickerComponent, DeviceService, DomService, Domain, DotGridComponent, DragListDirective, DragListItemDirective, DraggableDirective, DropdownInputComponent, FILTER_GROUP_CONTEXT, FILTER_VARIANTS, FLEX_VARIANTS, FOLDER_PICK_LISTENER, FORM_ASSET_FOLDER, FileService, FileUploadDirective, FileUploadInputComponent, FlexComponent, FlexItemComponent, FormGroupComponent, FrameComponent, FreezeService, GRID_BREAKPOINTS, GetNavService, HeaderComponent, HighlightDirective, HttpService, ICON_SOURCE, IS_DESIGN_MODE, IS_SIDE_PANEL, IconComponent, ImgComponent, InputType, InstrumentScoreComponent, InterceptorObservables, JumbotronComponent, KeyValueComponent, LAYOUT_ASSET_FOLDER, LOGIN_COMPONENT, LOGIN_STORE, LanguageComponent, LogoComponent, MAG_SOCKET_EVENT, MHeroColorDirective, MHeroComponent, MODAL_REF, MODAL_STORE_REF, MRefDirective, MStepComponent, MURL_PARAM, MURL_SEP, ManifestEnrichmentService, MenuComponent, ModalDirective, ModalRef, ModalStore, MoneyPipe, MultiRangeInputComponent, MurlUrlSerializer, NAV_DEFAULT_MURL, NAV_ID_SEP, NAV_MAIN_BUTTONS, NAV_SEGMENT_RE, NAV_STORE_REF, NAV_WC_COMPONENTS, NAV_WIDGET_MAP, NavComponent, NavDetailsComponent, NavHeaderComponent, NavMenuComponent, NavStore, NavTrailComponent, NothingComponent, NotificationElementComponent, NotificationGroupComponent, NotificationPopupComponent, NotificationService, NotificationStore, NotificationType, NotificationWidgetComponent, ONE_ASSET_BASE_URL, OPTIONS_SOURCE, OVERLAY_WIDGETS, OneApp, OptionsSourceDirective, OverlayBodyComponent, OverlayRef, OverlayService, PLATFORM_BUTTON_NAV_IDS, PLATFORM_EXTENSIBLE_NAV_IDS, PLATFORM_NAV_MAP, PLATFORM_ROOT_CHILDREN, PaginationComponent, PanelComponent, PercentagePipe, PlaygroundComponent, PositionDirective, PwaInstallComponent, ROOT_NAV, RadioGroupComponent, RadioInputComponent, RangeInputComponent, RatingInputComponent, ReactiveElementComponent, RemoteComponent, RemoteLoaderService, ResizeElementComponent, RouteContainer, RowComponent, SEARCH_QUERY, SEARCH_RESULTS_EVENT, SECTION_ACCORDION_GROUP, SECTION_FORM_CONTEXT, SHARED_ICONS, SIZE_CONTEXT, ScoreComponent, ScrollComponent, ScrollService, SearchPanelComponent, SearchStore, SearchUserPanelComponent, SectionAccordionDirective, SectionAccordionGroupDirective, SectionBackComponent, SectionBadgesComponent, SectionButtonGroupComponent, SectionCardComponent, SectionCarouselComponent, SectionComponent, SectionFilterComponent, SectionFilterGroupComponent, SectionFilterMenuComponent, SectionFilterPanelComponent, SectionFilterRangePanelComponent, SectionFooterComponent, SectionFormComponent, SectionFormItemComponent, SectionHeaderComponent, SectionHeroComponent, SectionPaginationComponent, SectionSearchComponent, SectionStepperComponent, SectionTabsComponent, SectionToggleComponent, SectionToggleItemDirective, SelectableCardInputComponent, SelectorDirective, SettingsSearchBarComponent, SettingsSearchService, ShapeComponent, SharedStoreRegistry, SidePanelDirective, Size, SocketStore, SortComponent, StatComponent, StepComponent, StepperComponent, StepsComponent, StorageService, StrokeLinecap, StrokeLinejoin, SummaryComponent, SvgGeneratorComponent, SvgGeneratorService, SvgService, TOTAL_COLUMNS, TRANSLATION_SOURCE, TableComponent, TableFilterCondition, TechnicalMeterComponent, TextInputComponent, TextOutputComponent, TextareaInputComponent, ThemeComponent, ThemeDataService, ThemeService, ThemeStore, TimeAgoPipe, TimelineComponent, ToggleButtonComponent, ToggleInputComponent, ToggleRadioInputComponent, ToolTipDirective, TooltipComponent, TranslatePipe, TranslateService, TreeGridComponent, URL_SEP, USER_STORE_REF, USER_TAB_MAP, UlComponent, UniverseComponent, UserApiService, UserAvatarComponent, UserComponent, UserNavComponent, UserSettingsComponent, UserStore, WC_ROUTE_CHANGED_EVENT, WC_SEARCH_GROUPS, WIN_USER_TAB_HOOK, WIN_USER_TAB_KEY, WatermarkComponent, WcRouterStore, WrapperInputComponent, anchorNavId, applyColorsToElement, bootstrapMagApp, bootstrapPwaInstall, buildWcBaseUrl, calculateLuminance, calculateRanks, cellText, checkFilterCondition, childNavId, classListSignal, coerceSize, cornerEdge, cornerSide, createMap, createPlatformNavMap, deriveAvatarGradient, deriveContrastColor, deriveOppositeColor, derivePropertyName, emailValidation, evaluate, evaluateBool, filterHoldsList, filterHoldsOptions, filterHoldsRange, filterList, filterOne, filterPanelOf, filterPanelWidth, filterRange, filterValueList, filterValues, flattenTreeGridRows, formatBadgeCount, fullName, generateClipPath, generateTransform, getClassList, getProperty, getScrollParent, getTierFromPreviewPath, getTreeGridRow, getUniqueId, getValue, hasErrorComputed, hexToRgb, hslToRgb, initMagmoniumApp, initialNotificationState, initialState, initials, injectAuthenticate, injectInstallApp, injectParentSize, injectScrollSticky, isButtonName, isCancelledComputed, isExtensiblePlatformNavId, isJson, isLoadingComputed, isLocalhost, isPlatformNavId, isSize, isTierPreview, isUrlLocalhost, isValidNavId, isValidNavSegment, isWebComponent, linkToId, linkToNav, loadingActions, mInterceptor, manualValidation, matchFieldValidation, maxLengthValidation, maxValidation, mergePlatformNav, mergeUnique, mergeUniqueBy, mergeUniqueWith, minAgeValidation, minLengthValidation, minValidation, miniMarkToHtml, navIdChain, navIdFor, navIdSegment, navIdToRoutePath, navIdToSegments, navToId, parentNavId, parseAddress, parseColor, parsePatternNames, patternValidation, patternsValidation, platformNavWidgets, privateGuard, processImageToSvg, provideAppContext, provideMagAppConfig, provideMagWcConfig, provideMagWcRoutes, provideModalComponents, provideMurlUrlSerializer, provideNavWidgets, provideOverlayWidgets, providePlatformNavWidgets, provideSearch, provideSizeContext, provideUserTabs, publicGuard, readFieldPatterns, renderAddress, requiredValidation, resolveConfigAsset, resolveIconSize, resolvePallet, resolvePatternRules, resolveSize, rgbToHex, rgbToHsl, rowHasChildren, samePatterns, segmentsToNavId, setProperty, setTreeGridChildren, settingsWidgets, shouldShowBadge, splitNavId, stringToColor, toAttrBool, toAttrNumber, toCssLength, toHostNavId, toLength, toLocalNavId, toggleTreeGridRow, unfetchedPlatformNav, urlValidation };
8796
- export type { Accordion, AccordionGroup, AccordionVariant, ActionNotification, Align, AnimatedGraphConfig, AnimatedGraphCurveInput, AppCardData, AppCardInputs, AppCardVariant, AppContextRef, AppHint, AppManifest, AppRelation, AppTileData, AuthEmailCreate404Response, AuthEmailCreate422Response, AuthEmailCreateRequest, AuthEmailCreateResponse, AuthIdentitiesListResponse, AuthOtpCreateRequest, AuthOtpCreateResponse, AuthOtpUpdateRequest, AuthOtpUpdateResponse, AuthPasswordCreateRequest, AuthPasswordCreateResponse, AuthPasswordCreateResponseTokens, AuthPasswordCreateResponseUser, AuthPasswordUpdateRequest, AuthPasswordUpdateResponse, AuthPasswordUpdateResponseTokens, AuthPasswordUpdateResponseUser, AuthResult, AuthSignupCreateRequest, AuthSignupCreateRequestUser, AuthSignupCreateResponse, AuthSignupCreateResponseTokens, AuthState, AuthUser, Badge, BadgePosition, BadgeVariant, BandingConfig, BreadCrumb, BreadcrumbTrail, Button, ButtonGroup, Carousel, CarouselIndicatorPosition, CarouselIndicatorShape, CarouselPosition, CarouselSlide, CellChangeEvent, CellClickEvent, Chart, ChartSeries, ColBreakpoint, ColSpan, ColorInput, ColorPallet, ColorPropertyType, ColumnDef, Comment, CommentItem, ComponentInput, Config, ContextMenu, ContextMenuEvent, CropData, Cursor, CustomIcon, DateInput, Direction$2 as Direction, DotGridVariant, DragListReorder, Draggable, DraggableState, DropdownInput, DropdownOption, ElementType, FieldPatterns, FileUploadConfig, FileUploadEvent, FileUploadInput, FilterGroupContext, FilterGroupMember, FilterOption, FilterPanel, FilterPanelIo, FilterSelectionMap, FilterValue, FilterVariant, FlatTreeGridRow, FlexAlign, FlexAlignSelf, FlexConfig, FlexDirection, FlexItemConfig, FlexJustify, FlexVariant, FolderPickListener, Form, FormState, Genre, GridAlignX, GridAlignY, GridBreakpoint, Header, HeaderLevel, HeldShelf, HeroDataRecord, HeroDimensions, HslColor, Icon, Input, InputModel, InputSpan, InputState, InputValue, Jumbotron, JumbotronAnimation, KeyValueVariant, LoadingActionsApi, LoginStoreContract, LogoVariant, MagAppConfigOptions, MagWcConfigOptions, ManualErrorValidator, MenuItem, Modal, ModalOverlayConfig, ModalStoreRef, ModalStoreTrigger, ModalTrigger, MoneySystem, MultiRangeInput, Nav, NavIdKey, NavKind, NavMap, NavPresentation, NavStoreRef, NavWidgetConfig, NavWidgetEntry, NavWidgetMap, Notification, NotificationSeverity, NotificationState, NotificationUser, NumberInput, Option, OtpInput, OverlayConfig, OverlayWidgetLoader, OverlayWidgetMap, PageChangeEvent, Pagination, PaginationWindow, PanelOverlayConfig, PanelTrigger, PasswordInput, PatternRule, Position, QueryParams, QueryValue, RadioGroupInput, RadioInput, RangeInput, RatingInput, RemoteSelectorConfig, ResolvedUserTab, RgbColor, SearchChangeEvent, SearchInput, SearchResult, SearchSourceGroup, SearchState, SectionAccordion, SectionAccordionGroup, SectionAccordionGroupContext, SectionAccordionRef, SectionButtonGroupConfig, SectionCarousel, SectionCarouselContext, SectionCarouselItem, SectionFilterGroupConfig, SectionFormConfig, SectionFormContext, SectionHero, SectionHeroVariant, SectionToggleItem, SectionToggleItemContext, SelectableCardContext, SelectableCardInput, SelectableCardItem, SelectionAction, SelectionActionEvent, SelectionChangeEvent, SelectorConfig, Shape, ShapeType, ShapeVariant, SharedToken, SharedUser, SizeContext, SizeDeclarer, SocketMessage, Sort, SortChange, SortChangeEvent, SortOption, SortOrder, SqueezeMode, StatAlign, StatCornerEdge, StatCornerPosition, StatCornerSide, StatSurface, StatVariant, Step, Stepper, StepperResponsiveConfig, StepperStep, Steps, StickyBehavior, Summary, SummaryAction, SummaryRow, SummaryRowType, Svg, SvgGenOptions, SvgGeneratorCoreOptions, SvgGeneratorEditOptions, TabGroup, TableConfig, TableFilterDef, TextInput, TextNotification, TextOutputAlign, TextOutputConfig, TextOutputVariant, TextareaInput, Timeline, TimelineItem, ToggleInput, ToggleRadioInput, Tokens, TreeGridCellClickEvent, TreeGridLoadChildrenEvent, TreeGridRow, TreeGridRowSelectEvent, TreeGridToggleEvent, UniverseColorScheme, User, UserStoreRef, Version, Watermark, WebComponentConfig, WeeklyData };
8955
+ export { ACCESS_DOMAINS, APP_CONTEXT_REF, ASSET_BASE_URL, AccordionBodyDirective, AccordionComponent, AccordionGroupComponent, ActionComponent, AnimatedGraphsComponent, AppCardComponent, AppRelationType, AppTileComponent, AssetStore, AssetUrlPipe, Assets, AuthActivityPageComponent, AuthApiService, AuthStore, AutosizeDirective, BadgeComponent, BandingComponent, BaseArrayInputComponent, BaseRootWebComponent, BaseWebComponent, ButtonComponent, ButtonGroupComponent, COMPONENT_INPUT_REGISTRY, CardComponent, CardWrapperComponent, CarouselComponent, ChartComponent, CheckboxInputComponent, ClearableInputComponent, ColComponent, ColorPickerInputComponent, CommentItemComponent, CommentsApiService, CommentsComponent, CommentsStore, ComponentInputComponent, ComponentStepperComponent, ConfigComponent, ConfirmComponent, ContextMenuComponent, CustomIconClass, CustomIconEditComponent, DEFAULT_FILTER_RANGE_MODE, DEFAULT_FILTER_VARIANT, DEFAULT_SIZE, DashboardCardComponent, DateInputComponent, DatePickerComponent, DeviceService, DomService, Domain, DotGridComponent, DragListDirective, DragListItemDirective, DraggableDirective, DropdownInputComponent, FILTER_GROUP_CONTEXT, FILTER_RANGE_MODES, FILTER_VARIANTS, FLEX_VARIANTS, FOLDER_PICK_LISTENER, FORM_ASSET_FOLDER, FileService, FileUploadDirective, FileUploadInputComponent, FlexComponent, FlexItemComponent, FormGroupComponent, FrameComponent, FreezeService, GRID_BREAKPOINTS, GetNavService, HeaderComponent, HighlightDirective, HttpService, ICON_SOURCE, IS_DESIGN_MODE, IS_SIDE_PANEL, IconComponent, ImgComponent, InputType, InstrumentScoreComponent, InterceptorObservables, JumbotronComponent, KeyValueComponent, LAYOUT_ASSET_FOLDER, LOGIN_COMPONENT, LOGIN_STORE, LanguageComponent, LogoComponent, MAG_SOCKET_EVENT, MHeroColorDirective, MHeroComponent, MODAL_REF, MODAL_STORE_REF, MRefDirective, MStepComponent, MURL_PARAM, MURL_SEP, ManifestEnrichmentService, MenuComponent, ModalDirective, ModalRef, ModalStore, MoneyPipe, MultiRangeInputComponent, MurlUrlSerializer, NAV_DEFAULT_MURL, NAV_ID_SEP, NAV_MAIN_BUTTONS, NAV_SEGMENT_RE, NAV_STORE_REF, NAV_WC_COMPONENTS, NAV_WIDGET_MAP, NavComponent, NavDetailsComponent, NavHeaderComponent, NavMenuComponent, NavStore, NavTrailComponent, NothingComponent, NotificationElementComponent, NotificationGroupComponent, NotificationPopupComponent, NotificationService, NotificationStore, NotificationType, NotificationWidgetComponent, ONE_ASSET_BASE_URL, OPTIONS_SOURCE, OVERLAY_WIDGETS, OneApp, OptionsSourceDirective, OverlayBodyComponent, OverlayRef, OverlayService, PLATFORM_BUTTON_NAV_IDS, PLATFORM_EXTENSIBLE_NAV_IDS, PLATFORM_NAV_MAP, PLATFORM_ROOT_CHILDREN, PaginationComponent, PanelComponent, PercentagePipe, PlaygroundComponent, PositionDirective, PwaInstallComponent, ROOT_NAV, RadioGroupComponent, RadioInputComponent, RangeInputComponent, RatingInputComponent, ReactiveElementComponent, RemoteComponent, RemoteLoaderService, ResizeElementComponent, RouteContainer, RowComponent, SEARCH_QUERY, SEARCH_RESULTS_EVENT, SECTION_ACCORDION_GROUP, SECTION_FORM_CONTEXT, SHARED_ICONS, SIZE_CONTEXT, ScoreComponent, ScrollComponent, ScrollService, SearchPanelComponent, SearchStore, SearchUserPanelComponent, SectionAccordionDirective, SectionAccordionGroupDirective, SectionBackComponent, SectionBadgesComponent, SectionButtonGroupComponent, SectionCardComponent, SectionCarouselComponent, SectionComponent, SectionFilterComponent, SectionFilterGroupComponent, SectionFilterMenuComponent, SectionFilterPanelComponent, SectionFilterRangePanelComponent, SectionFooterComponent, SectionFormComponent, SectionFormItemComponent, SectionHeaderComponent, SectionHeroComponent, SectionPaginationComponent, SectionSearchComponent, SectionStepperComponent, SectionTabsComponent, SectionToggleComponent, SectionToggleItemDirective, SelectableCardInputComponent, SelectorDirective, SettingsSearchBarComponent, SettingsSearchService, ShapeComponent, SharedStoreRegistry, SidePanelDirective, Size, SocketStore, SortComponent, StatComponent, StepComponent, StepperComponent, StepsComponent, StorageService, StrokeLinecap, StrokeLinejoin, SummaryComponent, SvgGeneratorComponent, SvgGeneratorService, SvgService, TOTAL_COLUMNS, TRANSLATION_SOURCE, TableComponent, TableFilterCondition, TechnicalMeterComponent, TextInputComponent, TextOutputComponent, TextareaInputComponent, ThemeComponent, ThemeDataService, ThemeService, ThemeStore, TimeAgoPipe, TimelineComponent, ToggleButtonComponent, ToggleInputComponent, ToggleRadioInputComponent, ToolTipDirective, TooltipComponent, TranslatePipe, TranslateService, TreeGridComponent, URL_SEP, USER_STORE_REF, USER_TAB_MAP, UlComponent, UniverseComponent, UserApiService, UserAvatarComponent, UserComponent, UserNavComponent, UserSettingsComponent, UserStore, WC_ROUTE_CHANGED_EVENT, WC_SEARCH_GROUPS, WIN_USER_TAB_HOOK, WIN_USER_TAB_KEY, WatermarkComponent, WcRouterStore, WrapperInputComponent, anchorNavId, applyColorsToElement, bootstrapMagApp, bootstrapPwaInstall, buildWcBaseUrl, calculateLuminance, calculateRanks, cellText, checkFilterCondition, childNavId, classListSignal, coerceSize, cornerEdge, cornerSide, createMap, createPlatformNavMap, deriveAvatarGradient, deriveContrastColor, deriveOppositeColor, derivePropertyName, emailValidation, evaluate, evaluateBool, filterHoldsList, filterHoldsOneBound, filterHoldsOptions, filterHoldsRange, filterList, filterOne, filterPanelOf, filterPanelWidth, filterRange, filterValueList, filterValues, flattenTreeGridRows, formatBadgeCount, fullName, generateClipPath, generateTransform, getClassList, getProperty, getScrollParent, getTierFromPreviewPath, getTreeGridRow, getUniqueId, getValue, hasErrorComputed, hexToRgb, hslToRgb, initMagmoniumApp, initialNotificationState, initialState, initials, injectAuthenticate, injectInstallApp, injectParentSize, injectScrollSticky, isButtonName, isCancelledComputed, isExtensiblePlatformNavId, isJson, isLoadingComputed, isLocalhost, isPlatformNavId, isSize, isTierPreview, isUrlLocalhost, isValidNavId, isValidNavSegment, isWebComponent, linkToId, linkToNav, loadingActions, mInterceptor, manualValidation, matchFieldValidation, maxLengthValidation, maxValidation, mergePlatformNav, mergeUnique, mergeUniqueBy, mergeUniqueWith, minAgeValidation, minLengthValidation, minValidation, miniMarkToHtml, navIdChain, navIdFor, navIdSegment, navIdToRoutePath, navIdToSegments, navToId, parentNavId, parseAddress, parseColor, parsePatternNames, patternValidation, patternsValidation, platformNavWidgets, privateGuard, processImageToSvg, provideAppContext, provideMagAppConfig, provideMagWcConfig, provideMagWcRoutes, provideModalComponents, provideMurlUrlSerializer, provideNavWidgets, provideOverlayWidgets, providePlatformNavWidgets, provideSearch, provideSizeContext, provideUserTabs, publicGuard, readFieldPatterns, renderAddress, requiredValidation, resolveConfigAsset, resolveIconSize, resolvePallet, resolvePatternRules, resolveSize, rgbToHex, rgbToHsl, rowHasChildren, samePatterns, segmentsToNavId, setProperty, setTreeGridChildren, settingsWidgets, shouldShowBadge, splitNavId, stringToColor, toAttrBool, toAttrNumber, toCssLength, toHostNavId, toLength, toLocalNavId, toggleTreeGridRow, unfetchedPlatformNav, urlValidation };
8956
+ export type { Accordion, AccordionGroup, AccordionVariant, ActionNotification, Align, AnimatedGraphConfig, AnimatedGraphCurveInput, AppCardData, AppCardInputs, AppCardVariant, AppContextRef, AppHint, AppManifest, AppRelation, AppTileData, AuthEmailCreate404Response, AuthEmailCreate422Response, AuthEmailCreateRequest, AuthEmailCreateResponse, AuthIdentitiesListResponse, AuthOtpCreateRequest, AuthOtpCreateResponse, AuthOtpUpdateRequest, AuthOtpUpdateResponse, AuthPasswordCreateRequest, AuthPasswordCreateResponse, AuthPasswordCreateResponseTokens, AuthPasswordCreateResponseUser, AuthPasswordUpdateRequest, AuthPasswordUpdateResponse, AuthPasswordUpdateResponseTokens, AuthPasswordUpdateResponseUser, AuthResult, AuthSignupCreateRequest, AuthSignupCreateRequestUser, AuthSignupCreateResponse, AuthSignupCreateResponseTokens, AuthState, AuthUser, Badge, BadgePosition, BadgeVariant, BandingConfig, BreadCrumb, BreadcrumbTrail, Button, ButtonGroup, Carousel, CarouselIndicatorPosition, CarouselIndicatorShape, CarouselPosition, CarouselSlide, CellChangeEvent, CellClickEvent, Chart, ChartSeries, ColBreakpoint, ColSpan, ColorInput, ColorPallet, ColorPropertyType, ColumnDef, Comment, CommentItem, ComponentInput, Config, ContextMenu, ContextMenuEvent, CropData, Cursor, CustomIcon, DateInput, Direction$2 as Direction, DotGridVariant, DragListReorder, Draggable, DraggableState, DropdownInput, DropdownOption, ElementType, FieldPatterns, FileUploadConfig, FileUploadEvent, FileUploadInput, FilterGroupContext, FilterGroupMember, FilterOption, FilterPanel, FilterPanelIo, FilterRangeMode, FilterSelectionMap, FilterValue, FilterVariant, FlatTreeGridRow, FlexAlign, FlexAlignSelf, FlexConfig, FlexDirection, FlexItemConfig, FlexJustify, FlexVariant, FolderPickListener, Form, FormState, Genre, GridAlignX, GridAlignY, GridBreakpoint, Header, HeaderLevel, HeldShelf, HeroDataRecord, HeroDimensions, HslColor, Icon, Input, InputModel, InputSpan, InputState, InputValue, Jumbotron, JumbotronAnimation, KeyValueVariant, LoadingActionsApi, LoginStoreContract, LogoVariant, MagAppConfigOptions, MagWcConfigOptions, ManualErrorValidator, MenuItem, Modal, ModalOverlayConfig, ModalStoreRef, ModalStoreTrigger, ModalTrigger, MoneySystem, MultiRangeInput, Nav, NavIdKey, NavKind, NavMap, NavPresentation, NavStoreRef, NavWidgetConfig, NavWidgetEntry, NavWidgetMap, Notification, NotificationSeverity, NotificationState, NotificationUser, NumberInput, Option, OtpInput, OverlayConfig, OverlayWidgetLoader, OverlayWidgetMap, PageChangeEvent, Pagination, PaginationWindow, PanelOverlayConfig, PanelTrigger, PasswordInput, PatternRule, Position, QueryParams, QueryValue, RadioGroupInput, RadioInput, RangeInput, RatingInput, RemoteSelectorConfig, ResolvedUserTab, RgbColor, SearchChangeEvent, SearchInput, SearchResult, SearchSourceGroup, SearchState, SectionAccordion, SectionAccordionGroup, SectionAccordionGroupContext, SectionAccordionRef, SectionButtonGroupConfig, SectionCarousel, SectionCarouselContext, SectionCarouselItem, SectionFilterGroupConfig, SectionFormConfig, SectionFormContext, SectionHero, SectionHeroVariant, SectionToggleItem, SectionToggleItemContext, SelectableCardContext, SelectableCardInput, SelectableCardItem, SelectionAction, SelectionActionEvent, SelectionChangeEvent, SelectorConfig, Shape, ShapeType, ShapeVariant, SharedToken, SharedUser, SizeContext, SizeDeclarer, SocketMessage, Sort, SortChange, SortChangeEvent, SortOption, SortOrder, SqueezeMode, StatAlign, StatCornerEdge, StatCornerPosition, StatCornerSide, StatSurface, StatVariant, Step, Stepper, StepperResponsiveConfig, StepperStep, Steps, StickyBehavior, Summary, SummaryAction, SummaryRow, SummaryRowType, Svg, SvgGenOptions, SvgGeneratorCoreOptions, SvgGeneratorEditOptions, TabGroup, TableConfig, TableFilterDef, TextInput, TextNotification, TextOutputAlign, TextOutputConfig, TextOutputVariant, TextareaInput, Timeline, TimelineItem, ToggleInput, ToggleRadioInput, Tokens, TreeGridCellClickEvent, TreeGridLoadChildrenEvent, TreeGridRow, TreeGridRowSelectEvent, TreeGridToggleEvent, UniverseColorScheme, User, UserStoreRef, Version, Watermark, WebComponentConfig, WeeklyData };