antd-management-fast-framework 2.11.123 → 2.11.126

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.
@@ -42,10 +42,11 @@ export class InternalFlow extends Core {
42
42
  initLoadRequestParams: (o: any) => any;
43
43
  supplementLoadRequestParams: (o: any) => any;
44
44
  checkLoadRequestParams: (o: any) => boolean;
45
- initLoad: ({ requestData: requestDataSource, otherState, delay, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback, }: {
45
+ initLoad: ({ requestData: requestDataSource, otherState, delay, prepareRequest: prepareRequestSource, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback, }: {
46
46
  requestData?: {} | undefined;
47
47
  otherState?: {} | undefined;
48
48
  delay?: number | undefined;
49
+ prepareRequest?: null | undefined;
49
50
  beforeRequest?: null | undefined;
50
51
  successCallback?: null | undefined;
51
52
  failCallback?: null | undefined;
@@ -71,49 +72,55 @@ export class InternalFlow extends Core {
71
72
  * @param {*} options
72
73
  */
73
74
  pageListData: ({ otherState, requestData, delay, successCallback, failCallback, completeCallback: completeCallbackSource, }: any) => void;
74
- reloadData: ({ otherState, delay, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback: completeCallbackSource, }: {
75
+ reloadData: ({ otherState, delay, prepareRequest: prepareRequestSource, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback: completeCallbackSource, }: {
75
76
  otherState?: {} | undefined;
76
77
  delay?: number | undefined;
78
+ prepareRequest?: null | undefined;
77
79
  beforeRequest?: null | undefined;
78
80
  successCallback?: null | undefined;
79
81
  failCallback?: null | undefined;
80
82
  completeCallback?: null | undefined;
81
83
  }) => void;
82
- reloadDataWithReloadAnimalPrompt: ({ otherState, delay, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback: completeCallbackSource, }: {
84
+ reloadDataWithReloadAnimalPrompt: ({ otherState, delay, prepareRequest: prepareRequestSource, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback: completeCallbackSource, }: {
83
85
  otherState?: {} | undefined;
84
86
  delay?: number | undefined;
87
+ prepareRequest?: null | undefined;
85
88
  beforeRequest?: null | undefined;
86
89
  successCallback?: null | undefined;
87
90
  failCallback?: null | undefined;
88
91
  completeCallback?: null | undefined;
89
92
  }) => void;
90
- searchData: ({ otherState, delay, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback: completeCallbackSource, }: {
93
+ searchData: ({ otherState, delay, prepareRequest: prepareRequestSource, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback: completeCallbackSource, }: {
91
94
  otherState?: {} | undefined;
92
95
  delay?: number | undefined;
96
+ prepareRequest?: null | undefined;
93
97
  beforeRequest?: null | undefined;
94
98
  successCallback?: null | undefined;
95
99
  failCallback?: null | undefined;
96
100
  completeCallback?: null | undefined;
97
101
  }) => void;
98
- resetData: ({ otherState, delay, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback: completeCallbackSource, }: {
102
+ resetData: ({ otherState, delay, prepareRequest: prepareRequestSource, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback: completeCallbackSource, }: {
99
103
  otherState?: {} | undefined;
100
104
  delay?: number | undefined;
105
+ prepareRequest?: null | undefined;
101
106
  beforeRequest?: null | undefined;
102
107
  successCallback?: null | undefined;
103
108
  failCallback?: null | undefined;
104
109
  completeCallback?: null | undefined;
105
110
  }) => void;
106
- refreshData: ({ otherState, delay, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback: completeCallbackSource, }: {
111
+ refreshData: ({ otherState, delay, prepareRequest: prepareRequestSource, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback: completeCallbackSource, }: {
107
112
  otherState?: {} | undefined;
108
113
  delay?: number | undefined;
114
+ prepareRequest?: null | undefined;
109
115
  beforeRequest?: null | undefined;
110
116
  successCallback?: null | undefined;
111
117
  failCallback?: null | undefined;
112
118
  completeCallback?: null | undefined;
113
119
  }) => void;
114
- refreshDataWithReloadAnimalPrompt: ({ otherState, delay, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback: completeCallbackSource, }: {
120
+ refreshDataWithReloadAnimalPrompt: ({ otherState, delay, prepareRequest: prepareRequestSource, beforeRequest: beforeRequestSource, successCallback, failCallback, completeCallback: completeCallbackSource, }: {
115
121
  otherState?: {} | undefined;
116
122
  delay?: number | undefined;
123
+ prepareRequest?: null | undefined;
117
124
  beforeRequest?: null | undefined;
118
125
  successCallback?: null | undefined;
119
126
  failCallback?: null | undefined;
@@ -51,7 +51,7 @@ export class MultiPageDrawer extends MultiPage {
51
51
  * @param {*} handleData
52
52
  */
53
53
  selectRecord: ({ handleData }: any) => void;
54
- renderPresetTitleIcon: () => React.JSX.Element;
54
+ renderPresetTitleIcon: () => null;
55
55
  buildTitlePrevText: () => string;
56
56
  buildTitleText: () => any;
57
57
  buildTitleSubText: () => string;
@@ -50,7 +50,7 @@ export class SinglePageDrawer extends SinglePage {
50
50
  * @param {*} handleData
51
51
  */
52
52
  selectRecord: ({ handleData }: any) => void;
53
- renderPresetTitleIcon: () => React.JSX.Element;
53
+ renderPresetTitleIcon: () => null;
54
54
  buildTitlePrevText: () => string;
55
55
  buildTitleText: () => any;
56
56
  buildTitleSubText: () => string;