@kmkf-fe-packages/services-components 0.7.5-alpha.13 → 0.7.5-alpha.14
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/ActualPayment/index.d.ts +3 -0
- package/dist/esm/components/ActualPayment/index.js +3 -0
- package/dist/esm/components/Ordinary/OrdinaryMoney.d.ts +3 -0
- package/dist/esm/components/Ordinary/OrdinaryMoney.js +3 -0
- package/dist/esm/components/Payment/PaymentAmount.d.ts +3 -0
- package/dist/esm/components/Payment/PaymentAmount.js +3 -0
- package/package.json +2 -2
|
@@ -26,6 +26,9 @@ declare class ActualPayment implements ComponentInterface {
|
|
|
26
26
|
rules: {
|
|
27
27
|
validator: (_: any, value: Array<number>) => Promise<void>;
|
|
28
28
|
}[];
|
|
29
|
+
props: {
|
|
30
|
+
placeholder: string[];
|
|
31
|
+
};
|
|
29
32
|
formatFilterValue: (val: Array<number | null>) => (number | null)[];
|
|
30
33
|
filterFn: (value: string) => (i: Record) => boolean;
|
|
31
34
|
};
|
|
@@ -113,6 +113,9 @@ var ActualPayment = /*#__PURE__*/_createClass(function ActualPayment(options) {
|
|
|
113
113
|
return validator;
|
|
114
114
|
}()
|
|
115
115
|
}],
|
|
116
|
+
props: {
|
|
117
|
+
placeholder: ['始-实付金额', '终-实付金额']
|
|
118
|
+
},
|
|
116
119
|
formatFilterValue: function formatFilterValue(val) {
|
|
117
120
|
if (val !== null && val !== void 0 && val.some(function (v) {
|
|
118
121
|
return isNull(v);
|
|
@@ -29,6 +29,9 @@ declare class OrdinaryMoney implements ComponentInterface {
|
|
|
29
29
|
rules: {
|
|
30
30
|
validator: (_: any, value: Array<number>) => Promise<void>;
|
|
31
31
|
}[];
|
|
32
|
+
props: {
|
|
33
|
+
placeholder: string[];
|
|
34
|
+
};
|
|
32
35
|
formatFilterValue: (val: Array<number | null>) => (number | null)[];
|
|
33
36
|
filterFn: (value: string) => (i: Record) => boolean;
|
|
34
37
|
};
|
|
@@ -110,6 +110,9 @@ var OrdinaryMoney = /*#__PURE__*/_createClass(function OrdinaryMoney(options) {
|
|
|
110
110
|
return validator;
|
|
111
111
|
}()
|
|
112
112
|
}],
|
|
113
|
+
props: {
|
|
114
|
+
placeholder: ['始-开票金额', '终-开票金额']
|
|
115
|
+
},
|
|
113
116
|
formatFilterValue: function formatFilterValue(val) {
|
|
114
117
|
if (val !== null && val !== void 0 && val.some(function (v) {
|
|
115
118
|
return isNull(v);
|
|
@@ -28,6 +28,9 @@ declare class PaymentAmount implements ComponentInterface {
|
|
|
28
28
|
rules: {
|
|
29
29
|
validator: (_: any, value: Array<number>) => Promise<void>;
|
|
30
30
|
}[];
|
|
31
|
+
props: {
|
|
32
|
+
placeholder: string[];
|
|
33
|
+
};
|
|
31
34
|
formatFilterValue: (val: Array<number | null>) => (number | null)[];
|
|
32
35
|
filterFn: (value: string) => (i: Record) => boolean;
|
|
33
36
|
};
|
|
@@ -109,6 +109,9 @@ var PaymentAmount = /*#__PURE__*/_createClass(function PaymentAmount(options) {
|
|
|
109
109
|
return validator;
|
|
110
110
|
}()
|
|
111
111
|
}],
|
|
112
|
+
props: {
|
|
113
|
+
placeholder: ['始-打款金额', '终-打款金额']
|
|
114
|
+
},
|
|
112
115
|
formatFilterValue: function formatFilterValue(val) {
|
|
113
116
|
if (val !== null && val !== void 0 && val.some(function (v) {
|
|
114
117
|
return isNull(v);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kmkf-fe-packages/services-components",
|
|
3
|
-
"version": "0.7.5-alpha.
|
|
3
|
+
"version": "0.7.5-alpha.14",
|
|
4
4
|
"module": "dist/esm/index.js",
|
|
5
5
|
"typings": "dist/esm/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"gitHooks": {
|
|
41
41
|
"pre-commit": "lint-staged"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "22f8bec434fc8a77e4907ad6264dac78ce6bd9d6"
|
|
44
44
|
}
|