@a-type/ui 6.0.77 → 6.0.78

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.
@@ -1,6 +1,6 @@
1
1
  import { ButtonProps as BaseButtonProps } from '@base-ui/react/button';
2
2
  import { ButtonHTMLAttributes, Ref } from 'react';
3
- export interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement>, Pick<BaseButtonProps, 'render' | 'focusableWhenDisabled'> {
3
+ export interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement>, Pick<BaseButtonProps, 'render' | 'focusableWhenDisabled' | 'nativeButton'> {
4
4
  emphasis?: 'primary' | 'default' | 'ghost' | 'light' | 'unstyled';
5
5
  size?: 'default' | 'small' | 'wrapper';
6
6
  toggled?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a-type/ui",
3
- "version": "6.0.77",
3
+ "version": "6.0.78",
4
4
  "type": "module",
5
5
  "repository": {
6
6
  "url": "https://github.com/a-type/ui"
@@ -20,7 +20,7 @@ import cls from './Button.module.css';
20
20
 
21
21
  export interface ButtonProps
22
22
  extends ButtonHTMLAttributes<HTMLButtonElement>,
23
- Pick<BaseButtonProps, 'render' | 'focusableWhenDisabled'> {
23
+ Pick<BaseButtonProps, 'render' | 'focusableWhenDisabled' | 'nativeButton'> {
24
24
  emphasis?: 'primary' | 'default' | 'ghost' | 'light' | 'unstyled';
25
25
  size?: 'default' | 'small' | 'wrapper';
26
26
  toggled?: boolean;