@gitlab/ui 32.64.1 → 32.65.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": "32.64.1",
3
+ "version": "32.65.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -3356,6 +3356,22 @@
3356
3356
  opacity: 0.5 !important
3357
3357
  }
3358
3358
 
3359
+ .gl-opacity-6 {
3360
+ opacity: 0.6
3361
+ }
3362
+
3363
+ .gl-opacity-6\! {
3364
+ opacity: 0.6 !important
3365
+ }
3366
+
3367
+ .gl-opacity-7 {
3368
+ opacity: 0.7
3369
+ }
3370
+
3371
+ .gl-opacity-7\! {
3372
+ opacity: 0.7 !important
3373
+ }
3374
+
3359
3375
  .gl-opacity-10 {
3360
3376
  opacity: 1
3361
3377
  }
@@ -19,6 +19,14 @@
19
19
  opacity: 0.5;
20
20
  }
21
21
 
22
+ @mixin gl-opacity-6 {
23
+ opacity: 0.6;
24
+ }
25
+
26
+ @mixin gl-opacity-7 {
27
+ opacity: 0.7;
28
+ }
29
+
22
30
  @mixin gl-opacity-10 {
23
31
  opacity: 1;
24
32
  }