@gitlab/duo-ui 15.7.2 → 15.8.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 CHANGED
@@ -1,3 +1,17 @@
1
+ ## [15.8.1](https://gitlab.com/gitlab-org/duo-ui/compare/v15.8.0...v15.8.1) (2026-01-29)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **MarkdownRenderer:** update renderMarkdown call ([d4cdd59](https://gitlab.com/gitlab-org/duo-ui/commit/d4cdd59564be8c1d49194611fbea45964ddca650))
7
+
8
+ # [15.8.0](https://gitlab.com/gitlab-org/duo-ui/compare/v15.7.2...v15.8.0) (2026-01-28)
9
+
10
+
11
+ ### Features
12
+
13
+ * export MessageToolKVSection ([9fd00fe](https://gitlab.com/gitlab-org/duo-ui/commit/9fd00fe3b9d415f33e3b401e96f1b6c9c6f030ab))
14
+
1
15
  ## [15.7.2](https://gitlab.com/gitlab-org/duo-ui/compare/v15.7.1...v15.7.2) (2026-01-28)
2
16
 
3
17
 
@@ -55,7 +55,9 @@ var script = {
55
55
  },
56
56
  methods: {
57
57
  async render() {
58
- this.renderedMarkdown = this.isHtml ? this.markdown : await this.renderMarkdown(this.markdown, this.trustedUrls);
58
+ this.renderedMarkdown = this.isHtml ? this.markdown : await this.renderMarkdown(this.markdown, {
59
+ trustedUrls: this.trustedUrls
60
+ });
59
61
  }
60
62
  },
61
63
  safeHtmlConfigExtension: {
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.1",
4
4
  "description": "Duo UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -105,7 +105,7 @@
105
105
  "@gitlab/fonts": "^1.3.1",
106
106
  "@gitlab/stylelint-config": "6.2.2",
107
107
  "@gitlab/svgs": "^3.154.0",
108
- "@gitlab/ui": "^128.2.3",
108
+ "@gitlab/ui": "^128.3.0",
109
109
  "@jest/test-sequencer": "^29.7.0",
110
110
  "@rollup/plugin-commonjs": "^11.1.0",
111
111
  "@rollup/plugin-node-resolve": "^7.1.3",
@@ -58,7 +58,7 @@ export default {
58
58
  async render() {
59
59
  this.renderedMarkdown = this.isHtml
60
60
  ? this.markdown
61
- : await this.renderMarkdown(this.markdown, this.trustedUrls);
61
+ : await this.renderMarkdown(this.markdown, { trustedUrls: this.trustedUrls });
62
62
  },
63
63
  },
64
64
  safeHtmlConfigExtension: {
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';