@gitlab/ui 94.10.0 → 95.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 +35 -0
- package/dist/components/base/progress_bar/progress_bar.js +1 -1
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +6 -1
- package/dist/tokens/build/js/tokens.js +6 -1
- package/dist/tokens/css/tokens.css +5 -0
- package/dist/tokens/css/tokens.dark.css +5 -0
- package/dist/tokens/js/tokens.dark.js +5 -0
- package/dist/tokens/js/tokens.js +5 -0
- package/dist/tokens/json/tokens.dark.json +110 -0
- package/dist/tokens/json/tokens.json +110 -0
- package/dist/tokens/scss/_tokens.dark.scss +5 -0
- package/dist/tokens/scss/_tokens.scss +5 -0
- package/dist/tokens/scss/_tokens_custom_properties.scss +5 -0
- package/dist/utils/constants.js +3 -14
- package/dist/vendor/bootstrap-vue/src/components/modal/modal.js +4 -34
- package/package.json +1 -1
- package/src/components/base/progress_bar/progress_bar.scss +19 -0
- package/src/components/base/progress_bar/progress_bar.vue +1 -1
- package/src/scss/components.scss +1 -0
- package/src/tokens/build/css/tokens.css +5 -0
- package/src/tokens/build/css/tokens.dark.css +5 -0
- package/src/tokens/build/js/tokens.dark.js +5 -0
- package/src/tokens/build/js/tokens.js +5 -0
- package/src/tokens/build/json/tokens.dark.json +110 -0
- package/src/tokens/build/json/tokens.json +110 -0
- package/src/tokens/build/scss/_tokens.dark.scss +5 -0
- package/src/tokens/build/scss/_tokens.scss +5 -0
- package/src/tokens/build/scss/_tokens_custom_properties.scss +5 -0
- package/src/tokens/contextual/progress-bar.tokens.json +38 -0
- package/src/utils/constants.js +1 -11
- package/src/vendor/bootstrap-vue/src/components/modal/MODIFICATIONS.md +27 -0
- package/src/vendor/bootstrap-vue/src/components/modal/README.md +2 -118
- package/src/vendor/bootstrap-vue/src/components/modal/index.d.ts +0 -10
- package/src/vendor/bootstrap-vue/src/components/modal/modal.js +4 -43
- package/src/vendor/bootstrap-vue/src/components/modal/package.json +0 -36
- package/src/vendor/bootstrap-vue/src/components/progress/MODIFICATIONS.md +23 -0
- package/src/vendor/bootstrap-vue/src/components/progress/README.md +4 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,38 @@
|
|
|
1
|
+
# [95.0.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v94.10.0...v95.0.0) (2024-10-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **GlModal:** Remove variant options ([5580ba3](https://gitlab.com/gitlab-org/gitlab-ui/commit/5580ba31ecb247855842327684457ba63a33c3f6))
|
|
7
|
+
* **GlProgressBar:** Apply design tokens ([4776905](https://gitlab.com/gitlab-org/gitlab-ui/commit/47769055aa4da1c0b29ea9d2a514bc2e9c3957b1))
|
|
8
|
+
* **GlProgressBar:** Remove some progress bar color variants ([4a3289d](https://gitlab.com/gitlab-org/gitlab-ui/commit/4a3289d7c722fd92c70406581c87fb1cf2c910a5))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### BREAKING CHANGES
|
|
12
|
+
|
|
13
|
+
* **GlProgressBar:** * Rename variantOptions to progressBarOptions since they're only used
|
|
14
|
+
for the GlProgressBar
|
|
15
|
+
* Remove options: secondary, light, dark, info
|
|
16
|
+
* **GlModal:** Remove util constants variantOptionsWithNoDefault,
|
|
17
|
+
and possibility to apply header, body, and footer variants.
|
|
18
|
+
|
|
19
|
+
BootstrapVue's Modal supported multiple variants:
|
|
20
|
+
|
|
21
|
+
* headerBgVariant
|
|
22
|
+
* headerBorderVariant
|
|
23
|
+
* headerTextVariant
|
|
24
|
+
* headerCloseVariant
|
|
25
|
+
* bodyBgVariant
|
|
26
|
+
* bodyTextVariant
|
|
27
|
+
* footerBgVariant
|
|
28
|
+
* footerBorderVariant
|
|
29
|
+
* footerTextVariant
|
|
30
|
+
|
|
31
|
+
These attributes were passed through the GitLab UI Component to the
|
|
32
|
+
BootstrapVue's original component. These variants have never been used
|
|
33
|
+
and are now deleted. Alongside with the exported constant in the utils
|
|
34
|
+
folder.
|
|
35
|
+
|
|
1
36
|
# [94.10.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v94.9.0...v94.10.0) (2024-10-03)
|
|
2
37
|
|
|
3
38
|
|
|
@@ -13,7 +13,7 @@ var script = {
|
|
|
13
13
|
const __vue_script__ = script;
|
|
14
14
|
|
|
15
15
|
/* template */
|
|
16
|
-
var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('b-progress',_vm._b({},'b-progress',_vm.$attrs,false))};
|
|
16
|
+
var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('b-progress',_vm._b({staticClass:"gl-progress-bar"},'b-progress',_vm.$attrs,false))};
|
|
17
17
|
var __vue_staticRenderFns__ = [];
|
|
18
18
|
|
|
19
19
|
/* style */
|