@kmkf-fe-packages/services-components 0.8.17-alpha.23 → 0.8.17-alpha.24

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.
@@ -0,0 +1,43 @@
1
+ import { ComponentInterface, PickOption, ColumnConfig, Record } from '../../type';
2
+ import React from 'react';
3
+ import './index.less';
4
+ declare class HandlerDeadLine implements ComponentInterface {
5
+ name: string;
6
+ id: string;
7
+ sortField: string;
8
+ type: string;
9
+ rules: any[];
10
+ componentConfig: ComponentInterface["componentConfig"];
11
+ effects: ComponentInterface["effects"];
12
+ isCombinationComponent: boolean;
13
+ formField: string;
14
+ canSort: boolean;
15
+ children: ComponentInterface[];
16
+ dataType: ComponentInterface['dataType'];
17
+ options: Array<{
18
+ label: string;
19
+ value: string;
20
+ }>;
21
+ constructor(options: PickOption);
22
+ renderPc: (value: unknown, record: Record) => React.JSX.Element;
23
+ renderLog: () => null;
24
+ getComponentValue: (r: Record) => any;
25
+ renderExport: (value: any, record: any) => any;
26
+ renderClient: () => null;
27
+ editRender: () => null;
28
+ filterConfig: (item: ColumnConfig) => {
29
+ searchDefaultConditions: "eq";
30
+ type: string;
31
+ id: string;
32
+ name: string;
33
+ filterComponentType: "MultipleSelect";
34
+ props: {
35
+ mode: string;
36
+ options: {
37
+ label: string;
38
+ value: string;
39
+ }[];
40
+ };
41
+ };
42
+ }
43
+ export default HandlerDeadLine;
@@ -0,0 +1,84 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
3
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
4
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
5
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
6
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
7
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
8
+ import React from 'react';
9
+ import { SYMBOL } from "../../constant";
10
+ import "./index.less";
11
+ var HandlerDeadLine = /*#__PURE__*/_createClass(function HandlerDeadLine(options) {
12
+ var _this = this;
13
+ _classCallCheck(this, HandlerDeadLine);
14
+ _defineProperty(this, "name", void 0);
15
+ _defineProperty(this, "id", void 0);
16
+ _defineProperty(this, "sortField", void 0);
17
+ _defineProperty(this, "type", void 0);
18
+ _defineProperty(this, "rules", void 0);
19
+ _defineProperty(this, "componentConfig", void 0);
20
+ _defineProperty(this, "effects", void 0);
21
+ _defineProperty(this, "isCombinationComponent", void 0);
22
+ _defineProperty(this, "formField", void 0);
23
+ _defineProperty(this, "canSort", void 0);
24
+ _defineProperty(this, "children", void 0);
25
+ _defineProperty(this, "dataType", void 0);
26
+ _defineProperty(this, "options", void 0);
27
+ _defineProperty(this, "renderPc", function (value, record) {
28
+ var _record, _record2;
29
+ return /*#__PURE__*/React.createElement("span", {
30
+ className: record !== null && record !== void 0 && (_record = record["".concat(_this.id)]) !== null && _record !== void 0 && _record.includes('已超时') ? 'timeout' : ''
31
+ }, (_record2 = record === null || record === void 0 ? void 0 : record["".concat(_this.id)]) !== null && _record2 !== void 0 ? _record2 : '--');
32
+ });
33
+ _defineProperty(this, "renderLog", function () {
34
+ return null;
35
+ });
36
+ _defineProperty(this, "getComponentValue", function (r) {
37
+ return r === null || r === void 0 ? void 0 : r["".concat(_this.id)];
38
+ });
39
+ _defineProperty(this, "renderExport", function (value, record) {
40
+ var _record3;
41
+ return (_record3 = record === null || record === void 0 ? void 0 : record["".concat(_this.id)]) !== null && _record3 !== void 0 ? _record3 : '--';
42
+ });
43
+ _defineProperty(this, "renderClient", function () {
44
+ return null;
45
+ });
46
+ _defineProperty(this, "editRender", function () {
47
+ return null;
48
+ });
49
+ _defineProperty(this, "filterConfig", function (item) {
50
+ return {
51
+ searchDefaultConditions: SYMBOL.eq,
52
+ type: item.type,
53
+ id: item.id,
54
+ // 过滤组件id
55
+ name: item.name,
56
+ // 过滤组件名称
57
+ filterComponentType: 'MultipleSelect',
58
+ props: {
59
+ mode: "",
60
+ options: _this.options
61
+ }
62
+ };
63
+ });
64
+ this.name = options.name;
65
+ this.id = options.id;
66
+ this.sortField = options.id;
67
+ this.formField = options.id;
68
+ this.type = options.type;
69
+ this.componentConfig = options.componentConfig;
70
+ this.effects = options.effects;
71
+ this.dataType = 'string';
72
+ this.rules = [];
73
+ this.isCombinationComponent = false;
74
+ this.canSort = false;
75
+ this.children = [];
76
+ this.options = [{
77
+ label: '已超时',
78
+ value: 'TIME_OUT'
79
+ }, {
80
+ label: '未超时',
81
+ value: 'NOT_TIME_OUT'
82
+ }];
83
+ });
84
+ export default HandlerDeadLine;
@@ -0,0 +1,3 @@
1
+ .timeout {
2
+ color: #ff4d4f
3
+ }
@@ -0,0 +1,43 @@
1
+ import { ComponentInterface, PickOption, ColumnConfig, Record } from '../../type';
2
+ import React from 'react';
3
+ import './index.less';
4
+ declare class NodeDeadLine implements ComponentInterface {
5
+ name: string;
6
+ id: string;
7
+ sortField: string;
8
+ type: string;
9
+ rules: any[];
10
+ componentConfig: ComponentInterface["componentConfig"];
11
+ effects: ComponentInterface["effects"];
12
+ isCombinationComponent: boolean;
13
+ formField: string;
14
+ canSort: boolean;
15
+ children: ComponentInterface[];
16
+ dataType: ComponentInterface['dataType'];
17
+ options: Array<{
18
+ label: string;
19
+ value: string;
20
+ }>;
21
+ constructor(options: PickOption);
22
+ renderPc: (value: unknown, record: Record) => React.JSX.Element;
23
+ renderLog: () => null;
24
+ getComponentValue: (r: Record) => any;
25
+ renderExport: (value: any, record: any) => any;
26
+ renderClient: () => null;
27
+ editRender: () => null;
28
+ filterConfig: (item: ColumnConfig) => {
29
+ searchDefaultConditions: "eq";
30
+ type: string;
31
+ id: string;
32
+ name: string;
33
+ filterComponentType: "MultipleSelect";
34
+ props: {
35
+ mode: string;
36
+ options: {
37
+ label: string;
38
+ value: string;
39
+ }[];
40
+ };
41
+ };
42
+ }
43
+ export default NodeDeadLine;
@@ -0,0 +1,84 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
3
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
4
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
5
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
6
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
7
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
8
+ import React from 'react';
9
+ import { SYMBOL } from "../../constant";
10
+ import "./index.less";
11
+ var NodeDeadLine = /*#__PURE__*/_createClass(function NodeDeadLine(options) {
12
+ var _this = this;
13
+ _classCallCheck(this, NodeDeadLine);
14
+ _defineProperty(this, "name", void 0);
15
+ _defineProperty(this, "id", void 0);
16
+ _defineProperty(this, "sortField", void 0);
17
+ _defineProperty(this, "type", void 0);
18
+ _defineProperty(this, "rules", void 0);
19
+ _defineProperty(this, "componentConfig", void 0);
20
+ _defineProperty(this, "effects", void 0);
21
+ _defineProperty(this, "isCombinationComponent", void 0);
22
+ _defineProperty(this, "formField", void 0);
23
+ _defineProperty(this, "canSort", void 0);
24
+ _defineProperty(this, "children", void 0);
25
+ _defineProperty(this, "dataType", void 0);
26
+ _defineProperty(this, "options", void 0);
27
+ _defineProperty(this, "renderPc", function (value, record) {
28
+ var _record, _record2;
29
+ return /*#__PURE__*/React.createElement("span", {
30
+ className: record !== null && record !== void 0 && (_record = record["".concat(_this.id)]) !== null && _record !== void 0 && _record.includes('已超时') ? 'timeout' : ''
31
+ }, (_record2 = record === null || record === void 0 ? void 0 : record["".concat(_this.id)]) !== null && _record2 !== void 0 ? _record2 : '--');
32
+ });
33
+ _defineProperty(this, "renderLog", function () {
34
+ return null;
35
+ });
36
+ _defineProperty(this, "getComponentValue", function (r) {
37
+ return r === null || r === void 0 ? void 0 : r["".concat(_this.id)];
38
+ });
39
+ _defineProperty(this, "renderExport", function (value, record) {
40
+ var _record3;
41
+ return (_record3 = record === null || record === void 0 ? void 0 : record["".concat(_this.id)]) !== null && _record3 !== void 0 ? _record3 : '--';
42
+ });
43
+ _defineProperty(this, "renderClient", function () {
44
+ return null;
45
+ });
46
+ _defineProperty(this, "editRender", function () {
47
+ return null;
48
+ });
49
+ _defineProperty(this, "filterConfig", function (item) {
50
+ return {
51
+ searchDefaultConditions: SYMBOL.eq,
52
+ type: item.type,
53
+ id: item.id,
54
+ // 过滤组件id
55
+ name: item.name,
56
+ // 过滤组件名称
57
+ filterComponentType: 'MultipleSelect',
58
+ props: {
59
+ mode: "",
60
+ options: _this.options
61
+ }
62
+ };
63
+ });
64
+ this.name = options.name;
65
+ this.id = options.id;
66
+ this.sortField = options.id;
67
+ this.formField = options.id;
68
+ this.type = options.type;
69
+ this.componentConfig = options.componentConfig;
70
+ this.effects = options.effects;
71
+ this.dataType = 'string';
72
+ this.rules = [];
73
+ this.isCombinationComponent = false;
74
+ this.canSort = false;
75
+ this.children = [];
76
+ this.options = [{
77
+ label: '已超时',
78
+ value: 'TIME_OUT'
79
+ }, {
80
+ label: '未超时',
81
+ value: 'NOT_TIME_OUT'
82
+ }];
83
+ });
84
+ export default NodeDeadLine;
@@ -0,0 +1,3 @@
1
+ .timeout {
2
+ color: #ff4d4f
3
+ }
@@ -0,0 +1,26 @@
1
+ import { ComponentInterface, PickOption, Record } from '../../type';
2
+ import React from 'react';
3
+ import './index.less';
4
+ declare class NodeStayDuration implements ComponentInterface {
5
+ name: string;
6
+ id: string;
7
+ sortField: string;
8
+ type: string;
9
+ rules: any[];
10
+ componentConfig: ComponentInterface["componentConfig"];
11
+ effects: ComponentInterface["effects"];
12
+ isCombinationComponent: boolean;
13
+ formField: string;
14
+ canSort: boolean;
15
+ children: ComponentInterface[];
16
+ dataType: ComponentInterface['dataType'];
17
+ constructor(options: PickOption);
18
+ renderPc: (value: unknown, record: Record) => React.JSX.Element;
19
+ renderLog: () => null;
20
+ getComponentValue: (r: Record) => any;
21
+ renderExport: (value: any, record: any) => any;
22
+ renderClient: () => null;
23
+ editRender: () => null;
24
+ filterConfig: () => never[];
25
+ }
26
+ export default NodeStayDuration;
@@ -0,0 +1,61 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
3
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
4
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
5
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
6
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
7
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
8
+ import React from 'react';
9
+ import "./index.less";
10
+ var NodeStayDuration = /*#__PURE__*/_createClass(function NodeStayDuration(options) {
11
+ var _this = this;
12
+ _classCallCheck(this, NodeStayDuration);
13
+ _defineProperty(this, "name", void 0);
14
+ _defineProperty(this, "id", void 0);
15
+ _defineProperty(this, "sortField", void 0);
16
+ _defineProperty(this, "type", void 0);
17
+ _defineProperty(this, "rules", void 0);
18
+ _defineProperty(this, "componentConfig", void 0);
19
+ _defineProperty(this, "effects", void 0);
20
+ _defineProperty(this, "isCombinationComponent", void 0);
21
+ _defineProperty(this, "formField", void 0);
22
+ _defineProperty(this, "canSort", void 0);
23
+ _defineProperty(this, "children", void 0);
24
+ _defineProperty(this, "dataType", void 0);
25
+ _defineProperty(this, "renderPc", function (value, record) {
26
+ var _record;
27
+ return /*#__PURE__*/React.createElement("span", null, (_record = record === null || record === void 0 ? void 0 : record["".concat(_this.id)]) !== null && _record !== void 0 ? _record : '--');
28
+ });
29
+ _defineProperty(this, "renderLog", function () {
30
+ return null;
31
+ });
32
+ _defineProperty(this, "getComponentValue", function (r) {
33
+ return r === null || r === void 0 ? void 0 : r["".concat(_this.id)];
34
+ });
35
+ _defineProperty(this, "renderExport", function (value, record) {
36
+ var _record2;
37
+ return (_record2 = record === null || record === void 0 ? void 0 : record["".concat(_this.id)]) !== null && _record2 !== void 0 ? _record2 : '--';
38
+ });
39
+ _defineProperty(this, "renderClient", function () {
40
+ return null;
41
+ });
42
+ _defineProperty(this, "editRender", function () {
43
+ return null;
44
+ });
45
+ _defineProperty(this, "filterConfig", function () {
46
+ return [];
47
+ });
48
+ this.name = options.name;
49
+ this.id = options.id;
50
+ this.sortField = options.id;
51
+ this.formField = options.id;
52
+ this.type = options.type;
53
+ this.componentConfig = options.componentConfig;
54
+ this.effects = options.effects;
55
+ this.dataType = 'string';
56
+ this.rules = [];
57
+ this.isCombinationComponent = false;
58
+ this.canSort = false;
59
+ this.children = [];
60
+ });
61
+ export default NodeStayDuration;
@@ -0,0 +1,3 @@
1
+ .timeout {
2
+ color: #ff4d4f
3
+ }
@@ -1,3 +1,2 @@
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, FlowWorkOrderId, BsGoods, BsExchange, BsReissue, BsSystemOrder, StatusSelect, CommonTradeId, DeliveryNo, Calculation } from './index';
2
1
  import { PickOption } from './type';
3
- export declare const factory: (type: string, options: PickOption) => Calculation | StatusSelect | BasicInput | BasicAddress | BasicCascader | BasicCheckbox | BasicDataTime | BasicSelect | BasicRadio | BasicTextArea | BasicPicture | BasicMultSelect | BasicGrade | BasicRate | BasicFile | BasicPosting | CommonDataTime | TradeId | ErpTradeId | 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 | DeliveryNo | FlowStatusSelect | TemplateSelect | WorkOrderId | LogisticsInterception | LogisticsTrajectory | PlatForm | ShopInput | Submitter | Handler | CompletedUser | FlowWorkOrderId | CommonTradeId;
2
+ export declare const factory: (type: string, options: PickOption) => any;
@@ -1,4 +1,4 @@
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, FlowWorkOrderId, BsGoods, BsExchange, BsReissue, BsSystemOrder, StatusSelect, CommonTradeId, DeliveryNo, Calculation } from "./index";
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, FlowWorkOrderId, BsGoods, BsExchange, BsReissue, BsSystemOrder, StatusSelect, CommonTradeId, DeliveryNo, Calculation, NodeDeadLine, HandlerDeadLine } from "./index";
2
2
  export var factory = function factory(type, options) {
3
3
  var _options$componentCon;
4
4
  switch (type) {
@@ -142,6 +142,12 @@ export var factory = function factory(type, options) {
142
142
  return new CommonTradeId(options);
143
143
  case 'NUMERICAL_CALCULATION':
144
144
  return new Calculation(options);
145
+ case 'NODE_DEAD_LINE_INPUT':
146
+ return new NodeDeadLine(options);
147
+ case 'HANDLER_DEAD_LINE_INPUT':
148
+ return new HandlerDeadLine(options);
149
+ case 'NODE_STAY_DURATION_INPUT':
150
+ return new NodeStayDuration(options);
145
151
  default:
146
152
  return new BasicInput(options);
147
153
  }
@@ -56,6 +56,8 @@ export { default as FlowWorkOrderId } from "./components/FlowWorkOrderId";
56
56
  export { default as StatusSelect } from "./components/StatusSelect";
57
57
  export { default as CommonTradeId } from "./components/CommonTradeId";
58
58
  export { default as Calculation } from "./components/Calculation";
59
+ export { default as NodeDeadLine } from "./components/NodeDeadLine";
60
+ export { default as HandlerDeadLine } from "./components/HandlerDeadLine";
59
61
  export { factory } from "./factory";
60
62
  export { default as PlatformAvatar } from "./commonComponents/PlatformAvatar";
61
63
  export { default as PlatBuyer } from "./commonComponents/PlatBuyer";
package/dist/esm/index.js CHANGED
@@ -56,6 +56,8 @@ export { default as FlowWorkOrderId } from "./components/FlowWorkOrderId";
56
56
  export { default as StatusSelect } from "./components/StatusSelect";
57
57
  export { default as CommonTradeId } from "./components/CommonTradeId";
58
58
  export { default as Calculation } from "./components/Calculation";
59
+ export { default as NodeDeadLine } from "./components/NodeDeadLine";
60
+ export { default as HandlerDeadLine } from "./components/HandlerDeadLine";
59
61
  export { factory } from "./factory";
60
62
  export { default as PlatformAvatar } from "./commonComponents/PlatformAvatar";
61
63
  export { default as PlatBuyer } from "./commonComponents/PlatBuyer";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kmkf-fe-packages/services-components",
3
- "version": "0.8.17-alpha.23",
3
+ "version": "0.8.17-alpha.24",
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.8.17-alpha.23",
30
- "@kmkf-fe-packages/kmkf-utils": "^0.8.17-alpha.23"
29
+ "@kmkf-fe-packages/basic-components": "^0.8.17-alpha.24",
30
+ "@kmkf-fe-packages/kmkf-utils": "^0.8.17-alpha.24"
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": "42b86f1d4a2686ddaac6afeee7dd8e6bdb1bde14"
43
+ "gitHead": "3650ffa0cd79f19b410768edee9b88d4e5fc740e"
44
44
  }