@vizejs/native 0.372.0 → 0.374.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 (3) hide show
  1. package/index.d.ts +6 -0
  2. package/index.js +1 -0
  3. package/package.json +9 -9
package/index.d.ts CHANGED
@@ -784,6 +784,12 @@ export declare function parseArt(
784
784
  options?: ArtParseOptionsNapi | undefined | null,
785
785
  ): ArtDescriptorNapi;
786
786
 
787
+ /** Return unknown-status warnings for an Art file (`*.art.vue`). */
788
+ export declare function parseArtStatusWarnings(
789
+ source: string,
790
+ options?: ArtParseOptionsNapi | undefined | null,
791
+ ): Array<string>;
792
+
787
793
  export declare function parseCssAst(
788
794
  source: string,
789
795
  options?: CssCompileOptionsNapi | undefined | null,
package/index.js CHANGED
@@ -61,6 +61,7 @@ module.exports.normalizeViteResolvedVuePath = nativeBinding.normalizeViteResolve
61
61
  module.exports.normalizeViteVirtualVueModuleId = nativeBinding.normalizeViteVirtualVueModuleId;
62
62
  module.exports.normalizeVizeConfig = nativeBinding.normalizeVizeConfig;
63
63
  module.exports.parseArt = nativeBinding.parseArt;
64
+ module.exports.parseArtStatusWarnings = nativeBinding.parseArtStatusWarnings;
64
65
  module.exports.parseCssAst = nativeBinding.parseCssAst;
65
66
  module.exports.parseDesignTokensFromJson = nativeBinding.parseDesignTokensFromJson;
66
67
  module.exports.parseDesignTokensFromPath = nativeBinding.parseDesignTokensFromPath;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vizejs/native",
3
- "version": "0.372.0",
3
+ "version": "0.374.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.372.0",
39
- "@vizejs/native-darwin-x64": "0.372.0",
40
- "@vizejs/native-linux-arm64-gnu": "0.372.0",
41
- "@vizejs/native-linux-arm64-musl": "0.372.0",
42
- "@vizejs/native-linux-x64-gnu": "0.372.0",
43
- "@vizejs/native-linux-x64-musl": "0.372.0",
44
- "@vizejs/native-win32-arm64-msvc": "0.372.0",
45
- "@vizejs/native-win32-x64-msvc": "0.372.0"
38
+ "@vizejs/native-darwin-arm64": "0.374.0",
39
+ "@vizejs/native-darwin-x64": "0.374.0",
40
+ "@vizejs/native-linux-arm64-gnu": "0.374.0",
41
+ "@vizejs/native-linux-arm64-musl": "0.374.0",
42
+ "@vizejs/native-linux-x64-gnu": "0.374.0",
43
+ "@vizejs/native-linux-x64-musl": "0.374.0",
44
+ "@vizejs/native-win32-arm64-msvc": "0.374.0",
45
+ "@vizejs/native-win32-x64-msvc": "0.374.0"
46
46
  },
47
47
  "napi": {
48
48
  "binaryName": "vize-vitrine",