@newview/ui 1.1.25 → 1.1.26
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 +5 -0
- package/dist/newview-ui.js +23644 -3254
- package/dist/newview-ui.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +3 -3
- package/types/ComForm.d.ts +7 -2
- package/vite.config.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@newview/ui",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.26",
|
|
4
4
|
"author": "newview",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/newview-ui.umd.cjs",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"build-watch": "vite build --watch",
|
|
32
32
|
"type-check": "vue-tsc --noEmit",
|
|
33
33
|
"p": "npm publish --access public",
|
|
34
|
-
"build-p":
|
|
34
|
+
"build-p":"run-p type-check build-only p"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@newview/base-vue": "^1.1.0",
|
|
@@ -72,4 +72,4 @@
|
|
|
72
72
|
"vite": "4.0.0",
|
|
73
73
|
"vue-tsc": "1.0.11"
|
|
74
74
|
}
|
|
75
|
-
}
|
|
75
|
+
}
|
package/types/ComForm.d.ts
CHANGED
|
@@ -1514,7 +1514,7 @@ export interface ComFormItem {
|
|
|
1514
1514
|
*/
|
|
1515
1515
|
type?: "Switch" | "Label" | "Button" | "Input" | "InputNumber" | "Select" | "Radio" | "Checkbox" |
|
|
1516
1516
|
"TreeSelect" | "City" | "AutoComplete" | "Slider" | "DatePicker" | "TimePicker" | "Cascader" |
|
|
1517
|
-
"TagSelect" | "Rate" | "ColorPicker" | "IconSelect" | "UploadFile" | 'TextEditor' | 'DicSelect';
|
|
1517
|
+
"TagSelect" | "Rate" | "ColorPicker" | "IconSelect" | "UploadFile" | 'TextEditor' | 'DicSelect' | 'Structure' | 'StructureType';
|
|
1518
1518
|
|
|
1519
1519
|
/**
|
|
1520
1520
|
* Switch 参数
|
|
@@ -1661,7 +1661,12 @@ export interface ComFormItem {
|
|
|
1661
1661
|
/**
|
|
1662
1662
|
* 字典项所在的平台Id 默认当前平台
|
|
1663
1663
|
*/
|
|
1664
|
-
dicPId?: number
|
|
1664
|
+
dicPId?: number;
|
|
1665
|
+
|
|
1666
|
+
|
|
1667
|
+
selType?:number;
|
|
1668
|
+
|
|
1669
|
+
multiple?:boolean
|
|
1665
1670
|
}
|
|
1666
1671
|
|
|
1667
1672
|
import type { DefineComponent } from 'vue';
|