vue-jsx-vapor 3.1.2 → 3.1.3

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/astro.cjs CHANGED
@@ -1,7 +1,7 @@
1
1
  Object.defineProperty(exports, '__esModule', { value: true });
2
2
  require('./core-BeIGPz2Y.cjs');
3
- require('./raw-CzYfWnnD.cjs');
4
- const require_unplugin = require('./unplugin-CrWWgg9F.cjs');
3
+ require('./raw-Ddi3PCT7.cjs');
4
+ const require_unplugin = require('./unplugin-LiOqPloJ.cjs');
5
5
 
6
6
  //#region src/astro.ts
7
7
  var astro_default = (options) => ({
package/dist/astro.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import "./core-CgC9S6Q0.js";
2
- import "./raw-rSj_OSHs.js";
3
- import { r as unplugin_default } from "./unplugin-Cphty0W0.js";
2
+ import "./raw-rRX80mFY.js";
3
+ import { r as unplugin_default } from "./unplugin-CrKIgL9I.js";
4
4
 
5
5
  //#region src/astro.ts
6
6
  var astro_default = (options) => ({
package/dist/esbuild.cjs CHANGED
@@ -1,7 +1,7 @@
1
1
  Object.defineProperty(exports, '__esModule', { value: true });
2
2
  require('./core-BeIGPz2Y.cjs');
3
- require('./raw-CzYfWnnD.cjs');
4
- const require_unplugin = require('./unplugin-CrWWgg9F.cjs');
3
+ require('./raw-Ddi3PCT7.cjs');
4
+ const require_unplugin = require('./unplugin-LiOqPloJ.cjs');
5
5
 
6
6
  //#region src/esbuild.ts
7
7
  var esbuild_default = require_unplugin.unplugin_default.esbuild;
package/dist/esbuild.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import "./core-CgC9S6Q0.js";
2
- import "./raw-rSj_OSHs.js";
3
- import { r as unplugin_default } from "./unplugin-Cphty0W0.js";
2
+ import "./raw-rRX80mFY.js";
3
+ import { r as unplugin_default } from "./unplugin-CrKIgL9I.js";
4
4
 
5
5
  //#region src/esbuild.ts
6
6
  var esbuild_default = unplugin_default.esbuild;
package/dist/nuxt.cjs CHANGED
@@ -1,8 +1,8 @@
1
1
  Object.defineProperty(exports, '__esModule', { value: true });
2
2
  const require_chunk = require('./chunk-CbDLau6x.cjs');
3
3
  require('./core-BeIGPz2Y.cjs');
4
- require('./raw-CzYfWnnD.cjs');
5
- require('./unplugin-CrWWgg9F.cjs');
4
+ require('./raw-Ddi3PCT7.cjs');
5
+ require('./unplugin-LiOqPloJ.cjs');
6
6
  const require_vite = require('./vite.cjs');
7
7
  const require_webpack = require('./webpack.cjs');
8
8
  let _nuxt_kit = require("@nuxt/kit");
package/dist/nuxt.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import "./core-CgC9S6Q0.js";
2
- import "./raw-rSj_OSHs.js";
3
- import "./unplugin-Cphty0W0.js";
2
+ import "./raw-rRX80mFY.js";
3
+ import "./unplugin-CrKIgL9I.js";
4
4
  import vite_default from "./vite.js";
5
5
  import webpack_default from "./webpack.js";
6
6
  import { addVitePlugin, addWebpackPlugin, defineNuxtModule } from "@nuxt/kit";
@@ -33,7 +33,7 @@ var props_default = "import { proxyRefs, toRefs, useAttrs } from \"vue\";\nimpor
33
33
 
34
34
  //#endregion
35
35
  //#region src/runtime/vnode.ts?raw
36
- var vnode_default = "import {\n cloneVNode,\n Comment,\n createBlock,\n createVNode,\n Fragment,\n getCurrentInstance,\n isVNode,\n openBlock,\n Text\n} from \"vue\";\nconst cacheMap = /* @__PURE__ */ new WeakMap();\nexport function createVNodeCache() {\n const i = getCurrentInstance();\n if (i) {\n !cacheMap.has(i) && cacheMap.set(i, []);\n const caches = cacheMap.get(i);\n return caches[caches.length] = [];\n } else {\n return [];\n }\n}\nexport function normalizeVNode(child = \" \", flag = 0) {\n if (child == null || typeof child === \"boolean\") {\n return createVNode(Comment);\n } else if (Array.isArray(child)) {\n return openBlock(), createBlock(createVNode(Fragment, null, child.slice()));\n } else if (isVNode(child)) {\n return openBlock(), createBlock(cloneIfMounted(child));\n } else {\n return createVNode(Text, null, String(child), flag);\n }\n}\nfunction cloneIfMounted(child) {\n return child.el === null && child.patchFlag !== -1 || // @ts-ignore\n child.memo ? child : cloneVNode(child);\n}\n";
36
+ var vnode_default = "import {\n cloneVNode,\n Comment,\n createBlock,\n createVNode,\n Fragment,\n getCurrentInstance,\n isVNode,\n openBlock,\n Text\n} from \"vue\";\nconst cacheMap = /* @__PURE__ */ new WeakMap();\nexport function createVNodeCache(index) {\n const i = getCurrentInstance();\n if (i) {\n !cacheMap.has(i) && cacheMap.set(i, []);\n const caches = cacheMap.get(i);\n return caches[index] || (caches[index] = []);\n } else {\n return [];\n }\n}\nexport function normalizeVNode(value = \" \", flag = 0) {\n if (value == null || typeof value === \"boolean\") {\n return createVNode(Comment);\n } else if (typeof value !== \"function\") {\n return createVNode(Text, null, String(value), flag);\n }\n openBlock();\n const child = value();\n if (value == null || typeof value === \"boolean\") {\n return createBlock(Comment);\n } else if (Array.isArray(child)) {\n return createBlock(Fragment, null, child.slice());\n } else if (isVNode(child)) {\n return createBlock(cloneIfMounted(child));\n } else {\n return createBlock(Text, null, String(child), flag);\n }\n}\nfunction cloneIfMounted(child) {\n return child.el === null && child.patchFlag !== -1 || // @ts-ignore\n child.memo ? child : cloneVNode(child);\n}\n";
37
37
 
38
38
  //#endregion
39
39
  //#region src/runtime/raw.ts
@@ -31,7 +31,7 @@ var props_default = "import { proxyRefs, toRefs, useAttrs } from \"vue\";\nimpor
31
31
 
32
32
  //#endregion
33
33
  //#region src/runtime/vnode.ts?raw
34
- var vnode_default = "import {\n cloneVNode,\n Comment,\n createBlock,\n createVNode,\n Fragment,\n getCurrentInstance,\n isVNode,\n openBlock,\n Text\n} from \"vue\";\nconst cacheMap = /* @__PURE__ */ new WeakMap();\nexport function createVNodeCache() {\n const i = getCurrentInstance();\n if (i) {\n !cacheMap.has(i) && cacheMap.set(i, []);\n const caches = cacheMap.get(i);\n return caches[caches.length] = [];\n } else {\n return [];\n }\n}\nexport function normalizeVNode(child = \" \", flag = 0) {\n if (child == null || typeof child === \"boolean\") {\n return createVNode(Comment);\n } else if (Array.isArray(child)) {\n return openBlock(), createBlock(createVNode(Fragment, null, child.slice()));\n } else if (isVNode(child)) {\n return openBlock(), createBlock(cloneIfMounted(child));\n } else {\n return createVNode(Text, null, String(child), flag);\n }\n}\nfunction cloneIfMounted(child) {\n return child.el === null && child.patchFlag !== -1 || // @ts-ignore\n child.memo ? child : cloneVNode(child);\n}\n";
34
+ var vnode_default = "import {\n cloneVNode,\n Comment,\n createBlock,\n createVNode,\n Fragment,\n getCurrentInstance,\n isVNode,\n openBlock,\n Text\n} from \"vue\";\nconst cacheMap = /* @__PURE__ */ new WeakMap();\nexport function createVNodeCache(index) {\n const i = getCurrentInstance();\n if (i) {\n !cacheMap.has(i) && cacheMap.set(i, []);\n const caches = cacheMap.get(i);\n return caches[index] || (caches[index] = []);\n } else {\n return [];\n }\n}\nexport function normalizeVNode(value = \" \", flag = 0) {\n if (value == null || typeof value === \"boolean\") {\n return createVNode(Comment);\n } else if (typeof value !== \"function\") {\n return createVNode(Text, null, String(value), flag);\n }\n openBlock();\n const child = value();\n if (value == null || typeof value === \"boolean\") {\n return createBlock(Comment);\n } else if (Array.isArray(child)) {\n return createBlock(Fragment, null, child.slice());\n } else if (isVNode(child)) {\n return createBlock(cloneIfMounted(child));\n } else {\n return createBlock(Text, null, String(child), flag);\n }\n}\nfunction cloneIfMounted(child) {\n return child.el === null && child.patchFlag !== -1 || // @ts-ignore\n child.memo ? child : cloneVNode(child);\n}\n";
35
35
 
36
36
  //#endregion
37
37
  //#region src/runtime/raw.ts
package/dist/raw.cjs CHANGED
@@ -1,5 +1,5 @@
1
1
  Object.defineProperty(exports, '__esModule', { value: true });
2
2
  require('./core-BeIGPz2Y.cjs');
3
- const require_raw = require('./raw-CzYfWnnD.cjs');
3
+ const require_raw = require('./raw-Ddi3PCT7.cjs');
4
4
 
5
5
  exports.default = require_raw.raw_default;
package/dist/raw.js CHANGED
@@ -1,4 +1,4 @@
1
1
  import "./core-CgC9S6Q0.js";
2
- import { t as raw_default } from "./raw-rSj_OSHs.js";
2
+ import { t as raw_default } from "./raw-rRX80mFY.js";
3
3
 
4
4
  export { raw_default as default };
package/dist/rolldown.cjs CHANGED
@@ -1,8 +1,8 @@
1
1
  Object.defineProperty(exports, '__esModule', { value: true });
2
2
  const require_chunk = require('./chunk-CbDLau6x.cjs');
3
3
  require('./core-BeIGPz2Y.cjs');
4
- require('./raw-CzYfWnnD.cjs');
5
- const require_unplugin = require('./unplugin-CrWWgg9F.cjs');
4
+ require('./raw-Ddi3PCT7.cjs');
5
+ const require_unplugin = require('./unplugin-LiOqPloJ.cjs');
6
6
  let unplugin = require("unplugin");
7
7
 
8
8
  //#region src/rolldown.ts
@@ -1,6 +1,6 @@
1
1
  import { t as Options } from "./options-V1045xYK.cjs";
2
- import * as unplugin1 from "unplugin";
2
+ import * as unplugin0 from "unplugin";
3
3
 
4
4
  //#region src/rolldown.d.ts
5
- declare const _default: (options?: Options | undefined) => unplugin1.RollupPlugin<any> | unplugin1.RollupPlugin<any>[];
5
+ declare const _default: (options?: Options | undefined) => unplugin0.RollupPlugin<any> | unplugin0.RollupPlugin<any>[];
6
6
  export = _default;
package/dist/rolldown.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import "./core-CgC9S6Q0.js";
2
- import "./raw-rSj_OSHs.js";
3
- import { n as unpluginFactory } from "./unplugin-Cphty0W0.js";
2
+ import "./raw-rRX80mFY.js";
3
+ import { n as unpluginFactory } from "./unplugin-CrKIgL9I.js";
4
4
  import { createRollupPlugin } from "unplugin";
5
5
 
6
6
  //#region src/rolldown.ts
package/dist/rollup.cjs CHANGED
@@ -1,7 +1,7 @@
1
1
  Object.defineProperty(exports, '__esModule', { value: true });
2
2
  require('./core-BeIGPz2Y.cjs');
3
- require('./raw-CzYfWnnD.cjs');
4
- const require_unplugin = require('./unplugin-CrWWgg9F.cjs');
3
+ require('./raw-Ddi3PCT7.cjs');
4
+ const require_unplugin = require('./unplugin-LiOqPloJ.cjs');
5
5
 
6
6
  //#region src/rollup.ts
7
7
  var rollup_default = require_unplugin.unplugin_default.rollup;
package/dist/rollup.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import "./core-CgC9S6Q0.js";
2
- import "./raw-rSj_OSHs.js";
3
- import { r as unplugin_default } from "./unplugin-Cphty0W0.js";
2
+ import "./raw-rRX80mFY.js";
3
+ import { r as unplugin_default } from "./unplugin-CrKIgL9I.js";
4
4
 
5
5
  //#region src/rollup.ts
6
6
  var rollup_default = unplugin_default.rollup;
package/dist/rspack.cjs CHANGED
@@ -1,7 +1,7 @@
1
1
  Object.defineProperty(exports, '__esModule', { value: true });
2
2
  require('./core-BeIGPz2Y.cjs');
3
- require('./raw-CzYfWnnD.cjs');
4
- const require_unplugin = require('./unplugin-CrWWgg9F.cjs');
3
+ require('./raw-Ddi3PCT7.cjs');
4
+ const require_unplugin = require('./unplugin-LiOqPloJ.cjs');
5
5
 
6
6
  //#region src/rspack.ts
7
7
  var rspack_default = require_unplugin.unplugin_default.rspack;
package/dist/rspack.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import "./core-CgC9S6Q0.js";
2
- import "./raw-rSj_OSHs.js";
3
- import { r as unplugin_default } from "./unplugin-Cphty0W0.js";
2
+ import "./raw-rRX80mFY.js";
3
+ import { r as unplugin_default } from "./unplugin-CrKIgL9I.js";
4
4
 
5
5
  //#region src/rspack.ts
6
6
  var rspack_default = unplugin_default.rspack;
@@ -1,4 +1,4 @@
1
- import { t as raw_default } from "./raw-rSj_OSHs.js";
1
+ import { t as raw_default } from "./raw-rRX80mFY.js";
2
2
  import { createUnplugin } from "unplugin";
3
3
 
4
4
  //#region src/unplugin.ts
@@ -1,5 +1,5 @@
1
1
  const require_chunk = require('./chunk-CbDLau6x.cjs');
2
- const require_raw = require('./raw-CzYfWnnD.cjs');
2
+ const require_raw = require('./raw-Ddi3PCT7.cjs');
3
3
  let unplugin = require("unplugin");
4
4
 
5
5
  //#region src/unplugin.ts
package/dist/unplugin.cjs CHANGED
@@ -1,7 +1,7 @@
1
1
  Object.defineProperty(exports, '__esModule', { value: true });
2
2
  require('./core-BeIGPz2Y.cjs');
3
- require('./raw-CzYfWnnD.cjs');
4
- const require_unplugin = require('./unplugin-CrWWgg9F.cjs');
3
+ require('./raw-Ddi3PCT7.cjs');
4
+ const require_unplugin = require('./unplugin-LiOqPloJ.cjs');
5
5
 
6
6
  exports.default = require_unplugin.unplugin_default;
7
7
  exports.unplugin = require_unplugin.unplugin;
@@ -1,9 +1,9 @@
1
1
  import { t as Options } from "./options-V1045xYK.cjs";
2
- import * as unplugin0 from "unplugin";
2
+ import * as unplugin2 from "unplugin";
3
3
  import { UnpluginFactory } from "unplugin";
4
4
 
5
5
  //#region src/unplugin.d.ts
6
6
  declare const unpluginFactory: UnpluginFactory<Options | undefined, true>;
7
- declare const unplugin: unplugin0.UnpluginInstance<Options | undefined, true>;
7
+ declare const unplugin: unplugin2.UnpluginInstance<Options | undefined, true>;
8
8
  //#endregion
9
9
  export { type Options, unplugin as default, unplugin, unpluginFactory };
package/dist/unplugin.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import "./core-CgC9S6Q0.js";
2
- import "./raw-rSj_OSHs.js";
3
- import { n as unpluginFactory, r as unplugin_default, t as unplugin } from "./unplugin-Cphty0W0.js";
2
+ import "./raw-rRX80mFY.js";
3
+ import { n as unpluginFactory, r as unplugin_default, t as unplugin } from "./unplugin-CrKIgL9I.js";
4
4
 
5
5
  export { unplugin_default as default, unplugin, unpluginFactory };
package/dist/vite.cjs CHANGED
@@ -1,7 +1,7 @@
1
1
  Object.defineProperty(exports, '__esModule', { value: true });
2
2
  require('./core-BeIGPz2Y.cjs');
3
- require('./raw-CzYfWnnD.cjs');
4
- const require_unplugin = require('./unplugin-CrWWgg9F.cjs');
3
+ require('./raw-Ddi3PCT7.cjs');
4
+ const require_unplugin = require('./unplugin-LiOqPloJ.cjs');
5
5
 
6
6
  //#region src/vite.ts
7
7
  var vite_default = require_unplugin.unplugin_default.vite;
package/dist/vite.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import "./core-CgC9S6Q0.js";
2
- import "./raw-rSj_OSHs.js";
3
- import { r as unplugin_default } from "./unplugin-Cphty0W0.js";
2
+ import "./raw-rRX80mFY.js";
3
+ import { r as unplugin_default } from "./unplugin-CrKIgL9I.js";
4
4
 
5
5
  //#region src/vite.ts
6
6
  var vite_default = unplugin_default.vite;
package/dist/webpack.cjs CHANGED
@@ -1,7 +1,7 @@
1
1
  Object.defineProperty(exports, '__esModule', { value: true });
2
2
  require('./core-BeIGPz2Y.cjs');
3
- require('./raw-CzYfWnnD.cjs');
4
- const require_unplugin = require('./unplugin-CrWWgg9F.cjs');
3
+ require('./raw-Ddi3PCT7.cjs');
4
+ const require_unplugin = require('./unplugin-LiOqPloJ.cjs');
5
5
 
6
6
  //#region src/webpack.ts
7
7
  var webpack_default = require_unplugin.unplugin_default.webpack;
package/dist/webpack.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import "./core-CgC9S6Q0.js";
2
- import "./raw-rSj_OSHs.js";
3
- import { r as unplugin_default } from "./unplugin-Cphty0W0.js";
2
+ import "./raw-rRX80mFY.js";
3
+ import { r as unplugin_default } from "./unplugin-CrKIgL9I.js";
4
4
 
5
5
  //#region src/webpack.ts
6
6
  var webpack_default = unplugin_default.webpack;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vue-jsx-vapor",
3
3
  "type": "module",
4
- "version": "3.1.2",
4
+ "version": "3.1.3",
5
5
  "description": "Vapor Mode of Vue JSX",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/vuejs/vue-jsx-vapor#readme",
@@ -167,9 +167,9 @@
167
167
  "ts-macro": "^0.3.6",
168
168
  "unplugin": "^2.3.11",
169
169
  "unplugin-utils": "^0.2.5",
170
- "@vue-jsx-vapor/compiler-rs": "3.1.2",
171
- "@vue-jsx-vapor/runtime": "3.1.2",
172
- "@vue-jsx-vapor/macros": "3.1.2"
170
+ "@vue-jsx-vapor/runtime": "3.1.3",
171
+ "@vue-jsx-vapor/compiler-rs": "3.1.3",
172
+ "@vue-jsx-vapor/macros": "3.1.3"
173
173
  },
174
174
  "devDependencies": {
175
175
  "@nuxt/kit": "^3.20.2",