@chat21/chat21-web-widget 5.0.57-rc.3 → 5.0.57-rc.4
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/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -24,7 +24,8 @@
|
|
|
24
24
|
font-size: var(--buttonFontSize);
|
|
25
25
|
-o-text-overflow: ellipsis;
|
|
26
26
|
text-overflow: ellipsis;
|
|
27
|
-
white-space: nowrap;
|
|
27
|
+
// white-space: nowrap;
|
|
28
|
+
word-wrap: break-word;
|
|
28
29
|
letter-spacing: -0.24px;
|
|
29
30
|
-webkit-font-smoothing: antialiased;
|
|
30
31
|
color: var(--textColor);
|
package/src/app/utils/globals.ts
CHANGED
|
@@ -266,7 +266,7 @@ export class Globals {
|
|
|
266
266
|
/** title box callout */
|
|
267
267
|
this.calloutMsg = '';
|
|
268
268
|
/** stato callout (shown only first time) */
|
|
269
|
-
this.calloutStaus =
|
|
269
|
+
this.calloutStaus = false;
|
|
270
270
|
/** message box callout */
|
|
271
271
|
this.userFullname = '';
|
|
272
272
|
/** userFullname: Current user fullname. Set this parameter to specify
|