@kmkf-fe-packages/services-components 0.7.15-alpha.48 → 0.7.15-alpha.49
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/dist/esm/components/File/index.js +1 -1
- package/dist/esm/components/LogisticsTrajectory/trajectoryCode.js +1 -1
- package/dist/esm/components/LogisticsTrajectory/trajectoryCompany.js +1 -1
- package/dist/esm/components/LogisticsTrajectory/trajectorySnapshot.js +1 -1
- package/dist/esm/factory.d.ts +1 -1
- package/package.json +4 -4
|
@@ -64,7 +64,7 @@ var BasicFile = /*#__PURE__*/_createClass(function BasicFile(options) {
|
|
|
64
64
|
});
|
|
65
65
|
});
|
|
66
66
|
_defineProperty(this, "renderExport", function (value, record) {
|
|
67
|
-
var textArr = ((record === null || record === void 0 ? void 0 : record["".concat(_this.id, "
|
|
67
|
+
var textArr = ((record === null || record === void 0 ? void 0 : record["".concat(_this.id, "_file")]) || []).reduce(function (prv, next) {
|
|
68
68
|
prv.push(next.url);
|
|
69
69
|
return prv;
|
|
70
70
|
}, []);
|
|
@@ -97,7 +97,7 @@ var TrajectoryCode = /*#__PURE__*/_createClass(function TrajectoryCode(options)
|
|
|
97
97
|
this.align = "left";
|
|
98
98
|
this.width = 200;
|
|
99
99
|
this.isCombinationComponent = false;
|
|
100
|
-
this.canSort =
|
|
100
|
+
this.canSort = false;
|
|
101
101
|
this.dataType = "string";
|
|
102
102
|
this.children = [];
|
|
103
103
|
});
|
|
@@ -77,7 +77,7 @@ var TrajectoryCompany = /*#__PURE__*/_createClass(function TrajectoryCompany(opt
|
|
|
77
77
|
this.expressDateInstance = ExpressData.getInstance();
|
|
78
78
|
this.width = 200;
|
|
79
79
|
this.isCombinationComponent = false;
|
|
80
|
-
this.canSort =
|
|
80
|
+
this.canSort = false;
|
|
81
81
|
this.children = [];
|
|
82
82
|
this.dataType = "string";
|
|
83
83
|
this.options = this.expressDateInstance.getExpressData() || [];
|
|
@@ -67,7 +67,7 @@ var TrajectorySnapshot = /*#__PURE__*/_createClass(function TrajectorySnapshot(o
|
|
|
67
67
|
this.align = "left";
|
|
68
68
|
this.width = 200;
|
|
69
69
|
this.isCombinationComponent = false;
|
|
70
|
-
this.canSort =
|
|
70
|
+
this.canSort = false;
|
|
71
71
|
this.dataType = "string";
|
|
72
72
|
this.children = [];
|
|
73
73
|
});
|
package/dist/esm/factory.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { JstLogistics, JstItemSelect, JstSupply, JstSendGood, BasicInput, BasicAddress, BasicCascader, BasicCheckbox, BasicDataTime, BasicSelect, BasicRadio, BasicTextArea, BasicPicture, BasicMultSelect, BasicGrade, BasicRate, BasicFile, BasicPosting, CommonDataTime, TradeId, ShopName, ErpTradeId, BuyerNick, ReceiverName, ReceiverMobile, ReceiverAddress, TradeDateTime, Logistics, ReturnLogistics, ActualPayment, ERemark, AliPay, ItemSelect, ItemId, ItemEnCode, SystemOrderNo, Ordinary, ThirdItemSelect, FlowStatusSelect, Payment, TemplateSelect, WorkOrderId, PlatForm, ShopInput, Submitter, Handler, CompletedUser, LogisticsInterception, LogisticsTrajectory, BsGoods, BsExchange, BsReissue } from "./index";
|
|
2
2
|
import { PickOption } from "./type";
|
|
3
|
-
export declare const factory: (type: string, options: PickOption) =>
|
|
3
|
+
export declare const factory: (type: string, options: PickOption) => ActualPayment | BasicAddress | AliPay | BsExchange | BsGoods | BsReissue | BuyerNick | BasicCascader | BasicCheckbox | CommonDataTime | CompletedUser | BasicDataTime | ItemEnCode | ItemId | ItemSelect | ErpTradeId | BasicFile | FlowStatusSelect | BasicGrade | Handler | BasicInput | JstItemSelect | JstLogistics | JstSendGood | JstSupply | Logistics | LogisticsInterception | LogisticsTrajectory | BasicMultSelect | Ordinary | Payment | BasicPicture | PlatForm | BasicPosting | BasicRadio | BasicRate | ReceiverAddress | ReceiverMobile | ReceiverName | ERemark | ReturnLogistics | BasicSelect | ShopInput | ShopName | Submitter | SystemOrderNo | TemplateSelect | BasicTextArea | ThirdItemSelect | TradeDateTime | TradeId | WorkOrderId;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kmkf-fe-packages/services-components",
|
|
3
|
-
"version": "0.7.15-alpha.
|
|
3
|
+
"version": "0.7.15-alpha.49",
|
|
4
4
|
"module": "dist/esm/index.js",
|
|
5
5
|
"typings": "dist/esm/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"father": "^4.1.7"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@kmkf-fe-packages/basic-components": "^0.7.15-alpha.
|
|
30
|
-
"@kmkf-fe-packages/kmkf-utils": "^0.7.15-alpha.
|
|
29
|
+
"@kmkf-fe-packages/basic-components": "^0.7.15-alpha.49",
|
|
30
|
+
"@kmkf-fe-packages/kmkf-utils": "^0.7.15-alpha.49"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"@ant-design/icons": "^4.7.0",
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"gitHooks": {
|
|
41
41
|
"pre-commit": "lint-staged"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "83a1112fe9ef93e93431e2c4ae163b9b4e5bc0c8"
|
|
44
44
|
}
|