@ngx-mce/datetime-picker 21.2.0-next.1 → 21.2.0-next.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.
package/package.json
CHANGED
|
@@ -9,7 +9,6 @@ import { BooleanInput } from '@angular/cdk/coercion';
|
|
|
9
9
|
import * as _angular_forms from '@angular/forms';
|
|
10
10
|
import { ControlValueAccessor, Validator, ValidatorFn, AbstractControl, ValidationErrors, NgForm, FormGroupDirective, NgControl, ControlContainer, FormControl } from '@angular/forms';
|
|
11
11
|
import { MatFormFieldControl } from '@angular/material/form-field';
|
|
12
|
-
import { AnimationEvent } from '@angular/animations';
|
|
13
12
|
import { ScrollStrategy, Overlay } from '@angular/cdk/overlay';
|
|
14
13
|
import { MatButton } from '@angular/material/button';
|
|
15
14
|
import { MatCalendarView, MatCalendar } from '@angular/material/datepicker';
|
|
@@ -1132,7 +1131,8 @@ declare class NgxMatDatepickerContent<S, D = NgxExtractDateTypeFromSelection<S>>
|
|
|
1132
1131
|
/** Whether the datepicker is above or below the input. */
|
|
1133
1132
|
_isAbove: boolean;
|
|
1134
1133
|
/** Current state of the animation. */
|
|
1135
|
-
|
|
1134
|
+
_isLeaving: boolean;
|
|
1135
|
+
_panelEnterClass: 'enter-dropdown' | 'enter-dialog' | null;
|
|
1136
1136
|
/** Emits when an animation has finished. */
|
|
1137
1137
|
readonly _animationDone: Subject<void>;
|
|
1138
1138
|
/** Whether there is an in-progress animation. */
|
|
@@ -1149,6 +1149,9 @@ declare class NgxMatDatepickerContent<S, D = NgxExtractDateTypeFromSelection<S>>
|
|
|
1149
1149
|
get isPrimary(): boolean;
|
|
1150
1150
|
get isAccent(): boolean;
|
|
1151
1151
|
get isWarn(): boolean;
|
|
1152
|
+
get isEnterDropdown(): boolean;
|
|
1153
|
+
get isEnterDialog(): boolean;
|
|
1154
|
+
get isLeavingClass(): boolean;
|
|
1152
1155
|
get isViewMonth(): boolean;
|
|
1153
1156
|
_modelTime: D | null;
|
|
1154
1157
|
constructor(_changeDetectorRef: ChangeDetectorRef, _globalModel: NgxMatDateSelectionModel<S, D>, _dateAdapter: DateAdapter<D>, _rangeSelectionStrategy: NgxMatDateRangeSelectionStrategy<D>, intl: NgxMatDatepickerIntl);
|
|
@@ -1160,7 +1163,7 @@ declare class NgxMatDatepickerContent<S, D = NgxExtractDateTypeFromSelection<S>>
|
|
|
1160
1163
|
private _updateUserSelectionWithCalendarUserEvent;
|
|
1161
1164
|
_handleUserDragDrop(event: NgxMatCalendarUserEvent<NgxDateRange<D>>): void;
|
|
1162
1165
|
_startExitAnimation(): void;
|
|
1163
|
-
|
|
1166
|
+
_onAnimationEnd(event: AnimationEvent): void;
|
|
1164
1167
|
_getSelected(): D | NgxDateRange<D> | null;
|
|
1165
1168
|
/** Applies the current pending selection to the global model. */
|
|
1166
1169
|
_applyPendingSelection(): void;
|