solid-intlayer 9.0.0-canary.12 → 9.0.0-canary.14
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.
|
@@ -3,7 +3,7 @@ import { StrictModeLocaleMap } from '@intlayer/types/module_augmentation';
|
|
|
3
3
|
* On the client side, hook to get the translation content based on the locale
|
|
4
4
|
*/
|
|
5
5
|
export declare const useContent: <Content>(languageContent: StrictModeLocaleMap<Content>) => {
|
|
6
|
-
locale: import('
|
|
6
|
+
locale: import('intlayer').Locale;
|
|
7
7
|
content: Content;
|
|
8
8
|
t: <Content_1 = string>(languageContent: StrictModeLocaleMap<Content_1>) => Content_1;
|
|
9
9
|
};
|
|
@@ -2,13 +2,13 @@ import { LocalesValues } from '@intlayer/types/module_augmentation';
|
|
|
2
2
|
/**
|
|
3
3
|
* Get the locale cookie
|
|
4
4
|
*/
|
|
5
|
-
export declare const localeInStorage: import('
|
|
5
|
+
export declare const localeInStorage: import('intlayer').Locale | undefined;
|
|
6
6
|
/**
|
|
7
7
|
* @deprecated Use localeInStorage instead
|
|
8
8
|
*
|
|
9
9
|
* Get the locale cookie
|
|
10
10
|
*/
|
|
11
|
-
export declare const localeCookie: import('
|
|
11
|
+
export declare const localeCookie: import('intlayer').Locale | undefined;
|
|
12
12
|
/**
|
|
13
13
|
* Set the locale cookie
|
|
14
14
|
*/
|
|
@@ -23,7 +23,7 @@ export declare const setLocaleCookie: (locale: LocalesValues, isCookieEnabled?:
|
|
|
23
23
|
* Hook that provides the locale storage and a function to set it
|
|
24
24
|
*/
|
|
25
25
|
export declare const useLocaleStorage: (isCookieEnabled?: boolean) => import('solid-js').Accessor<{
|
|
26
|
-
getLocale: () => import('
|
|
26
|
+
getLocale: () => import('intlayer').Locale;
|
|
27
27
|
setLocale: (locale: LocalesValues) => void;
|
|
28
28
|
}>;
|
|
29
29
|
/**
|
|
@@ -34,6 +34,6 @@ export declare const useLocaleStorage: (isCookieEnabled?: boolean) => import('so
|
|
|
34
34
|
* Hook that provides the locale cookie and a function to set it
|
|
35
35
|
*/
|
|
36
36
|
export declare const useLocaleCookie: (isCookieEnabled?: boolean) => import('solid-js').Accessor<{
|
|
37
|
-
getLocale: () => import('
|
|
37
|
+
getLocale: () => import('intlayer').Locale;
|
|
38
38
|
setLocale: (locale: LocalesValues) => void;
|
|
39
39
|
}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "solid-intlayer",
|
|
3
|
-
"version": "9.0.0-canary.
|
|
3
|
+
"version": "9.0.0-canary.14",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Easily internationalize i18n your Solid applications with type-safe multilingual content management.",
|
|
6
6
|
"keywords": [
|
|
@@ -113,11 +113,11 @@
|
|
|
113
113
|
"typecheck": "tsc --noEmit --project tsconfig.types.json"
|
|
114
114
|
},
|
|
115
115
|
"dependencies": {
|
|
116
|
-
"@intlayer/api": "9.0.0-canary.
|
|
117
|
-
"@intlayer/config": "9.0.0-canary.
|
|
118
|
-
"@intlayer/core": "9.0.0-canary.
|
|
119
|
-
"@intlayer/editor": "9.0.0-canary.
|
|
120
|
-
"@intlayer/types": "9.0.0-canary.
|
|
116
|
+
"@intlayer/api": "9.0.0-canary.14",
|
|
117
|
+
"@intlayer/config": "9.0.0-canary.14",
|
|
118
|
+
"@intlayer/core": "9.0.0-canary.14",
|
|
119
|
+
"@intlayer/editor": "9.0.0-canary.14",
|
|
120
|
+
"@intlayer/types": "9.0.0-canary.14"
|
|
121
121
|
},
|
|
122
122
|
"devDependencies": {
|
|
123
123
|
"@solidjs/testing-library": "0.8.10",
|
|
@@ -131,8 +131,8 @@
|
|
|
131
131
|
"rimraf": "6.1.3",
|
|
132
132
|
"tsdown": "0.21.10",
|
|
133
133
|
"typescript": "6.0.3",
|
|
134
|
-
"vite": "8.1.
|
|
135
|
-
"vite-plugin-dts": "5.0.
|
|
134
|
+
"vite": "8.1.3",
|
|
135
|
+
"vite-plugin-dts": "5.0.3",
|
|
136
136
|
"vite-plugin-solid": "2.11.12",
|
|
137
137
|
"vitest": "4.1.9"
|
|
138
138
|
},
|