kts-component-invoice-operate 3.2.140 → 3.2.141

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.
@@ -51,7 +51,7 @@ export default class Invoice extends React.PureComponent<IInvoiceProps> {
51
51
  /** 落款(数电) */
52
52
  static readonly SignDigtal: React.FunctionComponent<import("./ui/digtal/Sign").IBuyerProps>;
53
53
  /** 特殊信息-不动产经营租赁服务(数电) */
54
- static readonly RealEstateInfo: React.FunctionComponent<import("kts-components-antd-x3/lib/form").FormComponentProps<any>>;
54
+ static readonly RealEstateInfo: React.FunctionComponent<any>;
55
55
  /** 货物列表(数电) */
56
56
  static readonly GoodsListDigtal: typeof GoodsListDigtal;
57
57
  /** 货物索引生成器 */
@@ -1,6 +1,5 @@
1
1
  import React from "react";
2
- import { FormComponentProps } from 'kts-components-antd-x3/lib/form';
3
2
  import './index.less';
4
3
  /** 特殊信息-不动产经营租赁服务 */
5
- declare const _default: React.FunctionComponent<FormComponentProps<any>>;
4
+ declare const _default: React.FunctionComponent<any>;
6
5
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kts-component-invoice-operate",
3
- "version": "3.2.140",
3
+ "version": "3.2.141",
4
4
  "scripts": {
5
5
  "dev": "dumi dev",
6
6
  "start": "dumi dev",
@@ -9,7 +9,7 @@ import { Cascader, Col, DatePicker, Input, Row, Select } from "kts-components-an
9
9
  const { RangePicker } = DatePicker;
10
10
 
11
11
  /** 特殊信息-不动产经营租赁服务 */
12
- export default decorator<FormComponentProps>(Form.create())(props => {
12
+ export default decorator<any, FormComponentProps>(Form.create())(props => {
13
13
 
14
14
  const { form } = props;
15
15