antd-management-fast-component 2.6.27 → 2.6.31
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/bases/AbstractComponent/index.d.ts +1 -9
- package/es/components/DecorateAvatar/index.d.ts +2 -2
- package/es/components/ElasticitySelectButton/BaseElasticitySelectButton/index.d.ts +1 -11
- package/es/components/FieldExtra/SelectFieldExtra/BaseSelectFieldExtra/index.d.ts +1 -11
- package/es/components/ImageBox/index.d.ts +0 -26
- package/es/components/ImageContentPreview/index.d.ts +0 -14
- package/es/components/MobileContainor/ContentView/index.d.ts +1 -1
- package/es/components/MobileContainor/Devices/GalaxyNote8/index.d.ts +1 -1
- package/es/components/MobileContainor/Devices/IPhone5S/index.d.ts +1 -1
- package/es/components/MobileContainor/Devices/Iphone8/index.d.ts +1 -1
- package/es/components/MobileContainor/Devices/Iphone8plus/index.d.ts +1 -1
- package/es/components/MobileContainor/Devices/IphoneX/index.d.ts +1 -1
- package/es/components/MobileContainor/Devices/RoughSketch/index.d.ts +1 -1
- package/es/components/MobileContainor/MobileSimulation/index.d.ts +3 -4
- package/es/components/PageExtra/CardCollectionItemContent/index.d.ts +1 -1
- package/es/components/PageExtra/HelpContent/index.d.ts +1 -1
- package/es/index.d.ts +1 -2
- package/es/index.js +1 -17155
- package/package.json +44 -45
- package/es/index.css +0 -34
|
@@ -52,15 +52,7 @@ export class AbstractComponent extends Component<any, any, any> {
|
|
|
52
52
|
frontendPageNo: number;
|
|
53
53
|
pageSize: number;
|
|
54
54
|
};
|
|
55
|
-
state:
|
|
56
|
-
error: null;
|
|
57
|
-
errorInfo: null;
|
|
58
|
-
counter: number;
|
|
59
|
-
firstLoadSuccess: boolean;
|
|
60
|
-
loadSuccess: boolean;
|
|
61
|
-
urlParams: null;
|
|
62
|
-
externalData: null;
|
|
63
|
-
};
|
|
55
|
+
state: any;
|
|
64
56
|
componentDidMount(): void;
|
|
65
57
|
shouldComponentUpdate(nextProperties: any, nextState: any): boolean;
|
|
66
58
|
componentDidCatchError(error: any, info: any): void;
|
|
@@ -4,12 +4,12 @@ export function decorateAvatar(avatar: null | undefined, defaultAvatarIcon: Reac
|
|
|
4
4
|
onError?: undefined;
|
|
5
5
|
} | {
|
|
6
6
|
src: any;
|
|
7
|
+
onError: () => boolean;
|
|
7
8
|
icon?: undefined;
|
|
8
|
-
onError?: undefined;
|
|
9
9
|
} | {
|
|
10
10
|
src: any;
|
|
11
|
-
onError: () => boolean;
|
|
12
11
|
icon?: undefined;
|
|
12
|
+
onError?: undefined;
|
|
13
13
|
} | null;
|
|
14
14
|
export namespace avatarImageLoadResultCollection {
|
|
15
15
|
let wait: number;
|
|
@@ -1,14 +1,4 @@
|
|
|
1
1
|
export class BaseElasticitySelectButton extends BaseComponent {
|
|
2
|
-
state: {
|
|
3
|
-
selectData: null;
|
|
4
|
-
error: null;
|
|
5
|
-
errorInfo: null;
|
|
6
|
-
counter: number;
|
|
7
|
-
firstLoadSuccess: boolean;
|
|
8
|
-
loadSuccess: boolean;
|
|
9
|
-
urlParams: null;
|
|
10
|
-
externalData: null;
|
|
11
|
-
};
|
|
12
2
|
showSelect: () => void;
|
|
13
3
|
openDrawer: () => never;
|
|
14
4
|
showDrawer: () => void;
|
|
@@ -33,7 +23,7 @@ export namespace BaseElasticitySelectButton {
|
|
|
33
23
|
let color: null;
|
|
34
24
|
let showIcon: boolean;
|
|
35
25
|
let text: string;
|
|
36
|
-
let selectMode:
|
|
26
|
+
let selectMode: any;
|
|
37
27
|
let afterSelectSuccess: null;
|
|
38
28
|
}
|
|
39
29
|
}
|
|
@@ -1,14 +1,4 @@
|
|
|
1
1
|
export class BaseSelectFieldExtra extends BaseComponent {
|
|
2
|
-
state: {
|
|
3
|
-
selectData: null;
|
|
4
|
-
error: null;
|
|
5
|
-
errorInfo: null;
|
|
6
|
-
counter: number;
|
|
7
|
-
firstLoadSuccess: boolean;
|
|
8
|
-
loadSuccess: boolean;
|
|
9
|
-
urlParams: null;
|
|
10
|
-
externalData: null;
|
|
11
|
-
};
|
|
12
2
|
clearSelect: () => void;
|
|
13
3
|
showSelect: () => void;
|
|
14
4
|
openDrawer: () => never;
|
|
@@ -34,7 +24,7 @@ export namespace BaseSelectFieldExtra {
|
|
|
34
24
|
let formItemLayout: null;
|
|
35
25
|
let required: boolean;
|
|
36
26
|
let showClear: boolean;
|
|
37
|
-
let selectMode:
|
|
27
|
+
let selectMode: any;
|
|
38
28
|
}
|
|
39
29
|
}
|
|
40
30
|
import { BaseComponent } from '../../../../bases/BaseComponent';
|
|
@@ -25,32 +25,6 @@ export class ImageBox extends BaseComponent {
|
|
|
25
25
|
errorOverlayText: any;
|
|
26
26
|
showErrorIcon: any;
|
|
27
27
|
};
|
|
28
|
-
state: {
|
|
29
|
-
src: string;
|
|
30
|
-
aspectRatio: number;
|
|
31
|
-
borderRadiusDefaultStyle: {};
|
|
32
|
-
imageBoxStyle: {};
|
|
33
|
-
borderRadius: boolean;
|
|
34
|
-
showMode: string;
|
|
35
|
-
circle: boolean;
|
|
36
|
-
backgroundColor: {};
|
|
37
|
-
showOverlay: boolean;
|
|
38
|
-
overlayText: string;
|
|
39
|
-
loadingEffect: boolean;
|
|
40
|
-
hide: boolean;
|
|
41
|
-
loadSuccess: boolean;
|
|
42
|
-
imageLoadSuccess: boolean;
|
|
43
|
-
errorOverlayVisible: boolean;
|
|
44
|
-
errorOverlayText: string;
|
|
45
|
-
showErrorOverlay: boolean;
|
|
46
|
-
showErrorIcon: boolean;
|
|
47
|
-
error: null;
|
|
48
|
-
errorInfo: null;
|
|
49
|
-
counter: number;
|
|
50
|
-
firstLoadSuccess: boolean;
|
|
51
|
-
urlParams: null;
|
|
52
|
-
externalData: null;
|
|
53
|
-
};
|
|
54
28
|
onImageLoadSuccess(): void;
|
|
55
29
|
onImageError(): void;
|
|
56
30
|
onImageClick(): void;
|
|
@@ -6,20 +6,6 @@ export class ImageContentPreview extends BaseComponent {
|
|
|
6
6
|
listItem: any;
|
|
7
7
|
htmlContent: any;
|
|
8
8
|
};
|
|
9
|
-
state: {
|
|
10
|
-
visible: boolean;
|
|
11
|
-
htmlContent: string;
|
|
12
|
-
imageList: never[];
|
|
13
|
-
listItem: never[];
|
|
14
|
-
mode: number;
|
|
15
|
-
error: null;
|
|
16
|
-
errorInfo: null;
|
|
17
|
-
counter: number;
|
|
18
|
-
firstLoadSuccess: boolean;
|
|
19
|
-
loadSuccess: boolean;
|
|
20
|
-
urlParams: null;
|
|
21
|
-
externalData: null;
|
|
22
|
-
};
|
|
23
9
|
onClose: () => void;
|
|
24
10
|
render(): React.JSX.Element;
|
|
25
11
|
}
|
|
@@ -7,7 +7,7 @@ export class ContentView extends React.PureComponent<any, any, any> {
|
|
|
7
7
|
export namespace ContentView {
|
|
8
8
|
namespace defaultProps {
|
|
9
9
|
let alertVisible: boolean;
|
|
10
|
-
let alertAnimationType:
|
|
10
|
+
let alertAnimationType: any;
|
|
11
11
|
let alertMessage: string;
|
|
12
12
|
let alertDescription: string;
|
|
13
13
|
let alertType: string;
|
|
@@ -6,7 +6,7 @@ export class GalaxyNote8 extends React.PureComponent<any, any, any> {
|
|
|
6
6
|
export namespace GalaxyNote8 {
|
|
7
7
|
namespace defaultProps {
|
|
8
8
|
let alertVisible: boolean;
|
|
9
|
-
let alertAnimationType:
|
|
9
|
+
let alertAnimationType: any;
|
|
10
10
|
let alertMessage: string;
|
|
11
11
|
let alertDescription: string;
|
|
12
12
|
let alertType: string;
|
|
@@ -6,7 +6,7 @@ export class IPhone5S extends React.PureComponent<any, any, any> {
|
|
|
6
6
|
export namespace IPhone5S {
|
|
7
7
|
namespace defaultProps {
|
|
8
8
|
let alertVisible: boolean;
|
|
9
|
-
let alertAnimationType:
|
|
9
|
+
let alertAnimationType: any;
|
|
10
10
|
let alertMessage: string;
|
|
11
11
|
let alertDescription: string;
|
|
12
12
|
let alertType: string;
|
|
@@ -6,7 +6,7 @@ export class Iphone8 extends React.PureComponent<any, any, any> {
|
|
|
6
6
|
export namespace Iphone8 {
|
|
7
7
|
namespace defaultProps {
|
|
8
8
|
let alertVisible: boolean;
|
|
9
|
-
let alertAnimationType:
|
|
9
|
+
let alertAnimationType: any;
|
|
10
10
|
let alertMessage: string;
|
|
11
11
|
let alertDescription: string;
|
|
12
12
|
let alertType: string;
|
|
@@ -6,7 +6,7 @@ export class Iphone8plus extends React.PureComponent<any, any, any> {
|
|
|
6
6
|
export namespace Iphone8plus {
|
|
7
7
|
namespace defaultProps {
|
|
8
8
|
let alertVisible: boolean;
|
|
9
|
-
let alertAnimationType:
|
|
9
|
+
let alertAnimationType: any;
|
|
10
10
|
let alertMessage: string;
|
|
11
11
|
let alertDescription: string;
|
|
12
12
|
let alertType: string;
|
|
@@ -6,7 +6,7 @@ export class IphoneX extends React.PureComponent<any, any, any> {
|
|
|
6
6
|
export namespace IphoneX {
|
|
7
7
|
namespace defaultProps {
|
|
8
8
|
let alertVisible: boolean;
|
|
9
|
-
let alertAnimationType:
|
|
9
|
+
let alertAnimationType: any;
|
|
10
10
|
let alertMessage: string;
|
|
11
11
|
let alertDescription: string;
|
|
12
12
|
let alertType: string;
|
|
@@ -6,7 +6,7 @@ export class RoughSketch extends React.PureComponent<any, any, any> {
|
|
|
6
6
|
export namespace RoughSketch {
|
|
7
7
|
namespace defaultProps {
|
|
8
8
|
let alertVisible: boolean;
|
|
9
|
-
let alertAnimationType:
|
|
9
|
+
let alertAnimationType: any;
|
|
10
10
|
let alertMessage: string;
|
|
11
11
|
let alertDescription: string;
|
|
12
12
|
let alertType: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export class MobileSimulation extends React.PureComponent<any, any, any> {
|
|
2
2
|
constructor(props: any);
|
|
3
3
|
constructor(props: any, context: any);
|
|
4
|
-
buildMobileTypeArray: () =>
|
|
4
|
+
buildMobileTypeArray: () => any[];
|
|
5
5
|
renderPresetInnerView: () => any;
|
|
6
6
|
renderPresetInnerViewWrapper: () => any;
|
|
7
7
|
render(): React.JSX.Element;
|
|
@@ -9,15 +9,14 @@ export class MobileSimulation extends React.PureComponent<any, any, any> {
|
|
|
9
9
|
export namespace MobileSimulation {
|
|
10
10
|
namespace defaultProps {
|
|
11
11
|
let alertVisible: boolean;
|
|
12
|
-
let alertAnimationType:
|
|
12
|
+
let alertAnimationType: any;
|
|
13
13
|
let alertMessage: string;
|
|
14
14
|
let alertDescription: string;
|
|
15
15
|
let alertType: string;
|
|
16
16
|
let alertIcon: boolean;
|
|
17
17
|
let alertButtonText: string;
|
|
18
|
-
let mobileType:
|
|
18
|
+
let mobileType: any;
|
|
19
19
|
let afterAlertClick: null;
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
import React from 'react';
|
|
23
|
-
import { mobileTypeCollection } from 'antd-management-fast-common';
|
|
@@ -5,7 +5,7 @@ export class CardCollectionItemContent extends React.PureComponent<any, any, any
|
|
|
5
5
|
}
|
|
6
6
|
export namespace CardCollectionItemContent {
|
|
7
7
|
namespace defaultProps {
|
|
8
|
-
let wrapperType:
|
|
8
|
+
let wrapperType: any;
|
|
9
9
|
let justify: string;
|
|
10
10
|
let align: string;
|
|
11
11
|
let gutter: number;
|
package/es/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
export * from "./components";
|
|
1
|
+
export { checkDevelopment, buildConfig };
|