vue 3.3.3 → 3.3.5
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/compiler-sfc/index.browser.js +1 -0
- package/compiler-sfc/index.browser.mjs +1 -0
- package/compiler-sfc/index.d.mts +1 -0
- package/compiler-sfc/package.json +1 -2
- package/compiler-sfc/register-ts.js +1 -1
- package/dist/vue.cjs.js +1 -1
- package/dist/vue.cjs.prod.js +1 -1
- package/dist/vue.d.mts +11 -0
- package/dist/vue.esm-browser.js +490 -480
- package/dist/vue.esm-browser.prod.js +6 -1
- package/dist/vue.esm-bundler.js +5 -5
- package/dist/vue.global.js +490 -480
- package/dist/vue.global.prod.js +6 -1
- package/dist/vue.runtime.esm-browser.js +490 -475
- package/dist/vue.runtime.esm-browser.prod.js +6 -1
- package/dist/vue.runtime.esm-bundler.js +2 -2
- package/dist/vue.runtime.global.js +490 -475
- package/dist/vue.runtime.global.prod.js +6 -1
- package/jsx-runtime/index.d.ts +1 -6
- package/jsx.d.ts +1 -6
- package/package.json +37 -14
- package/server-renderer/index.d.mts +1 -0
- package/server-renderer/package.json +2 -3
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('@vue/compiler-sfc')
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@vue/compiler-sfc'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@vue/compiler-sfc'
|
package/dist/vue.cjs.js
CHANGED
|
@@ -71,5 +71,5 @@ runtimeDom.registerRuntimeCompiler(compileToFunction);
|
|
|
71
71
|
|
|
72
72
|
exports.compile = compileToFunction;
|
|
73
73
|
Object.keys(runtimeDom).forEach(function (k) {
|
|
74
|
-
if (k !== 'default' && !
|
|
74
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = runtimeDom[k];
|
|
75
75
|
});
|
package/dist/vue.cjs.prod.js
CHANGED
|
@@ -57,5 +57,5 @@ runtimeDom.registerRuntimeCompiler(compileToFunction);
|
|
|
57
57
|
|
|
58
58
|
exports.compile = compileToFunction;
|
|
59
59
|
Object.keys(runtimeDom).forEach(function (k) {
|
|
60
|
-
if (k !== 'default' && !
|
|
60
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = runtimeDom[k];
|
|
61
61
|
});
|
package/dist/vue.d.mts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { CompilerOptions } from '@vue/compiler-dom';
|
|
2
|
+
import { RenderFunction } from '@vue/runtime-dom';
|
|
3
|
+
export * from '@vue/runtime-dom';
|
|
4
|
+
|
|
5
|
+
export declare function compileToFunction(template: string | HTMLElement, options?: CompilerOptions): RenderFunction;
|
|
6
|
+
|
|
7
|
+
export { compileToFunction as compile };
|
|
8
|
+
// this is appended to the end of ../dist/vue.d.ts during build.
|
|
9
|
+
// imports the global JSX namespace registration for compat.
|
|
10
|
+
// TODO: remove in 3.4
|
|
11
|
+
import '../jsx'
|