@gitlab/duo-ui 8.7.2 → 8.7.3
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
|
+
## [8.7.3](https://gitlab.com/gitlab-org/duo-ui/compare/v8.7.2...v8.7.3) (2025-03-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* fix headers to look more proportional ([d1d9ffa](https://gitlab.com/gitlab-org/duo-ui/commit/d1d9ffa74ab578b36eba73cae5517fd2cf7d4c94))
|
|
7
|
+
|
|
1
8
|
## [8.7.2](https://gitlab.com/gitlab-org/duo-ui/compare/v8.7.1...v8.7.2) (2025-03-13)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -268,7 +268,7 @@ const __vue_script__ = script;
|
|
|
268
268
|
|
|
269
269
|
/* template */
|
|
270
270
|
var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"gl-flex gl-flex-row gl-items-end duo-chat-message-container",on:{"mouseenter":function($event){_vm.hovered = true;},"mouseleave":function($event){_vm.hovered = false;
|
|
271
|
-
_vm.copied = false;}}},[_c('div',{staticClass:"duo-chat-message gl-border gl-border-transparent gl-p-4 gl-leading-20 gl-break-anywhere",class:{
|
|
271
|
+
_vm.copied = false;}}},[_c('div',{staticClass:"duo-chat-message gl-border gl-border-transparent gl-p-4 gl-leading-20 gl-break-anywhere md",class:{
|
|
272
272
|
'gl-ml-auto gl-rounded-br-none gl-bg-feedback-info gl-text-feedback-info': _vm.isUserMessage,
|
|
273
273
|
'gl-rounded-bl-none gl-border-1 gl-border-solid gl-border-gray-50 gl-text-default':
|
|
274
274
|
_vm.isAssistantMessage,
|
package/package.json
CHANGED
|
@@ -313,7 +313,7 @@ export default {
|
|
|
313
313
|
"
|
|
314
314
|
>
|
|
315
315
|
<div
|
|
316
|
-
class="duo-chat-message gl-border gl-border-transparent gl-p-4 gl-leading-20 gl-break-anywhere"
|
|
316
|
+
class="duo-chat-message gl-border gl-border-transparent gl-p-4 gl-leading-20 gl-break-anywhere md"
|
|
317
317
|
:class="{
|
|
318
318
|
'gl-ml-auto gl-rounded-br-none gl-bg-feedback-info gl-text-feedback-info': isUserMessage,
|
|
319
319
|
'gl-rounded-bl-none gl-border-1 gl-border-solid gl-border-gray-50 gl-text-default':
|