antd-management-fast-component 2.1.10 → 2.1.12

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.
Files changed (42) hide show
  1. package/es/bases/AbstractComponent/index.d.ts +36 -20
  2. package/es/components/FlexBox/index.d.ts +1 -0
  3. package/es/components/FormExtra/ActionItem/index.d.ts +5 -3
  4. package/es/components/FormExtra/ComponentItem/index.d.ts +5 -4
  5. package/es/components/FormExtra/DatePickerItem/index.d.ts +5 -3
  6. package/es/components/FormExtra/DisplayItem/index.d.ts +4 -2
  7. package/es/components/FormExtra/InputItem/index.d.ts +5 -4
  8. package/es/components/FormExtra/InputNumberItem/index.d.ts +5 -4
  9. package/es/components/FormExtra/NowTimeItem/index.d.ts +5 -2
  10. package/es/components/FormExtra/OnlyShowDatetimeItem/index.d.ts +5 -3
  11. package/es/components/FormExtra/OnlyShowInputItem/index.d.ts +5 -3
  12. package/es/components/FormExtra/OnlyShowTextareaItem/index.d.ts +5 -3
  13. package/es/components/FormExtra/PasswordItem/index.d.ts +5 -3
  14. package/es/components/FormExtra/RadioItem/index.d.ts +5 -3
  15. package/es/components/FormExtra/SelectItem/index.d.ts +5 -3
  16. package/es/components/FormExtra/SwitchItem/index.d.ts +5 -3
  17. package/es/components/FormExtra/SyntaxHighlighterItem/index.d.ts +5 -3
  18. package/es/components/FormExtra/TextAreaItem/index.d.ts +5 -3
  19. package/es/components/FormExtra/TextItem/index.d.ts +5 -3
  20. package/es/components/FormExtra/TimePickerItem/index.d.ts +5 -3
  21. package/es/components/ImageBox/index.d.ts +0 -6
  22. package/es/components/ImageContentPreview/index.d.ts +0 -6
  23. package/es/components/PageExtra/BodyContent/index.d.ts +5 -3
  24. package/es/components/PageExtra/CardCollectionItemContent/index.d.ts +5 -3
  25. package/es/components/PageExtra/ContentBox/index.d.ts +5 -3
  26. package/es/components/PageExtra/ContentTabBox/index.d.ts +5 -3
  27. package/es/components/PageExtra/HeaderContent/index.d.ts +5 -3
  28. package/es/components/PageExtra/HeaderExtraContent/index.d.ts +5 -3
  29. package/es/components/PageExtra/HeaderSubTitle/index.d.ts +5 -3
  30. package/es/components/PageExtra/HeaderTagWrapper/index.d.ts +5 -3
  31. package/es/components/PageExtra/HeaderTitle/index.d.ts +5 -3
  32. package/es/components/PageExtra/HelpContent/index.d.ts +5 -3
  33. package/es/components/PageExtra/PageWrapper/index.d.ts +5 -3
  34. package/es/components/PageExtra/SiderBox/index.d.ts +5 -3
  35. package/es/components/PageExtra/TabBarExtraBox/index.d.ts +5 -3
  36. package/es/components/PageExtra/ToolBar/index.d.ts +5 -3
  37. package/es/components/StandardTable/index.d.ts +6 -1
  38. package/es/components/index.d.ts +0 -1
  39. package/es/index.css +1 -1
  40. package/es/index.js +3 -3
  41. package/package.json +25 -25
  42. package/es/components/StandardTableCustom/index.d.ts +0 -21
@@ -5,13 +5,17 @@ export class AbstractComponent extends Component<any, any, any> {
5
5
  static getDerivedStateFromProps(_nextProperties: any, _previousState: any): null;
6
6
  constructor(properties: any);
7
7
  mounted: boolean;
8
+ preventRender: boolean;
8
9
  forceUpdateWhenChildrenChange: boolean;
9
10
  /**
10
11
  *显示render次数开关, 用于开发时候调试页面渲染性能
11
12
  */
12
13
  showRenderCountInConsole: boolean;
13
- showShouldComponentUpdateInConsole: string;
14
14
  renderCount: number;
15
+ /**
16
+ * show process call information,display call track and call trace in console
17
+ */
18
+ showCallProcess: boolean;
15
19
  /**
16
20
  * 用于组件内数据循环构建 key 时附加唯一前缀,有助于提升页面执行效率
17
21
  */
@@ -28,16 +32,28 @@ export class AbstractComponent extends Component<any, any, any> {
28
32
  componentAuthority: null;
29
33
  componentName: string;
30
34
  ignoreComparePropertyKeyCollection: any[];
35
+ fieldConfig: {
36
+ dateRangeFieldName: string;
37
+ };
38
+ paramsKey: string;
39
+ filterFormValues: {};
40
+ filterNoFormValues: {};
41
+ filterExtraValues: {
42
+ startTimeAlias: string;
43
+ startTime: string;
44
+ endTimeAlias: string;
45
+ endTime: string;
46
+ };
47
+ sorterValues: {};
48
+ pageValues: {
49
+ pageNo: number;
50
+ frontendPageNo: number;
51
+ pageSize: number;
52
+ };
31
53
  state: {
32
54
  error: null;
33
55
  errorInfo: null;
34
56
  counter: number;
35
- dataLoading: boolean;
36
- processing: boolean;
37
- reloading: boolean;
38
- searching: boolean;
39
- refreshing: boolean;
40
- paging: boolean;
41
57
  firstLoadSuccess: boolean;
42
58
  loadSuccess: boolean;
43
59
  urlParams: null;
@@ -50,7 +66,9 @@ export class AbstractComponent extends Component<any, any, any> {
50
66
  componentDidUpdate(preProperties: any, preState: any, snapshot: any): void;
51
67
  componentWillUnmount(): void;
52
68
  judgeShowRenderCountInConsole: () => boolean;
53
- increaseCounter(callback: any): void;
69
+ increaseCounter({ callback }: {
70
+ callback?: null | undefined;
71
+ }): void;
54
72
  doDidMountTask: () => void;
55
73
  checkAuthentication: () => boolean;
56
74
  checkAuthorization: () => boolean;
@@ -90,23 +108,21 @@ export class AbstractComponent extends Component<any, any, any> {
90
108
  */
91
109
  authorizeFailCallback: (remoteData: Object) => void;
92
110
  showRenderCount(): void;
111
+ logRender(message: any): void;
93
112
  /**
94
- * check loading progress,if loading or load fail,return false,else return true
95
- * @returns bool
96
- */
97
- checkLoadingProgress(): boolean;
98
- /**
99
- * check operability,if loading or or processing or load fail,return false,else return true
100
- * @returns bool
113
+ * log call track
114
+ * @param {*} message
101
115
  */
102
- checkOperability(): boolean;
116
+ logCallTrack(data: any, ...messages: any[]): void;
103
117
  /**
104
- * check in progress,if loading or or processing,return false,else return true
105
- * @returns bool
118
+ * log call trace
119
+ * @param {*} message
106
120
  */
107
- checkInProgress(): boolean;
108
- logRender(message: any): void;
121
+ logCallTrace(data: any, ...messages: any[]): void;
109
122
  renderFurther(): null;
123
+ setPageValue(o: any): void;
124
+ openPreventRender(): void;
125
+ closePreventRender(): void;
110
126
  /**
111
127
  * render the practical view
112
128
  */
@@ -18,6 +18,7 @@ export namespace FlexBox {
18
18
  const top: null;
19
19
  const bottom: null;
20
20
  const style: null;
21
+ const className: null;
21
22
  }
22
23
  }
23
24
  import React from 'react';
@@ -1,5 +1,7 @@
1
- export class ActionItem extends BaseComponent {
2
- renderFurther(): JSX.Element;
1
+ export class ActionItem extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element;
3
5
  }
4
6
  export namespace ActionItem {
5
7
  namespace defaultProps {
@@ -8,4 +10,4 @@ export namespace ActionItem {
8
10
  const hidden: boolean;
9
11
  }
10
12
  }
11
- import { BaseComponent } from '../../../bases';
13
+ import React from 'react';
@@ -1,6 +1,7 @@
1
- export class ComponentItem extends BaseComponent {
2
- ignoreComparePropertyKeyCollection: string[];
3
- renderFurther(): JSX.Element;
1
+ export class ComponentItem extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element;
4
5
  }
5
6
  export namespace ComponentItem {
6
7
  namespace defaultProps {
@@ -12,4 +13,4 @@ export namespace ComponentItem {
12
13
  const hidden: boolean;
13
14
  }
14
15
  }
15
- import { BaseComponent } from '../../../bases';
16
+ import React from 'react';
@@ -1,5 +1,7 @@
1
- export class DatePickerItem extends BaseComponent {
2
- renderFurther(): JSX.Element;
1
+ export class DatePickerItem extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element;
3
5
  }
4
6
  export namespace DatePickerItem {
5
7
  namespace defaultProps {
@@ -13,4 +15,4 @@ export namespace DatePickerItem {
13
15
  const hidden: boolean;
14
16
  }
15
17
  }
16
- import { BaseComponent } from '../../../bases';
18
+ import React from 'react';
@@ -1,4 +1,6 @@
1
- export class DisplayItem extends BaseComponent {
1
+ export class DisplayItem extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
2
4
  render(): JSX.Element;
3
5
  }
4
6
  export namespace DisplayItem {
@@ -8,4 +10,4 @@ export namespace DisplayItem {
8
10
  const empty: string;
9
11
  }
10
12
  }
11
- import { BaseComponent } from '../../../bases';
13
+ import React from 'react';
@@ -1,6 +1,7 @@
1
- export class InputItem extends BaseComponent {
2
- ignoreComparePropertyKeyCollection: string[];
3
- renderFurther(): JSX.Element;
1
+ export class InputItem extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element;
4
5
  }
5
6
  export namespace InputItem {
6
7
  namespace defaultProps {
@@ -16,4 +17,4 @@ export namespace InputItem {
16
17
  const hidden: boolean;
17
18
  }
18
19
  }
19
- import { BaseComponent } from '../../../bases';
20
+ import React from 'react';
@@ -1,6 +1,7 @@
1
- export class InputNumberItem extends BaseComponent {
2
- ignoreComparePropertyKeyCollection: string[];
3
- renderFurther(): JSX.Element;
1
+ export class InputNumberItem extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element;
4
5
  }
5
6
  export namespace InputNumberItem {
6
7
  namespace defaultProps {
@@ -15,4 +16,4 @@ export namespace InputNumberItem {
15
16
  const hidden: boolean;
16
17
  }
17
18
  }
18
- import { BaseComponent } from '../../../bases';
19
+ import React from 'react';
@@ -1,4 +1,7 @@
1
- export class NowTimeItem extends OnlyShowDatetimeItem {
1
+ export class NowTimeItem extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element;
2
5
  }
3
6
  export namespace NowTimeItem {
4
7
  namespace defaultProps {
@@ -7,4 +10,4 @@ export namespace NowTimeItem {
7
10
  const formItemLayout: null;
8
11
  }
9
12
  }
10
- import { OnlyShowDatetimeItem } from '../OnlyShowDatetimeItem';
13
+ import React from 'react';
@@ -1,5 +1,7 @@
1
- export class OnlyShowDatetimeItem extends BaseComponent {
2
- renderFurther(): JSX.Element;
1
+ export class OnlyShowDatetimeItem extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element;
3
5
  }
4
6
  export namespace OnlyShowDatetimeItem {
5
7
  namespace defaultProps {
@@ -9,4 +11,4 @@ export namespace OnlyShowDatetimeItem {
9
11
  const formItemLayout: null;
10
12
  }
11
13
  }
12
- import { BaseComponent } from '../../../bases';
14
+ import React from 'react';
@@ -1,5 +1,7 @@
1
- export class OnlyShowInputItem extends BaseComponent {
2
- renderFurther(): JSX.Element;
1
+ export class OnlyShowInputItem extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element;
3
5
  }
4
6
  export namespace OnlyShowInputItem {
5
7
  namespace defaultProps {
@@ -14,4 +16,4 @@ export namespace OnlyShowInputItem {
14
16
  const hidden: boolean;
15
17
  }
16
18
  }
17
- import { BaseComponent } from '../../../bases';
19
+ import React from 'react';
@@ -1,5 +1,7 @@
1
- export class OnlyShowTextareaItem extends BaseComponent {
2
- renderFurther(): JSX.Element;
1
+ export class OnlyShowTextareaItem extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element;
3
5
  }
4
6
  export namespace OnlyShowTextareaItem {
5
7
  namespace defaultProps {
@@ -12,4 +14,4 @@ export namespace OnlyShowTextareaItem {
12
14
  const hidden: boolean;
13
15
  }
14
16
  }
15
- import { BaseComponent } from '../../../bases';
17
+ import React from 'react';
@@ -1,5 +1,7 @@
1
- export class PasswordItem extends BaseComponent {
2
- renderFurther(): JSX.Element;
1
+ export class PasswordItem extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element;
3
5
  }
4
6
  export namespace PasswordItem {
5
7
  namespace defaultProps {
@@ -13,4 +15,4 @@ export namespace PasswordItem {
13
15
  const hidden: boolean;
14
16
  }
15
17
  }
16
- import { BaseComponent } from '../../../bases';
18
+ import React from 'react';
@@ -1,5 +1,7 @@
1
- export class RadioItem extends BaseComponent {
2
- renderFurther(): JSX.Element;
1
+ export class RadioItem extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element;
3
5
  }
4
6
  export namespace RadioItem {
5
7
  namespace defaultProps {
@@ -16,4 +18,4 @@ export namespace RadioItem {
16
18
  const hidden: boolean;
17
19
  }
18
20
  }
19
- import { BaseComponent } from '../../../bases';
21
+ import React from 'react';
@@ -1,5 +1,7 @@
1
- export class SelectItem extends BaseComponent {
2
- renderFurther(): JSX.Element;
1
+ export class SelectItem extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element;
3
5
  }
4
6
  export namespace SelectItem {
5
7
  namespace defaultProps {
@@ -16,4 +18,4 @@ export namespace SelectItem {
16
18
  const hidden: boolean;
17
19
  }
18
20
  }
19
- import { BaseComponent } from '../../../bases';
21
+ import React from 'react';
@@ -1,5 +1,7 @@
1
- export class SwitchItem extends BaseComponent {
2
- renderFurther(): JSX.Element;
1
+ export class SwitchItem extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element;
3
5
  }
4
6
  export namespace SwitchItem {
5
7
  namespace defaultProps {
@@ -13,4 +15,4 @@ export namespace SwitchItem {
13
15
  const hidden: boolean;
14
16
  }
15
17
  }
16
- import { BaseComponent } from '../../../bases';
18
+ import React from 'react';
@@ -1,5 +1,7 @@
1
- export class SyntaxHighlighterItem extends BaseComponent {
2
- renderFurther(): JSX.Element;
1
+ export class SyntaxHighlighterItem extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element;
3
5
  }
4
6
  export namespace SyntaxHighlighterItem {
5
7
  namespace defaultProps {
@@ -13,4 +15,4 @@ export namespace SyntaxHighlighterItem {
13
15
  const hidden: boolean;
14
16
  }
15
17
  }
16
- import { BaseComponent } from '../../../bases';
18
+ import React from 'react';
@@ -1,5 +1,7 @@
1
- export class TextAreaItem extends BaseComponent {
2
- renderFurther(): JSX.Element;
1
+ export class TextAreaItem extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element;
3
5
  }
4
6
  export namespace TextAreaItem {
5
7
  namespace defaultProps {
@@ -13,4 +15,4 @@ export namespace TextAreaItem {
13
15
  const hidden: boolean;
14
16
  }
15
17
  }
16
- import { BaseComponent } from '../../../bases';
18
+ import React from 'react';
@@ -1,5 +1,7 @@
1
- export class TextItem extends BaseComponent {
2
- renderFurther(): JSX.Element;
1
+ export class TextItem extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element;
3
5
  }
4
6
  export namespace TextItem {
5
7
  namespace defaultProps {
@@ -11,4 +13,4 @@ export namespace TextItem {
11
13
  const hidden: boolean;
12
14
  }
13
15
  }
14
- import { BaseComponent } from '../../../bases';
16
+ import React from 'react';
@@ -1,5 +1,7 @@
1
- export class TimePickerItem extends BaseComponent {
2
- renderFurther(): JSX.Element;
1
+ export class TimePickerItem extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element;
3
5
  }
4
6
  export namespace TimePickerItem {
5
7
  namespace defaultProps {
@@ -13,4 +15,4 @@ export namespace TimePickerItem {
13
15
  const hidden: boolean;
14
16
  }
15
17
  }
16
- import { BaseComponent } from '../../../bases';
18
+ import React from 'react';
@@ -47,12 +47,6 @@ export class ImageBox extends BaseComponent {
47
47
  error: null;
48
48
  errorInfo: null;
49
49
  counter: number;
50
- dataLoading: boolean;
51
- processing: boolean;
52
- reloading: boolean;
53
- searching: boolean;
54
- refreshing: boolean;
55
- paging: boolean;
56
50
  firstLoadSuccess: boolean;
57
51
  urlParams: null;
58
52
  externalData: null;
@@ -15,12 +15,6 @@ export class ImageContentPreview extends BaseComponent {
15
15
  error: null;
16
16
  errorInfo: null;
17
17
  counter: number;
18
- dataLoading: boolean;
19
- processing: boolean;
20
- reloading: boolean;
21
- searching: boolean;
22
- refreshing: boolean;
23
- paging: boolean;
24
18
  firstLoadSuccess: boolean;
25
19
  loadSuccess: boolean;
26
20
  urlParams: null;
@@ -1,5 +1,7 @@
1
- export class BodyContent extends BaseComponent {
2
- renderFurther(): JSX.Element;
1
+ export class BodyContent extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element;
3
5
  }
4
6
  export namespace BodyContent {
5
7
  namespace defaultProps {
@@ -7,4 +9,4 @@ export namespace BodyContent {
7
9
  const bottom: null;
8
10
  }
9
11
  }
10
- import { BaseComponent } from '../../../bases';
12
+ import React from 'react';
@@ -1,5 +1,7 @@
1
- export class CardCollectionItemContent extends BaseComponent {
2
- renderFurther(): JSX.Element | null;
1
+ export class CardCollectionItemContent extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element | null;
3
5
  }
4
6
  export namespace CardCollectionItemContent {
5
7
  namespace defaultProps {
@@ -18,4 +20,4 @@ export namespace CardCollectionItemContent {
18
20
  const extraBuilder: null;
19
21
  }
20
22
  }
21
- import { BaseComponent } from '../../../bases';
23
+ import React from 'react';
@@ -1,5 +1,7 @@
1
- export class ContentBox extends BaseComponent {
2
- renderFurther(): any;
1
+ export class ContentBox extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): any;
3
5
  }
4
6
  export namespace ContentBox {
5
7
  namespace defaultProps {
@@ -11,4 +13,4 @@ export namespace ContentBox {
11
13
  const bottom: null;
12
14
  }
13
15
  }
14
- import { BaseComponent } from '../../../bases';
16
+ import React from 'react';
@@ -1,5 +1,7 @@
1
- export class ContentTabBox extends BaseComponent {
2
- renderFurther(): JSX.Element;
1
+ export class ContentTabBox extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element;
3
5
  }
4
6
  export namespace ContentTabBox {
5
7
  namespace defaultProps {
@@ -9,4 +11,4 @@ export namespace ContentTabBox {
9
11
  const onTabChange: null;
10
12
  }
11
13
  }
12
- import { BaseComponent } from '../../../bases';
14
+ import React from 'react';
@@ -1,5 +1,7 @@
1
- export class HeaderContent extends BaseComponent {
2
- renderFurther(): JSX.Element | null;
1
+ export class HeaderContent extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element | null;
3
5
  }
4
6
  export namespace HeaderContent {
5
7
  namespace defaultProps {
@@ -9,4 +11,4 @@ export namespace HeaderContent {
9
11
  const actions: never[];
10
12
  }
11
13
  }
12
- import { BaseComponent } from '../../../bases';
14
+ import React from 'react';
@@ -1,5 +1,7 @@
1
- export class HeaderExtraContent extends BaseComponent {
2
- renderFurther(): JSX.Element;
1
+ export class HeaderExtraContent extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element;
3
5
  }
4
6
  export namespace HeaderExtraContent {
5
7
  namespace defaultProps {
@@ -9,4 +11,4 @@ export namespace HeaderExtraContent {
9
11
  const time: Date;
10
12
  }
11
13
  }
12
- import { BaseComponent } from '../../../bases';
14
+ import React from 'react';
@@ -1,9 +1,11 @@
1
- export class HeaderSubTitle extends BaseComponent {
2
- renderFurther(): JSX.Element | null;
1
+ export class HeaderSubTitle extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element | null;
3
5
  }
4
6
  export namespace HeaderSubTitle {
5
7
  namespace defaultProps {
6
8
  const text: string;
7
9
  }
8
10
  }
9
- import { BaseComponent } from '../../../bases';
11
+ import React from 'react';
@@ -1,9 +1,11 @@
1
- export class HeaderTagWrapper extends BaseComponent {
2
- renderFurther(): JSX.Element;
1
+ export class HeaderTagWrapper extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element;
3
5
  }
4
6
  export namespace HeaderTagWrapper {
5
7
  namespace defaultProps {
6
8
  const list: never[];
7
9
  }
8
10
  }
9
- import { BaseComponent } from '../../../bases';
11
+ import React from 'react';
@@ -1,5 +1,7 @@
1
- export class HeaderTitle extends BaseComponent {
2
- renderFurther(): JSX.Element;
1
+ export class HeaderTitle extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element;
3
5
  }
4
6
  export namespace HeaderTitle {
5
7
  namespace defaultProps {
@@ -7,4 +9,4 @@ export namespace HeaderTitle {
7
9
  const titlePrefix: string;
8
10
  }
9
11
  }
10
- import { BaseComponent } from '../../../bases';
12
+ import React from 'react';
@@ -1,5 +1,7 @@
1
- export class HelpContent extends BaseComponent {
2
- renderFurther(): JSX.Element | null;
1
+ export class HelpContent extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element | null;
3
5
  }
4
6
  export namespace HelpContent {
5
7
  namespace defaultProps {
@@ -9,4 +11,4 @@ export namespace HelpContent {
9
11
  const list: never[];
10
12
  }
11
13
  }
12
- import { BaseComponent } from '../../../bases';
14
+ import React from 'react';
@@ -1,5 +1,7 @@
1
- export class PageWrapper extends BaseComponent {
2
- renderFurther(): JSX.Element;
1
+ export class PageWrapper extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element;
3
5
  }
4
6
  export namespace PageWrapper {
5
7
  namespace defaultProps {
@@ -20,4 +22,4 @@ export namespace PageWrapper {
20
22
  const extraContentConfig: null;
21
23
  }
22
24
  }
23
- import { BaseComponent } from '../../../bases';
25
+ import React from 'react';
@@ -1,5 +1,7 @@
1
- export class SiderBox extends BaseComponent {
2
- renderFurther(): any;
1
+ export class SiderBox extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): any;
3
5
  }
4
6
  export namespace SiderBox {
5
7
  namespace defaultProps {
@@ -7,4 +9,4 @@ export namespace SiderBox {
7
9
  const bottom: null;
8
10
  }
9
11
  }
10
- import { BaseComponent } from '../../../bases';
12
+ import React from 'react';
@@ -1,5 +1,7 @@
1
- export class TabBarExtraBox extends BaseComponent {
2
- renderFurther(): JSX.Element | null;
1
+ export class TabBarExtraBox extends React.PureComponent<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): JSX.Element | null;
3
5
  }
4
6
  export namespace TabBarExtraBox {
5
7
  namespace defaultProps {
@@ -7,4 +9,4 @@ export namespace TabBarExtraBox {
7
9
  const split: boolean;
8
10
  }
9
11
  }
10
- import { BaseComponent } from '../../../bases';
12
+ import React from 'react';