slint-ui 1.8.0-nightly.2024090616 → 1.8.0-nightly.2024091017
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/Cargo.toml +4 -4
- package/biome.json +10 -0
- package/build-on-demand.mjs +10 -9
- package/index.d.ts +108 -108
- package/index.js +147 -126
- package/index.ts +399 -292
- package/package.json +12 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "slint-ui",
|
|
3
|
-
"version": "1.8.0-nightly.
|
|
3
|
+
"version": "1.8.0-nightly.2024091017",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"types": "index.d.ts",
|
|
6
6
|
"homepage": "https://github.com/slint-ui/slint",
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
],
|
|
21
21
|
"description": "Slint is a declarative GUI toolkit to build native user interfaces for desktop and embedded applications.",
|
|
22
22
|
"devDependencies": {
|
|
23
|
+
"@biomejs/biome": "1.8.3",
|
|
23
24
|
"@ava/typescript": "^4.1.0",
|
|
24
25
|
"@types/node": "^20.8.6",
|
|
25
26
|
"@types/node-fetch": "^2.6.7",
|
|
@@ -40,6 +41,11 @@
|
|
|
40
41
|
"build:testing": "napi build --platform --js rust-module.cjs --dts rust-module.d.ts -c binaries.json --features testing && npm run compile",
|
|
41
42
|
"install": "node build-on-demand.mjs",
|
|
42
43
|
"docs": "npm run build && typedoc --hideGenerator --treatWarningsAsErrors --readme cover.md index.ts",
|
|
44
|
+
"check": "biome check",
|
|
45
|
+
"format": "biome format",
|
|
46
|
+
"format:fix": "biome format --write",
|
|
47
|
+
"lint": "biome lint",
|
|
48
|
+
"lint:fix": "biome check --apply",
|
|
43
49
|
"test": "ava"
|
|
44
50
|
},
|
|
45
51
|
"ava": {
|
|
@@ -59,10 +65,10 @@
|
|
|
59
65
|
"@napi-rs/cli": "^2.16.5"
|
|
60
66
|
},
|
|
61
67
|
"optionalDependencies": {
|
|
62
|
-
"@slint-ui/slint-ui-binary-linux-x64-gnu": "1.8.0-nightly.
|
|
63
|
-
"@slint-ui/slint-ui-binary-darwin-x64": "1.8.0-nightly.
|
|
64
|
-
"@slint-ui/slint-ui-binary-darwin-arm64": "1.8.0-nightly.
|
|
65
|
-
"@slint-ui/slint-ui-binary-win32-x64-msvc": "1.8.0-nightly.
|
|
66
|
-
"@slint-ui/slint-ui-binary-win32-ia32-msvc": "1.8.0-nightly.
|
|
68
|
+
"@slint-ui/slint-ui-binary-linux-x64-gnu": "1.8.0-nightly.2024091017",
|
|
69
|
+
"@slint-ui/slint-ui-binary-darwin-x64": "1.8.0-nightly.2024091017",
|
|
70
|
+
"@slint-ui/slint-ui-binary-darwin-arm64": "1.8.0-nightly.2024091017",
|
|
71
|
+
"@slint-ui/slint-ui-binary-win32-x64-msvc": "1.8.0-nightly.2024091017",
|
|
72
|
+
"@slint-ui/slint-ui-binary-win32-ia32-msvc": "1.8.0-nightly.2024091017"
|
|
67
73
|
}
|
|
68
74
|
}
|