@gataca/qr 4.2.1 → 4.2.2

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 (95) hide show
  1. package/dist/cjs/gat-icon-check-6b6780eb.js +37 -0
  2. package/dist/cjs/gataca-autoqr.cjs.entry.js +106 -0
  3. package/dist/cjs/gataca-qr_3.cjs.entry.js +766 -0
  4. package/dist/cjs/gataca-qrws.cjs.entry.js +366 -0
  5. package/dist/cjs/gataca-ssibuttonws.cjs.entry.js +61 -0
  6. package/dist/cjs/gatacaqr.cjs.js +19 -0
  7. package/dist/cjs/index-d8d3dfde.js +1532 -0
  8. package/dist/cjs/index.cjs.js +17 -0
  9. package/dist/cjs/loader.cjs.js +21 -0
  10. package/dist/cjs/utils-17b0a5ba.js +72 -0
  11. package/dist/collection/assets/icons/gat-icon-alert.svg +5 -0
  12. package/dist/collection/assets/icons/gat-icon-check.svg +5 -0
  13. package/dist/collection/assets/icons/gat-icon-refresh.svg +4 -0
  14. package/dist/collection/assets/images/logo_gataca.svg +7 -0
  15. package/dist/collection/collection-manifest.json +17 -0
  16. package/dist/collection/components/gataca-autoqr/gataca-autoqr.css +116 -0
  17. package/dist/collection/components/gataca-autoqr/gataca-autoqr.js +347 -0
  18. package/dist/collection/components/gataca-qr/components/qr/QR.js +13 -0
  19. package/dist/collection/components/gataca-qr/components/readQR/ReadQR.js +16 -0
  20. package/dist/collection/components/gataca-qr/components/readQR/components/AnimatedLoader.js +6 -0
  21. package/dist/collection/components/gataca-qr/components/retryButton/RetryButton.js +19 -0
  22. package/dist/collection/components/gataca-qr/components/success/Success.js +9 -0
  23. package/dist/collection/components/gataca-qr/gataca-qr.css +415 -0
  24. package/dist/collection/components/gataca-qr/gataca-qr.js +1069 -0
  25. package/dist/collection/components/gataca-qrdisplay/gataca-qrdisplay.js +224 -0
  26. package/dist/collection/components/gataca-qrws/components/qr/QR.js +13 -0
  27. package/dist/collection/components/gataca-qrws/components/readQR/ReadQR.js +11 -0
  28. package/dist/collection/components/gataca-qrws/components/readQR/components/AnimatedLoader.js +4 -0
  29. package/dist/collection/components/gataca-qrws/components/retryButton/RetryButton.js +16 -0
  30. package/dist/collection/components/gataca-qrws/components/success/Success.js +8 -0
  31. package/dist/collection/components/gataca-qrws/gataca-qrws.css +407 -0
  32. package/dist/collection/components/gataca-qrws/gataca-qrws.js +1098 -0
  33. package/dist/collection/components/gataca-ssibutton/gataca-ssibutton.css +116 -0
  34. package/dist/collection/components/gataca-ssibutton/gataca-ssibutton.js +1174 -0
  35. package/dist/collection/components/gataca-ssibuttonws/gataca-ssibuttonws.css +116 -0
  36. package/dist/collection/components/gataca-ssibuttonws/gataca-ssibuttonws.js +434 -0
  37. package/dist/collection/components/icons/RefreshIcon.js +6 -0
  38. package/dist/collection/index.js +2 -0
  39. package/dist/collection/utils/index.js +1 -0
  40. package/dist/collection/utils/utils.js +66 -0
  41. package/dist/components/gat-icon-check.js +72 -0
  42. package/dist/components/gataca-autoqr.js +163 -0
  43. package/dist/components/gataca-qr.js +6 -0
  44. package/dist/{gatacaqr/gataca-qr.entry.js → components/gataca-qr2.js} +77 -10
  45. package/dist/components/gataca-qrdisplay.js +6 -0
  46. package/dist/components/gataca-qrdisplay2.js +121 -0
  47. package/dist/components/gataca-qrws.js +6 -0
  48. package/dist/components/gataca-qrws2.js +430 -0
  49. package/dist/components/gataca-ssibutton.js +6 -0
  50. package/dist/{gatacaqr/gataca-ssibutton.entry.js → components/gataca-ssibutton2.js} +82 -9
  51. package/dist/components/gataca-ssibuttonws.js +6 -0
  52. package/dist/components/gataca-ssibuttonws2.js +104 -0
  53. package/dist/components/index.js +8 -0
  54. package/dist/esm/gat-icon-check-7320c81b.js +32 -0
  55. package/dist/{gatacaqr → esm}/gataca-autoqr.entry.js +1 -1
  56. package/dist/esm/gataca-qr_3.entry.js +760 -0
  57. package/dist/{gatacaqr → esm}/gataca-qrws.entry.js +2 -3
  58. package/dist/{gatacaqr → esm}/gataca-ssibuttonws.entry.js +1 -1
  59. package/dist/esm/gatacaqr.js +17 -0
  60. package/dist/esm/index-dca2ab22.js +1506 -0
  61. package/dist/esm/index.js +1 -0
  62. package/dist/esm/loader.js +17 -0
  63. package/dist/esm/polyfills/core-js.js +11 -0
  64. package/dist/esm/polyfills/css-shim.js +1 -0
  65. package/dist/esm/polyfills/dom.js +79 -0
  66. package/dist/esm/polyfills/es5-html-element.js +1 -0
  67. package/dist/esm/polyfills/index.js +34 -0
  68. package/dist/esm/polyfills/system.js +6 -0
  69. package/dist/gatacaqr/gatacaqr.esm.js +1 -129
  70. package/dist/gatacaqr/index.esm.js +1 -1
  71. package/dist/gatacaqr/p-143c0080.js +1 -0
  72. package/dist/gatacaqr/p-29119208.js +1 -0
  73. package/dist/gatacaqr/p-2dc7190a.entry.js +1 -0
  74. package/dist/gatacaqr/p-2e8accf9.entry.js +1 -0
  75. package/dist/gatacaqr/p-36ff5224.entry.js +1 -0
  76. package/dist/gatacaqr/p-85af64b1.js +2 -0
  77. package/dist/gatacaqr/p-d27dabe4.entry.js +1 -0
  78. package/dist/index.cjs.js +1 -0
  79. package/dist/index.js +1 -0
  80. package/package.json +1 -1
  81. package/dist/gatacaqr/app-globals-0f993ce5.js +0 -3
  82. package/dist/gatacaqr/css-shim-8eec97b3.js +0 -4
  83. package/dist/gatacaqr/dom-1b0cf05d.js +0 -73
  84. package/dist/gatacaqr/gat-icon-check-9132c0ad.js +0 -5
  85. package/dist/gatacaqr/gataca-qrdisplay-9a22c242.js +0 -123
  86. package/dist/gatacaqr/gataca-qrdisplay.entry.js +0 -2
  87. package/dist/gatacaqr/index-aea56eb8.js +0 -3262
  88. package/dist/gatacaqr/shadow-css-146f2f6f.js +0 -387
  89. package/dist/types/components/gataca-autoqr/gataca-autoqr.e2e.d.ts +0 -1
  90. package/dist/types/components/gataca-qr/gataca-qr.e2e.d.ts +0 -1
  91. package/dist/types/components/gataca-qrdisplay/gataca-qrdisplay.e2e.d.ts +0 -1
  92. package/dist/types/components/gataca-qrws/gataca-qrws.e2e.d.ts +0 -1
  93. package/dist/types/components/gataca-ssibutton/gataca-ssibutton.e2e.d.ts +0 -1
  94. package/dist/types/components/gataca-ssibuttonws/gataca-ssibuttonws.e2e.d.ts +0 -1
  95. /package/dist/{gatacaqr → esm}/utils-e4a08623.js +0 -0
@@ -0,0 +1,116 @@
1
+ /* http://meyerweb.com/eric/tools/css/reset/
2
+ v2.0 | 20110126
3
+ License: none (public domain)
4
+ */
5
+ @import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400&display=swap");
6
+ html, body, div, span, applet, object, iframe,
7
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
8
+ a, abbr, acronym, address, big, cite, code,
9
+ del, dfn, em, img, ins, kbd, q, s, samp,
10
+ small, strike, strong, sub, sup, tt, var,
11
+ b, u, i, center,
12
+ dl, dt, dd, ol, ul, li,
13
+ fieldset, form, label, legend,
14
+ table, caption, tbody, tfoot, thead, tr, th, td,
15
+ article, aside, canvas, details, embed,
16
+ figure, figcaption, footer, header, hgroup,
17
+ menu, nav, output, ruby, section, summary,
18
+ time, mark, audio, video {
19
+ margin: 0;
20
+ padding: 0;
21
+ border: 0;
22
+ font-size: 100%;
23
+ font: inherit;
24
+ vertical-align: baseline;
25
+ }
26
+
27
+ /* HTML5 display-role reset for older browsers */
28
+ article, aside, details, figcaption, figure,
29
+ footer, header, hgroup, menu, nav, section {
30
+ display: block;
31
+ }
32
+
33
+ body {
34
+ line-height: 1;
35
+ }
36
+
37
+ ol, ul {
38
+ list-style: none;
39
+ }
40
+
41
+ blockquote, q {
42
+ quotes: none;
43
+ }
44
+
45
+ blockquote:before, blockquote:after,
46
+ q:before, q:after {
47
+ content: "";
48
+ content: none;
49
+ }
50
+
51
+ table {
52
+ border-collapse: collapse;
53
+ border-spacing: 0;
54
+ }
55
+
56
+ /*
57
+ QR COMPONENT
58
+ */
59
+ .img-fluid {
60
+ height: auto;
61
+ max-width: 50%;
62
+ }
63
+
64
+ img {
65
+ margin-left: auto;
66
+ margin-right: auto;
67
+ }
68
+
69
+ .buttonContainer {
70
+ display: inline-block;
71
+ text-align: right;
72
+ padding: 10px;
73
+ position: relative;
74
+ }
75
+
76
+ .gatacaButtonWrapper {
77
+ margin: 8px;
78
+ }
79
+ .gatacaButtonWrapper .gatacaButton {
80
+ display: flex;
81
+ min-width: 100px;
82
+ padding: 8px 8px;
83
+ background-color: white;
84
+ font-size: 12px;
85
+ font-family: "Work Sans", sans-serif;
86
+ letter-spacing: 1px;
87
+ font-weight: 2;
88
+ justify-content: space-between;
89
+ align-items: center;
90
+ border-radius: 6px;
91
+ border: 1px solid rgba(24, 27, 94, 0.5);
92
+ color: rgba(24, 27, 94, 0.8);
93
+ box-shadow: 0px 1px 3px rgba(48, 48, 48, 0.15);
94
+ cursor: pointer;
95
+ }
96
+ .gatacaButtonWrapper .gatacaButton > span {
97
+ margin-right: 10px;
98
+ }
99
+ .gatacaButtonWrapper .gatacaButton:hover {
100
+ box-shadow: 0px 2px 8px rgba(48, 48, 48, 0.1);
101
+ }
102
+ .gatacaButtonWrapper .buttonText {
103
+ text-align: right;
104
+ font-size: 8px;
105
+ color: rgba(24, 27, 94, 0.5);
106
+ font-family: "Helvetica Neue", sans-serif;
107
+ letter-spacing: 1px;
108
+ padding-right: 8px;
109
+ font-weight: 1;
110
+ }
111
+ .gatacaButtonWrapper .buttonImg {
112
+ height: 25px;
113
+ width: 25px;
114
+ margin: 0;
115
+ margin-right: 20px;
116
+ }