@gitlab/ui 42.11.0 → 42.13.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,24 @@
1
+ ## [42.13.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v42.13.0...v42.13.1) (2022-07-06)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **GlCard:** Ensure given slots are rendered ([d4a8c24](https://gitlab.com/gitlab-org/gitlab-ui/commit/d4a8c24795c8dbc8eb1eab3bdfdda6675e284495))
7
+
8
+ # [42.13.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v42.12.0...v42.13.0) (2022-07-05)
9
+
10
+
11
+ ### Features
12
+
13
+ * remove `gl-grid-gap-6` utility in favor of generic `gl-gap-6` ([7b6d680](https://gitlab.com/gitlab-org/gitlab-ui/commit/7b6d6808ea9ede7ba47b29560ec114bbcec5ef17))
14
+
15
+ # [42.12.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v42.11.0...v42.12.0) (2022-06-30)
16
+
17
+
18
+ ### Features
19
+
20
+ * **SafeHtml:** allow non-http links in urls ([ef995ed](https://gitlab.com/gitlab-org/gitlab-ui/commit/ef995edbaeecccd8d4c6a457d1c0cf9a9a350245))
21
+
1
22
  # [42.11.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v42.10.1...v42.11.0) (2022-06-29)
2
23
 
3
24
 
@@ -36,7 +36,7 @@ var script = {
36
36
  const __vue_script__ = script;
37
37
 
38
38
  /* template */
39
- var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"gl-card"},[(_vm.$slots.header)?_c('div',{staticClass:"gl-card-header",class:_vm.headerClass},[_vm._t("header")],2):_vm._e(),_vm._v(" "),_c('div',{staticClass:"gl-card-body",class:_vm.bodyClass},[_vm._t("default")],2),_vm._v(" "),(_vm.$slots.footer)?_c('div',{staticClass:"gl-card-footer",class:_vm.footerClass},[_vm._t("footer")],2):_vm._e()])};
39
+ var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"gl-card"},[(_vm.$scopedSlots.header)?_c('div',{staticClass:"gl-card-header",class:_vm.headerClass},[_vm._t("header")],2):_vm._e(),_vm._v(" "),_c('div',{staticClass:"gl-card-body",class:_vm.bodyClass},[_vm._t("default")],2),_vm._v(" "),(_vm.$scopedSlots.footer)?_c('div',{staticClass:"gl-card-footer",class:_vm.footerClass},[_vm._t("footer")],2):_vm._e()])};
40
40
  var __vue_staticRenderFns__ = [];
41
41
 
42
42
  /* style */
@@ -8,6 +8,7 @@ import { forbiddenDataAttrs } from './constants';
8
8
 
9
9
  const DEFAULT_CONFIG = {
10
10
  RETURN_DOM_FRAGMENT: true,
11
+ ALLOW_UNKNOWN_PROTOCOLS: true,
11
12
  FORBID_ATTR: [...forbiddenDataAttrs]
12
13
  };
13
14