@gitlab/ui 85.5.0 → 85.6.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 +7 -0
- package/dist/components/base/banner/banner.js +1 -2
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +4 -1
- package/dist/tokens/build/js/tokens.js +4 -1
- package/dist/tokens/css/tokens.css +3 -0
- package/dist/tokens/css/tokens.dark.css +3 -0
- package/dist/tokens/js/tokens.dark.js +3 -0
- package/dist/tokens/js/tokens.js +3 -0
- package/dist/tokens/json/tokens.dark.json +82 -0
- package/dist/tokens/json/tokens.json +82 -0
- package/dist/tokens/scss/_tokens.dark.scss +3 -0
- package/dist/tokens/scss/_tokens.scss +3 -0
- package/dist/tokens/scss/_tokens_custom_properties.scss +3 -0
- package/package.json +1 -1
- package/src/components/base/banner/banner.scss +8 -2
- package/src/components/base/banner/banner.vue +1 -2
- package/src/components/base/popover/popover.scss +15 -3
- package/src/tokens/build/css/tokens.css +3 -0
- package/src/tokens/build/css/tokens.dark.css +3 -0
- package/src/tokens/build/js/tokens.dark.js +3 -0
- package/src/tokens/build/js/tokens.js +3 -0
- package/src/tokens/build/json/tokens.dark.json +82 -0
- package/src/tokens/build/json/tokens.json +82 -0
- package/src/tokens/build/scss/_tokens.dark.scss +3 -0
- package/src/tokens/build/scss/_tokens.scss +3 -0
- package/src/tokens/build/scss/_tokens_custom_properties.scss +3 -0
- package/src/tokens/contextual/banner.tokens.json +28 -0
- package/src/tokens/contextual/popover.tokens.json +14 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [85.6.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v85.5.0...v85.6.0) (2024-06-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **GlBanner:** Use color design tokens ([aacd102](https://gitlab.com/gitlab-org/gitlab-ui/commit/aacd1023a8412d3fb03de41390c0f61c6c810a6b))
|
|
7
|
+
|
|
1
8
|
# [85.5.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v85.4.1...v85.5.0) (2024-06-27)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -101,9 +101,8 @@ var script = {
|
|
|
101
101
|
const __vue_script__ = script;
|
|
102
102
|
|
|
103
103
|
/* template */
|
|
104
|
-
var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('gl-card',{staticClass:"gl-pl-6 gl-pr-8 gl-py-6",class:{
|
|
104
|
+
var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('gl-card',{staticClass:"gl-banner gl-pl-6 gl-pr-8 gl-py-6",class:{
|
|
105
105
|
'gl-banner-introduction': _vm.isIntroducing,
|
|
106
|
-
'gl-bg-gray-10!': !_vm.isIntroducing,
|
|
107
106
|
},attrs:{"body-class":"gl-display-flex gl-p-0!"}},[(_vm.svgPath)?_c('div',{staticClass:"gl-banner-illustration"},[_c('img',{attrs:{"src":_vm.svgPath,"alt":""}})]):_vm._e(),_vm._v(" "),_c('div',{staticClass:"gl-banner-content"},[_c('h2',{staticClass:"gl-banner-title"},[_vm._v(_vm._s(_vm.title))]),_vm._v(" "),_vm._t("default"),_vm._v(" "),_c('gl-button',_vm._b({attrs:{"variant":"confirm","category":"primary","data-testid":"gl-banner-primary-button","href":_vm.buttonLink},on:{"click":_vm.primaryButtonClicked}},'gl-button',_vm.buttonAttributes,false),[_vm._v(_vm._s(_vm.buttonText))]),_vm._v(" "),_vm._t("actions")],2),_vm._v(" "),_c('close-button',{staticClass:"gl-banner-close",attrs:{"label":_vm.dismissLabel},on:{"click":_vm.handleClose}})],1)};
|
|
108
107
|
var __vue_staticRenderFns__ = [];
|
|
109
108
|
|