@varlet/ui 3.8.3 → 3.8.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@varlet/ui",
3
- "version": "3.8.3",
3
+ "version": "3.8.5",
4
4
  "description": "A material like components library",
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.8.3",
48
- "@varlet/shared": "3.8.3",
49
- "@varlet/use": "3.8.3"
47
+ "@varlet/shared": "3.8.5",
48
+ "@varlet/icons": "3.8.5",
49
+ "@varlet/use": "3.8.5"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@types/node": "^18.7.18",
@@ -62,9 +62,9 @@
62
62
  "vue": "3.4.21",
63
63
  "vue-router": "4.2.0",
64
64
  "zod": "^3.23.8",
65
- "@varlet/cli": "3.8.3",
66
- "@varlet/touch-emulator": "3.8.3",
67
- "@varlet/ui": "3.8.3"
65
+ "@varlet/cli": "3.8.5",
66
+ "@varlet/ui": "3.8.5",
67
+ "@varlet/touch-emulator": "3.8.5"
68
68
  },
69
69
  "peerDependencies": {
70
70
  "vue": "^3.2.0"
package/types/input.d.ts CHANGED
@@ -22,6 +22,7 @@ export interface InputProps extends BasicAttributes {
22
22
  size?: InputSize
23
23
  variant?: InputVariant
24
24
  textarea?: boolean
25
+ ariaLabel?: string
25
26
  rows?: string | number
26
27
  placeholder?: string
27
28
  hint?: boolean
@@ -28,6 +28,7 @@ export interface RadioGroupProps extends BasicAttributes {
28
28
  modelValue?: any
29
29
  direction?: RadioGroupDirection
30
30
  options?: RadioGroupOption[]
31
+ ariaLabel?: string
31
32
  labelKey?: string
32
33
  valueKey?: string
33
34
  validateTrigger?: RadioGroupValidateTrigger[]