@gitlab/ui 78.13.0 → 78.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
+ # [78.14.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v78.13.0...v78.14.0) (2024-04-12)
2
+
3
+
4
+ ### Features
5
+
6
+ * **tailwind:** add transparent to supported colors ([8b43228](https://gitlab.com/gitlab-org/gitlab-ui/commit/8b43228294ee2c0d5adf864e5281fe73e9f79cc0))
7
+
1
8
  # [78.13.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v78.12.0...v78.13.0) (2024-04-11)
2
9
 
3
10
 
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 11 Apr 2024 19:09:08 GMT
3
+ * Generated on Fri, 12 Apr 2024 16:19:06 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 11 Apr 2024 19:09:09 GMT
3
+ * Generated on Fri, 12 Apr 2024 16:19:06 GMT
4
4
  */
5
5
 
6
6
  :root.gl-dark {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 11 Apr 2024 19:09:09 GMT
3
+ * Generated on Fri, 12 Apr 2024 16:19:06 GMT
4
4
  */
5
5
 
6
6
  export const DATA_VIZ_GREEN_50 = "#133a03";
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 11 Apr 2024 19:09:08 GMT
3
+ * Generated on Fri, 12 Apr 2024 16:19:06 GMT
4
4
  */
5
5
 
6
6
  export const DATA_VIZ_GREEN_50 = "#ddfab7";
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Thu, 11 Apr 2024 19:09:09 GMT
3
+ // Generated on Fri, 12 Apr 2024 16:19:06 GMT
4
4
 
5
5
  $gl-text-tertiary: #737278 !default;
6
6
  $gl-text-secondary: #89888d !default;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Thu, 11 Apr 2024 19:09:08 GMT
3
+ // Generated on Fri, 12 Apr 2024 16:19:06 GMT
4
4
 
5
5
  $gl-text-tertiary: #89888d !default;
6
6
  $gl-text-secondary: #737278 !default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "78.13.0",
3
+ "version": "78.14.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -32,6 +32,7 @@ const textColors = Object.entries(COMPILED_TOKENS.text).reduce((acc, [scale, tok
32
32
  }, {});
33
33
 
34
34
  const colors = {
35
+ transparent: 'transparent',
35
36
  white: cssCustomPropertyWithValue(COMPILED_TOKENS.white),
36
37
  black: cssCustomPropertyWithValue(COMPILED_TOKENS.black),
37
38
  ...baseColors,