antd-management-fast-framework 2.11.103 → 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,4 +1,5 @@
1
1
  export class MobileHtmlPreviewBox extends MobilePreviewArea {
2
+ loadRemoteRequestAfterMount: boolean;
2
3
  buildContent: () => React.JSX.Element;
3
4
  renderPresetInnerView: () => React.JSX.Element;
4
5
  }
@@ -1,29 +1,6 @@
1
1
  export class MobilePreviewArea extends Base {
2
- state: {
3
- placement: string;
4
- height: string;
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
- };
2
+ constructor(properties: any, visibleFlag: any);
3
+ state: any;
27
4
  buildMobileTypeArray: () => (typeof mobileTypeCollection.noneSketch)[];
28
5
  establishCardCollectionConfig: () => {
29
6
  list: {
@@ -36,7 +13,7 @@ export class MobilePreviewArea extends Base {
36
13
  buildType: any;
37
14
  size: string;
38
15
  label: string;
39
- defaultValue: string;
16
+ defaultValue: any;
40
17
  list: {
41
18
  key: string;
42
19
  flag: any;
@@ -79,6 +56,6 @@ export namespace MobilePreviewArea {
79
56
  let afterAlertClick: null;
80
57
  }
81
58
  }
82
- import { Base } from '../../../framework/DataDrawer/Base';
59
+ import { Base } from '../../../framework/DataOperation/Base';
83
60
  import { mobileTypeCollection } from 'antd-management-fast-common';
84
61
  import React from 'react';