@gitlab/duo-ui 10.23.1 → 11.0.1
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 +25 -0
- package/dist/components/agentic_chat/web_agentic_duo_chat.js +725 -0
- package/dist/components/chat/components/duo_chat_header/web_duo_chat_header.js +161 -0
- package/dist/components/chat/web_duo_chat.js +658 -0
- package/dist/components/ui/duo_layout/duo_layout.js +100 -0
- package/dist/components/ui/side_rail/side_rail.js +67 -0
- package/dist/index.js +4 -0
- package/dist/tailwind.css +1 -1
- package/dist/tailwind.css.map +1 -1
- package/package.json +2 -1
- package/src/components/agentic_chat/web_agentic_duo_chat.vue +978 -0
- package/src/components/chat/components/duo_chat_header/web_duo_chat_header.vue +274 -0
- package/src/components/chat/web_duo_chat.vue +891 -0
- package/src/components/ui/duo_layout/duo_layout.md +0 -0
- package/src/components/ui/duo_layout/duo_layout.vue +95 -0
- package/src/components/ui/side_rail/side_rail.vue +57 -0
- package/src/index.js +5 -0
- package/translations.js +42 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
## [11.0.1](https://gitlab.com/gitlab-org/duo-ui/compare/v11.0.0...v11.0.1) (2025-09-18)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **chat:** fixed darkmode ([98d57cd](https://gitlab.com/gitlab-org/duo-ui/commit/98d57cde8df7e703747fe9d1a104b958c59f9ae6))
|
|
7
|
+
* **Duo:** Dark mode fix ([d9fdc24](https://gitlab.com/gitlab-org/duo-ui/commit/d9fdc244014ff53ecfe8b69d3143e7d462038ad6))
|
|
8
|
+
* **message:** removed message visual style update ([198b32b](https://gitlab.com/gitlab-org/duo-ui/commit/198b32bbd31d7f4c289be01e90bfff0d451afa09))
|
|
9
|
+
|
|
10
|
+
# [11.0.0](https://gitlab.com/gitlab-org/duo-ui/compare/v10.23.1...v11.0.0) (2025-09-18)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* Introduce Web only component to reduce Agentic Chat ([3e68e06](https://gitlab.com/gitlab-org/duo-ui/commit/3e68e06a1477d274c1bfe98321dee9090be07009))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### BREAKING CHANGES
|
|
19
|
+
|
|
20
|
+
* Adds web_ prefixed components (WebDuoChat,
|
|
21
|
+
WebAgenticDuoChat, WebDuoChatHeader) with unique translation
|
|
22
|
+
keys to implement the new Chat design for Web platform.
|
|
23
|
+
These components are intended for Web consumption only
|
|
24
|
+
IDE versions remain unchanged.
|
|
25
|
+
|
|
1
26
|
## [10.23.1](https://gitlab.com/gitlab-org/duo-ui/compare/v10.23.0...v10.23.1) (2025-09-16)
|
|
2
27
|
|
|
3
28
|
|