Update dependency @gitlab/ui to v94
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
@gitlab/ui | dependencies | major | 93.2.0 -> 94.0.0 |
MR created with the help of gitlab-org/frontend/renovate-gitlab-bot
Release Notes
gitlab-org/gitlab-ui (@gitlab/ui)
v94.0.0
Bug Fixes
- GlTable: do not override CSS utils styling (9c3ce10)
BREAKING CHANGES
-
GlTable: This rewrites how
GlTable
'sTH
elements text alignment is applied. If you were previously passinggl-text-right
to a table'sthClass
field option, you should migrate to thethAlignRight
option instead. Not migrating could cause rendering issues in right-aligned sortable columns.
Before:
const fields = [
{
key: "column_one",
label: __("First column"),
sortable: true,
thClass: 'gl-text-right',
},
];
After:
const fields = [
{
key: "column_one",
label: __("First column"),
sortable: true,
thAlignRight: true,
},
];
v93.4.0
Features
- DuoChat: Remove "generated by AI" message (0e6c72b)
v93.3.0
Features
- DuoChatContextItemPopover: fix styling for long strings (b7b4517)
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.