@warp-ds/css 1.4.0 → 1.4.1

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.
@@ -478,3 +478,6 @@ export namespace attention {
478
478
  export const notCallout: string;
479
479
  export const closeBtn: string;
480
480
  }
481
+ export namespace backwardsCompatibleClasses {
482
+ const modalBackdrop: string;
483
+ }
@@ -544,3 +544,7 @@ export const attention = {
544
544
  notCallout: 'absolute z-50',
545
545
  closeBtn: `${buttonTextSizes.medium} ${buttonTypes.pill} ${buttonColors.pill} justify-self-end -mr-8 ml-8`,
546
546
  };
547
+
548
+ export const backwardsCompatibleClasses = {
549
+ modalBackdrop: 'z-20', // replaced by z-30 in v1.4.0
550
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@warp-ds/css",
3
3
  "repository": "git@github.com:warp-ds/css.git",
4
- "version": "1.4.0",
4
+ "version": "1.4.1",
5
5
  "scripts": {
6
6
  "build": "pnpm build:tokens && pnpm build:resets && pnpm build:cc",
7
7
  "commit": "cz",