z-ui-pc 0.5.6 → 0.5.7
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/dist/index.css +1 -1
- package/dist/index.d.ts +95 -8
- package/dist/index.js +2562 -2476
- package/package.json +5 -2
- package/web-types.json +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "z-ui-pc",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.7",
|
|
4
4
|
"description": "适用于pc端的前端组件库",
|
|
5
5
|
"module": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -61,5 +61,8 @@
|
|
|
61
61
|
"vue-draggable-plus": "^0.6.0",
|
|
62
62
|
"vue-tsc": "^3.0.4"
|
|
63
63
|
},
|
|
64
|
-
"web-types": "web-types.json"
|
|
64
|
+
"web-types": "web-types.json",
|
|
65
|
+
"dependencies": {
|
|
66
|
+
"emoji-regex": "^10.4.0"
|
|
67
|
+
}
|
|
65
68
|
}
|
package/web-types.json
CHANGED
|
@@ -60,6 +60,11 @@
|
|
|
60
60
|
"name": "v-paste-trim",
|
|
61
61
|
"description": "## el-input 粘贴空格过滤 \n粘贴内容到 el-input 的时候,会自动把前后空格去掉",
|
|
62
62
|
"type": "string"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "v-trim-emoji",
|
|
66
|
+
"description": "## el-input emoji表情过滤 \n输入/粘贴emoji表情到 el-input 的时候,会自动把emoji表情过滤掉。\n指令依赖于第三方库 [emoji-regex](https://www.npmjs.com/package/emoji-regex)",
|
|
67
|
+
"type": "string"
|
|
63
68
|
}
|
|
64
69
|
]
|
|
65
70
|
}
|