preact-intlayer 7.1.0-canary.1 → 7.1.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,4 +1,4 @@
1
- import * as intlayer12 from "intlayer";
1
+ import * as intlayer13 from "intlayer";
2
2
 
3
3
  //#region src/client/format/useCompact.d.ts
4
4
 
@@ -13,7 +13,7 @@ import * as intlayer12 from "intlayer";
13
13
  * ```
14
14
  */
15
15
  declare const useCompact: () => (value: string | number, options?: Intl.NumberFormatOptions & {
16
- locale?: intlayer12.LocalesValues;
16
+ locale?: intlayer13.LocalesValues;
17
17
  }) => string;
18
18
  //#endregion
19
19
  export { useCompact };
@@ -1,4 +1,4 @@
1
- import * as intlayer13 from "intlayer";
1
+ import * as intlayer12 from "intlayer";
2
2
 
3
3
  //#region src/client/format/useCurrency.d.ts
4
4
 
@@ -27,7 +27,7 @@ import * as intlayer13 from "intlayer";
27
27
  * ```
28
28
  */
29
29
  declare const useCurrency: () => (value: string | number, options?: Intl.NumberFormatOptions & {
30
- locale?: intlayer13.LocalesValues;
30
+ locale?: intlayer12.LocalesValues;
31
31
  }) => string;
32
32
  //#endregion
33
33
  export { useCurrency };
@@ -1,4 +1,4 @@
1
- import * as intlayer17 from "intlayer";
1
+ import * as intlayer14 from "intlayer";
2
2
 
3
3
  //#region src/client/format/useNumber.d.ts
4
4
 
@@ -25,7 +25,7 @@ import * as intlayer17 from "intlayer";
25
25
  * A number formatting function bound to the active locale.
26
26
  */
27
27
  declare const useNumber: () => (value: string | number, options?: Intl.NumberFormatOptions & {
28
- locale?: intlayer17.LocalesValues;
28
+ locale?: intlayer14.LocalesValues;
29
29
  }) => string;
30
30
  //#endregion
31
31
  export { useNumber };
@@ -1,4 +1,4 @@
1
- import * as intlayer14 from "intlayer";
1
+ import * as intlayer15 from "intlayer";
2
2
 
3
3
  //#region src/client/format/usePercentage.d.ts
4
4
 
@@ -21,7 +21,7 @@ import * as intlayer14 from "intlayer";
21
21
  * A function that formats numbers or numeric strings into localized percentages.
22
22
  */
23
23
  declare const usePercentage: () => (value: string | number, options?: Intl.NumberFormatOptions & {
24
- locale?: intlayer14.LocalesValues;
24
+ locale?: intlayer15.LocalesValues;
25
25
  }) => string;
26
26
  //#endregion
27
27
  export { usePercentage };
@@ -1,4 +1,4 @@
1
- import * as intlayer15 from "intlayer";
1
+ import * as intlayer17 from "intlayer";
2
2
 
3
3
  //#region src/client/format/useRelativeTime.d.ts
4
4
 
@@ -21,7 +21,7 @@ import * as intlayer15 from "intlayer";
21
21
  * bound to the current client locale.
22
22
  */
23
23
  declare const useRelativeTime: () => (from: string | number | Date, to?: string | number | Date, options?: Intl.RelativeTimeFormatOptions & {
24
- locale?: intlayer15.LocalesValues;
24
+ locale?: intlayer17.LocalesValues;
25
25
  unit?: Intl.RelativeTimeFormatUnit;
26
26
  }) => string;
27
27
  //#endregion
@@ -1,4 +1,4 @@
1
- import * as intlayer2 from "intlayer";
1
+ import * as intlayer18 from "intlayer";
2
2
 
3
3
  //#region src/client/format/useUnit.d.ts
4
4
 
@@ -20,7 +20,7 @@ import * as intlayer2 from "intlayer";
20
20
  * @returns {Function} A unit formatting function that accepts a value and optional formatting options.
21
21
  */
22
22
  declare const useUnit: () => (value: string | number, options?: Intl.NumberFormatOptions & {
23
- locale?: intlayer2.LocalesValues;
23
+ locale?: intlayer18.LocalesValues;
24
24
  }) => string;
25
25
  //#endregion
26
26
  export { useUnit };
@@ -1 +1 @@
1
- {"version":3,"file":"useUnit.d.ts","names":[],"sources":["../../../../src/client/format/useUnit.ts"],"sourcesContent":[],"mappings":";;;;;;;AAuBA;;;;;;;;;;;;;;cAAa,kDAAO,IAAA,CAAA;WAAA,SAAA,CAAA"}
1
+ {"version":3,"file":"useUnit.d.ts","names":[],"sources":["../../../../src/client/format/useUnit.ts"],"sourcesContent":[],"mappings":";;;;;;;AAuBA;;;;;;;;;;;;;;cAAa,kDAAO,IAAA,CAAA;WAAA,UAAA,CAAA"}
@@ -1,12 +1,12 @@
1
1
  import { StrictModeLocaleMap } from "@intlayer/types";
2
- import * as intlayer1 from "intlayer";
2
+ import * as intlayer0 from "intlayer";
3
3
 
4
4
  //#region src/client/useContent.d.ts
5
5
  /**
6
6
  * On the client side, hook to get the translation content based on the locale
7
7
  */
8
8
  declare const useContent: <Content>(languageContent: StrictModeLocaleMap<Content>) => {
9
- locale: intlayer1.LocalesValues;
9
+ locale: intlayer0.LocalesValues;
10
10
  content: Content;
11
11
  t: <Content_1 = string>(languageContent: StrictModeLocaleMap<Content_1>) => Content_1;
12
12
  };
@@ -1,7 +1,7 @@
1
1
  import { IInterpreterPluginState as IInterpreterPluginState$1 } from "../plugins.js";
2
2
  import * as _intlayer_core0 from "@intlayer/core";
3
3
  import { DeclaredLocales, Dictionary, LocalesValues } from "@intlayer/types";
4
- import * as intlayer11 from "intlayer";
4
+ import * as intlayer0 from "intlayer";
5
5
 
6
6
  //#region src/client/useDictionary.d.ts
7
7
  /**
@@ -9,7 +9,7 @@ import * as intlayer11 from "intlayer";
9
9
  *
10
10
  * If the locale is not provided, it will use the locale from the client context
11
11
  */
12
- declare const useDictionary: <T extends Dictionary, L extends LocalesValues = DeclaredLocales>(dictionary: T, locale?: L) => _intlayer_core0.DeepTransformContent<T["content"], IInterpreterPluginState$1, intlayer11.Locale>;
12
+ declare const useDictionary: <T extends Dictionary, L extends LocalesValues = DeclaredLocales>(dictionary: T, locale?: L) => _intlayer_core0.DeepTransformContent<T["content"], IInterpreterPluginState$1, intlayer0.Locale>;
13
13
  //#endregion
14
14
  export { useDictionary };
15
15
  //# sourceMappingURL=useDictionary.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"useDictionary.d.ts","names":[],"sources":["../../../src/client/useDictionary.ts"],"sourcesContent":[],"mappings":";;;;;;;;;;;AAgBa,cAAA,aAcZ,EAAA,CAAA,UAbW,UAaX,EAAA,UAZW,aAYX,GAZ2B,eAY3B,CAAA,CAAA,UAAA,EAVa,CAUb,EAAA,MAAA,CAAA,EATU,CASV,EAAA,GATW,eAAA,CAAA,oBASX,CATW,CASX,CAAA,SAAA,CAAA,EATW,yBAAA,EAAA,UAAA,CAAA,MAAA,CASX"}
1
+ {"version":3,"file":"useDictionary.d.ts","names":[],"sources":["../../../src/client/useDictionary.ts"],"sourcesContent":[],"mappings":";;;;;;;;;;;AAgBa,cAAA,aAcZ,EAAA,CAAA,UAbW,UAaX,EAAA,UAZW,aAYX,GAZ2B,eAY3B,CAAA,CAAA,UAAA,EAVa,CAUb,EAAA,MAAA,CAAA,EATU,CASV,EAAA,GATW,eAAA,CAAA,oBASX,CATW,CASX,CAAA,SAAA,CAAA,EATW,yBAAA,EAAA,SAAA,CAAA,MAAA,CASX"}
@@ -1,7 +1,7 @@
1
1
  import { IInterpreterPluginState as IInterpreterPluginState$1 } from "../plugins.js";
2
2
  import * as _intlayer_core0 from "@intlayer/core";
3
3
  import { Dictionary, DictionaryKeys, LocalesValues, StrictModeLocaleMap } from "@intlayer/types";
4
- import * as intlayer18 from "intlayer";
4
+ import * as intlayer1 from "intlayer";
5
5
 
6
6
  //#region src/client/useDictionaryDynamic.d.ts
7
7
  /**
@@ -9,7 +9,7 @@ import * as intlayer18 from "intlayer";
9
9
  *
10
10
  * If the locale is not provided, it will use the locale from the client context
11
11
  */
12
- declare const useDictionaryDynamic: <T extends Dictionary, K extends DictionaryKeys>(dictionaryPromise: StrictModeLocaleMap<() => Promise<T>>, key: K, locale?: LocalesValues) => _intlayer_core0.DeepTransformContent<T["content"], IInterpreterPluginState$1, intlayer18.Locale>;
12
+ declare const useDictionaryDynamic: <T extends Dictionary, K extends DictionaryKeys>(dictionaryPromise: StrictModeLocaleMap<() => Promise<T>>, key: K, locale?: LocalesValues) => _intlayer_core0.DeepTransformContent<T["content"], IInterpreterPluginState$1, intlayer1.Locale>;
13
13
  //#endregion
14
14
  export { useDictionaryDynamic };
15
15
  //# sourceMappingURL=useDictionaryDynamic.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"useDictionaryDynamic.d.ts","names":[],"sources":["../../../src/client/useDictionaryDynamic.ts"],"sourcesContent":[],"mappings":";;;;;;;;;;;AAkBa,cAAA,oBAoBZ,EAAA,CAAA,UAnBW,UAmBX,EAAA,UAlBW,cAkBX,CAAA,CAAA,iBAAA,EAhBoB,mBAgBpB,CAAA,GAAA,GAhB8C,OAgB9C,CAhBsD,CAgBtD,CAAA,CAAA,EAAA,GAAA,EAfM,CAeN,EAAA,MAAA,CAAA,EAdU,aAcV,EAAA,GAduB,eAAA,CAAA,oBAcvB,CAduB,CAcvB,CAAA,SAAA,CAAA,EAduB,yBAAA,EAAA,UAAA,CAAA,MAAA,CAcvB"}
1
+ {"version":3,"file":"useDictionaryDynamic.d.ts","names":[],"sources":["../../../src/client/useDictionaryDynamic.ts"],"sourcesContent":[],"mappings":";;;;;;;;;;;AAkBa,cAAA,oBAoBZ,EAAA,CAAA,UAnBW,UAmBX,EAAA,UAlBW,cAkBX,CAAA,CAAA,iBAAA,EAhBoB,mBAgBpB,CAAA,GAAA,GAhB8C,OAgB9C,CAhBsD,CAgBtD,CAAA,CAAA,EAAA,GAAA,EAfM,CAeN,EAAA,MAAA,CAAA,EAdU,aAcV,EAAA,GAduB,eAAA,CAAA,oBAcvB,CAduB,CAcvB,CAAA,SAAA,CAAA,EAduB,yBAAA,EAAA,SAAA,CAAA,MAAA,CAcvB"}
@@ -1,5 +1,5 @@
1
1
  import { LocalesValues } from "@intlayer/types";
2
- import * as intlayer0 from "intlayer";
2
+ import * as intlayer2 from "intlayer";
3
3
 
4
4
  //#region src/client/useLocale.d.ts
5
5
  type useLocaleProps = {
@@ -14,8 +14,8 @@ declare const useLocale: ({
14
14
  onLocaleChange
15
15
  }?: useLocaleProps) => {
16
16
  locale: LocalesValues;
17
- defaultLocale: intlayer0.Locale;
18
- availableLocales: intlayer0.Locale[];
17
+ defaultLocale: intlayer2.Locale;
18
+ availableLocales: intlayer2.Locale[];
19
19
  setLocale: (locale: LocalesValues) => void;
20
20
  };
21
21
  //#endregion
@@ -1,14 +1,14 @@
1
- import * as intlayer7 from "intlayer";
1
+ import * as intlayer4 from "intlayer";
2
2
 
3
3
  //#region src/client/useLocaleBase.d.ts
4
4
  /**
5
5
  * On the client side, hook to get the current locale and all related fields
6
6
  */
7
7
  declare const useLocaleBase: () => {
8
- locale: intlayer7.LocalesValues;
9
- defaultLocale: intlayer7.Locale;
10
- availableLocales: intlayer7.Locale[];
11
- setLocale: (newLocale: intlayer7.LocalesValues) => void;
8
+ locale: intlayer4.LocalesValues;
9
+ defaultLocale: intlayer4.Locale;
10
+ availableLocales: intlayer4.Locale[];
11
+ setLocale: (newLocale: intlayer4.LocalesValues) => void;
12
12
  };
13
13
  //#endregion
14
14
  export { useLocaleBase };
@@ -1,17 +1,17 @@
1
1
  import { LocalesValues } from "@intlayer/types";
2
- import * as intlayer3 from "intlayer";
2
+ import * as intlayer8 from "intlayer";
3
3
 
4
4
  //#region src/client/useLocaleStorage.d.ts
5
5
  /**
6
6
  * Get the locale cookie
7
7
  */
8
- declare const localeInStorage: intlayer3.Locale;
8
+ declare const localeInStorage: intlayer8.Locale;
9
9
  /**
10
10
  * @deprecated Use localeInStorage instead
11
11
  *
12
12
  * Get the locale cookie
13
13
  */
14
- declare const localeCookie: intlayer3.Locale;
14
+ declare const localeCookie: intlayer8.Locale;
15
15
  /**
16
16
  * Set the locale cookie
17
17
  */
@@ -26,7 +26,7 @@ declare const setLocaleCookie: (locale: LocalesValues, isCookieEnabled: boolean)
26
26
  * Hook that provides the locale storage and a function to set it
27
27
  */
28
28
  declare const useLocaleStorage: (isCookieEnabled?: boolean) => {
29
- getLocale: () => intlayer3.Locale;
29
+ getLocale: () => intlayer8.Locale;
30
30
  setLocale: (locale: LocalesValues) => void;
31
31
  };
32
32
  /**
@@ -37,7 +37,7 @@ declare const useLocaleStorage: (isCookieEnabled?: boolean) => {
37
37
  * Hook that provides the locale cookie and a function to set it
38
38
  */
39
39
  declare const useLocaleCookie: (isCookieEnabled?: boolean) => {
40
- localeCookie: intlayer3.Locale;
40
+ localeCookie: intlayer8.Locale;
41
41
  setLocaleCookie: (locale: LocalesValues) => void;
42
42
  };
43
43
  //#endregion
@@ -1,9 +1,9 @@
1
1
  import { FC, PropsWithChildren } from "preact/compat";
2
2
  import { IntlayerConfig } from "@intlayer/types";
3
- import * as preact_hooks0 from "preact/hooks";
3
+ import * as preact_hooks5 from "preact/hooks";
4
4
 
5
5
  //#region src/editor/ConfigurationContext.d.ts
6
- declare const useConfigurationState: () => [IntlayerConfig, preact_hooks0.Dispatch<preact_hooks0.StateUpdater<IntlayerConfig>>, () => void];
6
+ declare const useConfigurationState: () => [IntlayerConfig, preact_hooks5.Dispatch<preact_hooks5.StateUpdater<IntlayerConfig>>, () => void];
7
7
  type ConfigurationProviderProps = {
8
8
  configuration?: IntlayerConfig;
9
9
  };
@@ -1,12 +1,12 @@
1
1
  import { CrossFrameStateOptions } from "./useCrossFrameState.js";
2
2
  import { FC, PropsWithChildren } from "preact/compat";
3
- import * as preact_hooks1 from "preact/hooks";
3
+ import * as preact_hooks3 from "preact/hooks";
4
4
 
5
5
  //#region src/editor/EditorEnabledContext.d.ts
6
6
  type EditorEnabledStateProps = {
7
7
  enabled: boolean;
8
8
  };
9
- declare const useEditorEnabledState: (options?: CrossFrameStateOptions) => [boolean, preact_hooks1.Dispatch<preact_hooks1.StateUpdater<boolean>>, () => void];
9
+ declare const useEditorEnabledState: (options?: CrossFrameStateOptions) => [boolean, preact_hooks3.Dispatch<preact_hooks3.StateUpdater<boolean>>, () => void];
10
10
  declare const usePostEditorEnabledState: <S>(onEventTriggered?: (data: S) => void) => (data?: S) => void;
11
11
  declare const useGetEditorEnabledState: <S>(onEventTriggered?: (data: S) => void) => (data?: S) => void;
12
12
  declare const EditorEnabledProvider: FC<PropsWithChildren>;
@@ -1,9 +1,9 @@
1
1
  import { CrossFrameStateOptions } from "./useCrossFrameState.js";
2
- import * as preact_hooks3 from "preact/hooks";
2
+ import * as preact_hooks0 from "preact/hooks";
3
3
 
4
4
  //#region src/editor/useCrossURLPathState.d.ts
5
- declare const useCrossURLPathState: (initialState?: string, options?: CrossFrameStateOptions) => [string, preact_hooks3.Dispatch<preact_hooks3.StateUpdater<string>>, () => void];
6
- declare const useCrossURLPathSetter: (initialState?: string) => [string, preact_hooks3.Dispatch<preact_hooks3.StateUpdater<string>>, () => void];
5
+ declare const useCrossURLPathState: (initialState?: string, options?: CrossFrameStateOptions) => [string, preact_hooks0.Dispatch<preact_hooks0.StateUpdater<string>>, () => void];
6
+ declare const useCrossURLPathSetter: (initialState?: string) => [string, preact_hooks0.Dispatch<preact_hooks0.StateUpdater<string>>, () => void];
7
7
  //#endregion
8
8
  export { useCrossURLPathSetter, useCrossURLPathState };
9
9
  //# sourceMappingURL=useCrossURLPathState.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"plugins.d.ts","names":[],"sources":["../../src/plugins.tsx"],"sourcesContent":[],"mappings":";;;;;;;;AAoBA;;AACiB,KADL,gBACK,CAAA,CAAA,CAAA,GADiB,CACjB,SAAA,MAAA,GAAA,MAAA,GAAb,YAAa,CAAA,CAAA,CAAA,GAAA,KAAA;;AAAD,cAIH,mBAJG,EAIkB,OAJlB;AAIhB;AA8BA;AAQA;AA6BY,KArCA,cAqCkB,CAAA,CAAA,CAAA,GArCE,CAqCF,SAAA;EAAM,KAAA,EAAA,GAAA;EACC,GAAA,EAAA,GAAA;CAAjC,GAlCA,iBAkCA,GAAA,KAAA;;AAIS,cAlCA,iBAkCsB,EAlCH,OAyF/B;AAED;;;AAEG,KAhES,kBAgEA,CAAA,CAAA,CAAA,GAhEwB,CAgExB,SAAA,MAAA,GA/DR,YA+DQ,CAAA,MAAA,EAAA;EAG0B,QAAA,EAlED,oBAkEC,CAAA,MAAA,CAAA;CAArB,CAAA,GAAA,KAAA;;AAAqC,cA9DzC,oBA8DyC,EA9DnB,OA8DmB;AAAlD,KALQ,YAKR,CAAA,CAAA,CAAA,GAL0B,CAK1B,SAAA;EAAY,QAAA,EAJJ,QAII,GAAA,MAAA;EAGH,CANV,QAAA,CAAS,QAAA,CA2BX,EAAA,KAAA,EArB4B;EA0BZ,QAAA,CAAA,EAAA,KAAA,EAAA;CACY,GA9BzB,YA8ByB,CA9BZ,oBA8BY,CA9BS,CA8BT,CAAA,EAAA;EAAf,QAAA,EA9BwC,oBA8BxC,CA9B6D,CA8B7D,CAAA;CACmB,CAAA,GAAA,KAAA;AAAjB,cA5BH,cA4BG,EA5Ba,OA4Bb;;;;AASJ,UAXK,wBAWkB,CAAG,CAAA,CAAA,CAAA;EAM1B,UAAA,EAhBE,cAgBkB,CAhBH,CAgBG,CAAA;EAEpB,YAAA,EAjBI,gBAiBJ,CAjBqB,CAiBrB,CAAA;EAAgB,QAAA,EAhBhB,YAgBgB,CAhBH,CAgBG,CAAA;;;;;;;KARhB,uBAAA,GAA0B;;;;;KAM1B,kCAEA,gBAAgB,mBACxB,uBAAyB,GAAG,yBAAyB"}
1
+ {"version":3,"file":"plugins.d.ts","names":[],"sources":["../../src/plugins.tsx"],"sourcesContent":[],"mappings":";;;;;;;;AAoBA;;AACiB,KADL,gBACK,CAAA,CAAA,CAAA,GADiB,CACjB,SAAA,MAAA,GAAA,MAAA,GAAb,YAAa,CAAA,CAAA,CAAA,GAAA,KAAA;;AAAD,cAIH,mBAJG,EAIkB,OAJlB;AAIhB;AA8BA;AAQA;AA6BY,KArCA,cAqCkB,CAAA,CAAA,CAAA,GArCE,CAqCF,SAAA;EAAM,KAAA,EAAA,GAAA;EACC,GAAA,EAAA,GAAA;CAAjC,GAlCA,iBAkCA,GAAA,KAAA;;AAIS,cAlCA,iBAyFZ,EAzF+B,OAyF/B;AAED;;;AAEG,KAhES,kBAgEA,CAAA,CAAA,CAAA,GAhEwB,CAgExB,SAAA,MAAA,GA/DR,YA+DQ,CAAA,MAAA,EAAA;EAG0B,QAAA,EAlED,oBAkEC,CAAA,MAAA,CAAA;CAArB,CAAA,GAAA,KAAA;;AAAqC,cA9DzC,oBA8DyC,EA9DnB,OA8DmB;AAAlD,KALQ,YAKR,CAAA,CAAA,CAAA,GAL0B,CAK1B,SAAA;EAAY,QAAA,EAJJ,QAII,GAAA,MAAA;EAGH,CANV,QAAA,CAAS,QAAA,CA2BX,EAAA,KAAA,EAAA;EAKgB,QAAA,CAAA,EAAA,KAAA,EAAA;CACY,GA9BzB,YA8ByB,CA9BZ,oBA8BY,CA9BS,CA8BT,CAAA,EAAA;EAAf,QAAA,EA9BwC,oBA8BxC,CA9B6D,CA8B7D,CAAA;CACmB,CAAA,GAAA,KAAA;AAAjB,cA5BH,cA4BG,EA5Ba,OA4Bb;;;;AASJ,UAXK,wBAWkB,CAAG,CAAA,CAAA,CAAA;EAM1B,UAAA,EAhBE,cAgBkB,CAhBH,CAgBG,CAAA;EAEpB,YAAA,EAjBI,gBAiBJ,CAjBqB,CAiBrB,CAAA;EAAgB,QAAA,EAhBhB,YAgBgB,CAhBH,CAgBG,CAAA;;;;;;;KARhB,uBAAA,GAA0B;;;;;KAM1B,kCAEA,gBAAgB,mBACxB,uBAAyB,GAAG,yBAAyB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "preact-intlayer",
3
- "version": "7.1.0-canary.1",
3
+ "version": "7.1.0",
4
4
  "private": false,
5
5
  "description": "Easily internationalize i18n your Preact applications with type-safe multilingual content management.",
6
6
  "keywords": [
@@ -84,13 +84,13 @@
84
84
  "typecheck": "tsc --noEmit --project tsconfig.types.json"
85
85
  },
86
86
  "dependencies": {
87
- "@intlayer/api": "7.1.0-canary.1",
88
- "@intlayer/chokidar": "7.1.0-canary.1",
89
- "@intlayer/config": "7.1.0-canary.1",
90
- "@intlayer/core": "7.1.0-canary.1",
91
- "@intlayer/editor": "7.1.0-canary.1",
92
- "@intlayer/types": "7.1.0-canary.1",
93
- "@intlayer/unmerged-dictionaries-entry": "7.1.0-canary.1"
87
+ "@intlayer/api": "7.1.0",
88
+ "@intlayer/chokidar": "7.1.0",
89
+ "@intlayer/config": "7.1.0",
90
+ "@intlayer/core": "7.1.0",
91
+ "@intlayer/editor": "7.1.0",
92
+ "@intlayer/types": "7.1.0",
93
+ "@intlayer/unmerged-dictionaries-entry": "7.1.0"
94
94
  },
95
95
  "devDependencies": {
96
96
  "@types/node": "24.10.1",
@@ -103,13 +103,13 @@
103
103
  "vitest": "4.0.8"
104
104
  },
105
105
  "peerDependencies": {
106
- "@intlayer/api": "7.1.0-canary.1",
107
- "@intlayer/chokidar": "7.1.0-canary.1",
108
- "@intlayer/config": "7.1.0-canary.1",
109
- "@intlayer/core": "7.1.0-canary.1",
110
- "@intlayer/editor": "7.1.0-canary.1",
111
- "@intlayer/types": "7.1.0-canary.1",
112
- "@intlayer/unmerged-dictionaries-entry": "7.1.0-canary.1",
106
+ "@intlayer/api": "7.1.0",
107
+ "@intlayer/chokidar": "7.1.0",
108
+ "@intlayer/config": "7.1.0",
109
+ "@intlayer/core": "7.1.0",
110
+ "@intlayer/editor": "7.1.0",
111
+ "@intlayer/types": "7.1.0",
112
+ "@intlayer/unmerged-dictionaries-entry": "7.1.0",
113
113
  "preact": ">=8.0.0"
114
114
  },
115
115
  "engines": {