antd-management-fast-framework 2.11.159 → 2.11.162
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.
- package/es/components/ElasticityExtraColorPicker/index.d.ts +6 -8
- package/es/components/LoadingOverlay/index.d.ts +40 -12
- package/es/components/ReloadAnimalPrompt/index.d.ts +7 -9
- package/es/components/TopProgressBar/index.d.ts +0 -3
- package/es/framework/DataListView/Base/index.d.ts +0 -1
- package/es/framework/DataListView/RefreshButton/index.d.ts +4 -6
- package/es/framework/DataListView/ResetButton/index.d.ts +4 -6
- package/es/framework/DataListView/SearchButton/index.d.ts +4 -6
- package/es/framework/DataMultiPageView/MultiPage/index.d.ts +1 -0
- package/es/framework/DataSinglePageView/SinglePage/index.d.ts +1 -0
- package/es/index.js +2 -2
- package/package.json +32 -32
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
export class ElasticityExtraColorPicker extends React.PureComponent<any, any, any> {
|
|
2
2
|
constructor(props: any);
|
|
3
3
|
constructor(props: any, context: any);
|
|
4
|
+
getProperties: () => {
|
|
5
|
+
flag: string;
|
|
6
|
+
value: string;
|
|
7
|
+
disabled: boolean;
|
|
8
|
+
onChange: null;
|
|
9
|
+
};
|
|
4
10
|
render(): React.JSX.Element;
|
|
5
11
|
}
|
|
6
|
-
export namespace ElasticityExtraColorPicker {
|
|
7
|
-
namespace defaultProps {
|
|
8
|
-
let flag: string;
|
|
9
|
-
let value: string;
|
|
10
|
-
let disabled: boolean;
|
|
11
|
-
let onChange: null;
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
12
|
import React from 'react';
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
export class LoadingOverlay extends React.PureComponent<any, any, any> {
|
|
2
2
|
constructor(props: any);
|
|
3
3
|
constructor(props: any, context: any);
|
|
4
|
+
getProperties: () => {
|
|
5
|
+
flag: string;
|
|
6
|
+
fill: boolean;
|
|
7
|
+
minHeight: null;
|
|
8
|
+
maxHeight: null;
|
|
9
|
+
};
|
|
4
10
|
getStyle: () => {
|
|
5
11
|
height?: string | undefined;
|
|
6
12
|
width?: string | undefined;
|
|
@@ -11,29 +17,51 @@ export class LoadingOverlay extends React.PureComponent<any, any, any> {
|
|
|
11
17
|
height?: string | undefined;
|
|
12
18
|
width?: string | undefined;
|
|
13
19
|
overflow?: string | undefined;
|
|
14
|
-
maxHeight:
|
|
20
|
+
maxHeight: string;
|
|
21
|
+
minHeight?: undefined;
|
|
22
|
+
} | {
|
|
23
|
+
height?: string | undefined;
|
|
24
|
+
width?: string | undefined;
|
|
25
|
+
overflow?: string | undefined;
|
|
26
|
+
maxHeight: null;
|
|
15
27
|
minHeight?: undefined;
|
|
16
28
|
} | {
|
|
17
29
|
height?: string | undefined;
|
|
18
30
|
width?: string | undefined;
|
|
19
31
|
overflow?: string | undefined;
|
|
20
32
|
maxHeight?: undefined;
|
|
21
|
-
minHeight:
|
|
33
|
+
minHeight: string;
|
|
34
|
+
} | {
|
|
35
|
+
height?: string | undefined;
|
|
36
|
+
width?: string | undefined;
|
|
37
|
+
overflow?: string | undefined;
|
|
38
|
+
maxHeight: string;
|
|
39
|
+
minHeight: string;
|
|
40
|
+
} | {
|
|
41
|
+
height?: string | undefined;
|
|
42
|
+
width?: string | undefined;
|
|
43
|
+
overflow?: string | undefined;
|
|
44
|
+
maxHeight: null;
|
|
45
|
+
minHeight: string;
|
|
46
|
+
} | {
|
|
47
|
+
height?: string | undefined;
|
|
48
|
+
width?: string | undefined;
|
|
49
|
+
overflow?: string | undefined;
|
|
50
|
+
maxHeight?: undefined;
|
|
51
|
+
minHeight: null;
|
|
52
|
+
} | {
|
|
53
|
+
height?: string | undefined;
|
|
54
|
+
width?: string | undefined;
|
|
55
|
+
overflow?: string | undefined;
|
|
56
|
+
maxHeight: string;
|
|
57
|
+
minHeight: null;
|
|
22
58
|
} | {
|
|
23
59
|
height?: string | undefined;
|
|
24
60
|
width?: string | undefined;
|
|
25
61
|
overflow?: string | undefined;
|
|
26
|
-
maxHeight:
|
|
27
|
-
minHeight:
|
|
62
|
+
maxHeight: null;
|
|
63
|
+
minHeight: null;
|
|
28
64
|
};
|
|
29
65
|
render(): React.JSX.Element;
|
|
30
66
|
}
|
|
31
|
-
export namespace LoadingOverlay {
|
|
32
|
-
namespace defaultProps {
|
|
33
|
-
let flag: string;
|
|
34
|
-
let fill: boolean;
|
|
35
|
-
let minHeight: null;
|
|
36
|
-
let maxHeight: null;
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
67
|
import React from 'react';
|
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
export class ReloadAnimalPrompt extends React.PureComponent<any, any, any> {
|
|
2
2
|
constructor(props: any);
|
|
3
3
|
constructor(props: any, context: any);
|
|
4
|
+
getProperties: () => {
|
|
5
|
+
hide: boolean;
|
|
6
|
+
flag: string;
|
|
7
|
+
color: string;
|
|
8
|
+
text: string;
|
|
9
|
+
delay: number;
|
|
10
|
+
};
|
|
4
11
|
render(): React.JSX.Element | null;
|
|
5
12
|
}
|
|
6
|
-
export namespace ReloadAnimalPrompt {
|
|
7
|
-
namespace defaultProps {
|
|
8
|
-
let hide: boolean;
|
|
9
|
-
let flag: string;
|
|
10
|
-
let color: string;
|
|
11
|
-
let text: string;
|
|
12
|
-
let delay: number;
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
13
|
import React from 'react';
|
|
@@ -59,7 +59,6 @@ export class Base extends AuthorizationWrapper {
|
|
|
59
59
|
handleSearchReset: () => void;
|
|
60
60
|
handleAdditionalSearchReset: () => void;
|
|
61
61
|
handleSearch: () => void;
|
|
62
|
-
filterFormValues: any;
|
|
63
62
|
getSearchCard: () => any;
|
|
64
63
|
handleOtherOnResetTargetSearch: () => void;
|
|
65
64
|
resetTargetSearch: () => void;
|
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
export class RefreshButton extends React.PureComponent<any, any, any> {
|
|
2
2
|
constructor(props: any);
|
|
3
3
|
constructor(props: any, context: any);
|
|
4
|
+
getProperties: () => {
|
|
5
|
+
title: string;
|
|
6
|
+
onRefresh: null;
|
|
7
|
+
};
|
|
4
8
|
render(): React.JSX.Element;
|
|
5
9
|
}
|
|
6
|
-
export namespace RefreshButton {
|
|
7
|
-
namespace defaultProps {
|
|
8
|
-
let title: string;
|
|
9
|
-
let onRefresh: null;
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
10
|
import React from 'react';
|
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
export class ResetButton extends React.PureComponent<any, any, any> {
|
|
2
2
|
constructor(props: any);
|
|
3
3
|
constructor(props: any, context: any);
|
|
4
|
+
getProperties: () => {
|
|
5
|
+
text: string;
|
|
6
|
+
onReset: null;
|
|
7
|
+
};
|
|
4
8
|
render(): React.JSX.Element;
|
|
5
9
|
}
|
|
6
|
-
export namespace ResetButton {
|
|
7
|
-
namespace defaultProps {
|
|
8
|
-
let text: string;
|
|
9
|
-
let onReset: null;
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
10
|
import React from 'react';
|
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
export class SearchButton extends React.PureComponent<any, any, any> {
|
|
2
2
|
constructor(props: any);
|
|
3
3
|
constructor(props: any, context: any);
|
|
4
|
+
getProperties: () => {
|
|
5
|
+
text: string;
|
|
6
|
+
onSearch: null;
|
|
7
|
+
};
|
|
4
8
|
render(): React.JSX.Element;
|
|
5
9
|
}
|
|
6
|
-
export namespace SearchButton {
|
|
7
|
-
namespace defaultProps {
|
|
8
|
-
let text: string;
|
|
9
|
-
let onSearch: null;
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
10
|
import React from 'react';
|
|
@@ -10,6 +10,7 @@ export class MultiPage extends Base {
|
|
|
10
10
|
restoreSearchComplete: boolean;
|
|
11
11
|
supplementPageLoadRequestParams: () => void;
|
|
12
12
|
supplementLoadRequestParams: (o: any) => any;
|
|
13
|
+
filterFormValues: {} | undefined;
|
|
13
14
|
filterNoFormValues: {} | undefined;
|
|
14
15
|
/**
|
|
15
16
|
* 轻微调整初始化请求数据体
|