@pepperi-addons/ngx-composite-lib 0.4.2-beta.84 → 0.4.2-beta.85

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.
@@ -459,6 +459,7 @@ class LayoutBuilderInternalService {
459
459
  return this.getScreenType(this._screenSizeSubject?.getValue() || PepScreenSizeType.LG);
460
460
  }
461
461
  getScreenType(size) {
462
+ //TODO:
462
463
  const screenType = size < PepScreenSizeType.MD ? 'Landscape' :
463
464
  (size === PepScreenSizeType.MD || size === PepScreenSizeType.SM ? 'Tablet' : 'Phablet');
464
465
  return screenType;
@@ -932,7 +933,7 @@ class SectionComponent extends BaseDestroyerDirective {
932
933
  }
933
934
  set collapseOnTablet(value) {
934
935
  this._collapseOnTablet = value;
935
- this.pepScreenSizeToFlipToVertical = value ? PepScreenSizeType.MD : PepScreenSizeType.SM;
936
+ this.pepScreenSizeToFlipToVertical = value ? PepScreenSizeType.MD : PepScreenSizeType.XS;
936
937
  this.refreshSplit();
937
938
  }
938
939
  get collapseOnTablet() {