antd-management-fast-framework 2.12.14 → 2.12.17
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/DataPreviewDrawer/index.d.ts +12 -19
- package/es/components/DrawerExtra/index.d.ts +11 -12
- package/es/components/ElasticityExtraButton/index.d.ts +2 -4
- package/es/components/MenuWrapper/index.d.ts +6 -0
- package/es/components/ModalExtra/index.d.ts +11 -19
- package/es/components/PageExtraWrapper/index.d.ts +5 -0
- package/es/components/ShortcutNavigation/index.d.ts +3 -0
- package/es/components/TopProgressBar/index.d.ts +3 -0
- package/es/framework/Common/ReloadActionButton/index.d.ts +4 -6
- package/es/framework/DataListView/BatchAction/index.d.ts +11 -13
- package/es/framework/DataListView/EmptyCardCollection/index.d.ts +3 -0
- package/es/index.js +2 -2
- package/package.json +1 -1
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
export class DataPreviewDrawer extends BaseFormDrawer {
|
|
2
2
|
static open(): void;
|
|
3
3
|
constructor(properties: any);
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
getProperties: () => {
|
|
5
|
+
title: string;
|
|
6
|
+
descriptionLabel: string;
|
|
7
|
+
description: string;
|
|
8
|
+
listData: never[];
|
|
9
|
+
icon: React.JSX.Element;
|
|
10
|
+
placement: string;
|
|
11
|
+
width: number;
|
|
12
|
+
dataType: number;
|
|
13
|
+
};
|
|
9
14
|
/**
|
|
10
15
|
* 构造 Card 配置集合。
|
|
11
16
|
* @function
|
|
@@ -20,8 +25,8 @@ export class DataPreviewDrawer extends BaseFormDrawer {
|
|
|
20
25
|
lg: number;
|
|
21
26
|
type: string;
|
|
22
27
|
list: {
|
|
23
|
-
label:
|
|
24
|
-
value:
|
|
28
|
+
label: string;
|
|
29
|
+
value: string;
|
|
25
30
|
}[];
|
|
26
31
|
props: {
|
|
27
32
|
bordered: boolean;
|
|
@@ -37,17 +42,5 @@ export class DataPreviewDrawer extends BaseFormDrawer {
|
|
|
37
42
|
}[];
|
|
38
43
|
};
|
|
39
44
|
}
|
|
40
|
-
export namespace DataPreviewDrawer {
|
|
41
|
-
namespace defaultProps {
|
|
42
|
-
let title: string;
|
|
43
|
-
let descriptionLabel: string;
|
|
44
|
-
let description: string;
|
|
45
|
-
let listData: never[];
|
|
46
|
-
let icon: React.JSX.Element;
|
|
47
|
-
let placement: string;
|
|
48
|
-
let width: number;
|
|
49
|
-
let dataType: number;
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
45
|
import { BaseFormDrawer } from '../../framework/DataDrawer/BaseFormDrawer';
|
|
53
46
|
import React from 'react';
|
|
@@ -3,6 +3,17 @@ export class DrawerExtra extends React.PureComponent<any, any, any> {
|
|
|
3
3
|
state: {
|
|
4
4
|
overlayVisible: boolean;
|
|
5
5
|
};
|
|
6
|
+
getProperties: () => {
|
|
7
|
+
styles: {};
|
|
8
|
+
icon: null;
|
|
9
|
+
titlePrefix: null;
|
|
10
|
+
title: null;
|
|
11
|
+
subtitle: null;
|
|
12
|
+
destroyOnClose: boolean;
|
|
13
|
+
overlayContent: null;
|
|
14
|
+
overlayButtonOpenText: string;
|
|
15
|
+
overlayButtonCloseText: string;
|
|
16
|
+
};
|
|
6
17
|
buildBodyStyle: () => {
|
|
7
18
|
position?: undefined;
|
|
8
19
|
overflowX?: undefined;
|
|
@@ -29,16 +40,4 @@ export class DrawerExtra extends React.PureComponent<any, any, any> {
|
|
|
29
40
|
renderOverlayContent: () => React.JSX.Element | null;
|
|
30
41
|
render(): React.JSX.Element;
|
|
31
42
|
}
|
|
32
|
-
export namespace DrawerExtra {
|
|
33
|
-
namespace defaultProps {
|
|
34
|
-
let icon: null;
|
|
35
|
-
let titlePrefix: null;
|
|
36
|
-
let title: null;
|
|
37
|
-
let subtitle: null;
|
|
38
|
-
let destroyOnClose: boolean;
|
|
39
|
-
let overlayContent: null;
|
|
40
|
-
let overlayButtonOpenText: string;
|
|
41
|
-
let overlayButtonCloseText: string;
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
43
|
import React from 'react';
|
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
export class ElasticityExtraButton extends React.PureComponent<any, any, any> {
|
|
2
2
|
constructor(props: any);
|
|
3
3
|
constructor(props: any, context: any);
|
|
4
|
-
|
|
5
|
-
}
|
|
6
|
-
export namespace ElasticityExtraButton {
|
|
7
|
-
let defaultProps: {
|
|
4
|
+
getProperties: () => {
|
|
8
5
|
handleClick(): void;
|
|
9
6
|
confirm: boolean;
|
|
10
7
|
title: string;
|
|
@@ -30,5 +27,6 @@ export namespace ElasticityExtraButton {
|
|
|
30
27
|
flag: string;
|
|
31
28
|
interimIcon: null;
|
|
32
29
|
};
|
|
30
|
+
render(): React.JSX.Element;
|
|
33
31
|
}
|
|
34
32
|
import React from 'react';
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
export class ModalExtra extends React.PureComponent<any, any, any> {
|
|
2
2
|
constructor(props: any);
|
|
3
3
|
constructor(props: any, context: any);
|
|
4
|
+
getProperties: () => {
|
|
5
|
+
icon: null;
|
|
6
|
+
titlePrefix: null;
|
|
7
|
+
title: null;
|
|
8
|
+
destroyOnClose: boolean;
|
|
9
|
+
};
|
|
4
10
|
buildBodyStyle: () => {
|
|
5
11
|
position?: undefined;
|
|
6
12
|
overflowX?: undefined;
|
|
@@ -9,28 +15,14 @@ export class ModalExtra extends React.PureComponent<any, any, any> {
|
|
|
9
15
|
overflowX: string;
|
|
10
16
|
};
|
|
11
17
|
buildStyles: () => {
|
|
12
|
-
header:
|
|
13
|
-
body:
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
position: string;
|
|
18
|
-
overflowX: string;
|
|
19
|
-
};
|
|
20
|
-
footer: {};
|
|
21
|
-
mask: {};
|
|
22
|
-
wrapper: {};
|
|
18
|
+
header: any;
|
|
19
|
+
body: any;
|
|
20
|
+
footer: any;
|
|
21
|
+
mask: any;
|
|
22
|
+
wrapper: any;
|
|
23
23
|
};
|
|
24
24
|
renderPresetTitle: () => string;
|
|
25
25
|
renderOverlayControlButton: () => React.JSX.Element | null;
|
|
26
26
|
render(): React.JSX.Element;
|
|
27
27
|
}
|
|
28
|
-
export namespace ModalExtra {
|
|
29
|
-
namespace defaultProps {
|
|
30
|
-
let icon: null;
|
|
31
|
-
let titlePrefix: null;
|
|
32
|
-
let title: null;
|
|
33
|
-
let destroyOnClose: boolean;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
28
|
import React from 'react';
|
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
export class ReloadActionButton extends React.PureComponent<any, any, any> {
|
|
2
2
|
constructor(props: any);
|
|
3
3
|
constructor(props: any, context: any);
|
|
4
|
+
getProperties: () => {
|
|
5
|
+
title: string;
|
|
6
|
+
onReload: null;
|
|
7
|
+
};
|
|
4
8
|
render(): React.JSX.Element;
|
|
5
9
|
}
|
|
6
|
-
export namespace ReloadActionButton {
|
|
7
|
-
namespace defaultProps {
|
|
8
|
-
let title: string;
|
|
9
|
-
let onReload: null;
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
10
|
import React from 'react';
|
|
@@ -1,19 +1,17 @@
|
|
|
1
1
|
export class BatchAction extends React.PureComponent<any, any, any> {
|
|
2
2
|
constructor(props: any);
|
|
3
3
|
constructor(props: any, context: any);
|
|
4
|
+
getProperties: () => {
|
|
5
|
+
type: string;
|
|
6
|
+
icon: null;
|
|
7
|
+
text: string;
|
|
8
|
+
size: string;
|
|
9
|
+
danger: boolean;
|
|
10
|
+
menus: never[];
|
|
11
|
+
onClick: null;
|
|
12
|
+
onSelect: null;
|
|
13
|
+
disabled: boolean;
|
|
14
|
+
};
|
|
4
15
|
render(): React.JSX.Element;
|
|
5
16
|
}
|
|
6
|
-
export namespace BatchAction {
|
|
7
|
-
namespace defaultProps {
|
|
8
|
-
let type: string;
|
|
9
|
-
let icon: null;
|
|
10
|
-
let text: string;
|
|
11
|
-
let size: string;
|
|
12
|
-
let danger: boolean;
|
|
13
|
-
let menus: never[];
|
|
14
|
-
let onClick: null;
|
|
15
|
-
let onSelect: null;
|
|
16
|
-
let disabled: boolean;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
17
|
import React from 'react';
|