@syntrologie/adapt-chatbot 2.8.0-canary.280 → 2.8.0-canary.281
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/dist/AdaptiveChatBar.js +2 -2
- package/dist/AdaptiveChatTrail.js +2 -2
- package/dist/ChatAssistantLit.js +1 -1
- package/dist/{chunk-BDFKAVVA.js → chunk-DDZFWNVM.js} +6 -3
- package/dist/chunk-DDZFWNVM.js.map +7 -0
- package/dist/{chunk-LX2VCWH5.js → chunk-HZ55BLN3.js} +2 -2
- package/dist/runtime.js +2 -2
- package/package.json +1 -1
- package/dist/chunk-BDFKAVVA.js.map +0 -7
- /package/dist/{chunk-LX2VCWH5.js.map → chunk-HZ55BLN3.js.map} +0 -0
package/dist/AdaptiveChatBar.js
CHANGED
package/dist/ChatAssistantLit.js
CHANGED
|
@@ -2917,8 +2917,11 @@ function injectChatStyles(root = typeof document === "undefined" ? void 0 : docu
|
|
|
2917
2917
|
const style = document.createElement("style");
|
|
2918
2918
|
style.id = STYLE_ID;
|
|
2919
2919
|
style.textContent = STYLE_RULES;
|
|
2920
|
-
|
|
2921
|
-
|
|
2920
|
+
if (root instanceof Document) {
|
|
2921
|
+
root.head.appendChild(style);
|
|
2922
|
+
return;
|
|
2923
|
+
}
|
|
2924
|
+
root.insertBefore(style, root.firstChild ?? null);
|
|
2922
2925
|
}
|
|
2923
2926
|
var SyntroChat = class extends LitElement {
|
|
2924
2927
|
constructor() {
|
|
@@ -3235,4 +3238,4 @@ export {
|
|
|
3235
3238
|
dompurify/dist/purify.es.mjs:
|
|
3236
3239
|
(*! @license DOMPurify 3.3.1 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.3.1/LICENSE *)
|
|
3237
3240
|
*/
|
|
3238
|
-
//# sourceMappingURL=chunk-
|
|
3241
|
+
//# sourceMappingURL=chunk-DDZFWNVM.js.map
|