antd-management-fast-framework 2.12.58 → 2.12.61

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.
@@ -9,7 +9,7 @@ export class DrawerExtra extends React.PureComponent<any, any, any> {
9
9
  titlePrefix: null;
10
10
  title: null;
11
11
  subtitle: null;
12
- destroyOnClose: boolean;
12
+ destroyOnHidden: boolean;
13
13
  overlayContent: null;
14
14
  overlayButtonOpenText: string;
15
15
  overlayButtonCloseText: string;
@@ -5,7 +5,7 @@ export class ModalExtra extends React.PureComponent<any, any, any> {
5
5
  icon: null;
6
6
  titlePrefix: null;
7
7
  title: null;
8
- destroyOnClose: boolean;
8
+ destroyOnHidden: boolean;
9
9
  };
10
10
  buildBodyStyle: () => {
11
11
  position?: undefined;
@@ -231,9 +231,10 @@ export class Base extends AuthorizationWrapper {
231
231
  buildPaginationBar: () => React.JSX.Element;
232
232
  renderPresetCardExtraAction: () => React.JSX.Element;
233
233
  renderPresetListViewItem: (record: any, index: any) => React.JSX.Element;
234
- renderPresetListViewItemInner: (record: any, index: any) => null;
234
+ establishPresetListViewItemInnerConfig: (record: any, index: any) => {};
235
+ renderPresetListViewItemInner: (item: any, index: any) => React.JSX.Element;
235
236
  renderPresetListViewItemExtra: (record: any, index: any) => null;
236
- renderPresetListViewItemActions: (record: any, index: any) => never[] | null;
237
+ renderPresetListViewItemActions: (record: any, index: any) => React.JSX.Element[] | null;
237
238
  renderPresetListViewItemActionOthers: (record: any, index: any) => null;
238
239
  renderPresetListViewItemActionSelect: (record: any, index: any) => null;
239
240
  establishListViewItemLayout: () => string;
@@ -252,7 +253,7 @@ export class Base extends AuthorizationWrapper {
252
253
  renderPresetContentArea: () => React.JSX.Element;
253
254
  establishPageContentLayoutConfig: () => {};
254
255
  establishListItemDropdownConfig: (record: any) => null;
255
- renderPresetListItemDropdown: (record: any) => React.JSX.Element;
256
+ renderPresetListItemDropdown: (record: any) => React.JSX.Element | null;
256
257
  }
257
258
  import { AuthorizationWrapper } from '../../AuthorizationWrapper';
258
259
  import React from 'react';
@@ -29,7 +29,7 @@ export class MultiPageSelectDrawer extends MultiPageDrawer {
29
29
  handleData: any;
30
30
  }) => void;
31
31
  execSelect: () => void;
32
- renderPresetListViewItemActionSelect: (item: any, index: any) => import("react").JSX.Element;
32
+ renderPresetListViewItemActionSelect: (item: any, index: any) => import("react").JSX.Element | null;
33
33
  }
34
34
  export namespace MultiPageSelectDrawer {
35
35
  namespace defaultProps {
@@ -29,7 +29,7 @@ export class MultiPageSelectModal extends MultiPageModal {
29
29
  handleData: any;
30
30
  }) => void;
31
31
  execSelect: () => void;
32
- renderPresetListViewItemActionSelect: (item: any, index: any) => import("react").JSX.Element;
32
+ renderPresetListViewItemActionSelect: (item: any, index: any) => import("react").JSX.Element | null;
33
33
  }
34
34
  export namespace MultiPageSelectModal {
35
35
  namespace defaultProps {
@@ -42,7 +42,7 @@ export class BaseWindow extends Base {
42
42
  * 关闭后是否立即销毁, 默认 false
43
43
  * @member {boolean}
44
44
  */
45
- destroyOnClose: boolean;
45
+ destroyOnHidden: boolean;
46
46
  /**
47
47
  * 调整关闭时传递的参数。
48
48
  * @function