@varlet/ui 1.26.4 → 1.26.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": "1.26.4",
3
+ "version": "1.26.5",
4
4
  "description": "A material like components library",
5
5
  "module": "es/index.js",
6
6
  "main": "lib/index.js",
@@ -39,13 +39,13 @@
39
39
  },
40
40
  "gitHead": "ee9c3866bedad96c86365b0f9888a3a6bb781b1f",
41
41
  "dependencies": {
42
- "@varlet/icons": "1.26.4",
42
+ "@varlet/icons": "1.26.5",
43
43
  "dayjs": "^1.10.4",
44
44
  "decimal.js": "^10.2.1"
45
45
  },
46
46
  "devDependencies": {
47
- "@varlet/cli": "1.26.4",
48
- "@varlet/touch-emulator": "1.26.4",
47
+ "@varlet/cli": "1.26.5",
48
+ "@varlet/touch-emulator": "1.26.5",
49
49
  "@vue/test-utils": "2.0.0-rc.6",
50
50
  "@vue/runtime-core": "3.2.25",
51
51
  "typescript": "^4.4.4",
@@ -14,6 +14,7 @@ export interface DatePickerProps {
14
14
  readonly?: boolean
15
15
  multiple?: boolean
16
16
  range?: boolean
17
+ touchable?: boolean
17
18
  onChange?: (value: string | string[]) => void
18
19
  'onUpdate:modelValue'?: (value: string | string[]) => void
19
20
  }