layout.mjs 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. import * as i0 from '@angular/core';
  2. import { NgModule } from '@angular/core';
  3. export { B as BreakpointObserver, M as MediaMatcher } from './breakpoints-observer-CljOfYGy.mjs';
  4. import 'rxjs';
  5. import 'rxjs/operators';
  6. import './platform-DmdVEw_C.mjs';
  7. import '@angular/common';
  8. import './array-I1yfCXUO.mjs';
  9. class LayoutModule {
  10. static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: LayoutModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
  11. static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: LayoutModule });
  12. static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: LayoutModule });
  13. }
  14. i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: LayoutModule, decorators: [{
  15. type: NgModule,
  16. args: [{}]
  17. }] });
  18. // PascalCase is being used as Breakpoints is used like an enum.
  19. // tslint:disable-next-line:variable-name
  20. const Breakpoints = {
  21. XSmall: '(max-width: 599.98px)',
  22. Small: '(min-width: 600px) and (max-width: 959.98px)',
  23. Medium: '(min-width: 960px) and (max-width: 1279.98px)',
  24. Large: '(min-width: 1280px) and (max-width: 1919.98px)',
  25. XLarge: '(min-width: 1920px)',
  26. Handset: '(max-width: 599.98px) and (orientation: portrait), ' +
  27. '(max-width: 959.98px) and (orientation: landscape)',
  28. Tablet: '(min-width: 600px) and (max-width: 839.98px) and (orientation: portrait), ' +
  29. '(min-width: 960px) and (max-width: 1279.98px) and (orientation: landscape)',
  30. Web: '(min-width: 840px) and (orientation: portrait), ' +
  31. '(min-width: 1280px) and (orientation: landscape)',
  32. HandsetPortrait: '(max-width: 599.98px) and (orientation: portrait)',
  33. TabletPortrait: '(min-width: 600px) and (max-width: 839.98px) and (orientation: portrait)',
  34. WebPortrait: '(min-width: 840px) and (orientation: portrait)',
  35. HandsetLandscape: '(max-width: 959.98px) and (orientation: landscape)',
  36. TabletLandscape: '(min-width: 960px) and (max-width: 1279.98px) and (orientation: landscape)',
  37. WebLandscape: '(min-width: 1280px) and (orientation: landscape)',
  38. };
  39. export { Breakpoints, LayoutModule };
  40. //# sourceMappingURL=layout.mjs.map