react-intlayer 8.10.1 → 8.11.0-canary.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.
@@ -1,5 +1,3 @@
1
- import { LocalesValues } from "../../intlayer/dist/types/index.js";
2
-
3
1
  //#region src/client/format/useCompact.d.ts
4
2
  /**
5
3
  * React client hook that provides a compact number formatter
@@ -12,7 +10,7 @@ import { LocalesValues } from "../../intlayer/dist/types/index.js";
12
10
  * ```
13
11
  */
14
12
  declare const useCompact: () => (value: string | number, options?: Intl.NumberFormatOptions & {
15
- locale?: LocalesValues;
13
+ locale?: import("@intlayer/types").LocalesValues;
16
14
  }) => string;
17
15
  //#endregion
18
16
  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;WAAA,aAAA;AAAA"}
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,5 +1,3 @@
1
- import { LocalesValues } from "../../intlayer/dist/types/index.js";
2
-
3
1
  //#region src/client/format/useCurrency.d.ts
4
2
  /**
5
3
  * React client hook that provides a currency formatter
@@ -26,7 +24,7 @@ import { LocalesValues } from "../../intlayer/dist/types/index.js";
26
24
  * ```
27
25
  */
28
26
  declare const useCurrency: () => (value: string | number, options?: Intl.NumberFormatOptions & {
29
- locale?: LocalesValues;
27
+ locale?: import("@intlayer/types").LocalesValues;
30
28
  }) => string;
31
29
  //#endregion
32
30
  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;WAAA,aAAA;AAAA"}
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,5 +1,3 @@
1
- import { LocalesValues } from "../../intlayer/dist/types/index.js";
2
-
3
1
  //#region src/client/format/useList.d.ts
4
2
  /**
5
3
  * React client hook that provides a list formatter
@@ -27,7 +25,7 @@ declare const useList: () => (values: (string | number)[], options?: {
27
25
  type?: "conjunction" | "disjunction" | "unit";
28
26
  style?: "long" | "short" | "narrow";
29
27
  } & {
30
- locale?: LocalesValues;
28
+ locale?: import("@intlayer/types").LocalesValues;
31
29
  }) => string;
32
30
  //#endregion
33
31
  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;;;;;WAWnB,aAAA;AAAA"}
1
+ {"version":3,"file":"useList.d.ts","names":[],"sources":["../../../../src/client/format/useList.ts"],"mappings":";;AA2BA;;;;;;;;;;;;;;;;;;;;cAAa,OAAA,SAAO,MAAA,uBAAA,OAAA"}
@@ -1,5 +1,3 @@
1
- import { LocalesValues } from "../../intlayer/dist/types/index.js";
2
-
3
1
  //#region src/client/format/useNumber.d.ts
4
2
  /**
5
3
  * React client hook that provides a localized number formatter.
@@ -24,7 +22,7 @@ import { LocalesValues } from "../../intlayer/dist/types/index.js";
24
22
  * A number formatting function bound to the active locale.
25
23
  */
26
24
  declare const useNumber: () => (value: string | number, args_1?: Intl.NumberFormatOptions & {
27
- locale?: LocalesValues;
25
+ locale?: import("@intlayer/types").LocalesValues;
28
26
  }) => string;
29
27
  //#endregion
30
28
  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;WAAA,aAAA;AAAA"}
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,5 +1,3 @@
1
- import { LocalesValues } from "../../intlayer/dist/types/index.js";
2
-
3
1
  //#region src/client/format/usePercentage.d.ts
4
2
  /**
5
3
  * React hook to provide a percentage formatter function
@@ -20,7 +18,7 @@ import { LocalesValues } from "../../intlayer/dist/types/index.js";
20
18
  * A function that formats numbers or numeric strings into localized percentages.
21
19
  */
22
20
  declare const usePercentage: () => (value: string | number, args_1?: Intl.NumberFormatOptions & {
23
- locale?: LocalesValues;
21
+ locale?: import("@intlayer/types").LocalesValues;
24
22
  }) => string;
25
23
  //#endregion
26
24
  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;WAAA,aAAA;AAAA"}
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,5 +1,3 @@
1
- import { LocalesValues } from "../../intlayer/dist/types/index.js";
2
-
3
1
  //#region src/client/format/useRelativeTime.d.ts
4
2
  /**
5
3
  * Client-side React hook for accessing a localized relative time formatter.
@@ -20,7 +18,7 @@ import { LocalesValues } from "../../intlayer/dist/types/index.js";
20
18
  * bound to the current client locale.
21
19
  */
22
20
  declare const useRelativeTime: () => (from: string | number | Date, to?: string | number | Date, options?: Intl.RelativeTimeFormatOptions & {
23
- locale?: LocalesValues;
21
+ locale?: import("@intlayer/types").LocalesValues;
24
22
  unit?: Intl.RelativeTimeFormatUnit;
25
23
  }) => string;
26
24
  //#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;WAAA,aAAA"}
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,5 +1,3 @@
1
- import { LocalesValues } from "../../intlayer/dist/types/index.js";
2
-
3
1
  //#region src/client/format/useUnit.d.ts
4
2
  /**
5
3
  * React hook that provides a unit formatting function
@@ -19,7 +17,7 @@ import { LocalesValues } from "../../intlayer/dist/types/index.js";
19
17
  * @returns {Function} A unit formatting function that accepts a value and optional formatting options.
20
18
  */
21
19
  declare const useUnit: () => (value: string | number, options?: Intl.NumberFormatOptions & {
22
- locale?: LocalesValues;
20
+ locale?: import("@intlayer/types").LocalesValues;
23
21
  }) => string;
24
22
  //#endregion
25
23
  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;WAAA,aAAA;AAAA"}
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,7 +1,7 @@
1
1
  import { DeepTransformContent } from "../plugins.js";
2
2
  import { DeclaredLocales, DictionaryKeys, DictionaryRegistryContent, LocalesValues } from "@intlayer/types/module_augmentation";
3
- import { GetSubPath } from "@intlayer/types/dictionary";
4
3
  import { ValidDotPathsFor } from "@intlayer/core/transpiler";
4
+ import { GetSubPath } from "@intlayer/types/dictionary";
5
5
 
6
6
  //#region src/client/useI18n.d.ts
7
7
  /**
@@ -1,14 +1,12 @@
1
- import { Locale, LocalesValues } from "../intlayer/dist/types/index.js";
2
-
3
1
  //#region src/client/useLocaleBase.d.ts
4
2
  /**
5
3
  * On the client side, hook to get the current locale and all related fields
6
4
  */
7
5
  declare const useLocaleBase: () => {
8
- locale: LocalesValues;
9
- defaultLocale: Locale;
10
- availableLocales: Locale[];
11
- setLocale: (newLocale: LocalesValues) => void;
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;
12
10
  };
13
11
  //#endregion
14
12
  export { useLocaleBase };
@@ -1 +1 @@
1
- {"version":3,"file":"useLocaleBase.d.ts","names":[],"sources":["../../../src/client/useLocaleBase.ts"],"mappings":";;;;;;cAWa,aAAA;UASZ,aAAA"}
1
+ {"version":3,"file":"useLocaleBase.d.ts","names":[],"sources":["../../../src/client/useLocaleBase.ts"],"mappings":";;AAWA;;cAAa,aAAA"}
@@ -1,4 +1,3 @@
1
- import { Locale } from "../intlayer/dist/types/index.js";
2
1
  import { LocalesValues } from "@intlayer/types/module_augmentation";
3
2
 
4
3
  //#region src/client/useLocaleStorage.d.ts
@@ -8,13 +7,13 @@ import { LocalesValues } from "@intlayer/types/module_augmentation";
8
7
  /**
9
8
  * Get the locale cookie
10
9
  */
11
- declare const localeInStorage: Locale;
10
+ declare const localeInStorage: import("@intlayer/types").Locale;
12
11
  /**
13
12
  * @deprecated Use localeInStorage instead
14
13
  *
15
14
  * Get the locale cookie
16
15
  */
17
- declare const localeCookie: Locale;
16
+ declare const localeCookie: import("@intlayer/types").Locale;
18
17
  /**
19
18
  * Set the locale cookie
20
19
  */
@@ -29,7 +28,7 @@ declare const setLocaleCookie: (locale: LocalesValues, isCookieEnabled?: boolean
29
28
  * Hook that provides the locale cookie and a function to set it
30
29
  */
31
30
  declare const useLocaleStorage: (isCookieEnabled?: boolean) => {
32
- getLocale: () => Locale;
31
+ getLocale: () => import("@intlayer/types").Locale;
33
32
  setLocale: (locale: LocalesValues) => void;
34
33
  };
35
34
  /**
@@ -40,7 +39,7 @@ declare const useLocaleStorage: (isCookieEnabled?: boolean) => {
40
39
  * Hook that provides the locale cookie and a function to set it
41
40
  */
42
41
  declare const useLocaleCookie: (isCookieEnabled?: boolean) => {
43
- getLocale: () => Locale;
42
+ getLocale: () => import("@intlayer/types").Locale;
44
43
  setLocale: (locale: LocalesValues) => void;
45
44
  };
46
45
  //#endregion
@@ -1 +1 @@
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"}
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"}
@@ -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 | Iterable<import("react").ReactNode> | import("react").JSX.Element | Promise<import("react").ReactNode>;
72
+ }?: RenderMarkdownProps$1) => (content: string) => string | number | bigint | boolean | import("react").JSX.Element | Iterable<import("react").ReactNode> | 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,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"}
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"}
@@ -133,7 +133,7 @@ declare const useMarkdownRenderer: ({
133
133
  forceInline,
134
134
  preserveFrontmatter,
135
135
  tagfilter
136
- }?: RenderMarkdownProps) => (content: string) => string | number | bigint | boolean | Iterable<ReactNode> | JSX.Element | Promise<ReactNode>;
136
+ }?: RenderMarkdownProps) => (content: string) => string | number | bigint | boolean | JSX.Element | Iterable<ReactNode> | 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,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
+ {"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,7 +1,7 @@
1
1
  import { DeepTransformContent } from "../plugins.js";
2
2
  import { DictionaryKeys, DictionaryRegistryContent, LocalesValues } from "@intlayer/types/module_augmentation";
3
- import { GetSubPath } from "@intlayer/types/dictionary";
4
3
  import { ValidDotPathsFor } from "@intlayer/core/transpiler";
4
+ import { GetSubPath } from "@intlayer/types/dictionary";
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.1",
3
+ "version": "8.11.0-canary.0",
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.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"
126
+ "@intlayer/api": "8.11.0-canary.0",
127
+ "@intlayer/config": "8.11.0-canary.0",
128
+ "@intlayer/core": "8.11.0-canary.0",
129
+ "@intlayer/dictionaries-entry": "8.11.0-canary.0",
130
+ "@intlayer/editor": "8.11.0-canary.0",
131
+ "@intlayer/editor-react": "8.11.0-canary.0",
132
+ "@intlayer/types": "8.11.0-canary.0"
133
133
  },
134
134
  "devDependencies": {
135
135
  "@craco/types": "7.1.0",
@@ -1,4 +0,0 @@
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 };