@kaizen/components 1.77.1 → 1.77.3

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/dist/styles.css CHANGED
@@ -1898,6 +1898,7 @@
1898
1898
  position: relative;
1899
1899
  border: 1px solid transparent;
1900
1900
  border-radius: var(--border-borderless-border-radius);
1901
+ z-index: 0;
1901
1902
  }
1902
1903
 
1903
1904
  /* This absolute element is used to give the illusion of a gradient border without expanding the size of the Well/Card */
@@ -8387,7 +8388,8 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
8387
8388
  line-height: var(--typography-paragraph-body-line-height, 1.5rem);
8388
8389
  letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
8389
8390
  position: relative;
8390
- white-space: pre-wrap;
8391
+ /* stylelint-disable-next-line declaration-no-important */
8392
+ white-space: pre-wrap !important;
8391
8393
  box-sizing: content-box;
8392
8394
  color: var(--color-purple-800, #2f2438);
8393
8395
  }
@@ -8746,7 +8748,8 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
8746
8748
  line-height: var(--typography-paragraph-body-line-height, 1.5rem);
8747
8749
  letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
8748
8750
  position: relative;
8749
- white-space: pre-wrap;
8751
+ /* stylelint-disable-next-line declaration-no-important */
8752
+ white-space: pre-wrap !important;
8750
8753
  box-sizing: content-box;
8751
8754
  color: var(--color-purple-800, #2f2438);
8752
8755
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaizen/components",
3
- "version": "1.77.1",
3
+ "version": "1.77.3",
4
4
  "description": "Kaizen component library",
5
5
  "author": "Geoffrey Chong <geoff.chong@cultureamp.com>",
6
6
  "homepage": "https://cultureamp.design",
@@ -9,7 +9,8 @@
9
9
  line-height: $typography-paragraph-body-line-height;
10
10
  letter-spacing: $typography-paragraph-body-letter-spacing;
11
11
  position: relative;
12
- white-space: pre-wrap;
12
+ /* stylelint-disable-next-line declaration-no-important */
13
+ white-space: pre-wrap !important; // Override unlayered TipTap styles from within components layer
13
14
  box-sizing: content-box;
14
15
  color: $color-purple-800;
15
16