@kaizen/components 1.77.2 → 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
@@ -8388,7 +8388,8 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
8388
8388
  line-height: var(--typography-paragraph-body-line-height, 1.5rem);
8389
8389
  letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
8390
8390
  position: relative;
8391
- white-space: pre-wrap;
8391
+ /* stylelint-disable-next-line declaration-no-important */
8392
+ white-space: pre-wrap !important;
8392
8393
  box-sizing: content-box;
8393
8394
  color: var(--color-purple-800, #2f2438);
8394
8395
  }
@@ -8747,7 +8748,8 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
8747
8748
  line-height: var(--typography-paragraph-body-line-height, 1.5rem);
8748
8749
  letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
8749
8750
  position: relative;
8750
- white-space: pre-wrap;
8751
+ /* stylelint-disable-next-line declaration-no-important */
8752
+ white-space: pre-wrap !important;
8751
8753
  box-sizing: content-box;
8752
8754
  color: var(--color-purple-800, #2f2438);
8753
8755
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaizen/components",
3
- "version": "1.77.2",
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