@algorithm-shift/design-system 1.2.29 → 1.2.30

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/index.d.mts CHANGED
@@ -99,7 +99,7 @@ interface LogoProps extends ElementProps {
99
99
  altText?: string;
100
100
  }
101
101
 
102
- interface ButtonProps extends ElementProps {
102
+ type ButtonProps = ElementProps & React.ComponentProps<"button"> & {
103
103
  textContent?: string;
104
104
  type?: 'button' | 'submit';
105
105
  }
package/dist/index.d.ts CHANGED
@@ -99,7 +99,7 @@ interface LogoProps extends ElementProps {
99
99
  altText?: string;
100
100
  }
101
101
 
102
- interface ButtonProps extends ElementProps {
102
+ type ButtonProps = ElementProps & React.ComponentProps<"button"> & {
103
103
  textContent?: string;
104
104
  type?: 'button' | 'submit';
105
105
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@algorithm-shift/design-system",
3
- "version": "1.2.29",
3
+ "version": "1.2.30",
4
4
  "description": "A React + Tailwind CSS design system",
5
5
  "packageManager": "npm@10.9.0",
6
6
  "main": "dist/index.js",