@intlayer/editor-react 5.5.9 → 5.5.11

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.
Files changed (2) hide show
  1. package/README.md +42 -9
  2. package/package.json +11 -9
package/README.md CHANGED
@@ -5,15 +5,48 @@
5
5
  </div>
6
6
 
7
7
  <div align="center">
8
- <a href="https://www.npmjs.com/package/intlayer">
9
- <img alt="npm" src="https://img.shields.io/npm/v/intlayer.svg?labelColor=49516F&color=8994BC" />
10
- </a>
11
- <a href="https://npmjs.org/package/intlayer">
12
- <img alt="downloads" src="https://badgen.net/npm/dm/intlayer?labelColor=49516F&color=8994BC" />
13
- </a>
14
- <a href="https://npmjs.org/package/intlayer">
15
- <img alt="types included" src="https://badgen.net/npm/types/intlayer?labelColor=49516F&color=8994BC"
16
- />
8
+ <a href="https://www.npmjs.com/package/intlayer" target="blank"><img
9
+ align="center"
10
+ alt="npm"
11
+ src="https://img.shields.io/npm/v/intlayer.svg?labelColor=49516F&color=8994BC&style=for-the-badge"
12
+ height="30" /></a>
13
+ <a href="https://npmjs.org/package/intlayer" target="blank"><img
14
+ align="center"
15
+ src="https://img.shields.io/npm/dm/intlayer?labelColor=49516F&color=8994BC&style=for-the-badge"
16
+ alt="monthly downloads"
17
+ height="30"
18
+ /></a>
19
+ <a href="https://npmjs.org/package/intlayer" target="blank"><img
20
+ align="center"
21
+ src="https://img.shields.io/npm/types/intlayer?label=types%20included&labelColor=49516F&color=8994BC&style=for-the-badge"
22
+ alt="types included"
23
+ height="30"
24
+ /></a>
25
+ </div>
26
+
27
+ <div>
28
+ <br/>
29
+ <p align="center">
30
+ <a href="https://www.linkedin.com/company/intlayerorg" target="blank"><img align="center"
31
+ src="https://img.shields.io/badge/linkedin-%231DA1F2.svg?style=for-the-badge&logo=linkedin&logoColor=white"
32
+ alt="Intlayer LinkedIn" height="30"/></a>
33
+ <a href="https://www.facebook.com/intlayer" target="blank"><img align="center"
34
+ src="https://img.shields.io/badge/facebook-4267B2.svg?style=for-the-badge&logo=facebook&logoColor=white"
35
+ alt="Intlayer Facebook" height="30"/></a>
36
+ <a href="https://www.instagram.com/intlayer_org/" target="blank"><img align="center"
37
+ src="https://img.shields.io/badge/instagram-%23E4405F.svg?style=for-the-badge&logo=Instagram&logoColor=white"
38
+ alt="Intlayer Instagram" height="30"/></a>
39
+ <a href="https://x.com/Intlayer183096" target="blank"><img align="center"
40
+ src="https://img.shields.io/badge/x-1DA1F2.svg?style=for-the-badge&logo=x&logoColor=white"
41
+ alt="Intlayer X" height="30"/></a>
42
+ <a href="https://www.youtube.com/@intlayer" target="blank"><img align="center"
43
+ src="https://img.shields.io/badge/youtube-FF0000.svg?style=for-the-badge&logo=youtube&logoColor=white"
44
+ alt="Intlayer YouTube" height="30"/></a>
45
+ <a href="https://www.tiktok.com/@intlayer" target="blank"><img align="center"
46
+ src="https://img.shields.io/badge/tiktok-000000.svg?style=for-the-badge&logo=tiktok&logoColor=white"
47
+ alt="Intlayer TikTok" height="30"/></a>
48
+ <br>
49
+ </p>
17
50
  </div>
18
51
 
19
52
  # @intlayer/editor-react: React States, Contexts, Hooks and Components to interact with the Intlayer editor
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intlayer/editor-react",
3
- "version": "5.5.9",
3
+ "version": "5.5.11",
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": [
@@ -53,9 +53,9 @@
53
53
  ],
54
54
  "dependencies": {
55
55
  "uuid": "^11.1.0",
56
- "@intlayer/core": "5.5.9",
57
- "@intlayer/editor": "5.5.9",
58
- "@intlayer/config": "5.5.9"
56
+ "@intlayer/config": "5.5.11",
57
+ "@intlayer/editor": "5.5.11",
58
+ "@intlayer/core": "5.5.11"
59
59
  },
60
60
  "devDependencies": {
61
61
  "@types/node": "^22.15.30",
@@ -71,16 +71,17 @@
71
71
  "tsc-alias": "^1.8.16",
72
72
  "tsup": "^8.5.0",
73
73
  "typescript": "^5.8.3",
74
+ "vitest": "^3.2.2",
74
75
  "@utils/eslint-config": "1.0.4",
75
76
  "@utils/ts-config": "1.0.4",
76
- "@utils/ts-config-types": "1.0.4",
77
- "@utils/tsup-config": "1.0.4"
77
+ "@utils/tsup-config": "1.0.4",
78
+ "@utils/ts-config-types": "1.0.4"
78
79
  },
79
80
  "peerDependencies": {
80
81
  "react": ">=16.0.0",
81
82
  "react-dom": ">=16.0.0",
82
- "@intlayer/config": "5.5.9",
83
- "@intlayer/core": "5.5.9"
83
+ "@intlayer/config": "5.5.11",
84
+ "@intlayer/core": "5.5.11"
84
85
  },
85
86
  "engines": {
86
87
  "node": ">=14.18"
@@ -100,7 +101,8 @@
100
101
  "prettier:fix": "prettier . --write",
101
102
  "process-files": "ts-node src/transpiler/processFilesCLI.ts --dir $npm_config_dir --extension $npm_config_extension --no-node-snapshot",
102
103
  "reset": "pnpm clean & pnpm build",
103
- "test": "",
104
+ "test": "vitest run",
105
+ "test:watch": "vitest",
104
106
  "typecheck": "tsup --project ./tsconfig.json --noEmit"
105
107
  }
106
108
  }