@kaizen/components 0.0.0-canary-add-components-layer-20250430022335 → 0.0.0-canary-add-components-layer-20250501050124

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
@@ -8286,7 +8286,8 @@
8286
8286
  line-height: var(--typography-paragraph-body-line-height, 1.5rem);
8287
8287
  letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
8288
8288
  position: relative;
8289
- white-space: pre-wrap;
8289
+ /* stylelint-disable-next-line declaration-no-important */
8290
+ white-space: pre-wrap !important;
8290
8291
  box-sizing: content-box;
8291
8292
  color: var(--color-purple-800, #2f2438);
8292
8293
  }
@@ -8644,7 +8645,8 @@
8644
8645
  line-height: var(--typography-paragraph-body-line-height, 1.5rem);
8645
8646
  letter-spacing: var(--typography-paragraph-body-letter-spacing, normal);
8646
8647
  position: relative;
8647
- white-space: pre-wrap;
8648
+ /* stylelint-disable-next-line declaration-no-important */
8649
+ white-space: pre-wrap !important;
8648
8650
  box-sizing: content-box;
8649
8651
  color: var(--color-purple-800, #2f2438);
8650
8652
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaizen/components",
3
- "version": "0.0.0-canary-add-components-layer-20250430022335",
3
+ "version": "0.0.0-canary-add-components-layer-20250501050124",
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