@gitlab/ui 101.13.0 → 101.14.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 CHANGED
@@ -1,3 +1,10 @@
1
+ # [101.14.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v101.13.0...v101.14.0) (2024-11-07)
2
+
3
+
4
+ ### Features
5
+
6
+ * **GlToast:** Replace BootstrapCSS Util with GitLab UI Class ([57d069b](https://gitlab.com/gitlab-org/gitlab-ui/commit/57d069bc84a6d8546fb77155043f888a4adf58ce))
7
+
1
8
  # [101.13.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v101.12.0...v101.13.0) (2024-11-07)
2
9
 
3
10
 
@@ -107,7 +107,7 @@ const BToaster = /*#__PURE__*/extend({
107
107
  },
108
108
  render(h) {
109
109
  let $toaster = h('div', {
110
- class: ['d-none', {
110
+ class: ['gl-hidden', {
111
111
  'b-dead-toaster': this.dead
112
112
  }]
113
113
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "101.13.0",
3
+ "version": "101.14.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -103,7 +103,7 @@ export const BToaster = /*#__PURE__*/ extend({
103
103
  }
104
104
  },
105
105
  render(h) {
106
- let $toaster = h('div', { class: ['d-none', { 'b-dead-toaster': this.dead }] })
106
+ let $toaster = h('div', { class: ['gl-hidden', { 'b-dead-toaster': this.dead }] })
107
107
  if (this.doRender) {
108
108
  const $target = h(PortalTarget, {
109
109
  staticClass: 'b-toaster-slot',