@meetelise/chat 1.12.2 → 1.12.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.12.2",
3
+ "version": "1.12.5",
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.129",
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",
@@ -17,6 +17,8 @@
17
17
  display: flex;
18
18
  flex-direction: column;
19
19
  align-items: center;
20
+ /* to test that our web component doesn't inherit styles from the main page */
21
+ letter-spacing: 4px;
20
22
  }
21
23
  main {
22
24
  margin: 3rem 1rem;
@@ -78,8 +80,8 @@
78
80
  user-select: none;
79
81
  }
80
82
  /* Test CSS isolation: this padding will make the launcher look terrible unless it has taken defensive measures against host page styles */
81
- /* (the exclusions are for the banner and the Guru extension's stuff. padding them causes scrollbars) */
82
- div:not(#bottomBanner, .ghq-ext-app) {
83
+ /* (exclusions: mock cookie banner, Guru browser extension element, TalkJS container. Padding them causes scrollbars or movement.) */
84
+ div:not(#bottomBanner, .ghq-ext-app, div[id^="__talkjs_popup_container"]) {
83
85
  padding: 10px;
84
86
  }
85
87
  </style>