@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/README.md
CHANGED
|
@@ -112,7 +112,7 @@ The following projects are maintained by community personnel, welcome to add.
|
|
|
112
112
|
| [vue-h5-template](https://github.com/sunniejs/vue-h5-template) | `Vue-based mobile template scaffolding, providing mobile presets for Varlet component library` |
|
|
113
113
|
| [create-vite-app](https://github.com/ErKeLost/create-vite-app) | `A desktop template scaffolding based on Vue3, providing desktop presets for Varlet component library` |
|
|
114
114
|
| [vscode-common-intellisense](https://github.com/Simon-He95/vscode-common-intellisense) | `A VS Code extension that provides better intellisense to Varlet developers` |
|
|
115
|
-
| [vue3-varlet-mobile](https://github.com/
|
|
115
|
+
| [vue3-varlet-mobile](https://github.com/vue-zone/vue3-varlet-mobile) | `A mobile template based on Vue 3 and Varlet Component Library` |
|
|
116
116
|
|
|
117
117
|
### Playground
|
|
118
118
|
|
package/README.zh-CN.md
CHANGED
|
@@ -112,7 +112,7 @@ createApp(App).use(Varlet).mount('#app')
|
|
|
112
112
|
| [vue-h5-template](https://github.com/sunniejs/vue-h5-template) | `基于 Vue 的移动端模板脚手架,提供了 Varlet 组件库的移动端预设` |
|
|
113
113
|
| [create-vite-app](https://github.com/ErKeLost/create-vite-app) | `基于 Vue3 的桌面端模板脚手架,提供了 Varlet 组件库的桌面端预设` |
|
|
114
114
|
| [vscode-common-intellisense](https://github.com/Simon-He95/vscode-common-intellisense) | `为 Varlet 开发人员提供更好的智能感知的 VSCode 扩展` |
|
|
115
|
-
| [vue3-varlet-mobile](https://github.com/
|
|
115
|
+
| [vue3-varlet-mobile](https://github.com/vue-zone/vue3-varlet-mobile) | `基于 Vue 3 和 Varlet 组件库的移动模板` |
|
|
116
116
|
|
|
117
117
|
### 演练场
|
|
118
118
|
|
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.11.
|
|
286
|
+
const version = '3.11.1'
|
|
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.11.
|
|
191
|
+
const version = '3.11.1'
|
|
192
192
|
|
|
193
193
|
function install(app) {
|
|
194
194
|
ActionSheet.install && app.use(ActionSheet)
|
package/es/input/Input.mjs
CHANGED
|
@@ -345,6 +345,10 @@ const __sfc__ = defineComponent({
|
|
|
345
345
|
;
|
|
346
346
|
el.value.blur();
|
|
347
347
|
}
|
|
348
|
+
function select() {
|
|
349
|
+
;
|
|
350
|
+
el.value.select();
|
|
351
|
+
}
|
|
348
352
|
return {
|
|
349
353
|
el,
|
|
350
354
|
id,
|
|
@@ -373,7 +377,8 @@ const __sfc__ = defineComponent({
|
|
|
373
377
|
resetValidation,
|
|
374
378
|
reset,
|
|
375
379
|
focus,
|
|
376
|
-
blur
|
|
380
|
+
blur,
|
|
381
|
+
select
|
|
377
382
|
};
|
|
378
383
|
}
|
|
379
384
|
});
|