iris-chatbot 5.1.0 → 5.2.0

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": "iris-chatbot",
3
- "version": "5.1.0",
3
+ "version": "5.2.0",
4
4
  "private": false,
5
5
  "description": "One-command installer for the Iris project template.",
6
6
  "bin": {
@@ -9,6 +9,7 @@ const eslintConfig = defineConfig([
9
9
  globalIgnores([
10
10
  // Default ignores of eslint-config-next:
11
11
  ".next/**",
12
+ "**/.next/**",
12
13
  "out/**",
13
14
  "build/**",
14
15
  "next-env.d.ts",
@@ -1,6 +1,6 @@
1
1
  /// <reference types="next" />
2
2
  /// <reference types="next/image-types/global" />
3
- import "./.next/dev/types/routes.d.ts";
3
+ import "./.next/types/routes.d.ts";
4
4
 
5
5
  // NOTE: This file should not be edited
6
6
  // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "iris",
3
- "version": "5.1.0",
3
+ "version": "5.2.0",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "iris",
9
- "version": "5.1.0",
9
+ "version": "5.2.0",
10
10
  "dependencies": {
11
11
  "@anthropic-ai/sdk": "^0.72.1",
12
12
  "clsx": "^2.1.1",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iris",
3
- "version": "5.1.0",
3
+ "version": "5.2.0",
4
4
  "private": true,
5
5
  "description": "One-command installer for the Iris project template.",
6
6
  "engines": {
@@ -172,13 +172,12 @@ button:focus-visible {
172
172
  top: 2px;
173
173
  right: 0;
174
174
  opacity: 0;
175
- pointer-events: none;
175
+ pointer-events: auto;
176
176
  transition: opacity 0.2s ease;
177
177
  }
178
178
 
179
- .assistant-card:hover .assistant-collapse-row {
179
+ .assistant-collapse-row:hover {
180
180
  opacity: 1;
181
- pointer-events: auto;
182
181
  }
183
182
 
184
183
  .assistant-collapse-toggle {
@@ -465,6 +464,9 @@ button:focus-visible {
465
464
  text-align: left;
466
465
  border-right: 1px solid var(--border-strong);
467
466
  border-bottom: 1px solid var(--border-strong);
467
+ /* Keep words intact: wrap at spaces; only break long words when necessary */
468
+ overflow-wrap: break-word;
469
+ word-break: normal;
468
470
  }
469
471
 
470
472
  .message-content tr> :last-child {
@@ -502,8 +504,8 @@ button:focus-visible {
502
504
  }
503
505
 
504
506
  .message-content strong {
505
- font-weight: 760;
506
- color: var(--text-primary);
507
+ font-weight: 600;
508
+ color: inherit;
507
509
  }
508
510
 
509
511
  .message-content em {
@@ -1048,7 +1048,7 @@ function MessageCard({
1048
1048
  ) : null}
1049
1049
  </div>
1050
1050
  <div
1051
- className={`message-actions ${isAssistant ? "assistant opacity-0 pointer-events-none transition-opacity duration-150 group-hover:opacity-100 group-hover:pointer-events-auto" : "user"}`}
1051
+ className={`message-actions ${isAssistant ? "assistant opacity-0 transition-opacity duration-150 hover:opacity-100" : "user"}`}
1052
1052
  >
1053
1053
  {isAssistant ? (
1054
1054
  <button