@varlet/ui 3.10.5 → 3.10.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/README.md +0 -4
- package/README.zh-CN.md +0 -4
- package/es/action-sheet/style/index.mjs +1 -1
- package/es/index.bundle.mjs +1 -1
- package/es/index.mjs +1 -1
- package/es/slider/Slider.mjs +2 -1
- package/es/snackbar/style/index.mjs +1 -1
- package/es/varlet.esm.js +133 -132
- package/highlight/web-types.en-US.json +1 -1
- package/highlight/web-types.zh-CN.json +1 -1
- package/lib/varlet.cjs.js +3 -2
- package/package.json +7 -7
- package/umd/varlet.js +2 -2
package/lib/varlet.cjs.js
CHANGED
|
@@ -24829,7 +24829,7 @@ function __render__$e(_ctx, _cache) {
|
|
|
24829
24829
|
{
|
|
24830
24830
|
ref: "sliderEl",
|
|
24831
24831
|
class: vue.normalizeClass(_ctx.classes(_ctx.n(`${_ctx.direction}-block`), [_ctx.isDisabled, _ctx.n("--disabled")], [_ctx.errorMessage, _ctx.n(`${_ctx.direction}--error`)])),
|
|
24832
|
-
onClick: _cache[
|
|
24832
|
+
onClick: _cache[1] || (_cache[1] = (...args) => _ctx.handleClick && _ctx.handleClick(...args))
|
|
24833
24833
|
},
|
|
24834
24834
|
[
|
|
24835
24835
|
vue.createElementVNode(
|
|
@@ -24882,6 +24882,7 @@ function __render__$e(_ctx, _cache) {
|
|
|
24882
24882
|
"aria-disabled": _ctx.isDisabled,
|
|
24883
24883
|
"aria-valuetext": `${item.text}`,
|
|
24884
24884
|
onTouchstart: vue.withModifiers(($event) => _ctx.start($event, item.enumValue), ["stop"]),
|
|
24885
|
+
onTouchmove: _cache[0] || (_cache[0] = vue.withModifiers((...args) => _ctx.move && _ctx.move(...args), ["stop"])),
|
|
24885
24886
|
onFocusin: ($event) => _ctx.handleFocus(item),
|
|
24886
24887
|
onFocusout: ($event) => _ctx.handleBlur(item)
|
|
24887
24888
|
}, [
|
|
@@ -32017,7 +32018,7 @@ withInstall(stdin_default$1);
|
|
|
32017
32018
|
withPropsDefaultsSetter(stdin_default$1, props);
|
|
32018
32019
|
const _WatermarkComponent = stdin_default$1;
|
|
32019
32020
|
var stdin_default = stdin_default$1;
|
|
32020
|
-
const version = "3.10.
|
|
32021
|
+
const version = "3.10.7";
|
|
32021
32022
|
function install(app) {
|
|
32022
32023
|
stdin_default$60.install && app.use(stdin_default$60);
|
|
32023
32024
|
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.10.
|
|
3
|
+
"version": "3.10.7",
|
|
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.10.
|
|
48
|
-
"@varlet/shared": "3.10.
|
|
49
|
-
"@varlet/use": "3.10.
|
|
47
|
+
"@varlet/icons": "3.10.7",
|
|
48
|
+
"@varlet/shared": "3.10.7",
|
|
49
|
+
"@varlet/use": "3.10.7"
|
|
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/
|
|
66
|
-
"@varlet/ui": "3.10.
|
|
67
|
-
"@varlet/
|
|
65
|
+
"@varlet/touch-emulator": "3.10.7",
|
|
66
|
+
"@varlet/ui": "3.10.7",
|
|
67
|
+
"@varlet/cli": "3.10.7"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
70
|
"vue": "^3.2.0"
|