@react-types/buttongroup
Advanced tools
Comparing version 3.0.0-alpha.1 to 3.0.0-rc.0
{ | ||
"name": "@react-types/buttongroup", | ||
"version": "3.0.0-alpha.1", | ||
"version": "3.0.0-rc.0", | ||
"description": "Spectrum UI components in React", | ||
@@ -12,3 +12,3 @@ "license": "Apache-2.0", | ||
"dependencies": { | ||
"@react-types/shared": "^3.0.0-rc.2" | ||
"@react-types/shared": "3.0.0-rc.3" | ||
}, | ||
@@ -21,3 +21,3 @@ "peerDependencies": { | ||
}, | ||
"gitHead": "207e6ee9076905c96638a7f81a367758872e1410" | ||
"gitHead": "461d6321126ae9b4f1508aa912f7b36bf8a603f8" | ||
} |
@@ -18,17 +18,17 @@ /* | ||
export interface SpectrumButtonGroupProps extends DOMProps, StyleProps { | ||
/** Whether the ButtonGroup is disabled. */ | ||
/** Whether the Buttons in the ButtonGroup are all disabled. */ | ||
isDisabled?: boolean, | ||
/** | ||
* The axis the ButtonGroup should align with. See the docs[LINK TODO] for additional information | ||
* regarding overflow behavior. | ||
* @default "horizontal" | ||
* The axis the ButtonGroup should align with. Setting this to 'vertical' will prevent | ||
* any switching behaviors between 'vertical' and 'horizontal'. | ||
* @default 'horizontal' | ||
*/ | ||
orientation?: Orientation, | ||
/** The buttons contained within the ButtonGroup. */ | ||
/** The Buttons contained within the ButtonGroup. */ | ||
children: ReactNode, | ||
/** | ||
* The alignment of the buttons within the ButtonGroup. Only applicable to "vertical" orientation. | ||
* @default "start" | ||
* The alignment of the buttons within the ButtonGroup. | ||
* @default 'start' | ||
*/ | ||
align?: Alignment | ||
align?: Alignment | 'center' | ||
} |
13320
+ Added@react-types/shared@3.0.0-rc.3(transitive)
- Removed@react-types/shared@3.27.0(transitive)