@hyperspaceng/neural-web-ui 0.66.2 → 0.67.3

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/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.67.2] - 2026-04-14
6
+
7
+ ## [0.67.1] - 2026-04-13
8
+
9
+ ## [0.67.0] - 2026-04-13
10
+
5
11
  ## [0.66.1] - 2026-04-08
6
12
 
7
13
  ## [0.66.0] - 2026-04-08
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-web-ui-example",
3
- "version": "1.54.2",
3
+ "version": "1.55.3",
4
4
  "private": true,
5
5
  "type": "module",
6
6
  "scripts": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hyperspaceng/neural-web-ui",
3
- "version": "0.66.2",
3
+ "version": "0.67.3",
4
4
  "description": "Reusable web UI components for AI chat interfaces powered by @mariozechner/pi-ai",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -18,8 +18,8 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@lmstudio/sdk": "^1.5.0",
21
- "@hyperspaceng/neural-ai": "^0.66.2",
22
- "@hyperspaceng/neural-tui": "^0.66.2",
21
+ "@hyperspaceng/neural-ai": "^0.67.3",
22
+ "@hyperspaceng/neural-tui": "^0.67.3",
23
23
  "docx-preview": "^0.3.7",
24
24
  "jszip": "^3.10.1",
25
25
  "lucide": "^0.544.0",
@@ -60,6 +60,9 @@ export class MessageEditor extends LitElement {
60
60
  };
61
61
 
62
62
  private handleKeyDown = (e: KeyboardEvent) => {
63
+ // Ignore key events during IME composition (e.g. CJK input)
64
+ if (e.isComposing || e.key === "Process") return;
65
+
63
66
  if (e.key === "Enter" && !e.shiftKey) {
64
67
  e.preventDefault();
65
68
  if (!this.isStreaming && !this.processingFiles && (this.value.trim() || this.attachments.length > 0)) {
@@ -113,6 +113,9 @@ export class ModelSelector extends DialogBase {
113
113
 
114
114
  // Add global keyboard handler for the dialog
115
115
  this.addEventListener("keydown", (e: KeyboardEvent) => {
116
+ // Ignore key events during IME composition (e.g. CJK input)
117
+ if (e.isComposing || e.key === "Process") return;
118
+
116
119
  // Get filtered models to know the bounds
117
120
  const filteredModels = this.getFilteredModels();
118
121