@gitlab/ui 49.11.0 → 49.11.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,10 @@
|
|
|
1
|
+
## [49.11.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v49.11.0...v49.11.1) (2022-11-16)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Updated semantics of the drawer ([a1f00ae](https://gitlab.com/gitlab-org/gitlab-ui/commit/a1f00ae70442a4c7923f26e0d3933802670210d8))
|
|
7
|
+
|
|
1
8
|
# [49.11.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v49.10.1...v49.11.0) (2022-11-16)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -91,7 +91,7 @@ var script = {
|
|
|
91
91
|
const __vue_script__ = script;
|
|
92
92
|
|
|
93
93
|
/* template */
|
|
94
|
-
var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('transition',{attrs:{"name":"gl-drawer"}},[(_vm.open)?_c('aside',{staticClass:"gl-drawer",class:_vm.variantClass,style:(_vm.drawerStyles)},[_c('div',{staticClass:"gl-drawer-header",class:{ 'gl-drawer-header-sticky': _vm.headerSticky },style:(_vm.drawerHeaderStyles)},[_c('
|
|
94
|
+
var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('transition',{attrs:{"name":"gl-drawer"}},[(_vm.open)?_c('aside',{staticClass:"gl-drawer",class:_vm.variantClass,style:(_vm.drawerStyles)},[_c('div',{staticClass:"gl-drawer-header",class:{ 'gl-drawer-header-sticky': _vm.headerSticky },style:(_vm.drawerHeaderStyles)},[_c('div',{staticClass:"gl-drawer-title"},[_vm._t("title"),_vm._v(" "),_c('gl-button',{staticClass:"gl-drawer-close-button",attrs:{"category":"tertiary","size":"small","icon":"close","aria-label":"Close drawer"},on:{"click":function($event){return _vm.$emit('close')}}})],2),_vm._v(" "),_vm._t("header")],2),_vm._v(" "),_c('div',{staticClass:"gl-drawer-body",class:{ 'gl-drawer-body-scrim': !_vm.shouldRenderFooter }},[_vm._t("default")],2),_vm._v(" "),(_vm.shouldRenderFooter)?_c('div',{staticClass:"gl-drawer-footer gl-drawer-footer-sticky",class:{ 'gl-drawer-body-scrim-on-footer': _vm.shouldRenderFooter },style:({ zIndex: _vm.zIndex })},[_vm._t("footer")],2):_vm._e()]):_vm._e()])};
|
|
95
95
|
var __vue_staticRenderFns__ = [];
|
|
96
96
|
|
|
97
97
|
/* style */
|
package/package.json
CHANGED
|
@@ -98,7 +98,7 @@ export default {
|
|
|
98
98
|
:style="drawerHeaderStyles"
|
|
99
99
|
:class="{ 'gl-drawer-header-sticky': headerSticky }"
|
|
100
100
|
>
|
|
101
|
-
<
|
|
101
|
+
<div class="gl-drawer-title">
|
|
102
102
|
<slot name="title"></slot>
|
|
103
103
|
<gl-button
|
|
104
104
|
category="tertiary"
|
|
@@ -108,7 +108,7 @@ export default {
|
|
|
108
108
|
aria-label="Close drawer"
|
|
109
109
|
@click="$emit('close')"
|
|
110
110
|
/>
|
|
111
|
-
</
|
|
111
|
+
</div>
|
|
112
112
|
<slot name="header"></slot>
|
|
113
113
|
</div>
|
|
114
114
|
<div class="gl-drawer-body" :class="{ 'gl-drawer-body-scrim': !shouldRenderFooter }">
|