@vue-jsx-vapor/runtime 3.1.0 → 3.1.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.
Files changed (2) hide show
  1. package/dist/jsx.d.cts +2 -2
  2. package/package.json +1 -1
package/dist/jsx.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- import * as vue0 from "vue";
1
+ import * as vue1 from "vue";
2
2
  import * as CSS from "csstype";
3
3
 
4
4
  //#region src/jsx.d.ts
@@ -1191,7 +1191,7 @@ interface Events<T = Element> {
1191
1191
  onTransitionstart: TransitionEventHandler<T>;
1192
1192
  }
1193
1193
  type EventHandlers<E> = { [K in keyof E]?: E[K] extends ((...args: any) => any) ? E[K] : (payload: E[K]) => void };
1194
- type _ReservedProps = vue0.ReservedProps;
1194
+ type _ReservedProps = vue1.ReservedProps;
1195
1195
  interface ReservedProps extends _ReservedProps {}
1196
1196
  type NativeElements = { [K in keyof IntrinsicElementAttributes]: IntrinsicElementAttributes[K] & ReservedProps };
1197
1197
  interface BaseSyntheticEvent<E = object, C = unknown, T = unknown> {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vue-jsx-vapor/runtime",
3
3
  "type": "module",
4
- "version": "3.1.0",
4
+ "version": "3.1.1",
5
5
  "description": "Vue JSX Vapor Runtime",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/vuejs/vue-jsx-vapor#readme",