@vue-jsx-vapor/runtime 3.1.21 → 3.1.23
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/vapor.d.cts +2 -6
- package/dist/vapor.d.ts +2 -6
- package/package.json +2 -2
package/dist/vapor.d.cts
CHANGED
|
@@ -4,12 +4,8 @@ import { Block, Fragment, VaporComponent } from "vue";
|
|
|
4
4
|
//#region src/vapor.d.ts
|
|
5
5
|
declare function defineVaporSSRComponent(comp: VaporComponent, extraOptions: VaporComponent): VaporComponent;
|
|
6
6
|
type Tail<T extends any[]> = T extends [any, ...infer R] ? R : never;
|
|
7
|
-
declare const createComponent: (type: VaporComponent | typeof Fragment, ...args: Tail<Parameters<typeof Vue.createComponent>>) => Vue.VaporComponentInstance<{}, {},
|
|
8
|
-
|
|
9
|
-
}, Record<string, any>, Block, Record<string, any>> | HTMLElement;
|
|
10
|
-
declare const createComponentWithFallback: (type: VaporComponent | typeof Fragment, ...args: Tail<Parameters<typeof Vue.createComponentWithFallback>>) => Vue.VaporComponentInstance<{}, {}, {
|
|
11
|
-
[x: string]: (...args: any[]) => Block;
|
|
12
|
-
}, Record<string, any>, Block, Record<string, any>> | HTMLElement;
|
|
7
|
+
declare const createComponent: (type: VaporComponent | typeof Fragment, ...args: Tail<Parameters<typeof Vue.createComponent>>) => Vue.VaporComponentInstance<{}, {}, Vue.StaticSlots, Record<string, any>, Block, Record<string, any>> | HTMLElement;
|
|
8
|
+
declare const createComponentWithFallback: (type: VaporComponent | typeof Fragment, ...args: Tail<Parameters<typeof Vue.createComponentWithFallback>>) => Vue.VaporComponentInstance<{}, {}, Vue.StaticSlots, Record<string, any>, Block, Record<string, any>> | HTMLElement;
|
|
13
9
|
type NodeChildAtom = Block | string | number | boolean | null | undefined | void;
|
|
14
10
|
type NodeArrayChildren = Array<NodeArrayChildren | NodeChildAtom>;
|
|
15
11
|
type NodeChild = NodeChildAtom | NodeArrayChildren;
|
package/dist/vapor.d.ts
CHANGED
|
@@ -4,12 +4,8 @@ import { Block, Fragment, VaporComponent } from "vue";
|
|
|
4
4
|
//#region src/vapor.d.ts
|
|
5
5
|
declare function defineVaporSSRComponent(comp: VaporComponent, extraOptions: VaporComponent): VaporComponent;
|
|
6
6
|
type Tail<T extends any[]> = T extends [any, ...infer R] ? R : never;
|
|
7
|
-
declare const createComponent: (type: VaporComponent | typeof Fragment, ...args: Tail<Parameters<typeof Vue.createComponent>>) => Vue.VaporComponentInstance<{}, {},
|
|
8
|
-
|
|
9
|
-
}, Record<string, any>, Block, Record<string, any>> | HTMLElement;
|
|
10
|
-
declare const createComponentWithFallback: (type: VaporComponent | typeof Fragment, ...args: Tail<Parameters<typeof Vue.createComponentWithFallback>>) => Vue.VaporComponentInstance<{}, {}, {
|
|
11
|
-
[x: string]: (...args: any[]) => Block;
|
|
12
|
-
}, Record<string, any>, Block, Record<string, any>> | HTMLElement;
|
|
7
|
+
declare const createComponent: (type: VaporComponent | typeof Fragment, ...args: Tail<Parameters<typeof Vue.createComponent>>) => Vue.VaporComponentInstance<{}, {}, Vue.StaticSlots, Record<string, any>, Block, Record<string, any>> | HTMLElement;
|
|
8
|
+
declare const createComponentWithFallback: (type: VaporComponent | typeof Fragment, ...args: Tail<Parameters<typeof Vue.createComponentWithFallback>>) => Vue.VaporComponentInstance<{}, {}, Vue.StaticSlots, Record<string, any>, Block, Record<string, any>> | HTMLElement;
|
|
13
9
|
type NodeChildAtom = Block | string | number | boolean | null | undefined | void;
|
|
14
10
|
type NodeArrayChildren = Array<NodeArrayChildren | NodeChildAtom>;
|
|
15
11
|
type NodeChild = NodeChildAtom | NodeArrayChildren;
|
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.
|
|
4
|
+
"version": "3.1.23",
|
|
5
5
|
"description": "Vue JSX Vapor Runtime",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"homepage": "https://github.com/vuejs/vue-jsx-vapor#readme",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
],
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"csstype": "^3.2.3",
|
|
44
|
-
"vue": "3.6.0-beta.
|
|
44
|
+
"vue": "3.6.0-beta.6"
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|
|
47
47
|
"build": "tsdown",
|