tabris 3.9.0-dev.20231219 → 3.9.0-dev.20231220
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 +1 -1
- package/package.json +1 -1
- package/tabris.d.ts +1 -1
- package/tabris.js +4 -4
- package/tabris.min.js +1 -1
package/boot.js
CHANGED
package/package.json
CHANGED
package/tabris.d.ts
CHANGED
package/tabris.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Tabris.js 3.9.0-dev.
|
|
2
|
+
* Tabris.js 3.9.0-dev.20231220+0311
|
|
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.9.0-dev.
|
|
5037
|
+
return '3.9.0-dev.20231220+0311';
|
|
5038
5038
|
}
|
|
5039
5039
|
get started() {
|
|
5040
5040
|
return !!this._started;
|
|
@@ -10674,8 +10674,8 @@ class SubtleCrypto {
|
|
|
10674
10674
|
if ('usageRequiresAuth' in options) {
|
|
10675
10675
|
checkType(options.usageRequiresAuth, Boolean, { name: 'options.usageRequiresAuth' });
|
|
10676
10676
|
}
|
|
10677
|
-
if (options.usageRequiresAuth && !options.inTee) {
|
|
10678
|
-
throw new TypeError('options.usageRequiresAuth is only supported for keys in TEE');
|
|
10677
|
+
if (options.usageRequiresAuth && !options.inTee && tabris.device.platform !== 'Android') {
|
|
10678
|
+
throw new TypeError('options.usageRequiresAuth is only supported for keys not in TEE on Android');
|
|
10679
10679
|
}
|
|
10680
10680
|
}
|
|
10681
10681
|
const inTee = options === null || options === void 0 ? void 0 : options.inTee;
|