Skip to content

Commit

Permalink
feat(FlexItem): make props optional + extend flexBasis types (#7329)
Browse files Browse the repository at this point in the history
* fix(FormItem): make props optional

* feat(FlexItem): extend flexBasis types
  • Loading branch information
BlackySoul authored Aug 7, 2024
1 parent a7b79b3 commit ec1571b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/vkui/src/components/Flex/FlexItem/FlexItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ export interface FlexItemProps extends HTMLAttributesWithRootRef<HTMLDivElement>
/**
* Для задания выравнивания, отлично от родительского, эквивалентно `align-self`
*/
alignSelf: 'start' | 'end' | 'center' | 'baseline' | 'stretch';
alignSelf?: 'start' | 'end' | 'center' | 'baseline' | 'stretch';
/**
* Позволяет задать предопределенные значения шортката `flex`
* `grow` соответствует значению `1 0 auto`
* `shrink` соответствует значению `0 1 auto`
* `content` соответствует значению `0 0 auto`
*/
flex: 'grow' | 'shrink' | 'content' | 'fixed';
flex?: 'grow' | 'shrink' | 'content' | 'fixed';
/**
* Изначальный размер элемента, эквивалентно `flex-basis`
*/
flexBasis: number;
flexBasis?: number | string;
}

export const FlexItem = ({
Expand Down

0 comments on commit ec1571b

Please sign in to comment.