@angular/material 19.1.3 → 19.1.4
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/dialog/testing/index.d.ts +1 -1
- package/fesm2022/badge.mjs +3 -2
- package/fesm2022/badge.mjs.map +1 -1
- package/fesm2022/chips.mjs +3 -2
- package/fesm2022/chips.mjs.map +1 -1
- package/fesm2022/core.mjs +4 -3
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/dialog/testing.mjs +1 -1
- package/fesm2022/dialog/testing.mjs.map +1 -1
- package/fesm2022/stepper.mjs +3 -2
- package/fesm2022/stepper.mjs.map +1 -1
- package/fesm2022/timepicker.mjs +11 -2
- package/fesm2022/timepicker.mjs.map +1 -1
- package/fesm2022/tooltip.mjs +13 -13
- package/fesm2022/tooltip.mjs.map +1 -1
- package/package.json +2 -2
- package/schematics/ng-add/index.js +1 -1
- package/schematics/ng-add/index.mjs +1 -1
- package/schematics/ng-generate/theme-color/index_bundled.js +2 -2
- package/schematics/ng-update/index_bundled.js +31 -31
- package/timepicker/index.d.ts +6 -0
- package/tooltip/index.d.ts +0 -6
package/timepicker/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ import { MatOptionParentComponent } from '@angular/material/core';
|
|
|
11
11
|
import { ModelSignal } from '@angular/core';
|
|
12
12
|
import { OnDestroy } from '@angular/core';
|
|
13
13
|
import { OutputEmitterRef } from '@angular/core';
|
|
14
|
+
import { ScrollStrategy } from '@angular/cdk/overlay';
|
|
14
15
|
import { Signal } from '@angular/core';
|
|
15
16
|
import { TemplateRef } from '@angular/core';
|
|
16
17
|
import { ValidationErrors } from '@angular/forms';
|
|
@@ -19,6 +20,7 @@ import { Validator } from '@angular/forms';
|
|
|
19
20
|
declare namespace i1 {
|
|
20
21
|
export {
|
|
21
22
|
MatTimepickerSelected,
|
|
23
|
+
MAT_TIMEPICKER_SCROLL_STRATEGY,
|
|
22
24
|
MatTimepicker
|
|
23
25
|
}
|
|
24
26
|
}
|
|
@@ -40,6 +42,9 @@ declare namespace i3 {
|
|
|
40
42
|
*/
|
|
41
43
|
export declare const MAT_TIMEPICKER_CONFIG: InjectionToken<MatTimepickerConfig>;
|
|
42
44
|
|
|
45
|
+
/** Injection token used to configure the behavior of the timepicker dropdown while scrolling. */
|
|
46
|
+
export declare const MAT_TIMEPICKER_SCROLL_STRATEGY: InjectionToken<() => ScrollStrategy>;
|
|
47
|
+
|
|
43
48
|
/**
|
|
44
49
|
* Renders out a listbox that can be used to select a time of day.
|
|
45
50
|
* Intended to be used together with `MatTimepickerInput`.
|
|
@@ -52,6 +57,7 @@ export declare class MatTimepicker<D> implements OnDestroy, MatOptionParentCompo
|
|
|
52
57
|
private _defaultConfig;
|
|
53
58
|
private _dateAdapter;
|
|
54
59
|
private _dateFormats;
|
|
60
|
+
private _scrollStrategyFactory;
|
|
55
61
|
private _isOpen;
|
|
56
62
|
private _activeDescendant;
|
|
57
63
|
private _input;
|
package/tooltip/index.d.ts
CHANGED
|
@@ -70,10 +70,7 @@ export declare const MAT_TOOLTIP_SCROLL_STRATEGY_FACTORY_PROVIDER: {
|
|
|
70
70
|
* https://material.io/design/components/tooltips.html
|
|
71
71
|
*/
|
|
72
72
|
export declare class MatTooltip implements OnDestroy, AfterViewInit {
|
|
73
|
-
private _overlay;
|
|
74
73
|
private _elementRef;
|
|
75
|
-
private _scrollDispatcher;
|
|
76
|
-
private _viewContainerRef;
|
|
77
74
|
private _ngZone;
|
|
78
75
|
private _platform;
|
|
79
76
|
private _ariaDescriber;
|
|
@@ -88,7 +85,6 @@ export declare class MatTooltip implements OnDestroy, AfterViewInit {
|
|
|
88
85
|
private _positionAtOrigin;
|
|
89
86
|
private _disabled;
|
|
90
87
|
private _tooltipClass;
|
|
91
|
-
private _scrollStrategy;
|
|
92
88
|
private _viewInitialized;
|
|
93
89
|
private _pointerExitEventsInitialized;
|
|
94
90
|
private readonly _tooltipComponent;
|
|
@@ -145,8 +141,6 @@ export declare class MatTooltip implements OnDestroy, AfterViewInit {
|
|
|
145
141
|
});
|
|
146
142
|
/** Manually-bound passive event listeners. */
|
|
147
143
|
private readonly _passiveListeners;
|
|
148
|
-
/** Reference to the current document. */
|
|
149
|
-
private _document;
|
|
150
144
|
/** Timer started at the last `touchstart` event. */
|
|
151
145
|
private _touchstartTimeout;
|
|
152
146
|
/** Emits when the component is destroyed. */
|