@broxus/react-uikit 0.4.4 → 0.4.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,8 +1,8 @@
1
1
  import type * as React from 'react';
2
- import { type FlexProps } from '../../components/Flex/Flex';
2
+ import { type FlexAlignContent, type FlexAlignItems, type FlexDirection, type FlexJustifyContent, type FlexProps, type FlexWrap } from '../../components/Flex/Flex';
3
3
  import { type ItemProps as FlexItemProps, Item } from '../../components/Flex/Item';
4
4
  import './index.scss';
5
- export type { FlexProps, FlexItemProps };
5
+ export type { FlexAlignContent, FlexAlignItems, FlexDirection, FlexJustifyContent, FlexItemProps, FlexProps, FlexWrap };
6
6
  export interface Flex extends React.MemoExoticComponent<React.FunctionComponent<FlexProps>> {
7
7
  Item: typeof Item;
8
8
  }