@ts-core/angular 13.0.50 → 13.0.51

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.
@@ -4067,12 +4067,6 @@ class WindowImpl extends WindowBase {
4067
4067
  if (!this.config.isModal) {
4068
4068
  this.container.addEventListener('mousedown', this.mouseDownHandlerProxy);
4069
4069
  }
4070
- /*
4071
- if (!this.config.isModal) {
4072
- this.container.addEventListener('click', this.mouseClickHandlerProxy, true);
4073
- this.container.addEventListener('mousedown', this.mouseDownHandlerProxy);
4074
- }
4075
- */
4076
4070
  this.elementsCreate();
4077
4071
  }
4078
4072
  commitIsBlinkProperties() { }
@@ -4941,8 +4935,8 @@ class BottomSheetImpl extends DestroyableContainer {
4941
4935
  setProperties() {
4942
4936
  ViewUtil.addClass(this.container, 'vi-bottom-sheet');
4943
4937
  ViewUtil.toggleClass(this.container, 'vi-modal', this.config.isModal);
4938
+ this.container.addEventListener('click', this.mouseClickHandlerProxy, true);
4944
4939
  if (!this.config.isModal) {
4945
- this.container.addEventListener('click', this.mouseClickHandlerProxy, true);
4946
4940
  this.container.addEventListener('mousedown', this.mouseDownHandlerProxy);
4947
4941
  }
4948
4942
  }
@@ -6902,15 +6896,6 @@ class WindowModule {
6902
6896
  return {
6903
6897
  ngModule: WindowModule,
6904
6898
  providers: [WindowService]
6905
- /*
6906
- providers: [
6907
- {
6908
- provide: WindowService,
6909
- deps: [MatDialog, LanguageService, CookieService],
6910
- useFactory: windowServiceFactory
6911
- }
6912
- ]
6913
- */
6914
6899
  };
6915
6900
  }
6916
6901
  }