@dative-gpi/foundation-shared-services 0.0.47 → 0.0.49
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/composables/useShared.ts +1 -11
- package/package.json +3 -4
package/composables/useShared.ts
CHANGED
|
@@ -24,21 +24,11 @@ export async function useShared() {
|
|
|
24
24
|
const { getMany, entities } = useTranslations();
|
|
25
25
|
const { set } = useTranslationsProvider();
|
|
26
26
|
|
|
27
|
-
console.log("useShared called");
|
|
28
|
-
|
|
29
27
|
await languageCodeReady;
|
|
30
28
|
await timeZoneReady;
|
|
31
29
|
|
|
32
|
-
console.log("languageCodeReady and timeZoneReady");
|
|
33
|
-
|
|
34
30
|
if (languageCode.value) {
|
|
35
|
-
|
|
36
|
-
console.log("languageCode.value", languageCode.value);
|
|
37
|
-
|
|
38
|
-
await getMany(languageCode.value);
|
|
39
|
-
|
|
40
|
-
console.log("entities.value", entities.value);
|
|
41
|
-
|
|
31
|
+
await getMany(languageCode.value);
|
|
42
32
|
set(entities.value.map(t => ({ code: t.code, value: t.value })));
|
|
43
33
|
}
|
|
44
34
|
ready.value = true;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dative-gpi/foundation-shared-services",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.49",
|
|
5
5
|
"description": "",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -11,11 +11,10 @@
|
|
|
11
11
|
"license": "ISC",
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@dative-gpi/bones-ui": "^0.0.61",
|
|
14
|
-
"@dative-gpi/foundation-shared-domain": "0.0.
|
|
14
|
+
"@dative-gpi/foundation-shared-domain": "0.0.49",
|
|
15
15
|
"@microsoft/signalr": "^8.0.0",
|
|
16
|
-
"date-fns": "^3.2.0",
|
|
17
16
|
"vue": "^3.2.0",
|
|
18
17
|
"vue-router": "^4.2.5"
|
|
19
18
|
},
|
|
20
|
-
"gitHead": "
|
|
19
|
+
"gitHead": "cf285c38be7fcc0f02f813f2cb3693867d277003"
|
|
21
20
|
}
|