@kmkf-fe-packages/services-components 0.3.1-alpha.6 → 0.3.1-alpha.7
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/Ordinary/OrdinaryHeader.d.ts +1 -0
- package/dist/esm/components/Ordinary/OrdinaryHeader.js +2 -1
- package/dist/esm/components/Ordinary/OrdinaryMoney.d.ts +1 -0
- package/dist/esm/components/Ordinary/OrdinaryMoney.js +2 -1
- package/dist/esm/components/Ordinary/OrdinarySerial.d.ts +1 -0
- package/dist/esm/components/Ordinary/OrdinarySerial.js +2 -1
- package/dist/esm/components/Payment/AlipayNick.d.ts +1 -0
- package/dist/esm/components/Payment/AlipayNick.js +1 -0
- package/dist/esm/components/Payment/AlipayNo.d.ts +1 -0
- package/dist/esm/components/Payment/AlipayNo.js +1 -0
- package/dist/esm/components/Payment/AlipayTime.d.ts +1 -0
- package/dist/esm/components/Payment/AlipayTime.js +1 -0
- package/dist/esm/components/Payment/BuyerNick.d.ts +1 -0
- package/dist/esm/components/Payment/BuyerNick.js +1 -0
- package/dist/esm/components/Payment/PaymentAmount.d.ts +1 -0
- package/dist/esm/components/Payment/PaymentAmount.js +1 -0
- package/dist/esm/components/Payment/PaymentStatus.d.ts +1 -0
- package/dist/esm/components/Payment/PaymentStatus.js +1 -0
- package/dist/esm/components/Payment/PaymentTid.d.ts +1 -0
- package/dist/esm/components/Payment/PaymentTid.js +1 -0
- package/package.json +2 -2
|
@@ -72,7 +72,8 @@ var OrdinaryHeader = /*#__PURE__*/_createClass(function OrdinaryHeader(options)
|
|
|
72
72
|
render: _this.render,
|
|
73
73
|
componentType: _this.editRender,
|
|
74
74
|
showContains: _this.showContains,
|
|
75
|
-
renderExport: _this.renderExport
|
|
75
|
+
renderExport: _this.renderExport,
|
|
76
|
+
width: _this.width
|
|
76
77
|
};
|
|
77
78
|
});
|
|
78
79
|
this.name = '发票抬头';
|
|
@@ -65,7 +65,8 @@ var OrdinaryMoney = /*#__PURE__*/_createClass(function OrdinaryMoney(options) {
|
|
|
65
65
|
render: _this.render,
|
|
66
66
|
componentType: _this.editRender,
|
|
67
67
|
showContains: _this.showContains,
|
|
68
|
-
renderExport: _this.renderExport
|
|
68
|
+
renderExport: _this.renderExport,
|
|
69
|
+
width: _this.width
|
|
69
70
|
};
|
|
70
71
|
});
|
|
71
72
|
this.name = '开票金额';
|
|
@@ -65,7 +65,8 @@ var OrdinarySerial = /*#__PURE__*/_createClass(function OrdinarySerial(options)
|
|
|
65
65
|
render: _this.render,
|
|
66
66
|
componentType: _this.editRender,
|
|
67
67
|
showContains: _this.showContains,
|
|
68
|
-
renderExport: _this.renderExport
|
|
68
|
+
renderExport: _this.renderExport,
|
|
69
|
+
width: _this.width
|
|
69
70
|
};
|
|
70
71
|
});
|
|
71
72
|
this.name = '纳税人识别号';
|
|
@@ -71,6 +71,7 @@ var PaymentTid = /*#__PURE__*/_createClass(function PaymentTid(options) {
|
|
|
71
71
|
canFilter: _this.canFilter,
|
|
72
72
|
canGroup: _this.canGroup,
|
|
73
73
|
type: _this.type,
|
|
74
|
+
width: _this.width,
|
|
74
75
|
render: _this.render,
|
|
75
76
|
componentType: _this.editRender,
|
|
76
77
|
showContains: _this.showContains,
|
|
@@ -52,6 +52,7 @@ var PaymentStatus = /*#__PURE__*/_createClass(function PaymentStatus(options) {
|
|
|
52
52
|
canHidden: _this.canHidden,
|
|
53
53
|
canFilter: _this.canFilter,
|
|
54
54
|
canGroup: _this.canGroup,
|
|
55
|
+
idth: _this.width,
|
|
55
56
|
type: _this.type,
|
|
56
57
|
render: _this.render,
|
|
57
58
|
componentType: _this.editRender,
|
|
@@ -60,6 +60,7 @@ var PaymentTid = /*#__PURE__*/_createClass(function PaymentTid(options) {
|
|
|
60
60
|
canHidden: _this.canHidden,
|
|
61
61
|
canFilter: _this.canFilter,
|
|
62
62
|
canGroup: _this.canGroup,
|
|
63
|
+
idth: _this.width,
|
|
63
64
|
type: _this.type,
|
|
64
65
|
render: _this.render,
|
|
65
66
|
componentType: _this.editRender,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kmkf-fe-packages/services-components",
|
|
3
|
-
"version": "0.3.1-alpha.
|
|
3
|
+
"version": "0.3.1-alpha.7",
|
|
4
4
|
"module": "dist/esm/index.js",
|
|
5
5
|
"typings": "dist/esm/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"gitHooks": {
|
|
36
36
|
"pre-commit": "lint-staged"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "3960754e40c61e8fc20d100a929ab6c6b0c114bc"
|
|
39
39
|
}
|