@newview/ui 1.1.13 → 1.1.14
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 +2 -6
- package/dist/newview-ui.js +353 -311
- package/dist/newview-ui.umd.cjs +1 -1
- package/package.json +4 -6
- package/types/ComForm.d.ts +5 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@newview/ui",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.14",
|
|
4
4
|
"author": "newview",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/newview-ui.umd.cjs",
|
|
@@ -25,13 +25,11 @@
|
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
|
27
27
|
"dev": "vite",
|
|
28
|
-
"build": "run-p type-check build-
|
|
28
|
+
"build": "run-p type-check build-only",
|
|
29
29
|
"preview": "vite preview",
|
|
30
|
-
"build-only": "vite build",
|
|
31
|
-
"build-watch": "vite build --watch",
|
|
30
|
+
"build-only": "vite build --watch",
|
|
32
31
|
"type-check": "vue-tsc --noEmit",
|
|
33
|
-
"p": "npm publish --access public"
|
|
34
|
-
"build-p":"run-p type-check build-only p"
|
|
32
|
+
"p": "npm publish --access public"
|
|
35
33
|
},
|
|
36
34
|
"dependencies": {
|
|
37
35
|
"@newview/base-vue": "^1.1.0",
|
package/types/ComForm.d.ts
CHANGED
|
@@ -1509,7 +1509,7 @@ export interface ComFormItem {
|
|
|
1509
1509
|
*/
|
|
1510
1510
|
type?: "Switch" | "Label" | "Button" | "Input" | "InputNumber" | "Select" | "Radio" | "Checkbox" |
|
|
1511
1511
|
"TreeSelect" | "City" | "AutoComplete" | "Slider" | "DatePicker" | "TimePicker" | "Cascader" |
|
|
1512
|
-
"TagSelect" | "Rate" | "ColorPicker" | "IconSelect" | "UploadFile";
|
|
1512
|
+
"TagSelect" | "Rate" | "ColorPicker" | "IconSelect" | "UploadFile" | 'TextEditor';
|
|
1513
1513
|
|
|
1514
1514
|
/**
|
|
1515
1515
|
* Switch 参数
|
|
@@ -1640,6 +1640,10 @@ export interface ComFormItem {
|
|
|
1640
1640
|
* 是否显示校验错误信息
|
|
1641
1641
|
*/
|
|
1642
1642
|
'show-message'?: boolean;
|
|
1643
|
+
/**
|
|
1644
|
+
* 文本高度
|
|
1645
|
+
*/
|
|
1646
|
+
textHeight?: number;
|
|
1643
1647
|
}
|
|
1644
1648
|
|
|
1645
1649
|
import type { DefineComponent } from 'vue';
|