tabris 3.11.0-dev.20250915 → 3.11.0-dev.20250917

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/boot.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Tabris.js 3.11.0-dev.20250915+0312
2
+ * Tabris.js 3.11.0-dev.20250917+0314
3
3
  *
4
4
  * Copyright (c) 2014, 2020 EclipseSource Inc.
5
5
  * All rights reserved.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tabris",
3
- "version": "3.11.0-dev.20250915+0312",
3
+ "version": "3.11.0-dev.20250917+0314",
4
4
  "description": "Mobile apps with native UIs in JavaScript",
5
5
  "keywords": [
6
6
  "native",
package/tabris.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // Type definitions for Tabris.js 3.11.0-dev.20250915+0312
1
+ // Type definitions for Tabris.js 3.11.0-dev.20250917+0314
2
2
  /// <reference path="globals.d.ts" />
3
3
 
4
4
  // General helper types
@@ -7984,6 +7984,12 @@ export interface AppBackNavigationEvent<Target = App>
7984
7984
  readonly preventDefault: () => void;
7985
7985
  }
7986
7986
 
7987
+ export interface AppContinueWebActivityEvent<Target = App>
7988
+ extends EventObject<Target>
7989
+ {
7990
+ readonly webpageURL: string;
7991
+ }
7992
+
7987
7993
  export interface AppKeyPressEvent<Target = App>
7988
7994
  extends EventObject<Target>
7989
7995
  {
@@ -8140,6 +8146,12 @@ export class App extends NativeObject {
8140
8146
  */
8141
8147
  onBackground: Listeners<EventObject<this>>;
8142
8148
 
8149
+ /**
8150
+ * Fired when the app is launched via a universal link (iOS) or app link (Android). This event allows
8151
+ * the app to handle universal/app links opened in another app.
8152
+ */
8153
+ onContinueWebActivity: Listeners<AppContinueWebActivityEvent<this>>;
8154
+
8143
8155
  /**
8144
8156
  * The event is fired when the app starts or when it returns from the background.
8145
8157
  */
package/tabris.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Tabris.js 3.11.0-dev.20250915+0312
2
+ * Tabris.js 3.11.0-dev.20250917+0314
3
3
  *
4
4
  * Copyright (c) 2014, 2020 EclipseSource Inc.
5
5
  * All rights reserved.
@@ -5034,7 +5034,7 @@ class Tabris extends NativeObject {
5034
5034
  this.$publishProxies();
5035
5035
  }
5036
5036
  get version() {
5037
- return '3.11.0-dev.20250915+0312';
5037
+ return '3.11.0-dev.20250917+0314';
5038
5038
  }
5039
5039
  get started() {
5040
5040
  return !!this._started;
@@ -8033,7 +8033,8 @@ NativeObject.defineEvents(App.prototype, {
8033
8033
  terminate: { native: true },
8034
8034
  keyPress: { native: true },
8035
8035
  backNavigation: { native: true },
8036
- certificatesReceived: { native: true }
8036
+ certificatesReceived: { native: true },
8037
+ continueWebActivity: { native: true }
8037
8038
  });
8038
8039
  function create$4() {
8039
8040
  return new App(true);