antd-management-fast-framework 2.12.58 → 2.12.59
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/es/components/DrawerExtra/index.d.ts +1 -1
- package/es/components/ModalExtra/index.d.ts +1 -1
- package/es/framework/DataListView/Base/index.d.ts +4 -3
- package/es/framework/DataMultiPageView/MultiPageSelectDrawer/index.d.ts +1 -1
- package/es/framework/DataMultiPageView/MultiPageSelectModal/index.d.ts +1 -1
- package/es/framework/DataOperation/BaseWindow/index.d.ts +1 -1
- package/es/index.js +2 -2
- package/package.json +1 -1
|
@@ -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
|
-
|
|
12
|
+
destroyOnHidden: boolean;
|
|
13
13
|
overlayContent: null;
|
|
14
14
|
overlayButtonOpenText: string;
|
|
15
15
|
overlayButtonCloseText: string;
|
|
@@ -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
|
-
|
|
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) =>
|
|
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 {
|