@ng-matero/extensions 19.3.1 → 19.3.2
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.
|
@@ -83,11 +83,11 @@ export declare class MtxTimeView<D> implements OnChanges, OnDestroy {
|
|
|
83
83
|
/** Whether the time input should be auto-focused after view init. */
|
|
84
84
|
autoFocus: boolean;
|
|
85
85
|
protected hourInputElement: ElementRef<HTMLInputElement> | undefined;
|
|
86
|
-
protected _hourInputDirective: MtxTimeInput | undefined;
|
|
87
86
|
set hourInputDirective(input: MtxTimeInput);
|
|
87
|
+
protected _hourInputDirective: MtxTimeInput | undefined;
|
|
88
88
|
protected minuteInputElement: ElementRef<HTMLInputElement> | undefined;
|
|
89
|
-
protected _minuteInputDirective: MtxTimeInput | undefined;
|
|
90
89
|
set minuteInputDirective(input: MtxTimeInput);
|
|
90
|
+
protected _minuteInputDirective: MtxTimeInput | undefined;
|
|
91
91
|
datetimepickerIntlChangesSubscription: SubscriptionLike;
|
|
92
92
|
/** Whether the clock uses 12 hour format. */
|
|
93
93
|
twelvehour: boolean;
|
|
@@ -1217,7 +1217,7 @@ class MtxTimeView {
|
|
|
1217
1217
|
this._changeDetectorRef.detectChanges();
|
|
1218
1218
|
}
|
|
1219
1219
|
set minuteInputDirective(input) {
|
|
1220
|
-
this.
|
|
1220
|
+
this._minuteInputDirective = input;
|
|
1221
1221
|
this._changeDetectorRef.detectChanges();
|
|
1222
1222
|
}
|
|
1223
1223
|
/** The date to display in this clock view. */
|