@intlayer/editor-react 7.1.3 → 7.1.4
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.
package/README.md
CHANGED
|
@@ -247,9 +247,6 @@ You can also follow us on :
|
|
|
247
247
|
<a href="https://www.linkedin.com/company/intlayerorg" target="blank" rel='noopener noreferrer nofollow'><img align="center"
|
|
248
248
|
src="https://img.shields.io/badge/linkedin-%231DA1F2.svg?style=for-the-badge&logo=linkedin&logoColor=white"
|
|
249
249
|
alt="Intlayer LinkedIn" height="30"/></a>
|
|
250
|
-
<a href="https://www.facebook.com/intlayer" target="blank" rel='noopener noreferrer nofollow'><img align="center"
|
|
251
|
-
src="https://img.shields.io/badge/facebook-4267B2.svg?style=for-the-badge&logo=facebook&logoColor=white"
|
|
252
|
-
alt="Intlayer Facebook" height="30"/></a>
|
|
253
250
|
<a href="https://www.instagram.com/intlayer/" target="blank" rel='noopener noreferrer nofollow'><img align="center"
|
|
254
251
|
src="https://img.shields.io/badge/instagram-%23E4405F.svg?style=for-the-badge&logo=Instagram&logoColor=white"
|
|
255
252
|
alt="Intlayer Instagram" height="30"/></a>
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react5 from "react";
|
|
2
2
|
import { FC, PropsWithChildren } from "react";
|
|
3
3
|
import { IntlayerConfig } from "@intlayer/types";
|
|
4
4
|
|
|
5
5
|
//#region src/ConfigurationContext.d.ts
|
|
6
|
-
declare const useConfigurationState: () => [IntlayerConfig,
|
|
6
|
+
declare const useConfigurationState: () => [IntlayerConfig, react5.Dispatch<react5.SetStateAction<IntlayerConfig>>, () => void];
|
|
7
7
|
type ConfigurationProviderProps = {
|
|
8
8
|
configuration?: IntlayerConfig;
|
|
9
9
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { CrossFrameStateOptions } from "./useCrossFrameState.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react0 from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/useCrossURLPathState.d.ts
|
|
5
|
-
declare const useCrossURLPathState: (initialState?: string, options?: CrossFrameStateOptions) => [string,
|
|
6
|
-
declare const useCrossURLPathSetter: (initialState?: string) => [string,
|
|
5
|
+
declare const useCrossURLPathState: (initialState?: string, options?: CrossFrameStateOptions) => [string, react0.Dispatch<react0.SetStateAction<string>>, () => void];
|
|
6
|
+
declare const useCrossURLPathSetter: (initialState?: string) => [string, react0.Dispatch<react0.SetStateAction<string>>, () => void];
|
|
7
7
|
//#endregion
|
|
8
8
|
export { useCrossURLPathSetter, useCrossURLPathState };
|
|
9
9
|
//# sourceMappingURL=useCrossURLPathState.d.ts.map
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react3 from "react";
|
|
2
2
|
import { Locale } from "@intlayer/types";
|
|
3
3
|
|
|
4
4
|
//#region src/useEditorLocale.d.ts
|
|
5
5
|
declare const useEditorLocale: () => Locale;
|
|
6
|
-
declare const useSetEditorLocale: () => [Locale,
|
|
6
|
+
declare const useSetEditorLocale: () => [Locale, react3.Dispatch<react3.SetStateAction<Locale>>, () => void];
|
|
7
7
|
//#endregion
|
|
8
8
|
export { useEditorLocale, useSetEditorLocale };
|
|
9
9
|
//# sourceMappingURL=useEditorLocale.d.ts.map
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { FileContent } from "./FocusDictionaryContext.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react9 from "react";
|
|
3
3
|
import { KeyPath } from "@intlayer/types";
|
|
4
4
|
|
|
5
5
|
//#region src/useFocusUnmergedDictionary.d.ts
|
|
6
6
|
declare const useFocusUnmergedDictionary: () => {
|
|
7
7
|
focusedContent: FileContent;
|
|
8
|
-
setFocusedContent:
|
|
8
|
+
setFocusedContent: react9.Dispatch<react9.SetStateAction<FileContent>>;
|
|
9
9
|
setFocusedContentKeyPath: (keyPath: KeyPath[]) => void;
|
|
10
10
|
};
|
|
11
11
|
//#endregion
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intlayer/editor-react",
|
|
3
|
-
"version": "7.1.
|
|
3
|
+
"version": "7.1.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Provides the states, contexts, hooks and components to interact with the Intlayer editor for a React application",
|
|
6
6
|
"keywords": [
|
|
@@ -70,11 +70,11 @@
|
|
|
70
70
|
"typecheck": "tsc --noEmit --project tsconfig.types.json"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@intlayer/config": "7.1.
|
|
74
|
-
"@intlayer/core": "7.1.
|
|
75
|
-
"@intlayer/editor": "7.1.
|
|
76
|
-
"@intlayer/types": "7.1.
|
|
77
|
-
"@intlayer/unmerged-dictionaries-entry": "7.1.
|
|
73
|
+
"@intlayer/config": "7.1.4",
|
|
74
|
+
"@intlayer/core": "7.1.4",
|
|
75
|
+
"@intlayer/editor": "7.1.4",
|
|
76
|
+
"@intlayer/types": "7.1.4",
|
|
77
|
+
"@intlayer/unmerged-dictionaries-entry": "7.1.4"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
80
|
"@types/node": "24.10.1",
|