@gitlab/ui 42.24.1 → 42.25.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "42.24.1",
3
+ "version": "42.25.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -106,7 +106,7 @@
106
106
  "bootstrap": "4.5.3",
107
107
  "cypress": "^6.6.0",
108
108
  "emoji-regex": "^10.0.0",
109
- "eslint": "8.19.0",
109
+ "eslint": "8.20.0",
110
110
  "eslint-import-resolver-jest": "3.0.2",
111
111
  "eslint-plugin-cypress": "2.12.1",
112
112
  "eslint-plugin-storybook": "0.6.1",
@@ -7499,6 +7499,12 @@
7499
7499
  .gl-text-transform-none\! {
7500
7500
  text-transform: none !important;
7501
7501
  }
7502
+ .gl-text-transform-capitalize {
7503
+ text-transform: capitalize;
7504
+ }
7505
+ .gl-text-transform-capitalize\! {
7506
+ text-transform: capitalize !important;
7507
+ }
7502
7508
  .gl-text-overflow-ellipsis {
7503
7509
  text-overflow: ellipsis;
7504
7510
  }
@@ -50,6 +50,10 @@
50
50
  text-transform: none;
51
51
  }
52
52
 
53
+ @mixin gl-text-transform-capitalize {
54
+ text-transform: capitalize;
55
+ }
56
+
53
57
  /**
54
58
  * Text overflow utilities
55
59
  *