@varlet/ui 3.11.0 → 3.11.1
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 +1 -1
- package/README.zh-CN.md +1 -1
- package/es/index.bundle.mjs +1 -1
- package/es/index.mjs +1 -1
- package/es/input/Input.mjs +6 -1
- package/es/varlet.esm.js +1320 -1316
- package/highlight/web-types.en-US.json +1 -1
- package/highlight/web-types.zh-CN.json +1 -1
- package/lib/varlet.cjs.js +6 -2
- package/package.json +7 -7
- package/types/input.d.ts +2 -0
- package/umd/varlet.js +6 -6
package/lib/varlet.cjs.js
CHANGED
|
@@ -5101,6 +5101,9 @@ const __sfc__$1o = vue.defineComponent({
|
|
|
5101
5101
|
function blur() {
|
|
5102
5102
|
el.value.blur();
|
|
5103
5103
|
}
|
|
5104
|
+
function select() {
|
|
5105
|
+
el.value.select();
|
|
5106
|
+
}
|
|
5104
5107
|
return {
|
|
5105
5108
|
el,
|
|
5106
5109
|
id,
|
|
@@ -5129,7 +5132,8 @@ const __sfc__$1o = vue.defineComponent({
|
|
|
5129
5132
|
resetValidation,
|
|
5130
5133
|
reset,
|
|
5131
5134
|
focus,
|
|
5132
|
-
blur
|
|
5135
|
+
blur,
|
|
5136
|
+
select
|
|
5133
5137
|
};
|
|
5134
5138
|
}
|
|
5135
5139
|
});
|
|
@@ -32013,7 +32017,7 @@ withInstall(stdin_default$1);
|
|
|
32013
32017
|
withPropsDefaultsSetter(stdin_default$1, props);
|
|
32014
32018
|
const _WatermarkComponent = stdin_default$1;
|
|
32015
32019
|
var stdin_default = stdin_default$1;
|
|
32016
|
-
const version = "3.11.
|
|
32020
|
+
const version = "3.11.1";
|
|
32017
32021
|
function install(app) {
|
|
32018
32022
|
stdin_default$60.install && app.use(stdin_default$60);
|
|
32019
32023
|
stdin_default$5_.install && app.use(stdin_default$5_);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@varlet/ui",
|
|
3
|
-
"version": "3.11.
|
|
3
|
+
"version": "3.11.1",
|
|
4
4
|
"description": "A Vue3 component library based on Material Design 2 and 3, supporting mobile and desktop.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Vue3",
|
|
@@ -44,9 +44,9 @@
|
|
|
44
44
|
"@popperjs/core": "^2.11.6",
|
|
45
45
|
"dayjs": "^1.10.4",
|
|
46
46
|
"decimal.js": "^10.2.1",
|
|
47
|
-
"@varlet/icons": "3.11.
|
|
48
|
-
"@varlet/shared": "3.11.
|
|
49
|
-
"@varlet/use": "3.11.
|
|
47
|
+
"@varlet/icons": "3.11.1",
|
|
48
|
+
"@varlet/shared": "3.11.1",
|
|
49
|
+
"@varlet/use": "3.11.1"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@types/node": "^18.7.20",
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
"vue": "3.5.13",
|
|
63
63
|
"vue-router": "4.5.0",
|
|
64
64
|
"zod": "^3.23.8",
|
|
65
|
-
"@varlet/cli": "3.11.
|
|
66
|
-
"@varlet/ui": "3.11.
|
|
67
|
-
"@varlet/touch-emulator": "3.11.
|
|
65
|
+
"@varlet/cli": "3.11.1",
|
|
66
|
+
"@varlet/ui": "3.11.1",
|
|
67
|
+
"@varlet/touch-emulator": "3.11.1"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
70
|
"vue": "^3.2.0"
|