@varlet/ui 2.13.0-alpha.1689346411483 → 2.13.0

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": "2.13.0-alpha.1689346411483",
3
+ "version": "2.13.0",
4
4
  "description": "A material like components library",
5
5
  "main": "lib/varlet.cjs.js",
6
6
  "module": "es/index.mjs",
@@ -46,9 +46,9 @@
46
46
  "@popperjs/core": "^2.11.6",
47
47
  "dayjs": "^1.10.4",
48
48
  "decimal.js": "^10.2.1",
49
- "@varlet/use": "2.13.0-alpha.1689346411483",
50
- "@varlet/shared": "2.13.0-alpha.1689346411483",
51
- "@varlet/icons": "2.13.0-alpha.1689346411483"
49
+ "@varlet/icons": "2.13.0",
50
+ "@varlet/shared": "2.13.0",
51
+ "@varlet/use": "2.13.0"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@vue/runtime-core": "3.3.4",
@@ -63,8 +63,8 @@
63
63
  "typescript": "^5.1.5",
64
64
  "vue": "3.3.4",
65
65
  "vue-router": "4.2.0",
66
- "@varlet/cli": "2.13.0-alpha.1689346411483",
67
- "@varlet/touch-emulator": "2.13.0-alpha.1689346411483"
66
+ "@varlet/cli": "2.13.0",
67
+ "@varlet/touch-emulator": "2.13.0"
68
68
  },
69
69
  "browserslist": [
70
70
  "Chrome >= 54",
@@ -4,7 +4,7 @@ import { VNode } from 'vue'
4
4
  export declare const dividerProps: Record<string, any>
5
5
 
6
6
  export interface DividerProps extends BasicAttributes {
7
- inset?: boolean | number
7
+ inset?: boolean | number | string
8
8
  vertical?: boolean
9
9
  description?: string
10
10
  margin?: string
package/types/drag.d.ts CHANGED
@@ -31,6 +31,8 @@ export class Drag extends VarComponent {
31
31
  }
32
32
 
33
33
  resize(): void
34
+
35
+ reset(): void
34
36
  }
35
37
 
36
38
  export class _DragComponent extends Drag {}