akanjs 2.3.6-rc.0 → 2.3.6-rc.2
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "akanjs",
|
|
3
|
-
"version": "2.3.6-rc.
|
|
3
|
+
"version": "2.3.6-rc.2",
|
|
4
4
|
"sourceType": "module",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -197,7 +197,7 @@
|
|
|
197
197
|
"chance": "^1.1.13",
|
|
198
198
|
"cordova-plugin-purchase": "^13.16.0",
|
|
199
199
|
"croner": "^10.0.1",
|
|
200
|
-
"daisyui": "
|
|
200
|
+
"daisyui": "5.5.23",
|
|
201
201
|
"ioredis": "^5.10.1",
|
|
202
202
|
"mermaid": "^11.15.0",
|
|
203
203
|
"postgres": "^3.4.9",
|
|
@@ -28,7 +28,7 @@ export interface CssPayload {
|
|
|
28
28
|
changedFiles?: string[];
|
|
29
29
|
}
|
|
30
30
|
export type DevChangeRole = "server" | "client" | "shared" | "barrel" | "config" | "css";
|
|
31
|
-
export type DevChangeAction = "restart-backend" | "rebuild-client" | "rebuild-css" | "sync-generated" | "restart-dev-host" | "report-error";
|
|
31
|
+
export type DevChangeAction = "restart-backend" | "restart-builder" | "rebuild-client" | "rebuild-css" | "sync-generated" | "restart-dev-host" | "report-error";
|
|
32
32
|
export interface DevChangePlan {
|
|
33
33
|
generation: number;
|
|
34
34
|
files: string[];
|
package/ui/System/Client.tsx
CHANGED
package/ui/System/SSR.tsx
CHANGED
|
@@ -39,7 +39,7 @@ const SSRProvider = ({
|
|
|
39
39
|
|
|
40
40
|
const { lang: activeLocale, path: activePath } = usePage();
|
|
41
41
|
|
|
42
|
-
if (allDictionary) for (const [lng, dict] of Object.entries(allDictionary)) Translator.
|
|
42
|
+
if (allDictionary) for (const [lng, dict] of Object.entries(allDictionary)) Translator.replace(lng, dict);
|
|
43
43
|
|
|
44
44
|
const activeDictionary = allDictionary?.[activeLocale] ?? dictionary;
|
|
45
45
|
|