antd-management-fast-framework 2.11.96 → 2.11.104
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,11 +1,24 @@
|
|
|
1
1
|
export class MobileHtmlPreviewBox extends MobilePreviewArea {
|
|
2
|
+
loadRemoteRequestAfterMount: boolean;
|
|
2
3
|
buildContent: () => React.JSX.Element;
|
|
3
4
|
renderPresetInnerView: () => React.JSX.Element;
|
|
4
5
|
}
|
|
5
6
|
export namespace MobileHtmlPreviewBox {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
let defaultProps: {
|
|
8
|
+
html: string;
|
|
9
|
+
affix: boolean;
|
|
10
|
+
affixOffsetBottom: number;
|
|
11
|
+
affixOffsetTop: number;
|
|
12
|
+
alertVisible: boolean;
|
|
13
|
+
alertAnimationType: string;
|
|
14
|
+
alertMessage: string;
|
|
15
|
+
alertDescription: string;
|
|
16
|
+
alertType: string;
|
|
17
|
+
alertIcon: boolean;
|
|
18
|
+
alertButtonText: string;
|
|
19
|
+
mobileList: never[];
|
|
20
|
+
afterAlertClick: null;
|
|
21
|
+
};
|
|
9
22
|
}
|
|
10
23
|
import { MobilePreviewArea } from '../MobilePreviewArea';
|
|
11
24
|
import React from 'react';
|
|
@@ -1,30 +1,7 @@
|
|
|
1
1
|
export class MobilePreviewArea extends Base {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
mobileType: string;
|
|
6
|
-
title: string;
|
|
7
|
-
width: number;
|
|
8
|
-
visible: boolean;
|
|
9
|
-
dataLoading: boolean;
|
|
10
|
-
showBottomBar: boolean;
|
|
11
|
-
submitApiPath: string;
|
|
12
|
-
overlayButtonOpenText: string;
|
|
13
|
-
overlayButtonCloseText: string;
|
|
14
|
-
errorFieldName: string;
|
|
15
|
-
loadApiPath: string;
|
|
16
|
-
pageTitle: string;
|
|
17
|
-
pageSubTitle: string;
|
|
18
|
-
metaData: null;
|
|
19
|
-
metaExtra: null;
|
|
20
|
-
metaListData: never[];
|
|
21
|
-
metaOriginalData: null;
|
|
22
|
-
firstLoadSuccess: boolean;
|
|
23
|
-
loadSuccess: boolean;
|
|
24
|
-
urlParams: null;
|
|
25
|
-
externalData: null;
|
|
26
|
-
};
|
|
27
|
-
buildMobileTypeArray: () => (typeof mobileTypeCollection.roughSketch)[];
|
|
2
|
+
constructor(properties: any, visibleFlag: any);
|
|
3
|
+
state: any;
|
|
4
|
+
buildMobileTypeArray: () => (typeof mobileTypeCollection.noneSketch)[];
|
|
28
5
|
establishCardCollectionConfig: () => {
|
|
29
6
|
list: {
|
|
30
7
|
title: {
|
|
@@ -36,9 +13,20 @@ export class MobilePreviewArea extends Base {
|
|
|
36
13
|
buildType: any;
|
|
37
14
|
size: string;
|
|
38
15
|
label: string;
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
16
|
+
defaultValue: any;
|
|
17
|
+
list: {
|
|
18
|
+
key: string;
|
|
19
|
+
flag: any;
|
|
20
|
+
label: any;
|
|
21
|
+
alias: any;
|
|
22
|
+
description: string;
|
|
23
|
+
availability: number;
|
|
24
|
+
}[];
|
|
25
|
+
style: {
|
|
26
|
+
minWidth: string;
|
|
27
|
+
};
|
|
28
|
+
dataConvert: (o: any) => any;
|
|
29
|
+
onChange: (v: any) => void;
|
|
42
30
|
}[];
|
|
43
31
|
};
|
|
44
32
|
items: {
|
|
@@ -68,6 +56,6 @@ export namespace MobilePreviewArea {
|
|
|
68
56
|
let afterAlertClick: null;
|
|
69
57
|
}
|
|
70
58
|
}
|
|
71
|
-
import { Base } from '../../../framework/
|
|
59
|
+
import { Base } from '../../../framework/DataOperation/Base';
|
|
72
60
|
import { mobileTypeCollection } from 'antd-management-fast-common';
|
|
73
61
|
import React from 'react';
|
|
@@ -30,9 +30,17 @@ export class MobilePreviewDrawer extends BaseNeedlessLoadDrawer {
|
|
|
30
30
|
list: {
|
|
31
31
|
buildType: string;
|
|
32
32
|
label: string;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
defaultValue: string;
|
|
34
|
+
list: {
|
|
35
|
+
key: string;
|
|
36
|
+
flag: string;
|
|
37
|
+
name: string;
|
|
38
|
+
alias: string;
|
|
39
|
+
description: string;
|
|
40
|
+
availability: number;
|
|
41
|
+
}[];
|
|
42
|
+
dataConvert: (o: any) => any;
|
|
43
|
+
onChange: (v: any) => void;
|
|
36
44
|
}[];
|
|
37
45
|
};
|
|
38
46
|
establishCardCollectionConfig: () => {
|