@pikku/assistant-ui 0.12.6 → 0.12.7

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
@@ -1,5 +1,13 @@
1
1
  # @pikku/assistant-ui
2
2
 
3
+ ## 0.12.7
4
+
5
+ ### Patch Changes
6
+
7
+ - 41ce2cb: Upgrade to TypeScript 6 and raise the minimum Node.js version to 22.
8
+
9
+ All packages now build against `typescript@^6.0.3` and declare `engines.node >= 22`. Internal tooling (`ts-json-schema-generator`, `zod-to-ts`) was bumped to TypeScript 6-compatible releases.
10
+
3
11
  ## 0.12.6
4
12
 
5
13
  ### Patch Changes
@@ -10,11 +10,14 @@ var __rest = (this && this.__rest) || function (s, e) {
10
10
  }
11
11
  return t;
12
12
  };
13
+ var __importDefault = (this && this.__importDefault) || function (mod) {
14
+ return (mod && mod.__esModule) ? mod : { "default": mod };
15
+ };
13
16
  Object.defineProperty(exports, "__esModule", { value: true });
14
17
  exports.PikkuAgentChat = PikkuAgentChat;
15
18
  const jsx_runtime_1 = require("react/jsx-runtime");
16
19
  const react_1 = require("react");
17
- const react_markdown_1 = require("react-markdown");
20
+ const react_markdown_1 = __importDefault(require("react-markdown"));
18
21
  const react_2 = require("@assistant-ui/react");
19
22
  const use_pikku_agent_runtime_js_1 = require("./use-pikku-agent-runtime.js");
20
23
  const lightColors = {
@@ -1 +1 @@
1
- {"root":["../src/index.ts","../src/model-capabilities.ts","../src/use-file-attachment.ts","../src/use-pikku-agent-runtime.ts","../src/pikku-agent-chat.tsx"],"version":"5.9.3"}
1
+ {"root":["../src/index.ts","../src/model-capabilities.ts","../src/use-file-attachment.ts","../src/use-pikku-agent-runtime.ts","../src/pikku-agent-chat.tsx"],"version":"6.0.3"}
@@ -1 +1 @@
1
- {"root":["../src/index.ts","../src/model-capabilities.ts","../src/use-file-attachment.ts","../src/use-pikku-agent-runtime.ts","../src/pikku-agent-chat.tsx"],"version":"5.9.3"}
1
+ {"root":["../src/index.ts","../src/model-capabilities.ts","../src/use-file-attachment.ts","../src/use-pikku-agent-runtime.ts","../src/pikku-agent-chat.tsx"],"version":"6.0.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pikku/assistant-ui",
3
- "version": "0.12.6",
3
+ "version": "0.12.7",
4
4
  "author": "yasser.fadl@gmail.com",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -30,6 +30,8 @@
30
30
  "devDependencies": {
31
31
  "@types/react": "^19",
32
32
  "@types/react-dom": "^19",
33
- "typescript": "^5.9"
33
+ "react": "^19",
34
+ "react-dom": "^19",
35
+ "typescript": "^6.0.3"
34
36
  }
35
37
  }
package/tsconfig.cjs.json CHANGED
@@ -2,6 +2,7 @@
2
2
  "extends": "./tsconfig.json",
3
3
  "compilerOptions": {
4
4
  "rootDir": "./src",
5
+ "ignoreDeprecations": "6.0",
5
6
  "module": "commonjs",
6
7
  "outDir": "dist/cjs",
7
8
  "target": "es2015",