@lookiero/checkout 15.0.1 → 15.0.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.
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "15.0.1";
2
- export declare const RELEASE = "checkout@15.0.1";
1
+ export declare const VERSION = "15.0.2";
2
+ export declare const RELEASE = "checkout@15.0.2";
@@ -1,2 +1,2 @@
1
- export const VERSION = "15.0.1";
2
- export const RELEASE = "checkout@15.0.1";
1
+ export const VERSION = "15.0.2";
2
+ export const RELEASE = "checkout@15.0.2";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lookiero/checkout",
3
- "version": "15.0.1",
3
+ "version": "15.0.2",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "sideEffects": "false",
@@ -0,0 +1,128 @@
1
+ <!doctype html>
2
+ <html lang="%LANG_ISO_CODE%">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta httpEquiv="X-UA-Compatible" content="IE=edge" />
6
+ <!--
7
+ This viewport works for phones with notches.
8
+ It's optimized for gestures by disabling global zoom.
9
+ -->
10
+ <meta
11
+ name="viewport"
12
+ content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1.00001, viewport-fit=cover"
13
+ />
14
+ <title>%WEB_TITLE%</title>
15
+ <style>
16
+ /**
17
+ * Extend the react-native-web reset:
18
+ * https://github.com/necolas/react-native-web/blob/master/packages/react-native-web/src/exports/StyleSheet/initialRules.js
19
+ */
20
+ html,
21
+ body,
22
+ #root {
23
+ width: 100%;
24
+ /* To smooth any scrolling behavior */
25
+ -webkit-overflow-scrolling: touch;
26
+ margin: 0px;
27
+ padding: 0px;
28
+ /* Allows content to fill the viewport and go beyond the bottom */
29
+ min-height: 100%;
30
+ }
31
+ #root {
32
+ flex-shrink: 0;
33
+ flex-basis: auto;
34
+ flex-grow: 1;
35
+ display: flex;
36
+ flex: 1;
37
+ }
38
+
39
+ html {
40
+ scroll-behavior: smooth;
41
+ /* Prevent text size change on orientation change https://gist.github.com/tfausak/2222823#file-ios-8-web-app-html-L138 */
42
+ -webkit-text-size-adjust: 100%;
43
+ height: calc(100% + env(safe-area-inset-top));
44
+ }
45
+
46
+ body {
47
+ display: flex;
48
+ /* Allows you to scroll below the viewport; default value is visible */
49
+ overflow-y: auto;
50
+ overscroll-behavior-y: none;
51
+ text-rendering: optimizeLegibility;
52
+ -webkit-font-smoothing: antialiased;
53
+ -moz-osx-font-smoothing: grayscale;
54
+ -ms-overflow-style: scrollbar;
55
+ }
56
+ /* Enable for apps that support dark-theme */
57
+ /*@media (prefers-color-scheme: dark) {
58
+ body {
59
+ background-color: black;
60
+ }
61
+ }*/
62
+ </style>
63
+ <!-- RNW recommended styles (https://necolas.github.io/react-native-web/docs/setup/#root-element) -->
64
+ <style>
65
+ html,
66
+ body {
67
+ height: 100%;
68
+ }
69
+ #root {
70
+ display: flex;
71
+ height: 100%;
72
+ }
73
+ </style>
74
+ <!-- RNW recommended styles -->
75
+
76
+ <!-- Google Tag Manager -->
77
+ <script>
78
+ (function (w, d, s, l, i) {
79
+ w[l] = w[l] || [];
80
+ w[l].push({ "gtm.start": new Date().getTime(), event: "gtm.js" });
81
+ var f = d.getElementsByTagName(s)[0],
82
+ j = d.createElement(s),
83
+ dl = l != "dataLayer" ? "&l=" + l : "";
84
+ j.async = true;
85
+ j.src = "https://www.googletagmanager.com/gtm.js?id=" + i + dl;
86
+ f.parentNode.insertBefore(j, f);
87
+ })(window, document, "script", "dataLayer", "GTM-TCZ662G");
88
+ </script>
89
+ <!-- End Google Tag Manager -->
90
+ </head>
91
+
92
+ <body>
93
+ <!--
94
+ A generic no script element with a reload button and a message.
95
+ Feel free to customize this however you'd like.
96
+ -->
97
+ <noscript>
98
+ <form
99
+ action=""
100
+ style="background-color: #fff; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 9999"
101
+ >
102
+ <div style="font-size: 18px; font-family: Helvetica, sans-serif; line-height: 24px; margin: 10%; width: 80%">
103
+ <p>Oh no! It looks like JavaScript is not enabled in your browser.</p>
104
+ <p style="margin: 20px 0">
105
+ <button
106
+ type="submit"
107
+ style="
108
+ background-color: #4630eb;
109
+ border-radius: 100px;
110
+ border: none;
111
+ box-shadow: none;
112
+ color: #fff;
113
+ cursor: pointer;
114
+ font-weight: bold;
115
+ line-height: 20px;
116
+ padding: 6px 16px;
117
+ "
118
+ >
119
+ Reload
120
+ </button>
121
+ </p>
122
+ </div>
123
+ </form>
124
+ </noscript>
125
+ <!-- The root element for your Expo app. -->
126
+ <div id="root"></div>
127
+ </body>
128
+ </html>
File without changes