@newview/ui 1.1.42 → 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/README.md +3 -0
- package/package.json +72 -73
- package/types/ComForm.d.ts +29 -1
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,76 +1,75 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
|
-
"scripts": {
|
|
27
|
-
"dev": "vite",
|
|
28
|
-
"build": "run-p type-check build-watch",
|
|
29
|
-
"preview": "vite preview",
|
|
30
|
-
"build-only": "vite build",
|
|
31
|
-
"build-watch": "vite build --watch",
|
|
32
|
-
"type-check": "vue-tsc --noEmit",
|
|
33
|
-
"p": "npm publish --access public",
|
|
34
|
-
"build-p": "run-p type-check build-only p"
|
|
35
|
-
},
|
|
36
|
-
"dependencies": {
|
|
37
|
-
"@newview/base-vue": "^1.1.0",
|
|
38
|
-
"@newview/infrastructure": "^1.1.0",
|
|
39
|
-
"@newview/tools": "^1.1.0",
|
|
40
|
-
"@vue-office/docx": "1.3.0",
|
|
41
|
-
"ace-builds": "1.23.1",
|
|
42
|
-
"axios": "1.6.2",
|
|
43
|
-
"dayjs": "1.11.7",
|
|
44
|
-
"docx": "8.2.2",
|
|
45
|
-
"jquery": "3.6.3",
|
|
46
|
-
"jszip": "3.10.1",
|
|
47
|
-
"linq": "4.0.1",
|
|
48
|
-
"monaco-editor": "0.36.1",
|
|
49
|
-
"qrcodejs2": "0.0.2",
|
|
50
|
-
"sass": "1.56.2",
|
|
51
|
-
"sortablejs": "^1.15.0",
|
|
52
|
-
"view-ui-plus": "1.3.1",
|
|
53
|
-
"vue": "3.2.45",
|
|
54
|
-
"vue-demi": "0.14.6",
|
|
55
|
-
"vue-draggable-next": "^2.2.1",
|
|
56
|
-
"vue-router": "4.1.6",
|
|
57
|
-
"vuedraggable": "^4.1.0",
|
|
58
|
-
"vxe-table": "4.3.7",
|
|
59
|
-
"x2js": "3.4.4",
|
|
60
|
-
"xe-utils": "3.5.7",
|
|
61
|
-
"xlsx": "0.15.6"
|
|
62
|
-
},
|
|
63
|
-
"devDependencies": {
|
|
64
|
-
"@types/file-saver": "2.0.5",
|
|
65
|
-
"@types/jquery": "3.5.16",
|
|
66
|
-
"@types/node": "^18.11.18",
|
|
67
|
-
"@vitejs/plugin-vue": "4.0.0",
|
|
68
|
-
"file-saver": "2.0.5",
|
|
69
|
-
"npm-run-all": "4.1.5",
|
|
70
|
-
"terser": "5.16.8",
|
|
71
|
-
"typescript": "4.9.3",
|
|
72
|
-
"vite": "4.0.0",
|
|
73
|
-
"vue-tsc": "1.0.11"
|
|
2
|
+
"name": "@newview/ui",
|
|
3
|
+
"version": "1.1.43",
|
|
4
|
+
"author": "newview",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/newview-ui.umd.cjs",
|
|
7
|
+
"module": "./dist/newview-ui.js",
|
|
8
|
+
"typings": "types/index.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/*",
|
|
11
|
+
"types/*",
|
|
12
|
+
"package.json",
|
|
13
|
+
"tsconfig.json",
|
|
14
|
+
"tsconfig.node.json",
|
|
15
|
+
"vite.config.ts",
|
|
16
|
+
"README.md"
|
|
17
|
+
],
|
|
18
|
+
"exports": {
|
|
19
|
+
"./dist/style.css": "./dist/style.css",
|
|
20
|
+
"./css": "./dist/style.css",
|
|
21
|
+
".": {
|
|
22
|
+
"import": "./dist/newview-ui.js",
|
|
23
|
+
"require": "./dist/newview-ui.umd.cjs"
|
|
74
24
|
}
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"dev": "vite",
|
|
28
|
+
"build": "run-p type-check build-watch",
|
|
29
|
+
"preview": "vite preview",
|
|
30
|
+
"build-only": "vite build",
|
|
31
|
+
"build-watch": "vite build --watch",
|
|
32
|
+
"type-check": "vue-tsc --noEmit",
|
|
33
|
+
"p": "npm publish --access public",
|
|
34
|
+
"build-p": "run-p type-check build-only p"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@newview/base-vue": "^1.1.0",
|
|
38
|
+
"@newview/infrastructure": "^1.1.0",
|
|
39
|
+
"@newview/tools": "^1.1.0",
|
|
40
|
+
"@vue-office/docx": "1.3.0",
|
|
41
|
+
"ace-builds": "1.23.1",
|
|
42
|
+
"axios": "1.6.2",
|
|
43
|
+
"dayjs": "1.11.7",
|
|
44
|
+
"docx": "8.2.2",
|
|
45
|
+
"jquery": "3.6.3",
|
|
46
|
+
"jszip": "3.10.1",
|
|
47
|
+
"linq": "4.0.1",
|
|
48
|
+
"monaco-editor": "0.36.1",
|
|
49
|
+
"qrcodejs2": "0.0.2",
|
|
50
|
+
"sass": "1.56.2",
|
|
51
|
+
"sortablejs": "^1.15.0",
|
|
52
|
+
"view-ui-plus": "1.3.1",
|
|
53
|
+
"vue": "3.2.45",
|
|
54
|
+
"vue-demi": "0.14.6",
|
|
55
|
+
"vue-draggable-next": "^2.2.1",
|
|
56
|
+
"vue-router": "4.1.6",
|
|
57
|
+
"vuedraggable": "^4.1.0",
|
|
58
|
+
"vxe-table": "4.3.7",
|
|
59
|
+
"x2js": "3.4.4",
|
|
60
|
+
"xe-utils": "3.5.7",
|
|
61
|
+
"xlsx": "0.15.6"
|
|
62
|
+
},
|
|
63
|
+
"devDependencies": {
|
|
64
|
+
"@types/file-saver": "2.0.5",
|
|
65
|
+
"@types/jquery": "3.5.16",
|
|
66
|
+
"@types/node": "^18.11.18",
|
|
67
|
+
"@vitejs/plugin-vue": "4.0.0",
|
|
68
|
+
"file-saver": "2.0.5",
|
|
69
|
+
"npm-run-all": "4.1.5",
|
|
70
|
+
"terser": "5.16.8",
|
|
71
|
+
"typescript": "4.9.3",
|
|
72
|
+
"vite": "4.0.0",
|
|
73
|
+
"vue-tsc": "1.0.11"
|
|
75
74
|
}
|
|
76
|
-
|
|
75
|
+
}
|
package/types/ComForm.d.ts
CHANGED
|
@@ -1644,6 +1644,30 @@ export interface structureProp{
|
|
|
1644
1644
|
|
|
1645
1645
|
}
|
|
1646
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
|
+
|
|
1647
1671
|
/**
|
|
1648
1672
|
* FormItem 参数
|
|
1649
1673
|
*/
|
|
@@ -1673,7 +1697,7 @@ export interface ComFormItem {
|
|
|
1673
1697
|
*/
|
|
1674
1698
|
type?: "Switch" | "Label" | "Button" | "Input" | "InputNumber" | "Select" | "Radio" | "Checkbox" |
|
|
1675
1699
|
"TreeSelect" | "City" | "AutoComplete" | "Slider" | "DatePicker" | "TimePicker" | "Cascader" |
|
|
1676
|
-
"TagSelect" | "Rate" | "ColorPicker" | "IconSelect" | "UploadFile" | 'TextEditor' | 'DicSelect' | 'Structure' | 'StructureType' | "UploadFileList";
|
|
1700
|
+
"TagSelect" | "Rate" | "ColorPicker" | "IconSelect" | "UploadFile" | 'TextEditor' | 'DicSelect' | 'Structure' | 'StructureType' | "UploadFileList" | "CASign";
|
|
1677
1701
|
|
|
1678
1702
|
/**
|
|
1679
1703
|
* Switch 参数
|
|
@@ -1832,6 +1856,10 @@ export interface ComFormItem {
|
|
|
1832
1856
|
* 构件选择参数
|
|
1833
1857
|
*/
|
|
1834
1858
|
structureProp?:structureProp
|
|
1859
|
+
/**
|
|
1860
|
+
* CA签章参数
|
|
1861
|
+
*/
|
|
1862
|
+
signProp?: signProp;
|
|
1835
1863
|
}
|
|
1836
1864
|
|
|
1837
1865
|
import type { DefineComponent } from 'vue';
|