@anchrd/intel-ui 0.16.0 → 0.16.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": "@anchrd/intel-ui",
3
- "version": "0.16.0",
3
+ "version": "0.16.1",
4
4
  "type": "module",
5
5
  "license": "UNLICENSED",
6
6
  "repository": {
@@ -29,7 +29,7 @@
29
29
  "typecheck": "tsc --noEmit"
30
30
  },
31
31
  "dependencies": {
32
- "@anchrd/intel-contract": "^0.9.0",
32
+ "@anchrd/intel-contract": "^0.10.0",
33
33
  "@assistant-ui/react": "^0.15.4",
34
34
  "@assistant-ui/react-ai-sdk": "^1.4.4",
35
35
  "@blocknote/core": "^0.52.1",
@@ -17,6 +17,7 @@ import {
17
17
  Copy,
18
18
  FileText,
19
19
  Folder,
20
+ KanbanSquare,
20
21
  KeyRound,
21
22
  MessageSquare,
22
23
  Paperclip,
@@ -431,6 +432,7 @@ const KindIcon: Record<NodeKind, typeof Folder> = {
431
432
  table: Table2,
432
433
  attachment: Paperclip,
433
434
  agent: Bot,
435
+ board: KanbanSquare,
434
436
  };
435
437
 
436
438
  /**
package/src/i18n/de.json CHANGED
@@ -50,6 +50,7 @@
50
50
  "tree.kind.attachment": "Datei",
51
51
  "tree.kind.table": "Tabelle",
52
52
  "tree.kind.agent": "Agent",
53
+ "tree.kind.board": "Board",
53
54
  "tree.kind.flow": "Flow",
54
55
  "tree.move.action": "Verschieben nach …",
55
56
  "tree.move.title": "{title} verschieben",
@@ -108,6 +109,7 @@
108
109
  "node.kind.attachment": "Upload",
109
110
  "node.kind.table": "Tabelle",
110
111
  "node.kind.agent": "Agent",
112
+ "node.kind.board": "Board",
111
113
  "node.kind.flow": "Flow",
112
114
  "node.share": "Freigeben",
113
115
  "node.shareAction": "Zugriff geben",
package/src/i18n/en.json CHANGED
@@ -50,6 +50,7 @@
50
50
  "tree.kind.attachment": "File",
51
51
  "tree.kind.table": "Table",
52
52
  "tree.kind.agent": "Agent",
53
+ "tree.kind.board": "Board",
53
54
  "tree.kind.flow": "Flow",
54
55
  "tree.move.action": "Move to…",
55
56
  "tree.move.title": "Move {title}",
@@ -108,6 +109,7 @@
108
109
  "node.kind.attachment": "Upload",
109
110
  "node.kind.table": "Table",
110
111
  "node.kind.agent": "Agent",
112
+ "node.kind.board": "Board",
111
113
  "node.kind.flow": "Flow",
112
114
  "node.share": "Share",
113
115
  "node.shareAction": "Grant access",
package/src/i18n/es.json CHANGED
@@ -50,6 +50,7 @@
50
50
  "tree.kind.attachment": "Archivo",
51
51
  "tree.kind.table": "Tabla",
52
52
  "tree.kind.agent": "Agente",
53
+ "tree.kind.board": "Tablero",
53
54
  "tree.kind.flow": "Flujo",
54
55
  "tree.move.action": "Mover a…",
55
56
  "tree.move.title": "Mover {title}",
@@ -108,6 +109,7 @@
108
109
  "node.kind.attachment": "Subida",
109
110
  "node.kind.table": "Tabla",
110
111
  "node.kind.agent": "Agente",
112
+ "node.kind.board": "Tablero",
111
113
  "node.kind.flow": "Flujo",
112
114
  "node.share": "Compartir",
113
115
  "node.shareAction": "Conceder acceso",
package/src/kind-icon.ts CHANGED
@@ -1,4 +1,13 @@
1
- import { Bot, FileText, Folder, type LucideIcon, Paperclip, Table, Workflow } from "lucide-react";
1
+ import {
2
+ Bot,
3
+ FileText,
4
+ Folder,
5
+ KanbanSquare,
6
+ type LucideIcon,
7
+ Paperclip,
8
+ Table,
9
+ Workflow,
10
+ } from "lucide-react";
2
11
  import type { TreeEntry } from "@/data/intel-data-provider/intel-data-provider.types.ts";
3
12
 
4
13
  /**
@@ -18,5 +27,7 @@ export const kindIcons: Record<TreeEntry["kind"], LucideIcon> = {
18
27
  // An agent is listed and named like any other row (#139), and since #143 opening one leads to
19
28
  // its own screen. The sidebar's create menu draws this same icon rather than naming `Bot` again.
20
29
  agent: Bot,
30
+ // A board is a row like any other (#285); the views that open one are anchrd/intel#286.
31
+ board: KanbanSquare,
21
32
  flow: Workflow,
22
33
  };