@gitlab/ui 80.7.2 → 80.8.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 +18 -0
- package/dist/components/base/button/button.js +1 -2
- package/dist/components/base/form/form_textarea/form_textarea.js +1 -1
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/tailwind.css +1 -1
- package/dist/tailwind.css.map +1 -1
- package/dist/utility_classes.css +1 -1
- package/dist/utility_classes.css.map +1 -1
- package/package.json +2 -2
- package/src/components/base/alert/alert.scss +4 -0
- package/src/components/base/avatar_labeled/avatar_labeled.scss +1 -1
- package/src/components/base/badge/badge.scss +4 -0
- package/src/components/base/button/button.scss +33 -0
- package/src/components/base/button/button.vue +1 -9
- package/src/components/base/form/form_checkbox/form_checkbox.scss +25 -1
- package/src/components/base/form/form_combobox/form_combobox.stories.js +1 -1
- package/src/components/base/form/form_input/form_input.scss +4 -0
- package/src/components/base/form/form_select/form_select.scss +5 -0
- package/src/components/base/form/form_textarea/form_textarea.vue +3 -3
- package/src/components/base/label/label.scss +8 -0
- package/src/components/base/new_dropdowns/disclosure/disclosure_dropdown.stories.js +1 -1
- package/src/components/base/new_dropdowns/listbox/listbox.md +1 -1
- package/src/components/base/new_dropdowns/listbox/listbox.stories.js +2 -2
- package/src/components/experimental/duo/chat/components/duo_chat_message/duo_chat_message.scss +1 -1
- package/src/internal/color_contrast/color_contrast.vue +1 -1
- package/src/scss/mixins.scss +12 -0
- package/src/scss/storybook.scss +2 -2
- package/src/scss/variables.scss +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## [80.8.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v80.8.0...v80.8.1) (2024-05-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **GlDuoChat:** less specificity for code CSS ([6519f66](https://gitlab.com/gitlab-org/gitlab-ui/commit/6519f66ce0b38593578f65670838a394b4826ebf))
|
|
7
|
+
|
|
8
|
+
# [80.8.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v80.7.2...v80.8.0) (2024-05-09)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **ForcedColorsMode:** Improve readability of components ([d968b6d](https://gitlab.com/gitlab-org/gitlab-ui/commit/d968b6db2ecb18eb5299ea1825d9699aacd3168d))
|
|
14
|
+
* **ForcedColorsMode:** Improve readability of components ([3d918b7](https://gitlab.com/gitlab-org/gitlab-ui/commit/3d918b7965d859ca4864714f181026066c3c03fc))
|
|
15
|
+
* **ForcedColorsMode:** Improve readability of components ([d00e2e3](https://gitlab.com/gitlab-org/gitlab-ui/commit/d00e2e3470507ad127fb575a179b56834a7f78b1))
|
|
16
|
+
* **ForcedColorsMode:** Improve readability of components ([65ed389](https://gitlab.com/gitlab-org/gitlab-ui/commit/65ed3898e7ce88d21b03024446024108c7beaaa1))
|
|
17
|
+
* **ForcedColorsMode:** Improve readability of components ([69f82f7](https://gitlab.com/gitlab-org/gitlab-ui/commit/69f82f7adad75e43d5c0917813b9c59a61791aa1))
|
|
18
|
+
|
|
1
19
|
## [80.7.2](https://gitlab.com/gitlab-org/gitlab-ui/compare/v80.7.1...v80.7.2) (2024-05-09)
|
|
2
20
|
|
|
3
21
|
|
|
@@ -83,8 +83,7 @@ var script = {
|
|
|
83
83
|
},
|
|
84
84
|
buttonClasses() {
|
|
85
85
|
const classes = ['gl-button'];
|
|
86
|
-
|
|
87
|
-
if (!nonCategoryVariants.includes(this.variant) && this.category !== buttonCategoryOptions.primary) {
|
|
86
|
+
if (this.category !== buttonCategoryOptions.primary) {
|
|
88
87
|
classes.push(`btn-${this.variant}-${this.category}`);
|
|
89
88
|
}
|
|
90
89
|
classes.push({
|
|
@@ -84,7 +84,7 @@ var script = {
|
|
|
84
84
|
return this.remainingCharacterCount < 0;
|
|
85
85
|
},
|
|
86
86
|
characterCountTextClass() {
|
|
87
|
-
return this.isCharacterCountOverLimit ? 'gl-text-
|
|
87
|
+
return this.isCharacterCountOverLimit ? 'gl-text-danger' : 'gl-text-subtle';
|
|
88
88
|
},
|
|
89
89
|
showCharacterCount() {
|
|
90
90
|
return this.characterCount !== null;
|