@gataca/qr 2.0.14 → 3.0.6

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.
Files changed (59) hide show
  1. package/dist/cjs/gataca-autoqr.cjs.entry.js +5 -5
  2. package/dist/cjs/gataca-qr_2.cjs.entry.js +6 -19
  3. package/dist/cjs/gataca-qrws.cjs.entry.js +6 -18
  4. package/dist/cjs/gataca-ssibutton_2.cjs.entry.js +197 -13
  5. package/dist/cjs/gatacaqr.cjs.js +3 -7
  6. package/dist/cjs/{index-f214ab7a.js → index-93d47a75.js} +2 -111
  7. package/dist/cjs/loader.cjs.js +3 -4
  8. package/dist/collection/collection-manifest.json +2 -2
  9. package/dist/collection/components/gataca-autoqr/gataca-autoqr.js +5 -5
  10. package/dist/collection/components/gataca-qr/gataca-qr.js +13 -26
  11. package/dist/collection/components/gataca-qrws/gataca-qrws.js +12 -24
  12. package/dist/collection/components/gataca-ssibutton/gataca-ssibutton.js +259 -19
  13. package/dist/collection/components/gataca-ssibuttonws/gataca-ssibuttonws.js +9 -9
  14. package/dist/components/gataca-autoqr.js +4 -4
  15. package/dist/components/gataca-qr2.js +6 -19
  16. package/dist/components/gataca-qrws2.js +6 -18
  17. package/dist/components/gataca-ssibutton2.js +203 -12
  18. package/dist/components/gataca-ssibuttonws2.js +3 -3
  19. package/dist/components/index.d.ts +0 -9
  20. package/dist/components/index.js +1 -1
  21. package/dist/esm/gataca-autoqr.entry.js +5 -5
  22. package/dist/esm/gataca-qr_2.entry.js +6 -19
  23. package/dist/esm/gataca-qrws.entry.js +6 -18
  24. package/dist/esm/gataca-ssibutton_2.entry.js +197 -13
  25. package/dist/esm/gatacaqr.js +3 -4
  26. package/dist/esm/{index-570c9813.js → index-2be54f32.js} +3 -111
  27. package/dist/esm/loader.js +3 -4
  28. package/dist/esm/polyfills/css-shim.js +1 -1
  29. package/dist/gatacaqr/gatacaqr.esm.js +1 -1
  30. package/dist/gatacaqr/p-0381ab9a.entry.js +1 -0
  31. package/dist/gatacaqr/p-0be4566d.js +1 -1
  32. package/dist/gatacaqr/p-16298cb4.entry.js +1 -0
  33. package/dist/gatacaqr/p-5ae5f952.js +2 -0
  34. package/dist/gatacaqr/p-761647d3.entry.js +1 -0
  35. package/dist/gatacaqr/p-9e9af27e.entry.js +1 -0
  36. package/dist/types/components/gataca-autoqr/gataca-autoqr.d.ts +2 -2
  37. package/dist/types/components/gataca-qr/components/qr/QR.d.ts +1 -1
  38. package/dist/types/components/gataca-qr/components/readQR/ReadQR.d.ts +1 -1
  39. package/dist/types/components/gataca-qr/components/retryButton/RetryButton.d.ts +1 -1
  40. package/dist/types/components/gataca-qr/components/success/Success.d.ts +1 -1
  41. package/dist/types/components/gataca-qr/gataca-qr.d.ts +4 -4
  42. package/dist/types/components/gataca-qrws/components/qr/QR.d.ts +1 -1
  43. package/dist/types/components/gataca-qrws/components/readQR/ReadQR.d.ts +1 -1
  44. package/dist/types/components/gataca-qrws/components/retryButton/RetryButton.d.ts +1 -1
  45. package/dist/types/components/gataca-qrws/components/success/Success.d.ts +1 -1
  46. package/dist/types/components/gataca-qrws/gataca-qrws.d.ts +3 -3
  47. package/dist/types/components/gataca-ssibutton/gataca-ssibutton.d.ts +29 -5
  48. package/dist/types/components/gataca-ssibuttonws/gataca-ssibuttonws.d.ts +2 -2
  49. package/dist/types/components.d.ts +38 -22
  50. package/dist/types/stencil-public-runtime.d.ts +3 -59
  51. package/dist/types/utils/utils.d.ts +9 -9
  52. package/loader/index.d.ts +0 -9
  53. package/package.json +2 -2
  54. package/readme.md +2 -0
  55. package/dist/gatacaqr/p-3d1a6526.entry.js +0 -1
  56. package/dist/gatacaqr/p-64740141.entry.js +0 -1
  57. package/dist/gatacaqr/p-bd6bd52f.entry.js +0 -1
  58. package/dist/gatacaqr/p-ec0f00a6.js +0 -2
  59. package/dist/gatacaqr/p-f9931de0.entry.js +0 -1
@@ -63,10 +63,10 @@ export declare class GatacaQRWS {
63
63
  */
64
64
  autorefresh: boolean;
65
65
  /**
66
- * **RECOMMENDED**
67
- * Set to use v2 links. The create session must be providing both an authentication request and a session Id
66
+ * _[Optional]_
67
+ * If 3, handle deeplink redirects and deprecates (remove) v1 functionality. If not, the create session must be providing both an authentication request and a session Id
68
68
  */
69
- v2?: boolean;
69
+ v?: string;
70
70
  /**
71
71
  * _[Optional]_
72
72
  * Modifies the qr headline title
@@ -4,6 +4,7 @@ import { RESULT_STATUS } from "../../utils/utils";
4
4
  import { GatacaQR } from "../gataca-qr/gataca-qr";
5
5
  export declare class GatacaSSIButton {
6
6
  qr: GatacaQR;
7
+ private qrElement;
7
8
  constructor();
8
9
  /**
9
10
  * _[Optional]_
@@ -22,8 +23,8 @@ export declare class GatacaSSIButton {
22
23
  /**
23
24
  * ***Mandatory***
24
25
  * Create session function to generate a new Session
25
- * Using V1, it can provide just a session Id
26
- * Using V2, it must provide also the authentication request. The session Id is the id of the presentation definition
26
+ * Using v="3", it can provide just a session Id
27
+ * Using another version, it must provide also the authentication request. The session Id is the id of the presentation definition
27
28
  */
28
29
  createSession?: () => Promise<{
29
30
  sessionId: string;
@@ -43,6 +44,11 @@ export declare class GatacaSSIButton {
43
44
  * An error containing information will be passed as parameter
44
45
  */
45
46
  errorCallback: (error?: Error) => void;
47
+ /**
48
+ * _[Optional]_
49
+ * Function that runs every time the loading state changes while checking if the App is installed. Only on mobile with v3.
50
+ */
51
+ handleCheckAppLoading?: (isCheckingApp?: boolean) => void;
46
52
  /**
47
53
  * ***Mandatory***
48
54
  * Decide if scanning the credential as a verifier to request credentials
@@ -72,9 +78,9 @@ export declare class GatacaSSIButton {
72
78
  autorefresh: boolean;
73
79
  /**
74
80
  * _[Optional]_
75
- * Set to use v2 links. The create session must be providing both an authentication request and a session Id
81
+ * If 3, handle deeplink redirects and deprecates (remove) v1 functionality. If not, the create session must be providing both an authentication request and a session Id
76
82
  */
77
- v2?: boolean;
83
+ v?: string;
78
84
  /**
79
85
  * _[Optional]_
80
86
  * Modifies the qr headline title
@@ -171,6 +177,10 @@ export declare class GatacaSSIButton {
171
177
  */
172
178
  hideQrModalDescription?: boolean;
173
179
  open: boolean;
180
+ sessionId?: string;
181
+ authenticationRequest?: string;
182
+ sessionData: any;
183
+ result: RESULT_STATUS;
174
184
  /**
175
185
  * GatacaLoginCompleted event, triggered with session data upon login success
176
186
  */
@@ -183,7 +193,21 @@ export declare class GatacaSSIButton {
183
193
  * Retrieve manually the session data on a successful login
184
194
  */
185
195
  getSessionData(): Promise<any>;
196
+ getSessionId(): Promise<string>;
197
+ /**
198
+ * Force manually the start polling
199
+ */
200
+ startMobilePolling(): Promise<void>;
201
+ /**
202
+ * Stop manually an ongoing session
203
+ */
204
+ stop(): Promise<void>;
205
+ clean(): void;
186
206
  renderModal(): GatacaQR;
187
- renderButton(): any;
207
+ poll(): Promise<unknown>;
208
+ isAppInstalled(appScheme: any, callback: any): void;
209
+ renderDesktopButton(): any;
210
+ getAuthRequest(): Promise<string>;
211
+ renderMobileButton(isAndroid: boolean, isIos: boolean): any;
188
212
  render(): any;
189
213
  }
@@ -68,9 +68,9 @@ export declare class GatacaSSIButtonWS {
68
68
  autorefresh: boolean;
69
69
  /**
70
70
  * **RECOMMENDED**
71
- * Set to use v2 links. The create session must be providing both an authentication request and a session Id
71
+ * If 3, handle deeplink redirects and deprecates (remove) v1 functionality. If not, the create session must be providing both an authentication request and a session Id
72
72
  */
73
- v2?: boolean;
73
+ v?: string;
74
74
  /**
75
75
  * _[Optional]_
76
76
  * Modifies the qr headline title
@@ -24,7 +24,7 @@ export namespace Components {
24
24
  */
25
25
  "configRepository": string;
26
26
  /**
27
- * ***Mandatory*** Create session function to generate a new Session Using V1, it can provide just a session Id Using V2, it must provide also the authentication request. The session Id is the id of the presentation definition
27
+ * ***Mandatory*** Create session function to generate a new Session Using v="3", it can provide just a session Id Using another version, it must provide also the authentication request. The session Id is the id of the presentation definition
28
28
  */
29
29
  "createSession"?: () => Promise<{
30
30
  sessionId: string;
@@ -79,7 +79,7 @@ export namespace Components {
79
79
  */
80
80
  "clickInsideBoxLabel"?: string;
81
81
  /**
82
- * ***Mandatory*** Create session function to generate a new Session Using V1, it can provide just a session Id Using V2, it must provide also the authentication request. The session Id is the id of the presentation definition
82
+ * ***Mandatory*** Create session function to generate a new Session Using v="3", it can provide just a session Id Using another version, it must provide also the authentication request. The session Id is the id of the presentation definition
83
83
  */
84
84
  "createSession"?: () => Promise<{
85
85
  sessionId: string;
@@ -210,9 +210,9 @@ export namespace Components {
210
210
  */
211
211
  "userNotScanInTimeErrorLabel"?: string;
212
212
  /**
213
- * _[Optional]_ Set to use v2 links. The create session must be providing both an authentication request and a session Id
213
+ * _[Optional]_ If 3, handle deeplink redirects and deprecates (remove) v1 functionality. If not, the create session must be providing both an authentication request and a session Id
214
214
  */
215
- "v2"?: boolean;
215
+ "v"?: string;
216
216
  /**
217
217
  * _[Optional]_ String to show "waiting start session" label
218
218
  */
@@ -390,9 +390,9 @@ export namespace Components {
390
390
  */
391
391
  "userNotScanInTimeErrorLabel"?: string;
392
392
  /**
393
- * **RECOMMENDED** Set to use v2 links. The create session must be providing both an authentication request and a session Id
393
+ * _[Optional]_ If 3, handle deeplink redirects and deprecates (remove) v1 functionality. If not, the create session must be providing both an authentication request and a session Id
394
394
  */
395
- "v2"?: boolean;
395
+ "v"?: string;
396
396
  /**
397
397
  * _[Optional]_ String to show "waiting start session" label
398
398
  */
@@ -434,7 +434,7 @@ export namespace Components {
434
434
  */
435
435
  "clickInsideBoxLabel"?: string;
436
436
  /**
437
- * ***Mandatory*** Create session function to generate a new Session Using V1, it can provide just a session Id Using V2, it must provide also the authentication request. The session Id is the id of the presentation definition
437
+ * ***Mandatory*** Create session function to generate a new Session Using v="3", it can provide just a session Id Using another version, it must provide also the authentication request. The session Id is the id of the presentation definition
438
438
  */
439
439
  "createSession"?: () => Promise<{
440
440
  sessionId: string;
@@ -464,6 +464,10 @@ export namespace Components {
464
464
  * Retrieve manually the session data on a successful login
465
465
  */
466
466
  "getSessionData": () => Promise<any>;
467
+ /**
468
+ * _[Optional]_ Function that runs every time the loading state changes while checking if the App is installed. Only on mobile with v3.
469
+ */
470
+ "handleCheckAppLoading"?: (isCheckingApp?: boolean) => void;
467
471
  /**
468
472
  * _[Optional]_ Boolean to show or not show the gataca brand title
469
473
  */
@@ -516,6 +520,14 @@ export namespace Components {
516
520
  * _[Optional]_ Maximum time window to display the session
517
521
  */
518
522
  "sessionTimeout"?: number;
523
+ /**
524
+ * Force manually the start polling
525
+ */
526
+ "startMobilePolling": () => Promise<void>;
527
+ /**
528
+ * Stop manually an ongoing session
529
+ */
530
+ "stop": () => Promise<void>;
519
531
  /**
520
532
  * ***Mandatory*** Callback fired upon session correctly verified If not set, session validation wouldn't trigger any action The session data and a possible token will be sent as parameters to the callback
521
533
  */
@@ -529,9 +541,9 @@ export namespace Components {
529
541
  */
530
542
  "userNotScanInTimeErrorLabel"?: string;
531
543
  /**
532
- * _[Optional]_ Set to use v2 links. The create session must be providing both an authentication request and a session Id
544
+ * _[Optional]_ If 3, handle deeplink redirects and deprecates (remove) v1 functionality. If not, the create session must be providing both an authentication request and a session Id
533
545
  */
534
- "v2"?: boolean;
546
+ "v"?: string;
535
547
  /**
536
548
  * _[Optional]_ String to show "waiting start session" label
537
549
  */
@@ -595,9 +607,9 @@ export namespace Components {
595
607
  */
596
608
  "successCallback": (data?: any) => void;
597
609
  /**
598
- * **RECOMMENDED** Set to use v2 links. The create session must be providing both an authentication request and a session Id
610
+ * **RECOMMENDED** If 3, handle deeplink redirects and deprecates (remove) v1 functionality. If not, the create session must be providing both an authentication request and a session Id
599
611
  */
600
- "v2"?: boolean;
612
+ "v"?: string;
601
613
  /**
602
614
  * **RECOMMENDED** Callback to invoke an a message has been received on the socket. It provides the socket itself and the message as parameters. If not used, the messages provided by the server on the Socket connection must conform to the WSReponse interface If used, an Event named **sessionMsg** must be triggered with a WSReponse as data
603
615
  */
@@ -691,7 +703,7 @@ declare namespace LocalJSX {
691
703
  */
692
704
  "configRepository"?: string;
693
705
  /**
694
- * ***Mandatory*** Create session function to generate a new Session Using V1, it can provide just a session Id Using V2, it must provide also the authentication request. The session Id is the id of the presentation definition
706
+ * ***Mandatory*** Create session function to generate a new Session Using v="3", it can provide just a session Id Using another version, it must provide also the authentication request. The session Id is the id of the presentation definition
695
707
  */
696
708
  "createSession"?: () => Promise<{
697
709
  sessionId: string;
@@ -750,7 +762,7 @@ declare namespace LocalJSX {
750
762
  */
751
763
  "clickInsideBoxLabel"?: string;
752
764
  /**
753
- * ***Mandatory*** Create session function to generate a new Session Using V1, it can provide just a session Id Using V2, it must provide also the authentication request. The session Id is the id of the presentation definition
765
+ * ***Mandatory*** Create session function to generate a new Session Using v="3", it can provide just a session Id Using another version, it must provide also the authentication request. The session Id is the id of the presentation definition
754
766
  */
755
767
  "createSession"?: () => Promise<{
756
768
  sessionId: string;
@@ -877,9 +889,9 @@ declare namespace LocalJSX {
877
889
  */
878
890
  "userNotScanInTimeErrorLabel"?: string;
879
891
  /**
880
- * _[Optional]_ Set to use v2 links. The create session must be providing both an authentication request and a session Id
892
+ * _[Optional]_ If 3, handle deeplink redirects and deprecates (remove) v1 functionality. If not, the create session must be providing both an authentication request and a session Id
881
893
  */
882
- "v2"?: boolean;
894
+ "v"?: string;
883
895
  /**
884
896
  * _[Optional]_ String to show "waiting start session" label
885
897
  */
@@ -1053,9 +1065,9 @@ declare namespace LocalJSX {
1053
1065
  */
1054
1066
  "userNotScanInTimeErrorLabel"?: string;
1055
1067
  /**
1056
- * **RECOMMENDED** Set to use v2 links. The create session must be providing both an authentication request and a session Id
1068
+ * _[Optional]_ If 3, handle deeplink redirects and deprecates (remove) v1 functionality. If not, the create session must be providing both an authentication request and a session Id
1057
1069
  */
1058
- "v2"?: boolean;
1070
+ "v"?: string;
1059
1071
  /**
1060
1072
  * _[Optional]_ String to show "waiting start session" label
1061
1073
  */
@@ -1097,7 +1109,7 @@ declare namespace LocalJSX {
1097
1109
  */
1098
1110
  "clickInsideBoxLabel"?: string;
1099
1111
  /**
1100
- * ***Mandatory*** Create session function to generate a new Session Using V1, it can provide just a session Id Using V2, it must provide also the authentication request. The session Id is the id of the presentation definition
1112
+ * ***Mandatory*** Create session function to generate a new Session Using v="3", it can provide just a session Id Using another version, it must provide also the authentication request. The session Id is the id of the presentation definition
1101
1113
  */
1102
1114
  "createSession"?: () => Promise<{
1103
1115
  sessionId: string;
@@ -1123,6 +1135,10 @@ declare namespace LocalJSX {
1123
1135
  * _[Optional]_ String to show "failed login" error
1124
1136
  */
1125
1137
  "failedLoginErrorLabel"?: string;
1138
+ /**
1139
+ * _[Optional]_ Function that runs every time the loading state changes while checking if the App is installed. Only on mobile with v3.
1140
+ */
1141
+ "handleCheckAppLoading"?: (isCheckingApp?: boolean) => void;
1126
1142
  /**
1127
1143
  * _[Optional]_ Boolean to show or not show the gataca brand title
1128
1144
  */
@@ -1196,9 +1212,9 @@ declare namespace LocalJSX {
1196
1212
  */
1197
1213
  "userNotScanInTimeErrorLabel"?: string;
1198
1214
  /**
1199
- * _[Optional]_ Set to use v2 links. The create session must be providing both an authentication request and a session Id
1215
+ * _[Optional]_ If 3, handle deeplink redirects and deprecates (remove) v1 functionality. If not, the create session must be providing both an authentication request and a session Id
1200
1216
  */
1201
- "v2"?: boolean;
1217
+ "v"?: string;
1202
1218
  /**
1203
1219
  * _[Optional]_ String to show "waiting start session" label
1204
1220
  */
@@ -1266,9 +1282,9 @@ declare namespace LocalJSX {
1266
1282
  */
1267
1283
  "successCallback"?: (data?: any) => void;
1268
1284
  /**
1269
- * **RECOMMENDED** Set to use v2 links. The create session must be providing both an authentication request and a session Id
1285
+ * **RECOMMENDED** If 3, handle deeplink redirects and deprecates (remove) v1 functionality. If not, the create session must be providing both an authentication request and a session Id
1270
1286
  */
1271
- "v2"?: boolean;
1287
+ "v"?: string;
1272
1288
  /**
1273
1289
  * **RECOMMENDED** Callback to invoke an a message has been received on the socket. It provides the socket itself and the message as parameters. If not used, the messages provided by the server on the Socket connection must conform to the WSReponse interface If used, an Event named **sessionMsg** must be triggered with a WSReponse as data
1274
1290
  */
@@ -133,7 +133,7 @@ export interface ListenOptions {
133
133
  */
134
134
  passive?: boolean;
135
135
  }
136
- export type ListenTargetOptions = 'body' | 'document' | 'window';
136
+ export declare type ListenTargetOptions = 'body' | 'document' | 'window';
137
137
  export interface StateDecorator {
138
138
  (): PropertyDecorator;
139
139
  }
@@ -214,8 +214,8 @@ export declare const State: StateDecorator;
214
214
  * https://stenciljs.com/docs/reactive-data#watch-decorator
215
215
  */
216
216
  export declare const Watch: WatchDecorator;
217
- export type ResolutionHandler = (elm: HTMLElement) => string | undefined | null;
218
- export type ErrorHandler = (err: any, element?: HTMLElement) => void;
217
+ export declare type ResolutionHandler = (elm: HTMLElement) => string | undefined | null;
218
+ export declare type ErrorHandler = (err: any, element?: HTMLElement) => void;
219
219
  /**
220
220
  * `setMode()` is used for libraries which provide multiple "modes" for styles.
221
221
  */
@@ -257,15 +257,6 @@ export declare function getAssetPath(path: string): string;
257
257
  * @returns the set path
258
258
  */
259
259
  export declare function setAssetPath(path: string): string;
260
- /**
261
- * Used to specify a nonce value that corresponds with an application's
262
- * [Content Security Policy (CSP)](https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP).
263
- * When set, the nonce will be added to all dynamically created script and style tags at runtime.
264
- * Alternatively, the nonce value can be set on a `meta` tag in the DOM head
265
- * (<meta name="csp-nonce" content="{ nonce value here }" />) and will result in the same behavior.
266
- * @param nonce The value to be used for the nonce attribute.
267
- */
268
- export declare function setNonce(nonce: string): void;
269
260
  /**
270
261
  * Retrieve a Stencil element for a given reference
271
262
  * @param ref the ref to get the Stencil element for
@@ -442,57 +433,13 @@ interface HostAttributes {
442
433
  ref?: (el: HTMLElement | null) => void;
443
434
  [prop: string]: any;
444
435
  }
445
- /**
446
- * Utilities for working with functional Stencil components. An object
447
- * conforming to this interface is passed by the Stencil runtime as the third
448
- * argument to a functional component, allowing component authors to work with
449
- * features like children.
450
- *
451
- * The children of a functional component will be passed as the second
452
- * argument, so a functional component which uses these utils to transform its
453
- * children might look like the following:
454
- *
455
- * ```ts
456
- * export const AddClass: FunctionalComponent = (_, children, utils) => (
457
- * utils.map(children, child => ({
458
- * ...child,
459
- * vattrs: {
460
- * ...child.vattrs,
461
- * class: `${child.vattrs.class} add-class`
462
- * }
463
- * }))
464
- * );
465
- * ```
466
- *
467
- * For more see the Stencil documentation, here:
468
- * https://stenciljs.com/docs/functional-components
469
- */
470
436
  export interface FunctionalUtilities {
471
- /**
472
- * Utility for reading the children of a functional component at runtime.
473
- * Since the Stencil runtime uses a different interface for children it is
474
- * not recommendeded to read the children directly, and is preferable to use
475
- * this utility to, for instance, perform a side effect for each child.
476
- */
477
437
  forEach: (children: VNode[], cb: (vnode: ChildNode, index: number, array: ChildNode[]) => void) => void;
478
- /**
479
- * Utility for transforming the children of a functional component. Given an
480
- * array of children and a callback this will return a list of the results of
481
- * passing each child to the supplied callback.
482
- */
483
438
  map: (children: VNode[], cb: (vnode: ChildNode, index: number, array: ChildNode[]) => ChildNode) => VNode[];
484
439
  }
485
440
  export interface FunctionalComponent<T = {}> {
486
441
  (props: T, children: VNode[], utils: FunctionalUtilities): VNode | VNode[];
487
442
  }
488
- /**
489
- * A Child VDOM node
490
- *
491
- * This has most of the same properties as {@link VNode} but friendlier names
492
- * (i.e. `vtag` instead of `$tag$`, `vchildren` instead of `$children$`) in
493
- * order to provide a friendlier public interface for users of the
494
- * {@link FunctionalUtilities}).
495
- */
496
443
  export interface ChildNode {
497
444
  vtag?: string | number | Function;
498
445
  vkey?: string | number;
@@ -539,9 +486,6 @@ export declare function h(sel: any, children: Array<VNode | undefined | null>):
539
486
  export declare function h(sel: any, data: VNodeData | null, text: string): VNode;
540
487
  export declare function h(sel: any, data: VNodeData | null, children: Array<VNode | undefined | null>): VNode;
541
488
  export declare function h(sel: any, data: VNodeData | null, children: VNode): VNode;
542
- /**
543
- * A virtual DOM node
544
- */
545
489
  export interface VNode {
546
490
  $flags$: number;
547
491
  $tag$: string | number | Function;
@@ -8,19 +8,19 @@ export declare enum RESULT_STATUS {
8
8
  EXPIRED = 3,
9
9
  READ = 5
10
10
  }
11
- export type WSResponse = {
11
+ export declare type WSResponse = {
12
12
  sessionId: string;
13
13
  result: RESULT_STATUS;
14
14
  authenticatedUserData?: any;
15
15
  authenticationRequest?: string;
16
16
  error?: string;
17
17
  };
18
- export type QRDisplay = {
18
+ export declare type QRDisplay = {
19
19
  qrModalTitle?: string;
20
20
  qrModalDescription?: string;
21
21
  hideBrandTitle?: boolean;
22
22
  };
23
- export type QRExchange = QRDisplay & {
23
+ export declare type QRExchange = QRDisplay & {
24
24
  successCallback: (data?: any) => void;
25
25
  errorCallback: (error?: Error) => void;
26
26
  autostart: boolean;
@@ -28,10 +28,10 @@ export type QRExchange = QRDisplay & {
28
28
  sessionTimeout?: number;
29
29
  qrRole: string;
30
30
  callbackServer: string;
31
- v2?: boolean;
31
+ v?: string;
32
32
  dynamicLink?: boolean;
33
33
  };
34
- export type QRPolling = QRExchange & {
34
+ export declare type QRPolling = QRExchange & {
35
35
  checkStatus?: (id?: string) => Promise<{
36
36
  result: RESULT_STATUS;
37
37
  data?: any;
@@ -42,16 +42,16 @@ export type QRPolling = QRExchange & {
42
42
  }>;
43
43
  pollingFrequency?: number;
44
44
  };
45
- export type QRWS = QRExchange & {
45
+ export declare type QRWS = QRExchange & {
46
46
  socketEndpoint: string;
47
47
  wsOnOpen?: (socket: WebSocket) => void;
48
48
  wsOnMessage?: (socket: WebSocket, msg: MessageEvent) => void;
49
49
  };
50
- export type QRLogin = QRPolling & QRWS;
51
- export type QRButton = QRLogin & {
50
+ export declare type QRLogin = QRPolling & QRWS;
51
+ export declare type QRButton = QRLogin & {
52
52
  buttonText?: string;
53
53
  };
54
- export type QRConfig = (QRLogin & QRButton) & {
54
+ export declare type QRConfig = (QRLogin & QRButton) & {
55
55
  useButton?: boolean;
56
56
  useWs?: boolean;
57
57
  };
package/loader/index.d.ts CHANGED
@@ -10,12 +10,3 @@ export interface CustomElementsDefineOptions {
10
10
  }
11
11
  export declare function defineCustomElements(win?: Window, opts?: CustomElementsDefineOptions): Promise<void>;
12
12
  export declare function applyPolyfills(): Promise<void>;
13
-
14
- /**
15
- * Used to specify a nonce value that corresponds with an application's CSP.
16
- * When set, the nonce will be added to all dynamically created script and style tags at runtime.
17
- * Alternatively, the nonce value can be set on a meta tag in the DOM head
18
- * (<meta name="csp-nonce" content="{ nonce value here }" />) which
19
- * will result in the same behavior.
20
- */
21
- export declare function setNonce(nonce: string): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gataca/qr",
3
- "version": "2.0.14",
3
+ "version": "3.0.6",
4
4
  "description": "Gataca component to display presentation requests in QR",
5
5
  "author": "Gataca <it@gataca.io>",
6
6
  "licenses": [
@@ -40,6 +40,6 @@
40
40
  "license": "MIT",
41
41
  "dependencies": {
42
42
  "@stencil/react-output-target": "^0.4.0",
43
- "qr-code-styling": "^1.6.0-rc.1"
43
+ "qr-code-styling": "1.6.0-rc.1"
44
44
  }
45
45
  }
package/readme.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Gataca-QR Components
2
2
 
3
+ Since V3, create session params in all components must be providing both an authentication request and a session Id. The case where it is not necessary has been eliminated.
4
+
3
5
  Since V2, this library is now a list of components provided by Gataca to help the integration of its backends components into your front services.
4
6
 
5
7
  To use this components (except for the QR Display), you will need an instance of any of the Gataca Components (Connect and Certify). You can also use it with onPremise instances over Gataca Studio.
@@ -1 +0,0 @@
1
- import{r as t,c as i,h as s}from"./p-ec0f00a6.js";const e=t=>{if(t)return new Function("return "+t)()},a=class{constructor(s){t(this,s),this.gatacaLoginCompleted=i(this,"gatacaLoginCompleted",7),this.gatacaLoginFailed=i(this,"gatacaLoginFailed",7),this.configId=void 0,this.configRepository="https://studio.gataca.io/api/v1/qrconfigs",this.successCallback=void 0,this.errorCallback=void 0,this.checkStatus=void 0,this.createSession=void 0,this.wsOnOpen=void 0,this.wsOnMessage=void 0,this.config=void 0,this.loading=void 0,this.loading=!0,fetch(this.configRepository+"/"+this.configId,{method:"GET",headers:{"Content-Type":"application/json"}}).then((t=>{t.json().then((t=>{t=(t=>{var i,s,a,o,r,n;return t.errorCallback=e(null===(i=t.errorCallback)||void 0===i?void 0:i.toString()),t.successCallback=e(null===(s=t.successCallback)||void 0===s?void 0:s.toString()),t.wsOnMessage=e(null===(a=t.wsOnMessage)||void 0===a?void 0:a.toString()),t.wsOnOpen=e(null===(o=t.wsOnOpen)||void 0===o?void 0:o.toString()),t.checkStatus=e(null===(r=t.checkStatus)||void 0===r?void 0:r.toString()),t.createSession=e(null===(n=t.createSession)||void 0===n?void 0:n.toString()),t})(t),this.config=t,this.loading=!1})).catch((t=>{console.log("Cannot retrieve selected config",t),this.loading=!1}))})).catch((t=>{console.log("Cannot retrieve selected config",t),this.loading=!1}))}async getSessionData(){return this.qr.getSessionData()}selectQR(){this.qr=this.config.useButton?this.config.useWs?s("gataca-ssibuttonws",{buttonText:this.config.buttonText,wsOnMessage:this.wsOnMessage||this.config.wsOnMessage,wsOnOpen:this.wsOnOpen||this.config.wsOnOpen,successCallback:this.successCallback||this.config.successCallback,errorCallback:this.errorCallback||this.config.errorCallback,qrRole:this.config.qrRole,callbackServer:this.config.callbackServer,sessionTimeout:this.config.sessionTimeout,socketEndpoint:this.config.socketEndpoint,autostart:!0,autorefresh:this.config.autorefresh,v2:this.config.v2,qrModalTitle:this.config.qrModalTitle,qrModalDescription:this.config.qrModalDescription,hideBrandTitle:this.config.hideBrandTitle,dynamicLink:this.config.dynamicLink}):s("gataca-ssibutton",{buttonText:this.config.buttonText,checkStatus:this.checkStatus||this.config.checkStatus,createSession:this.createSession||this.config.createSession,successCallback:this.successCallback||this.config.successCallback,errorCallback:this.errorCallback||this.config.errorCallback,qrRole:this.config.qrRole,callbackServer:this.config.callbackServer,sessionTimeout:this.config.sessionTimeout,pollingFrequency:this.config.pollingFrequency,autorefresh:this.config.autorefresh,v2:this.config.v2,qrModalTitle:this.config.qrModalTitle,qrModalDescription:this.config.qrModalDescription,hideBrandTitle:this.config.hideBrandTitle,dynamicLink:this.config.dynamicLink}):this.config.useWs?s("gataca-qrws",{wsOnMessage:this.wsOnMessage||this.config.wsOnMessage,wsOnOpen:this.wsOnOpen||this.config.wsOnOpen,successCallback:this.successCallback||this.config.successCallback,errorCallback:this.errorCallback||this.config.errorCallback,qrRole:this.config.qrRole,callbackServer:this.config.callbackServer,sessionTimeout:this.config.sessionTimeout,socketEndpoint:this.config.socketEndpoint,autostart:this.config.autostart,autorefresh:this.config.autorefresh,v2:this.config.v2,qrModalTitle:this.config.qrModalTitle,qrModalDescription:this.config.qrModalDescription,hideBrandTitle:this.config.hideBrandTitle,dynamicLink:this.config.dynamicLink}):s("gataca-qr",{checkStatus:this.checkStatus||this.config.checkStatus,createSession:this.createSession||this.config.createSession,successCallback:this.successCallback||this.config.successCallback,errorCallback:this.errorCallback||this.config.errorCallback,qrRole:this.config.qrRole,callbackServer:this.config.callbackServer,sessionTimeout:this.config.sessionTimeout,pollingFrequency:this.config.pollingFrequency,autostart:this.config.autostart,autorefresh:this.config.autorefresh,v2:this.config.v2,qrModalTitle:this.config.qrModalTitle,qrModalDescription:this.config.qrModalDescription,hideBrandTitle:this.config.hideBrandTitle,dynamicLink:this.config.dynamicLink})}render(){return this.loading?s("div",null,"Loading..."):this.config?(this.selectQR(),this.qr):s("div",null,"Error loading your config...")}};a.style='@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400&display=swap"); html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:"";content:none}table{border-collapse:collapse;border-spacing:0}.img-fluid{height:auto;max-width:50%}img{margin-left:auto;margin-right:auto}.buttonContainer{display:inline-block;text-align:right;padding:10px;position:relative}.gatacaButtonWrapper{margin:8px}.gatacaButtonWrapper .gatacaButton{display:flex;min-width:100px;padding:8px 8px;background-color:white;font-size:12px;font-family:"Work Sans", sans-serif;letter-spacing:1px;font-weight:2;justify-content:space-between;align-items:center;border-radius:6px;border:1px solid rgba(24, 27, 94, 0.5);color:rgba(24, 27, 94, 0.8);box-shadow:0px 1px 3px rgba(48, 48, 48, 0.15);cursor:pointer}.gatacaButtonWrapper .gatacaButton>span{margin-right:10px}.gatacaButtonWrapper .gatacaButton:hover{box-shadow:0px 2px 8px rgba(48, 48, 48, 0.1)}.gatacaButtonWrapper .buttonText{text-align:right;font-size:8px;color:rgba(24, 27, 94, 0.5);font-family:"Helvetica Neue", sans-serif;letter-spacing:1px;padding-right:8px;font-weight:1}.gatacaButtonWrapper .buttonImg{height:25px;width:25px;margin:0;margin-right:20px}';export{a as gataca_autoqr}
@@ -1 +0,0 @@
1
- import{h as i,r as t,c as e}from"./p-ec0f00a6.js";import{g as n,a,b as s,l as o}from"./p-ea783014.js";import"./p-0be4566d.js";import{R as r,c as l,b as d}from"./p-2cd7b062.js";const h=t=>{const{modalHeight:e,successLoginLabel:a}=t;return i("div",{class:"success",style:{height:e?(null==e?void 0:e.toString())+"px":"300px"}},i("img",{src:n,height:52,width:52}),i("p",{class:"successMsg"},a))},p=t=>{var e;const{errorMessage:n,modalWidth:o,clickInsideBoxLabel:r,refreshQrLabel:l,scanQrLabel:d,waitingStartSessionLabel:h,display:p,renderRetryQR:c}=t;return i("div",{class:"reload",style:{width:(o-48).toString()+"px",height:o?(null===(e=o-48)||void 0===e?void 0:e.toString())+"px":""}},i("div",{id:"notify",onClick:()=>p()},i("img",{src:a,height:24,width:24}),i("p",{class:"notify-text"},r," "),i("p",{class:"notify-text bold"},n?l:d),n&&i("div",{class:"alert",style:{width:(o-48).toString()+"px"}},i("img",{src:s,height:24,width:24}),i("p",null,n))),i("div",{id:"qrwait"},c(h)))},c=t=>{const{value:e,useLogo:n,logoSrc:a,size:s}=t;return i("gataca-qrdisplay",{qrData:e,rounded:!0,size:s,"logo-size":n?.33:0,"logo-src":a})},m=()=>i("div",{class:"containerLoader"},i("div",{class:"loader"},i("div",{class:"loader__item loader__item__1"}),i("div",{class:"loader__item loader__item__2"}),i("div",{class:"loader__item loader__item__3"}),i("div",{class:"loader__item loader__item__4"}),i("div",{class:"loader__item loader__item__5"}),i("div",{class:"loader__item loader__item__6"}),i("div",{class:"loader__item loader__item__7"}),i("div",{class:"loader__item loader__item__8"}))),g=t=>{var e;const{modalWidth:n,readQrMessages:a,renderQR:s,url:o,sizeQR:r}=t;return i("div",{class:"blured",style:{width:(n-48).toString()+"px",height:n?(null===(e=n-48)||void 0===e?void 0:e.toString())+"px":""}},i("div",{id:"notify"},i(m,null),i("p",{class:"notify-text"},null==a?void 0:a.title," "),i("p",{class:"notify-text bold"},null==a?void 0:a.description)),i("div",{id:"qrwait"},s(o,!1,r)))},x="connect",f={connect:"scan",certify:"credential"},b=class{constructor(i){t(this,i),this.gatacaLoginCompleted=e(this,"gatacaLoginCompleted",7),this.gatacaLoginFailed=e(this,"gatacaLoginFailed",7),this.successCallback=void 0,this.errorCallback=void 0,this.qrRole=void 0,this.callbackServer=void 0,this.socketEndpoint=void 0,this.sessionTimeout=300,this.wsOnOpen=void 0,this.wsOnMessage=void 0,this.autostart=!0,this.autorefresh=!1,this.v2=!1,this.qrModalTitle="Quick Access",this.modalTitleColor="#4745B7",this.qrModalDescription="Sign up or sign in by scanning the QR Code with the Gataca Wallet",this.hideModalTexts=!1,this.hideModalBoxShadow=!1,this.hideBrandTitle=!1,this.logoSize=0,this.logoSrc=o,this.qrSize=300,this.modalWidth=300,this.modalHeight=void 0,this.qrCodeExpiredLabel="QR Code expired",this.credentialsNotValidatedLabel="User credentials not validated",this.clickInsideBoxLabel="Click inside the box to",this.refreshQrLabel="Refresh QR Code",this.scanQrLabel="Scan QR Code",this.userNotScanInTimeErrorLabel="User did not scan the QR in the allowed time",this.credsNotValidatedErrorLabel="Provided user credentials couldn't be validated",this.failedLoginErrorLabel="No successful login",this.successLoginLabel="Successful Connection!",this.byBrandLabel="by Gataca",this.waitingStartSessionLabel="waiting to start a session",this.readQrTitle="Processing...",this.readQrDescription="Please wait a moment",this.hideQrModalDescription=!1,this.dynamicLink=!0,this.sessionId=void 0,this.authenticationRequest=void 0,this.sessionData=void 0,this.result=r.NOT_STARTED}disconnectedCallback(){this.stop()}async componentDidLoad(){this.autostart&&await this.display()}async display(){let i=new WebSocket(this.socketEndpoint);setTimeout((()=>{this.socket.close(1e3,"")}),1e3*this.sessionTimeout),this.socket=i,i.onopen=()=>{this.wsOnOpen&&this.wsOnOpen(this.socket)},i.onmessage=i=>{if(this.wsOnMessage)this.wsOnMessage(this.socket,i);else{let t=JSON.parse(i.data);t.sessionId&&this.handleWSResponse(t)}},i.onerror=()=>{let t=new Error("Error connecting with server");this.result=r.FAILED,this.gatacaLoginFailed.emit(t),this.errorCallback(t),i.close(1e3,"")},i.onclose=()=>{if((this.result===r.ONGOING||r.READ)&&(this.result=r.EXPIRED),this.result===r.EXPIRED)if(this.autorefresh)this.display();else{let i=new Error("User did not scan the QR in the alloted time");this.gatacaLoginFailed.emit(i),this.errorCallback(i)}},l()&&this.dynamicLink&&(window.location.href=this.getLink())}sessionMsgReceived(i){this.handleWSResponse(i.detail)}handleWSResponse(i){switch(this.result=i.result,i.result){case r.ONGOING:case r.READ:this.sessionId=i.sessionId,this.authenticationRequest=i.authenticationRequest;break;case r.SUCCESS:this.sessionData=i.authenticatedUserData,this.gatacaLoginCompleted.emit(i.authenticatedUserData),this.successCallback(i.authenticatedUserData),this.socket.close(1e3,"");break;case r.FAILED:this.socket.close();let t=new Error("Provided user credentials couldn't be validated");this.gatacaLoginFailed.emit(t),this.errorCallback(t);break;case r.EXPIRED:if(this.socket.close(),this.autorefresh)this.display();else{let i=new Error("User did not scan the QR in the alloted time");this.gatacaLoginFailed.emit(i),this.errorCallback(i)}}}async stop(){this.sessionData=void 0,this.sessionId=void 0,this.socket.close(1e3,"Client stopped the connection")}async getSessionData(){return this.sessionData?Promise.resolve(this.sessionData):Promise.reject(new Error("No successful login"))}getLink(){if(this.v2&&this.qrRole==x)return this.authenticationRequest;let i="https://gataca.page.link/"+f[this.qrRole]+"?";return i+=this.qrRole===x?"session="+this.sessionId:"process="+this.sessionId,i+="&callback="+d(encodeURIComponent(this.callbackServer)),i=encodeURIComponent(i),this.dynamicLink?"https://gataca.page.link/?apn=com.gatacaapp&ibi=com.gataca.wallet&link="+i:i}renderQRSection(){switch(this.result){case r.NOT_STARTED:return this.renderRetryButton();case r.ONGOING:return this.renderQR(this.getLink(),!0);case r.EXPIRED:return this.renderRetryButton(this.qrCodeExpiredLabel);case r.FAILED:return this.renderRetryButton(this.credentialsNotValidatedLabel);case r.SUCCESS:return this.renderSuccess();case r.READ:return this.renderReadQR({title:null==this?void 0:this.readQrTitle,description:null==this?void 0:this.readQrDescription})}}renderSuccess(){return i(h,{modalHeight:null==this?void 0:this.modalHeight,successLoginLabel:null==this?void 0:this.successLoginLabel})}renderRetryButton(t){return i(p,{errorMessage:t,modalWidth:null==this?void 0:this.modalWidth,clickInsideBoxLabel:null==this?void 0:this.clickInsideBoxLabel,refreshQrLabel:null==this?void 0:this.refreshQrLabel,scanQrLabel:null==this?void 0:this.scanQrLabel,waitingStartSessionLabel:null==this?void 0:this.waitingStartSessionLabel,display:this.display.bind(this),renderRetryQR:this.renderRetryQR.bind(this)})}renderReadQR(t){return i(g,{modalWidth:null==this?void 0:this.modalWidth,readQrMessages:t,url:this.getLink(),sizeQR:(null==this?void 0:this.qrSize)?(null==this?void 0:this.qrSize)-50:void 0,renderQR:this.renderQR.bind(this)})}renderQR(t,e){return i(c,{value:t,useLogo:e,size:(null==this?void 0:this.qrSize)||void 0,logoSrc:null==this?void 0:this.logoSrc})}renderRetryQR(t,e){return i(c,{value:t,useLogo:e,size:(null==this?void 0:this.qrSize)?(null==this?void 0:this.qrSize)-50:void 0,logoSrc:null==this?void 0:this.logoSrc})}render(){var t,e;return i("div",{class:"popUpContainer"},i("div",{class:`is-visible modal-window ${this.hideModalTexts?"":"large-modal"} ${this.hideModalBoxShadow?"noBoxShadow":""}`,style:{width:(this.modalWidth-2).toString()+"px",height:this.modalHeight?(null===(t=this.modalHeight-2)||void 0===t?void 0:t.toString())+"px":""},onClick:i=>{i.stopPropagation()}},i("div",{class:"modal-window__content"},i("div",{class:"qrTitleContainer "+(this.hideModalTexts?"hidenText":"")},i("p",{class:"qrTitle modalText",style:{color:this.modalTitleColor||"#1e1e20"}},this.qrModalTitle),!this.hideBrandTitle&&i("p",{class:"qrBrand modalText"},this.byBrandLabel," ",i("span",null,i("img",{src:o}))),this.result!==r.SUCCESS&&!this.hideQrModalDescription&&i("p",{class:"qrDescription modalText"},this.qrModalDescription)),i("div",{class:"qrSection",style:{width:this.modalWidth.toString()+"px",height:this.modalWidth?(null===(e=this.modalWidth)||void 0===e?void 0:e.toString())+"px":""}},this.renderQRSection()))))}};b.style='@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@100;300;400;500;600;700&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400&display=swap"); html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:"";content:none}table{border-collapse:collapse;border-spacing:0}.img-fluid{height:auto;max-width:50%}img{margin-left:auto;margin-right:auto}.brandSection{padding-top:5px;display:flex;align-items:center}.brandSection .gatacaImgSmall{height:13px;width:13px;margin:0;margin-right:10px}.popUpContainer .large-modal{width:300px;min-height:350px}.popUpContainer .modal-window{position:relative;border-radius:6px;overflow:hidden;color:rgba(24, 27, 94, 0.8);box-shadow:0px 3px 10px rgba(48, 48, 48, 0.1);display:flex;flex-direction:column;justify-content:space-between;align-items:center;display:flex;z-index:1001;padding:1px;background-color:white;border-radius:12px;-webkit-transition:opacity 0.5s, visibility 0s 0.5s;transition:opacity 0.5s, visibility 0s 0.5s;visibility:hidden;opacity:0}.popUpContainer .modal-window__content{width:100%;height:100%;text-align:left}.popUpContainer .modal-window__content .hidenText{display:none}.popUpContainer .modal-window .modalText{font-family:"Ubuntu", "Work Sans", "Helvetica Neue", sans-serif;font-size:20px;font-style:normal;font-weight:700;line-height:24px;margin-top:10px;letter-spacing:1px}.popUpContainer .modal-window .qrTitleContainer{padding:14px 24px;padding-bottom:0px}.popUpContainer .modal-window .qrTitle{font-size:20px;font-weight:600;line-height:23.5px}.popUpContainer .modal-window .qrDescription{font-family:"Poppins", "Ubuntu", "Work Sans", "Helvetica Neue", sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:16px;color:#707074}.popUpContainer .modal-window .bold{font-weight:700}.popUpContainer .modal-window .qrBrand{margin-top:4px;font-size:14px;font-weight:400;line-height:16.5px;display:flex;align-items:center}.popUpContainer .modal-window .qrBrand img{margin-left:5px;height:12px}.popUpContainer .modal-window .qr-section{width:252px;height:252px}.popUpContainer .noBoxShadow{box-shadow:none}.popUpContainer .is-visible{opacity:1;visibility:visible}.is-transparent{opacity:0}.success{display:flex;height:300px;flex-direction:column;justify-content:center;align-items:center;padding:0px}.success>img{padding-bottom:12px}.success>.successMsg{line-height:23.5px;color:var(--neutral-1000, #1e1e20);text-align:center;font-family:"Ubuntu", "Work Sans", "Helvetica Neue", sans-serif;font-size:20px;font-style:normal;font-weight:700;line-height:24px}.reload,.blured{height:252px;width:252px;border:1px dashed #a1a1a1;border-radius:12px;position:relative;top:24px;margin:0 24px 24px;display:flex;overflow:hidden;justify-content:center;align-items:center}#qrwait{display:flex;justify-content:center}#qrwait,#notify{width:100%;height:100%;top:0;left:0;border-radius:20px}#notify{z-index:10;position:absolute;justify-self:center;justify-items:center;justify-content:center;align-items:center;align-content:center;display:flex;flex-direction:column;box-sizing:border-box;padding:20px;background:rgba(255, 255, 255, 0.95)}#notify>img{padding-bottom:12px}.alert{display:flex;flex-direction:row;justify-content:start;width:252px;position:absolute;bottom:0px;border:1px solid #ee888c;background:#ffdedf;border-radius:11px;box-sizing:border-box;padding:12px;align-items:center;gap:12px}.alert>img{margin:0}.alert>p{font-family:"Poppins", "Ubuntu", "Work Sans", "Helvetica Neue", sans-serif;font-size:14px;font-style:normal;font-weight:400;margin-top:0;line-height:16px;color:#1e1e20}.notify-text{font-family:"Poppins", "Ubuntu", "Work Sans", "Helvetica Neue", sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:16px;color:#707074;text-align:center}.containerLoader{display:flex;justify-content:center;align-items:center;width:30px;height:30px;margin-bottom:12px}.loader{position:relative;margin-left:0 !important}.loader__item{position:absolute;width:9.68px;height:4px;background:transparent;border-radius:2px}.loader__item__1{transform:translate(2.5846212025px, 5.4246212025px) rotate(45deg);-webkit-animation:translate(2.5846212025px, 5.4246212025px) rotate(45deg);-moz-animation:translate(2.5846212025px, 5.4246212025px) rotate(45deg);-o-animation:translate(2.5846212025px, 5.4246212025px) rotate(45deg);animation:blink 0.8333333333s linear 0.1041666667s infinite;-webkit-animation:blink 0.8333333333s linear 0.1041666667s infinite;-moz-animation:blink 0.8333333333s linear 0.1041666667s infinite;-o-animation:blink 0.8333333333s linear 0.1041666667s infinite}.loader__item__2{transform:translate(-4.84px, 8.5px) rotate(90deg);-webkit-animation:translate(-4.84px, 8.5px) rotate(90deg);-moz-animation:translate(-4.84px, 8.5px) rotate(90deg);-o-animation:translate(-4.84px, 8.5px) rotate(90deg);animation:blink 0.8333333333s linear 0.2083333333s infinite;-webkit-animation:blink 0.8333333333s linear 0.2083333333s infinite;-moz-animation:blink 0.8333333333s linear 0.2083333333s infinite;-o-animation:blink 0.8333333333s linear 0.2083333333s infinite}.loader__item__3{transform:translate(-12.2646212025px, 5.4246212025px) rotate(135deg);-webkit-animation:translate(-12.2646212025px, 5.4246212025px) rotate(135deg);-moz-animation:translate(-12.2646212025px, 5.4246212025px) rotate(135deg);-o-animation:translate(-12.2646212025px, 5.4246212025px) rotate(135deg);animation:blink 0.8333333333s linear 0.3125s infinite;-webkit-animation:blink 0.8333333333s linear 0.3125s infinite;-moz-animation:blink 0.8333333333s linear 0.3125s infinite;-o-animation:blink 0.8333333333s linear 0.3125s infinite}.loader__item__4{transform:translate(-15.3399999992px, -1.9999999999px) rotate(180deg);-webkit-animation:translate(-15.3399999992px, -1.9999999999px) rotate(180deg);-moz-animation:translate(-15.3399999992px, -1.9999999999px) rotate(180deg);-o-animation:translate(-15.3399999992px, -1.9999999999px) rotate(180deg);animation:blink 0.8333333333s linear 0.4166666667s infinite;-webkit-animation:blink 0.8333333333s linear 0.4166666667s infinite;-moz-animation:blink 0.8333333333s linear 0.4166666667s infinite;-o-animation:blink 0.8333333333s linear 0.4166666667s infinite}.loader__item__5{transform:translate(-12.2646210959px, -9.4246211842px) rotate(225deg);-webkit-animation:translate(-12.2646210959px, -9.4246211842px) rotate(225deg);-moz-animation:translate(-12.2646210959px, -9.4246211842px) rotate(225deg);-o-animation:translate(-12.2646210959px, -9.4246211842px) rotate(225deg);animation:blink 0.8333333333s linear 0.5208333333s infinite;-webkit-animation:blink 0.8333333333s linear 0.5208333333s infinite;-moz-animation:blink 0.8333333333s linear 0.5208333333s infinite;-o-animation:blink 0.8333333333s linear 0.5208333333s infinite}.loader__item__6{transform:translate(-4.8399941857px, -12.499998805px) rotate(270deg);-webkit-animation:translate(-4.8399941857px, -12.499998805px) rotate(270deg);-moz-animation:translate(-4.8399941857px, -12.499998805px) rotate(270deg);-o-animation:translate(-4.8399941857px, -12.499998805px) rotate(270deg);animation:blink 0.8333333333s linear 0.625s infinite;-webkit-animation:blink 0.8333333333s linear 0.625s infinite;-moz-animation:blink 0.8333333333s linear 0.625s infinite;-o-animation:blink 0.8333333333s linear 0.625s infinite}.loader__item__7{transform:translate(2.5847915061px, -9.4245803212px) rotate(315deg);-webkit-animation:translate(2.5847915061px, -9.4245803212px) rotate(315deg);-moz-animation:translate(2.5847915061px, -9.4245803212px) rotate(315deg);-o-animation:translate(2.5847915061px, -9.4245803212px) rotate(315deg);animation:blink 0.8333333333s linear 0.7291666667s infinite;-webkit-animation:blink 0.8333333333s linear 0.7291666667s infinite;-moz-animation:blink 0.8333333333s linear 0.7291666667s infinite;-o-animation:blink 0.8333333333s linear 0.7291666667s infinite}.loader__item__8{transform:translate(5.6631628524px, -1.99913122px) rotate(360deg);-webkit-animation:translate(5.6631628524px, -1.99913122px) rotate(360deg);-moz-animation:translate(5.6631628524px, -1.99913122px) rotate(360deg);-o-animation:translate(5.6631628524px, -1.99913122px) rotate(360deg);animation:blink 0.8333333333s linear 0.8333333333s infinite;-webkit-animation:blink 0.8333333333s linear 0.8333333333s infinite;-moz-animation:blink 0.8333333333s linear 0.8333333333s infinite;-o-animation:blink 0.8333333333s linear 0.8333333333s infinite}.loader__item__8{max-width:8.5px}@keyframes blink{0%{background:#4745B7}100%{background:#CCCBF8}}@keyframes rotate{0%{transform:rotate(0deg)}100%{background:rotate(360deg)}}';export{b as gataca_qrws}
@@ -1 +0,0 @@
1
- import{r as t,c as i,h as a}from"./p-ec0f00a6.js";import"./p-0be4566d.js";const e=class{constructor(e){t(this,e),this.gatacaLoginCompleted=i(this,"gatacaLoginCompleted",7),this.gatacaLoginFailed=i(this,"gatacaLoginFailed",7),this.buttonText="Easy login",this.checkStatus=void 0,this.createSession=void 0,this.successCallback=void 0,this.errorCallback=void 0,this.qrRole=void 0,this.callbackServer=void 0,this.sessionTimeout=void 0,this.pollingFrequency=void 0,this.autorefresh=!1,this.v2=!1,this.qrModalTitle="Quick Access",this.modalTitleColor="#4745B7",this.qrModalDescription="Sign up or sign in by scanning the QR Code with the Gataca Wallet",this.hideBrandTitle=!1,this.dynamicLink=!0,this.logoSize=0,this.logoSrc=void 0,this.qrCodeExpiredLabel="QR Code expired",this.credentialsNotValidatedLabel="User credentials not validated",this.clickInsideBoxLabel="Click inside the box to",this.refreshQrLabel="Refresh QR Code",this.scanQrLabel="Scan QR Code",this.userNotScanInTimeErrorLabel="User did not scan the QR in the allowed time",this.credsNotValidatedErrorLabel="Provided user credentials couldn't be validated",this.failedLoginErrorLabel="No successful login",this.successLoginLabel="Successful Connection!",this.byBrandLabel="by Gataca",this.waitingStartSessionLabel="waiting to start a session",this.hideQrModalDescription=!1,this.open=!1,this.qr=a("gataca-qr",{checkStatus:this.checkStatus,createSession:this.createSession,successCallback:this.successCallback,errorCallback:this.errorCallback,qrRole:this.qrRole,callbackServer:this.callbackServer,sessionTimeout:this.sessionTimeout,pollingFrequency:this.pollingFrequency,autostart:!0,autorefresh:this.autorefresh,v2:this.v2,qrModalTitle:this.qrModalTitle,qrModalDescription:this.qrModalDescription,hideBrandTitle:this.hideBrandTitle,dynamicLink:this.dynamicLink,logoSize:this.logoSize,logoSrc:this.logoSrc,modalTitleColor:this.modalTitleColor,qrCodeExpiredLabel:this.qrCodeExpiredLabel,credentialsNotValidatedLabel:this.credentialsNotValidatedLabel,clickInsideBoxLabel:this.clickInsideBoxLabel,refreshQrLabel:this.refreshQrLabel,scanQrLabel:this.scanQrLabel,userNotScanInTimeErrorLabel:this.userNotScanInTimeErrorLabel,credsNotValidatedErrorLabel:this.credsNotValidatedErrorLabel,failedLoginErrorLabel:this.failedLoginErrorLabel,successLoginLabel:this.successLoginLabel,byBrandLabel:this.byBrandLabel,waitingStartSessionLabel:this.waitingStartSessionLabel,hideQrModalDescription:this.hideQrModalDescription})}async getSessionData(){return this.qr.getSessionData()}renderModal(){return this.qr}renderButton(){return a("div",{class:"gatacaButtonWrapper"},a("button",{class:"gatacaButton",onClick:()=>{this.open=!this.open,this.open?this.qr.display():this.qr.stop()}},a("img",{src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAbCAYAAACN1PRVAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAHvSURBVHgB3ZZPTttAFMbfe3YjL7qYLopcpZXSG7Q3CDfIsqrSJpyg5QQtJ2h7glgUdVs4AeEE5AYEQSDAgtnw357Hm0hAQDaeIRFCfFKyeKPxzzPzvc+DUKCZN80GEv1ABgWOQgSdGbOwv7u0nDueV4zjTzUIKhuAZna4vdQFR828azbI0K/TI/qodaLvjlP+tLDGDCs+IKv9Lbsi7kcv0w9541Q0EREPYcoieEQ9KiyECRXHzbpBUOcnYTfPFOOaaGVx9WsLiDrSIp0iU0wFNgIx/AQyc9I/OmOjy+Y8aBvHQcDUYebewc6/Xtk8J5htcg5efEPGhk0JtqkyBjo7DuZcnuO2sqCyKv8rUDmfTS9IBURqBAL+I6CkzBjOMOs22TLY21n8fl17KzXR3uDvb/CQk0GEdfvN07QvpnAOaGfYaRT25JzU6+rnG2tTpcWAy+Cp0m3U/URLms8HWfg/rn6RFaGSs9KQkZMpvGBWNs2Vandt46ac6YNBuc0fDLMaOU5DFybQ8039p/KJ4bq4rwPewtqoM/1gsCm/NfBXvWjgHhhuDAeLyd3qVSifHQULeZkou9EqemLhmUmav8qrZ4GEMGA7ivzjKvfeqGptFV2YdWPMPHHq0cCh3DdpVdLl/XCY9J1gVvbCiWa6N+JLocPFjCsx9cAAAAAASUVORK5CYII=",class:"buttonImg",alt:this.buttonText}),a("span",null,this.buttonText)))}render(){return a("div",{class:"buttonContainer"},this.renderButton(),this.open&&this.renderModal())}};e.style='@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400&display=swap"); html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:"";content:none}table{border-collapse:collapse;border-spacing:0}.img-fluid{height:auto;max-width:50%}img{margin-left:auto;margin-right:auto}.buttonContainer{display:inline-block;text-align:right;padding:10px;position:relative}.gatacaButtonWrapper{margin:8px}.gatacaButtonWrapper .gatacaButton{display:flex;min-width:100px;padding:8px 8px;background-color:white;font-size:12px;font-family:"Work Sans", sans-serif;letter-spacing:1px;font-weight:2;justify-content:space-between;align-items:center;border-radius:6px;border:1px solid rgba(24, 27, 94, 0.5);color:rgba(24, 27, 94, 0.8);box-shadow:0px 1px 3px rgba(48, 48, 48, 0.15);cursor:pointer}.gatacaButtonWrapper .gatacaButton>span{margin-right:10px}.gatacaButtonWrapper .gatacaButton:hover{box-shadow:0px 2px 8px rgba(48, 48, 48, 0.1)}.gatacaButtonWrapper .buttonText{text-align:right;font-size:8px;color:rgba(24, 27, 94, 0.5);font-family:"Helvetica Neue", sans-serif;letter-spacing:1px;padding-right:8px;font-weight:1}.gatacaButtonWrapper .buttonImg{height:25px;width:25px;margin:0;margin-right:20px}';const s=class{constructor(e){t(this,e),this.gatacaLoginCompleted=i(this,"gatacaLoginCompleted",7),this.gatacaLoginFailed=i(this,"gatacaLoginFailed",7),this.buttonText="Easy login",this.successCallback=void 0,this.errorCallback=void 0,this.qrRole=void 0,this.callbackServer=void 0,this.socketEndpoint=void 0,this.sessionTimeout=void 0,this.wsOnOpen=void 0,this.wsOnMessage=void 0,this.autostart=!0,this.autorefresh=!1,this.v2=!1,this.qrModalTitle="Quick Access",this.qrModalDescription="Sign up or sign in by scanning the QR Code with the Gataca Wallet",this.hideBrandTitle=!1,this.dynamicLink=!0,this.open=!1,this.qr=a("gataca-qrws",{wsOnMessage:this.wsOnMessage,wsOnOpen:this.wsOnOpen,successCallback:this.successCallback,errorCallback:this.errorCallback,qrRole:this.qrRole,callbackServer:this.callbackServer,sessionTimeout:this.sessionTimeout,socketEndpoint:this.socketEndpoint,autostart:!0,autorefresh:this.autorefresh,v2:this.v2,qrModalTitle:this.qrModalTitle,qrModalDescription:this.qrModalDescription,hideBrandTitle:this.hideBrandTitle,dynamicLink:this.dynamicLink})}async getSessionData(){return this.qr.getSessionData()}renderModal(){return this.qr}renderButton(){return a("div",{class:"gatacaButtonWrapper"},a("button",{class:"gatacaButton",onClick:()=>{this.open=!this.open,this.open?this.qr.display():this.qr.stop()}},a("img",{src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAbCAYAAACN1PRVAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAHvSURBVHgB3ZZPTttAFMbfe3YjL7qYLopcpZXSG7Q3CDfIsqrSJpyg5QQtJ2h7glgUdVs4AeEE5AYEQSDAgtnw357Hm0hAQDaeIRFCfFKyeKPxzzPzvc+DUKCZN80GEv1ABgWOQgSdGbOwv7u0nDueV4zjTzUIKhuAZna4vdQFR828azbI0K/TI/qodaLvjlP+tLDGDCs+IKv9Lbsi7kcv0w9541Q0EREPYcoieEQ9KiyECRXHzbpBUOcnYTfPFOOaaGVx9WsLiDrSIp0iU0wFNgIx/AQyc9I/OmOjy+Y8aBvHQcDUYebewc6/Xtk8J5htcg5efEPGhk0JtqkyBjo7DuZcnuO2sqCyKv8rUDmfTS9IBURqBAL+I6CkzBjOMOs22TLY21n8fl17KzXR3uDvb/CQk0GEdfvN07QvpnAOaGfYaRT25JzU6+rnG2tTpcWAy+Cp0m3U/URLms8HWfg/rn6RFaGSs9KQkZMpvGBWNs2Vandt46ac6YNBuc0fDLMaOU5DFybQ8039p/KJ4bq4rwPewtqoM/1gsCm/NfBXvWjgHhhuDAeLyd3qVSifHQULeZkou9EqemLhmUmav8qrZ4GEMGA7ivzjKvfeqGptFV2YdWPMPHHq0cCh3DdpVdLl/XCY9J1gVvbCiWa6N+JLocPFjCsx9cAAAAAASUVORK5CYII=",class:"buttonImg",alt:this.buttonText}),a("span",null,this.buttonText)))}render(){return a("div",{class:"buttonContainer"},this.renderButton(),this.open&&this.renderModal())}};s.style='@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400&display=swap"); html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:"";content:none}table{border-collapse:collapse;border-spacing:0}.img-fluid{height:auto;max-width:50%}img{margin-left:auto;margin-right:auto}.buttonContainer{display:inline-block;text-align:right;padding:10px;position:relative}.gatacaButtonWrapper{margin:8px}.gatacaButtonWrapper .gatacaButton{display:flex;min-width:100px;padding:8px 8px;background-color:white;font-size:12px;font-family:"Work Sans", sans-serif;letter-spacing:1px;font-weight:2;justify-content:space-between;align-items:center;border-radius:6px;border:1px solid rgba(24, 27, 94, 0.5);color:rgba(24, 27, 94, 0.8);box-shadow:0px 1px 3px rgba(48, 48, 48, 0.15);cursor:pointer}.gatacaButtonWrapper .gatacaButton>span{margin-right:10px}.gatacaButtonWrapper .gatacaButton:hover{box-shadow:0px 2px 8px rgba(48, 48, 48, 0.1)}.gatacaButtonWrapper .buttonText{text-align:right;font-size:8px;color:rgba(24, 27, 94, 0.5);font-family:"Helvetica Neue", sans-serif;letter-spacing:1px;padding-right:8px;font-weight:1}.gatacaButtonWrapper .buttonImg{height:25px;width:25px;margin:0;margin-right:20px}';export{e as gataca_ssibutton,s as gataca_ssibuttonws}
@@ -1,2 +0,0 @@
1
- let e,t,n=!1;const l={},o=e=>"object"==(e=typeof e)||"function"===e;function s(e){var t,n,l;return null!==(l=null===(n=null===(t=e.head)||void 0===t?void 0:t.querySelector('meta[name="csp-nonce"]'))||void 0===n?void 0:n.getAttribute("content"))&&void 0!==l?l:void 0}const c=(e,t,...n)=>{let l=null,s=!1,c=!1;const i=[],a=t=>{for(let n=0;n<t.length;n++)l=t[n],Array.isArray(l)?a(l):null!=l&&"boolean"!=typeof l&&((s="function"!=typeof e&&!o(l))&&(l+=""),s&&c?i[i.length-1].t+=l:i.push(s?r(null,l):l),c=s)};if(a(n),t){const e=t.className||t.class;e&&(t.class="object"!=typeof e?e:Object.keys(e).filter((t=>e[t])).join(" "))}if("function"==typeof e)return e(null===t?{}:t,i,u);const f=r(e,null);return f.l=t,i.length>0&&(f.o=i),f},r=(e,t)=>({i:0,u:e,t,h:null,o:null,l:null}),i={},u={forEach:(e,t)=>e.map(a).forEach(t),map:(e,t)=>e.map(a).map(t).map(f)},a=e=>({vattrs:e.l,vchildren:e.o,vkey:e.m,vname:e.p,vtag:e.u,vtext:e.t}),f=e=>{if("function"==typeof e.vtag){const t=Object.assign({},e.vattrs);return e.vkey&&(t.key=e.vkey),e.vname&&(t.name=e.vname),c(e.vtag,t,...e.vchildren||[])}const t=r(e.vtag,e.vtext);return t.l=e.vattrs,t.o=e.vchildren,t.m=e.vkey,t.p=e.vname,t},d=(e,t,n)=>{const l=(e=>_(e).$)(e);return{emit:e=>h(l,t,{bubbles:!!(4&n),composed:!!(2&n),cancelable:!!(1&n),detail:e})}},h=(e,t,n)=>{const l=Z.ce(t,n);return e.dispatchEvent(l),l},y=new WeakMap,m=e=>"sc-"+e.v,p=(e,t,n,l,s,c)=>{if(n!==l){let r=G(e,t),i=t.toLowerCase();if("class"===t){const t=e.classList,o=b(n),s=b(l);t.remove(...o.filter((e=>e&&!s.includes(e)))),t.add(...s.filter((e=>e&&!o.includes(e))))}else if("style"===t){for(const t in n)l&&null!=l[t]||(t.includes("-")?e.style.removeProperty(t):e.style[t]="");for(const t in l)n&&l[t]===n[t]||(t.includes("-")?e.style.setProperty(t,l[t]):e.style[t]=l[t])}else if("ref"===t)l&&l(e);else if(r||"o"!==t[0]||"n"!==t[1]){const i=o(l);if((r||i&&null!==l)&&!s)try{if(e.tagName.includes("-"))e[t]=l;else{const o=null==l?"":l;"list"===t?r=!1:null!=n&&e[t]==o||(e[t]=o)}}catch(e){}null==l||!1===l?!1===l&&""!==e.getAttribute(t)||e.removeAttribute(t):(!r||4&c||s)&&!i&&e.setAttribute(t,l=!0===l?"":l)}else t="-"===t[2]?t.slice(3):G(X,i)?i.slice(2):i[2]+t.slice(3),n&&Z.rel(e,t,n,!1),l&&Z.ael(e,t,l,!1)}},$=/\s/,b=e=>e?e.split($):[],v=(e,t,n,o)=>{const s=11===t.h.nodeType&&t.h.host?t.h.host:t.h,c=e&&e.l||l,r=t.l||l;for(o in c)o in r||p(s,o,c[o],void 0,n,t.i);for(o in r)p(s,o,c[o],r[o],n,t.i)},w=(t,n,l)=>{const o=n.o[l];let s,c,r=0;if(null!==o.t)s=o.h=Y.createTextNode(o.t);else if(s=o.h=Y.createElement(o.u),v(null,o,!1),null!=e&&s["s-si"]!==e&&s.classList.add(s["s-si"]=e),o.o)for(r=0;r<o.o.length;++r)c=w(t,o,r),c&&s.appendChild(c);return s},g=(e,n,l,o,s,c)=>{let r,i=e;for(i.shadowRoot&&i.tagName===t&&(i=i.shadowRoot);s<=c;++s)o[s]&&(r=w(null,l,s),r&&(o[s].h=r,i.insertBefore(r,n)))},S=(e,t,n,l,o)=>{for(;t<=n;++t)(l=e[t])&&(o=l.h,M(l),o.remove())},j=(e,t)=>e.u===t.u,k=(e,t)=>{const n=t.h=e.h,l=e.o,o=t.o,s=t.t;null===s?(v(e,t,!1),null!==l&&null!==o?((e,t,n,l)=>{let o,s=0,c=0,r=t.length-1,i=t[0],u=t[r],a=l.length-1,f=l[0],d=l[a];for(;s<=r&&c<=a;)null==i?i=t[++s]:null==u?u=t[--r]:null==f?f=l[++c]:null==d?d=l[--a]:j(i,f)?(k(i,f),i=t[++s],f=l[++c]):j(u,d)?(k(u,d),u=t[--r],d=l[--a]):j(i,d)?(k(i,d),e.insertBefore(i.h,u.h.nextSibling),i=t[++s],d=l[--a]):j(u,f)?(k(u,f),e.insertBefore(u.h,i.h),u=t[--r],f=l[++c]):(o=w(t&&t[c],n,c),f=l[++c],o&&i.h.parentNode.insertBefore(o,i.h));s>r?g(e,null==l[a+1]?null:l[a+1].h,n,l,c,a):c>a&&S(t,s,r)})(n,l,t,o):null!==o?(null!==e.t&&(n.textContent=""),g(n,null,t,o,0,o.length-1)):null!==l&&S(l,0,l.length-1)):e.t!==s&&(n.data=s)},M=e=>{e.l&&e.l.ref&&e.l.ref(null),e.o&&e.o.map(M)},O=(e,t)=>{t&&!e.g&&t["s-p"]&&t["s-p"].push(new Promise((t=>e.g=t)))},C=(e,t)=>{if(e.i|=16,!(4&e.i))return O(e,e.S),ie((()=>P(e,t)));e.i|=512},P=(e,t)=>{const n=e.j;return t&&(e.i|=256,e.k&&(e.k.map((([e,t])=>T(n,e,t))),e.k=null)),q(void 0,(()=>x(e,n,t)))},x=async(e,t,n)=>{const l=e.$,o=l["s-rc"];n&&(e=>{const t=e.M,n=e.$,l=t.i,o=((e,t)=>{var n;let l=m(t);const o=Q.get(l);if(e=11===e.nodeType?e:Y,o)if("string"==typeof o){let t,c=y.get(e=e.head||e);if(c||y.set(e,c=new Set),!c.has(l)){{t=Y.createElement("style"),t.innerHTML=o;const l=null!==(n=Z.O)&&void 0!==n?n:s(Y);null!=l&&t.setAttribute("nonce",l),e.insertBefore(t,e.querySelector("link"))}c&&c.add(l)}}else e.adoptedStyleSheets.includes(o)||(e.adoptedStyleSheets=[...e.adoptedStyleSheets,o]);return l})(n.shadowRoot?n.shadowRoot:n.getRootNode(),t);10&l&&(n["s-sc"]=o,n.classList.add(o+"-h"))})(e);E(e,t),o&&(o.map((e=>e())),l["s-rc"]=void 0);{const t=l["s-p"],n=()=>L(e);0===t.length?n():(Promise.all(t).then(n),e.i|=4,t.length=0)}},E=(n,l)=>{try{l=l.render(),n.i&=-17,n.i|=2,((n,l)=>{const o=n.$,s=n.C||r(null,null),u=(e=>e&&e.u===i)(l)?l:c(null,null,l);t=o.tagName,u.u=null,u.i|=4,n.C=u,u.h=s.h=o.shadowRoot||o,e=o["s-sc"],k(s,u)})(n,l)}catch(e){I(e,n.$)}return null},L=e=>{const t=e.$,n=e.j,l=e.S;64&e.i||(e.i|=64,A(t),T(n,"componentDidLoad"),e.P(t),l||N()),e.L(t),e.g&&(e.g(),e.g=void 0),512&e.i&&re((()=>C(e,!1))),e.i&=-517},N=()=>{A(Y.documentElement),re((()=>h(X,"appload",{detail:{namespace:"gatacaqr"}})))},T=(e,t,n)=>{if(e&&e[t])try{return e[t](n)}catch(e){I(e)}},q=(e,t)=>e&&e.then?e.then(t):t(),A=e=>e.classList.add("hydrated"),F=(e,t,n)=>{if(t.N){const l=Object.entries(t.N),s=e.prototype;if(l.map((([e,[l]])=>{31&l||2&n&&32&l?Object.defineProperty(s,e,{get(){return((e,t)=>_(this).T.get(t))(0,e)},set(n){((e,t,n,l)=>{const s=_(e),c=s.T.get(t),r=s.i,i=s.j;n=((e,t)=>null==e||o(e)?e:4&t?"false"!==e&&(""===e||!!e):2&t?parseFloat(e):1&t?e+"":e)(n,l.N[t][0]),8&r&&void 0!==c||n===c||Number.isNaN(c)&&Number.isNaN(n)||(s.T.set(t,n),i&&2==(18&r)&&C(s,!1))})(this,e,n,t)},configurable:!0,enumerable:!0}):1&n&&64&l&&Object.defineProperty(s,e,{value(...t){const n=_(this);return n.q.then((()=>n.j[e](...t)))}})})),1&n){const t=new Map;s.attributeChangedCallback=function(e,n,l){Z.jmp((()=>{const n=t.get(e);if(this.hasOwnProperty(n))l=this[n],delete this[n];else if(s.hasOwnProperty(n)&&"number"==typeof this[n]&&this[n]==l)return;this[n]=(null!==l||"boolean"!=typeof this[n])&&l}))},e.observedAttributes=l.filter((([e,t])=>15&t[0])).map((([e,n])=>{const l=n[1]||e;return t.set(l,e),l}))}}return e},R=(e,t={})=>{var n;const l=[],o=t.exclude||[],c=X.customElements,r=Y.head,i=r.querySelector("meta[charset]"),u=Y.createElement("style"),a=[];let f,d=!0;Object.assign(Z,t),Z.A=new URL(t.resourcesUrl||"./",Y.baseURI).href,e.map((e=>{e[1].map((t=>{const n={i:t[0],v:t[1],N:t[2],F:t[3]};n.N=t[2],n.F=t[3];const s=n.v,r=class extends HTMLElement{constructor(e){super(e),B(e=this,n),1&n.i&&e.attachShadow({mode:"open"})}connectedCallback(){f&&(clearTimeout(f),f=null),d?a.push(this):Z.jmp((()=>(e=>{if(0==(1&Z.i)){const t=_(e),n=t.M,l=()=>{};if(1&t.i)U(e,t,n.F);else{t.i|=1;{let n=e;for(;n=n.parentNode||n.host;)if(n["s-p"]){O(t,t.S=n);break}}n.N&&Object.entries(n.N).map((([t,[n]])=>{if(31&n&&e.hasOwnProperty(t)){const n=e[t];delete e[t],e[t]=n}})),(async(e,t,n,l,o)=>{if(0==(32&t.i)){{if(t.i|=32,(o=K(n)).then){const e=()=>{};o=await o,e()}o.isProxied||(F(o,n,2),o.isProxied=!0);const e=()=>{};t.i|=8;try{new o(t)}catch(e){I(e)}t.i&=-9,e()}if(o.style){let e=o.style;const t=m(n);if(!Q.has(t)){const l=()=>{};((e,t,n)=>{let l=Q.get(e);te&&n?(l=l||new CSSStyleSheet,"string"==typeof l?l=t:l.replaceSync(t)):l=t,Q.set(e,l)})(t,e,!!(1&n.i)),l()}}}const s=t.S,c=()=>C(t,!0);s&&s["s-rc"]?s["s-rc"].push(c):c()})(0,t,n)}l()}})(this)))}disconnectedCallback(){Z.jmp((()=>(()=>{if(0==(1&Z.i)){const e=_(this),t=e.j;e.R&&(e.R.map((e=>e())),e.R=void 0),T(t,"disconnectedCallback")}})()))}componentOnReady(){return _(this).U}};n.W=e[0],o.includes(s)||c.get(s)||(l.push(s),c.define(s,F(r,n,1)))}))}));{u.innerHTML=l+"{visibility:hidden}.hydrated{visibility:inherit}",u.setAttribute("data-styles","");const e=null!==(n=Z.O)&&void 0!==n?n:s(Y);null!=e&&u.setAttribute("nonce",e),r.insertBefore(u,i?i.nextSibling:r.firstChild)}d=!1,a.length?a.map((e=>e.connectedCallback())):Z.jmp((()=>f=setTimeout(N,30)))},U=(e,t,n)=>{n&&n.map((([n,l,o])=>{const s=e,c=W(t,o),r=D(n);Z.ael(s,l,c,r),(t.R=t.R||[]).push((()=>Z.rel(s,l,c,r)))}))},W=(e,t)=>n=>{try{256&e.i?e.j[t](n):(e.k=e.k||[]).push([t,n])}catch(e){I(e)}},D=e=>0!=(2&e),H=e=>Z.O=e,V=new WeakMap,_=e=>V.get(e),z=(e,t)=>V.set(t.j=e,t),B=(e,t)=>{const n={i:0,$:e,M:t,T:new Map};return n.q=new Promise((e=>n.L=e)),n.U=new Promise((e=>n.P=e)),e["s-p"]=[],e["s-rc"]=[],U(e,n,t.F),V.set(e,n)},G=(e,t)=>t in e,I=(e,t)=>(0,console.error)(e,t),J=new Map,K=e=>{const t=e.v.replace(/-/g,"_"),n=e.W,l=J.get(n);return l?l[t]:import(`./${n}.entry.js`).then((e=>(J.set(n,e),e[t])),I)
2
- /*!__STENCIL_STATIC_IMPORT_SWITCH__*/},Q=new Map,X="undefined"!=typeof window?window:{},Y=X.document||{head:{}},Z={i:0,A:"",jmp:e=>e(),raf:e=>requestAnimationFrame(e),ael:(e,t,n,l)=>e.addEventListener(t,n,l),rel:(e,t,n,l)=>e.removeEventListener(t,n,l),ce:(e,t)=>new CustomEvent(e,t)},ee=e=>Promise.resolve(e),te=(()=>{try{return new CSSStyleSheet,"function"==typeof(new CSSStyleSheet).replaceSync}catch(e){}return!1})(),ne=[],le=[],oe=(e,t)=>l=>{e.push(l),n||(n=!0,t&&4&Z.i?re(ce):Z.raf(ce))},se=e=>{for(let t=0;t<e.length;t++)try{e[t](performance.now())}catch(e){I(e)}e.length=0},ce=()=>{se(ne),se(le),(n=ne.length>0)&&Z.raf(ce)},re=e=>ee().then(e),ie=oe(le,!0);export{R as b,d as c,c as h,ee as p,z as r,H as s}