slint-ui 1.10.0-nightly.2025020414 → 1.10.0-nightly.2025020514

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 CHANGED
@@ -41,10 +41,10 @@ accessibility = ["slint-interpreter/accessibility"]
41
41
  [dependencies]
42
42
  napi = { version = "2.14.0", default-features = false, features = ["napi8"] }
43
43
  napi-derive = "2.14.0"
44
- i-slint-compiler = { features = ["default"] , git = "https://github.com/slint-ui/slint", rev = "9961a6f44defa8d509a405f35590c37a37dbbcfc", version = "=1.10.0", default-features = false }
45
- i-slint-core = { features = ["default", "gettext-rs"] , git = "https://github.com/slint-ui/slint", rev = "9961a6f44defa8d509a405f35590c37a37dbbcfc", version = "=1.10.0", default-features = false }
46
- i-slint-backend-selector = { git = "https://github.com/slint-ui/slint", rev = "9961a6f44defa8d509a405f35590c37a37dbbcfc", version = "=1.10.0", default-features = false }
47
- slint-interpreter = { default-features = false , features = ["display-diagnostics", "internal", "compat-1-2"] , git = "https://github.com/slint-ui/slint", rev = "9961a6f44defa8d509a405f35590c37a37dbbcfc", version = "=1.10.0"}
44
+ i-slint-compiler = { features = ["default"] , git = "https://github.com/slint-ui/slint", rev = "b040e9450aa2c5664045756f66d893d4d7f0cac8", version = "=1.10.0", default-features = false }
45
+ i-slint-core = { features = ["default", "gettext-rs"] , git = "https://github.com/slint-ui/slint", rev = "b040e9450aa2c5664045756f66d893d4d7f0cac8", version = "=1.10.0", default-features = false }
46
+ i-slint-backend-selector = { git = "https://github.com/slint-ui/slint", rev = "b040e9450aa2c5664045756f66d893d4d7f0cac8", version = "=1.10.0", default-features = false }
47
+ slint-interpreter = { default-features = false , features = ["display-diagnostics", "internal", "compat-1-2"] , git = "https://github.com/slint-ui/slint", rev = "b040e9450aa2c5664045756f66d893d4d7f0cac8", version = "=1.10.0"}
48
48
  spin_on = { version = "0.1" }
49
49
  css-color-parser2 = { version = "1.0.1" }
50
50
  itertools = { version = "0.14" }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slint-ui",
3
- "version": "1.10.0-nightly.2025020414",
3
+ "version": "1.10.0-nightly.2025020514",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "homepage": "https://github.com/slint-ui/slint",
@@ -66,11 +66,11 @@
66
66
  "@napi-rs/cli": "2.18.4"
67
67
  },
68
68
  "optionalDependencies": {
69
- "@slint-ui/slint-ui-binary-linux-x64-gnu": "1.10.0-nightly.2025020414",
70
- "@slint-ui/slint-ui-binary-linux-arm64-gnu": "1.10.0-nightly.2025020414",
71
- "@slint-ui/slint-ui-binary-darwin-x64": "1.10.0-nightly.2025020414",
72
- "@slint-ui/slint-ui-binary-darwin-arm64": "1.10.0-nightly.2025020414",
73
- "@slint-ui/slint-ui-binary-win32-x64-msvc": "1.10.0-nightly.2025020414",
74
- "@slint-ui/slint-ui-binary-win32-ia32-msvc": "1.10.0-nightly.2025020414"
69
+ "@slint-ui/slint-ui-binary-linux-x64-gnu": "1.10.0-nightly.2025020514",
70
+ "@slint-ui/slint-ui-binary-linux-arm64-gnu": "1.10.0-nightly.2025020514",
71
+ "@slint-ui/slint-ui-binary-darwin-x64": "1.10.0-nightly.2025020514",
72
+ "@slint-ui/slint-ui-binary-darwin-arm64": "1.10.0-nightly.2025020514",
73
+ "@slint-ui/slint-ui-binary-win32-x64-msvc": "1.10.0-nightly.2025020514",
74
+ "@slint-ui/slint-ui-binary-win32-ia32-msvc": "1.10.0-nightly.2025020514"
75
75
  }
76
76
  }
@@ -46,7 +46,7 @@ impl JsComponentInstance {
46
46
 
47
47
  #[napi]
48
48
  pub fn set_property(&self, env: Env, prop_name: String, js_value: JsUnknown) -> Result<()> {
49
- let ty = self
49
+ let (ty, _) = self
50
50
  .inner
51
51
  .definition()
52
52
  .properties_and_callbacks()
@@ -88,7 +88,7 @@ impl JsComponentInstance {
88
88
  prop_name: String,
89
89
  js_value: JsUnknown,
90
90
  ) -> Result<()> {
91
- let ty = self
91
+ let (ty, _) = self
92
92
  .inner
93
93
  .definition()
94
94
  .global_properties_and_callbacks(global_name.as_str())
@@ -121,7 +121,7 @@ impl JsComponentInstance {
121
121
  ) -> Result<()> {
122
122
  let function_ref = RefCountedReference::new(&env, callback)?;
123
123
 
124
- let ty = self
124
+ let (ty, _) = self
125
125
  .inner
126
126
  .definition()
127
127
  .properties_and_callbacks()
@@ -188,7 +188,7 @@ impl JsComponentInstance {
188
188
  ) -> Result<()> {
189
189
  let function_ref = RefCountedReference::new(&env, callback)?;
190
190
 
191
- let ty = self
191
+ let (ty, _) = self
192
192
  .inner
193
193
  .definition()
194
194
  .global_properties_and_callbacks(global_name.as_str())
@@ -283,7 +283,7 @@ impl JsComponentInstance {
283
283
  callback_name: String,
284
284
  callback_arguments: Vec<JsUnknown>,
285
285
  ) -> Result<JsUnknown> {
286
- let ty = self
286
+ let (ty, _) = self
287
287
  .inner
288
288
  .definition()
289
289
  .properties_and_callbacks()
@@ -321,7 +321,7 @@ impl JsComponentInstance {
321
321
  callback_name: String,
322
322
  callback_arguments: Vec<JsUnknown>,
323
323
  ) -> Result<JsUnknown> {
324
- let ty = self
324
+ let (ty, _) = self
325
325
  .inner
326
326
  .definition()
327
327
  .global_properties_and_callbacks(global_name.as_str())