@vizejs/native 0.423.2 → 0.424.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.
- package/index.d.ts +11 -1
- package/package.json +9 -9
package/index.d.ts
CHANGED
|
@@ -69,6 +69,8 @@ export interface BatchCompileOptionsNapi {
|
|
|
69
69
|
templateSyntax?: string;
|
|
70
70
|
experimentalInTagComments?: boolean;
|
|
71
71
|
experimentalPatternedTemplate?: boolean;
|
|
72
|
+
experimentalSelfComponent?: boolean;
|
|
73
|
+
experimentalStrictSlotChildren?: boolean;
|
|
72
74
|
experimentalServerScript?: boolean;
|
|
73
75
|
runtimeModuleName?: string;
|
|
74
76
|
runtimeGlobalName?: string;
|
|
@@ -247,6 +249,8 @@ export interface CompilerOptions {
|
|
|
247
249
|
sourceMap?: boolean;
|
|
248
250
|
/** Filename for source map */
|
|
249
251
|
filename?: string;
|
|
252
|
+
/** Current component name for direct template compilation. */
|
|
253
|
+
componentName?: string;
|
|
250
254
|
/** Output mode: "vdom" or "vapor" */
|
|
251
255
|
outputMode?: string;
|
|
252
256
|
/** Whether the template contains TypeScript */
|
|
@@ -259,8 +263,12 @@ export interface CompilerOptions {
|
|
|
259
263
|
templateSyntax?: string;
|
|
260
264
|
/** Enable experimental Vue in-tag comments (`// ...`) inside opening tags. */
|
|
261
265
|
experimentalInTagComments?: boolean;
|
|
262
|
-
/** Enable experimental `v-match` / `v-
|
|
266
|
+
/** Enable experimental `v-match` / `v-when` patterned template desugaring. */
|
|
263
267
|
experimentalPatternedTemplate?: boolean;
|
|
268
|
+
/** Enable experimental reserved `<Self>` component references. */
|
|
269
|
+
experimentalSelfComponent?: boolean;
|
|
270
|
+
/** Accepted for option-shape parity; strict slot checks run through SFC/check surfaces. */
|
|
271
|
+
experimentalStrictSlotChildren?: boolean;
|
|
264
272
|
/** Enable experimental server-script related RFC surface. */
|
|
265
273
|
experimentalServerScript?: boolean;
|
|
266
274
|
/** Module name for runtime imports. */
|
|
@@ -975,6 +983,8 @@ export interface SfcCompileOptionsNapi {
|
|
|
975
983
|
templateSyntax?: string;
|
|
976
984
|
experimentalInTagComments?: boolean;
|
|
977
985
|
experimentalPatternedTemplate?: boolean;
|
|
986
|
+
experimentalSelfComponent?: boolean;
|
|
987
|
+
experimentalStrictSlotChildren?: boolean;
|
|
978
988
|
experimentalServerScript?: boolean;
|
|
979
989
|
runtimeModuleName?: string;
|
|
980
990
|
runtimeGlobalName?: string;
|
package/package.json
CHANGED
|
@@ -41,14 +41,14 @@
|
|
|
41
41
|
]
|
|
42
42
|
},
|
|
43
43
|
"optionalDependencies": {
|
|
44
|
-
"@vizejs/native-darwin-arm64": "0.
|
|
45
|
-
"@vizejs/native-darwin-x64": "0.
|
|
46
|
-
"@vizejs/native-linux-arm64-gnu": "0.
|
|
47
|
-
"@vizejs/native-linux-arm64-musl": "0.
|
|
48
|
-
"@vizejs/native-linux-x64-gnu": "0.
|
|
49
|
-
"@vizejs/native-linux-x64-musl": "0.
|
|
50
|
-
"@vizejs/native-win32-arm64-msvc": "0.
|
|
51
|
-
"@vizejs/native-win32-x64-msvc": "0.
|
|
44
|
+
"@vizejs/native-darwin-arm64": "0.424.0",
|
|
45
|
+
"@vizejs/native-darwin-x64": "0.424.0",
|
|
46
|
+
"@vizejs/native-linux-arm64-gnu": "0.424.0",
|
|
47
|
+
"@vizejs/native-linux-arm64-musl": "0.424.0",
|
|
48
|
+
"@vizejs/native-linux-x64-gnu": "0.424.0",
|
|
49
|
+
"@vizejs/native-linux-x64-musl": "0.424.0",
|
|
50
|
+
"@vizejs/native-win32-arm64-msvc": "0.424.0",
|
|
51
|
+
"@vizejs/native-win32-x64-msvc": "0.424.0"
|
|
52
52
|
},
|
|
53
53
|
"publishConfig": {
|
|
54
54
|
"access": "public"
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"url": "https://github.com/ubugeeei-prod/vize"
|
|
60
60
|
},
|
|
61
61
|
"types": "index.d.ts",
|
|
62
|
-
"version": "0.
|
|
62
|
+
"version": "0.424.0",
|
|
63
63
|
"scripts": {
|
|
64
64
|
"build": "node ./scripts/build-local.mjs --release",
|
|
65
65
|
"build:ci": "napi build --platform --profile ci --manifest-path ../../crates/vize_vitrine/Cargo.toml -p vize_vitrine --features napi,legacy --output-dir . && node ./scripts/sync-entrypoint.mjs",
|