@gitlab/ui 64.2.1 → 64.2.2

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
+ ## [64.2.2](https://gitlab.com/gitlab-org/gitlab-ui/compare/v64.2.1...v64.2.2) (2023-06-02)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **sass:** revert migration from `/` operator to `calc()` ([5b5fc0b](https://gitlab.com/gitlab-org/gitlab-ui/commit/5b5fc0beaa7f90fdbe4c1b4bd4d583cf2de9b2be))
7
+
1
8
  ## [64.2.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v64.2.0...v64.2.1) (2023-06-02)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "64.2.1",
3
+ "version": "64.2.2",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -21,7 +21,7 @@
21
21
  @return $value;
22
22
  }
23
23
 
24
- $converted: calc($value / $font-size-base);
24
+ $converted: $value / $font-size-base;
25
25
 
26
26
  @return strip-unit($converted) * 1rem;
27
27
  }
@@ -54,7 +54,7 @@
54
54
  $min-width: px-to-rem($min-width);
55
55
  $max-width: px-to-rem($max-width);
56
56
 
57
- $slope: calc(($max - $min) / ($max-width - $min-width));
57
+ $slope: ($max - $min) / ($max-width - $min-width);
58
58
  $intersection: (-$min-width * $slope) + $min;
59
59
 
60
60
  // Use calc() inside of clamp() function to work around SassC