@intlayer/core 8.4.0-canary.0 → 8.4.0
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.
|
@@ -24,7 +24,7 @@ type TranslationContent<Content = unknown, RecordContent extends StrictModeLocal
|
|
|
24
24
|
* - If a locale is missing, it will make each existing locale optional and raise an error if the locale is not found.
|
|
25
25
|
*/
|
|
26
26
|
declare const translation: <Content = unknown, ContentRecord extends StrictModeLocaleMap<Content> = StrictModeLocaleMap<Content>>(content: ContentRecord) => TypedNodeModel<NodeType.Translation, ContentRecord, {
|
|
27
|
-
nodeType: "translation"
|
|
27
|
+
nodeType: NodeType.Translation | "translation";
|
|
28
28
|
} & {
|
|
29
29
|
translation: ContentRecord;
|
|
30
30
|
}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intlayer/core",
|
|
3
|
-
"version": "8.4.0
|
|
3
|
+
"version": "8.4.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Includes core Intlayer functions like translation, dictionary, and utility functions shared across multiple packages.",
|
|
6
6
|
"keywords": [
|
|
@@ -168,11 +168,11 @@
|
|
|
168
168
|
"typecheck": "tsc --noEmit --project tsconfig.types.json"
|
|
169
169
|
},
|
|
170
170
|
"dependencies": {
|
|
171
|
-
"@intlayer/api": "8.4.0
|
|
172
|
-
"@intlayer/config": "8.4.0
|
|
173
|
-
"@intlayer/dictionaries-entry": "8.4.0
|
|
174
|
-
"@intlayer/types": "8.4.0
|
|
175
|
-
"@intlayer/unmerged-dictionaries-entry": "8.4.0
|
|
171
|
+
"@intlayer/api": "8.4.0",
|
|
172
|
+
"@intlayer/config": "8.4.0",
|
|
173
|
+
"@intlayer/dictionaries-entry": "8.4.0",
|
|
174
|
+
"@intlayer/types": "8.4.0",
|
|
175
|
+
"@intlayer/unmerged-dictionaries-entry": "8.4.0",
|
|
176
176
|
"defu": "6.1.4"
|
|
177
177
|
},
|
|
178
178
|
"devDependencies": {
|