@vizejs/native 0.390.0 → 0.404.8

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 +38 -0
  2. package/package.json +9 -9
package/index.d.ts CHANGED
@@ -826,6 +826,44 @@ export interface PatinaLintOptionsNapi {
826
826
  typeAware?: boolean;
827
827
  /** Path to the Corsa executable used by type-aware lint rules */
828
828
  corsaPath?: string;
829
+ /** Casing for `vue/component-name-in-template-casing`: "PascalCase" or "kebab-case" */
830
+ componentNameInTemplateCasing?: string;
831
+ /** Casing for `script/custom-event-name-casing`: "camelCase" or "kebab-case" */
832
+ customEventNameCasing?: string;
833
+ /** Options for `vue/no-mutating-props` */
834
+ noMutatingProps?: NoMutatingPropsOptionsNapi;
835
+ /** Options for `vue/sfc-element-order` */
836
+ sfcElementOrder?: SfcElementOrderOptionsNapi;
837
+ /** Options for `vue/html-self-closing` */
838
+ htmlSelfClosing?: HtmlSelfClosingOptionsNapi;
839
+ /** Style for `vue/v-on-event-hyphenation`: "always" or "never" */
840
+ vOnEventHyphenation?: string;
841
+ /** Style for `vue/attribute-hyphenation`: "always" or "never" */
842
+ attributeHyphenation?: string;
843
+ }
844
+
845
+ /** No-mutating-props options for NAPI */
846
+ export interface NoMutatingPropsOptionsNapi {
847
+ shallowOnly?: boolean;
848
+ }
849
+
850
+ /** SFC element order options for NAPI */
851
+ export interface SfcElementOrderOptionsNapi {
852
+ order?: Array<string | Array<string>>;
853
+ }
854
+
855
+ /** HTML self-closing options for NAPI */
856
+ export interface HtmlSelfClosingOptionsNapi {
857
+ html?: HtmlSelfClosingHtmlOptionsNapi;
858
+ svg?: string;
859
+ math?: string;
860
+ }
861
+
862
+ /** HTML-family self-closing options for NAPI */
863
+ export interface HtmlSelfClosingHtmlOptionsNapi {
864
+ void?: string;
865
+ normal?: string;
866
+ component?: string;
829
867
  }
830
868
 
831
869
  export declare function printCssAst(
package/package.json CHANGED
@@ -41,14 +41,14 @@
41
41
  ]
42
42
  },
43
43
  "optionalDependencies": {
44
- "@vizejs/native-darwin-arm64": "0.390.0",
45
- "@vizejs/native-darwin-x64": "0.390.0",
46
- "@vizejs/native-linux-arm64-gnu": "0.390.0",
47
- "@vizejs/native-linux-arm64-musl": "0.390.0",
48
- "@vizejs/native-linux-x64-gnu": "0.390.0",
49
- "@vizejs/native-linux-x64-musl": "0.390.0",
50
- "@vizejs/native-win32-arm64-msvc": "0.390.0",
51
- "@vizejs/native-win32-x64-msvc": "0.390.0"
44
+ "@vizejs/native-darwin-arm64": "0.404.8",
45
+ "@vizejs/native-darwin-x64": "0.404.8",
46
+ "@vizejs/native-linux-arm64-gnu": "0.404.8",
47
+ "@vizejs/native-linux-arm64-musl": "0.404.8",
48
+ "@vizejs/native-linux-x64-gnu": "0.404.8",
49
+ "@vizejs/native-linux-x64-musl": "0.404.8",
50
+ "@vizejs/native-win32-arm64-msvc": "0.404.8",
51
+ "@vizejs/native-win32-x64-msvc": "0.404.8"
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.390.0",
62
+ "version": "0.404.8",
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",