@vizejs/native 0.347.7 → 0.351.0

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.
Files changed (2) hide show
  1. package/index.d.ts +4 -0
  2. package/package.json +9 -9
package/index.d.ts CHANGED
@@ -65,6 +65,7 @@ export interface BatchCompileOptionsNapi {
65
65
  ssr?: boolean;
66
66
  vapor?: boolean;
67
67
  customRenderer?: boolean;
68
+ customElements?: Array<string>;
68
69
  templateSyntax?: string;
69
70
  experimentalInTagComments?: boolean;
70
71
  experimentalPatternedTemplate?: boolean;
@@ -252,6 +253,8 @@ export interface CompilerOptions {
252
253
  isTs?: boolean;
253
254
  /** Whether the template targets a custom renderer instead of the DOM. */
254
255
  customRenderer?: boolean;
256
+ /** Tag patterns that compile as custom elements instead of Vue components. */
257
+ customElements?: Array<string>;
255
258
  /** Template syntax compatibility mode: "standard", "strict", or "quirks". */
256
259
  templateSyntax?: string;
257
260
  /** Enable experimental Vue in-tag comments (`// ...`) inside opening tags. */
@@ -924,6 +927,7 @@ export interface SfcCompileOptionsNapi {
924
927
  ssr?: boolean;
925
928
  vapor?: boolean;
926
929
  customRenderer?: boolean;
930
+ customElements?: Array<string>;
927
931
  templateSyntax?: string;
928
932
  experimentalInTagComments?: boolean;
929
933
  experimentalPatternedTemplate?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vizejs/native",
3
- "version": "0.347.7",
3
+ "version": "0.351.0",
4
4
  "description": "High-performance Vue.js compiler - Native bindings",
5
5
  "keywords": [
6
6
  "compiler",
@@ -35,14 +35,14 @@
35
35
  "@napi-rs/cli": "3.6.2"
36
36
  },
37
37
  "optionalDependencies": {
38
- "@vizejs/native-darwin-arm64": "0.347.7",
39
- "@vizejs/native-darwin-x64": "0.347.7",
40
- "@vizejs/native-linux-arm64-gnu": "0.347.7",
41
- "@vizejs/native-linux-arm64-musl": "0.347.7",
42
- "@vizejs/native-linux-x64-gnu": "0.347.7",
43
- "@vizejs/native-linux-x64-musl": "0.347.7",
44
- "@vizejs/native-win32-arm64-msvc": "0.347.7",
45
- "@vizejs/native-win32-x64-msvc": "0.347.7"
38
+ "@vizejs/native-darwin-arm64": "0.351.0",
39
+ "@vizejs/native-darwin-x64": "0.351.0",
40
+ "@vizejs/native-linux-arm64-gnu": "0.351.0",
41
+ "@vizejs/native-linux-arm64-musl": "0.351.0",
42
+ "@vizejs/native-linux-x64-gnu": "0.351.0",
43
+ "@vizejs/native-linux-x64-musl": "0.351.0",
44
+ "@vizejs/native-win32-arm64-msvc": "0.351.0",
45
+ "@vizejs/native-win32-x64-msvc": "0.351.0"
46
46
  },
47
47
  "napi": {
48
48
  "binaryName": "vize-vitrine",