@meetelise/chat 1.12.2 → 1.12.3
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 +2 -2
- package/public/demo/index.html +2 -2
- package/public/dist/index.js +541 -279
- package/src/WebComponent/InHouseLauncher.ts +46 -5
- package/src/WebComponent/MEChat.ts +4 -0
- package/src/WebComponent/Scheduler/date-picker.ts +90 -21
- package/src/WebComponent/Scheduler/me-select.ts +8 -13
- package/src/WebComponent/Scheduler/time-picker.ts +105 -58
- package/src/WebComponent/Scheduler/tour-scheduler.ts +728 -179
- package/src/WebComponent/Scheduler/tour-type-option.ts +0 -3
- package/src/WebComponent/actions/ActionConfirmButton.ts +0 -1
- package/src/WebComponent/actions/CallUsWindow.ts +23 -1
- package/src/WebComponent/actions/DetailsWindow.ts +0 -1
- package/src/WebComponent/actions/EmailUsWindow.ts +0 -1
- package/src/WebComponent/actions/InputStyles.ts +0 -1
- package/src/WebComponent/actions/TextUsWindow.ts +0 -1
- package/src/WebComponent/actions/formatPhoneNumber.ts +26 -10
- package/src/WebComponent/inHouseLauncherStyles.ts +1 -2
- package/src/fetchBuildingInfo.ts +7 -0
- package/src/getAvailabilities.ts +10 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meetelise/chat",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.3",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "public/dist/index.js",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"webpack-dev-server": "^4.7.2"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@meetelise/rest-sdk": "^0.0.
|
|
59
|
+
"@meetelise/rest-sdk": "^0.0.138",
|
|
60
60
|
"axios": "^0.27.2",
|
|
61
61
|
"classnames": "^2.3.1",
|
|
62
62
|
"date-fns": "^2.28.0",
|
package/public/demo/index.html
CHANGED
|
@@ -78,8 +78,8 @@
|
|
|
78
78
|
user-select: none;
|
|
79
79
|
}
|
|
80
80
|
/* Test CSS isolation: this padding will make the launcher look terrible unless it has taken defensive measures against host page styles */
|
|
81
|
-
/* (
|
|
82
|
-
div:not(#bottomBanner, .ghq-ext-app) {
|
|
81
|
+
/* (exclusions: mock cookie banner, Guru browser extension element, TalkJS container. Padding them causes scrollbars or movement.) */
|
|
82
|
+
div:not(#bottomBanner, .ghq-ext-app, div[id^="__talkjs_popup_container"]) {
|
|
83
83
|
padding: 10px;
|
|
84
84
|
}
|
|
85
85
|
</style>
|