@idscan/onboarding 2.2.15 → 2.2.16

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.
@@ -1,6 +1,5 @@
1
1
  export interface InternationalizationInfo {
2
2
  locale: string;
3
- dateFormat: string;
4
3
  calendar: string;
5
4
  numberingSystem: string;
6
5
  weekInfo: string;
@@ -20,6 +20,7 @@ export default class Wrapper {
20
20
  private beforeMount;
21
21
  private getQueryParam;
22
22
  private get isEmbeddedFromQR();
23
+ private get QRCodeIsAvailable();
23
24
  private mountQRCodeButton;
24
25
  private mount;
25
26
  private checkApplicantIsValid;
@@ -0,0 +1,15 @@
1
+ export declare const isiOS: () => boolean;
2
+ export declare const checkTouchPoints: () => boolean;
3
+ export declare const checkIsTouchScreen: () => boolean;
4
+ /**
5
+ *
6
+ * @param {Number} maxWidth - preferable max width device
7
+ */
8
+ export declare const isMobile: () => {
9
+ isMobileUserAgent: () => boolean;
10
+ isTouchable: () => boolean;
11
+ isTouchScreen: () => boolean;
12
+ isSurface: () => boolean;
13
+ };
14
+ declare const checkIfMobile: () => boolean;
15
+ export default checkIfMobile;