@lancom/shared 0.0.130 → 0.0.131
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.
|
@@ -160,23 +160,23 @@
|
|
|
160
160
|
name="Address line 2"
|
|
161
161
|
class="form-row">
|
|
162
162
|
<label
|
|
163
|
-
for="
|
|
163
|
+
for="addressLine2"
|
|
164
164
|
class="form-label">
|
|
165
165
|
Address line 2
|
|
166
166
|
</label>
|
|
167
167
|
<input
|
|
168
|
-
id="
|
|
169
|
-
ref="
|
|
170
|
-
v-model="address.
|
|
171
|
-
name="
|
|
168
|
+
id="addressLine2"
|
|
169
|
+
ref="addressLine2"
|
|
170
|
+
v-model="address.addressLine2"
|
|
171
|
+
name="addressLine2"
|
|
172
172
|
type="text"
|
|
173
173
|
class="form-field labelless"
|
|
174
174
|
placeholder="Address line 2"
|
|
175
175
|
:class="{
|
|
176
176
|
'is-danger': errors.length,
|
|
177
|
-
filled: address.
|
|
177
|
+
filled: address.addressLine2
|
|
178
178
|
}"
|
|
179
|
-
@keyup.enter="$refs.
|
|
179
|
+
@keyup.enter="$refs.addressLine2.focus()" />
|
|
180
180
|
<span
|
|
181
181
|
v-if="errors.length"
|
|
182
182
|
class="form-help is-danger">
|
|
@@ -192,19 +192,19 @@
|
|
|
192
192
|
name="Address line 2"
|
|
193
193
|
class="form-row">
|
|
194
194
|
<input
|
|
195
|
-
id="
|
|
196
|
-
ref="
|
|
197
|
-
v-model="form.
|
|
198
|
-
name="
|
|
195
|
+
id="addressLine2"
|
|
196
|
+
ref="addressLine2"
|
|
197
|
+
v-model="form.addressLine2"
|
|
198
|
+
name="addressLine2"
|
|
199
199
|
type="text"
|
|
200
200
|
class="form-field"
|
|
201
201
|
:class="{
|
|
202
202
|
'is-danger': errors.length,
|
|
203
|
-
filled: form.
|
|
203
|
+
filled: form.addressLine2
|
|
204
204
|
}"
|
|
205
|
-
@keyup.enter="$refs.
|
|
205
|
+
@keyup.enter="$refs.addressLine2.focus()" />
|
|
206
206
|
<label
|
|
207
|
-
for="
|
|
207
|
+
for="addressLine2"
|
|
208
208
|
class="form-label label-inner">
|
|
209
209
|
Address line 2
|
|
210
210
|
</label>
|
|
@@ -306,7 +306,7 @@ export default {
|
|
|
306
306
|
city: this.orderData.city,
|
|
307
307
|
phone: this.orderData.phone,
|
|
308
308
|
addressLine1: this.orderData.addressLine1,
|
|
309
|
-
|
|
309
|
+
addressLine2: this.orderData.addressLine2,
|
|
310
310
|
email: this.orderData.email,
|
|
311
311
|
fullName: this.orderData.fullName,
|
|
312
312
|
company: this.orderData.company,
|