@crystallize/design-system 1.24.22 → 1.24.24

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crystallize/design-system",
3
- "version": "1.24.22",
3
+ "version": "1.24.24",
4
4
  "types": "./dist/index.d.ts",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -86,6 +86,8 @@ export type ButtonProps = ComponentPropsWithRef<'button'> &
86
86
  // To support this button being used as a link
87
87
  to?: string;
88
88
  href?: string;
89
+ target?: string;
90
+ rel?: string;
89
91
  };
90
92
 
91
93
  const spinnerSizeMap: Record<NonNullable<ButtonProps['size']>, number> = {
@@ -3,5 +3,5 @@
3
3
  }
4
4
 
5
5
  .c-progress-indicator {
6
- @apply h-full w-full bg-cyan-300-600 duration-500 ease-linear;
6
+ @apply h-full w-full rounded-full bg-cyan-300-600 duration-500 ease-linear;
7
7
  }