@tagit/ai-client-react 0.8.0-beta.8.1 → 0.8.0-beta.9.1

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": "@tagit/ai-client-react",
3
- "version": "0.8.0-beta.8.1",
3
+ "version": "0.8.0-beta.9.1",
4
4
  "description": "Self-contained React chat widget and hooks for TagIt AI client",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -37,7 +37,7 @@
37
37
  }
38
38
  },
39
39
  "dependencies": {
40
- "@tagit/ai-client-core": "0.8.0-beta.8.1",
40
+ "@tagit/ai-client-core": "0.8.0-beta.9.1",
41
41
  "highlight.js": "^11.11.1",
42
42
  "lucide-react": "^1.7.0",
43
43
  "react-markdown": "^10.1.0",
@@ -331,6 +331,8 @@
331
331
  background: var(--tagIt-chat-panel-body-bg);
332
332
  display: flex;
333
333
  flex-direction: column;
334
+ position: relative;
335
+ isolation: isolate;
334
336
  }
335
337
 
336
338
  .tagIt-chat-theme-dark {
@@ -717,7 +719,10 @@
717
719
  z-index: 20;
718
720
  display: flex;
719
721
  flex-direction: column;
722
+ width: 100%;
723
+ height: 100%;
720
724
  min-height: 0;
725
+ overflow: hidden;
721
726
  background: var(--tagIt-chat-panel-body-bg);
722
727
  color: var(--tagIt-chat-text);
723
728
  }