@kmkf-fe-packages/services-components 0.28.2-rc.8 → 0.28.2-rc.9
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/LogisticsInterception/InterceptState.d.ts +37 -0
- package/dist/esm/components/LogisticsInterception/InterceptState.js +89 -0
- package/dist/esm/components/LogisticsInterception/index.d.ts +4 -16
- package/dist/esm/components/LogisticsInterception/index.js +11 -6
- package/package.json +3 -3
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { ComponentInterface, PickOption, ColumnConfig, ALignType, Record } from "../../type";
|
|
2
|
+
import React from "react";
|
|
3
|
+
declare class InterceptState implements ComponentInterface {
|
|
4
|
+
name: string;
|
|
5
|
+
id: string;
|
|
6
|
+
sortField: string;
|
|
7
|
+
type: string;
|
|
8
|
+
rules: any[];
|
|
9
|
+
componentConfig: ComponentInterface["componentConfig"];
|
|
10
|
+
effects: ComponentInterface["effects"];
|
|
11
|
+
align: ALignType;
|
|
12
|
+
width: number;
|
|
13
|
+
isCombinationComponent: boolean;
|
|
14
|
+
formField: string;
|
|
15
|
+
canSort: boolean;
|
|
16
|
+
children: ComponentInterface[];
|
|
17
|
+
dataType: ComponentInterface["dataType"];
|
|
18
|
+
options: ComponentInterface["options"];
|
|
19
|
+
constructor(options: PickOption);
|
|
20
|
+
getComponentValue: (r: Record) => any;
|
|
21
|
+
renderClient: (record: any) => React.JSX.Element | null;
|
|
22
|
+
renderPc: (value: any, record: Record) => any;
|
|
23
|
+
renderLog: (r: Record) => any;
|
|
24
|
+
renderExport: (value: any, record: Record) => any;
|
|
25
|
+
editRender: () => null;
|
|
26
|
+
filterConfig: (item: ColumnConfig) => {
|
|
27
|
+
searchDefaultConditions: "in";
|
|
28
|
+
type: string;
|
|
29
|
+
id: string;
|
|
30
|
+
name: string;
|
|
31
|
+
filterComponentType: "MultipleSelect";
|
|
32
|
+
props: {
|
|
33
|
+
options: any[];
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
export default InterceptState;
|
|
@@ -0,0 +1,89 @@
|
|
|
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 ItemView from "../../commonComponents/ItemView";
|
|
10
|
+
import { isNull } from "@kmkf-fe-packages/kmkf-utils";
|
|
11
|
+
import { SYMBOL } from "../../constant";
|
|
12
|
+
var InterceptState = /*#__PURE__*/_createClass(function InterceptState(options) {
|
|
13
|
+
var _this = this;
|
|
14
|
+
_classCallCheck(this, InterceptState);
|
|
15
|
+
_defineProperty(this, "name", void 0);
|
|
16
|
+
_defineProperty(this, "id", void 0);
|
|
17
|
+
_defineProperty(this, "sortField", void 0);
|
|
18
|
+
_defineProperty(this, "type", void 0);
|
|
19
|
+
_defineProperty(this, "rules", void 0);
|
|
20
|
+
_defineProperty(this, "componentConfig", void 0);
|
|
21
|
+
_defineProperty(this, "effects", void 0);
|
|
22
|
+
_defineProperty(this, "align", void 0);
|
|
23
|
+
_defineProperty(this, "width", void 0);
|
|
24
|
+
_defineProperty(this, "isCombinationComponent", void 0);
|
|
25
|
+
_defineProperty(this, "formField", void 0);
|
|
26
|
+
_defineProperty(this, "canSort", void 0);
|
|
27
|
+
_defineProperty(this, "children", void 0);
|
|
28
|
+
_defineProperty(this, "dataType", void 0);
|
|
29
|
+
_defineProperty(this, "options", void 0);
|
|
30
|
+
_defineProperty(this, "getComponentValue", function (r) {
|
|
31
|
+
return r === null || r === void 0 ? void 0 : r[_this.id];
|
|
32
|
+
});
|
|
33
|
+
_defineProperty(this, "renderClient", function (record) {
|
|
34
|
+
return !isNull(record === null || record === void 0 ? void 0 : record[_this.id]) ? /*#__PURE__*/React.createElement(ItemView, {
|
|
35
|
+
id: _this.id,
|
|
36
|
+
label: _this.name,
|
|
37
|
+
value: record === null || record === void 0 ? void 0 : record[_this.id]
|
|
38
|
+
}) : null;
|
|
39
|
+
});
|
|
40
|
+
_defineProperty(this, "renderPc", function (value, record) {
|
|
41
|
+
var _record$_this$id;
|
|
42
|
+
return (_record$_this$id = record === null || record === void 0 ? void 0 : record[_this.id]) !== null && _record$_this$id !== void 0 ? _record$_this$id : "--";
|
|
43
|
+
});
|
|
44
|
+
_defineProperty(this, "renderLog", function (r) {
|
|
45
|
+
if (isNull(r === null || r === void 0 ? void 0 : r["".concat(_this.id)])) return null;
|
|
46
|
+
return r === null || r === void 0 ? void 0 : r[_this.id];
|
|
47
|
+
});
|
|
48
|
+
_defineProperty(this, "renderExport", function (value, record) {
|
|
49
|
+
var _record$_this$id2;
|
|
50
|
+
return (_record$_this$id2 = record === null || record === void 0 ? void 0 : record[_this.id]) !== null && _record$_this$id2 !== void 0 ? _record$_this$id2 : "--";
|
|
51
|
+
});
|
|
52
|
+
_defineProperty(this, "editRender", function () {
|
|
53
|
+
return null;
|
|
54
|
+
});
|
|
55
|
+
_defineProperty(this, "filterConfig", function (item) {
|
|
56
|
+
return {
|
|
57
|
+
searchDefaultConditions: SYMBOL.in,
|
|
58
|
+
type: item.type,
|
|
59
|
+
id: "".concat(item.id, "_qySelfInterceptStatus"),
|
|
60
|
+
name: "".concat(item.name, "-\u62E6\u622A\u72B6\u6001"),
|
|
61
|
+
filterComponentType: "MultipleSelect",
|
|
62
|
+
props: {
|
|
63
|
+
options: _this.options || []
|
|
64
|
+
}
|
|
65
|
+
};
|
|
66
|
+
});
|
|
67
|
+
this.name = "拦截状态";
|
|
68
|
+
this.id = "".concat(options.id, "_qySelfInterceptStatus");
|
|
69
|
+
this.sortField = "".concat(options.id, "_qySelfInterceptStatus");
|
|
70
|
+
this.formField = "".concat(options.id, "_qySelfInterceptStatus");
|
|
71
|
+
this.type = options.type;
|
|
72
|
+
this.componentConfig = options.componentConfig;
|
|
73
|
+
this.rules = [];
|
|
74
|
+
this.align = "left";
|
|
75
|
+
this.width = 200;
|
|
76
|
+
this.isCombinationComponent = false;
|
|
77
|
+
this.canSort = true;
|
|
78
|
+
this.children = [];
|
|
79
|
+
this.effects = options === null || options === void 0 ? void 0 : options.effects;
|
|
80
|
+
this.dataType = "string";
|
|
81
|
+
this.options = [{
|
|
82
|
+
label: "拦截成功",
|
|
83
|
+
value: "拦截成功"
|
|
84
|
+
}, {
|
|
85
|
+
label: "拦截失败",
|
|
86
|
+
value: "拦截失败"
|
|
87
|
+
}];
|
|
88
|
+
});
|
|
89
|
+
export default InterceptState;
|
|
@@ -6,6 +6,7 @@ import InterceptSnapshot from "./interceptSnapshot";
|
|
|
6
6
|
import InterceptAddress from "./InterceptAddress";
|
|
7
7
|
import InterceptType from "./InterceptType";
|
|
8
8
|
import InterceptStatus from "./InterceptStatus";
|
|
9
|
+
import InterceptState from "./InterceptState";
|
|
9
10
|
import Express from "../Express";
|
|
10
11
|
import ExpressCode from "../ExpressCode";
|
|
11
12
|
declare class Logistics implements ComponentInterface {
|
|
@@ -21,6 +22,7 @@ declare class Logistics implements ComponentInterface {
|
|
|
21
22
|
interceptLogisticsStatus: InterceptStatus;
|
|
22
23
|
interceptSenderMobile: InterceptSenderMobile;
|
|
23
24
|
interceptSnapshot: InterceptSnapshot;
|
|
25
|
+
interceptState: InterceptState;
|
|
24
26
|
isCombinationComponent: boolean;
|
|
25
27
|
formField: string;
|
|
26
28
|
canSort: boolean;
|
|
@@ -50,21 +52,12 @@ declare class Logistics implements ComponentInterface {
|
|
|
50
52
|
mobile: any;
|
|
51
53
|
};
|
|
52
54
|
interceptSnapshot: any;
|
|
55
|
+
interceptState: any;
|
|
53
56
|
};
|
|
54
57
|
renderPc: () => null;
|
|
55
58
|
renderExport: () => null;
|
|
56
59
|
editRender: (p: any) => React.JSX.Element;
|
|
57
60
|
filterConfig: (item: ColumnConfig) => ({
|
|
58
|
-
searchDefaultConditions: "in";
|
|
59
|
-
type: string;
|
|
60
|
-
id: string;
|
|
61
|
-
name: string;
|
|
62
|
-
filterComponentType: "MultipleSelect";
|
|
63
|
-
props: {
|
|
64
|
-
options: any[];
|
|
65
|
-
};
|
|
66
|
-
filterFn: (value: string) => (i: Record) => boolean;
|
|
67
|
-
} | {
|
|
68
61
|
searchDefaultConditions: "like";
|
|
69
62
|
type: string;
|
|
70
63
|
id: string;
|
|
@@ -78,13 +71,8 @@ declare class Logistics implements ComponentInterface {
|
|
|
78
71
|
name: string;
|
|
79
72
|
filterComponentType: "MultipleSelect";
|
|
80
73
|
props: {
|
|
81
|
-
options:
|
|
82
|
-
label: string;
|
|
83
|
-
value: string;
|
|
84
|
-
}[];
|
|
74
|
+
options: any[];
|
|
85
75
|
};
|
|
86
|
-
formatFilterValue: (value: string[]) => string[];
|
|
87
|
-
filterFn: (value: string[]) => (i: Record) => boolean;
|
|
88
76
|
})[];
|
|
89
77
|
}
|
|
90
78
|
export default Logistics;
|
|
@@ -17,6 +17,7 @@ import InterceptSnapshot from "./interceptSnapshot";
|
|
|
17
17
|
import InterceptAddress from "./InterceptAddress";
|
|
18
18
|
import InterceptType from "./InterceptType";
|
|
19
19
|
import InterceptStatus from "./InterceptStatus";
|
|
20
|
+
import InterceptState from "./InterceptState";
|
|
20
21
|
import Express from "../Express";
|
|
21
22
|
import ExpressCode from "../ExpressCode";
|
|
22
23
|
import ColumnHeader from "./columnHeader";
|
|
@@ -35,6 +36,7 @@ var Logistics = /*#__PURE__*/_createClass(function Logistics(options) {
|
|
|
35
36
|
_defineProperty(this, "interceptLogisticsStatus", void 0);
|
|
36
37
|
_defineProperty(this, "interceptSenderMobile", void 0);
|
|
37
38
|
_defineProperty(this, "interceptSnapshot", void 0);
|
|
39
|
+
_defineProperty(this, "interceptState", void 0);
|
|
38
40
|
_defineProperty(this, "isCombinationComponent", void 0);
|
|
39
41
|
_defineProperty(this, "formField", void 0);
|
|
40
42
|
_defineProperty(this, "canSort", void 0);
|
|
@@ -47,10 +49,10 @@ var Logistics = /*#__PURE__*/_createClass(function Logistics(options) {
|
|
|
47
49
|
_defineProperty(this, "effects", void 0);
|
|
48
50
|
_defineProperty(this, "dataType", void 0);
|
|
49
51
|
_defineProperty(this, "renderClient", function (record) {
|
|
50
|
-
return /*#__PURE__*/React.createElement(React.Fragment, null, _this.express.renderClient(record), _this.expressCode.renderClient(record), _this.interceptSenderMobile.renderClient(record), _this.interceptType.renderClient(record), _this.interceptAddress.renderClient(record), _this.interceptLogisticsStatus.renderClient(record), _this.interceptSnapshot.renderClient(record));
|
|
52
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, _this.express.renderClient(record), _this.expressCode.renderClient(record), _this.interceptSenderMobile.renderClient(record), _this.interceptType.renderClient(record), _this.interceptAddress.renderClient(record), _this.interceptLogisticsStatus.renderClient(record), _this.interceptSnapshot.renderClient(record), _this.interceptState.renderClient(record));
|
|
51
53
|
});
|
|
52
54
|
_defineProperty(this, "renderLog", function (record) {
|
|
53
|
-
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("div", null, !isNull(_this.express.getComponentValue(record)) && /*#__PURE__*/React.createElement(React.Fragment, null, _this.express.name, ": ", _this.express.renderLog(record))), /*#__PURE__*/React.createElement("div", null, !isNull(_this.expressCode.getComponentValue(record)) && /*#__PURE__*/React.createElement(React.Fragment, null, _this.expressCode.name, ": ", _this.expressCode.renderLog(record))), /*#__PURE__*/React.createElement("div", null, !isNull(_this.interceptSenderMobile.getComponentValue(record)) && /*#__PURE__*/React.createElement(React.Fragment, null, _this.interceptSenderMobile.name, ":", " ", _this.interceptSenderMobile.renderLog(record))), /*#__PURE__*/React.createElement("div", null, !isNull(_this.interceptType.getComponentValue(record)) && /*#__PURE__*/React.createElement(React.Fragment, null, _this.interceptType.name, ": ", _this.interceptType.renderLog(record))), /*#__PURE__*/React.createElement("div", null, !isNull(_this.interceptAddress.getComponentValue(record)) && /*#__PURE__*/React.createElement(React.Fragment, null, _this.interceptAddress.name, ":", " ", _this.interceptAddress.renderLog(record))), /*#__PURE__*/React.createElement("div", null, !isNull(_this.interceptLogisticsStatus.getComponentValue(record)) && /*#__PURE__*/React.createElement(React.Fragment, null, _this.interceptLogisticsStatus.name, ":", " ", _this.interceptLogisticsStatus.renderLog(record))), /*#__PURE__*/React.createElement("div", null, !isNull(_this.interceptSnapshot.getComponentValue(record)) && /*#__PURE__*/React.createElement(React.Fragment, null, _this.interceptSnapshot.name, ":", " ", _this.interceptSnapshot.renderLog(record))));
|
|
55
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("div", null, !isNull(_this.express.getComponentValue(record)) && /*#__PURE__*/React.createElement(React.Fragment, null, _this.express.name, ": ", _this.express.renderLog(record))), /*#__PURE__*/React.createElement("div", null, !isNull(_this.expressCode.getComponentValue(record)) && /*#__PURE__*/React.createElement(React.Fragment, null, _this.expressCode.name, ": ", _this.expressCode.renderLog(record))), /*#__PURE__*/React.createElement("div", null, !isNull(_this.interceptSenderMobile.getComponentValue(record)) && /*#__PURE__*/React.createElement(React.Fragment, null, _this.interceptSenderMobile.name, ":", " ", _this.interceptSenderMobile.renderLog(record))), /*#__PURE__*/React.createElement("div", null, !isNull(_this.interceptType.getComponentValue(record)) && /*#__PURE__*/React.createElement(React.Fragment, null, _this.interceptType.name, ": ", _this.interceptType.renderLog(record))), /*#__PURE__*/React.createElement("div", null, !isNull(_this.interceptAddress.getComponentValue(record)) && /*#__PURE__*/React.createElement(React.Fragment, null, _this.interceptAddress.name, ":", " ", _this.interceptAddress.renderLog(record))), /*#__PURE__*/React.createElement("div", null, !isNull(_this.interceptLogisticsStatus.getComponentValue(record)) && /*#__PURE__*/React.createElement(React.Fragment, null, _this.interceptLogisticsStatus.name, ":", " ", _this.interceptLogisticsStatus.renderLog(record))), /*#__PURE__*/React.createElement("div", null, !isNull(_this.interceptSnapshot.getComponentValue(record)) && /*#__PURE__*/React.createElement(React.Fragment, null, _this.interceptSnapshot.name, ":", " ", _this.interceptSnapshot.renderLog(record))), /*#__PURE__*/React.createElement("div", null, !isNull(_this.interceptState.getComponentValue(record)) && /*#__PURE__*/React.createElement(React.Fragment, null, _this.interceptState.name, ":", " ", _this.interceptState.renderLog(record))));
|
|
54
56
|
});
|
|
55
57
|
_defineProperty(this, "getComponentValue", function (r) {
|
|
56
58
|
return {
|
|
@@ -60,7 +62,8 @@ var Logistics = /*#__PURE__*/_createClass(function Logistics(options) {
|
|
|
60
62
|
interceptType: _this.interceptType.getComponentValue(r),
|
|
61
63
|
interceptLogisticsStatus: _this.interceptLogisticsStatus.getComponentValue(r),
|
|
62
64
|
interceptRedirectTo: _this.interceptAddress.getComponentValue(r),
|
|
63
|
-
interceptSnapshot: _this.interceptSnapshot.getComponentValue(r)
|
|
65
|
+
interceptSnapshot: _this.interceptSnapshot.getComponentValue(r),
|
|
66
|
+
interceptState: _this.interceptState.getComponentValue(r)
|
|
64
67
|
};
|
|
65
68
|
});
|
|
66
69
|
_defineProperty(this, "renderPc", function () {
|
|
@@ -82,7 +85,8 @@ var Logistics = /*#__PURE__*/_createClass(function Logistics(options) {
|
|
|
82
85
|
logisticsOptions: _this.expressDateInstance.getExpressData(),
|
|
83
86
|
expressInterceptData: _this.expressInterceptData.getExpressData(),
|
|
84
87
|
logisticsAddressData: _this.logisticsAddressData.getAddressData(),
|
|
85
|
-
isEditing: (_this$effects = _this.effects) === null || _this$effects === void 0 ? void 0 : _this$effects.isEditing
|
|
88
|
+
isEditing: (_this$effects = _this.effects) === null || _this$effects === void 0 ? void 0 : _this$effects.isEditing,
|
|
89
|
+
showState: true
|
|
86
90
|
}))
|
|
87
91
|
});
|
|
88
92
|
});
|
|
@@ -91,7 +95,7 @@ var Logistics = /*#__PURE__*/_createClass(function Logistics(options) {
|
|
|
91
95
|
subKey: "interceptCompany"
|
|
92
96
|
})), _this.expressCode.filterConfig(_objectSpread(_objectSpread({}, item), {}, {
|
|
93
97
|
subKey: "interceptCode"
|
|
94
|
-
})), _this.interceptSenderMobile.filterConfig(item), _this.interceptLogisticsStatus.filterConfig(item), _this.interceptType.filterConfig(item), _this.interceptSnapshot.filterConfig(item)];
|
|
98
|
+
})), _this.interceptSenderMobile.filterConfig(item), _this.interceptLogisticsStatus.filterConfig(item), _this.interceptType.filterConfig(item), _this.interceptSnapshot.filterConfig(item), _this.interceptState.filterConfig(item)];
|
|
95
99
|
});
|
|
96
100
|
this.name = options.name;
|
|
97
101
|
this.columnHeader = /*#__PURE__*/React.createElement(ColumnHeader, {
|
|
@@ -111,6 +115,7 @@ var Logistics = /*#__PURE__*/_createClass(function Logistics(options) {
|
|
|
111
115
|
this.interceptLogisticsStatus = new InterceptStatus(options);
|
|
112
116
|
this.interceptSenderMobile = new InterceptSenderMobile(options);
|
|
113
117
|
this.interceptSnapshot = new InterceptSnapshot(options);
|
|
118
|
+
this.interceptState = new InterceptState(options);
|
|
114
119
|
this.express = new Express(_objectSpread(_objectSpread({}, options), {}, {
|
|
115
120
|
id: "".concat(options.id, "_interceptCompany"),
|
|
116
121
|
name: "物流信息"
|
|
@@ -122,7 +127,7 @@ var Logistics = /*#__PURE__*/_createClass(function Logistics(options) {
|
|
|
122
127
|
this.isCombinationComponent = true;
|
|
123
128
|
this.canSort = false;
|
|
124
129
|
this.dataType = "object";
|
|
125
|
-
this.children = [this.express, this.expressCode, this.interceptType, this.interceptAddress, this.interceptLogisticsStatus, this.interceptSnapshot];
|
|
130
|
+
this.children = [this.express, this.expressCode, this.interceptType, this.interceptAddress, this.interceptLogisticsStatus, this.interceptSnapshot, this.interceptState];
|
|
126
131
|
this.rules = [{
|
|
127
132
|
validator: function validator(_, value) {
|
|
128
133
|
var _this$componentConfig3, _this$componentConfig4, _value$interceptAddre, _value$interceptSende;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kmkf-fe-packages/services-components",
|
|
3
|
-
"version": "0.28.2-rc.
|
|
3
|
+
"version": "0.28.2-rc.9",
|
|
4
4
|
"module": "dist/esm/index.js",
|
|
5
5
|
"typings": "dist/esm/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
]
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@kmkf-fe-packages/basic-components": "^0.28.2-rc.
|
|
23
|
+
"@kmkf-fe-packages/basic-components": "^0.28.2-rc.9",
|
|
24
24
|
"@kmkf-fe-packages/kmkf-utils": "^0.28.2-rc.8"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "7b7752d74c08e78c39487bd51de81aa2ddae45b7",
|
|
41
41
|
"gitHooks": {
|
|
42
42
|
"pre-commit": "lint-staged"
|
|
43
43
|
}
|