antd-management-fast-framework 1.1.26 → 1.1.27
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/lib/customComponents/DataPreviewDrawer/index.js +1 -0
- package/lib/framework/DataMultiPageView/MultiPageDrawer/index.d.ts +1 -0
- package/lib/framework/DataMultiPageView/MultiPageDrawer/index.js +1 -0
- package/lib/framework/DataSinglePageView/SinglePageDrawer/index.d.ts +1 -0
- package/lib/framework/DataSinglePageView/SinglePageDrawer/index.js +1 -0
- package/package.json +1 -1
- package/src/customComponents/DataPreviewDrawer/index.jsx +2 -0
- package/src/framework/DataMultiPageView/MultiPageDrawer/index.jsx +2 -0
- package/src/framework/DataSinglePageView/SinglePageDrawer/index.jsx +2 -0
|
@@ -5,6 +5,7 @@ declare class MultiPageDrawer extends MultiPage {
|
|
|
5
5
|
externalData: any;
|
|
6
6
|
};
|
|
7
7
|
loadDataAfterMount: boolean;
|
|
8
|
+
needSetFormValueAfterLoad: boolean;
|
|
8
9
|
reloadWhenShow: boolean;
|
|
9
10
|
doWorkWhenDidUpdate: (preProps: any, preState: any, snapshot: any) => void;
|
|
10
11
|
doOtherWhenChangeVisible: (preProps: any, preState: any, snapshot: any) => void;
|
|
@@ -113,6 +113,7 @@ var MultiPageDrawer = /*#__PURE__*/function (_MultiPage) {
|
|
|
113
113
|
|
|
114
114
|
_this = _super.call(this, props);
|
|
115
115
|
_this.loadDataAfterMount = false;
|
|
116
|
+
_this.needSetFormValueAfterLoad = false;
|
|
116
117
|
_this.reloadWhenShow = true;
|
|
117
118
|
|
|
118
119
|
_this.doWorkWhenDidUpdate = function (preProps, preState, snapshot) {
|
|
@@ -5,6 +5,7 @@ declare class SinglePageDrawer extends SinglePage {
|
|
|
5
5
|
externalData: any;
|
|
6
6
|
};
|
|
7
7
|
loadDataAfterMount: boolean;
|
|
8
|
+
needSetFormValueAfterLoad: boolean;
|
|
8
9
|
reloadWhenShow: boolean;
|
|
9
10
|
doWorkWhenDidUpdate: (preProps: any, preState: any, snapshot: any) => void;
|
|
10
11
|
doOtherWhenChangeVisible: (preProps: any, preState: any, snapshot: any) => void;
|
|
@@ -103,6 +103,7 @@ var SinglePageDrawer = /*#__PURE__*/function (_SinglePage) {
|
|
|
103
103
|
|
|
104
104
|
_this = _super.call(this, props);
|
|
105
105
|
_this.loadDataAfterMount = false;
|
|
106
|
+
_this.needSetFormValueAfterLoad = false;
|
|
106
107
|
_this.reloadWhenShow = true;
|
|
107
108
|
|
|
108
109
|
_this.doWorkWhenDidUpdate = function (preProps, preState, snapshot) {
|
package/package.json
CHANGED