@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 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
  以下项目由官方团队长期维护。
@@ -3,5 +3,5 @@ import '../../icon/icon.css'
3
3
  import '../../ripple/ripple.css'
4
4
  import '../../popup/popup.css'
5
5
  import '../actionSheet.css'
6
- import '../ActionSheetSfc.css'
7
6
  import '../ActionItemSfc.css'
7
+ import '../ActionSheetSfc.css'
@@ -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.5'
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.5'
191
+ const version = '3.10.7'
192
192
 
193
193
  function install(app) {
194
194
  ActionSheet.install && app.use(ActionSheet)
@@ -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[0] || (_cache[0] = (...args) => _ctx.handleClick && _ctx.handleClick(...args))
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
  }, [
@@ -1,7 +1,7 @@
1
1
  import '../../styles/common.css'
2
+ import '../SnackbarSfc.css'
2
3
  import '../../styles/elevation.css'
3
4
  import '../../loading/loading.css'
4
5
  import '../../icon/icon.css'
5
6
  import '../snackbar.css'
6
7
  import '../coreSfc.css'
7
- import '../SnackbarSfc.css'