@gitlab/ui 103.7.0 → 104.0.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 +19 -0
- package/dist/components/base/breadcrumb/breadcrumb.js +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/tailwind.css +1 -1
- package/dist/tailwind.css.map +1 -1
- package/dist/utils/constants.js +1 -4
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-empty.js +1 -1
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-thead.js +2 -2
- package/package.json +1 -1
- package/src/components/base/breadcrumb/breadcrumb.vue +1 -1
- package/src/components/base/button/button.scss +3 -109
- package/src/components/base/dropdown/dropdown.scss +0 -2
- package/src/utils/constants.js +1 -4
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-empty.js +1 -1
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-thead.js +4 -2
- package/src/vendor/bootstrap-vue/src/components/table/table-sorting.spec.js +22 -22
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
# [104.0.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v103.7.1...v104.0.0) (2024-11-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **Button:** Remove deprecated button variants ([2da00cd](https://gitlab.com/gitlab-org/gitlab-ui/commit/2da00cd5573ba4a3d0dcb8e57fb287884a2aa3af))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### BREAKING CHANGES
|
|
10
|
+
|
|
11
|
+
* **Button:** Removes the success and info variants.
|
|
12
|
+
|
|
13
|
+
## [103.7.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v103.7.0...v103.7.1) (2024-11-27)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **GlBreadcrumbs:** alignment of text when avatar is present ([dde617a](https://gitlab.com/gitlab-org/gitlab-ui/commit/dde617acf084a98ef609d74d7e7600dbb24bd166))
|
|
19
|
+
|
|
1
20
|
# [103.7.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v103.6.1...v103.7.0) (2024-11-26)
|
|
2
21
|
|
|
3
22
|
|
|
@@ -194,7 +194,7 @@ var script = {
|
|
|
194
194
|
const __vue_script__ = script;
|
|
195
195
|
|
|
196
196
|
/* template */
|
|
197
|
-
var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('nav',{staticClass:"gl-breadcrumbs",style:(_vm.breadcrumbStyle),attrs:{"aria-label":_vm.ariaLabel}},[_c('b-breadcrumb',_vm._g(_vm._b({staticClass:"gl-breadcrumb-list"},'b-breadcrumb',_vm.$attrs,false),_vm.$listeners),[(_vm.hasCollapsible)?_c('li',{staticClass:"gl-breadcrumb-item"},[_c('gl-disclosure-dropdown',{attrs:{"items":_vm.overflowingItems,"toggle-text":_vm.showMoreLabel,"fluid-width":"","text-sr-only":"","no-caret":"","icon":"ellipsis_h","size":"small"}})],1):_vm._e(),_vm._v(" "),_vm._l((_vm.fittingItems),function(item,index){return _c('gl-breadcrumb-item',{key:index,ref:"breadcrumbs",refInFor:true,style:(_vm.itemStyle),attrs:{"text":item.text,"href":item.href,"to":item.to,"aria-current":_vm.getAriaCurrentAttr(index)}},[(item.avatarPath)?_c('gl-avatar',{staticClass:"gl-breadcrumb-avatar-tile gl-border gl-mr-2 !gl-rounded-base",attrs:{"src":item.avatarPath,"size":16,"aria-hidden":"true","shape":"rect","data-testid":"avatar"}}):_vm._e(),_c('span',[_vm._v(_vm._s(item.text))])],1)})],2)],1)};
|
|
197
|
+
var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('nav',{staticClass:"gl-breadcrumbs",style:(_vm.breadcrumbStyle),attrs:{"aria-label":_vm.ariaLabel}},[_c('b-breadcrumb',_vm._g(_vm._b({staticClass:"gl-breadcrumb-list"},'b-breadcrumb',_vm.$attrs,false),_vm.$listeners),[(_vm.hasCollapsible)?_c('li',{staticClass:"gl-breadcrumb-item"},[_c('gl-disclosure-dropdown',{attrs:{"items":_vm.overflowingItems,"toggle-text":_vm.showMoreLabel,"fluid-width":"","text-sr-only":"","no-caret":"","icon":"ellipsis_h","size":"small"}})],1):_vm._e(),_vm._v(" "),_vm._l((_vm.fittingItems),function(item,index){return _c('gl-breadcrumb-item',{key:index,ref:"breadcrumbs",refInFor:true,style:(_vm.itemStyle),attrs:{"text":item.text,"href":item.href,"to":item.to,"aria-current":_vm.getAriaCurrentAttr(index)}},[(item.avatarPath)?_c('gl-avatar',{staticClass:"gl-breadcrumb-avatar-tile gl-border gl-mr-2 !gl-rounded-base",attrs:{"src":item.avatarPath,"size":16,"aria-hidden":"true","shape":"rect","data-testid":"avatar"}}):_vm._e(),_c('span',{staticClass:"gl-align-middle"},[_vm._v(_vm._s(item.text))])],1)})],2)],1)};
|
|
198
198
|
var __vue_staticRenderFns__ = [];
|
|
199
199
|
|
|
200
200
|
/* style */
|