@tui-sandbox/library 11.6.3 → 11.6.4

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": "@tui-sandbox/library",
3
- "version": "11.6.3",
3
+ "version": "11.6.4",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/mikavilpas/tui-sandbox"
@@ -27,16 +27,16 @@
27
27
  "prettier": "3.6.2",
28
28
  "type-fest": "4.41.0",
29
29
  "winston": "3.17.0",
30
- "zod": "4.0.15"
30
+ "zod": "4.0.17"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@types/command-exists": "1.2.3",
34
34
  "@types/cors": "2.8.19",
35
35
  "@types/express": "5.0.3",
36
- "@types/node": "24.2.0",
36
+ "@types/node": "24.3.0",
37
37
  "nodemon": "3.1.10",
38
- "tsx": "4.20.3",
39
- "vite": "7.1.0",
38
+ "tsx": "4.20.4",
39
+ "vite": "7.1.2",
40
40
  "vitest": "3.2.4"
41
41
  },
42
42
  "peerDependencies": {
@@ -44,6 +44,7 @@
44
44
  "prettier": ">= 3.3.3",
45
45
  "type-fest": ">= 4.27.0",
46
46
  "typescript": ">= 5.6.3",
47
+ "wait-on": "8.0.4",
47
48
  "zod": ">=4.0.0-0 <5"
48
49
  },
49
50
  "engines": {
@@ -88,6 +88,17 @@ export type BrowserTerminalSettings = {
88
88
  terminal: Terminal
89
89
  api: TuiTerminalApi
90
90
  recipes: {
91
+ /** Make the terminal respond to "DA1—Primary Device Attributes" requests.
92
+ *
93
+ * In this DA exchange, the host asks for the terminal's architectural class and basic attributes.
94
+ * https://vt100.net/docs/vt510-rm/DA1.html
95
+ *
96
+ * Terminal Response
97
+ *
98
+ * The terminal responds by sending its architectural class and basic
99
+ * attributes to the host. This response depends on the terminal's current
100
+ * operating VT level.
101
+ */
91
102
  supportDA1: () => void
92
103
  }
93
104
  }) => void