@vobs/vobs 1.3.0 → 1.3.2

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/dist/jsx.d.ts CHANGED
@@ -6,6 +6,7 @@ type VobsEventHandler<T extends Event = Event> = (event: T) => void
6
6
 
7
7
  interface VobsHTMLAttributes {
8
8
  ref?: RefTarget<any>
9
+ accept?: string
9
10
  accessKey?: string
10
11
  autofocus?: boolean
11
12
  checked?: boolean
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "type": "git",
12
12
  "url": "git+https://github.com/vobsjs/vobs.git"
13
13
  },
14
- "version": "1.3.0",
14
+ "version": "1.3.2",
15
15
  "publishConfig": {
16
16
  "access": "public"
17
17
  },
@@ -48,8 +48,8 @@
48
48
  "./source/*": "./src/*"
49
49
  },
50
50
  "dependencies": {
51
- "@vobs/reactivity": "1.3.0",
52
- "@vobs/dom": "1.3.0",
53
- "@vobs/runtime": "1.3.0"
51
+ "@vobs/reactivity": "1.3.2",
52
+ "@vobs/runtime": "1.3.2",
53
+ "@vobs/dom": "1.3.2"
54
54
  }
55
55
  }
package/src/jsx.d.ts CHANGED
@@ -6,6 +6,7 @@ type VobsEventHandler<T extends Event = Event> = (event: T) => void
6
6
 
7
7
  interface VobsHTMLAttributes {
8
8
  ref?: RefTarget<any>
9
+ accept?: string
9
10
  accessKey?: string
10
11
  autofocus?: boolean
11
12
  checked?: boolean