@intlayer/types 9.0.0-canary.10 → 9.0.0-canary.12
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.
|
@@ -87,6 +87,17 @@ type DictionaryKey = string;
|
|
|
87
87
|
*/
|
|
88
88
|
type DictionaryQualifierType = "variant" | "item";
|
|
89
89
|
/**
|
|
90
|
+
* A single variant value declared on a dictionary:
|
|
91
|
+
*
|
|
92
|
+
* - a **string** — a named alternative (`'black-friday'`)
|
|
93
|
+
* - an **object** — a structured discriminator whose canonical serialization
|
|
94
|
+
* (sorted `key=value` pairs joined by `&`) is the variant identity
|
|
95
|
+
*
|
|
96
|
+
* The `variant` field of a dictionary accepts one value or an **array** of
|
|
97
|
+
* values — an array registers the same content under every listed variant id.
|
|
98
|
+
*/
|
|
99
|
+
type DictionaryVariantValue = string | Record<string, string | number>;
|
|
100
|
+
/**
|
|
90
101
|
* Output of the merge step for a key whose dictionaries declare one or more
|
|
91
102
|
* qualifier dimensions (`variant`, `item`).
|
|
92
103
|
*
|
|
@@ -139,7 +150,7 @@ type QualifiedDictionaryGroup = {
|
|
|
139
150
|
type DictionarySelector = {
|
|
140
151
|
locale?: LocalesValues;
|
|
141
152
|
item?: number;
|
|
142
|
-
variant?:
|
|
153
|
+
variant?: DictionaryVariantValue;
|
|
143
154
|
};
|
|
144
155
|
type QualifiedEntryContent<Entry> = Entry extends {
|
|
145
156
|
content: infer Content;
|
|
@@ -441,11 +452,22 @@ type DictionaryBase = {
|
|
|
441
452
|
* const product = useIntlayer('product', { variant: { id: 'abc', userId: '123' } });
|
|
442
453
|
* ```
|
|
443
454
|
*
|
|
455
|
+
* - **An array** of the above — registers the same content under every
|
|
456
|
+
* listed variant id (the declaration fans out into one entry per id).
|
|
457
|
+
* Selecting any of the ids resolves this content:
|
|
458
|
+
*
|
|
459
|
+
* ```ts
|
|
460
|
+
* // hero.sales.content.ts → { key: 'hero-banner', variant: ['black-friday', 'cyber-monday'], content: { ... } }
|
|
461
|
+
*
|
|
462
|
+
* const heroBf = useIntlayer('hero-banner', { variant: 'black-friday' }); // → this content
|
|
463
|
+
* const heroCm = useIntlayer('hero-banner', { variant: 'cyber-monday' }); // → same content
|
|
464
|
+
* ```
|
|
465
|
+
*
|
|
444
466
|
* Sibling dictionaries sharing the same key but different `variant` values
|
|
445
467
|
* form the variant set. A sibling without any qualifier acts as shared base
|
|
446
468
|
* content merged into every variant as fallback.
|
|
447
469
|
*/
|
|
448
|
-
variant?:
|
|
470
|
+
variant?: DictionaryVariantValue | DictionaryVariantValue[];
|
|
449
471
|
/**
|
|
450
472
|
* Transform the dictionary in a per-locale dictionary.
|
|
451
473
|
* Each field declared in a per-locale dictionary will be transformed in a translation node.
|
|
@@ -591,5 +613,5 @@ type DictionaryWithoutSchema<ContentType, FetchableNode> = {
|
|
|
591
613
|
type Dictionary<ContentType = undefined, SchemaKey extends SchemaKeys | undefined = undefined, FetchableNode = false> = DictionaryBase & (SchemaKey extends SchemaKeys ? DictionaryWithSchema<ContentType, FetchableNode, SchemaKey> : undefined extends SchemaKey ? DictionaryWithoutSchema<ContentType, FetchableNode> | DictionaryWithSchema<ContentType, FetchableNode> : never);
|
|
592
614
|
type GetSubPath<T, P> = P extends `${infer K}.${infer Rest}` ? K extends keyof T ? GetSubPath<T[K], Rest> : never : P extends keyof T ? T[P] : T;
|
|
593
615
|
//#endregion
|
|
594
|
-
export { ContentAutoTransformation, ContentNode, Dictionary, DictionaryFormat, DictionaryId, DictionaryKey, DictionaryLocation, DictionaryQualifierType, DictionarySelector, DictionarySelectorForGroup, Fill, GetSubPath, ImportMode, LocalDictionaryId, QualifiedDictionaryGroup, ResolveQualifiedDictionaryContent, TypedNode };
|
|
616
|
+
export { ContentAutoTransformation, ContentNode, Dictionary, DictionaryFormat, DictionaryId, DictionaryKey, DictionaryLocation, DictionaryQualifierType, DictionarySelector, DictionarySelectorForGroup, DictionaryVariantValue, Fill, GetSubPath, ImportMode, LocalDictionaryId, QualifiedDictionaryGroup, ResolveQualifiedDictionaryContent, TypedNode };
|
|
595
617
|
//# sourceMappingURL=dictionary.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dictionary.d.ts","names":[],"sources":["../../src/dictionary.ts"],"mappings":";;;;;KASK,QAAA;AAAA,KAEA,aAAA;EACH,QAAA,EAAU,QAAA;AAAA;AAAA,UAGK,SAAA,gCAAyC,aAAA;AAAA,KAErD,oBAAA,cACH,IAAA,WACG,WAAA,CAAY,QAAA,IAAY,OAAA,CAAQ,WAAA,CAAY,QAAA;AAAA,KAErC,WAAA,mDAGC,CAAA,qBAAsB,QAAA,GAAW,CAAA,KAE1C,QAAA,GACA,SAAA,CAAU,QAAA,MACR,IAAA,WAAe,WAAA,CAAY,QAAA,MAC5B,aAAA,gBAA6B,oBAAA,CAAqB,QAAA;AAAA,KAGlD,OAAA,MAAa,CAAA;AAAA,KAEb,wBAAA,qBAA6C,CAAA,uBAG9C,WAAA,CAAY,CAAA,EAAG,aAAA,IAAiB,mBAAA,CAAoB,CAAA,EAAG,aAAA;AAAA,KAGtD,yBAAA,mCACS,CAAA,GAAI,mBAAA,CAAoB,CAAA,CAAE,CAAA,GAAI,aAAA;AAAA,KAIvC,mBAAA,mCAGD,QAAA,kBACA,OAAA,CAAQ,QAAA,iBACN,wBAAA,CAAyB,QAAA,EAAU,aAAA,IAE/B,WAAA,CAAY,QAAA,EAAU,aAAA,IACtB,yBAAA,CAA0B,QAAA,EAAU,aAAA,IAC1C,WAAA,CAAY,QAAA,EAAU,aAAA;;;;;;;;;;;;;AAjC1B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAQuD;;;;;AAGrC;;;;;;KAgFN,IAAA,aAER,eAAA,GACA,OAAA,CAAQ,MAAA,CAAO,eAAA,YAA2B,eAAA;AAAA,KAElC,YAAA;AAAA,KACA,aAAA;;;;;;;;;;;;;KAcA,uBAAA;;;AA/F+C
|
|
1
|
+
{"version":3,"file":"dictionary.d.ts","names":[],"sources":["../../src/dictionary.ts"],"mappings":"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"}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -3,8 +3,8 @@ import { ALL_LOCALES, Locale } from "./allLocales.js";
|
|
|
3
3
|
import { DeclaredLocales, DictionaryKeys, DictionaryRegistry, DictionaryRegistryContent, DictionaryRegistryElement, DictionaryRegistryResult, DictionarySelectorForKey, ExtractSelectorLocale, GetLocaleLang, LocalesValues, LocalizedUrl, PathWithoutLocale, RequiredLocales, ResolvedDefaultLocale, ResolvedEditor, ResolvedRoutingMode, Schema, SchemaKeys, StrictModeLocaleMap } from "./module_augmentation.js";
|
|
4
4
|
import { FilePathPattern, FilePathPatternContext, FilePathPatternFunction } from "./filePathPattern.js";
|
|
5
5
|
import { ARRAY, BOOLEAN, CONDITION, ENUMERATION, FILE, GENDER, HTML, INSERTION, MARKDOWN, NESTED, NULL, NUMBER, NodeType, OBJECT, PLUGIN_NODE_TYPES, PLURAL, PREACT_NODE, REACT_NODE, SOLID_NODE, TEXT, TRANSLATION, TypedNodeModel, UNKNOWN, formatNodeType } from "./nodeType.js";
|
|
6
|
-
import { ContentAutoTransformation, ContentNode, Dictionary, DictionaryFormat, DictionaryId, DictionaryKey, DictionaryLocation, DictionaryQualifierType, DictionarySelector, DictionarySelectorForGroup, Fill, GetSubPath, ImportMode, LocalDictionaryId, QualifiedDictionaryGroup, ResolveQualifiedDictionaryContent, TypedNode } from "./dictionary.js";
|
|
6
|
+
import { ContentAutoTransformation, ContentNode, Dictionary, DictionaryFormat, DictionaryId, DictionaryKey, DictionaryLocation, DictionaryQualifierType, DictionarySelector, DictionarySelectorForGroup, DictionaryVariantValue, Fill, GetSubPath, ImportMode, LocalDictionaryId, QualifiedDictionaryGroup, ResolveQualifiedDictionaryContent, TypedNode } from "./dictionary.js";
|
|
7
7
|
import { MergedDictionaryOutput, MergedDictionaryResult, Plugin, UnmergedDictionaryOutput, UnmergedDictionaryResult } from "./plugin.js";
|
|
8
8
|
import { AiConfig, AiProviderConfigMap, AiProviders, BuildConfig, CommonAiConfig, CompilerConfig, ConfigSchema, ContentConfig, CookiesAttributes, CustomIntlayerConfig, CustomRoutingConfig, DictionaryConfig, EditorConfig, InternationalizationConfig, IntlayerConfig, LogConfig, LogFunctions, ProcessedCookieAttributes, ProcessedStorageAttributes, RewriteObject, RewriteRule, RewriteRules, RoutingConfig, RoutingStorageInput, StorageAttributes, StrictMode, SystemConfig, URLType } from "./config.js";
|
|
9
9
|
import { ArrayNode, ConditionNode, EnumerationNode, FileNode, GenderNode, HTMLNode, InsertionNode, KeyPath, MarkdownNode, NestedNode, ObjectNode, PluralNode, ReactNode, TranslationNode } from "./keyPath.js";
|
|
10
|
-
export { ALL_LOCALES, ARRAY, AiConfig, AiProviderConfigMap, AiProviders, ArrayNode, BOOLEAN, BuildConfig, CONDITION, CommonAiConfig, CompilerConfig, ConditionNode, ConfigSchema, ContentAutoTransformation, ContentConfig, ContentNode, CookiesAttributes, CustomIntlayerConfig, CustomRoutingConfig, DeclaredLocales, Dictionary, DictionaryConfig, DictionaryFormat, DictionaryId, DictionaryKey, DictionaryKeys, DictionaryLocation, DictionaryQualifierType, DictionaryRegistry, DictionaryRegistryContent, DictionaryRegistryElement, DictionaryRegistryResult, DictionarySelector, DictionarySelectorForGroup, DictionarySelectorForKey, ENUMERATION, EditorConfig, EnumerationNode, ExtractSelectorLocale, FILE, FileNode, FilePathPattern, FilePathPatternContext, FilePathPatternFunction, Fill, GENDER, GenderNode, GetLocaleLang, GetSubPath, HTML, HTMLNode, INSERTION, ImportMode, InsertionNode, InternationalizationConfig, IntlayerConfig, KeyPath, LocalDictionaryId, Locale, locales_d_exports as Locales, LocalesValues, LocalizedUrl, LogConfig, LogFunctions, MARKDOWN, MarkdownNode, MergedDictionaryOutput, MergedDictionaryResult, NESTED, NULL, NUMBER, NestedNode, NodeType, OBJECT, ObjectNode, PLUGIN_NODE_TYPES, PLURAL, PREACT_NODE, PathWithoutLocale, Plugin, PluralNode, ProcessedCookieAttributes, ProcessedStorageAttributes, QualifiedDictionaryGroup, REACT_NODE, ReactNode, RequiredLocales, ResolveQualifiedDictionaryContent, ResolvedDefaultLocale, ResolvedEditor, ResolvedRoutingMode, RewriteObject, RewriteRule, RewriteRules, RoutingConfig, RoutingStorageInput, SOLID_NODE, Schema, SchemaKeys, StorageAttributes, StrictMode, StrictModeLocaleMap, SystemConfig, TEXT, TRANSLATION, TranslationNode, TypedNode, TypedNodeModel, UNKNOWN, URLType, UnmergedDictionaryOutput, UnmergedDictionaryResult, formatNodeType };
|
|
10
|
+
export { ALL_LOCALES, ARRAY, AiConfig, AiProviderConfigMap, AiProviders, ArrayNode, BOOLEAN, BuildConfig, CONDITION, CommonAiConfig, CompilerConfig, ConditionNode, ConfigSchema, ContentAutoTransformation, ContentConfig, ContentNode, CookiesAttributes, CustomIntlayerConfig, CustomRoutingConfig, DeclaredLocales, Dictionary, DictionaryConfig, DictionaryFormat, DictionaryId, DictionaryKey, DictionaryKeys, DictionaryLocation, DictionaryQualifierType, DictionaryRegistry, DictionaryRegistryContent, DictionaryRegistryElement, DictionaryRegistryResult, DictionarySelector, DictionarySelectorForGroup, DictionarySelectorForKey, DictionaryVariantValue, ENUMERATION, EditorConfig, EnumerationNode, ExtractSelectorLocale, FILE, FileNode, FilePathPattern, FilePathPatternContext, FilePathPatternFunction, Fill, GENDER, GenderNode, GetLocaleLang, GetSubPath, HTML, HTMLNode, INSERTION, ImportMode, InsertionNode, InternationalizationConfig, IntlayerConfig, KeyPath, LocalDictionaryId, Locale, locales_d_exports as Locales, LocalesValues, LocalizedUrl, LogConfig, LogFunctions, MARKDOWN, MarkdownNode, MergedDictionaryOutput, MergedDictionaryResult, NESTED, NULL, NUMBER, NestedNode, NodeType, OBJECT, ObjectNode, PLUGIN_NODE_TYPES, PLURAL, PREACT_NODE, PathWithoutLocale, Plugin, PluralNode, ProcessedCookieAttributes, ProcessedStorageAttributes, QualifiedDictionaryGroup, REACT_NODE, ReactNode, RequiredLocales, ResolveQualifiedDictionaryContent, ResolvedDefaultLocale, ResolvedEditor, ResolvedRoutingMode, RewriteObject, RewriteRule, RewriteRules, RoutingConfig, RoutingStorageInput, SOLID_NODE, Schema, SchemaKeys, StorageAttributes, StrictMode, StrictModeLocaleMap, SystemConfig, TEXT, TRANSLATION, TranslationNode, TypedNode, TypedNodeModel, UNKNOWN, URLType, UnmergedDictionaryOutput, UnmergedDictionaryResult, formatNodeType };
|
package/package.json
CHANGED