@gitlab/ui 77.1.0 → 77.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 CHANGED
@@ -1,3 +1,10 @@
1
+ # [77.2.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v77.1.0...v77.2.0) (2024-02-27)
2
+
3
+
4
+ ### Features
5
+
6
+ * **tailwind:** add screens to the preset ([d6835dd](https://gitlab.com/gitlab-org/gitlab-ui/commit/d6835ddac49021e38452eb36d647e4ae59bc4ac2))
7
+
1
8
  # [77.1.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v77.0.0...v77.1.0) (2024-02-27)
2
9
 
3
10
 
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 27 Feb 2024 16:44:07 GMT
3
+ * Generated on Tue, 27 Feb 2024 18:50:13 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 27 Feb 2024 16:44:07 GMT
3
+ * Generated on Tue, 27 Feb 2024 18:50:13 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 Tue, 27 Feb 2024 16:44:07 GMT
3
+ * Generated on Tue, 27 Feb 2024 18:50:13 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 Tue, 27 Feb 2024 16:44:07 GMT
3
+ * Generated on Tue, 27 Feb 2024 18:50:13 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 Tue, 27 Feb 2024 16:44:08 GMT
3
+ // Generated on Tue, 27 Feb 2024 18:50:13 GMT
4
4
 
5
5
  $red-950: #fff4f3;
6
6
  $red-900: #fcf1ef;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Tue, 27 Feb 2024 16:44:07 GMT
3
+ // Generated on Tue, 27 Feb 2024 18:50:13 GMT
4
4
 
5
5
  $gl-line-height-52: 3.25rem;
6
6
  $gl-line-height-44: 2.75rem;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "77.1.0",
3
+ "version": "77.2.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -59,6 +59,12 @@ const spacing = {
59
59
  module.exports = {
60
60
  prefix: 'gl-',
61
61
  theme: {
62
+ screens: {
63
+ sm: '576px',
64
+ md: '768px',
65
+ lg: '992px',
66
+ xl: '1200px',
67
+ },
62
68
  colors: {
63
69
  white: `var(--white, ${baseColorTokens.white.$value})`,
64
70
  black: `var(--black, ${baseColorTokens.black.$value})`,