@schibsted/advertory 2.51.4 → 2.51.5
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/core/aftenposten/es/index.css +1 -1
- package/core/aftonbladet/es/index.css +1 -1
- package/core/aftonbladetv2/es/index.css +1 -1
- package/core/bt/es/index.css +1 -1
- package/core/e24/es/index.css +1 -1
- package/core/e24v2/es/index.css +1 -1
- package/core/fotbollskanalen/es/index.css +1 -1
- package/core/sa/es/index.css +1 -1
- package/core/svd/es/index.css +1 -1
- package/core/svdv2/es/index.css +1 -1
- package/core/tv4/es/index.css +1 -1
- package/core/vg/es/index.css +1 -1
- package/core/vg/es/index.js +1 -1
- package/core/vg/index.js +1 -1
- package/core/vgv2/es/index.css +1 -1
- package/features/ad-native/index.js +1 -1
- package/package.json +1 -1
- package/sites/aftenposten/es/index.css +1 -1
- package/sites/aftenposten/index.js +1 -1
- package/sites/aftonbladet/es/index.css +1 -1
- package/sites/aftonbladetv2/es/index.css +1 -1
- package/sites/bt/es/index.css +1 -1
- package/sites/bt/index.js +1 -1
- package/sites/e24/es/index.css +1 -1
- package/sites/e24v2/es/index.css +1 -1
- package/sites/sa/es/index.css +1 -1
- package/sites/sa/index.js +1 -1
- package/sites/svd/es/index.css +1 -1
- package/sites/svd/index.js +1 -1
- package/sites/svdv2/es/index.css +1 -1
- package/sites/tvnu/index.js +1 -1
- package/sites/vg/es/index.css +1 -1
- package/sites/vg/index.js +1 -1
- package/sites/vgv2/es/index.css +1 -1
- package/types/features/ad-sponsorstripe/sites/vg/index.d.ts +1 -2
- package/types/features/ad-sponsorstripe/sites/vg/templates/default/index.d.ts +4 -0
- package/types/features/ad-sponsorstripe/sites/vg/templates/liquid-glass/index.d.ts +4 -0
- package/types/utils/device/index.d.ts +6 -1
|
@@ -5,6 +5,11 @@ declare const isDesktopOrTablet: (deviceType: DeviceType) => boolean;
|
|
|
5
5
|
declare const isDesktop: (deviceType?: DeviceType) => boolean;
|
|
6
6
|
declare const isMobile: (deviceType: DeviceType) => boolean;
|
|
7
7
|
declare const isIos: () => boolean;
|
|
8
|
-
|
|
8
|
+
declare const isLiquidGlass: () => boolean;
|
|
9
|
+
declare const isIos26OrLater: () => boolean;
|
|
10
|
+
declare const extractStandardIOSVersion: () => number | null;
|
|
11
|
+
declare const detectIOS26FromBrowserVersion: () => boolean;
|
|
12
|
+
declare const detectIOS26FromAppVersion: () => boolean;
|
|
13
|
+
export { getOS, isDesktopOrTablet, isDesktop, isMobile, isIos, isLiquidGlass, isIos26OrLater, extractStandardIOSVersion, detectIOS26FromBrowserVersion, detectIOS26FromAppVersion };
|
|
9
14
|
export declare const IPAD_MAX_WIDTH = 853;
|
|
10
15
|
export declare const IPAD_MIN_WIDTH = 767;
|