antd-management-fast-framework 2.11.179 → 2.11.181

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/README.md ADDED
@@ -0,0 +1,42 @@
1
+ # antd-management-fast-common
2
+
3
+ ---
4
+
5
+ ## Instruction
6
+
7
+ Github项目README.md模板
8
+ (项目背景/作用介绍)
9
+
10
+ ### 示例
11
+
12
+ 把使用了该项目的案例放在这里。可以放APK下载链接,或者简单放几张截图, 使用相对路径插入图片。 格式是! 【】 (相对路径)(示例一开始就放出来,方便浏览者一眼就看出是不是想找的东西)
13
+
14
+ ### 特性(可选)
15
+
16
+ - 特性A
17
+
18
+ - 特性B
19
+
20
+ ### 原理说明(可选)阐述项目是基于什么思路设计的
21
+
22
+ ### 下载安装
23
+
24
+ Gradle:
25
+
26
+ ```xml
27
+ compile 'xxx'
28
+ ```
29
+
30
+ (说明项目的配置方法,android开源库多用Gradle导入)
31
+
32
+ ### 使用方法怎么使用,有哪些步骤哪些接口。
33
+
34
+ ### 注意事项
35
+
36
+ 比如混淆方法等
37
+
38
+ ### TODO(可选)接下来的开发/维护计划。
39
+
40
+ ## License
41
+
42
+ 遵守的协议
@@ -25,7 +25,7 @@ export class DrawerExtra extends React.PureComponent<any, any, any> {
25
25
  };
26
26
  renderPresetTitle: () => string;
27
27
  renderOverlayControlButton: () => React.JSX.Element | null;
28
- renderExtra: () => any;
28
+ renderExtra: () => any[] | React.JSX.Element | null;
29
29
  renderOverlayContent: () => React.JSX.Element | null;
30
30
  render(): React.JSX.Element;
31
31
  }
@@ -19,12 +19,6 @@ export class LoadingOverlay extends React.PureComponent<any, any, any> {
19
19
  overflow?: string | undefined;
20
20
  maxHeight: string;
21
21
  minHeight?: undefined;
22
- } | {
23
- height?: string | undefined;
24
- width?: string | undefined;
25
- overflow?: string | undefined;
26
- maxHeight: null;
27
- minHeight?: undefined;
28
22
  } | {
29
23
  height?: string | undefined;
30
24
  width?: string | undefined;
@@ -37,30 +31,6 @@ export class LoadingOverlay extends React.PureComponent<any, any, any> {
37
31
  overflow?: string | undefined;
38
32
  maxHeight: string;
39
33
  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;
58
- } | {
59
- height?: string | undefined;
60
- width?: string | undefined;
61
- overflow?: string | undefined;
62
- maxHeight: null;
63
- minHeight: null;
64
34
  };
65
35
  render(): React.JSX.Element;
66
36
  }
@@ -43,9 +43,9 @@ export class MobilePreviewArea extends Base {
43
43
  defaultValue: string;
44
44
  list: {
45
45
  key: string;
46
- flag: any;
47
- label: any;
48
- alias: any;
46
+ flag: string;
47
+ label: string;
48
+ alias: string;
49
49
  description: string;
50
50
  availability: number;
51
51
  }[];
@@ -1,5 +1,5 @@
1
1
  export class AuthorizationWrapper extends SupplementWrapper {
2
- static getDerivedStateFromProps(nextProperties: any, previousState: any): any;
2
+ static getDerivedStateFromProps(nextProperties: any, previousState: any): Object;
3
3
  getCurrentOperator: () => any;
4
4
  reloadCurrentOperator: ({ successCallback, failCallback }: {
5
5
  successCallback?: null | undefined;
@@ -5,6 +5,6 @@
5
5
  * @extends SupplementCore
6
6
  */
7
7
  export class Supplement extends SupplementCore {
8
- static getDerivedStateFromProps(nextProperties: any, previousState: any): any;
8
+ static getDerivedStateFromProps(nextProperties: any, previousState: any): Object;
9
9
  }
10
10
  import { SupplementCore } from '../SupplementCore';
@@ -227,7 +227,7 @@ export class Base extends AuthorizationWrapper {
227
227
  renderPresetListViewItem: (record: any, index: any) => React.JSX.Element;
228
228
  renderPresetListViewItemInner: (record: any, index: any) => null;
229
229
  renderPresetListViewItemExtra: (record: any, index: any) => null;
230
- renderPresetListViewItemActions: (record: any, index: any) => any[] | null;
230
+ renderPresetListViewItemActions: (record: any, index: any) => never[] | null;
231
231
  renderPresetListViewItemActionOthers: (record: any, index: any) => null;
232
232
  renderPresetListViewItemActionSelect: (record: any, index: any) => null;
233
233
  establishListViewItemLayout: () => string;
@@ -27,10 +27,7 @@ export class DataCore extends BaseView {
27
27
  pageSubTitle: string;
28
28
  metaData: null;
29
29
  metaExtra: null;
30
- metaListData: never[]; /**
31
- * DataSingleView.DataCore
32
- * @namespace
33
- */
30
+ metaListData: never[];
34
31
  metaOriginalData: null;
35
32
  dataLoading: boolean;
36
33
  firstLoadSuccess: boolean;
@@ -1,4 +1,4 @@
1
1
  export class Wrapper extends Common {
2
- static getDerivedStateFromProps(nextProperties: any, previousState: any): any;
2
+ static getDerivedStateFromProps(nextProperties: any, previousState: any): Object;
3
3
  }
4
4
  import { Common } from '../Common';