llmasaservice-ui 0.7.27 → 0.7.28
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/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/ChatPanel.tsx +1 -1
package/dist/index.js
CHANGED
|
@@ -282,7 +282,7 @@ var ChatPanel = ({
|
|
|
282
282
|
style.textContent = cssUrl;
|
|
283
283
|
style.setAttribute("data-source", "llmasaservice-ui");
|
|
284
284
|
document.head.appendChild(style);
|
|
285
|
-
console.log("Added inline CSS"
|
|
285
|
+
console.log("Added inline CSS");
|
|
286
286
|
}
|
|
287
287
|
}
|
|
288
288
|
return () => {
|
package/dist/index.mjs
CHANGED
|
@@ -248,7 +248,7 @@ var ChatPanel = ({
|
|
|
248
248
|
style.textContent = cssUrl;
|
|
249
249
|
style.setAttribute("data-source", "llmasaservice-ui");
|
|
250
250
|
document.head.appendChild(style);
|
|
251
|
-
console.log("Added inline CSS"
|
|
251
|
+
console.log("Added inline CSS");
|
|
252
252
|
}
|
|
253
253
|
}
|
|
254
254
|
return () => {
|
package/package.json
CHANGED
package/src/ChatPanel.tsx
CHANGED
|
@@ -216,7 +216,7 @@ const ChatPanel: React.FC<ChatPanelProps & ExtraProps> = ({
|
|
|
216
216
|
// Add a data attribute to identify and remove this style later if needed
|
|
217
217
|
style.setAttribute('data-source', 'llmasaservice-ui');
|
|
218
218
|
document.head.appendChild(style);
|
|
219
|
-
console.log("Added inline CSS"
|
|
219
|
+
console.log("Added inline CSS");
|
|
220
220
|
}
|
|
221
221
|
}
|
|
222
222
|
|