diff --git a/docs/docs/box.md b/docs/docs/box.md index 492fc86b..d0a6bb27 100644 --- a/docs/docs/box.md +++ b/docs/docs/box.md @@ -9,7 +9,7 @@ title: Box ### `flex` -- type: `'content' | 'fluid' | '1/2' | '1/3' | '2/3' | '1/4' | '3/4' | '1/5' | '2/5' | '3/5' | '4/5'` +- type: `ResponsiveProp<'content' | 'fluid' | '1/2' | '1/3' | '2/3' | '1/4' | '3/4' | '1/5' | '2/5' | '3/5' | '4/5'>` - required: `no` - default: `content` @@ -35,6 +35,14 @@ title: Box - required: `no` - default: `top` +### `alignSelf` + +- type: + - if direction is `row` or `row-reverse`: `ResponsiveProp<'top' | 'center' | 'bottom' | 'stretch'>` + - if direction is `column` or `column-reverse`: `ResponsiveProp<'top' | 'center' | 'bottom'>` +- required: `no` +- default: `top` + ### `wrap` - type: `'wrap' | 'nowrap' | 'wrap-reverse'` diff --git a/docs/docs/column.md b/docs/docs/column.md index 05ca961e..840be080 100644 --- a/docs/docs/column.md +++ b/docs/docs/column.md @@ -9,12 +9,6 @@ title: Column - required: `no` - default: `fluid` -### `align` - -- type: `ResponsiveProp<'left' | 'center' | 'right'>` -- required: `no` -- default: `left` - :::note `Column` component inherits all [`View` props](https://reactnative.dev/docs/view).