kts-component-invoice-operate 3.2.2 → 3.2.3
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/index.esm.js +2 -1
- package/dist/index.js +2 -1
- package/package.json +2 -2
- package/src/InvoiceTypeModal/index.tsx +2 -1
package/dist/index.esm.js
CHANGED
|
@@ -18528,7 +18528,7 @@ function InvoiceTypeModal(props) {
|
|
|
18528
18528
|
}, React.createElement(Select$1, {
|
|
18529
18529
|
size: 'large',
|
|
18530
18530
|
allowClear: true,
|
|
18531
|
-
placeholder: "\u8BF7\u9009\u62E9\uFF08\
|
|
18531
|
+
placeholder: "\u8BF7\u9009\u62E9\uFF08\u5FC5\u586B\u9879\uFF09",
|
|
18532
18532
|
disabled: disableds.indexOf('invoiceType') >= 0,
|
|
18533
18533
|
options: props.invoiceTypeOptions
|
|
18534
18534
|
}))), React.createElement(Col, {
|
|
@@ -18539,6 +18539,7 @@ function InvoiceTypeModal(props) {
|
|
|
18539
18539
|
}, React.createElement(Select$1, {
|
|
18540
18540
|
size: 'large',
|
|
18541
18541
|
allowClear: true,
|
|
18542
|
+
placeholder: "\u8BF7\u9009\u62E9\uFF08\u975E\u5FC5\u586B\u9879\uFF09",
|
|
18542
18543
|
disabled: disableds.indexOf('business') >= 0 || !formValues.invoiceType,
|
|
18543
18544
|
options: props.businessOptions
|
|
18544
18545
|
}))))));
|
package/dist/index.js
CHANGED
|
@@ -18538,7 +18538,7 @@ function InvoiceTypeModal(props) {
|
|
|
18538
18538
|
}, React__default['default'].createElement(ktsXui.Select, {
|
|
18539
18539
|
size: 'large',
|
|
18540
18540
|
allowClear: true,
|
|
18541
|
-
placeholder: "\u8BF7\u9009\u62E9\uFF08\
|
|
18541
|
+
placeholder: "\u8BF7\u9009\u62E9\uFF08\u5FC5\u586B\u9879\uFF09",
|
|
18542
18542
|
disabled: disableds.indexOf('invoiceType') >= 0,
|
|
18543
18543
|
options: props.invoiceTypeOptions
|
|
18544
18544
|
}))), React__default['default'].createElement(ktsXui.Col, {
|
|
@@ -18549,6 +18549,7 @@ function InvoiceTypeModal(props) {
|
|
|
18549
18549
|
}, React__default['default'].createElement(ktsXui.Select, {
|
|
18550
18550
|
size: 'large',
|
|
18551
18551
|
allowClear: true,
|
|
18552
|
+
placeholder: "\u8BF7\u9009\u62E9\uFF08\u975E\u5FC5\u586B\u9879\uFF09",
|
|
18552
18553
|
disabled: disableds.indexOf('business') >= 0 || !formValues.invoiceType,
|
|
18553
18554
|
options: props.businessOptions
|
|
18554
18555
|
}))))));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kts-component-invoice-operate",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.3",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"start": "dumi dev",
|
|
6
6
|
"docs:build": "dumi build",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"gitHooks": {
|
|
20
20
|
"pre-commit": "lint-staged"
|
|
21
21
|
},
|
|
22
|
-
"lint-staged": {
|
|
22
|
+
"lint-staged": {
|
|
23
23
|
"*.{js,jsx,less,md,json}": [],
|
|
24
24
|
"*.ts?(x)": []
|
|
25
25
|
},
|
|
@@ -120,7 +120,7 @@ export default function InvoiceTypeModal(props: IInvoiceTypeModalProps) {
|
|
|
120
120
|
<Select
|
|
121
121
|
size='large'
|
|
122
122
|
allowClear
|
|
123
|
-
placeholder="
|
|
123
|
+
placeholder="请选择(必填项)"
|
|
124
124
|
disabled={disableds.indexOf('invoiceType') >= 0}
|
|
125
125
|
options={props.invoiceTypeOptions}
|
|
126
126
|
/>
|
|
@@ -132,6 +132,7 @@ export default function InvoiceTypeModal(props: IInvoiceTypeModalProps) {
|
|
|
132
132
|
<Select
|
|
133
133
|
size='large'
|
|
134
134
|
allowClear
|
|
135
|
+
placeholder="请选择(非必填项)"
|
|
135
136
|
disabled={disableds.indexOf('business') >= 0 || !formValues.invoiceType}
|
|
136
137
|
options={props.businessOptions}
|
|
137
138
|
/>
|