antd-management-fast-framework 2.11.70 → 2.11.76
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/MenuWrapper/index.d.ts +1 -1
- package/es/components/PageExtraWrapper/index.d.ts +1 -1
- package/es/components/ShortcutNavigation/index.d.ts +9 -0
- package/es/components/index.d.ts +1 -0
- package/es/framework/Common/InternalSwitchoverFlow/index.d.ts +2 -2
- package/es/framework/DataModal/Base/index.d.ts +2 -4
- package/es/framework/DataModal/BaseFormModal/index.d.ts +9 -0
- package/es/framework/DataModal/BaseLoadModal/index.d.ts +2 -2
- package/es/framework/DataModal/BaseNeedlessLoadModal/index.d.ts +2 -2
- package/es/index.js +2 -2
- package/es/modelBuilders/shortcutControl.d.ts +33 -0
- package/es/utils/interfaceSettingAssist.d.ts +3 -1
- package/es/utils/shortcutControlAssist.d.ts +12 -0
- package/package.json +16 -16
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export class ShortcutNavigation extends React.PureComponent<any, any, any> {
|
|
2
|
+
constructor(props: any);
|
|
3
|
+
constructor(props: any, context: any);
|
|
4
|
+
render(): React.JSX.Element;
|
|
5
|
+
}
|
|
6
|
+
export namespace ShortcutNavigation {
|
|
7
|
+
let defaultProps: {};
|
|
8
|
+
}
|
|
9
|
+
import React from 'react';
|
package/es/components/index.d.ts
CHANGED
|
@@ -5,12 +5,12 @@ export class InternalSwitchoverFlow extends InternalFlow {
|
|
|
5
5
|
getMenuListAvailable: () => any;
|
|
6
6
|
handleMenuChange: ({ key }: {
|
|
7
7
|
key: any;
|
|
8
|
-
}) =>
|
|
8
|
+
}) => void;
|
|
9
9
|
establishTabBarExtraContentLeftConfig: () => null;
|
|
10
10
|
establishTabBarExtraContentRightConfig: () => null;
|
|
11
11
|
adjustTabListAvailable: (tabListAvailable: any) => any;
|
|
12
12
|
getTabListAvailable: () => any;
|
|
13
|
-
handleTabChange: (key: any) =>
|
|
13
|
+
handleTabChange: (key: any) => void;
|
|
14
14
|
buildTabBarExtraContent: () => {
|
|
15
15
|
left: React.JSX.Element;
|
|
16
16
|
right: React.JSX.Element;
|
|
@@ -53,10 +53,8 @@ export class Base extends BaseWindow {
|
|
|
53
53
|
buildTitleSubTextPrefix: () => string;
|
|
54
54
|
buildTitleSubTextAlign: () => string;
|
|
55
55
|
renderPresetTitleIcon: () => React.JSX.Element;
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
renderPresetFormWrapper: () => React.JSX.Element;
|
|
59
|
-
renderPresetModalInner: () => React.JSX.Element;
|
|
56
|
+
renderPresetContentContainorInner: () => null;
|
|
57
|
+
renderPresetModalInner: () => null;
|
|
60
58
|
renderFurther(): React.JSX.Element;
|
|
61
59
|
}
|
|
62
60
|
import { BaseWindow } from '../../DataOperation/BaseWindow';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export class BaseFormModal extends Base {
|
|
2
|
+
renderPresetFormContent: () => any;
|
|
3
|
+
renderPresetForm: () => React.JSX.Element;
|
|
4
|
+
renderPresetFormWrapper: () => React.JSX.Element;
|
|
5
|
+
renderPresetContentContainorInner: () => React.JSX.Element;
|
|
6
|
+
renderPresetModalInner: () => React.JSX.Element;
|
|
7
|
+
}
|
|
8
|
+
import { Base } from '../Base';
|
|
9
|
+
import React from 'react';
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export class BaseLoadModal extends
|
|
1
|
+
export class BaseLoadModal extends BaseFormModal {
|
|
2
2
|
}
|
|
3
|
-
import {
|
|
3
|
+
import { BaseFormModal } from '../BaseFormModal';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export class BaseNeedlessLoadModal extends
|
|
1
|
+
export class BaseNeedlessLoadModal extends BaseFormModal {
|
|
2
2
|
showReloadButton: boolean;
|
|
3
3
|
buildInitialValues: () => {};
|
|
4
4
|
fillDefaultInitialValues: () => {};
|
|
5
5
|
}
|
|
6
|
-
import {
|
|
6
|
+
import { BaseFormModal } from '../BaseFormModal';
|