@kmkf-fe-packages/services-components 0.28.2-rc.11 → 0.28.2-rc.12

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.
@@ -128,15 +128,16 @@ var LogisticsMoreTrajectory = /*#__PURE__*/_createClass(function LogisticsMoreTr
128
128
  }));
129
129
  this.trajectoryStatus = new TrajectoryStatus(_objectSpread(_objectSpread({}, options), {}, {
130
130
  name: "".concat(this.name, "-\u7269\u6D41\u72B6\u6001"),
131
- id: "".concat(this.id)
131
+ id: "".concat(this.id, "_trajectoryMoreStatus"),
132
+ parentId: "".concat(this.id)
132
133
  }));
133
134
  this.trajectoryLastLogisticsInfo = new TrajectoryLastLogisticsInfo(_objectSpread(_objectSpread({}, options), {}, {
134
135
  name: "".concat(this.name, "-\u6700\u540E\u7269\u6D41\u4FE1\u606F"),
135
- id: "".concat(this.id, "_trajectoryLastLogisticsInfo")
136
+ id: "".concat(this.id, "_trajectoryMoreLastLogisticsInfo")
136
137
  }));
137
138
  this.trajectoryLastUpdateTime = new TrajectoryLastUpdateTime(_objectSpread(_objectSpread({}, options), {}, {
138
139
  name: "".concat(this.name, "-\u6700\u540E\u66F4\u65B0\u65F6\u95F4"),
139
- id: "".concat(this.id, "_trajectoryLastUpdateTime")
140
+ id: "".concat(this.id, "_trajectoryMoreLastUpdateTime")
140
141
  }));
141
142
  this.isCombinationComponent = true;
142
143
  this.canSort = false;
@@ -102,7 +102,8 @@ var LogisticsTrajectory = /*#__PURE__*/_createClass(function LogisticsTrajectory
102
102
  }));
103
103
  this.trajectoryStatus = new TrajectoryStatus(_objectSpread(_objectSpread({}, options), {}, {
104
104
  name: "".concat(this.name, "-\u7269\u6D41\u72B6\u6001"),
105
- id: "".concat(this.id)
105
+ id: "".concat(this.id, "_trajectoryStatus"),
106
+ parentId: "".concat(this.id)
106
107
  }));
107
108
  this.trajectoryLastLogisticsInfo = new TrajectoryLastLogisticsInfo(_objectSpread(_objectSpread({}, options), {}, {
108
109
  name: "".concat(this.name, "-\u6700\u540E\u7269\u6D41\u4FE1\u606F"),
@@ -17,7 +17,9 @@ declare class TrajectoryStatus implements ComponentInterface {
17
17
  children: ComponentInterface[];
18
18
  dataType: ComponentInterface["dataType"];
19
19
  expressInterceptInstance: InstanceType<typeof ExpressInterceptData>;
20
- constructor(options: PickOption);
20
+ constructor(options: PickOption & {
21
+ parentId: string;
22
+ });
21
23
  renderStatus: (record: any, w?: number) => React.JSX.Element;
22
24
  renderClient: (record: any) => React.JSX.Element | null;
23
25
  renderPc: (value: any, record: Record) => React.JSX.Element;
@@ -75,10 +75,10 @@ var TrajectoryStatus = /*#__PURE__*/_createClass(function TrajectoryStatus(optio
75
75
  return [];
76
76
  });
77
77
  this.name = options.name;
78
- this.parentId = "".concat(options.id);
79
- this.id = "".concat(options.id, "_trajectoryStatus");
80
- this.sortField = "".concat(options.id, "_trajectoryStatus");
81
- this.formField = "".concat(options.id, "_trajectoryStatus");
78
+ this.parentId = "".concat(options.parentId);
79
+ this.id = "".concat(options.id);
80
+ this.sortField = "".concat(options.id);
81
+ this.formField = "".concat(options.id);
82
82
  this.type = options.type;
83
83
  this.componentConfig = options.componentConfig;
84
84
  this.rules = [];
@@ -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, BuyerNick, ReceiverName, ReceiverMobile, ReceiverAddress, TradeDateTime, Logistics, ReturnLogistics, ActualPayment, ERemark, AliPay, ItemSelect, ItemId, ItemEnCode, SystemOrderNo, Ordinary, ThirdItemSelect, FlowStatusSelect, FlowMarkSelect, FlowTag, Payment, TemplateSelect, WorkOrderId, PlatForm, ShopInput, Submitter, PrevSubmitter, FlowCreator, Handler, CompletedUser, LogisticsInterception, LogisticsMoreInterception, LogisticsTrajectory, LogisticsMoreTrajectory, FlowWorkOrderId, BsGoods, BsExchange, BsReissue, BsReturn, BsSystemOrder, BsLogistics, StatusSelect, CommonSystemOrder, CommonMultiStatus, Calculation, NodeDeadLine, HandlerDeadLine, NodeStayDuration, WlnGoods, BsPosting, MsgStatus, NodeInput, FlowWorkOrderStatus, CommonInput, PaymentVoucherCode } from "./index";
2
2
  import { PickOption } from "./type";
3
- export declare const factory: (type: string, options: PickOption) => BasicInput | BasicAddress | BasicCascader | BasicCheckbox | BasicDataTime | BasicSelect | BasicRadio | BasicTextArea | BasicPicture | BasicMultSelect | BasicGrade | BasicRate | BasicFile | BasicPosting | CommonDataTime | TradeId | ShopName | BuyerNick | ReceiverName | ReceiverMobile | ReceiverAddress | TradeDateTime | Logistics | ReturnLogistics | ActualPayment | ERemark | AliPay | ItemSelect | ItemId | ItemEnCode | SystemOrderNo | Ordinary | ThirdItemSelect | Payment | JstLogistics | JstItemSelect | JstSendGood | JstSupply | BsSystemOrder | BsGoods | BsExchange | BsReissue | BsReturn | BsLogistics | FlowStatusSelect | FlowMarkSelect | FlowTag | TemplateSelect | WorkOrderId | LogisticsInterception | LogisticsMoreInterception | LogisticsTrajectory | LogisticsMoreTrajectory | PlatForm | ShopInput | Submitter | PrevSubmitter | FlowCreator | Handler | CompletedUser | FlowWorkOrderId | StatusSelect | Calculation | CommonSystemOrder | CommonMultiStatus | NodeDeadLine | HandlerDeadLine | NodeStayDuration | WlnGoods | BsPosting | NodeInput | FlowWorkOrderStatus | MsgStatus | CommonInput | PaymentVoucherCode;
3
+ export declare const factory: (type: string, options: PickOption) => BuyerNick | CommonInput | CompletedUser | BasicInput | BasicAddress | BasicCascader | BasicCheckbox | BasicDataTime | BasicSelect | BasicRadio | BasicTextArea | BasicPicture | BasicMultSelect | BasicGrade | BasicRate | BasicFile | BasicPosting | CommonDataTime | TradeId | ShopName | ReceiverName | ReceiverMobile | ReceiverAddress | TradeDateTime | Logistics | ReturnLogistics | ActualPayment | ERemark | AliPay | ItemSelect | ItemId | ItemEnCode | SystemOrderNo | Ordinary | ThirdItemSelect | Payment | JstLogistics | JstItemSelect | JstSendGood | JstSupply | BsSystemOrder | BsGoods | BsExchange | BsReissue | BsReturn | BsLogistics | FlowStatusSelect | FlowMarkSelect | FlowTag | TemplateSelect | WorkOrderId | LogisticsInterception | LogisticsMoreInterception | LogisticsTrajectory | LogisticsMoreTrajectory | PlatForm | ShopInput | Submitter | PrevSubmitter | FlowCreator | Handler | FlowWorkOrderId | StatusSelect | Calculation | CommonSystemOrder | CommonMultiStatus | NodeDeadLine | HandlerDeadLine | NodeStayDuration | WlnGoods | BsPosting | NodeInput | FlowWorkOrderStatus | MsgStatus | PaymentVoucherCode;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kmkf-fe-packages/services-components",
3
- "version": "0.28.2-rc.11",
3
+ "version": "0.28.2-rc.12",
4
4
  "module": "dist/esm/index.js",
5
5
  "typings": "dist/esm/index.d.ts",
6
6
  "files": [
@@ -37,7 +37,7 @@
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "00de30efe85948f8fe088b29804fc90f7a457067",
40
+ "gitHead": "94e64aecdfee39a5cad3b8391d11fb8208aa09aa",
41
41
  "gitHooks": {
42
42
  "pre-commit": "lint-staged"
43
43
  }