antd-management-fast-framework 2.1.34 → 2.1.35

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,12 +1,39 @@
1
1
  export class LoadingOverlay extends React.PureComponent<any, any, any> {
2
2
  constructor(props: any);
3
3
  constructor(props: any, context: any);
4
+ getStyle: () => {
5
+ height?: string | undefined;
6
+ width?: string | undefined;
7
+ overflow?: string | undefined;
8
+ maxHeight?: undefined;
9
+ minHeight?: undefined;
10
+ } | {
11
+ height?: string | undefined;
12
+ width?: string | undefined;
13
+ overflow?: string | undefined;
14
+ maxHeight: any;
15
+ minHeight?: undefined;
16
+ } | {
17
+ height?: string | undefined;
18
+ width?: string | undefined;
19
+ overflow?: string | undefined;
20
+ maxHeight?: undefined;
21
+ minHeight: any;
22
+ } | {
23
+ height?: string | undefined;
24
+ width?: string | undefined;
25
+ overflow?: string | undefined;
26
+ maxHeight: any;
27
+ minHeight: any;
28
+ };
4
29
  render(): React.JSX.Element;
5
30
  }
6
31
  export namespace LoadingOverlay {
7
32
  namespace defaultProps {
8
33
  let flag: string;
9
34
  let fill: boolean;
35
+ let minHeight: null;
36
+ let maxHeight: null;
10
37
  }
11
38
  }
12
39
  import React from 'react';