wickes-css2 2.104.0-develop.2 → 2.104.0-develop.4
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/Readme.md
CHANGED
|
@@ -260,7 +260,7 @@ for pages - page_page-name;
|
|
|
260
260
|
for components - c_component-name.
|
|
261
261
|
```
|
|
262
262
|
|
|
263
|
-
When you finish your task, you must create merge request, assign it to Andrii and add all front-end team via comment in description.
|
|
263
|
+
When you finish your task, you must create merge request, assign it to Andrii and add all front-end team via comment in description.
|
|
264
264
|
**Note:** `[WIP]` or `WIP` prefix could be added to MR title. There is short explanation about [GitLab WIP status](https://about.gitlab.com/2016/01/08/feature-highlight-wip/).
|
|
265
265
|
|
|
266
266
|
## Linting
|
package/package.json
CHANGED
|
@@ -15,6 +15,44 @@
|
|
|
15
15
|
}}
|
|
16
16
|
</div>
|
|
17
17
|
</div>
|
|
18
|
+
{{#if apple-pay}}
|
|
19
|
+
<div class="form-row">
|
|
20
|
+
<div class="form-row__field form-row__field-apple">
|
|
21
|
+
<label
|
|
22
|
+
class="rbn rbn_align apple-label__rbn"
|
|
23
|
+
for="checkout-payment-details-apple">
|
|
24
|
+
<input
|
|
25
|
+
type="radio"
|
|
26
|
+
id="checkout-payment-details-apple"
|
|
27
|
+
name="payment-method"
|
|
28
|
+
value="apple">
|
|
29
|
+
<ins></ins>
|
|
30
|
+
<div class="apple-logo">
|
|
31
|
+
<img src="img/apple-pay.svg" alt="apple pay">
|
|
32
|
+
</div>
|
|
33
|
+
</label>
|
|
34
|
+
</div>
|
|
35
|
+
</div>
|
|
36
|
+
{{/if}}
|
|
37
|
+
{{#if google-pay}}
|
|
38
|
+
<div class="form-row">
|
|
39
|
+
<div class="form-row__field form-row__field-google">
|
|
40
|
+
<label
|
|
41
|
+
class="rbn rbn_align google-label__rbn"
|
|
42
|
+
for="checkout-payment-details-google">
|
|
43
|
+
<input
|
|
44
|
+
type="radio"
|
|
45
|
+
id="checkout-payment-details-google"
|
|
46
|
+
name="payment-method"
|
|
47
|
+
value="google">
|
|
48
|
+
<ins></ins>
|
|
49
|
+
<div class="google-logo">
|
|
50
|
+
<img src="img/google-pay-mark.png" alt="google pay">
|
|
51
|
+
</div>
|
|
52
|
+
</label>
|
|
53
|
+
</div>
|
|
54
|
+
</div>
|
|
55
|
+
{{/if}}
|
|
18
56
|
{{#if billie}}
|
|
19
57
|
<div class="form-row">
|
|
20
58
|
<div class="form-row__field form-row__field-billie">
|
|
@@ -82,44 +120,6 @@
|
|
|
82
120
|
</div>
|
|
83
121
|
</div>
|
|
84
122
|
{{/if}}
|
|
85
|
-
{{#if apple-pay}}
|
|
86
|
-
<div class="form-row">
|
|
87
|
-
<div class="form-row__field form-row__field-apple">
|
|
88
|
-
<label
|
|
89
|
-
class="rbn rbn_align apple-label__rbn"
|
|
90
|
-
for="checkout-payment-details-apple">
|
|
91
|
-
<input
|
|
92
|
-
type="radio"
|
|
93
|
-
id="checkout-payment-details-apple"
|
|
94
|
-
name="payment-method"
|
|
95
|
-
value="apple">
|
|
96
|
-
<ins></ins>
|
|
97
|
-
<div class="apple-logo">
|
|
98
|
-
<img src="img/apple-pay.svg" alt="apple pay">
|
|
99
|
-
</div>
|
|
100
|
-
</label>
|
|
101
|
-
</div>
|
|
102
|
-
</div>
|
|
103
|
-
{{/if}}
|
|
104
|
-
{{#if google-pay}}
|
|
105
|
-
<div class="form-row">
|
|
106
|
-
<div class="form-row__field form-row__field-google">
|
|
107
|
-
<label
|
|
108
|
-
class="rbn rbn_align google-label__rbn"
|
|
109
|
-
for="checkout-payment-details-google">
|
|
110
|
-
<input
|
|
111
|
-
type="radio"
|
|
112
|
-
id="checkout-payment-details-google"
|
|
113
|
-
name="payment-method"
|
|
114
|
-
value="google">
|
|
115
|
-
<ins></ins>
|
|
116
|
-
<div class="google-logo">
|
|
117
|
-
<img src="img/google-pay-mark.png" alt="google pay">
|
|
118
|
-
</div>
|
|
119
|
-
</label>
|
|
120
|
-
</div>
|
|
121
|
-
</div>
|
|
122
|
-
{{/if}}
|
|
123
123
|
<div class="form-row">
|
|
124
124
|
<div class="form-row__field">
|
|
125
125
|
<label class="rbn rbn_align" for="checkout-payment-details-paypal">
|