Skip to content

Commit 92af219

Browse files
authored
Merge pull request #72 from video-db/release
release 0.0.32
2 parents b148266 + a3b431d commit 92af219

File tree

2 files changed

+87
-82
lines changed

2 files changed

+87
-82
lines changed

CHANGELOG.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# Changelog
22

3-
## Unreleased
3+
## [0.0.32]() - 2025-02-06
4+
45

56
### Added
7+
68
- `<ChatInput/>` Enhancements:
79
- Improved multiline input experience.
810
- Support for image attachments in chat (one image per message):
@@ -14,13 +16,15 @@
1416
- Persistent header across all screens.
1517
- Includes a hamburger menu for mobile screens.
1618
- Update `<ChatMessage/>` to show Image Inputs
17-
- VideoDB Hook
19+
- VideoDB Hook
20+
1821
- Wrapper function that calls `/videodb/collection/${collectionId}/image/${imageId}/generate_url` to director-backend to get url of uploaded image.
1922

2023
- Custom header support:
2124
- Users can pass a custom header component to `<ChatInterface/>` via the `header` slot.
2225

2326
### Fixed
27+
2428
- Chat input:
2529
- Loading and disabled state for action button.
2630
- Issues related to collection and session switching.
@@ -30,7 +34,8 @@
3034
## [0.0.31]() - 2025-02-05
3135

3236
### Added
33-
- Improved Error message on Delete Collection Error Modal
37+
38+
- Improved Error message on Delete Collection Error Modal
3439

3540
## [0.0.30]() - 2025-02-03
3641

package.json

Lines changed: 79 additions & 79 deletions
Original file line numberDiff line numberDiff line change
@@ -1,81 +1,81 @@
11
{
2-
"name": "@videodb/chat-vue",
3-
"description": "Chat component for Director",
4-
"version": "0.0.31",
5-
"author": "VideoDB",
6-
"license": "Apache-2.0",
7-
"private": false,
8-
"homepage": "https://videodb.io",
9-
"repository": {
10-
"type": "git",
11-
"url": "https://github.com/video-db/videodb-chat.git"
12-
},
13-
"type": "module",
14-
"main": "dist/index.cjs",
15-
"module": "dist/index.mjs",
16-
"style": "dist/style.css",
17-
"types": "types/index.d.ts",
18-
"files": [
19-
"dist",
20-
"types",
21-
"README.md"
22-
],
23-
"exports": {
24-
".": {
25-
"types": "./types/index.d.ts",
26-
"import": "./dist/index.mjs",
27-
"require": "./dist/index.cjs"
28-
},
29-
"./*": "./*"
30-
},
31-
"typings": "types/index.d.ts",
32-
"scripts": {
33-
"dev-server": "vite",
34-
"dev-types": "vue-tsc --noEmit -p tsconfig.app.json --watch",
35-
"build": "npm run build-lib && npm run build-types",
36-
"build-lib": "vite build",
37-
"build-types": "vue-tsc --emitDeclarationOnly --declaration -p tsconfig.app.json",
38-
"lint": "eslint 'src/**/*.{ts,vue}'",
39-
"test": "vitest",
40-
"test-ci": "vitest --run",
41-
"prepublishOnly": "npm run build"
42-
},
43-
"peerDependencies": {
44-
"vue": "^3.0.4"
45-
},
46-
"devDependencies": {
47-
"@tsconfig/node20": "^20.1.2",
48-
"@types/node": "20.8.10",
49-
"@types/vue": "^2.0.0",
50-
"@vitejs/plugin-vue": "^4.4.0",
51-
"@vue/compiler-dom": "^3.3.8",
52-
"@vue/test-utils": "^2.4.1",
53-
"@vue/tsconfig": "^0.4.0",
54-
"autoprefixer": "^10.4.20",
55-
"eslint": "^8.53.0",
56-
"jsdom": "^22.1.0",
57-
"lint-staged": "^15.0.2",
58-
"postcss": "^8.4.41",
59-
"prettier": "^3.3.3",
60-
"prettier-plugin-tailwindcss": "^0.6.6",
61-
"run-p": "^0.0.0",
62-
"sass": "^1.77.8",
63-
"tailwindcss": "^3.4.10",
64-
"typescript": "^5.2.2",
65-
"vite": "^4.5.0",
66-
"vitest": "^0.34.6",
67-
"vue": "^3.5.13",
68-
"vue-tsc": "^2.0.29"
69-
},
70-
"dependencies": {
71-
"@videodb/player-vue": "~0.0.4",
72-
"dayjs": "^1.11.13",
73-
"katex": "^0.16.11",
74-
"marked": "^4.2.5",
75-
"marked-katex-extension": "^5.1.2",
76-
"socket.io-client": "^4.7.5",
77-
"swiper": "^11.1.10",
78-
"uuid": "^10.0.0",
79-
"vue3-popper": "^1.5.0"
80-
}
2+
"name": "@videodb/chat-vue",
3+
"description": "Chat component for Director",
4+
"version": "0.0.32",
5+
"author": "VideoDB",
6+
"license": "Apache-2.0",
7+
"private": false,
8+
"homepage": "https://videodb.io",
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/video-db/videodb-chat.git"
12+
},
13+
"type": "module",
14+
"main": "dist/index.cjs",
15+
"module": "dist/index.mjs",
16+
"style": "dist/style.css",
17+
"types": "types/index.d.ts",
18+
"files": [
19+
"dist",
20+
"types",
21+
"README.md"
22+
],
23+
"exports": {
24+
".": {
25+
"types": "./types/index.d.ts",
26+
"import": "./dist/index.mjs",
27+
"require": "./dist/index.cjs"
28+
},
29+
"./*": "./*"
30+
},
31+
"typings": "types/index.d.ts",
32+
"scripts": {
33+
"dev-server": "vite",
34+
"dev-types": "vue-tsc --noEmit -p tsconfig.app.json --watch",
35+
"build": "npm run build-lib && npm run build-types",
36+
"build-lib": "vite build",
37+
"build-types": "vue-tsc --emitDeclarationOnly --declaration -p tsconfig.app.json",
38+
"lint": "eslint 'src/**/*.{ts,vue}'",
39+
"test": "vitest",
40+
"test-ci": "vitest --run",
41+
"prepublishOnly": "npm run build"
42+
},
43+
"peerDependencies": {
44+
"vue": "^3.0.4"
45+
},
46+
"devDependencies": {
47+
"@tsconfig/node20": "^20.1.2",
48+
"@types/node": "20.8.10",
49+
"@types/vue": "^2.0.0",
50+
"@vitejs/plugin-vue": "^4.4.0",
51+
"@vue/compiler-dom": "^3.3.8",
52+
"@vue/test-utils": "^2.4.1",
53+
"@vue/tsconfig": "^0.4.0",
54+
"autoprefixer": "^10.4.20",
55+
"eslint": "^8.53.0",
56+
"jsdom": "^22.1.0",
57+
"lint-staged": "^15.0.2",
58+
"postcss": "^8.4.41",
59+
"prettier": "^3.3.3",
60+
"prettier-plugin-tailwindcss": "^0.6.6",
61+
"run-p": "^0.0.0",
62+
"sass": "^1.77.8",
63+
"tailwindcss": "^3.4.10",
64+
"typescript": "^5.2.2",
65+
"vite": "^4.5.0",
66+
"vitest": "^0.34.6",
67+
"vue": "^3.5.13",
68+
"vue-tsc": "^2.0.29"
69+
},
70+
"dependencies": {
71+
"@videodb/player-vue": "~0.0.4",
72+
"dayjs": "^1.11.13",
73+
"katex": "^0.16.11",
74+
"marked": "^4.2.5",
75+
"marked-katex-extension": "^5.1.2",
76+
"socket.io-client": "^4.7.5",
77+
"swiper": "^11.1.10",
78+
"uuid": "^10.0.0",
79+
"vue3-popper": "^1.5.0"
80+
}
8181
}

0 commit comments

Comments
 (0)