antd-management-fast-component 2.5.0 → 2.6.0
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.
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export class PureExtraComponent extends PureComponent<any, any, any> {
|
|
2
|
+
constructor(properties: any);
|
|
3
|
+
componentName: string;
|
|
4
|
+
showCallProcessSwitchPromptComplete: boolean;
|
|
5
|
+
/**
|
|
6
|
+
* 用于组件内数据循环构建 key 时附加唯一前缀,有助于提升页面执行效率
|
|
7
|
+
*/
|
|
8
|
+
keyPrefix: string;
|
|
9
|
+
buildPromptModuleInfoText(text: any, ...ancillaryInformation: any[]): string;
|
|
10
|
+
promptCallProcessSwitch: () => void;
|
|
11
|
+
/**
|
|
12
|
+
* log call track
|
|
13
|
+
* @param {*} message
|
|
14
|
+
*/
|
|
15
|
+
logCallTrack(data: any, ...messages: any[]): void;
|
|
16
|
+
/**
|
|
17
|
+
* log call trace
|
|
18
|
+
* @param {*} message
|
|
19
|
+
*/
|
|
20
|
+
logCallTrace(data: any, ...messages: any[]): void;
|
|
21
|
+
buildOverloadErrorText(...texts: any[]): string;
|
|
22
|
+
}
|
|
23
|
+
export namespace PureExtraComponent {
|
|
24
|
+
namespace defaultProps {
|
|
25
|
+
let showCallProcess: boolean;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
import { PureComponent } from 'react';
|
package/es/bases/index.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
export class ImageUpload extends
|
|
2
|
-
constructor(properties: any);
|
|
1
|
+
export class ImageUpload extends PureExtraComponent {
|
|
3
2
|
state: {
|
|
4
3
|
uploading: boolean;
|
|
5
4
|
previewVisible: boolean;
|
|
@@ -40,6 +39,7 @@ export namespace ImageUpload {
|
|
|
40
39
|
export { defaultCapacity as fileListCapacity };
|
|
41
40
|
}
|
|
42
41
|
}
|
|
42
|
+
import { PureExtraComponent } from '../../bases';
|
|
43
43
|
import React from 'react';
|
|
44
44
|
declare const defaultCapacity: 8;
|
|
45
45
|
export {};
|