@meetelise/chat 1.22.67 → 1.22.68
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/package.json
CHANGED
package/public/dist/index.js
CHANGED
|
@@ -2337,6 +2337,7 @@ xmlns="http://www.w3.org/2000/svg"
|
|
|
2337
2337
|
type="text"
|
|
2338
2338
|
class=${fe({"webchat-input":!0,"email-us__name-input":!0,"webchat-font__desktop":!pn(),"webchat-font__mobile":pn()})}
|
|
2339
2339
|
placeholder="First name"
|
|
2340
|
+
autocomplete="given-name"
|
|
2340
2341
|
value="${this.firstName}"
|
|
2341
2342
|
@keyup=${this.onChangeFirstName}
|
|
2342
2343
|
/>
|
|
@@ -2345,6 +2346,7 @@ xmlns="http://www.w3.org/2000/svg"
|
|
|
2345
2346
|
type="text"
|
|
2346
2347
|
class=${fe({"webchat-input":!0,"email-us__name-input":!0,"webchat-font__desktop":!pn(),"webchat-font__mobile":pn()})}
|
|
2347
2348
|
placeholder="Last name"
|
|
2349
|
+
autocomplete="family-name"
|
|
2348
2350
|
value="${this.lastName}"
|
|
2349
2351
|
@keyup=${this.onChangeLastName}
|
|
2350
2352
|
/>
|
|
@@ -2356,6 +2358,7 @@ xmlns="http://www.w3.org/2000/svg"
|
|
|
2356
2358
|
<input
|
|
2357
2359
|
type="email"
|
|
2358
2360
|
placeholder="Email"
|
|
2361
|
+
autocomplete="email"
|
|
2359
2362
|
class=${fe({"webchat-input":!0,"email-us__contact-input":!0,"webchat-font__desktop":!pn(),"webchat-font__mobile":pn()})}
|
|
2360
2363
|
.value=${this.email}
|
|
2361
2364
|
@keyup=${this.onChangeEmail}
|
|
@@ -2370,6 +2373,7 @@ xmlns="http://www.w3.org/2000/svg"
|
|
|
2370
2373
|
${Oe(this.phoneNumberInputRef)}
|
|
2371
2374
|
type="text"
|
|
2372
2375
|
placeholder="Phone"
|
|
2376
|
+
autocomplete="tel-national"
|
|
2373
2377
|
inputmode="tel"
|
|
2374
2378
|
class=${fe({"webchat-input":!0,"email-us__contact-input":!0,"webchat-font__desktop":!pn(),"webchat-font__mobile":pn()})}
|
|
2375
2379
|
.value=${this.phoneNumber}
|
|
@@ -359,6 +359,7 @@ export class EmailUsWindow extends LitElement {
|
|
|
359
359
|
["webchat-font__mobile"]: isMobile(),
|
|
360
360
|
})}
|
|
361
361
|
placeholder="First name"
|
|
362
|
+
autocomplete="given-name"
|
|
362
363
|
value="${this.firstName}"
|
|
363
364
|
@keyup=${this.onChangeFirstName}
|
|
364
365
|
/>
|
|
@@ -372,6 +373,7 @@ export class EmailUsWindow extends LitElement {
|
|
|
372
373
|
["webchat-font__mobile"]: isMobile(),
|
|
373
374
|
})}
|
|
374
375
|
placeholder="Last name"
|
|
376
|
+
autocomplete="family-name"
|
|
375
377
|
value="${this.lastName}"
|
|
376
378
|
@keyup=${this.onChangeLastName}
|
|
377
379
|
/>
|
|
@@ -385,6 +387,7 @@ export class EmailUsWindow extends LitElement {
|
|
|
385
387
|
<input
|
|
386
388
|
type="email"
|
|
387
389
|
placeholder="Email"
|
|
390
|
+
autocomplete="email"
|
|
388
391
|
class=${classMap({
|
|
389
392
|
["webchat-input"]: true,
|
|
390
393
|
["email-us__contact-input"]: true,
|
|
@@ -406,6 +409,7 @@ export class EmailUsWindow extends LitElement {
|
|
|
406
409
|
${ref(this.phoneNumberInputRef)}
|
|
407
410
|
type="text"
|
|
408
411
|
placeholder="Phone"
|
|
412
|
+
autocomplete="tel-national"
|
|
409
413
|
inputmode="tel"
|
|
410
414
|
class=${classMap({
|
|
411
415
|
["webchat-input"]: true,
|