@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/README.md
CHANGED
|
@@ -85,10 +85,6 @@ import '@varlet/ui/es/style'
|
|
|
85
85
|
createApp(App).use(Varlet).mount('#app')
|
|
86
86
|
```
|
|
87
87
|
|
|
88
|
-
### AI Agent for documentation
|
|
89
|
-
|
|
90
|
-
You can get more information about `varlet` by asking in [AI Agent for documentation](https://gpt.qilepan.com/chat/share?shareId=y3ytky9ifjgl6fxtva1ai16h). Thanks to [qile AI](https://ai.qilepan.com/auth?type=register&invite=MjM0) for providing service support.
|
|
91
|
-
|
|
92
88
|
### Official Ecosystem
|
|
93
89
|
|
|
94
90
|
The following projects are maintained by the official team for a long time.
|
package/README.zh-CN.md
CHANGED
|
@@ -85,10 +85,6 @@ import '@varlet/ui/es/style'
|
|
|
85
85
|
createApp(App).use(Varlet).mount('#app')
|
|
86
86
|
```
|
|
87
87
|
|
|
88
|
-
### AI 文档助手
|
|
89
|
-
|
|
90
|
-
在 [AI 文档助手](https://gpt.qilepan.com/chat/share?shareId=y3ytky9ifjgl6fxtva1ai16h) 中可通过问询的方式获得 `varlet` 的更多信息, 感谢 [qile AI](https://ai.qilepan.com/auth?type=register&invite=MjM0) 提供服务支持.
|
|
91
|
-
|
|
92
88
|
### 官方生态
|
|
93
89
|
|
|
94
90
|
以下项目由官方团队长期维护。
|
package/es/index.bundle.mjs
CHANGED
|
@@ -283,7 +283,7 @@ import './tooltip/style/index.mjs'
|
|
|
283
283
|
import './uploader/style/index.mjs'
|
|
284
284
|
import './watermark/style/index.mjs'
|
|
285
285
|
|
|
286
|
-
const version = '3.10.
|
|
286
|
+
const version = '3.10.7'
|
|
287
287
|
|
|
288
288
|
function install(app) {
|
|
289
289
|
ActionSheet.install && app.use(ActionSheet)
|
package/es/index.mjs
CHANGED
|
@@ -188,7 +188,7 @@ export * from './tooltip/index.mjs'
|
|
|
188
188
|
export * from './uploader/index.mjs'
|
|
189
189
|
export * from './watermark/index.mjs'
|
|
190
190
|
|
|
191
|
-
const version = '3.10.
|
|
191
|
+
const version = '3.10.7'
|
|
192
192
|
|
|
193
193
|
function install(app) {
|
|
194
194
|
ActionSheet.install && app.use(ActionSheet)
|
package/es/slider/Slider.mjs
CHANGED
|
@@ -26,7 +26,7 @@ function __render__(_ctx, _cache) {
|
|
|
26
26
|
{
|
|
27
27
|
ref: "sliderEl",
|
|
28
28
|
class: _normalizeClass(_ctx.classes(_ctx.n(`${_ctx.direction}-block`), [_ctx.isDisabled, _ctx.n("--disabled")], [_ctx.errorMessage, _ctx.n(`${_ctx.direction}--error`)])),
|
|
29
|
-
onClick: _cache[
|
|
29
|
+
onClick: _cache[1] || (_cache[1] = (...args) => _ctx.handleClick && _ctx.handleClick(...args))
|
|
30
30
|
},
|
|
31
31
|
[
|
|
32
32
|
_createElementVNode(
|
|
@@ -79,6 +79,7 @@ function __render__(_ctx, _cache) {
|
|
|
79
79
|
"aria-disabled": _ctx.isDisabled,
|
|
80
80
|
"aria-valuetext": `${item.text}`,
|
|
81
81
|
onTouchstart: _withModifiers(($event) => _ctx.start($event, item.enumValue), ["stop"]),
|
|
82
|
+
onTouchmove: _cache[0] || (_cache[0] = _withModifiers((...args) => _ctx.move && _ctx.move(...args), ["stop"])),
|
|
82
83
|
onFocusin: ($event) => _ctx.handleFocus(item),
|
|
83
84
|
onFocusout: ($event) => _ctx.handleBlur(item)
|
|
84
85
|
}, [
|