teodor-new-chat-ui 4.3.409 → 4.3.411
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Public API entry point for shared contexts.
|
|
3
3
|
*/
|
|
4
|
-
export { ApiProvider, ChatProviders, useHasChatSession, useStream, useThreadState, useThreads } from './providers';
|
|
4
|
+
export { ApiProvider, ChatProviders, useHasChatSession, useStream, useThreadState, useThreads, type ChatProvidersProps } from './providers';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { ApiContext, ApiProvider } from "./ApiProvider";
|
|
2
|
-
export { ChatProviders, useHasChatSession, useStream, useThreadState, useThreads } from "./ChatProviders";
|
|
2
|
+
export { ChatProviders, useHasChatSession, useStream, useThreadState, useThreads, type ChatProvidersProps } from "./ChatProviders";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "teodor-new-chat-ui",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.411",
|
|
4
4
|
"description": "React chat UI components with streaming support, tool calls, and modern design",
|
|
5
5
|
"main": "dist/index.umd.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -35,21 +35,6 @@
|
|
|
35
35
|
},
|
|
36
36
|
"private": false,
|
|
37
37
|
"type": "module",
|
|
38
|
-
"scripts": {
|
|
39
|
-
"dev": "vite",
|
|
40
|
-
"build": "npm run build:lib && npm run build:types",
|
|
41
|
-
"build:lib": "vite build --mode library",
|
|
42
|
-
"build:types": "tsc --project tsconfig.build.json",
|
|
43
|
-
"bump": "node scripts/bump-version.mjs",
|
|
44
|
-
"bump:minor": "node scripts/bump-version.mjs minor",
|
|
45
|
-
"bump:major": "node scripts/bump-version.mjs major",
|
|
46
|
-
"build:dev": "vite build --mode development",
|
|
47
|
-
"lint": "eslint .",
|
|
48
|
-
"preview": "vite preview",
|
|
49
|
-
"prepare": "npm run build",
|
|
50
|
-
"prepublishOnly": "npm run build",
|
|
51
|
-
"test": "vitest"
|
|
52
|
-
},
|
|
53
38
|
"peerDependencies": {
|
|
54
39
|
"react": ">=18.0.0",
|
|
55
40
|
"react-dom": ">=18.0.0",
|
|
@@ -145,5 +130,18 @@
|
|
|
145
130
|
"typescript-eslint": "^8.40.0",
|
|
146
131
|
"vite": "^5.4.19",
|
|
147
132
|
"vitest": "^2.1.4"
|
|
133
|
+
},
|
|
134
|
+
"scripts": {
|
|
135
|
+
"dev": "vite",
|
|
136
|
+
"build": "npm run build:lib && npm run build:types",
|
|
137
|
+
"build:lib": "vite build --mode library",
|
|
138
|
+
"build:types": "tsc --project tsconfig.build.json",
|
|
139
|
+
"bump": "node scripts/bump-version.mjs",
|
|
140
|
+
"bump:minor": "node scripts/bump-version.mjs minor",
|
|
141
|
+
"bump:major": "node scripts/bump-version.mjs major",
|
|
142
|
+
"build:dev": "vite build --mode development",
|
|
143
|
+
"lint": "eslint .",
|
|
144
|
+
"preview": "vite preview",
|
|
145
|
+
"test": "vitest"
|
|
148
146
|
}
|
|
149
|
-
}
|
|
147
|
+
}
|