@newview/ui 1.1.41 → 1.1.43

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@newview/ui",
3
- "version": "1.1.41",
3
+ "version": "1.1.43",
4
4
  "author": "newview",
5
5
  "type": "module",
6
6
  "main": "./dist/newview-ui.umd.cjs",
@@ -1526,6 +1526,8 @@ export interface uploadFileProp{
1526
1526
  * 是否只读
1527
1527
  */
1528
1528
  readonly?:Boolean
1529
+ /** 限制附件上传的数量 */
1530
+ uploadQuantity?:Number
1529
1531
  }
1530
1532
  /**
1531
1533
  * 文件列表上传参数
@@ -1642,6 +1644,30 @@ export interface structureProp{
1642
1644
 
1643
1645
  }
1644
1646
 
1647
+ /**
1648
+ * 签字类型 0:签字 1:盖章
1649
+ */
1650
+ type signType = 0 | 1
1651
+ export interface signProp{
1652
+ /**
1653
+ * 是否只读
1654
+ */
1655
+ readonly?:Boolean
1656
+ /**
1657
+ * 验章内容
1658
+ */
1659
+ signContent?:string;
1660
+ /**
1661
+ * 签字类型 0:签字 1:盖章
1662
+ */
1663
+ signType?:signType;
1664
+ /**
1665
+ * 是否使用假验章
1666
+ */
1667
+ isFakeVerifySign?:Boolean;
1668
+
1669
+ }
1670
+
1645
1671
  /**
1646
1672
  * FormItem 参数
1647
1673
  */
@@ -1671,7 +1697,7 @@ export interface ComFormItem {
1671
1697
  */
1672
1698
  type?: "Switch" | "Label" | "Button" | "Input" | "InputNumber" | "Select" | "Radio" | "Checkbox" |
1673
1699
  "TreeSelect" | "City" | "AutoComplete" | "Slider" | "DatePicker" | "TimePicker" | "Cascader" |
1674
- "TagSelect" | "Rate" | "ColorPicker" | "IconSelect" | "UploadFile" | 'TextEditor' | 'DicSelect' | 'Structure' | 'StructureType' | "UploadFileList";
1700
+ "TagSelect" | "Rate" | "ColorPicker" | "IconSelect" | "UploadFile" | 'TextEditor' | 'DicSelect' | 'Structure' | 'StructureType' | "UploadFileList" | "CASign";
1675
1701
 
1676
1702
  /**
1677
1703
  * Switch 参数
@@ -1830,6 +1856,10 @@ export interface ComFormItem {
1830
1856
  * 构件选择参数
1831
1857
  */
1832
1858
  structureProp?:structureProp
1859
+ /**
1860
+ * CA签章参数
1861
+ */
1862
+ signProp?: signProp;
1833
1863
  }
1834
1864
 
1835
1865
  import type { DefineComponent } from 'vue';