vue 3.6.0-beta.8 → 3.6.0-rc.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.
package/dist/vue.cjs.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * vue v3.6.0-beta.8
2
+ * vue v3.6.0-rc.1
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -68,6 +68,7 @@ function compileToFunction(template, options) {
68
68
  (0, _vue_runtime_dom.registerRuntimeCompiler)(compileToFunction);
69
69
  //#endregion
70
70
  exports.compile = compileToFunction;
71
+ exports.defineVaporAsyncComponent = _vue_runtime_dom.defineAsyncComponent;
71
72
  Object.keys(_vue_runtime_dom).forEach(function(k) {
72
73
  if (k !== "default" && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
73
74
  enumerable: true,
@@ -1,5 +1,5 @@
1
1
  /**
2
- * vue v3.6.0-beta.8
2
+ * vue v3.6.0-rc.1
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -59,6 +59,7 @@ function compileToFunction(template, options) {
59
59
  (0, _vue_runtime_dom.registerRuntimeCompiler)(compileToFunction);
60
60
  //#endregion
61
61
  exports.compile = compileToFunction;
62
+ exports.defineVaporAsyncComponent = _vue_runtime_dom.defineAsyncComponent;
62
63
  Object.keys(_vue_runtime_dom).forEach(function(k) {
63
64
  if (k !== "default" && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
64
65
  enumerable: true,
package/dist/vue.d.mts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { CompilerOptions } from "@vue/compiler-dom";
2
- import { RenderFunction } from "@vue/runtime-dom";
2
+ import { RenderFunction, defineAsyncComponent as defineVaporAsyncComponent$1 } from "@vue/runtime-dom";
3
+ import { VaporSlot, defineVaporAsyncComponent, withAsyncContext } from "@vue/runtime-vapor";
3
4
  export * from "@vue/runtime-dom";
4
5
  export * from "@vue/runtime-vapor";
5
6
 
@@ -8,4 +9,4 @@ export * from "@vue/runtime-vapor";
8
9
  //#region temp/packages/vue/src/index.d.ts
9
10
  export declare function compileToFunction(template: string | HTMLElement, options?: CompilerOptions): RenderFunction;
10
11
  //#endregion
11
- export { compileToFunction as compile };
12
+ export { type VaporSlot, compileToFunction as compile, defineVaporAsyncComponent, withAsyncContext };
package/dist/vue.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { CompilerOptions } from "@vue/compiler-dom";
2
- import { RenderFunction } from "@vue/runtime-dom";
2
+ import { RenderFunction, defineAsyncComponent as defineVaporAsyncComponent$1 } from "@vue/runtime-dom";
3
+ import { VaporSlot, defineVaporAsyncComponent, withAsyncContext } from "@vue/runtime-vapor";
3
4
  export * from "@vue/runtime-dom";
4
5
  export * from "@vue/runtime-vapor";
5
6
 
@@ -8,4 +9,4 @@ export * from "@vue/runtime-vapor";
8
9
  //#region temp/packages/vue/src/index.d.ts
9
10
  export declare function compileToFunction(template: string | HTMLElement, options?: CompilerOptions): RenderFunction;
10
11
  //#endregion
11
- export { compileToFunction as compile };
12
+ export { type VaporSlot, compileToFunction as compile, defineVaporAsyncComponent, withAsyncContext };