@ascentgl/ads-ui 0.0.107 → 0.0.108
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.
|
@@ -5995,13 +5995,13 @@ class AdsTableComponent {
|
|
|
5995
5995
|
}
|
|
5996
5996
|
/** @ignore */
|
|
5997
5997
|
getBreakpoint(width) {
|
|
5998
|
-
if (width <
|
|
5998
|
+
if (width < 202)
|
|
5999
5999
|
return TableBreakpoint.XS;
|
|
6000
|
-
if (width <
|
|
6000
|
+
if (width < 367)
|
|
6001
6001
|
return TableBreakpoint.SM;
|
|
6002
|
-
if (width <
|
|
6002
|
+
if (width < 649)
|
|
6003
6003
|
return TableBreakpoint.MD;
|
|
6004
|
-
if (width <
|
|
6004
|
+
if (width < 1081)
|
|
6005
6005
|
return TableBreakpoint.LG;
|
|
6006
6006
|
return TableBreakpoint.XL;
|
|
6007
6007
|
}
|