@ngx-mce/datetime-picker 21.3.2 → 21.3.3

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ngx-mce/datetime-picker",
3
- "version": "21.3.2",
3
+ "version": "21.3.3",
4
4
  "description": "Angular Material Datetime Picker",
5
5
  "author": "Felipe B.",
6
6
  "repository": {
@@ -208,15 +208,13 @@ interface NgxDateSelectionModelChange<S> {
208
208
  * @docs-private
209
209
  */
210
210
  declare abstract class NgxMatDateSelectionModel<S, D = NgxExtractDateTypeFromSelection<S>> implements OnDestroy {
211
- /** The current selection. */
211
+ protected _adapter: DateAdapter<D>;
212
212
  readonly selection: S;
213
213
  private readonly _selectionChanged;
214
214
  /** Emits when the selection has changed. */
215
215
  selectionChanged: Observable<NgxDateSelectionModelChange<S>>;
216
- protected _adapter: DateAdapter<any, any>;
217
- protected constructor(
218
216
  /** The current selection. */
219
- selection: S);
217
+ protected constructor(_adapter: DateAdapter<D>, selection: S);
220
218
  /**
221
219
  * Updates the current selection in the model.
222
220
  * @param value New selection that should be assigned.