vue 3.3.3 → 3.3.4

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.
@@ -0,0 +1 @@
1
+ export * from '@vue/compiler-sfc'
@@ -1,5 +1,4 @@
1
1
  {
2
2
  "main": "index.js",
3
- "module": "index.mjs",
4
- "types": "index.d.ts"
3
+ "module": "index.mjs"
5
4
  }
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'
@@ -9093,7 +9093,7 @@ function isMemoSame(cached, memo) {
9093
9093
  return true;
9094
9094
  }
9095
9095
 
9096
- const version = "3.3.3";
9096
+ const version = "3.3.4";
9097
9097
  const ssrUtils = null;
9098
9098
  const resolveFilter = null;
9099
9099
  const compatUtils = null;