@ethlete/components 0.1.0-next.12 → 0.1.0-next.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/fesm2022/ethlete-components.mjs +574 -169
- package/fesm2022/ethlete-components.mjs.map +1 -1
- package/package.json +1 -1
- package/types/ethlete-components.d.ts +135 -85
|
@@ -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;
|
|
@@ -577,6 +577,7 @@ declare const INPUT_IMPORTS: readonly [typeof InputComponent, typeof InputDirect
|
|
|
577
577
|
|
|
578
578
|
type InlineTag = 'strong' | 'em' | 'del';
|
|
579
579
|
type ListTag = 'ul' | 'ol';
|
|
580
|
+
type HeadingTag = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
|
|
580
581
|
type EditableSelection = {
|
|
581
582
|
selection: Selection;
|
|
582
583
|
range: Range;
|
|
@@ -588,12 +589,28 @@ type RichTextMarkStates = {
|
|
|
588
589
|
unorderedList: boolean;
|
|
589
590
|
orderedList: boolean;
|
|
590
591
|
link: boolean;
|
|
592
|
+
/** Heading level of the block the selection starts in, or `null` when it is not a heading. */
|
|
593
|
+
heading: number | null;
|
|
591
594
|
};
|
|
592
595
|
|
|
593
596
|
declare class RichTextEditorDirective implements FormValueControl<string>, FormFieldControl {
|
|
594
597
|
private formField;
|
|
595
598
|
private destroyRef;
|
|
596
599
|
private document;
|
|
600
|
+
/** @internal */
|
|
601
|
+
editorDom: {
|
|
602
|
+
root: _angular_core.WritableSignal<HTMLElement | null>;
|
|
603
|
+
getSelection: () => EditableSelection | null;
|
|
604
|
+
closestWithin: (node: Node | null, selector: string) => HTMLElement | null;
|
|
605
|
+
markStates: () => RichTextMarkStates | null;
|
|
606
|
+
toggleInline: (tag: InlineTag) => void;
|
|
607
|
+
toggleList: (listTag: ListTag) => void;
|
|
608
|
+
toggleHeading: (tag: HeadingTag) => void;
|
|
609
|
+
applyLink: (href: string) => void;
|
|
610
|
+
removeLink: () => void;
|
|
611
|
+
insertToken: (node: Node) => void;
|
|
612
|
+
handleBackspace: () => boolean;
|
|
613
|
+
};
|
|
597
614
|
value: _angular_core.ModelSignal<string>;
|
|
598
615
|
touched: _angular_core.ModelSignal<boolean>;
|
|
599
616
|
disabled: _angular_core.InputSignal<boolean>;
|
|
@@ -617,21 +634,9 @@ declare class RichTextEditorDirective implements FormValueControl<string>, FormF
|
|
|
617
634
|
unorderedListActive: _angular_core.WritableSignal<boolean>;
|
|
618
635
|
orderedListActive: _angular_core.WritableSignal<boolean>;
|
|
619
636
|
linkActive: _angular_core.WritableSignal<boolean>;
|
|
637
|
+
headingLevel: _angular_core.WritableSignal<number | null>;
|
|
620
638
|
/** @internal */
|
|
621
639
|
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
640
|
constructor();
|
|
636
641
|
activate(): void;
|
|
637
642
|
syncFromDom(): void;
|
|
@@ -641,6 +646,7 @@ declare class RichTextEditorDirective implements FormValueControl<string>, FormF
|
|
|
641
646
|
toggleStrikethrough(): void;
|
|
642
647
|
toggleUnorderedList(): void;
|
|
643
648
|
toggleOrderedList(): void;
|
|
649
|
+
toggleHeading(level: number): void;
|
|
644
650
|
setLink(href: string): void;
|
|
645
651
|
promptForLink(): void;
|
|
646
652
|
handleBackspace(): boolean;
|
|
@@ -668,7 +674,7 @@ declare class RichTextEditorFloatingToolbarComponent {
|
|
|
668
674
|
private pointerSelectingInContent;
|
|
669
675
|
constructor();
|
|
670
676
|
private selectableRange;
|
|
671
|
-
private
|
|
677
|
+
private finishContentPointerSelection;
|
|
672
678
|
private evaluate;
|
|
673
679
|
private reposition;
|
|
674
680
|
private start;
|
|
@@ -684,9 +690,9 @@ declare class RichTextEditorComponent {
|
|
|
684
690
|
private document;
|
|
685
691
|
private editable;
|
|
686
692
|
constructor();
|
|
687
|
-
protected
|
|
688
|
-
protected
|
|
689
|
-
protected
|
|
693
|
+
protected syncValueFromDom(): void;
|
|
694
|
+
protected interceptBackspaceKey(event: KeyboardEvent): void;
|
|
695
|
+
protected interceptFormattingCommand(event: InputEvent): void;
|
|
690
696
|
private renderExternalValue;
|
|
691
697
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RichTextEditorComponent, never>;
|
|
692
698
|
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 +760,6 @@ declare class SelectionListDirective implements SelectionListDirectiveBase, Form
|
|
|
754
760
|
}
|
|
755
761
|
|
|
756
762
|
declare class CheckboxGroupComponent {
|
|
757
|
-
private errorContentRef;
|
|
758
|
-
private hintContentRef;
|
|
759
|
-
private errorAnimatableRef;
|
|
760
|
-
private hintAnimatableRef;
|
|
761
763
|
support: {
|
|
762
764
|
errorColorTheme: _ethlete_core.ColorTheme;
|
|
763
765
|
formFieldDir: FormFieldDirective;
|
|
@@ -775,6 +777,10 @@ declare class CheckboxGroupComponent {
|
|
|
775
777
|
visibleErrors: _angular_core.Signal<readonly _angular_forms_signals.ValidationError.WithOptionalFieldTree[]>;
|
|
776
778
|
supportHeight: _angular_core.Signal<number>;
|
|
777
779
|
};
|
|
780
|
+
private errorContentRef;
|
|
781
|
+
private hintContentRef;
|
|
782
|
+
private errorAnimatableRef;
|
|
783
|
+
private hintAnimatableRef;
|
|
778
784
|
canAnimate: {
|
|
779
785
|
state: _angular_core.Signal<boolean>;
|
|
780
786
|
};
|
|
@@ -825,10 +831,6 @@ declare class CheckboxOptionComponent {
|
|
|
825
831
|
}
|
|
826
832
|
|
|
827
833
|
declare class RadioGroupComponent {
|
|
828
|
-
private errorContentRef;
|
|
829
|
-
private hintContentRef;
|
|
830
|
-
private errorAnimatableRef;
|
|
831
|
-
private hintAnimatableRef;
|
|
832
834
|
support: {
|
|
833
835
|
errorColorTheme: _ethlete_core.ColorTheme;
|
|
834
836
|
formFieldDir: FormFieldDirective;
|
|
@@ -846,6 +848,10 @@ declare class RadioGroupComponent {
|
|
|
846
848
|
visibleErrors: _angular_core.Signal<readonly _angular_forms_signals.ValidationError.WithOptionalFieldTree[]>;
|
|
847
849
|
supportHeight: _angular_core.Signal<number>;
|
|
848
850
|
};
|
|
851
|
+
private errorContentRef;
|
|
852
|
+
private hintContentRef;
|
|
853
|
+
private errorAnimatableRef;
|
|
854
|
+
private hintAnimatableRef;
|
|
849
855
|
canAnimate: {
|
|
850
856
|
state: _angular_core.Signal<boolean>;
|
|
851
857
|
};
|
|
@@ -864,10 +870,6 @@ declare class RadioComponent {
|
|
|
864
870
|
}
|
|
865
871
|
|
|
866
872
|
declare class SegmentedButtonGroupComponent {
|
|
867
|
-
private errorContentRef;
|
|
868
|
-
private hintContentRef;
|
|
869
|
-
private errorAnimatableRef;
|
|
870
|
-
private hintAnimatableRef;
|
|
871
873
|
support: {
|
|
872
874
|
errorColorTheme: _ethlete_core.ColorTheme;
|
|
873
875
|
formFieldDir: FormFieldDirective;
|
|
@@ -885,6 +887,10 @@ declare class SegmentedButtonGroupComponent {
|
|
|
885
887
|
visibleErrors: _angular_core.Signal<readonly _angular_forms_signals.ValidationError.WithOptionalFieldTree[]>;
|
|
886
888
|
supportHeight: _angular_core.Signal<number>;
|
|
887
889
|
};
|
|
890
|
+
private errorContentRef;
|
|
891
|
+
private hintContentRef;
|
|
892
|
+
private errorAnimatableRef;
|
|
893
|
+
private hintAnimatableRef;
|
|
888
894
|
canAnimate: {
|
|
889
895
|
state: _angular_core.Signal<boolean>;
|
|
890
896
|
};
|
|
@@ -968,6 +974,14 @@ type GridLayoutEntry = {
|
|
|
968
974
|
id: string;
|
|
969
975
|
position: GridItemPosition;
|
|
970
976
|
};
|
|
977
|
+
/**
|
|
978
|
+
* Contract for a grid item's `actionsComponent`: a component that receives the item's `itemId` and
|
|
979
|
+
* `data` as inputs. Both are always provided by the grid.
|
|
980
|
+
*/
|
|
981
|
+
type GridItemActionsComponent<TData = unknown> = Type<{
|
|
982
|
+
itemId: InputSignal<string>;
|
|
983
|
+
data: InputSignal<TData>;
|
|
984
|
+
}>;
|
|
971
985
|
type GridComponentRegistration<TData = unknown> = {
|
|
972
986
|
component: Type<{
|
|
973
987
|
data: InputSignal<TData>;
|
|
@@ -1005,13 +1019,14 @@ type GridDragState = {
|
|
|
1005
1019
|
};
|
|
1006
1020
|
declare class GridDirective {
|
|
1007
1021
|
private injector;
|
|
1022
|
+
private renderer;
|
|
1023
|
+
private gridConfig;
|
|
1008
1024
|
breakpoints: _angular_core.InputSignal<GridBreakpointConfig[]>;
|
|
1009
1025
|
rowHeight: _angular_core.InputSignal<number>;
|
|
1010
1026
|
gap: _angular_core.InputSignal<number>;
|
|
1011
1027
|
initialItems: _angular_core.InputSignal<GridItemConfig[]>;
|
|
1012
1028
|
readOnly: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1013
1029
|
layoutChange: _angular_core.OutputEmitterRef<GridSerializedState>;
|
|
1014
|
-
private gridConfig;
|
|
1015
1030
|
registrations: _angular_core.Signal<GridComponentRegistration[]>;
|
|
1016
1031
|
private dimensions;
|
|
1017
1032
|
private itemConfigs;
|
|
@@ -1020,7 +1035,9 @@ declare class GridDirective {
|
|
|
1020
1035
|
private constraintsRegistry;
|
|
1021
1036
|
private resizeBaseLayout;
|
|
1022
1037
|
private itemElements;
|
|
1038
|
+
private contentElements;
|
|
1023
1039
|
private ghostElement;
|
|
1040
|
+
private lastFlipAt;
|
|
1024
1041
|
private rectSnapshot;
|
|
1025
1042
|
containerWidth: _angular_core.Signal<number>;
|
|
1026
1043
|
activeBreakpoint: _angular_core.Signal<string>;
|
|
@@ -1036,12 +1053,17 @@ declare class GridDirective {
|
|
|
1036
1053
|
constraints: GridItemConstraints;
|
|
1037
1054
|
}): void;
|
|
1038
1055
|
unregisterItem(id: string): void;
|
|
1056
|
+
/**
|
|
1057
|
+
* The item's inner content wrapper. Used by the counter-scaled resize FLIP so the
|
|
1058
|
+
* box can scale while the content takes the inverse scale and stays undistorted.
|
|
1059
|
+
*/
|
|
1060
|
+
registerContentElement(id: string, el: HTMLElement): void;
|
|
1039
1061
|
setGhostElement(el: HTMLElement | null): void;
|
|
1040
1062
|
getConstraints(id: string): GridItemConstraints;
|
|
1041
1063
|
snapshotRects(): void;
|
|
1042
1064
|
animateLayoutTransition(options?: {
|
|
1043
1065
|
excludeIds?: Set<string>;
|
|
1044
|
-
|
|
1066
|
+
durationMs?: number;
|
|
1045
1067
|
}): void;
|
|
1046
1068
|
beginDrag(itemId: string): void;
|
|
1047
1069
|
updateDragTarget(targetPosition: GridItemPosition): void;
|
|
@@ -1060,6 +1082,7 @@ declare class GridDirective {
|
|
|
1060
1082
|
private updateLayoutForCurrentBreakpoint;
|
|
1061
1083
|
private updateItemLayout;
|
|
1062
1084
|
private emitLayoutChange;
|
|
1085
|
+
private animateCounterScaled;
|
|
1063
1086
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridDirective, never>;
|
|
1064
1087
|
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
1088
|
}
|
|
@@ -1096,6 +1119,8 @@ declare class GridDragDirective {
|
|
|
1096
1119
|
private renderer;
|
|
1097
1120
|
private dragStartClient;
|
|
1098
1121
|
private dragPixelOffset;
|
|
1122
|
+
private dragMoveCount;
|
|
1123
|
+
private lastGhostMoveAt;
|
|
1099
1124
|
protected dragTransform: _angular_core.Signal<string>;
|
|
1100
1125
|
constructor();
|
|
1101
1126
|
private applyFixed;
|
|
@@ -1107,12 +1132,20 @@ declare class GridDragDirective {
|
|
|
1107
1132
|
declare class GridResizeDirective {
|
|
1108
1133
|
private grid;
|
|
1109
1134
|
private gridItem;
|
|
1135
|
+
private injector;
|
|
1136
|
+
private elementRef;
|
|
1137
|
+
private renderer;
|
|
1110
1138
|
isResizing: _angular_core.WritableSignal<boolean>;
|
|
1111
1139
|
resizeEdges: _angular_core.Signal<ResizeEdge[]>;
|
|
1112
1140
|
private resizeStartPos;
|
|
1141
|
+
private liftedRect;
|
|
1142
|
+
private lastSnap;
|
|
1113
1143
|
beginResize(): void;
|
|
1114
1144
|
updateResize(event: ResizeMoveEvent): void;
|
|
1115
1145
|
finishResize(): void;
|
|
1146
|
+
private currentFixedRect;
|
|
1147
|
+
private applyFixed;
|
|
1148
|
+
private releaseFixed;
|
|
1116
1149
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridResizeDirective, never>;
|
|
1117
1150
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GridResizeDirective, "[etGridResize]", never, {}, {}, never, never, true, never>;
|
|
1118
1151
|
}
|
|
@@ -1123,12 +1156,9 @@ type GridConfig = {
|
|
|
1123
1156
|
registrations: GridComponentRegistration[];
|
|
1124
1157
|
interactiveAriaLabel: string;
|
|
1125
1158
|
readonlyAriaLabel: string;
|
|
1126
|
-
|
|
1159
|
+
removeActionAriaLabel: string;
|
|
1127
1160
|
transformer: (text: string, locale: string) => string;
|
|
1128
|
-
|
|
1129
|
-
dragHandleComponent?: Type<unknown>;
|
|
1130
|
-
/** Replaces the default ✕ button for all registered items. Receives `data` and `itemId` as inputs. */
|
|
1131
|
-
actionsComponent?: Type<unknown>;
|
|
1161
|
+
actionsComponent?: GridItemActionsComponent | null;
|
|
1132
1162
|
};
|
|
1133
1163
|
declare const provideGridConfig: (valueOverride?: Partial<GridConfig> | undefined) => _angular_core.Provider[];
|
|
1134
1164
|
declare const injectGridConfig: {
|
|
@@ -1161,12 +1191,10 @@ declare const fromGridPosition: (pos: GridItemPosition) => {
|
|
|
1161
1191
|
|
|
1162
1192
|
declare class GridComponent {
|
|
1163
1193
|
grid: GridDirective;
|
|
1164
|
-
private ghostRef;
|
|
1165
1194
|
private gridConfig;
|
|
1166
1195
|
private locale;
|
|
1167
|
-
|
|
1168
|
-
protected
|
|
1169
|
-
protected actionsComponent: _angular_core.Signal<_angular_core.Type<unknown> | undefined>;
|
|
1196
|
+
private ghostRef;
|
|
1197
|
+
protected actionsComponent: _angular_core.Signal<_ethlete_components.GridItemActionsComponent | null>;
|
|
1170
1198
|
protected registeredItems: _angular_core.Signal<{
|
|
1171
1199
|
item: _ethlete_components.GridItemConfig;
|
|
1172
1200
|
reg: _ethlete_components.GridComponentRegistration;
|
|
@@ -1187,18 +1215,34 @@ declare class GridItemComponent {
|
|
|
1187
1215
|
private parentSurfaceProvider;
|
|
1188
1216
|
gridDrag: GridDragDirective;
|
|
1189
1217
|
gridResize: GridResizeDirective;
|
|
1218
|
+
private surfaceThemes;
|
|
1190
1219
|
ariaLabel: _angular_core.InputSignal<string>;
|
|
1191
1220
|
removed: _angular_core.OutputEmitterRef<void>;
|
|
1192
|
-
private
|
|
1193
|
-
private gridConfig;
|
|
1194
|
-
private locale;
|
|
1221
|
+
private itemContent;
|
|
1195
1222
|
protected isReadOnly: _angular_core.Signal<boolean>;
|
|
1196
|
-
protected dragHandleAriaLabel: _angular_core.Signal<string>;
|
|
1197
1223
|
private resolvedSurface;
|
|
1198
1224
|
constructor();
|
|
1225
|
+
protected blockPointerDownWhenReadOnly(event: PointerEvent): void;
|
|
1199
1226
|
applyKeyboardShortcut(event: KeyboardEvent): void;
|
|
1200
1227
|
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, ["
|
|
1228
|
+
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: {}; }]>;
|
|
1229
|
+
}
|
|
1230
|
+
|
|
1231
|
+
declare class GridItemToolbarComponent {
|
|
1232
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridItemToolbarComponent, never>;
|
|
1233
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GridItemToolbarComponent, "et-grid-item-toolbar, [et-grid-item-toolbar]", never, {}, {}, never, ["*"], true, never>;
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1236
|
+
declare class GridItemDefaultActionsComponent {
|
|
1237
|
+
private grid;
|
|
1238
|
+
private gridConfig;
|
|
1239
|
+
private locale;
|
|
1240
|
+
itemId: _angular_core.InputSignal<string>;
|
|
1241
|
+
data: _angular_core.InputSignal<unknown>;
|
|
1242
|
+
protected removeAriaLabel: _angular_core.Signal<string>;
|
|
1243
|
+
protected remove(): void;
|
|
1244
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GridItemDefaultActionsComponent, never>;
|
|
1245
|
+
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
1246
|
}
|
|
1203
1247
|
|
|
1204
1248
|
/**
|
|
@@ -1251,7 +1295,7 @@ declare const GRID_ERROR_CODES: {
|
|
|
1251
1295
|
readonly INVALID_LAYOUT_STATE: 1903;
|
|
1252
1296
|
};
|
|
1253
1297
|
|
|
1254
|
-
declare const GridImports: readonly [typeof GridComponent, typeof GridItemComponent, typeof GridDebugComponent];
|
|
1298
|
+
declare const GridImports: readonly [typeof GridComponent, typeof GridItemComponent, typeof GridItemToolbarComponent, typeof GridItemDefaultActionsComponent, typeof GridDebugComponent];
|
|
1255
1299
|
|
|
1256
1300
|
type IconDefinition = {
|
|
1257
1301
|
name: string;
|
|
@@ -1279,6 +1323,12 @@ declare const FOCUS_FRAME_ICON: IconDefinition;
|
|
|
1279
1323
|
|
|
1280
1324
|
declare const GRID_2X2_ICON: IconDefinition;
|
|
1281
1325
|
|
|
1326
|
+
declare const HEADING_1_ICON: IconDefinition;
|
|
1327
|
+
|
|
1328
|
+
declare const HEADING_2_ICON: IconDefinition;
|
|
1329
|
+
|
|
1330
|
+
declare const HEADING_3_ICON: IconDefinition;
|
|
1331
|
+
|
|
1282
1332
|
declare const ICON_ERROR_CODES: {
|
|
1283
1333
|
readonly NO_ICONS_PROVIDED: 1800;
|
|
1284
1334
|
readonly ICON_NOT_FOUND: 1801;
|
|
@@ -1838,6 +1888,7 @@ declare class OverlayTriggerDirective {
|
|
|
1838
1888
|
|
|
1839
1889
|
declare class OverlayDirective {
|
|
1840
1890
|
private destroyRef;
|
|
1891
|
+
private overlayManager;
|
|
1841
1892
|
mode: _angular_core.InputSignal<OverlayMode>;
|
|
1842
1893
|
role: _angular_core.InputSignal<OverlayRole | undefined>;
|
|
1843
1894
|
open: _angular_core.ModelSignal<boolean>;
|
|
@@ -1860,7 +1911,6 @@ declare class OverlayDirective {
|
|
|
1860
1911
|
autoHide: _angular_core.InputSignal<boolean>;
|
|
1861
1912
|
autoCloseIfReferenceHidden: _angular_core.InputSignal<boolean>;
|
|
1862
1913
|
mirrorWidth: _angular_core.InputSignal<boolean>;
|
|
1863
|
-
private overlayManager;
|
|
1864
1914
|
/** @internal */
|
|
1865
1915
|
registeredAnchor: _angular_core.WritableSignal<OverlayAnchorDirective | null>;
|
|
1866
1916
|
/** @internal */
|
|
@@ -1906,8 +1956,8 @@ declare class OverlayBodyComponent implements OnInit {
|
|
|
1906
1956
|
private overlayRef;
|
|
1907
1957
|
private elementRef;
|
|
1908
1958
|
private scrollObserver;
|
|
1909
|
-
dividers: _angular_core.InputSignal<OverlayBodyDividerType>;
|
|
1910
1959
|
private overlayManager;
|
|
1960
|
+
dividers: _angular_core.InputSignal<OverlayBodyDividerType>;
|
|
1911
1961
|
dividersEnabled: _angular_core.Signal<boolean>;
|
|
1912
1962
|
dynamicDividersEnabled: _angular_core.Signal<boolean>;
|
|
1913
1963
|
containerScrollState: _angular_core.Signal<_ethlete_core.ElementScrollState>;
|
|
@@ -1925,11 +1975,11 @@ declare class OverlayBodyComponent implements OnInit {
|
|
|
1925
1975
|
declare class OverlayCloseDirective implements OnInit {
|
|
1926
1976
|
private overlayRef;
|
|
1927
1977
|
private elementRef;
|
|
1978
|
+
private overlayManager;
|
|
1928
1979
|
ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
1929
1980
|
type: _angular_core.InputSignal<"button" | "submit" | "reset">;
|
|
1930
1981
|
closeResult: _angular_core.InputSignal<unknown>;
|
|
1931
1982
|
closeResultAlt: _angular_core.InputSignal<unknown>;
|
|
1932
|
-
private overlayManager;
|
|
1933
1983
|
constructor();
|
|
1934
1984
|
ngOnInit(): void;
|
|
1935
1985
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<OverlayCloseDirective, never>;
|
|
@@ -1958,11 +2008,6 @@ declare class OverlayContainerComponent {
|
|
|
1958
2008
|
afterClosed: () => rxjs.Observable<unknown>;
|
|
1959
2009
|
attachRuntime: (runtimeRef: _ethlete_core.OverlayRuntimeRef<object, unknown>) => void;
|
|
1960
2010
|
};
|
|
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
2011
|
private surfaceThemes;
|
|
1967
2012
|
private surfaceContextTracker;
|
|
1968
2013
|
private renderer;
|
|
@@ -1970,6 +2015,11 @@ declare class OverlayContainerComponent {
|
|
|
1970
2015
|
value: _angular_core.Signal<HTMLElement>;
|
|
1971
2016
|
override: _angular_core.WritableSignal<HTMLElement | null>;
|
|
1972
2017
|
};
|
|
2018
|
+
component: _angular_core.InputSignal<Type<object>>;
|
|
2019
|
+
componentInputs: _angular_core.InputSignal<Record<string, unknown> | undefined>;
|
|
2020
|
+
componentOutputs: _angular_core.InputSignal<Record<string, (event: unknown) => unknown> | undefined>;
|
|
2021
|
+
renderArrow: _angular_core.InputSignal<boolean>;
|
|
2022
|
+
private contentOutlet;
|
|
1973
2023
|
animatedLifecycle: _angular_core.WritableSignal<AnimatedLifecycleDirective>;
|
|
1974
2024
|
contentComponentRef: _angular_core.WritableSignal<ComponentRef<object> | null>;
|
|
1975
2025
|
constructor();
|
|
@@ -2091,8 +2141,8 @@ declare class OverlayMainDirective implements OnInit {
|
|
|
2091
2141
|
private parent;
|
|
2092
2142
|
private elementRef;
|
|
2093
2143
|
private overlayRef;
|
|
2094
|
-
enabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2095
2144
|
private overlayManager;
|
|
2145
|
+
enabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2096
2146
|
ngOnInit(): void;
|
|
2097
2147
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<OverlayMainDirective, never>;
|
|
2098
2148
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<OverlayMainDirective, "[etOverlayMain], et-overlay-main", never, { "enabled": { "alias": "etOverlayMain"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
@@ -2127,9 +2177,9 @@ declare const injectOverlayScrollBlocker: {
|
|
|
2127
2177
|
declare class OverlayTitleDirective implements OnInit {
|
|
2128
2178
|
private overlayRef;
|
|
2129
2179
|
private elementRef;
|
|
2130
|
-
id: _angular_core.InputSignal<string>;
|
|
2131
2180
|
private overlayManager;
|
|
2132
2181
|
private renderer;
|
|
2182
|
+
id: _angular_core.InputSignal<string>;
|
|
2133
2183
|
ngOnInit(): void;
|
|
2134
2184
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<OverlayTitleDirective, never>;
|
|
2135
2185
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<OverlayTitleDirective, "[et-overlay-title], [etOverlayTitle]", ["etOverlayTitle"], { "id": { "alias": "id"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
@@ -2143,8 +2193,8 @@ declare const OVERLAY_BACK_OR_CLOSE_TOKEN: InjectionToken<OverlayBackOrCloseDire
|
|
|
2143
2193
|
declare class OverlayBackOrCloseDirective {
|
|
2144
2194
|
private overlayRef;
|
|
2145
2195
|
private elementRef;
|
|
2146
|
-
disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2147
2196
|
private router;
|
|
2197
|
+
disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2148
2198
|
constructor();
|
|
2149
2199
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<OverlayBackOrCloseDirective, never>;
|
|
2150
2200
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<OverlayBackOrCloseDirective, "[etOverlayBackOrClose]", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
@@ -2166,8 +2216,8 @@ declare class OverlayRouteHeaderTemplateOutletComponent {
|
|
|
2166
2216
|
afterClosed: () => rxjs.Observable<unknown>;
|
|
2167
2217
|
attachRuntime: (runtimeRef: _ethlete_core.OverlayRuntimeRef<object, unknown>) => void;
|
|
2168
2218
|
};
|
|
2169
|
-
animatedLifecycle: _angular_core.Signal<AnimatedLifecycleDirective>;
|
|
2170
2219
|
protected router: _ethlete_components.OverlayRouter;
|
|
2220
|
+
animatedLifecycle: _angular_core.Signal<AnimatedLifecycleDirective>;
|
|
2171
2221
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<OverlayRouteHeaderTemplateOutletComponent, never>;
|
|
2172
2222
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<OverlayRouteHeaderTemplateOutletComponent, "et-overlay-route-header-template-outlet", never, {}, {}, never, never, true, never>;
|
|
2173
2223
|
}
|
|
@@ -2273,10 +2323,10 @@ declare const provideOverlayRouter: (config: OverlayRouterConfig) => Provider[];
|
|
|
2273
2323
|
declare const OVERLAY_ROUTER_LINK_TOKEN: InjectionToken<OverlayRouterLinkDirective>;
|
|
2274
2324
|
declare class OverlayRouterLinkDirective {
|
|
2275
2325
|
private elementRef;
|
|
2326
|
+
private router;
|
|
2276
2327
|
path: _angular_core.InputSignal<string | (string | number)[]>;
|
|
2277
2328
|
disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2278
2329
|
navigationDirection: _angular_core.InputSignal<OverlayRouterNavigationDirection | null>;
|
|
2279
|
-
private router;
|
|
2280
2330
|
isActive: _angular_core.Signal<boolean>;
|
|
2281
2331
|
constructor();
|
|
2282
2332
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<OverlayRouterLinkDirective, never>;
|
|
@@ -2294,12 +2344,12 @@ declare class OverlayRouterOutletComponent {
|
|
|
2294
2344
|
private injector;
|
|
2295
2345
|
private overlayRef;
|
|
2296
2346
|
private elementRef;
|
|
2347
|
+
protected router: _ethlete_components.OverlayRouter;
|
|
2348
|
+
private renderer;
|
|
2297
2349
|
disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2298
2350
|
sharedRouteTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
2299
2351
|
outletDisabledTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
2300
2352
|
pageWrappers: _angular_core.Signal<readonly ElementRef<HTMLElement>[]>;
|
|
2301
|
-
protected router: _ethlete_components.OverlayRouter;
|
|
2302
|
-
private renderer;
|
|
2303
2353
|
readonly hasSidebar: boolean;
|
|
2304
2354
|
wasDisabled: _angular_core.WritableSignal<boolean>;
|
|
2305
2355
|
keepDisabledTransition: _angular_core.Signal<boolean>;
|
|
@@ -2333,10 +2383,10 @@ declare class OverlaySidebarPageComponent {
|
|
|
2333
2383
|
}
|
|
2334
2384
|
|
|
2335
2385
|
declare class OverlaySidebarComponent {
|
|
2386
|
+
protected sidebar: _ethlete_components.SidebarOverlay;
|
|
2336
2387
|
pageDividers: _angular_core.InputSignal<OverlayBodyDividerType>;
|
|
2337
2388
|
sidebarContent: _angular_core.Signal<TemplateRef<unknown>>;
|
|
2338
2389
|
sidebarHeaderContent: _angular_core.Signal<_ethlete_components.OverlayHeaderTemplateDirective | undefined>;
|
|
2339
|
-
protected sidebar: _ethlete_components.SidebarOverlay;
|
|
2340
2390
|
constructor();
|
|
2341
2391
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<OverlaySidebarComponent, never>;
|
|
2342
2392
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<OverlaySidebarComponent, "et-overlay-sidebar", never, { "pageDividers": { "alias": "pageDividers"; "required": false; "isSignal": true; }; }, {}, ["sidebarHeaderContent"], ["*"], true, never>;
|
|
@@ -3365,8 +3415,8 @@ type PipManager = {
|
|
|
3365
3415
|
declare class PipBackDirective {
|
|
3366
3416
|
private chrome;
|
|
3367
3417
|
private tokenEntry;
|
|
3368
|
-
entry: _angular_core.InputSignal<StreamPipEntry | undefined>;
|
|
3369
3418
|
private pipManager;
|
|
3419
|
+
entry: _angular_core.InputSignal<StreamPipEntry | undefined>;
|
|
3370
3420
|
back(event: Event): void;
|
|
3371
3421
|
private resolveEntry;
|
|
3372
3422
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PipBackDirective, never>;
|
|
@@ -3545,8 +3595,8 @@ declare class PipCloseDirective {
|
|
|
3545
3595
|
private chrome;
|
|
3546
3596
|
private pipWindow;
|
|
3547
3597
|
private tokenEntry;
|
|
3548
|
-
entry: _angular_core.InputSignal<StreamPipEntry | undefined>;
|
|
3549
3598
|
private pipManager;
|
|
3599
|
+
entry: _angular_core.InputSignal<StreamPipEntry | undefined>;
|
|
3550
3600
|
close(event: Event): void;
|
|
3551
3601
|
private resolveEntry;
|
|
3552
3602
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PipCloseDirective, never>;
|
|
@@ -3585,10 +3635,10 @@ declare class PipTitleBarDirective {
|
|
|
3585
3635
|
declare const PIP_WINDOW_ASPECT_RATIO_TOKEN: InjectionToken<Signal<number>>;
|
|
3586
3636
|
|
|
3587
3637
|
declare class StreamPipChromeComponent implements PipChromeRef {
|
|
3638
|
+
pipManager: _ethlete_components.PipManager;
|
|
3588
3639
|
stageRef: _angular_core.Signal<ElementRef<HTMLElement> | undefined>;
|
|
3589
3640
|
pipWindowRef: _angular_core.Signal<PipWindowComponent | undefined>;
|
|
3590
3641
|
gridBtnRef: _angular_core.Signal<ElementRef<HTMLElement> | undefined>;
|
|
3591
|
-
pipManager: _ethlete_components.PipManager;
|
|
3592
3642
|
state: _ethlete_components.PipChromeState;
|
|
3593
3643
|
animations: _ethlete_components.PipChromeAnimations;
|
|
3594
3644
|
readonly CLOSE_KIND: "close";
|
|
@@ -3602,11 +3652,11 @@ declare class PipPlayerComponent {
|
|
|
3602
3652
|
private document;
|
|
3603
3653
|
private el;
|
|
3604
3654
|
protected pipCell: PipCellDirective | null;
|
|
3605
|
-
entry: _angular_core.InputSignal<StreamPipEntry | undefined>;
|
|
3606
|
-
showThumbnail: _angular_core.InputSignal<boolean | undefined>;
|
|
3607
3655
|
private streamManager;
|
|
3608
3656
|
private pipManager;
|
|
3609
3657
|
private renderer;
|
|
3658
|
+
entry: _angular_core.InputSignal<StreamPipEntry | undefined>;
|
|
3659
|
+
showThumbnail: _angular_core.InputSignal<boolean | undefined>;
|
|
3610
3660
|
isReady: _angular_core.WritableSignal<boolean>;
|
|
3611
3661
|
resolvedEntry: _angular_core.Signal<StreamPipEntry>;
|
|
3612
3662
|
thumbnailUrl: _angular_core.Signal<string | null>;
|
|
@@ -3644,11 +3694,11 @@ declare const injectPipSlotPlaceholderConfig: {
|
|
|
3644
3694
|
declare class PipSlotPlaceholderComponent {
|
|
3645
3695
|
private slotPlayerId;
|
|
3646
3696
|
private parentSurfaceProvider;
|
|
3647
|
-
private bringBackDir;
|
|
3648
3697
|
private pipManager;
|
|
3649
3698
|
private config;
|
|
3650
3699
|
private locale;
|
|
3651
3700
|
private surfaceThemes;
|
|
3701
|
+
private bringBackDir;
|
|
3652
3702
|
cardSurface: _angular_core.Signal<string | null>;
|
|
3653
3703
|
isInPip: _angular_core.Signal<boolean>;
|
|
3654
3704
|
message: _angular_core.Signal<string>;
|
|
@@ -3691,10 +3741,10 @@ declare class StreamPlayerSlotDirective {
|
|
|
3691
3741
|
private playerComponent;
|
|
3692
3742
|
private provideSurface;
|
|
3693
3743
|
private parentSurfaceProvider;
|
|
3694
|
-
streamSlotPriority: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3695
|
-
streamSlotOnPipBack: _angular_core.InputSignal<(() => void) | undefined>;
|
|
3696
3744
|
private surfaceThemes;
|
|
3697
3745
|
private styleManager;
|
|
3746
|
+
streamSlotPriority: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3747
|
+
streamSlotOnPipBack: _angular_core.InputSignal<(() => void) | undefined>;
|
|
3698
3748
|
private resolvedSurface;
|
|
3699
3749
|
slot: _ethlete_components.StreamPlayerSlotHandle;
|
|
3700
3750
|
constructor();
|
|
@@ -4689,6 +4739,7 @@ declare class ToggletipDirective {
|
|
|
4689
4739
|
private elementRef;
|
|
4690
4740
|
private colorProvider;
|
|
4691
4741
|
private surfaceProvider;
|
|
4742
|
+
private overlayManager;
|
|
4692
4743
|
content: _angular_core.InputSignal<ToggletipContent | null>;
|
|
4693
4744
|
ariaLabel: _angular_core.InputSignal<string | null>;
|
|
4694
4745
|
ariaLabelledBy: _angular_core.InputSignal<string | null>;
|
|
@@ -4699,7 +4750,6 @@ declare class ToggletipDirective {
|
|
|
4699
4750
|
viewportPadding: _angular_core.InputSignal<Padding | null>;
|
|
4700
4751
|
disabled: _angular_core.InputSignal<boolean>;
|
|
4701
4752
|
open: _angular_core.ModelSignal<boolean>;
|
|
4702
|
-
private overlayManager;
|
|
4703
4753
|
/** @internal */
|
|
4704
4754
|
overlayRef: _angular_core.WritableSignal<OverlayRef<ToggletipComponent, unknown> | null>;
|
|
4705
4755
|
private toggletipId;
|
|
@@ -4726,12 +4776,12 @@ declare class ToggletipComponent {
|
|
|
4726
4776
|
private triggerColorProvider;
|
|
4727
4777
|
private triggerSurfaceProvider;
|
|
4728
4778
|
protected injector: Injector;
|
|
4779
|
+
private surfaceThemes;
|
|
4729
4780
|
toggletipId: _angular_core.InputSignal<string>;
|
|
4730
4781
|
protected contentId: _angular_core.InputSignal<string>;
|
|
4731
4782
|
content: _angular_core.InputSignal<ToggletipContent>;
|
|
4732
4783
|
colorProvider: _angular_core.InputSignal<ProvideColorDirective | null>;
|
|
4733
4784
|
surfaceProvider: _angular_core.InputSignal<ProvideSurfaceDirective | null>;
|
|
4734
|
-
private surfaceThemes;
|
|
4735
4785
|
hasTemplate: _angular_core.Signal<boolean>;
|
|
4736
4786
|
contentText: _angular_core.Signal<string | null>;
|
|
4737
4787
|
contentTemplate: _angular_core.Signal<TemplateRef<unknown> | null>;
|
|
@@ -4772,11 +4822,11 @@ declare class TooltipComponent {
|
|
|
4772
4822
|
private ownSurfaceProvider;
|
|
4773
4823
|
private triggerColorProvider;
|
|
4774
4824
|
private triggerSurfaceProvider;
|
|
4825
|
+
private surfaceThemes;
|
|
4775
4826
|
tooltipId: _angular_core.InputSignal<string>;
|
|
4776
4827
|
content: _angular_core.InputSignal<TooltipContent>;
|
|
4777
4828
|
colorProvider: _angular_core.InputSignal<ProvideColorDirective | null>;
|
|
4778
4829
|
surfaceProvider: _angular_core.InputSignal<ProvideSurfaceDirective | null>;
|
|
4779
|
-
private surfaceThemes;
|
|
4780
4830
|
hasTemplate: _angular_core.Signal<boolean>;
|
|
4781
4831
|
contentText: _angular_core.Signal<string | null>;
|
|
4782
4832
|
contentTemplate: _angular_core.Signal<TemplateRef<unknown> | null>;
|
|
@@ -4793,6 +4843,9 @@ declare class TooltipDirective {
|
|
|
4793
4843
|
private elementRef;
|
|
4794
4844
|
private colorProvider;
|
|
4795
4845
|
private surfaceProvider;
|
|
4846
|
+
private overlayManager;
|
|
4847
|
+
private focusVisibleTracker;
|
|
4848
|
+
private renderer;
|
|
4796
4849
|
content: _angular_core.InputSignal<TooltipContent | null>;
|
|
4797
4850
|
ariaDescription: _angular_core.InputSignal<string | null>;
|
|
4798
4851
|
placement: _angular_core.InputSignal<Placement>;
|
|
@@ -4802,9 +4855,6 @@ declare class TooltipDirective {
|
|
|
4802
4855
|
viewportPadding: _angular_core.InputSignal<Padding | null>;
|
|
4803
4856
|
showDelay: _angular_core.InputSignal<number>;
|
|
4804
4857
|
disabled: _angular_core.InputSignal<boolean>;
|
|
4805
|
-
private overlayManager;
|
|
4806
|
-
private focusVisibleTracker;
|
|
4807
|
-
private renderer;
|
|
4808
4858
|
/** @internal */
|
|
4809
4859
|
overlayRef: _angular_core.WritableSignal<OverlayRef<TooltipComponent, unknown> | null>;
|
|
4810
4860
|
private hasHover;
|
|
@@ -4830,5 +4880,5 @@ declare const TOOLTIP_ERROR_CODES: {
|
|
|
4830
4880
|
|
|
4831
4881
|
declare const TOOLTIP_IMPORTS: readonly [typeof TooltipDirective, typeof TooltipComponent];
|
|
4832
4882
|
|
|
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 };
|
|
4883
|
+
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, HEADING_1_ICON, HEADING_2_ICON, HEADING_3_ICON, 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 };
|
|
4884
|
+
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 };
|