slint-ui 1.8.0-nightly.2024091017 → 1.8.0-nightly.2024091119
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 +29 -2
- package/package.json +7 -7
package/Cargo.toml
CHANGED
|
@@ -40,10 +40,10 @@ accessibility = ["slint-interpreter/accessibility"]
|
|
|
40
40
|
[dependencies]
|
|
41
41
|
napi = { version = "2.14.0", default-features = false, features = ["napi8"] }
|
|
42
42
|
napi-derive = "2.14.0"
|
|
43
|
-
i-slint-compiler = { features = ["default"] , git = "https://github.com/slint-ui/slint", rev = "
|
|
44
|
-
i-slint-core = { features = ["default"] , git = "https://github.com/slint-ui/slint", rev = "
|
|
45
|
-
i-slint-backend-selector = { git = "https://github.com/slint-ui/slint", rev = "
|
|
46
|
-
slint-interpreter = { default-features = false , features = ["display-diagnostics", "internal", "compat-1-2"] , git = "https://github.com/slint-ui/slint", rev = "
|
|
43
|
+
i-slint-compiler = { features = ["default"] , git = "https://github.com/slint-ui/slint", rev = "4d43d02b0350dab6bd844538fda5e3e01e8c8aec", version = "=1.8.0", default-features = false }
|
|
44
|
+
i-slint-core = { features = ["default"] , git = "https://github.com/slint-ui/slint", rev = "4d43d02b0350dab6bd844538fda5e3e01e8c8aec", version = "=1.8.0", default-features = false }
|
|
45
|
+
i-slint-backend-selector = { git = "https://github.com/slint-ui/slint", rev = "4d43d02b0350dab6bd844538fda5e3e01e8c8aec", version = "=1.8.0", default-features = false }
|
|
46
|
+
slint-interpreter = { default-features = false , features = ["display-diagnostics", "internal", "compat-1-2"] , git = "https://github.com/slint-ui/slint", rev = "4d43d02b0350dab6bd844538fda5e3e01e8c8aec", version = "=1.8.0"}
|
|
47
47
|
spin_on = { version = "0.1" }
|
|
48
48
|
css-color-parser2 = { version = "1.0.1" }
|
|
49
49
|
itertools = { version = "0.13" }
|
package/biome.json
CHANGED
|
@@ -1,10 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
|
|
3
|
-
"extends": ["../../
|
|
3
|
+
"extends": ["../../biome.json"],
|
|
4
4
|
"formatter": {
|
|
5
5
|
"ignore": ["*/rust-module.d.ts"]
|
|
6
6
|
},
|
|
7
7
|
"linter": {
|
|
8
|
-
"ignore": ["rust-module.d.ts"]
|
|
8
|
+
"ignore": ["rust-module.d.ts"],
|
|
9
|
+
"rules": {
|
|
10
|
+
"complexity": {
|
|
11
|
+
"useArrowFunction": "off",
|
|
12
|
+
"noForEach": "off",
|
|
13
|
+
"noUselessConstructor": "off",
|
|
14
|
+
"noBannedTypes": "off"
|
|
15
|
+
},
|
|
16
|
+
"style": {
|
|
17
|
+
"noNonNullAssertion": "off",
|
|
18
|
+
"noUnusedTemplateLiteral": "off",
|
|
19
|
+
"useConst": "off",
|
|
20
|
+
"useTemplate": "off",
|
|
21
|
+
"noArguments": "off",
|
|
22
|
+
"noVar": "off",
|
|
23
|
+
"noInferrableTypes": "off",
|
|
24
|
+
"useImportType": "off",
|
|
25
|
+
"useNodejsImportProtocol": "off",
|
|
26
|
+
"noParameterAssign": "off"
|
|
27
|
+
},
|
|
28
|
+
"suspicious": {
|
|
29
|
+
"noExplicitAny": "off",
|
|
30
|
+
"noAssignInExpressions": "off",
|
|
31
|
+
"noImplicitAnyLet": "off",
|
|
32
|
+
"noDoubleEquals": "warn",
|
|
33
|
+
"noRedundantUseStrict": "off"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
9
36
|
}
|
|
10
37
|
}
|
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.2024091119",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"types": "index.d.ts",
|
|
6
6
|
"homepage": "https://github.com/slint-ui/slint",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"format": "biome format",
|
|
46
46
|
"format:fix": "biome format --write",
|
|
47
47
|
"lint": "biome lint",
|
|
48
|
-
"lint:fix": "biome
|
|
48
|
+
"lint:fix": "biome lint --fix",
|
|
49
49
|
"test": "ava"
|
|
50
50
|
},
|
|
51
51
|
"ava": {
|
|
@@ -65,10 +65,10 @@
|
|
|
65
65
|
"@napi-rs/cli": "^2.16.5"
|
|
66
66
|
},
|
|
67
67
|
"optionalDependencies": {
|
|
68
|
-
"@slint-ui/slint-ui-binary-linux-x64-gnu": "1.8.0-nightly.
|
|
69
|
-
"@slint-ui/slint-ui-binary-darwin-x64": "1.8.0-nightly.
|
|
70
|
-
"@slint-ui/slint-ui-binary-darwin-arm64": "1.8.0-nightly.
|
|
71
|
-
"@slint-ui/slint-ui-binary-win32-x64-msvc": "1.8.0-nightly.
|
|
72
|
-
"@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.2024091119",
|
|
69
|
+
"@slint-ui/slint-ui-binary-darwin-x64": "1.8.0-nightly.2024091119",
|
|
70
|
+
"@slint-ui/slint-ui-binary-darwin-arm64": "1.8.0-nightly.2024091119",
|
|
71
|
+
"@slint-ui/slint-ui-binary-win32-x64-msvc": "1.8.0-nightly.2024091119",
|
|
72
|
+
"@slint-ui/slint-ui-binary-win32-ia32-msvc": "1.8.0-nightly.2024091119"
|
|
73
73
|
}
|
|
74
74
|
}
|