solid-intlayer 9.0.0-canary.7 → 9.0.0-canary.9
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/dist/types/client/useContent.d.ts +1 -1
- package/dist/types/client/useDictionary.d.ts +1 -1
- package/dist/types/client/useDictionaryDynamic.d.ts +1 -1
- package/dist/types/client/useIntlayer.d.ts +0 -1
- package/dist/types/client/useLocaleStorage.d.ts +4 -4
- package/dist/types/getDictionary.d.ts +1 -1
- package/dist/types/getIntlayer.d.ts +1 -1
- package/dist/types/server/useDictionary.d.ts +1 -1
- package/package.json +6 -6
|
@@ -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('intlayer').Locale;
|
|
6
|
+
locale: import('@intlayer/types').Locale;
|
|
7
7
|
content: Content;
|
|
8
8
|
t: <Content_1 = string>(languageContent: StrictModeLocaleMap<Content_1>) => Content_1;
|
|
9
9
|
};
|
|
@@ -6,7 +6,7 @@ import { DeepTransformContent } from '../plugins';
|
|
|
6
6
|
* dictionary group) and returns its reactive content.
|
|
7
7
|
*
|
|
8
8
|
* The second argument is either a locale or a selector object
|
|
9
|
-
* (`{ item }`, `{ variant }`,
|
|
9
|
+
* (`{ item }`, `{ variant }`, optionally with `locale`).
|
|
10
10
|
*
|
|
11
11
|
* If the locale is not provided (directly or through the selector), it will
|
|
12
12
|
* use the locale from the client context.
|
|
@@ -7,7 +7,7 @@ import { DeepTransformContent } from '../plugins';
|
|
|
7
7
|
* reactive content.
|
|
8
8
|
*
|
|
9
9
|
* The dictionary entry is either a plain dynamic loader map
|
|
10
|
-
* (`locale → loader`) or a qualified one (collection / variant
|
|
10
|
+
* (`locale → loader`) or a qualified one (collection / variant,
|
|
11
11
|
* possibly combined). For a qualified map, only the chunk(s) the selector
|
|
12
12
|
* targets are loaded; the resolution mirrors static mode.
|
|
13
13
|
*
|
|
@@ -6,7 +6,6 @@ import { DeepTransformContent } from '../plugins';
|
|
|
6
6
|
* The second argument is either a locale or a selector object:
|
|
7
7
|
* - `{ item: 2 }` — collection item (omit `item` to get every item as array)
|
|
8
8
|
* - `{ variant: 'black-friday' }` — named variant (omit for the `default` one)
|
|
9
|
-
* - `{ id: 'prod_abc', ...metaFields }` — meta record
|
|
10
9
|
* - `locale` composes with any selector and overrides the context locale
|
|
11
10
|
*
|
|
12
11
|
* Supports both direct property access and the accessor call form:
|
|
@@ -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('intlayer').Locale | undefined;
|
|
5
|
+
export declare const localeInStorage: import('@intlayer/types').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('intlayer').Locale | undefined;
|
|
11
|
+
export declare const localeCookie: import('@intlayer/types').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('intlayer').Locale;
|
|
26
|
+
getLocale: () => import('@intlayer/types').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('intlayer').Locale;
|
|
37
|
+
getLocale: () => import('@intlayer/types').Locale;
|
|
38
38
|
setLocale: (locale: LocalesValues) => void;
|
|
39
39
|
}>;
|
|
@@ -4,6 +4,6 @@ import { DeepTransformContent } from './plugins';
|
|
|
4
4
|
/**
|
|
5
5
|
* Transforms a dictionary (or qualified dictionary group) and returns its
|
|
6
6
|
* content for the given locale or selector (`{ item }`, `{ variant }`,
|
|
7
|
-
*
|
|
7
|
+
* optionally combined with `locale`).
|
|
8
8
|
*/
|
|
9
9
|
export declare const getDictionary: <const T extends Dictionary | QualifiedDictionaryGroup, const A extends LocalesValues | DictionarySelectorForGroup<T> = DeclaredLocales>(dictionary: T, localeOrSelector?: A) => DeepTransformContent<ResolveQualifiedDictionaryContent<T, A>, ExtractSelectorLocale<A>>;
|
|
@@ -2,7 +2,7 @@ import { DeclaredLocales, DictionaryKeys, DictionaryRegistryResult, DictionarySe
|
|
|
2
2
|
import { DeepTransformContent } from './plugins';
|
|
3
3
|
/**
|
|
4
4
|
* Picks one dictionary by its key and returns its content for the given
|
|
5
|
-
* locale or selector (`{ item }`, `{ variant }`,
|
|
5
|
+
* locale or selector (`{ item }`, `{ variant }`,
|
|
6
6
|
* optionally combined with `locale`).
|
|
7
7
|
*/
|
|
8
8
|
export declare const getIntlayer: <const T extends DictionaryKeys, const A extends LocalesValues | DictionarySelectorForKey<T> = DeclaredLocales>(key: T, localeOrSelector?: A) => DeepTransformContent<DictionaryRegistryResult<T, A>, ExtractSelectorLocale<A>>;
|
|
@@ -6,7 +6,7 @@ import { DeclaredLocales, LocalesValues } from '@intlayer/types/module_augmentat
|
|
|
6
6
|
* synchronously from static JSON.
|
|
7
7
|
*
|
|
8
8
|
* The second argument is either a locale or a selector object
|
|
9
|
-
* (`{ item }`, `{ variant }`,
|
|
9
|
+
* (`{ item }`, `{ variant }`, optionally with `locale`),
|
|
10
10
|
* forwarded to the client `useDictionary`.
|
|
11
11
|
*
|
|
12
12
|
* The discarded `createResource` is load-bearing: Solid assigns hydration
|
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.9",
|
|
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.9",
|
|
117
|
+
"@intlayer/config": "9.0.0-canary.9",
|
|
118
|
+
"@intlayer/core": "9.0.0-canary.9",
|
|
119
|
+
"@intlayer/editor": "9.0.0-canary.9",
|
|
120
|
+
"@intlayer/types": "9.0.0-canary.9"
|
|
121
121
|
},
|
|
122
122
|
"devDependencies": {
|
|
123
123
|
"@solidjs/testing-library": "0.8.10",
|