@gitlab/ui 94.1.1 → 94.2.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 +15 -0
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +9 -1
- package/dist/tokens/build/js/tokens.js +9 -1
- package/dist/tokens/css/tokens.css +8 -0
- package/dist/tokens/css/tokens.dark.css +8 -0
- package/dist/tokens/js/tokens.dark.js +8 -0
- package/dist/tokens/js/tokens.js +8 -0
- package/dist/tokens/json/tokens.dark.json +219 -0
- package/dist/tokens/json/tokens.json +219 -0
- package/dist/tokens/scss/_tokens.dark.scss +8 -0
- package/dist/tokens/scss/_tokens.scss +8 -0
- package/dist/tokens/scss/_tokens_custom_properties.scss +8 -0
- package/package.json +1 -1
- package/src/components/base/filtered_search/filtered_search.scss +2 -2
- package/src/components/base/filtered_search/filtered_search_term.scss +1 -0
- package/src/components/base/filtered_search/filtered_search_token.scss +10 -7
- package/src/components/base/filtered_search/filtered_search_token_segment.scss +1 -0
- package/src/components/base/token/token.scss +3 -17
- package/src/tokens/build/css/tokens.css +8 -0
- package/src/tokens/build/css/tokens.dark.css +8 -0
- package/src/tokens/build/js/tokens.dark.js +8 -0
- package/src/tokens/build/js/tokens.js +8 -0
- package/src/tokens/build/json/tokens.dark.json +219 -0
- package/src/tokens/build/json/tokens.json +219 -0
- package/src/tokens/build/scss/_tokens.dark.scss +8 -0
- package/src/tokens/build/scss/_tokens.scss +8 -0
- package/src/tokens/build/scss/_tokens_custom_properties.scss +8 -0
- package/src/tokens/contextual/filtered-search.tokens.json +72 -0
- package/src/tokens/contextual/token.tokens.json +21 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
# [94.2.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v94.1.1...v94.2.0) (2024-09-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **GlFilteredSearchTerm:** remove background from input ([47a75e9](https://gitlab.com/gitlab-org/gitlab-ui/commit/47a75e9e1b0d9f65c15606f1fba5dee018e2d4eb))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **DesignTokens:** add token and filtered-search design tokens ([dbc64cc](https://gitlab.com/gitlab-org/gitlab-ui/commit/dbc64cc5979e98d8b8688a240f0757fa8db6ea93))
|
|
12
|
+
* **GlFilteredSearch:** update input background and border color ([3dcb7cd](https://gitlab.com/gitlab-org/gitlab-ui/commit/3dcb7cd8afb10fb86ab6f1cdfe4a7072ed21aba6))
|
|
13
|
+
* **GlFilteredSearchToken:** use design tokens in GlFilteredSearchToken ([fbd61c0](https://gitlab.com/gitlab-org/gitlab-ui/commit/fbd61c0bdc4fb6377d2424daef474c5ebf0229e1))
|
|
14
|
+
* **GlToken:** use design tokens in GlToken ([ce31604](https://gitlab.com/gitlab-org/gitlab-ui/commit/ce31604c2f26e6f9bca8f27e625fe854964efb48))
|
|
15
|
+
|
|
1
16
|
## [94.1.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v94.1.0...v94.1.1) (2024-09-24)
|
|
2
17
|
|
|
3
18
|
|