diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md index 18412c1d..45e69381 100644 --- a/packages/ui/CHANGELOG.md +++ b/packages/ui/CHANGELOG.md @@ -2,6 +2,10 @@ ## 1.0.0-alpha.25 +- Add `displayName` attr to all components that use forwarRef. + +## 1.0.0-alpha.25 + - Add `textTransform` prop to base BoxProps. ## 1.0.0-alpha.24 diff --git a/packages/ui/package.json b/packages/ui/package.json index 01a4375d..f9ab6e1b 100755 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,7 +1,7 @@ { "name": "@blockstack/ui", "description": "Blockstack UI components built using React and styled-components with styled-system.", - "version": "1.0.0-alpha.25", + "version": "1.0.0-alpha.27", "author": "Blockstack (https://blockstack.org/)", "bundlesize": [ { diff --git a/packages/ui/src/box/types.ts b/packages/ui/src/box/types.ts index 7628cc10..731be7cb 100644 --- a/packages/ui/src/box/types.ts +++ b/packages/ui/src/box/types.ts @@ -99,6 +99,7 @@ export interface IOtherProps { transform?: CSS.TransformProperty | StyledSystem.ResponsiveValue; transition?: CSS.TransitionProperty | StyledSystem.ResponsiveValue; boxShadow?: BoxShadow | StyledSystem.ResponsiveValue; + children?: React.ReactNode[] | React.ReactNode; } export type ShorthandProps = IFlexDirectionShorthandProps & IDisplayShorthandProps;