@meetelise/chat 1.20.49 → 1.20.50

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,8 +1,7 @@
1
- import classnames from "classnames";
2
1
  import { html, LitElement, TemplateResult } from "lit";
3
2
  import { customElement, property, state } from "lit/decorators.js";
4
3
  import { createRef, ref, Ref } from "lit/directives/ref.js";
5
- import { glowBarMp4, glowBarWebm } from "../assetUrls";
4
+ import { glowBackgroundMp4 } from "../assetUrls";
6
5
  import { launcherStyles } from "./launcherStyles";
7
6
  import { EmailUsWindow, installEmailUsWindow } from "./actions/email-us-window";
8
7
  import { installTextUsWindow, TextUsWindow } from "./actions/text-us-window";
@@ -12,15 +11,21 @@ import { installCallUsWindow } from "./actions/call-us-window";
12
11
  import { getRegisteredPhoneNumbers } from "../getRegisteredPhoneNumbers";
13
12
  import { TourScheduler } from "./Scheduler/tour-scheduler";
14
13
  import { LabeledOption, UnitV2 } from "../fetchBuildingInfo";
14
+ import { abTestTypes } from "../fetchBuildingABTestType";
15
15
  import {
16
16
  FilledChatIcon,
17
17
  FilledEmailIcon,
18
18
  FilledPhoneIcon,
19
19
  FilledTourIcon,
20
- OutlinedChatIcon,
21
- OutlinedEmailIcon,
22
- OutlinedPhoneIcon,
23
- OutlinedTourIcon,
20
+ ChevronIcon,
21
+ ChevronIconBlack,
22
+ HeyThereEmoji,
23
+ EmailBlackStrokeIcon,
24
+ PhoneBlackStrokeIcon,
25
+ ChatWhiteStrokeIcon,
26
+ EmailWhiteStrokeIcon,
27
+ PhoneWhiteStrokeIcon,
28
+ ChatBlueBttnIcon,
24
29
  } from "../svgIcons";
25
30
 
26
31
  @customElement("meetelise-launcher")
@@ -77,7 +82,7 @@ export class Launcher extends LitElement {
77
82
  @property({ type: Boolean })
78
83
  hasSSTEnabled = false;
79
84
  @property({ type: Boolean })
80
- hasTextUsEnabled = false;
85
+ hasTextUsEnabled = true;
81
86
  @property({ attribute: false })
82
87
  layoutOptions: string[] = [];
83
88
  @property({ attribute: false })
@@ -299,256 +304,302 @@ export class Launcher extends LitElement {
299
304
  };
300
305
 
301
306
  renderActionPills = (): TemplateResult => {
302
- if (this.buildingABTestType === "close") {
303
- return html` <div class="vertical-pill-list">
304
- ${this.hasEmailEnabled && !this.isCallToActionWindowOpen()
305
- ? this.renderPillVertical(
306
- html`
307
- <div class="vertical-pill-icon">${FilledEmailIcon}</div>
308
- <div class="vertical-pill-title">
309
- <span class="vertical-pill-bold">Email</span> an agent
310
- </div>
311
- `,
312
- this.onClickEmailOption
313
- )
314
- : ""}
315
- ${this.hasChatEnabled && !this.isCallToActionWindowOpen()
316
- ? this.renderPillVertical(
317
- html`
318
- <div class="vertical-pill-icon">${FilledChatIcon}</div>
319
- <div class="vertical-pill-title">
320
- <span class="vertical-pill-bold">Chat</span> with us
307
+ if (this.isMobile) {
308
+ return html`<div class="typeMobile-list">
309
+ <ul>
310
+ <li @click=${this.onChatTapped} class="typeMobile-bttn">
311
+ <div class="typeMobile-inner">
312
+ <div class="typeMobile-icon">${ChatWhiteStrokeIcon}</div>
313
+ </div>
314
+ </li>
315
+ <li @click=${this.onClickEmailOption} class="typeMobile-bttn">
316
+ <div class="typeMobile-inner">
317
+ <div class="typeMobile-icon">${EmailWhiteStrokeIcon}</div>
318
+ </div>
319
+ </li>
320
+ <li @click=${this.onClickPhoneOption} class="typeMobile-bttn">
321
+ <div class="typeMobile-inner">
322
+ <div class="typeMobile-icon">${PhoneWhiteStrokeIcon}</div>
323
+ </div>
324
+ </li>
325
+ </ul>
326
+ </div>`;
327
+ }
328
+
329
+ if (this.buildingABTestType === abTestTypes.ConceptBlueBlack) {
330
+ return html`<div class="type-gradient__list">
331
+ ${this.hasChatEnabled
332
+ ? html`
333
+ <div
334
+ class="type-gradient__top-container"
335
+ @click=${this.onChatTapped}
336
+ >
337
+ <video class="glowBackground" autoplay loop muted playsinline>
338
+ <source src="${glowBackgroundMp4}" type="video/mp4" />
339
+ </video>
340
+ <div class="type-gradient__scroll-info">
341
+ ${ChatWhiteStrokeIcon}
342
+ <div class="type-gradient__chat-container">
343
+ <div class="type-gradient__chat-header">
344
+ <span class="title-bold">Chat</span> with us
345
+ </div>
346
+ ${ChevronIcon}
347
+ </div>
348
+ <ul class="type-gradient__description">
349
+ <li>our apartments</li>
350
+ <li>unit availability</li>
351
+ <li>tour bookings</li>
352
+ <li>our amenities</li>
353
+ <li>neighborhood</li>
354
+ </ul>
321
355
  </div>
322
- `,
323
- this.onChatTapped
324
- )
356
+ </div>
357
+ `
325
358
  : ""}
326
- ${this.hasSSTEnabled && !this.isCallToActionWindowOpen()
327
- ? this.renderPillVertical(
328
- html`
329
- <div class="vertical-pill-icon">${FilledTourIcon}</div>
330
- <div class="vertical-pill-title">
331
- <span class="vertical-pill-bold">Book</span> a tour
332
- </div>
333
- `,
334
- this.onClickSSTOption
335
- )
359
+ ${this.hasEmailEnabled
360
+ ? html` <div class="type-gradient__email type-gradient__bottom-tab" @click=${this.onClickEmailOption}>
361
+ <div class="type-gradient__icon">${EmailWhiteStrokeIcon}</div>
362
+ <div class="type-gradient__inner-txt">
363
+ <span class="title-bold">Email</span> an agent
364
+ </div>
365
+ <div class="type-gradient__icon">${ChevronIcon}</div>
366
+ </div>
367
+ </div>`
336
368
  : ""}
337
- ${this.phoneNumber &&
338
- this.hasCallUsEnabled &&
339
- !this.isCallToActionWindowOpen()
340
- ? this.renderPillVertical(
341
- html`
342
- <div class="vertical-pill-icon">${FilledPhoneIcon}</div>
343
- <div class="vertical-pill-title">
344
- <span class="vertical-pill-bold">Call</span>
345
- ${this.hasTextUsEnabled
346
- ? html`or <span class="vertical-pill-bold">text</span> us`
347
- : "us"}
369
+ ${this.phoneNumber && this.hasCallUsEnabled
370
+ ? html`
371
+ <div class="type-gradient__contact type-gradient__bottom-tab" @click=${
372
+ this.onClickPhoneOption
373
+ }>
374
+ <div class="type-gradient__icon">${PhoneWhiteStrokeIcon}</div>
375
+ <div class="type-gradient__inner-txt">
376
+ <span class="title-bold">Call</span>
377
+ ${
378
+ this.hasTextUsEnabled
379
+ ? html`or <span class="title-bold">text</span> us`
380
+ : "us"
381
+ }
348
382
  </div>
349
- `,
350
- this.onClickPhoneOption
351
- )
383
+ <div class="type-gradient__icon">${ChevronIcon}</div>
384
+ </div>
385
+ </div>
386
+ `
352
387
  : ""}
353
388
  </div>`;
354
389
  }
355
- return html`
356
- ${this.hasChatEnabled && !this.isCallToActionWindowOpen()
357
- ? this.renderMiniOption(OutlinedChatIcon, this.onChatTapped)
358
- : ""}
359
- ${this.hasEmailEnabled && !this.isCallToActionWindowOpen()
360
- ? this.renderMiniOption(
361
- OutlinedEmailIcon,
362
- this.onClickEmailOption,
363
- true
390
+
391
+ if (this.buildingABTestType === abTestTypes.ConceptBlueWhite) {
392
+ return html`
393
+ <div class="type-hey__list">
394
+ <div class="type-hey__top-section">
395
+ <div class="type-hey__ai-topic">
396
+ <p>AI Assistant</p>
397
+ <div class="type-hey__ai-topic-notch"></div>
398
+ </div>
399
+ <div class="type-hey__greeting">
400
+ <h1>Hey there!</h1>
401
+ <div>${HeyThereEmoji}</div>
402
+ </div>
403
+ ${
404
+ this.hasChatEnabled
405
+ ? html`
406
+ <div class="type-hey__ask-prompt" @click=${this.onChatTapped}>
407
+ <div class="type-hey__ask-prompt-inner">
408
+ <div class="type-hey__ask-start">
409
+ <h2>Ask me about</h2>
410
+ <div class="scroll-container">
411
+ <ul>
412
+ <li>booking a tour</li>
413
+ <li>our pet policy</li>
414
+ <li>our amenities</li>
415
+ <li>our availability</li>
416
+ </ul>
417
+ </div>
418
+ </div>
419
+ <div>${ChevronIcon}</div>
420
+ </div>
421
+ </div>
422
+ </div>
423
+ `
424
+ : ""
425
+ }
426
+ </div>
427
+
428
+ <div class="type-hey__bottom-section">
429
+ ${
430
+ this.hasEmailEnabled
431
+ ? html` <div class="type-hey__email" @click=${this.onClickEmailOption}>
432
+ <div class="type-hey__icon">${EmailBlackStrokeIcon}</div>
433
+ <div>
434
+ <span class="title-bold">Email</span> an agent
435
+ </div>
436
+ <div class="type-gradient__icon">${ChevronIconBlack}</div>
437
+ </div>
438
+ </div>`
439
+ : ""
440
+ }
441
+ ${
442
+ this.phoneNumber && this.hasCallUsEnabled
443
+ ? html`
444
+ <div class="type-hey__contact" @click=${this.onClickPhoneOption}>
445
+ <div class="type-hey__icon">${PhoneBlackStrokeIcon}</div>
446
+ <div>
447
+ <span class="title-bold">Call</span>
448
+ ${
449
+ this.hasTextUsEnabled
450
+ ? html`or <span class="title-bold">text</span> us`
451
+ : "us"
452
+ }
453
+ </div>
454
+ <div class="type-gradient__icon">${ChevronIconBlack}</div>
455
+ </div>
456
+ </div>
457
+ `
458
+ : ""
459
+ }
460
+ <div class="type-hey__bottom-info">
461
+ Online <span class="heavy-blue">24 hours</span> a day, <span class="heavy-blue">7</span> days a week</div>
462
+ </div>
463
+ </div>
464
+ <div class="type-hey__chat-container" @click=${
465
+ this.onChatTapped
466
+ }>${ChatBlueBttnIcon}</div>
467
+ </div>
468
+ `;
469
+ }
470
+
471
+ return html` <div class="vertical-pill-list">
472
+ ${this.hasEmailEnabled
473
+ ? this.renderPillVertical(
474
+ html`
475
+ <div class="vertical-pill-icon">${FilledEmailIcon}</div>
476
+ <div class="vertical-pill-title">
477
+ <span class="vertical-pill-bold">Email</span> an agent
478
+ </div>
479
+ `,
480
+ this.onClickEmailOption
364
481
  )
365
482
  : ""}
366
- ${this.hasSSTEnabled && !this.isCallToActionWindowOpen()
367
- ? this.renderMiniOption(OutlinedTourIcon, this.onClickSSTOption, true)
483
+ ${this.hasChatEnabled
484
+ ? this.renderPillVertical(
485
+ html`
486
+ <div class="vertical-pill-icon">${FilledChatIcon}</div>
487
+ <div class="vertical-pill-title">
488
+ <span class="vertical-pill-bold">Chat</span> with us
489
+ </div>
490
+ `,
491
+ this.onChatTapped
492
+ )
368
493
  : ""}
369
- ${this.phoneNumber &&
370
- this.hasCallUsEnabled &&
371
- !this.isCallToActionWindowOpen()
372
- ? this.renderMiniOption(
373
- OutlinedPhoneIcon,
374
- this.onClickPhoneOption,
375
- true
494
+ ${this.hasSSTEnabled
495
+ ? this.renderPillVertical(
496
+ html`
497
+ <div class="vertical-pill-icon">${FilledTourIcon}</div>
498
+ <div class="vertical-pill-title">
499
+ <span class="vertical-pill-bold">Book</span> a tour
500
+ </div>
501
+ `,
502
+ this.onClickSSTOption
376
503
  )
377
504
  : ""}
378
- `;
379
- };
380
-
381
- renderMiniLauncher = (): TemplateResult => {
382
- return html`
383
- <div
384
- class="launcher__mini-launcher-wrapper"
385
- style=${styleMap(this.launcherStyles)}
386
- >
387
- ${this.isEmailWindowOpen
388
- ? html`<div class="launcher__window-wrapper">
389
- <email-us-window
390
- chatId="${this.chatId}"
391
- .leadSources="${this.leadSources}"
392
- currentLeadSource="${this.currentLeadSource}"
393
- orgSlug="${this.orgSlug}"
394
- buildingSlug="${this.buildingSlug}"
395
- ${ref(this.emailUsWindowRef)}
396
- .buildingId=${this.buildingId}
397
- >
398
- </email-us-window>
399
- </div>`
400
- : ""}
401
- ${this.isTextUsWindowOpen
402
- ? html`<div class="launcher__window-wrapper">
403
- <text-us-window
404
- orgSlug="${this.orgSlug}"
405
- buildingSlug="${this.buildingSlug}"
406
- ${ref(this.textUsWindowRef)}
407
- .buildingId=${this.buildingId}
408
- currentLeadSource="${this.currentLeadSource}"
409
- ></text-us-window>
410
- </div>`
411
- : ""}
412
- ${this.isSSTWindowOpen
413
- ? html`<div class="launcher__window-wrapper">
414
- <tour-scheduler
415
- chatId="${this.chatId}"
416
- orgSlug="${this.orgSlug}"
417
- buildingSlug="${this.buildingSlug}"
418
- sgtUrl="${this.sgtUrl}"
419
- escortedToursLink="${this.escortedToursLink}"
420
- virtualToursLink="${this.virtualToursLink}"
421
- currentLeadSource="${this.currentLeadSource}"
422
- .leadSources="${this.leadSources}"
423
- .layoutOptions=${this.layoutOptions}
424
- .unitOptions=${this.unitOptions}
425
- .tourTypeOptions=${this.tourTypeOptions}
426
- buildingId=${this.buildingId}
427
- ${ref(this.tourSchedulerRef)}
428
- ></tour-scheduler>
429
- </div>`
430
- : ""}
431
- ${this.isCallUsWindowOpen
432
- ? html`
433
- <div class="launcher__window-wrapper">
434
- <call-us-window
435
- .onCloseClicked=${this.onClosePhoneWindow}
436
- phoneNumber="${this.phoneNumber}"
437
- .buildingId=${this.buildingId}
438
- chatCallUsHeader="${this.chatCallUsHeader}"
439
- hasTextUsEnabled=${this.hasTextUsEnabled ? true : ""}
440
- currentLeadSource="${this.currentLeadSource}"
441
- ></call-us-window>
505
+ ${this.phoneNumber && this.hasCallUsEnabled
506
+ ? this.renderPillVertical(
507
+ html`
508
+ <div class="vertical-pill-icon">${FilledPhoneIcon}</div>
509
+ <div class="vertical-pill-title">
510
+ <span class="vertical-pill-bold">Call</span>
511
+ ${this.hasTextUsEnabled
512
+ ? html`or <span class="vertical-pill-bold">text</span> us`
513
+ : "us"}
442
514
  </div>
443
- `
444
- : ""}
445
- ${this.renderActionPills()}
446
- </div>
447
- `;
515
+ `,
516
+ this.onClickPhoneOption
517
+ )
518
+ : ""}
519
+ </div>`;
448
520
  };
449
521
 
450
522
  render(): TemplateResult {
451
523
  installEmailUsWindow();
452
524
  installTextUsWindow();
453
525
  installCallUsWindow();
454
- if (this.isMini || this.buildingABTestType === "close") {
455
- return this.renderMiniLauncher();
456
- }
457
526
 
458
527
  return html`
459
- <div>
460
- ${this.isEmailWindowOpen
461
- ? html`<div class="launcher__window-wrapper">
462
- <email-us-window
463
- ${ref(this.emailUsWindowRef)}
464
- .buildingId=${this.buildingId}
465
- >
466
- </email-us-window>
467
- </div>`
468
- : ""}
469
- ${this.isTextUsWindowOpen
470
- ? html`<div class="launcher__window-wrapper">
471
- <text-us-window
472
- ${ref(this.textUsWindowRef)}
473
- .buildingId=${this.buildingId}
474
- ></text-us-window>
475
- </div>`
476
- : ""}
477
- ${this.isSSTWindowOpen
478
- ? html`<div class="launcher__window-wrapper">
479
- <tour-scheduler
480
- .layoutOptions=${this.layoutOptions}
481
- .tourTypeOptions=${this.tourTypeOptions}
482
- buildingId=${this.buildingId}
483
- ${ref(this.tourSchedulerRef)}
484
- ></tour-scheduler>
485
- </div>`
486
- : ""}
487
- ${this.isCallUsWindowOpen && this.phoneNumber
488
- ? html`
489
- <div class="launcher__window-wrapper">
490
- <call-us-window
491
- .onCloseClicked=${this.onClosePhoneWindow}
492
- phoneNumber="${this.phoneNumber}"
528
+ <div"
529
+ class=${
530
+ this.isMobile
531
+ ? "launcher__mobile-launcher-wrapper"
532
+ : "launcher__mini-launcher-wrapper"
533
+ }
534
+ style=${styleMap(this.launcherStyles)}
535
+ >
536
+ ${
537
+ this.isEmailWindowOpen
538
+ ? html`<div class="launcher__window-wrapper">
539
+ <email-us-window
540
+ chatId="${this.chatId}"
541
+ .leadSources="${this.leadSources}"
542
+ currentLeadSource="${this.currentLeadSource}"
543
+ orgSlug="${this.orgSlug}"
544
+ buildingSlug="${this.buildingSlug}"
545
+ ${ref(this.emailUsWindowRef)}
493
546
  .buildingId=${this.buildingId}
494
- hasTextUsEnabled=${this.hasTextUsEnabled ? true : ""}
495
- ></call-us-window>
496
- </div>
497
- `
498
- : ""}
499
- ${!this.isCallToActionWindowOpen()
500
- ? html`
501
- <div
502
- @click=${this.onChatTapped}
503
- class="${classnames(
504
- "launcher",
505
- this.isMobile ? "launcher__mobile" : "launcher__desktop",
506
- {
507
- firstMount: this.isFirstMount,
508
- }
509
- )}"
510
- style="background-color: ${this.backgroundColor}; color: ${this
511
- .textColor};"
512
- >
513
- <div
514
- style=${styleMap({
515
- position: "absolute",
516
- })}
517
- ></div>
518
- <video class="glowBar" autoplay loop muted playsinline>
519
- <source src="${glowBarWebm}" type="video/webm" />
520
- <source src="${glowBarMp4}" type="video/mp4" />
521
- </video>
522
- <div class="content">
523
- <div class="launcher__primary-action">
524
- <div class="launcher__primary-action-text">
525
- Ask a question
526
- <svg
527
- width="21"
528
- height="20"
529
- viewBox="0 0 21 20"
530
- fill="none"
531
- xmlns="http://www.w3.org/2000/svg"
532
- >
533
- <path
534
- d="M15.0282 7H5.02819C4.76297 7 4.50862 7.10536 4.32108 7.29289C4.13354 7.48043 4.02819 7.73478 4.02819 8C4.02819 8.26522 4.13354 8.51957 4.32108 8.70711C4.50862 8.89464 4.76297 9 5.02819 9H15.0282C15.2934 9 15.5478 8.89464 15.7353 8.70711C15.9228 8.51957 16.0282 8.26522 16.0282 8C16.0282 7.73478 15.9228 7.48043 15.7353 7.29289C15.5478 7.10536 15.2934 7 15.0282 7ZM11.0282 11H5.02819C4.76297 11 4.50862 11.1054 4.32108 11.2929C4.13354 11.4804 4.02819 11.7348 4.02819 12C4.02819 12.2652 4.13354 12.5196 4.32108 12.7071C4.50862 12.8946 4.76297 13 5.02819 13H11.0282C11.2934 13 11.5478 12.8946 11.7353 12.7071C11.9228 12.5196 12.0282 12.2652 12.0282 12C12.0282 11.7348 11.9228 11.4804 11.7353 11.2929C11.5478 11.1054 11.2934 11 11.0282 11ZM10.0282 0C8.71497 0 7.41461 0.258658 6.20135 0.761205C4.9881 1.26375 3.8857 2.00035 2.95712 2.92893C1.08175 4.8043 0.0281864 7.34784 0.0281864 10C0.0194442 12.3091 0.818979 14.5485 2.28819 16.33L0.288186 18.33C0.149429 18.4706 0.0554325 18.6492 0.0180584 18.8432C-0.0193158 19.0372 0.0016069 19.2379 0.0781863 19.42C0.161244 19.5999 0.29589 19.7511 0.465033 19.8544C0.634176 19.9577 0.830187 20.0083 1.02819 20H10.0282C12.6804 20 15.2239 18.9464 17.0993 17.0711C18.9746 15.1957 20.0282 12.6522 20.0282 10C20.0282 7.34784 18.9746 4.8043 17.0993 2.92893C15.2239 1.05357 12.6804 0 10.0282 0ZM10.0282 18H3.43819L4.36819 17.07C4.55444 16.8826 4.65898 16.6292 4.65898 16.365C4.65898 16.1008 4.55444 15.8474 4.36819 15.66C3.05877 14.352 2.24336 12.6305 2.06088 10.7888C1.87839 8.94705 2.34013 7.09901 3.36741 5.55952C4.3947 4.02004 5.92398 2.88436 7.6947 2.34597C9.46543 1.80759 11.368 1.8998 13.0784 2.60691C14.7888 3.31402 16.201 4.59227 17.0746 6.22389C17.9482 7.85551 18.2291 9.73954 17.8693 11.555C17.5096 13.3705 16.5315 15.005 15.1017 16.1802C13.672 17.3554 11.8789 17.9985 10.0282 18Z"
535
- fill="#1E1E1E"
536
- />
537
- </svg>
538
- </div>
539
- <div class="launcher__ask-underline"></div>
540
- </div>
541
- ${this.getNumCallToActions() === 0
542
- ? html`
543
- <div class="launcher__filler-text">
544
- I can also help you schedule a tour
545
- </div>
546
- `
547
- : this.renderCallToActions()}
547
+ >
548
+ </email-us-window>
549
+ </div>`
550
+ : ""
551
+ }
552
+ ${
553
+ this.isTextUsWindowOpen
554
+ ? html`<div class="launcher__window-wrapper">
555
+ <text-us-window
556
+ orgSlug="${this.orgSlug}"
557
+ buildingSlug="${this.buildingSlug}"
558
+ ${ref(this.textUsWindowRef)}
559
+ .buildingId=${this.buildingId}
560
+ currentLeadSource="${this.currentLeadSource}"
561
+ ></text-us-window>
562
+ </div>`
563
+ : ""
564
+ }
565
+ ${
566
+ this.isSSTWindowOpen
567
+ ? html`<div class="launcher__window-wrapper">
568
+ <tour-scheduler
569
+ chatId="${this.chatId}"
570
+ orgSlug="${this.orgSlug}"
571
+ buildingSlug="${this.buildingSlug}"
572
+ sgtUrl="${this.sgtUrl}"
573
+ escortedToursLink="${this.escortedToursLink}"
574
+ virtualToursLink="${this.virtualToursLink}"
575
+ currentLeadSource="${this.currentLeadSource}"
576
+ .leadSources="${this.leadSources}"
577
+ .layoutOptions=${this.layoutOptions}
578
+ .unitOptions=${this.unitOptions}
579
+ .tourTypeOptions=${this.tourTypeOptions}
580
+ buildingId=${this.buildingId}
581
+ ${ref(this.tourSchedulerRef)}
582
+ ></tour-scheduler>
583
+ </div>`
584
+ : ""
585
+ }
586
+ ${
587
+ this.isCallUsWindowOpen
588
+ ? html`
589
+ <div class="launcher__window-wrapper">
590
+ <call-us-window
591
+ .onCloseClicked=${this.onClosePhoneWindow}
592
+ phoneNumber="${this.phoneNumber}"
593
+ .buildingId=${this.buildingId}
594
+ chatCallUsHeader="${this.chatCallUsHeader}"
595
+ hasTextUsEnabled=${this.hasTextUsEnabled ? true : ""}
596
+ currentLeadSource="${this.currentLeadSource}"
597
+ ></call-us-window>
548
598
  </div>
549
- </div>
550
- `
551
- : ""}
599
+ `
600
+ : ""
601
+ }
602
+ ${!this.isCallToActionWindowOpen() ? this.renderActionPills() : ""}
552
603
  </div>
553
604
  `;
554
605
  }
@@ -90,7 +90,7 @@ export class DatePicker extends LitElement {
90
90
  static styles = css`
91
91
  :host {
92
92
  box-sizing: border-box;
93
- font-family: "Poppins";
93
+ font-family: "Helvetica Neue";
94
94
  color: #202020;
95
95
  font-style: normal;
96
96
  }
@@ -44,7 +44,7 @@ export class TimePicker extends LitElement {
44
44
 
45
45
  :host {
46
46
  color: #202020;
47
- font-family: "Poppins";
47
+ font-family: "Helvetica Neue";
48
48
  }
49
49
 
50
50
  #optionContainer {
@@ -419,7 +419,7 @@ export class TourScheduler extends LitElement {
419
419
  background: #ffffff;
420
420
  box-shadow: 0px 16px 18px 10px rgba(21, 21, 21, 0.4);
421
421
  border-radius: 10px;
422
- font-family: "Poppins";
422
+ font-family: "Helvetica Neue";
423
423
  color: #202020;
424
424
  padding: 0 25px 0 27px;
425
425
 
@@ -723,7 +723,7 @@ export class TourScheduler extends LitElement {
723
723
  background: #202020;
724
724
  border: 1px solid #ffffff;
725
725
  border-radius: 10px;
726
- font-family: "Poppins";
726
+ font-family: "Helvetica Neue";
727
727
  font-weight: 700;
728
728
  font-size: 14px;
729
729
  color: #ffffff;
@@ -46,7 +46,7 @@ export class TourTypeOption extends LitElement {
46
46
  display: flex;
47
47
  flex-direction: column;
48
48
  color: #202020;
49
- font-family: "Poppins";
49
+ font-family: "Helvetica Neue";
50
50
  }
51
51
 
52
52
  :host([selected]) .text {