@gitlab/ui 43.3.0 → 43.4.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": "43.3.0",
3
+ "version": "43.4.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -3778,6 +3778,14 @@
3778
3778
  overflow-wrap: anywhere !important
3779
3779
  }
3780
3780
 
3781
+ .gl-overflow-x-scroll {
3782
+ overflow-x: scroll
3783
+ }
3784
+
3785
+ .gl-overflow-x-scroll\! {
3786
+ overflow-x: scroll !important
3787
+ }
3788
+
3781
3789
  .gl-overflow-scroll {
3782
3790
  overflow: scroll
3783
3791
  }
@@ -7478,9 +7486,27 @@
7478
7486
  .gl-text-decoration-underline {
7479
7487
  text-decoration: underline;
7480
7488
  }
7489
+ .gl-active-text-decoration-underline:active {
7490
+ text-decoration: underline;
7491
+ }
7492
+ .gl-focus-text-decoration-underline:focus {
7493
+ text-decoration: underline;
7494
+ }
7495
+ .gl-hover-text-decoration-underline:hover {
7496
+ text-decoration: underline;
7497
+ }
7481
7498
  .gl-text-decoration-underline\! {
7482
7499
  text-decoration: underline !important;
7483
7500
  }
7501
+ .gl-active-text-decoration-underline\!:active {
7502
+ text-decoration: underline !important;
7503
+ }
7504
+ .gl-focus-text-decoration-underline\!:focus {
7505
+ text-decoration: underline !important;
7506
+ }
7507
+ .gl-hover-text-decoration-underline\!:hover {
7508
+ text-decoration: underline !important;
7509
+ }
7484
7510
  .gl-reset-text-decoration-color {
7485
7511
  text-decoration-color: inherit;
7486
7512
  }
@@ -28,6 +28,10 @@
28
28
  overflow-wrap: anywhere;
29
29
  }
30
30
 
31
+ @mixin gl-overflow-x-scroll {
32
+ overflow-x: scroll;
33
+ }
34
+
31
35
  @mixin gl-overflow-scroll {
32
36
  overflow: scroll;
33
37
  }
@@ -26,7 +26,7 @@
26
26
  text-decoration: none;
27
27
  }
28
28
 
29
- @mixin gl-text-decoration-underline {
29
+ @mixin gl-text-decoration-underline($active: true, $focus: true, $hover: true) {
30
30
  text-decoration: underline;
31
31
  }
32
32