@gitlab/ui 72.5.0 → 72.5.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 +7 -0
- package/dist/tokens/common_story_options.js +1 -1
- package/dist/tokens/css/tokens.css +1 -1
- package/dist/tokens/css/tokens.dark.css +1 -1
- package/dist/tokens/js/tokens.dark.js +1 -1
- package/dist/tokens/js/tokens.js +1 -1
- package/dist/tokens/scss/_tokens.dark.scss +1 -1
- package/dist/tokens/scss/_tokens.scss +1 -1
- package/dist/utility_classes.css +1 -1
- package/dist/utility_classes.css.map +1 -1
- package/package.json +1 -1
- package/src/scss/utilities.scss +8 -0
- package/src/scss/utility-mixins/background.scss +4 -0
- package/src/tokens/common_story_options.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [72.5.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v72.5.0...v72.5.1) (2024-01-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **DesignTokens:** use gray-950 for dark color contrast background ([58dc59c](https://gitlab.com/gitlab-org/gitlab-ui/commit/58dc59c59ab5e49f5d84b2fb69d9ae0594ff5b31))
|
|
7
|
+
|
|
1
8
|
# [72.5.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v72.4.0...v72.5.0) (2024-01-09)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -87,7 +87,7 @@ const template = `
|
|
|
87
87
|
<code class="gl-reset-color">{{ token.$value }}</code>
|
|
88
88
|
<code
|
|
89
89
|
v-if="!isAlpha(token.$value)"
|
|
90
|
-
class="gl-w-10 gl-text-center gl-rounded-base gl-font-xs gl-p-2 gl-bg-gray-
|
|
90
|
+
class="gl-w-10 gl-text-center gl-rounded-base gl-font-xs gl-p-2 gl-bg-gray-950"
|
|
91
91
|
:class="getColorContrastClass('dark', token.$value)"
|
|
92
92
|
>
|
|
93
93
|
{{ getColorContrast('dark', token.$value).level.grade }}
|
package/dist/tokens/js/tokens.js
CHANGED