react-intlayer 8.10.0 → 8.10.1

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.
@@ -1,3 +1,5 @@
1
+ import { LocalesValues } from "../../intlayer/dist/types/index.js";
2
+
1
3
  //#region src/client/format/useCompact.d.ts
2
4
  /**
3
5
  * React client hook that provides a compact number formatter
@@ -10,7 +12,7 @@
10
12
  * ```
11
13
  */
12
14
  declare const useCompact: () => (value: string | number, options?: Intl.NumberFormatOptions & {
13
- locale?: import("@intlayer/types").LocalesValues;
15
+ locale?: LocalesValues;
14
16
  }) => string;
15
17
  //#endregion
16
18
  export { useCompact };
@@ -1 +1 @@
1
- {"version":3,"file":"useCompact.d.ts","names":[],"sources":["../../../../src/client/format/useCompact.ts"],"mappings":";;AAgBA;;;;;;;;;cAAa,UAAA,SAAU,KAAA,mBAAA,OAAA,GAAA,IAAA,CAAA,mBAAA"}
1
+ {"version":3,"file":"useCompact.d.ts","names":[],"sources":["../../../../src/client/format/useCompact.ts"],"mappings":";;;;;;AAgBA;;;;;;;cAAa,UAAA,SAAU,KAAA,mBAAA,OAAA,GAAA,IAAA,CAAA,mBAAA;WAAA,aAAA;AAAA"}
@@ -1,3 +1,5 @@
1
+ import { LocalesValues } from "../../intlayer/dist/types/index.js";
2
+
1
3
  //#region src/client/format/useCurrency.d.ts
2
4
  /**
3
5
  * React client hook that provides a currency formatter
@@ -24,7 +26,7 @@
24
26
  * ```
25
27
  */
26
28
  declare const useCurrency: () => (value: string | number, options?: Intl.NumberFormatOptions & {
27
- locale?: import("@intlayer/types").LocalesValues;
29
+ locale?: LocalesValues;
28
30
  }) => string;
29
31
  //#endregion
30
32
  export { useCurrency };
@@ -1 +1 @@
1
- {"version":3,"file":"useCurrency.d.ts","names":[],"sources":["../../../../src/client/format/useCurrency.ts"],"mappings":";;AA8BA;;;;;;;;;;;;;;;;;;;;;;;cAAa,WAAA,SAAW,KAAA,mBAAA,OAAA,GAAA,IAAA,CAAA,mBAAA"}
1
+ {"version":3,"file":"useCurrency.d.ts","names":[],"sources":["../../../../src/client/format/useCurrency.ts"],"mappings":";;;;;;AA8BA;;;;;;;;;;;;;;;;;;;;;cAAa,WAAA,SAAW,KAAA,mBAAA,OAAA,GAAA,IAAA,CAAA,mBAAA;WAAA,aAAA;AAAA"}
@@ -1,3 +1,5 @@
1
+ import { LocalesValues } from "../../intlayer/dist/types/index.js";
2
+
1
3
  //#region src/client/format/useList.d.ts
2
4
  /**
3
5
  * React client hook that provides a list formatter
@@ -25,7 +27,7 @@ declare const useList: () => (values: (string | number)[], options?: {
25
27
  type?: "conjunction" | "disjunction" | "unit";
26
28
  style?: "long" | "short" | "narrow";
27
29
  } & {
28
- locale?: import("@intlayer/types").LocalesValues;
30
+ locale?: LocalesValues;
29
31
  }) => string;
30
32
  //#endregion
31
33
  export { useList };
@@ -1 +1 @@
1
- {"version":3,"file":"useList.d.ts","names":[],"sources":["../../../../src/client/format/useList.ts"],"mappings":";;AA2BA;;;;;;;;;;;;;;;;;;;;cAAa,OAAA,SAAO,MAAA,uBAAA,OAAA"}
1
+ {"version":3,"file":"useList.d.ts","names":[],"sources":["../../../../src/client/format/useList.ts"],"mappings":";;;;;;AA2BA;;;;;;;;;;;;;;;;;;cAAa,OAAA,SAAO,MAAA,uBAAA,OAAA;;;;;WAWnB,aAAA;AAAA"}
@@ -1,3 +1,5 @@
1
+ import { LocalesValues } from "../../intlayer/dist/types/index.js";
2
+
1
3
  //#region src/client/format/useNumber.d.ts
2
4
  /**
3
5
  * React client hook that provides a localized number formatter.
@@ -22,7 +24,7 @@
22
24
  * A number formatting function bound to the active locale.
23
25
  */
24
26
  declare const useNumber: () => (value: string | number, args_1?: Intl.NumberFormatOptions & {
25
- locale?: import("@intlayer/types").LocalesValues;
27
+ locale?: LocalesValues;
26
28
  }) => string;
27
29
  //#endregion
28
30
  export { useNumber };
@@ -1 +1 @@
1
- {"version":3,"file":"useNumber.d.ts","names":[],"sources":["../../../../src/client/format/useNumber.ts"],"mappings":";;AA4BA;;;;;;;;;;;;;;;;;;;;;cAAa,SAAA,SAAS,KAAA,mBAAA,MAAA,GAAA,IAAA,CAAA,mBAAA"}
1
+ {"version":3,"file":"useNumber.d.ts","names":[],"sources":["../../../../src/client/format/useNumber.ts"],"mappings":";;;;;;AA4BA;;;;;;;;;;;;;;;;;;;cAAa,SAAA,SAAS,KAAA,mBAAA,MAAA,GAAA,IAAA,CAAA,mBAAA;WAAA,aAAA;AAAA"}
@@ -1,3 +1,5 @@
1
+ import { LocalesValues } from "../../intlayer/dist/types/index.js";
2
+
1
3
  //#region src/client/format/usePercentage.d.ts
2
4
  /**
3
5
  * React hook to provide a percentage formatter function
@@ -18,7 +20,7 @@
18
20
  * A function that formats numbers or numeric strings into localized percentages.
19
21
  */
20
22
  declare const usePercentage: () => (value: string | number, args_1?: Intl.NumberFormatOptions & {
21
- locale?: import("@intlayer/types").LocalesValues;
23
+ locale?: LocalesValues;
22
24
  }) => string;
23
25
  //#endregion
24
26
  export { usePercentage };
@@ -1 +1 @@
1
- {"version":3,"file":"usePercentage.d.ts","names":[],"sources":["../../../../src/client/format/usePercentage.ts"],"mappings":";;AAwBA;;;;;;;;;;;;;;;;;cAAa,aAAA,SAAa,KAAA,mBAAA,MAAA,GAAA,IAAA,CAAA,mBAAA"}
1
+ {"version":3,"file":"usePercentage.d.ts","names":[],"sources":["../../../../src/client/format/usePercentage.ts"],"mappings":";;;;;;AAwBA;;;;;;;;;;;;;;;cAAa,aAAA,SAAa,KAAA,mBAAA,MAAA,GAAA,IAAA,CAAA,mBAAA;WAAA,aAAA;AAAA"}
@@ -1,3 +1,5 @@
1
+ import { LocalesValues } from "../../intlayer/dist/types/index.js";
2
+
1
3
  //#region src/client/format/useRelativeTime.d.ts
2
4
  /**
3
5
  * Client-side React hook for accessing a localized relative time formatter.
@@ -18,7 +20,7 @@
18
20
  * bound to the current client locale.
19
21
  */
20
22
  declare const useRelativeTime: () => (from: string | number | Date, to?: string | number | Date, options?: Intl.RelativeTimeFormatOptions & {
21
- locale?: import("@intlayer/types").LocalesValues;
23
+ locale?: LocalesValues;
22
24
  unit?: Intl.RelativeTimeFormatUnit;
23
25
  }) => string;
24
26
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"useRelativeTime.d.ts","names":[],"sources":["../../../../src/client/format/useRelativeTime.ts"],"mappings":";;AAwBA;;;;;;;;;;;;;;;;;cAAa,eAAA,SAAe,IAAA,oBAAA,IAAA,EAAA,EAAA,qBAAA,IAAA,EAAA,OAAA,GAAA,IAAA,CAAA,yBAAA"}
1
+ {"version":3,"file":"useRelativeTime.d.ts","names":[],"sources":["../../../../src/client/format/useRelativeTime.ts"],"mappings":";;;;;;AAwBA;;;;;;;;;;;;;;;cAAa,eAAA,SAAe,IAAA,oBAAA,IAAA,EAAA,EAAA,qBAAA,IAAA,EAAA,OAAA,GAAA,IAAA,CAAA,yBAAA;WAAA,aAAA"}
@@ -1,3 +1,5 @@
1
+ import { LocalesValues } from "../../intlayer/dist/types/index.js";
2
+
1
3
  //#region src/client/format/useUnit.d.ts
2
4
  /**
3
5
  * React hook that provides a unit formatting function
@@ -17,7 +19,7 @@
17
19
  * @returns {Function} A unit formatting function that accepts a value and optional formatting options.
18
20
  */
19
21
  declare const useUnit: () => (value: string | number, options?: Intl.NumberFormatOptions & {
20
- locale?: import("@intlayer/types").LocalesValues;
22
+ locale?: LocalesValues;
21
23
  }) => string;
22
24
  //#endregion
23
25
  export { useUnit };
@@ -1 +1 @@
1
- {"version":3,"file":"useUnit.d.ts","names":[],"sources":["../../../../src/client/format/useUnit.ts"],"mappings":";;AAuBA;;;;;;;;;;;;;;;;cAAa,OAAA,SAAO,KAAA,mBAAA,OAAA,GAAA,IAAA,CAAA,mBAAA"}
1
+ {"version":3,"file":"useUnit.d.ts","names":[],"sources":["../../../../src/client/format/useUnit.ts"],"mappings":";;;;;;AAuBA;;;;;;;;;;;;;;cAAa,OAAA,SAAO,KAAA,mBAAA,OAAA,GAAA,IAAA,CAAA,mBAAA;WAAA,aAAA;AAAA"}
@@ -1,7 +1,7 @@
1
1
  import { DeepTransformContent } from "../plugins.js";
2
2
  import { DeclaredLocales, DictionaryKeys, DictionaryRegistryContent, LocalesValues } from "@intlayer/types/module_augmentation";
3
- import { ValidDotPathsFor } from "@intlayer/core/transpiler";
4
3
  import { GetSubPath } from "@intlayer/types/dictionary";
4
+ import { ValidDotPathsFor } from "@intlayer/core/transpiler";
5
5
 
6
6
  //#region src/client/useI18n.d.ts
7
7
  /**
@@ -1,12 +1,14 @@
1
+ import { Locale, LocalesValues } from "../intlayer/dist/types/index.js";
2
+
1
3
  //#region src/client/useLocaleBase.d.ts
2
4
  /**
3
5
  * On the client side, hook to get the current locale and all related fields
4
6
  */
5
7
  declare const useLocaleBase: () => {
6
- locale: import("@intlayer/types").LocalesValues;
7
- defaultLocale: import("@intlayer/types").Locale;
8
- availableLocales: import("@intlayer/types").Locale[];
9
- setLocale: (newLocale: import("@intlayer/types").LocalesValues) => void;
8
+ locale: LocalesValues;
9
+ defaultLocale: Locale;
10
+ availableLocales: Locale[];
11
+ setLocale: (newLocale: LocalesValues) => void;
10
12
  };
11
13
  //#endregion
12
14
  export { useLocaleBase };
@@ -1 +1 @@
1
- {"version":3,"file":"useLocaleBase.d.ts","names":[],"sources":["../../../src/client/useLocaleBase.ts"],"mappings":";;AAWA;;cAAa,aAAA"}
1
+ {"version":3,"file":"useLocaleBase.d.ts","names":[],"sources":["../../../src/client/useLocaleBase.ts"],"mappings":";;;;;;cAWa,aAAA;UASZ,aAAA"}
@@ -1,3 +1,4 @@
1
+ import { Locale } from "../intlayer/dist/types/index.js";
1
2
  import { LocalesValues } from "@intlayer/types/module_augmentation";
2
3
 
3
4
  //#region src/client/useLocaleStorage.d.ts
@@ -7,13 +8,13 @@ import { LocalesValues } from "@intlayer/types/module_augmentation";
7
8
  /**
8
9
  * Get the locale cookie
9
10
  */
10
- declare const localeInStorage: import("@intlayer/types").Locale;
11
+ declare const localeInStorage: Locale;
11
12
  /**
12
13
  * @deprecated Use localeInStorage instead
13
14
  *
14
15
  * Get the locale cookie
15
16
  */
16
- declare const localeCookie: import("@intlayer/types").Locale;
17
+ declare const localeCookie: Locale;
17
18
  /**
18
19
  * Set the locale cookie
19
20
  */
@@ -28,7 +29,7 @@ declare const setLocaleCookie: (locale: LocalesValues, isCookieEnabled?: boolean
28
29
  * Hook that provides the locale cookie and a function to set it
29
30
  */
30
31
  declare const useLocaleStorage: (isCookieEnabled?: boolean) => {
31
- getLocale: () => import("@intlayer/types").Locale;
32
+ getLocale: () => Locale;
32
33
  setLocale: (locale: LocalesValues) => void;
33
34
  };
34
35
  /**
@@ -39,7 +40,7 @@ declare const useLocaleStorage: (isCookieEnabled?: boolean) => {
39
40
  * Hook that provides the locale cookie and a function to set it
40
41
  */
41
42
  declare const useLocaleCookie: (isCookieEnabled?: boolean) => {
42
- getLocale: () => import("@intlayer/types").Locale;
43
+ getLocale: () => Locale;
43
44
  setLocale: (locale: LocalesValues) => void;
44
45
  };
45
46
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"useLocaleStorage.d.ts","names":[],"sources":["../../../src/client/useLocaleStorage.ts"],"mappings":";;;;;AAeA;;;;cAAa,eAAA,4BAAe,MAAmD;AAM/E;;;;AAA2C;AAA3C,cAAa,YAAA,4BAAY,MAAkB;;;;cAK9B,kBAAA,GACX,MAAA,EAAQ,aAAa,EACrB,eAAA;;;;AAAyB;AAY3B;cAAa,eAAA,GAAe,MAAA,EAblB,aAAa,EAAA,eAAA;;;;cAkBV,gBAAA,GAAoB,eAAA;;sBAQ9B,aAAA;AAAA;AARH;;;;;;;AAAA,cAiBa,eAAA,GAAe,eAAA;;sBAAmB,aAAA;AAAA"}
1
+ {"version":3,"file":"useLocaleStorage.d.ts","names":[],"sources":["../../../src/client/useLocaleStorage.ts"],"mappings":";;;;;;;AAeA;;;AAAA,cAAa,eAAA,EAAkE,MAAA;AAAA;AAM/E;;;;AAN+E,cAMlE,YAAA,EAA8B,MAAA;AAK3C;;;AAAA,cAAa,kBAAA,GACX,MAAA,EAAQ,aAAa,EACrB,eAAA;;;;;AAAyB;cAYd,eAAA,GAAe,MAAA,EAblB,aAAa,EAAA,eAAA;;;;cAkBV,gBAAA,GAAoB,eAAA;mBAQ9B,MAAA;sBAAA,aAAA;AAAA;AAzBwB;AAiB3B;;;;;;AAjB2B,cAkCd,eAAA,GAAe,eAAA;mBAAmB,MAAA;sBAAA,aAAA;AAAA"}
@@ -69,7 +69,7 @@ declare const useMarkdownRenderer: ({
69
69
  forceInline,
70
70
  preserveFrontmatter,
71
71
  tagfilter
72
- }?: RenderMarkdownProps$1) => (content: string) => string | number | bigint | boolean | import("react").JSX.Element | Iterable<import("react").ReactNode> | Promise<import("react").ReactNode>;
72
+ }?: RenderMarkdownProps$1) => (content: string) => string | number | bigint | boolean | Iterable<import("react").ReactNode> | import("react").JSX.Element | Promise<import("react").ReactNode>;
73
73
  /**
74
74
  * @deprecated import from react-intlayer/markdown instead
75
75
  */
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","names":[],"sources":["../../src/index.ts"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;YAIY,kBAAA,iBAAmC,aAAA,UACnC,uBAAA,CAAwB,CAAA,EAAG,CAAA,EAAG,CAAA;AAAA;;;;;;;cAwD7B,gBAAA,kBAAgB,EAAA,CAAA,yBAAA;eAAA,cAAA;;gDAxBpB,yBAAA,EAAA,UAAA,GAAA,cAAA,oBAEG,OAAA,mBAEN,EAAA,iBAAA,cAAA,CAAA,WAAA,uBAAA,SAAA,GAAA,OAAA,iBAAA,SAAA;AAAA;;;;;;cAwBO,kBAAA;eAAwC,cAAA;+CA1CP,yBAAA,EAAA,UAAA,GAAA,cAAA,oBAC5B,OAAA,mBACI,EAAA,iBAAA,cAAA,CAAA,WAAA,uBAAA,SAAA,GAAA,OAAA,iBAAA,SAAA;AAAA;;;;KA4CV,uBAAA,GAA0B,yBAAwB;AAR9D;;;AAAA,cAYa,cAAA,GAAc,OAAA;EAAA,UAAA;EAAA,OAAA;EAAA,UAAA;EAAA,WAAA;EAAA,mBAAA;EAAA;AAAA,IAAA,qBAAA,qBAAA,GAAA,CAAA,OAAA;;;;cAId,mBAAA;EAAmB,UAAA;EAAA,OAAA;EAAA,UAAA;EAAA,WAAA;EAAA,mBAAA;EAAA;AAAA,IAAA,qBAAA,MAa01C,OAAA,kEAAe,GAAA,CAAA,OAAA,GAAA,QAAA,iBAAA,SAAA,IAAA,OAAA,iBAAA,SAAA;;;;cAT53C,gBAAA,kBAAgB,EAAA,CAAA,uBAAA;;;;KAIjB,mBAAA,GAAsB,qBAAoB;;;;KAI1C,qBAAA,GAAwB,uBAAsB"}
1
+ {"version":3,"file":"index.d.ts","names":[],"sources":["../../src/index.ts"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;YAIY,kBAAA,iBAAmC,aAAA,UACnC,uBAAA,CAAwB,CAAA,EAAG,CAAA,EAAG,CAAA;AAAA;;;;;;;cAwD7B,gBAAA,kBAAgB,EAAA,CAAA,yBAAA;eAAA,cAAA;;gDAxBpB,yBAAA,EAAA,UAAA,GAAA,cAAA,oBAEG,OAAA,mBAEN,EAAA,iBAAA,cAAA,CAAA,WAAA,uBAAA,SAAA,GAAA,OAAA,iBAAA,SAAA;AAAA;;;;;;cAwBO,kBAAA;eAAwC,cAAA;+CA1CP,yBAAA,EAAA,UAAA,GAAA,cAAA,oBAC5B,OAAA,mBACI,EAAA,iBAAA,cAAA,CAAA,WAAA,uBAAA,SAAA,GAAA,OAAA,iBAAA,SAAA;AAAA;;;;KA4CV,uBAAA,GAA0B,yBAAwB;AAR9D;;;AAAA,cAYa,cAAA,GAAc,OAAA;EAAA,UAAA;EAAA,OAAA;EAAA,UAAA;EAAA,WAAA;EAAA,mBAAA;EAAA;AAAA,IAAA,qBAAA,qBAAA,GAAA,CAAA,OAAA;;;;cAId,mBAAA;EAAmB,UAAA;EAAA,OAAA;EAAA,UAAA;EAAA,WAAA;EAAA,mBAAA;EAAA;AAAA,IAAA,qBAAA,MAa01C,OAAA,kDAAe,QAAA,iBAAA,SAAA,oBAAA,GAAA,CAAA,OAAA,GAAA,OAAA,iBAAA,SAAA;;;;cAT53C,gBAAA,kBAAgB,EAAA,CAAA,uBAAA;;;;KAIjB,mBAAA,GAAsB,qBAAoB;;;;KAI1C,qBAAA,GAAwB,uBAAsB"}
@@ -0,0 +1,4 @@
1
+ import { LocalesValues as LocalesValues$1 } from "@intlayer/types/module_augmentation";
2
+ import { Dictionary } from "@intlayer/types/dictionary";
3
+ import { Locale } from "@intlayer/types/allLocales";
4
+ export type { Locale, LocalesValues$1 as LocalesValues };
@@ -133,7 +133,7 @@ declare const useMarkdownRenderer: ({
133
133
  forceInline,
134
134
  preserveFrontmatter,
135
135
  tagfilter
136
- }?: RenderMarkdownProps) => (content: string) => string | number | bigint | boolean | JSX.Element | Iterable<ReactNode> | Promise<ReactNode>;
136
+ }?: RenderMarkdownProps) => (content: string) => string | number | bigint | boolean | Iterable<ReactNode> | JSX.Element | Promise<ReactNode>;
137
137
  /**
138
138
  * Props for the MarkdownRenderer component.
139
139
  *
@@ -1 +1 @@
1
- {"version":3,"file":"MarkdownRenderer.d.ts","names":[],"sources":["../../../src/markdown/MarkdownRenderer.tsx"],"mappings":";;;;;;;AA6BA;;;;;;;;;;;;;;;;;KAAY,mBAAA,GAAsB,uBAAA;EAwBO;AA4BzC;;;;;;;;;;;;EAtCE,UAAA,GAAa,cAAA;EAuCb;;;;;;;;;EA7BA,OAAA,GAAU,EAAA,CAAG,cAAA,CAAe,WAAA;AAAA;;;;;;;AAmD7B;AA+CD;;;;;;;;;;;;;;;;;;cAtEa,cAAA,GACX,OAAA;EACA,UAAA;EAAA,OAAA;EAAA,UAAA;EAAA,WAAA;EAAA,mBAAA;EAAA;AAAA,IAOG,mBAAA,KACF,GAAA,CAAI,OAAA;;;;;;;;;;;;;;;;;;;;AAsEkB;AAyCzB;;;;;;;;;;;;;;;;;;;;;;;;;cAnDa,mBAAA;EAAuB,UAAA;EAAA,OAAA;EAAA,UAAA;EAAA,WAAA;EAAA,mBAAA;EAAA;AAAA,IAOjC,mBAAA,MAGO,OAAA,kDAAe,GAAA,CAAA,OAAA,GAAA,QAAA,CAAA,SAAA,IAAA,OAAA,CAAA,SAAA;;;AAmFW;AAgEpC;;;;AAAuD;;;;;;;;KA1G3C,qBAAA,GAAwB,mBAAA;;;;;;;;;;;EAWlC,QAAA;;;;;;;;;;;;;;;;;;;;;EAqBA,cAAA,IACE,QAAA,UACA,OAAA;IACE,UAAA,GAAa,cAAA;IACb,OAAA,GAAU,EAAA;IACV,UAAA;IACA,WAAA;IACA,mBAAA;IACA,SAAA;EAAA,MAEC,SAAA,GAAY,OAAA,CAAQ,SAAA;AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAgEd,gBAAA,EAAkB,EAAE,CAAC,qBAAA"}
1
+ {"version":3,"file":"MarkdownRenderer.d.ts","names":[],"sources":["../../../src/markdown/MarkdownRenderer.tsx"],"mappings":";;;;;;;AA6BA;;;;;;;;;;;;;;;;;KAAY,mBAAA,GAAsB,uBAAA;EAwBO;AA4BzC;;;;;;;;;;;;EAtCE,UAAA,GAAa,cAAA;EAuCb;;;;;;;;;EA7BA,OAAA,GAAU,EAAA,CAAG,cAAA,CAAe,WAAA;AAAA;;;;;;;AAmD7B;AA+CD;;;;;;;;;;;;;;;;;;cAtEa,cAAA,GACX,OAAA;EACA,UAAA;EAAA,OAAA;EAAA,UAAA;EAAA,WAAA;EAAA,mBAAA;EAAA;AAAA,IAOG,mBAAA,KACF,GAAA,CAAI,OAAA;;;;;;;;;;;;;;;;;;;;AAsEkB;AAyCzB;;;;;;;;;;;;;;;;;;;;;;;;;cAnDa,mBAAA;EAAuB,UAAA;EAAA,OAAA;EAAA,UAAA;EAAA,WAAA;EAAA,mBAAA;EAAA;AAAA,IAOjC,mBAAA,MAGO,OAAA,kDAAe,QAAA,CAAA,SAAA,IAAA,GAAA,CAAA,OAAA,GAAA,OAAA,CAAA,SAAA;;;AAmFW;AAgEpC;;;;AAAuD;;;;;;;;KA1G3C,qBAAA,GAAwB,mBAAA;;;;;;;;;;;EAWlC,QAAA;;;;;;;;;;;;;;;;;;;;;EAqBA,cAAA,IACE,QAAA,UACA,OAAA;IACE,UAAA,GAAa,cAAA;IACb,OAAA,GAAU,EAAA;IACV,UAAA;IACA,WAAA;IACA,mBAAA;IACA,SAAA;EAAA,MAEC,SAAA,GAAY,OAAA,CAAQ,SAAA;AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAgEd,gBAAA,EAAkB,EAAE,CAAC,qBAAA"}
@@ -1,7 +1,7 @@
1
1
  import { DeepTransformContent } from "../plugins.js";
2
2
  import { DictionaryKeys, DictionaryRegistryContent, LocalesValues } from "@intlayer/types/module_augmentation";
3
- import { ValidDotPathsFor } from "@intlayer/core/transpiler";
4
3
  import { GetSubPath } from "@intlayer/types/dictionary";
4
+ import { ValidDotPathsFor } from "@intlayer/core/transpiler";
5
5
 
6
6
  //#region src/server/useI18n.d.ts
7
7
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-intlayer",
3
- "version": "8.10.0",
3
+ "version": "8.10.1",
4
4
  "private": false,
5
5
  "description": "Easily internationalize i18n your React applications with type-safe multilingual content management.",
6
6
  "keywords": [
@@ -123,13 +123,13 @@
123
123
  "typecheck": "tsc --noEmit --project tsconfig.types.json"
124
124
  },
125
125
  "dependencies": {
126
- "@intlayer/api": "8.10.0",
127
- "@intlayer/config": "8.10.0",
128
- "@intlayer/core": "8.10.0",
129
- "@intlayer/dictionaries-entry": "8.10.0",
130
- "@intlayer/editor": "8.10.0",
131
- "@intlayer/editor-react": "8.10.0",
132
- "@intlayer/types": "8.10.0"
126
+ "@intlayer/api": "8.10.1",
127
+ "@intlayer/config": "8.10.1",
128
+ "@intlayer/core": "8.10.1",
129
+ "@intlayer/dictionaries-entry": "8.10.1",
130
+ "@intlayer/editor": "8.10.1",
131
+ "@intlayer/editor-react": "8.10.1",
132
+ "@intlayer/types": "8.10.1"
133
133
  },
134
134
  "devDependencies": {
135
135
  "@craco/types": "7.1.0",
@@ -143,7 +143,7 @@
143
143
  "rimraf": "6.1.3",
144
144
  "tsdown": "0.22.00",
145
145
  "typescript": "6.0.3",
146
- "vitest": "4.1.6"
146
+ "vitest": "4.1.7"
147
147
  },
148
148
  "peerDependencies": {
149
149
  "react": ">=16.0.0",