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 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", style);
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", style);
251
+ console.log("Added inline CSS");
252
252
  }
253
253
  }
254
254
  return () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "llmasaservice-ui",
3
- "version": "0.7.27",
3
+ "version": "0.7.28",
4
4
  "description": "Prebuilt UI components for LLMAsAService.io",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
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", style);
219
+ console.log("Added inline CSS");
220
220
  }
221
221
  }
222
222