@trackunit/iris-app-runtime-core 1.17.26-alpha-27ad777c16e.0 → 1.17.28
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/index.cjs.js +4 -0
- package/index.esm.js +4 -0
- package/package.json +2 -2
package/index.cjs.js
CHANGED
|
@@ -225,6 +225,10 @@ const CurrentUserPreferenceRuntime = {
|
|
|
225
225
|
const api = await getHostConnector();
|
|
226
226
|
return api.getCurrentUserSystemOfMeasurement();
|
|
227
227
|
},
|
|
228
|
+
getCurrentUserTimeFormat: async () => {
|
|
229
|
+
const api = await getHostConnector();
|
|
230
|
+
return api.getCurrentUserTimeFormat();
|
|
231
|
+
},
|
|
228
232
|
};
|
|
229
233
|
|
|
230
234
|
const CurrentUserRuntime = {
|
package/index.esm.js
CHANGED
|
@@ -223,6 +223,10 @@ const CurrentUserPreferenceRuntime = {
|
|
|
223
223
|
const api = await getHostConnector();
|
|
224
224
|
return api.getCurrentUserSystemOfMeasurement();
|
|
225
225
|
},
|
|
226
|
+
getCurrentUserTimeFormat: async () => {
|
|
227
|
+
const api = await getHostConnector();
|
|
228
|
+
return api.getCurrentUserTimeFormat();
|
|
229
|
+
},
|
|
226
230
|
};
|
|
227
231
|
|
|
228
232
|
const CurrentUserRuntime = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app-runtime-core",
|
|
3
|
-
"version": "1.17.
|
|
3
|
+
"version": "1.17.28",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"penpal": "^7.0.6",
|
|
11
|
-
"@trackunit/iris-app-runtime-core-api": "1.16.
|
|
11
|
+
"@trackunit/iris-app-runtime-core-api": "1.16.28"
|
|
12
12
|
},
|
|
13
13
|
"module": "./index.esm.js",
|
|
14
14
|
"main": "./index.cjs.js",
|