@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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
3
3
  "framework": "vue",
4
- "version": "3.11.0",
4
+ "version": "3.11.1",
5
5
  "name": "VARLET",
6
6
  "contributions": {
7
7
  "html": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
3
3
  "framework": "vue",
4
- "version": "3.11.0",
4
+ "version": "3.11.1",
5
5
  "name": "VARLET",
6
6
  "contributions": {
7
7
  "html": {
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.0";
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.0",
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.0",
48
- "@varlet/shared": "3.11.0",
49
- "@varlet/use": "3.11.0"
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.0",
66
- "@varlet/ui": "3.11.0",
67
- "@varlet/touch-emulator": "3.11.0"
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"
package/types/input.d.ts CHANGED
@@ -68,6 +68,8 @@ export class Input extends VarComponent {
68
68
 
69
69
  blur(): void
70
70
 
71
+ select(): void
72
+
71
73
  validate(): Promise<boolean>
72
74
 
73
75
  resetValidation(): void