@ethlete/components 0.1.0-next.12 → 0.1.0-next.13

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.
@@ -40,8 +40,8 @@ declare class ButtonDirective {
40
40
  }
41
41
 
42
42
  declare class FocusRingDirective {
43
- disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
44
43
  private styleManager;
44
+ disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
45
45
  protected active: _angular_core.WritableSignal<boolean>;
46
46
  constructor();
47
47
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FocusRingDirective, never>;
@@ -372,10 +372,6 @@ declare class CheckboxComponent {
372
372
  declare const CHECKBOX_IMPORTS: readonly [typeof CheckboxComponent, typeof CheckboxDirective];
373
373
 
374
374
  declare class ChoiceFieldComponent {
375
- private errorContentRef;
376
- private hintContentRef;
377
- private errorAnimatableRef;
378
- private hintAnimatableRef;
379
375
  support: {
380
376
  errorColorTheme: _ethlete_core.ColorTheme;
381
377
  formFieldDir: FormFieldDirective;
@@ -393,6 +389,10 @@ declare class ChoiceFieldComponent {
393
389
  visibleErrors: _angular_core.Signal<readonly _angular_forms_signals.ValidationError.WithOptionalFieldTree[]>;
394
390
  supportHeight: _angular_core.Signal<number>;
395
391
  };
392
+ private errorContentRef;
393
+ private hintContentRef;
394
+ private errorAnimatableRef;
395
+ private hintAnimatableRef;
396
396
  canAnimate: {
397
397
  state: _angular_core.Signal<boolean>;
398
398
  };
@@ -464,6 +464,8 @@ declare class FormFieldComponent {
464
464
  private provideSurface;
465
465
  private parentSurfaceProvider;
466
466
  protected formFieldDir: FormFieldDirective;
467
+ protected errorColorTheme: _ethlete_core.ColorTheme;
468
+ private surfaceThemes;
467
469
  appearance: _angular_core.InputSignal<FormFieldAppearance>;
468
470
  fill: _angular_core.InputSignal<FormFieldFill>;
469
471
  labelMode: _angular_core.InputSignal<FormFieldLabelMode>;
@@ -473,8 +475,6 @@ declare class FormFieldComponent {
473
475
  prefixEl: _angular_core.Signal<ElementRef<HTMLElement> | undefined>;
474
476
  protected errorAnimatable: _angular_core.Signal<AnimatableDirective | undefined>;
475
477
  protected hintAnimatable: _angular_core.Signal<AnimatableDirective | undefined>;
476
- protected errorColorTheme: _ethlete_core.ColorTheme;
477
- private surfaceThemes;
478
478
  private errorDimensions;
479
479
  private hintDimensions;
480
480
  private prefixDimensions;
@@ -594,6 +594,19 @@ declare class RichTextEditorDirective implements FormValueControl<string>, FormF
594
594
  private formField;
595
595
  private destroyRef;
596
596
  private document;
597
+ /** @internal */
598
+ editorDom: {
599
+ root: _angular_core.WritableSignal<HTMLElement | null>;
600
+ getSelection: () => EditableSelection | null;
601
+ closestWithin: (node: Node | null, selector: string) => HTMLElement | null;
602
+ markStates: () => RichTextMarkStates | null;
603
+ toggleInline: (tag: InlineTag) => void;
604
+ toggleList: (listTag: ListTag) => void;
605
+ applyLink: (href: string) => void;
606
+ removeLink: () => void;
607
+ insertToken: (node: Node) => void;
608
+ handleBackspace: () => boolean;
609
+ };
597
610
  value: _angular_core.ModelSignal<string>;
598
611
  touched: _angular_core.ModelSignal<boolean>;
599
612
  disabled: _angular_core.InputSignal<boolean>;
@@ -619,19 +632,6 @@ declare class RichTextEditorDirective implements FormValueControl<string>, FormF
619
632
  linkActive: _angular_core.WritableSignal<boolean>;
620
633
  /** @internal */
621
634
  lastEmittedMarkdown: string | null;
622
- /** @internal */
623
- editorDom: {
624
- root: _angular_core.WritableSignal<HTMLElement | null>;
625
- getSelection: () => EditableSelection | null;
626
- closestWithin: (node: Node | null, selector: string) => HTMLElement | null;
627
- markStates: () => RichTextMarkStates | null;
628
- toggleInline: (tag: InlineTag) => void;
629
- toggleList: (listTag: ListTag) => void;
630
- applyLink: (href: string) => void;
631
- removeLink: () => void;
632
- insertToken: (node: Node) => void;
633
- handleBackspace: () => boolean;
634
- };
635
635
  constructor();
636
636
  activate(): void;
637
637
  syncFromDom(): void;
@@ -668,7 +668,7 @@ declare class RichTextEditorFloatingToolbarComponent {
668
668
  private pointerSelectingInContent;
669
669
  constructor();
670
670
  private selectableRange;
671
- private onDocumentPointerUp;
671
+ private finishContentPointerSelection;
672
672
  private evaluate;
673
673
  private reposition;
674
674
  private start;
@@ -684,9 +684,9 @@ declare class RichTextEditorComponent {
684
684
  private document;
685
685
  private editable;
686
686
  constructor();
687
- protected onInput(): void;
688
- protected onKeydown(event: KeyboardEvent): void;
689
- protected onBeforeInput(event: InputEvent): void;
687
+ protected syncValueFromDom(): void;
688
+ protected interceptBackspaceKey(event: KeyboardEvent): void;
689
+ protected interceptFormattingCommand(event: InputEvent): void;
690
690
  private renderExternalValue;
691
691
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<RichTextEditorComponent, never>;
692
692
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<RichTextEditorComponent, "et-rich-text-editor", never, {}, {}, never, never, true, [{ directive: typeof RichTextEditorDirective; inputs: { "value": "value"; "disabled": "disabled"; "readonly": "readonly"; "hidden": "hidden"; "invalid": "invalid"; "errors": "errors"; "required": "required"; "name": "name"; "placeholder": "placeholder"; }; outputs: { "valueChange": "valueChange"; "touchedChange": "touchedChange"; }; }]>;
@@ -754,10 +754,6 @@ declare class SelectionListDirective implements SelectionListDirectiveBase, Form
754
754
  }
755
755
 
756
756
  declare class CheckboxGroupComponent {
757
- private errorContentRef;
758
- private hintContentRef;
759
- private errorAnimatableRef;
760
- private hintAnimatableRef;
761
757
  support: {
762
758
  errorColorTheme: _ethlete_core.ColorTheme;
763
759
  formFieldDir: FormFieldDirective;
@@ -775,6 +771,10 @@ declare class CheckboxGroupComponent {
775
771
  visibleErrors: _angular_core.Signal<readonly _angular_forms_signals.ValidationError.WithOptionalFieldTree[]>;
776
772
  supportHeight: _angular_core.Signal<number>;
777
773
  };
774
+ private errorContentRef;
775
+ private hintContentRef;
776
+ private errorAnimatableRef;
777
+ private hintAnimatableRef;
778
778
  canAnimate: {
779
779
  state: _angular_core.Signal<boolean>;
780
780
  };
@@ -825,10 +825,6 @@ declare class CheckboxOptionComponent {
825
825
  }
826
826
 
827
827
  declare class RadioGroupComponent {
828
- private errorContentRef;
829
- private hintContentRef;
830
- private errorAnimatableRef;
831
- private hintAnimatableRef;
832
828
  support: {
833
829
  errorColorTheme: _ethlete_core.ColorTheme;
834
830
  formFieldDir: FormFieldDirective;
@@ -846,6 +842,10 @@ declare class RadioGroupComponent {
846
842
  visibleErrors: _angular_core.Signal<readonly _angular_forms_signals.ValidationError.WithOptionalFieldTree[]>;
847
843
  supportHeight: _angular_core.Signal<number>;
848
844
  };
845
+ private errorContentRef;
846
+ private hintContentRef;
847
+ private errorAnimatableRef;
848
+ private hintAnimatableRef;
849
849
  canAnimate: {
850
850
  state: _angular_core.Signal<boolean>;
851
851
  };
@@ -864,10 +864,6 @@ declare class RadioComponent {
864
864
  }
865
865
 
866
866
  declare class SegmentedButtonGroupComponent {
867
- private errorContentRef;
868
- private hintContentRef;
869
- private errorAnimatableRef;
870
- private hintAnimatableRef;
871
867
  support: {
872
868
  errorColorTheme: _ethlete_core.ColorTheme;
873
869
  formFieldDir: FormFieldDirective;
@@ -885,6 +881,10 @@ declare class SegmentedButtonGroupComponent {
885
881
  visibleErrors: _angular_core.Signal<readonly _angular_forms_signals.ValidationError.WithOptionalFieldTree[]>;
886
882
  supportHeight: _angular_core.Signal<number>;
887
883
  };
884
+ private errorContentRef;
885
+ private hintContentRef;
886
+ private errorAnimatableRef;
887
+ private hintAnimatableRef;
888
888
  canAnimate: {
889
889
  state: _angular_core.Signal<boolean>;
890
890
  };
@@ -968,6 +968,14 @@ type GridLayoutEntry = {
968
968
  id: string;
969
969
  position: GridItemPosition;
970
970
  };
971
+ /**
972
+ * Contract for a grid item's `actionsComponent`: a component that receives the item's `itemId` and
973
+ * `data` as inputs. Both are always provided by the grid.
974
+ */
975
+ type GridItemActionsComponent<TData = unknown> = Type<{
976
+ itemId: InputSignal<string>;
977
+ data: InputSignal<TData>;
978
+ }>;
971
979
  type GridComponentRegistration<TData = unknown> = {
972
980
  component: Type<{
973
981
  data: InputSignal<TData>;
@@ -1005,13 +1013,14 @@ type GridDragState = {
1005
1013
  };
1006
1014
  declare class GridDirective {
1007
1015
  private injector;
1016
+ private renderer;
1017
+ private gridConfig;
1008
1018
  breakpoints: _angular_core.InputSignal<GridBreakpointConfig[]>;
1009
1019
  rowHeight: _angular_core.InputSignal<number>;
1010
1020
  gap: _angular_core.InputSignal<number>;
1011
1021
  initialItems: _angular_core.InputSignal<GridItemConfig[]>;
1012
1022
  readOnly: _angular_core.InputSignalWithTransform<boolean, unknown>;
1013
1023
  layoutChange: _angular_core.OutputEmitterRef<GridSerializedState>;
1014
- private gridConfig;
1015
1024
  registrations: _angular_core.Signal<GridComponentRegistration[]>;
1016
1025
  private dimensions;
1017
1026
  private itemConfigs;
@@ -1020,7 +1029,9 @@ declare class GridDirective {
1020
1029
  private constraintsRegistry;
1021
1030
  private resizeBaseLayout;
1022
1031
  private itemElements;
1032
+ private contentElements;
1023
1033
  private ghostElement;
1034
+ private lastFlipAt;
1024
1035
  private rectSnapshot;
1025
1036
  containerWidth: _angular_core.Signal<number>;
1026
1037
  activeBreakpoint: _angular_core.Signal<string>;
@@ -1036,12 +1047,17 @@ declare class GridDirective {
1036
1047
  constraints: GridItemConstraints;
1037
1048
  }): void;
1038
1049
  unregisterItem(id: string): void;
1050
+ /**
1051
+ * The item's inner content wrapper. Used by the counter-scaled resize FLIP so the
1052
+ * box can scale while the content takes the inverse scale and stays undistorted.
1053
+ */
1054
+ registerContentElement(id: string, el: HTMLElement): void;
1039
1055
  setGhostElement(el: HTMLElement | null): void;
1040
1056
  getConstraints(id: string): GridItemConstraints;
1041
1057
  snapshotRects(): void;
1042
1058
  animateLayoutTransition(options?: {
1043
1059
  excludeIds?: Set<string>;
1044
- scaleIds?: Set<string>;
1060
+ durationMs?: number;
1045
1061
  }): void;
1046
1062
  beginDrag(itemId: string): void;
1047
1063
  updateDragTarget(targetPosition: GridItemPosition): void;
@@ -1060,6 +1076,7 @@ declare class GridDirective {
1060
1076
  private updateLayoutForCurrentBreakpoint;
1061
1077
  private updateItemLayout;
1062
1078
  private emitLayoutChange;
1079
+ private animateCounterScaled;
1063
1080
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridDirective, never>;
1064
1081
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GridDirective, "[etGrid]", ["etGrid"], { "breakpoints": { "alias": "breakpoints"; "required": false; "isSignal": true; }; "rowHeight": { "alias": "rowHeight"; "required": false; "isSignal": true; }; "gap": { "alias": "gap"; "required": false; "isSignal": true; }; "initialItems": { "alias": "initialItems"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; }, { "layoutChange": "layoutChange"; }, never, never, true, never>;
1065
1082
  }
@@ -1096,6 +1113,8 @@ declare class GridDragDirective {
1096
1113
  private renderer;
1097
1114
  private dragStartClient;
1098
1115
  private dragPixelOffset;
1116
+ private dragMoveCount;
1117
+ private lastGhostMoveAt;
1099
1118
  protected dragTransform: _angular_core.Signal<string>;
1100
1119
  constructor();
1101
1120
  private applyFixed;
@@ -1107,12 +1126,20 @@ declare class GridDragDirective {
1107
1126
  declare class GridResizeDirective {
1108
1127
  private grid;
1109
1128
  private gridItem;
1129
+ private injector;
1130
+ private elementRef;
1131
+ private renderer;
1110
1132
  isResizing: _angular_core.WritableSignal<boolean>;
1111
1133
  resizeEdges: _angular_core.Signal<ResizeEdge[]>;
1112
1134
  private resizeStartPos;
1135
+ private liftedRect;
1136
+ private lastSnap;
1113
1137
  beginResize(): void;
1114
1138
  updateResize(event: ResizeMoveEvent): void;
1115
1139
  finishResize(): void;
1140
+ private currentFixedRect;
1141
+ private applyFixed;
1142
+ private releaseFixed;
1116
1143
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridResizeDirective, never>;
1117
1144
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GridResizeDirective, "[etGridResize]", never, {}, {}, never, never, true, never>;
1118
1145
  }
@@ -1123,12 +1150,9 @@ type GridConfig = {
1123
1150
  registrations: GridComponentRegistration[];
1124
1151
  interactiveAriaLabel: string;
1125
1152
  readonlyAriaLabel: string;
1126
- dragHandleAriaLabel: string;
1153
+ removeActionAriaLabel: string;
1127
1154
  transformer: (text: string, locale: string) => string;
1128
- /** Replaces the default drag handle for all registered items. Receives `data` and `itemId` as inputs. */
1129
- dragHandleComponent?: Type<unknown>;
1130
- /** Replaces the default ✕ button for all registered items. Receives `data` and `itemId` as inputs. */
1131
- actionsComponent?: Type<unknown>;
1155
+ actionsComponent?: GridItemActionsComponent | null;
1132
1156
  };
1133
1157
  declare const provideGridConfig: (valueOverride?: Partial<GridConfig> | undefined) => _angular_core.Provider[];
1134
1158
  declare const injectGridConfig: {
@@ -1161,12 +1185,10 @@ declare const fromGridPosition: (pos: GridItemPosition) => {
1161
1185
 
1162
1186
  declare class GridComponent {
1163
1187
  grid: GridDirective;
1164
- private ghostRef;
1165
1188
  private gridConfig;
1166
1189
  private locale;
1167
- protected isReadOnly: _angular_core.Signal<boolean>;
1168
- protected dragHandleComponent: _angular_core.Signal<_angular_core.Type<unknown> | undefined>;
1169
- protected actionsComponent: _angular_core.Signal<_angular_core.Type<unknown> | undefined>;
1190
+ private ghostRef;
1191
+ protected actionsComponent: _angular_core.Signal<_ethlete_components.GridItemActionsComponent | null>;
1170
1192
  protected registeredItems: _angular_core.Signal<{
1171
1193
  item: _ethlete_components.GridItemConfig;
1172
1194
  reg: _ethlete_components.GridComponentRegistration;
@@ -1187,18 +1209,34 @@ declare class GridItemComponent {
1187
1209
  private parentSurfaceProvider;
1188
1210
  gridDrag: GridDragDirective;
1189
1211
  gridResize: GridResizeDirective;
1212
+ private surfaceThemes;
1190
1213
  ariaLabel: _angular_core.InputSignal<string>;
1191
1214
  removed: _angular_core.OutputEmitterRef<void>;
1192
- private surfaceThemes;
1193
- private gridConfig;
1194
- private locale;
1215
+ private itemContent;
1195
1216
  protected isReadOnly: _angular_core.Signal<boolean>;
1196
- protected dragHandleAriaLabel: _angular_core.Signal<string>;
1197
1217
  private resolvedSurface;
1198
1218
  constructor();
1219
+ protected blockPointerDownWhenReadOnly(event: PointerEvent): void;
1199
1220
  applyKeyboardShortcut(event: KeyboardEvent): void;
1200
1221
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridItemComponent, never>;
1201
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<GridItemComponent, "et-grid-item, [et-grid-item]", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, { "removed": "removed"; }, never, ["[etGridItemDragHandle]", "*", "[etGridItemAction]"], true, [{ directive: typeof GridItemDirective; inputs: { "itemId": "itemId"; "minColSpan": "minColSpan"; "maxColSpan": "maxColSpan"; "minRowSpan": "minRowSpan"; "maxRowSpan": "maxRowSpan"; }; outputs: {}; }, { directive: typeof GridDragDirective; inputs: {}; outputs: {}; }, { directive: typeof GridResizeDirective; inputs: {}; outputs: {}; }, { directive: typeof _ethlete_core.ProvideSurfaceDirective; inputs: {}; outputs: {}; }]>;
1222
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<GridItemComponent, "et-grid-item, [et-grid-item]", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, { "removed": "removed"; }, never, ["*", "[etGridItemAction]"], true, [{ directive: typeof GridItemDirective; inputs: { "itemId": "itemId"; "minColSpan": "minColSpan"; "maxColSpan": "maxColSpan"; "minRowSpan": "minRowSpan"; "maxRowSpan": "maxRowSpan"; }; outputs: {}; }, { directive: typeof GridDragDirective; inputs: {}; outputs: {}; }, { directive: typeof GridResizeDirective; inputs: {}; outputs: {}; }, { directive: typeof _ethlete_core.ProvideSurfaceDirective; inputs: {}; outputs: {}; }]>;
1223
+ }
1224
+
1225
+ declare class GridItemToolbarComponent {
1226
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridItemToolbarComponent, never>;
1227
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<GridItemToolbarComponent, "et-grid-item-toolbar, [et-grid-item-toolbar]", never, {}, {}, never, ["*"], true, never>;
1228
+ }
1229
+
1230
+ declare class GridItemDefaultActionsComponent {
1231
+ private grid;
1232
+ private gridConfig;
1233
+ private locale;
1234
+ itemId: _angular_core.InputSignal<string>;
1235
+ data: _angular_core.InputSignal<unknown>;
1236
+ protected removeAriaLabel: _angular_core.Signal<string>;
1237
+ protected remove(): void;
1238
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridItemDefaultActionsComponent, never>;
1239
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<GridItemDefaultActionsComponent, "et-grid-item-default-actions", never, { "itemId": { "alias": "itemId"; "required": true; "isSignal": true; }; "data": { "alias": "data"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1202
1240
  }
1203
1241
 
1204
1242
  /**
@@ -1251,7 +1289,7 @@ declare const GRID_ERROR_CODES: {
1251
1289
  readonly INVALID_LAYOUT_STATE: 1903;
1252
1290
  };
1253
1291
 
1254
- declare const GridImports: readonly [typeof GridComponent, typeof GridItemComponent, typeof GridDebugComponent];
1292
+ declare const GridImports: readonly [typeof GridComponent, typeof GridItemComponent, typeof GridItemToolbarComponent, typeof GridItemDefaultActionsComponent, typeof GridDebugComponent];
1255
1293
 
1256
1294
  type IconDefinition = {
1257
1295
  name: string;
@@ -1838,6 +1876,7 @@ declare class OverlayTriggerDirective {
1838
1876
 
1839
1877
  declare class OverlayDirective {
1840
1878
  private destroyRef;
1879
+ private overlayManager;
1841
1880
  mode: _angular_core.InputSignal<OverlayMode>;
1842
1881
  role: _angular_core.InputSignal<OverlayRole | undefined>;
1843
1882
  open: _angular_core.ModelSignal<boolean>;
@@ -1860,7 +1899,6 @@ declare class OverlayDirective {
1860
1899
  autoHide: _angular_core.InputSignal<boolean>;
1861
1900
  autoCloseIfReferenceHidden: _angular_core.InputSignal<boolean>;
1862
1901
  mirrorWidth: _angular_core.InputSignal<boolean>;
1863
- private overlayManager;
1864
1902
  /** @internal */
1865
1903
  registeredAnchor: _angular_core.WritableSignal<OverlayAnchorDirective | null>;
1866
1904
  /** @internal */
@@ -1906,8 +1944,8 @@ declare class OverlayBodyComponent implements OnInit {
1906
1944
  private overlayRef;
1907
1945
  private elementRef;
1908
1946
  private scrollObserver;
1909
- dividers: _angular_core.InputSignal<OverlayBodyDividerType>;
1910
1947
  private overlayManager;
1948
+ dividers: _angular_core.InputSignal<OverlayBodyDividerType>;
1911
1949
  dividersEnabled: _angular_core.Signal<boolean>;
1912
1950
  dynamicDividersEnabled: _angular_core.Signal<boolean>;
1913
1951
  containerScrollState: _angular_core.Signal<_ethlete_core.ElementScrollState>;
@@ -1925,11 +1963,11 @@ declare class OverlayBodyComponent implements OnInit {
1925
1963
  declare class OverlayCloseDirective implements OnInit {
1926
1964
  private overlayRef;
1927
1965
  private elementRef;
1966
+ private overlayManager;
1928
1967
  ariaLabel: _angular_core.InputSignal<string | undefined>;
1929
1968
  type: _angular_core.InputSignal<"button" | "submit" | "reset">;
1930
1969
  closeResult: _angular_core.InputSignal<unknown>;
1931
1970
  closeResultAlt: _angular_core.InputSignal<unknown>;
1932
- private overlayManager;
1933
1971
  constructor();
1934
1972
  ngOnInit(): void;
1935
1973
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<OverlayCloseDirective, never>;
@@ -1958,11 +1996,6 @@ declare class OverlayContainerComponent {
1958
1996
  afterClosed: () => rxjs.Observable<unknown>;
1959
1997
  attachRuntime: (runtimeRef: _ethlete_core.OverlayRuntimeRef<object, unknown>) => void;
1960
1998
  };
1961
- component: _angular_core.InputSignal<Type<object>>;
1962
- componentInputs: _angular_core.InputSignal<Record<string, unknown> | undefined>;
1963
- componentOutputs: _angular_core.InputSignal<Record<string, (event: unknown) => unknown> | undefined>;
1964
- renderArrow: _angular_core.InputSignal<boolean>;
1965
- private contentOutlet;
1966
1999
  private surfaceThemes;
1967
2000
  private surfaceContextTracker;
1968
2001
  private renderer;
@@ -1970,6 +2003,11 @@ declare class OverlayContainerComponent {
1970
2003
  value: _angular_core.Signal<HTMLElement>;
1971
2004
  override: _angular_core.WritableSignal<HTMLElement | null>;
1972
2005
  };
2006
+ component: _angular_core.InputSignal<Type<object>>;
2007
+ componentInputs: _angular_core.InputSignal<Record<string, unknown> | undefined>;
2008
+ componentOutputs: _angular_core.InputSignal<Record<string, (event: unknown) => unknown> | undefined>;
2009
+ renderArrow: _angular_core.InputSignal<boolean>;
2010
+ private contentOutlet;
1973
2011
  animatedLifecycle: _angular_core.WritableSignal<AnimatedLifecycleDirective>;
1974
2012
  contentComponentRef: _angular_core.WritableSignal<ComponentRef<object> | null>;
1975
2013
  constructor();
@@ -2091,8 +2129,8 @@ declare class OverlayMainDirective implements OnInit {
2091
2129
  private parent;
2092
2130
  private elementRef;
2093
2131
  private overlayRef;
2094
- enabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
2095
2132
  private overlayManager;
2133
+ enabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
2096
2134
  ngOnInit(): void;
2097
2135
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<OverlayMainDirective, never>;
2098
2136
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<OverlayMainDirective, "[etOverlayMain], et-overlay-main", never, { "enabled": { "alias": "etOverlayMain"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
@@ -2127,9 +2165,9 @@ declare const injectOverlayScrollBlocker: {
2127
2165
  declare class OverlayTitleDirective implements OnInit {
2128
2166
  private overlayRef;
2129
2167
  private elementRef;
2130
- id: _angular_core.InputSignal<string>;
2131
2168
  private overlayManager;
2132
2169
  private renderer;
2170
+ id: _angular_core.InputSignal<string>;
2133
2171
  ngOnInit(): void;
2134
2172
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<OverlayTitleDirective, never>;
2135
2173
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<OverlayTitleDirective, "[et-overlay-title], [etOverlayTitle]", ["etOverlayTitle"], { "id": { "alias": "id"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
@@ -2143,8 +2181,8 @@ declare const OVERLAY_BACK_OR_CLOSE_TOKEN: InjectionToken<OverlayBackOrCloseDire
2143
2181
  declare class OverlayBackOrCloseDirective {
2144
2182
  private overlayRef;
2145
2183
  private elementRef;
2146
- disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
2147
2184
  private router;
2185
+ disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
2148
2186
  constructor();
2149
2187
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<OverlayBackOrCloseDirective, never>;
2150
2188
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<OverlayBackOrCloseDirective, "[etOverlayBackOrClose]", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
@@ -2166,8 +2204,8 @@ declare class OverlayRouteHeaderTemplateOutletComponent {
2166
2204
  afterClosed: () => rxjs.Observable<unknown>;
2167
2205
  attachRuntime: (runtimeRef: _ethlete_core.OverlayRuntimeRef<object, unknown>) => void;
2168
2206
  };
2169
- animatedLifecycle: _angular_core.Signal<AnimatedLifecycleDirective>;
2170
2207
  protected router: _ethlete_components.OverlayRouter;
2208
+ animatedLifecycle: _angular_core.Signal<AnimatedLifecycleDirective>;
2171
2209
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<OverlayRouteHeaderTemplateOutletComponent, never>;
2172
2210
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<OverlayRouteHeaderTemplateOutletComponent, "et-overlay-route-header-template-outlet", never, {}, {}, never, never, true, never>;
2173
2211
  }
@@ -2273,10 +2311,10 @@ declare const provideOverlayRouter: (config: OverlayRouterConfig) => Provider[];
2273
2311
  declare const OVERLAY_ROUTER_LINK_TOKEN: InjectionToken<OverlayRouterLinkDirective>;
2274
2312
  declare class OverlayRouterLinkDirective {
2275
2313
  private elementRef;
2314
+ private router;
2276
2315
  path: _angular_core.InputSignal<string | (string | number)[]>;
2277
2316
  disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
2278
2317
  navigationDirection: _angular_core.InputSignal<OverlayRouterNavigationDirection | null>;
2279
- private router;
2280
2318
  isActive: _angular_core.Signal<boolean>;
2281
2319
  constructor();
2282
2320
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<OverlayRouterLinkDirective, never>;
@@ -2294,12 +2332,12 @@ declare class OverlayRouterOutletComponent {
2294
2332
  private injector;
2295
2333
  private overlayRef;
2296
2334
  private elementRef;
2335
+ protected router: _ethlete_components.OverlayRouter;
2336
+ private renderer;
2297
2337
  disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
2298
2338
  sharedRouteTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
2299
2339
  outletDisabledTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
2300
2340
  pageWrappers: _angular_core.Signal<readonly ElementRef<HTMLElement>[]>;
2301
- protected router: _ethlete_components.OverlayRouter;
2302
- private renderer;
2303
2341
  readonly hasSidebar: boolean;
2304
2342
  wasDisabled: _angular_core.WritableSignal<boolean>;
2305
2343
  keepDisabledTransition: _angular_core.Signal<boolean>;
@@ -2333,10 +2371,10 @@ declare class OverlaySidebarPageComponent {
2333
2371
  }
2334
2372
 
2335
2373
  declare class OverlaySidebarComponent {
2374
+ protected sidebar: _ethlete_components.SidebarOverlay;
2336
2375
  pageDividers: _angular_core.InputSignal<OverlayBodyDividerType>;
2337
2376
  sidebarContent: _angular_core.Signal<TemplateRef<unknown>>;
2338
2377
  sidebarHeaderContent: _angular_core.Signal<_ethlete_components.OverlayHeaderTemplateDirective | undefined>;
2339
- protected sidebar: _ethlete_components.SidebarOverlay;
2340
2378
  constructor();
2341
2379
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<OverlaySidebarComponent, never>;
2342
2380
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<OverlaySidebarComponent, "et-overlay-sidebar", never, { "pageDividers": { "alias": "pageDividers"; "required": false; "isSignal": true; }; }, {}, ["sidebarHeaderContent"], ["*"], true, never>;
@@ -3365,8 +3403,8 @@ type PipManager = {
3365
3403
  declare class PipBackDirective {
3366
3404
  private chrome;
3367
3405
  private tokenEntry;
3368
- entry: _angular_core.InputSignal<StreamPipEntry | undefined>;
3369
3406
  private pipManager;
3407
+ entry: _angular_core.InputSignal<StreamPipEntry | undefined>;
3370
3408
  back(event: Event): void;
3371
3409
  private resolveEntry;
3372
3410
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<PipBackDirective, never>;
@@ -3545,8 +3583,8 @@ declare class PipCloseDirective {
3545
3583
  private chrome;
3546
3584
  private pipWindow;
3547
3585
  private tokenEntry;
3548
- entry: _angular_core.InputSignal<StreamPipEntry | undefined>;
3549
3586
  private pipManager;
3587
+ entry: _angular_core.InputSignal<StreamPipEntry | undefined>;
3550
3588
  close(event: Event): void;
3551
3589
  private resolveEntry;
3552
3590
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<PipCloseDirective, never>;
@@ -3585,10 +3623,10 @@ declare class PipTitleBarDirective {
3585
3623
  declare const PIP_WINDOW_ASPECT_RATIO_TOKEN: InjectionToken<Signal<number>>;
3586
3624
 
3587
3625
  declare class StreamPipChromeComponent implements PipChromeRef {
3626
+ pipManager: _ethlete_components.PipManager;
3588
3627
  stageRef: _angular_core.Signal<ElementRef<HTMLElement> | undefined>;
3589
3628
  pipWindowRef: _angular_core.Signal<PipWindowComponent | undefined>;
3590
3629
  gridBtnRef: _angular_core.Signal<ElementRef<HTMLElement> | undefined>;
3591
- pipManager: _ethlete_components.PipManager;
3592
3630
  state: _ethlete_components.PipChromeState;
3593
3631
  animations: _ethlete_components.PipChromeAnimations;
3594
3632
  readonly CLOSE_KIND: "close";
@@ -3602,11 +3640,11 @@ declare class PipPlayerComponent {
3602
3640
  private document;
3603
3641
  private el;
3604
3642
  protected pipCell: PipCellDirective | null;
3605
- entry: _angular_core.InputSignal<StreamPipEntry | undefined>;
3606
- showThumbnail: _angular_core.InputSignal<boolean | undefined>;
3607
3643
  private streamManager;
3608
3644
  private pipManager;
3609
3645
  private renderer;
3646
+ entry: _angular_core.InputSignal<StreamPipEntry | undefined>;
3647
+ showThumbnail: _angular_core.InputSignal<boolean | undefined>;
3610
3648
  isReady: _angular_core.WritableSignal<boolean>;
3611
3649
  resolvedEntry: _angular_core.Signal<StreamPipEntry>;
3612
3650
  thumbnailUrl: _angular_core.Signal<string | null>;
@@ -3644,11 +3682,11 @@ declare const injectPipSlotPlaceholderConfig: {
3644
3682
  declare class PipSlotPlaceholderComponent {
3645
3683
  private slotPlayerId;
3646
3684
  private parentSurfaceProvider;
3647
- private bringBackDir;
3648
3685
  private pipManager;
3649
3686
  private config;
3650
3687
  private locale;
3651
3688
  private surfaceThemes;
3689
+ private bringBackDir;
3652
3690
  cardSurface: _angular_core.Signal<string | null>;
3653
3691
  isInPip: _angular_core.Signal<boolean>;
3654
3692
  message: _angular_core.Signal<string>;
@@ -3691,10 +3729,10 @@ declare class StreamPlayerSlotDirective {
3691
3729
  private playerComponent;
3692
3730
  private provideSurface;
3693
3731
  private parentSurfaceProvider;
3694
- streamSlotPriority: _angular_core.InputSignalWithTransform<boolean, unknown>;
3695
- streamSlotOnPipBack: _angular_core.InputSignal<(() => void) | undefined>;
3696
3732
  private surfaceThemes;
3697
3733
  private styleManager;
3734
+ streamSlotPriority: _angular_core.InputSignalWithTransform<boolean, unknown>;
3735
+ streamSlotOnPipBack: _angular_core.InputSignal<(() => void) | undefined>;
3698
3736
  private resolvedSurface;
3699
3737
  slot: _ethlete_components.StreamPlayerSlotHandle;
3700
3738
  constructor();
@@ -4689,6 +4727,7 @@ declare class ToggletipDirective {
4689
4727
  private elementRef;
4690
4728
  private colorProvider;
4691
4729
  private surfaceProvider;
4730
+ private overlayManager;
4692
4731
  content: _angular_core.InputSignal<ToggletipContent | null>;
4693
4732
  ariaLabel: _angular_core.InputSignal<string | null>;
4694
4733
  ariaLabelledBy: _angular_core.InputSignal<string | null>;
@@ -4699,7 +4738,6 @@ declare class ToggletipDirective {
4699
4738
  viewportPadding: _angular_core.InputSignal<Padding | null>;
4700
4739
  disabled: _angular_core.InputSignal<boolean>;
4701
4740
  open: _angular_core.ModelSignal<boolean>;
4702
- private overlayManager;
4703
4741
  /** @internal */
4704
4742
  overlayRef: _angular_core.WritableSignal<OverlayRef<ToggletipComponent, unknown> | null>;
4705
4743
  private toggletipId;
@@ -4726,12 +4764,12 @@ declare class ToggletipComponent {
4726
4764
  private triggerColorProvider;
4727
4765
  private triggerSurfaceProvider;
4728
4766
  protected injector: Injector;
4767
+ private surfaceThemes;
4729
4768
  toggletipId: _angular_core.InputSignal<string>;
4730
4769
  protected contentId: _angular_core.InputSignal<string>;
4731
4770
  content: _angular_core.InputSignal<ToggletipContent>;
4732
4771
  colorProvider: _angular_core.InputSignal<ProvideColorDirective | null>;
4733
4772
  surfaceProvider: _angular_core.InputSignal<ProvideSurfaceDirective | null>;
4734
- private surfaceThemes;
4735
4773
  hasTemplate: _angular_core.Signal<boolean>;
4736
4774
  contentText: _angular_core.Signal<string | null>;
4737
4775
  contentTemplate: _angular_core.Signal<TemplateRef<unknown> | null>;
@@ -4772,11 +4810,11 @@ declare class TooltipComponent {
4772
4810
  private ownSurfaceProvider;
4773
4811
  private triggerColorProvider;
4774
4812
  private triggerSurfaceProvider;
4813
+ private surfaceThemes;
4775
4814
  tooltipId: _angular_core.InputSignal<string>;
4776
4815
  content: _angular_core.InputSignal<TooltipContent>;
4777
4816
  colorProvider: _angular_core.InputSignal<ProvideColorDirective | null>;
4778
4817
  surfaceProvider: _angular_core.InputSignal<ProvideSurfaceDirective | null>;
4779
- private surfaceThemes;
4780
4818
  hasTemplate: _angular_core.Signal<boolean>;
4781
4819
  contentText: _angular_core.Signal<string | null>;
4782
4820
  contentTemplate: _angular_core.Signal<TemplateRef<unknown> | null>;
@@ -4793,6 +4831,9 @@ declare class TooltipDirective {
4793
4831
  private elementRef;
4794
4832
  private colorProvider;
4795
4833
  private surfaceProvider;
4834
+ private overlayManager;
4835
+ private focusVisibleTracker;
4836
+ private renderer;
4796
4837
  content: _angular_core.InputSignal<TooltipContent | null>;
4797
4838
  ariaDescription: _angular_core.InputSignal<string | null>;
4798
4839
  placement: _angular_core.InputSignal<Placement>;
@@ -4802,9 +4843,6 @@ declare class TooltipDirective {
4802
4843
  viewportPadding: _angular_core.InputSignal<Padding | null>;
4803
4844
  showDelay: _angular_core.InputSignal<number>;
4804
4845
  disabled: _angular_core.InputSignal<boolean>;
4805
- private overlayManager;
4806
- private focusVisibleTracker;
4807
- private renderer;
4808
4846
  /** @internal */
4809
4847
  overlayRef: _angular_core.WritableSignal<OverlayRef<TooltipComponent, unknown> | null>;
4810
4848
  private hasHover;
@@ -4830,5 +4868,5 @@ declare const TOOLTIP_ERROR_CODES: {
4830
4868
 
4831
4869
  declare const TOOLTIP_IMPORTS: readonly [typeof TooltipDirective, typeof TooltipComponent];
4832
4870
 
4833
- export { ARROW_OUT_UP_RIGHT_ICON, ARROW_RIGHT_ICON, BOLD_ICON, BUTTON_ICON_ALIGNMENTS, BUTTON_IMPORTS, BUTTON_SIZES, BUTTON_SPINNER_CONFIG, BUTTON_TYPES, BUTTON_VARIANTS, BrandLoaderComponent, ButtonComponent, ButtonDirective, ButtonStylesDirective, CHECKBOX_IMPORTS, CHEVRON_ICON, CHOICE_FIELD_IMPORTS, CLIPBOARD_CHECK_ICON, CheckboxComponent, CheckboxDirective, CheckboxGroupComponent, CheckboxOptionComponent, ChoiceFieldComponent, DAILYMOTION_PLAYER_TOKEN, DEFAULT_NOTIFICATION_MANAGER_CONFIG, DEFAULT_PIP_WINDOW_CONFIG, DEFAULT_STREAM_PLAYER_STATE, DailymotionPlayerComponent, DailymotionPlayerDirective, DailymotionPlayerParamsDirective, DailymotionPlayerSlotComponent, DescriptionComponent, FACEBOOK_PLAYER_TOKEN, FLOPPY_DISK_ICON, FOCUS_FRAME_ICON, FORM_FIELD_APPEARANCES, FORM_FIELD_CONTROL_TYPES, FORM_FIELD_ERROR_CODES, FORM_FIELD_FILLS, FORM_FIELD_IMPORTS, FORM_FIELD_LABEL_MODES, FORM_FIELD_SIZES, FORM_FIELD_TOKEN, FabComponent, FacebookPlayerComponent, FacebookPlayerDirective, FacebookPlayerParamsDirective, FacebookPlayerSlotComponent, FocusRingDirective, FormErrorComponent, FormFieldComponent, FormFieldDirective, GRID_2X2_ICON, GRID_ERROR_CODES, GRID_TOKEN, GridComponent, GridDebugComponent, GridDirective, GridDragDirective, GridImports, GridItemComponent, GridItemDirective, GridItemRef, GridResizeDirective, HintComponent, ICONS_TOKEN, ICON_DIRECTIVE_TOKEN, ICON_ERROR_CODES, ICON_IMPORTS, INPUT_IMPORTS, INPUT_TEXT_ALIGNMENTS, INPUT_TYPES, ITALIC_ICON, IconButtonComponent, IconDirective, InputComponent, InputDirective, InputPrefixDirective, InputSuffixDirective, KICK_PLAYER_TOKEN, KickPlayerComponent, KickPlayerDirective, KickPlayerParamsDirective, KickPlayerSlotComponent, LINK_ICON, LIST_BULLETED_ICON, LIST_NUMBERED_ICON, LOCK_ICON, LabelDirective, NAV_TABS_TOKEN, NOTIFICATION_ERROR_CODES, NOTIFICATION_IMPORTS, NOTIFICATION_STACK_CONTEXT_TOKEN, NOTIFICATION_STATUS, NavTabImports, NavTabLinkComponent, NavTabLinkDirective, NavTabsComponent, NavTabsDirective, NavTabsOutletComponent, NavTabsOutletDirective, NotificationActionDirective, NotificationComponent, NotificationDirective, NotificationDismissDirective, NotificationItemDirective, NotificationStackDirective, OVERLAY_BACK_OR_CLOSE_TOKEN, OVERLAY_BODY_TOKEN, OVERLAY_CONFIG_CLASS_KEYS, OVERLAY_CONTENT_IMPORTS, OVERLAY_ERROR_CODES, OVERLAY_FOOTER_TOKEN, OVERLAY_HEADER_TEMPLATE_TOKEN, OVERLAY_HEADER_TOKEN, OVERLAY_IMPORTS, OVERLAY_MAIN_TOKEN, OVERLAY_QUERY_PARAM_INPUT_NAME, OVERLAY_REF, OVERLAY_ROUTER_CONFIG_TOKEN, OVERLAY_ROUTER_LINK_TOKEN, OVERLAY_ROUTER_OUTLET_DISABLED_TEMPLATE_TOKEN, OVERLAY_ROUTER_OUTLET_TOKEN, OVERLAY_ROUTER_TOKEN, OVERLAY_SHARED_ROUTE_TEMPLATE_TOKEN, OverlayAnchorDirective, OverlayBackOrCloseDirective, OverlayBodyComponent, OverlayCloseDirective, OverlayContainerComponent, OverlayDirective, OverlayFooterDirective, OverlayHandlerLinkDirective, OverlayHeaderDirective, OverlayHeaderTemplateDirective, OverlayMainDirective, OverlayOriginCloneComponent, OverlayRouteHeaderTemplateOutletComponent, OverlayRouterLinkDirective, OverlayRouterOutletComponent, OverlayRouterOutletDisabledTemplateDirective, OverlaySharedRouteTemplateDirective, OverlaySharedRouteTemplateOutletComponent, OverlaySidebarComponent, OverlaySidebarPageComponent, OverlaySurfaceDirective, OverlayTitleDirective, OverlayTriggerDirective, PENCIL_ICON, PIP_CHROME_REF_TOKEN, PIP_ENTRY_TOKEN, PIP_WINDOW_ASPECT_RATIO_TOKEN, PLUS_ICON, PipBackDirective, PipBringBackDirective, PipCellDirective, PipCloseDirective, PipCollapseOverlayDirective, PipGridToggleDirective, PipPlayerComponent, PipSlotPlaceholderComponent, PipStageDirective, PipTitleBarDirective, PipTitleBarTemplateDirective, PipWindowComponent, PipWindowParamsDirective, ProgressBarComponent, RICH_TEXT_EDITOR_IMPORTS, RadioComponent, RadioGroupComponent, RichTextEditorComponent, RichTextEditorDirective, RichTextEditorFloatingToolbarComponent, SCROLLABLE_IMPORTS, SELECTION_LIST_MULTIPLE, SELECTION_LIST_TOKEN, SIDEBAR_OVERLAY_CONFIG, SIDEBAR_OVERLAY_TOKEN, SOOP_PLAYER_TOKEN, STREAM_CONSENT_TOKEN, STREAM_PLAYER_COMPONENT_TOKEN, STREAM_PLAYER_ERROR_CONTEXT_TOKEN, STREAM_PLAYER_ERROR_TOKEN, STREAM_PLAYER_PARAMS_TOKEN, STREAM_PLAYER_SLOT_TOKEN, STREAM_PLAYER_TOKEN, STREAM_SLOT_PLAYER_ID_TOKEN, STREAM_USER_CONSENT_PROVIDER_TOKEN, STRIKETHROUGH_ICON, SWITCH_IMPORTS, ScrollableActiveChildDirective, ScrollableButtonsDirective, ScrollableComponent, ScrollableDarkenDirective, ScrollableDirective, ScrollableDragDirective, ScrollableErrorCode, ScrollableIgnoreChildDirective, ScrollableLoadingTemplateDirective, ScrollableMasksDirective, ScrollableNavigationDirective, ScrollableSnapDirective, SegmentedButtonComponent, SegmentedButtonGroupComponent, SelectionListControlDirective, SelectionListDirective, SelectionOptionDirective, SoopPlayerComponent, SoopPlayerDirective, SoopPlayerParamsDirective, SoopPlayerSlotComponent, SpinnerComponent, StreamConsentAcceptDirective, StreamConsentComponent, StreamConsentDirective, StreamImports, StreamPipChromeComponent, StreamPlayerErrorComponent, StreamPlayerErrorDirective, StreamPlayerLoadingComponent, StreamPlayerSlotDirective, SwitchComponent, SwitchDirective, TAB_BAR_FITS, TAB_BAR_ORIENTATIONS, TAB_BAR_TOKEN, TAB_BAR_TRIGGER_TOKEN, TAB_BAR_VARIANTS, TAB_ERROR_CODES, TAB_GROUP_TOKEN, TAB_PANEL_TOKEN, TAB_SIZES, TIKTOK_PLAYER_TOKEN, TIMES_ICON, TOGGLETIP_ERROR_CODES, TOGGLETIP_IMPORTS, TOOLTIP_ERROR_CODES, TOOLTIP_IMPORTS, TRIANGLE_EXCLAMATION_ICON, TWITCH_PLAYER_TOKEN, TabBarDirective, TabBarTriggerDirective, TabBarUnderlineDirective, TabComponent, TabGroupComponent, TabGroupDirective, TabImports, TabLabelDirective, TabPanelDirective, TabTriggerDirective, TextButtonComponent, TikTokPlayerComponent, TikTokPlayerDirective, TikTokPlayerParamsDirective, TikTokPlayerSlotComponent, ToggletipCloseDirective, ToggletipComponent, ToggletipDirective, ToggletipTriggerDirective, TooltipComponent, TooltipDirective, TwitchPlayerComponent, TwitchPlayerDirective, TwitchPlayerParamsDirective, TwitchPlayerSlotComponent, VIMEO_PLAYER_TOKEN, VimeoPlayerComponent, VimeoPlayerDirective, VimeoPlayerParamsDirective, VimeoPlayerSlotComponent, WINDOW_CONTROL_BUTTON_KINDS, WINDOW_CONTROL_BUTTON_SIZES, WindowControlButtonComponent, YOUTUBE_PLAYER_SLOT_TOKEN, YOUTUBE_PLAYER_TOKEN, YoutubePlayerComponent, YoutubePlayerDirective, YoutubePlayerParamsDirective, YoutubePlayerSlotComponent, YoutubePlayerSlotDirective, abortFullscreenAnimation, anchoredDialogOverlayStrategy, anchoredOverlayStrategy, bottomSheetOverlayStrategy, buildAnchoredRuntimePositionStrategy, centeredOverlayStrategy, cleanupFullscreenAnimation, cleanupFullscreenAnimationStyles, createGridAdapter, createNotificationRef, createOverlayHandler, createOverlayHandlerWithQueryParamLifecycle, createOverlayRef, createOverlayStrategyController, createPipChromeAnimations, createPipChromeState, createStreamConfig, createStreamPlayerSlot, dialogOverlayStrategy, enableDragToDismiss, findNextRelevantHtmlElement, fromGridPosition, fullScreenDialogOverlayStrategy, getClosestOverlay, getOriginCoordinatesAndDimensions, injectAnchoredDialogStrategy, injectAnchoredDialogStrategyDefaults, injectBottomSheetStrategy, injectBottomSheetStrategyDefaults, injectDialogStrategy, injectDialogStrategyDefaults, injectFormSupport, injectFullscreenDialogStrategy, injectFullscreenDialogStrategyDefaults, injectGridConfig, injectLeftSheetStrategy, injectLeftSheetStrategyDefaults, injectNotificationManager, injectNotificationManagerConfig, injectOverlayManager, injectOverlayRouter, injectOverlayScrollBlocker, injectPipChromeManager, injectPipManager, injectPipSlotPlaceholderConfig, injectRightSheetStrategy, injectRightSheetStrategyDefaults, injectSidebarOverlay, injectStreamConfig, injectStreamConsentConfig, injectStreamManager, injectStreamPlayerErrorConfig, injectStreamPlayerLoadingConfig, injectStreamScriptLoader, injectStreamUserConsentProvider, injectTopSheetStrategy, injectTopSheetStrategyDefaults, isHtmlElement, isPointerEvent, isTouchEvent, leftSheetOverlayStrategy, mergeOverlayBreakpointConfigs, provideAnchoredDialogStrategy, provideAnchoredDialogStrategyDefaults, provideBottomSheetStrategy, provideBottomSheetStrategyDefaults, provideDialogStrategy, provideDialogStrategyDefaults, provideFormSupport, provideFullscreenDialogStrategy, provideFullscreenDialogStrategyDefaults, provideGridConfig, provideIcons, provideLeftSheetStrategy, provideLeftSheetStrategyDefaults, provideNotificationManager, provideNotificationManagerConfig, provideNotificationManagerInstance, provideOverlay, provideOverlayManager, provideOverlayRouter, provideOverlayRouterConfig, provideOverlayRouterService, provideOverlayScrollBlocker, providePipChromeManager, providePipManager, providePipSlotPlaceholderConfig, provideRightSheetStrategy, provideRightSheetStrategyDefaults, provideSidebarOverlay, provideSidebarOverlayConfig, provideSidebarOverlayService, provideStreamConfig, provideStreamConsentConfig, provideStreamManager, provideStreamPlayerErrorConfig, provideStreamPlayerLoadingConfig, provideTopSheetStrategy, provideTopSheetStrategyDefaults, resolveClosestOverlay, rightSheetOverlayStrategy, startFullscreenEnterAnimation, startFullscreenLeaveAnimation, toGridPosition, topSheetOverlayStrategy, transformingBottomSheetToDialogOverlayStrategy, transformingFullScreenDialogToDialogOverlayStrategy, transformingFullScreenDialogToRightSheetOverlayStrategy };
4834
- export type { AnchoredDialogOverlayStrategyOptions, AnchoredOverlayStrategyOptions, AnchoredPositionOptions, ButtonIconAlignment, ButtonSize, CenteredOverlayStrategyOptions, CreateOverlayHandlerConfig, CreateOverlayHandlerInnerConfig, CreateOverlayHandlerWithQueryParamLifecycleConfig, DragToDismissContext, DragToDismissRef, FacebookVideoPlayer, FacebookWindow, FormFieldAppearance, FormFieldControl, FormFieldControlType, FormFieldDirectiveBase, FormFieldFill, FormFieldLabelMode, FormFieldSize, FullscreenAnimationCancellable, FullscreenAnimationDeps, FullscreenAnimationState, GridAdapter, GridBreakpointConfig, GridBreakpointName, GridComponentRegistration, GridConfig, GridItemConfig, GridItemConstraints, GridItemPosition, GridLayoutEntry, GridSerializedState, HintComponentBase, IconDefinition, InputTextAlignment, LabelDirectiveBase, NotificationAction, NotificationConfig, NotificationEntry, NotificationManager, NotificationManagerConfig, NotificationRef, NotificationStackContext, NotificationStatus, OverlayAutoFocusTarget, OverlayBodyDividerType, OverlayBreakpointConfig, OverlayConfig, OverlayConsumerConfig, OverlayDragToDismissConfig, OverlayHandler, OverlayHandlerWithQueryParamLifecycle, OverlayManager, OverlayMode, OverlayRef, OverlayRole, OverlayRoute, OverlayRouter, OverlayRouterConfig, OverlayRouterNavigateConfig, OverlayRouterNavigationDirection, OverlayRouterResolvedPath, OverlayRouterTransitionType, OverlayStrategy, OverlayStrategyBreakpoint, OverlayStrategyContext, OverlayStrategyController, OverlayStrategyControllerMountConfig, OverlaySurfaceContext, PipCellData, PipChromeAnimations, PipChromeRef, PipChromeState, PipManager, PipSlotPlaceholderConfig, ResolveClosestOverlayOptions, ScrollableActiveChildRef, ScrollableButtonPosition, ScrollableDirection, ScrollableIntersectionChange, ScrollableItemSize, ScrollableLoadingTemplatePosition, ScrollableLoadingTemplateRef, ScrollableMaskVariant, ScrollableNavigation, ScrollableNavigationItem, ScrollableScrollMode, ScrollableScrollOrigin, ScrollableScrollState, SelectionListDirectiveBase, SelectionListItem, SidebarOverlay, SidebarOverlayConfig, StreamConfig, StreamConsentConfig, StreamManager, StreamPipEntry, StreamPipWindowConfig, StreamPlayer, StreamPlayerCapabilities, StreamPlayerEntry, StreamPlayerErrorConfig, StreamPlayerErrorContext, StreamPlayerId, StreamPlayerLoadingConfig, StreamPlayerParams, StreamPlayerSlotHandle, StreamPlayerSlotOptions, StreamPlayerState, StreamScriptLoader, StreamSlotEntry, TabBarFit, TabBarOrientation, TabBarVariant, TabSize, ToggletipContent, TooltipContent, TwitchEmbed, TwitchEmbedConstructor, TwitchEmbedPlayer, TwitchPlayerParams, TwitchWindow, ViewportTransformData, VimeoDurationChangeEvent, VimeoPlaybackEvent, VimeoPlayer, VimeoPlayerOptions, VimeoWindow, WindowControlButtonKind, WindowControlButtonSize, YtPlayer, YtPlayerConfig, YtPlayerErrorEvent, YtPlayerEvent, YtPlayerStateChangeEvent, YtPlayerVars, YtWindow };
4871
+ export { ARROW_OUT_UP_RIGHT_ICON, ARROW_RIGHT_ICON, BOLD_ICON, BUTTON_ICON_ALIGNMENTS, BUTTON_IMPORTS, BUTTON_SIZES, BUTTON_SPINNER_CONFIG, BUTTON_TYPES, BUTTON_VARIANTS, BrandLoaderComponent, ButtonComponent, ButtonDirective, ButtonStylesDirective, CHECKBOX_IMPORTS, CHEVRON_ICON, CHOICE_FIELD_IMPORTS, CLIPBOARD_CHECK_ICON, CheckboxComponent, CheckboxDirective, CheckboxGroupComponent, CheckboxOptionComponent, ChoiceFieldComponent, DAILYMOTION_PLAYER_TOKEN, DEFAULT_NOTIFICATION_MANAGER_CONFIG, DEFAULT_PIP_WINDOW_CONFIG, DEFAULT_STREAM_PLAYER_STATE, DailymotionPlayerComponent, DailymotionPlayerDirective, DailymotionPlayerParamsDirective, DailymotionPlayerSlotComponent, DescriptionComponent, FACEBOOK_PLAYER_TOKEN, FLOPPY_DISK_ICON, FOCUS_FRAME_ICON, FORM_FIELD_APPEARANCES, FORM_FIELD_CONTROL_TYPES, FORM_FIELD_ERROR_CODES, FORM_FIELD_FILLS, FORM_FIELD_IMPORTS, FORM_FIELD_LABEL_MODES, FORM_FIELD_SIZES, FORM_FIELD_TOKEN, FabComponent, FacebookPlayerComponent, FacebookPlayerDirective, FacebookPlayerParamsDirective, FacebookPlayerSlotComponent, FocusRingDirective, FormErrorComponent, FormFieldComponent, FormFieldDirective, GRID_2X2_ICON, GRID_ERROR_CODES, GRID_TOKEN, GridComponent, GridDebugComponent, GridDirective, GridDragDirective, GridImports, GridItemComponent, GridItemDefaultActionsComponent, GridItemDirective, GridItemRef, GridItemToolbarComponent, GridResizeDirective, HintComponent, ICONS_TOKEN, ICON_DIRECTIVE_TOKEN, ICON_ERROR_CODES, ICON_IMPORTS, INPUT_IMPORTS, INPUT_TEXT_ALIGNMENTS, INPUT_TYPES, ITALIC_ICON, IconButtonComponent, IconDirective, InputComponent, InputDirective, InputPrefixDirective, InputSuffixDirective, KICK_PLAYER_TOKEN, KickPlayerComponent, KickPlayerDirective, KickPlayerParamsDirective, KickPlayerSlotComponent, LINK_ICON, LIST_BULLETED_ICON, LIST_NUMBERED_ICON, LOCK_ICON, LabelDirective, NAV_TABS_TOKEN, NOTIFICATION_ERROR_CODES, NOTIFICATION_IMPORTS, NOTIFICATION_STACK_CONTEXT_TOKEN, NOTIFICATION_STATUS, NavTabImports, NavTabLinkComponent, NavTabLinkDirective, NavTabsComponent, NavTabsDirective, NavTabsOutletComponent, NavTabsOutletDirective, NotificationActionDirective, NotificationComponent, NotificationDirective, NotificationDismissDirective, NotificationItemDirective, NotificationStackDirective, OVERLAY_BACK_OR_CLOSE_TOKEN, OVERLAY_BODY_TOKEN, OVERLAY_CONFIG_CLASS_KEYS, OVERLAY_CONTENT_IMPORTS, OVERLAY_ERROR_CODES, OVERLAY_FOOTER_TOKEN, OVERLAY_HEADER_TEMPLATE_TOKEN, OVERLAY_HEADER_TOKEN, OVERLAY_IMPORTS, OVERLAY_MAIN_TOKEN, OVERLAY_QUERY_PARAM_INPUT_NAME, OVERLAY_REF, OVERLAY_ROUTER_CONFIG_TOKEN, OVERLAY_ROUTER_LINK_TOKEN, OVERLAY_ROUTER_OUTLET_DISABLED_TEMPLATE_TOKEN, OVERLAY_ROUTER_OUTLET_TOKEN, OVERLAY_ROUTER_TOKEN, OVERLAY_SHARED_ROUTE_TEMPLATE_TOKEN, OverlayAnchorDirective, OverlayBackOrCloseDirective, OverlayBodyComponent, OverlayCloseDirective, OverlayContainerComponent, OverlayDirective, OverlayFooterDirective, OverlayHandlerLinkDirective, OverlayHeaderDirective, OverlayHeaderTemplateDirective, OverlayMainDirective, OverlayOriginCloneComponent, OverlayRouteHeaderTemplateOutletComponent, OverlayRouterLinkDirective, OverlayRouterOutletComponent, OverlayRouterOutletDisabledTemplateDirective, OverlaySharedRouteTemplateDirective, OverlaySharedRouteTemplateOutletComponent, OverlaySidebarComponent, OverlaySidebarPageComponent, OverlaySurfaceDirective, OverlayTitleDirective, OverlayTriggerDirective, PENCIL_ICON, PIP_CHROME_REF_TOKEN, PIP_ENTRY_TOKEN, PIP_WINDOW_ASPECT_RATIO_TOKEN, PLUS_ICON, PipBackDirective, PipBringBackDirective, PipCellDirective, PipCloseDirective, PipCollapseOverlayDirective, PipGridToggleDirective, PipPlayerComponent, PipSlotPlaceholderComponent, PipStageDirective, PipTitleBarDirective, PipTitleBarTemplateDirective, PipWindowComponent, PipWindowParamsDirective, ProgressBarComponent, RICH_TEXT_EDITOR_IMPORTS, RadioComponent, RadioGroupComponent, RichTextEditorComponent, RichTextEditorDirective, RichTextEditorFloatingToolbarComponent, SCROLLABLE_IMPORTS, SELECTION_LIST_MULTIPLE, SELECTION_LIST_TOKEN, SIDEBAR_OVERLAY_CONFIG, SIDEBAR_OVERLAY_TOKEN, SOOP_PLAYER_TOKEN, STREAM_CONSENT_TOKEN, STREAM_PLAYER_COMPONENT_TOKEN, STREAM_PLAYER_ERROR_CONTEXT_TOKEN, STREAM_PLAYER_ERROR_TOKEN, STREAM_PLAYER_PARAMS_TOKEN, STREAM_PLAYER_SLOT_TOKEN, STREAM_PLAYER_TOKEN, STREAM_SLOT_PLAYER_ID_TOKEN, STREAM_USER_CONSENT_PROVIDER_TOKEN, STRIKETHROUGH_ICON, SWITCH_IMPORTS, ScrollableActiveChildDirective, ScrollableButtonsDirective, ScrollableComponent, ScrollableDarkenDirective, ScrollableDirective, ScrollableDragDirective, ScrollableErrorCode, ScrollableIgnoreChildDirective, ScrollableLoadingTemplateDirective, ScrollableMasksDirective, ScrollableNavigationDirective, ScrollableSnapDirective, SegmentedButtonComponent, SegmentedButtonGroupComponent, SelectionListControlDirective, SelectionListDirective, SelectionOptionDirective, SoopPlayerComponent, SoopPlayerDirective, SoopPlayerParamsDirective, SoopPlayerSlotComponent, SpinnerComponent, StreamConsentAcceptDirective, StreamConsentComponent, StreamConsentDirective, StreamImports, StreamPipChromeComponent, StreamPlayerErrorComponent, StreamPlayerErrorDirective, StreamPlayerLoadingComponent, StreamPlayerSlotDirective, SwitchComponent, SwitchDirective, TAB_BAR_FITS, TAB_BAR_ORIENTATIONS, TAB_BAR_TOKEN, TAB_BAR_TRIGGER_TOKEN, TAB_BAR_VARIANTS, TAB_ERROR_CODES, TAB_GROUP_TOKEN, TAB_PANEL_TOKEN, TAB_SIZES, TIKTOK_PLAYER_TOKEN, TIMES_ICON, TOGGLETIP_ERROR_CODES, TOGGLETIP_IMPORTS, TOOLTIP_ERROR_CODES, TOOLTIP_IMPORTS, TRIANGLE_EXCLAMATION_ICON, TWITCH_PLAYER_TOKEN, TabBarDirective, TabBarTriggerDirective, TabBarUnderlineDirective, TabComponent, TabGroupComponent, TabGroupDirective, TabImports, TabLabelDirective, TabPanelDirective, TabTriggerDirective, TextButtonComponent, TikTokPlayerComponent, TikTokPlayerDirective, TikTokPlayerParamsDirective, TikTokPlayerSlotComponent, ToggletipCloseDirective, ToggletipComponent, ToggletipDirective, ToggletipTriggerDirective, TooltipComponent, TooltipDirective, TwitchPlayerComponent, TwitchPlayerDirective, TwitchPlayerParamsDirective, TwitchPlayerSlotComponent, VIMEO_PLAYER_TOKEN, VimeoPlayerComponent, VimeoPlayerDirective, VimeoPlayerParamsDirective, VimeoPlayerSlotComponent, WINDOW_CONTROL_BUTTON_KINDS, WINDOW_CONTROL_BUTTON_SIZES, WindowControlButtonComponent, YOUTUBE_PLAYER_SLOT_TOKEN, YOUTUBE_PLAYER_TOKEN, YoutubePlayerComponent, YoutubePlayerDirective, YoutubePlayerParamsDirective, YoutubePlayerSlotComponent, YoutubePlayerSlotDirective, abortFullscreenAnimation, anchoredDialogOverlayStrategy, anchoredOverlayStrategy, bottomSheetOverlayStrategy, buildAnchoredRuntimePositionStrategy, centeredOverlayStrategy, cleanupFullscreenAnimation, cleanupFullscreenAnimationStyles, createGridAdapter, createNotificationRef, createOverlayHandler, createOverlayHandlerWithQueryParamLifecycle, createOverlayRef, createOverlayStrategyController, createPipChromeAnimations, createPipChromeState, createStreamConfig, createStreamPlayerSlot, dialogOverlayStrategy, enableDragToDismiss, findNextRelevantHtmlElement, fromGridPosition, fullScreenDialogOverlayStrategy, getClosestOverlay, getOriginCoordinatesAndDimensions, injectAnchoredDialogStrategy, injectAnchoredDialogStrategyDefaults, injectBottomSheetStrategy, injectBottomSheetStrategyDefaults, injectDialogStrategy, injectDialogStrategyDefaults, injectFormSupport, injectFullscreenDialogStrategy, injectFullscreenDialogStrategyDefaults, injectGridConfig, injectLeftSheetStrategy, injectLeftSheetStrategyDefaults, injectNotificationManager, injectNotificationManagerConfig, injectOverlayManager, injectOverlayRouter, injectOverlayScrollBlocker, injectPipChromeManager, injectPipManager, injectPipSlotPlaceholderConfig, injectRightSheetStrategy, injectRightSheetStrategyDefaults, injectSidebarOverlay, injectStreamConfig, injectStreamConsentConfig, injectStreamManager, injectStreamPlayerErrorConfig, injectStreamPlayerLoadingConfig, injectStreamScriptLoader, injectStreamUserConsentProvider, injectTopSheetStrategy, injectTopSheetStrategyDefaults, isHtmlElement, isPointerEvent, isTouchEvent, leftSheetOverlayStrategy, mergeOverlayBreakpointConfigs, provideAnchoredDialogStrategy, provideAnchoredDialogStrategyDefaults, provideBottomSheetStrategy, provideBottomSheetStrategyDefaults, provideDialogStrategy, provideDialogStrategyDefaults, provideFormSupport, provideFullscreenDialogStrategy, provideFullscreenDialogStrategyDefaults, provideGridConfig, provideIcons, provideLeftSheetStrategy, provideLeftSheetStrategyDefaults, provideNotificationManager, provideNotificationManagerConfig, provideNotificationManagerInstance, provideOverlay, provideOverlayManager, provideOverlayRouter, provideOverlayRouterConfig, provideOverlayRouterService, provideOverlayScrollBlocker, providePipChromeManager, providePipManager, providePipSlotPlaceholderConfig, provideRightSheetStrategy, provideRightSheetStrategyDefaults, provideSidebarOverlay, provideSidebarOverlayConfig, provideSidebarOverlayService, provideStreamConfig, provideStreamConsentConfig, provideStreamManager, provideStreamPlayerErrorConfig, provideStreamPlayerLoadingConfig, provideTopSheetStrategy, provideTopSheetStrategyDefaults, resolveClosestOverlay, rightSheetOverlayStrategy, startFullscreenEnterAnimation, startFullscreenLeaveAnimation, toGridPosition, topSheetOverlayStrategy, transformingBottomSheetToDialogOverlayStrategy, transformingFullScreenDialogToDialogOverlayStrategy, transformingFullScreenDialogToRightSheetOverlayStrategy };
4872
+ export type { AnchoredDialogOverlayStrategyOptions, AnchoredOverlayStrategyOptions, AnchoredPositionOptions, ButtonIconAlignment, ButtonSize, CenteredOverlayStrategyOptions, CreateOverlayHandlerConfig, CreateOverlayHandlerInnerConfig, CreateOverlayHandlerWithQueryParamLifecycleConfig, DragToDismissContext, DragToDismissRef, FacebookVideoPlayer, FacebookWindow, FormFieldAppearance, FormFieldControl, FormFieldControlType, FormFieldDirectiveBase, FormFieldFill, FormFieldLabelMode, FormFieldSize, FullscreenAnimationCancellable, FullscreenAnimationDeps, FullscreenAnimationState, GridAdapter, GridBreakpointConfig, GridBreakpointName, GridComponentRegistration, GridConfig, GridItemActionsComponent, GridItemConfig, GridItemConstraints, GridItemPosition, GridLayoutEntry, GridSerializedState, HintComponentBase, IconDefinition, InputTextAlignment, LabelDirectiveBase, NotificationAction, NotificationConfig, NotificationEntry, NotificationManager, NotificationManagerConfig, NotificationRef, NotificationStackContext, NotificationStatus, OverlayAutoFocusTarget, OverlayBodyDividerType, OverlayBreakpointConfig, OverlayConfig, OverlayConsumerConfig, OverlayDragToDismissConfig, OverlayHandler, OverlayHandlerWithQueryParamLifecycle, OverlayManager, OverlayMode, OverlayRef, OverlayRole, OverlayRoute, OverlayRouter, OverlayRouterConfig, OverlayRouterNavigateConfig, OverlayRouterNavigationDirection, OverlayRouterResolvedPath, OverlayRouterTransitionType, OverlayStrategy, OverlayStrategyBreakpoint, OverlayStrategyContext, OverlayStrategyController, OverlayStrategyControllerMountConfig, OverlaySurfaceContext, PipCellData, PipChromeAnimations, PipChromeRef, PipChromeState, PipManager, PipSlotPlaceholderConfig, ResolveClosestOverlayOptions, ScrollableActiveChildRef, ScrollableButtonPosition, ScrollableDirection, ScrollableIntersectionChange, ScrollableItemSize, ScrollableLoadingTemplatePosition, ScrollableLoadingTemplateRef, ScrollableMaskVariant, ScrollableNavigation, ScrollableNavigationItem, ScrollableScrollMode, ScrollableScrollOrigin, ScrollableScrollState, SelectionListDirectiveBase, SelectionListItem, SidebarOverlay, SidebarOverlayConfig, StreamConfig, StreamConsentConfig, StreamManager, StreamPipEntry, StreamPipWindowConfig, StreamPlayer, StreamPlayerCapabilities, StreamPlayerEntry, StreamPlayerErrorConfig, StreamPlayerErrorContext, StreamPlayerId, StreamPlayerLoadingConfig, StreamPlayerParams, StreamPlayerSlotHandle, StreamPlayerSlotOptions, StreamPlayerState, StreamScriptLoader, StreamSlotEntry, TabBarFit, TabBarOrientation, TabBarVariant, TabSize, ToggletipContent, TooltipContent, TwitchEmbed, TwitchEmbedConstructor, TwitchEmbedPlayer, TwitchPlayerParams, TwitchWindow, ViewportTransformData, VimeoDurationChangeEvent, VimeoPlaybackEvent, VimeoPlayer, VimeoPlayerOptions, VimeoWindow, WindowControlButtonKind, WindowControlButtonSize, YtPlayer, YtPlayerConfig, YtPlayerErrorEvent, YtPlayerEvent, YtPlayerStateChangeEvent, YtPlayerVars, YtWindow };