@meetelise/chat 1.50.4 → 1.50.5

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meetelise/chat",
3
- "version": "1.50.4",
3
+ "version": "1.50.5",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "homepage": "https://github.com/MeetElise/chat-ui#readme",
@@ -1326,6 +1326,10 @@ otherwise there's some empty space at the bottom of the button, which interferes
1326
1326
  width: 100%;
1327
1327
  margin-top: 16px;
1328
1328
  }
1329
+ .center-tour-not-avail > .general-building-tour-notice {
1330
+ margin: 0;
1331
+ text-align: center;
1332
+ }
1329
1333
  .loading-entire-tour-icon {
1330
1334
  padding: 24px;
1331
1335
  }
@@ -1633,8 +1637,12 @@ xmlns="http://www.w3.org/2000/svg"
1633
1637
  <h1>Please select a building</h1>
1634
1638
  <p>Choose a property to see available tours.</p>
1635
1639
  ${this.centralConvoBuildings.length>0?B`<div class="general-building-select">
1636
- ${this.buildingSelectMenu()}
1637
- </div>`:""}
1640
+ ${this.buildingSelectMenu()}
1641
+ </div>
1642
+ ${661===this.orgId?B`<p class="general-building-tour-notice">
1643
+ Please only schedule one tour and your agent will show you
1644
+ multiple buildings if needed.
1645
+ </p>`:""}`:""}
1638
1646
  `);if(!this.shouldAllowScheduling&&!a)return this.renderCenteredCard(B`
1639
1647
  <h1>Sorry, there are currently no tour availabilities</h1>
1640
1648
  <p>Please check back again later</p>
@@ -1647,8 +1647,14 @@ export class TourScheduler extends LitElement {
1647
1647
  <p>Choose a property to see available tours.</p>
1648
1648
  ${this.centralConvoBuildings.length > 0
1649
1649
  ? html`<div class="general-building-select">
1650
- ${this.buildingSelectMenu()}
1651
- </div>`
1650
+ ${this.buildingSelectMenu()}
1651
+ </div>
1652
+ ${this.orgId === 661
1653
+ ? html`<p class="general-building-tour-notice">
1654
+ Please only schedule one tour and your agent will show you
1655
+ multiple buildings if needed.
1656
+ </p>`
1657
+ : ""}`
1652
1658
  : ""}
1653
1659
  `);
1654
1660
  }
@@ -445,6 +445,10 @@ otherwise there's some empty space at the bottom of the button, which interferes
445
445
  width: 100%;
446
446
  margin-top: 16px;
447
447
  }
448
+ .center-tour-not-avail > .general-building-tour-notice {
449
+ margin: 0;
450
+ text-align: center;
451
+ }
448
452
  .loading-entire-tour-icon {
449
453
  padding: 24px;
450
454
  }