@react-types/button
Advanced tools
Comparing version
{ | ||
"name": "@react-types/button", | ||
"version": "3.0.0-nightly-fd7075c5f-250128", | ||
"version": "3.0.0-nightly-fe5205a4f-250623", | ||
"description": "Spectrum UI components in React", | ||
@@ -12,3 +12,3 @@ "license": "Apache-2.0", | ||
"dependencies": { | ||
"@react-types/shared": "3.0.0-nightly-fd7075c5f-250128" | ||
"@react-types/shared": "3.0.0-nightly-fe5205a4f-250623" | ||
}, | ||
@@ -15,0 +15,0 @@ "peerDependencies": { |
@@ -75,3 +75,3 @@ /* | ||
export interface AriaButtonProps<T extends ElementType = 'button'> extends ButtonProps, LinkButtonProps<T>, AriaBaseButtonProps {} | ||
export interface AriaToggleButtonProps<T extends ElementType = 'button'> extends ToggleButtonProps, AriaBaseButtonProps, AriaButtonElementTypeProps<T> {} | ||
export interface AriaToggleButtonProps<T extends ElementType = 'button'> extends ToggleButtonProps, Omit<AriaBaseButtonProps, 'aria-current'>, AriaButtonElementTypeProps<T> {} | ||
export interface AriaToggleButtonGroupItemProps<E extends ElementType = 'button'> extends Omit<AriaToggleButtonProps<E>, 'id' | 'isSelected' | 'defaultSelected' | 'onChange'> { | ||
@@ -84,3 +84,3 @@ /** An identifier for the item in the `selectedKeys` of a ToggleButtonGroup. */ | ||
type LegacyButtonVariant = 'cta' | 'overBackground'; | ||
export interface SpectrumButtonProps<T extends ElementType = 'button'> extends AriaBaseButtonProps, ButtonProps, LinkButtonProps<T>, StyleProps { | ||
export interface SpectrumButtonProps<T extends ElementType = 'button'> extends AriaBaseButtonProps, Omit<ButtonProps, 'onClick'>, LinkButtonProps<T>, StyleProps { | ||
/** The [visual style](https://spectrum.adobe.com/page/button/#Options) of the button. */ | ||
@@ -103,3 +103,3 @@ variant: 'accent' | 'primary' | 'secondary' | 'negative' | LegacyButtonVariant, | ||
export interface SpectrumActionButtonProps extends AriaBaseButtonProps, ButtonProps, StyleProps { | ||
export interface SpectrumActionButtonProps extends AriaBaseButtonProps, Omit<ButtonProps, 'onClick'>, StyleProps { | ||
/** Whether the button should be displayed with a [quiet style](https://spectrum.adobe.com/page/action-button/#Quiet). */ | ||
@@ -111,3 +111,3 @@ isQuiet?: boolean, | ||
export interface SpectrumLogicButtonProps extends AriaBaseButtonProps, ButtonProps, StyleProps { | ||
export interface SpectrumLogicButtonProps extends AriaBaseButtonProps, Omit<ButtonProps, 'onClick'>, StyleProps { | ||
/** The type of boolean sequence to be represented by the LogicButton. */ | ||
@@ -117,5 +117,5 @@ variant: 'and' | 'or' | ||
export interface SpectrumToggleButtonProps extends ToggleButtonProps, SpectrumActionButtonProps { | ||
export interface SpectrumToggleButtonProps extends Omit<ToggleButtonProps, 'onClick'>, Omit<SpectrumActionButtonProps, 'aria-current'> { | ||
/** Whether the button should be displayed with an [emphasized style](https://spectrum.adobe.com/page/action-button/#Emphasis). */ | ||
isEmphasized?: boolean | ||
} |
6451
1.77%+ Added
- Removed