antd-management-fast-component 2.6.41 → 2.6.43

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.
@@ -3,20 +3,20 @@ export class FlexBox extends React.PureComponent<any, any, any> {
3
3
  constructor(props: any, context: any);
4
4
  getDirection: () => "horizontal" | "vertical";
5
5
  triggerClick: () => void;
6
- render(): React.JSX.Element;
6
+ render(): any;
7
7
  }
8
8
  export namespace FlexBox {
9
9
  namespace defaultProps {
10
10
  let flexAuto: string;
11
11
  let allowWrap: boolean;
12
- namespace vertical {
13
- let minHeight: string;
14
- let bottomHeight: string;
15
- }
16
12
  let left: null;
13
+ let leftStyle: {};
17
14
  let right: null;
15
+ let rightStyle: {};
18
16
  let top: null;
17
+ let topStyle: {};
19
18
  let bottom: null;
19
+ let bottomStyle: {};
20
20
  let style: null;
21
21
  let className: null;
22
22
  }