@gitlab/duo-ui 15.7.2 → 15.8.0

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,3 +1,10 @@
1
+ # [15.8.0](https://gitlab.com/gitlab-org/duo-ui/compare/v15.7.2...v15.8.0) (2026-01-28)
2
+
3
+
4
+ ### Features
5
+
6
+ * export MessageToolKVSection ([9fd00fe](https://gitlab.com/gitlab-org/duo-ui/commit/9fd00fe3b9d415f33e3b401e96f1b6c9c6f030ab))
7
+
1
8
  ## [15.7.2](https://gitlab.com/gitlab-org/duo-ui/compare/v15.7.1...v15.7.2) (2026-01-28)
2
9
 
3
10
 
package/dist/index.js CHANGED
@@ -11,6 +11,7 @@ export { default as AgentMessage } from './components/chat/components/duo_chat_m
11
11
  export { default as InputRequestedMessage } from './components/chat/components/duo_chat_message/message_types/message_input_requested';
12
12
  export { default as SystemMessage } from './components/chat/components/duo_chat_message/message_types/message_tool';
13
13
  export { default as WorkflowEndMessage } from './components/chat/components/duo_chat_message/message_types/message_workflow_end';
14
+ export { default as MessageToolKvSection } from './components/chat/components/duo_chat_message/message_types/message_tool_kv_section';
14
15
  export { default as AgenticDuoChat } from './components/agentic_chat/agentic_duo_chat';
15
16
  export { default as AgenticToolApprovalFlow } from './components/agentic_chat/components/agentic_tool_approval_flow/agentic_tool_approval_flow';
16
17
  export { default as DuoChatContextItemDetailsModal } from './components/chat/components/duo_chat_context/duo_chat_context_item_details_modal/duo_chat_context_item_details_modal';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/duo-ui",
3
- "version": "15.7.2",
3
+ "version": "15.8.0",
4
4
  "description": "Duo UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
package/src/index.js CHANGED
@@ -25,6 +25,8 @@ export { default as InputRequestedMessage } from './components/chat/components/d
25
25
  export { default as SystemMessage } from './components/chat/components/duo_chat_message/message_types/message_tool.vue';
26
26
  export { default as WorkflowEndMessage } from './components/chat/components/duo_chat_message/message_types/message_workflow_end.vue';
27
27
 
28
+ export { default as MessageToolKvSection } from './components/chat/components/duo_chat_message/message_types/message_tool_kv_section.vue';
29
+
28
30
  // Agentic Duo Chat component
29
31
  export { default as AgenticDuoChat } from './components/agentic_chat/agentic_duo_chat.vue';
30
32
  export { default as AgenticToolApprovalFlow } from './components/agentic_chat/components/agentic_tool_approval_flow/agentic_tool_approval_flow.vue';