@antibusy/strapi-plugin-content-manager-sort 1.1.7 → 1.1.8
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
|
@@ -4,14 +4,18 @@ Automatically groups related content types in the Strapi Content Manager sidebar
|
|
|
4
4
|
|
|
5
5
|
## Package Moved
|
|
6
6
|
|
|
7
|
-
The package has moved from
|
|
7
|
+
The package has moved from `@xbstracts/strapi-plugin-content-manager-sort` to `@antibusy/strapi-plugin-content-manager-sort`. Please use the new package name for future installs and updates.
|
|
8
|
+
|
|
9
|
+
## Compatibility
|
|
10
|
+
|
|
11
|
+
This plugin supports Strapi v5 with the peer dependency range `@strapi/strapi >=5.0.0 <6.0.0`.
|
|
8
12
|
|
|
9
13
|
## Installation
|
|
10
14
|
|
|
11
15
|
Install the plugin via npm:
|
|
12
16
|
|
|
13
17
|
```bash
|
|
14
|
-
npm install strapi-plugin-content-manager-sort
|
|
18
|
+
npm install @antibusy/strapi-plugin-content-manager-sort
|
|
15
19
|
```
|
|
16
20
|
|
|
17
21
|
Then enable the plugin in your `config/plugins.ts` (see Configuration section below).
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.1.
|
|
2
|
+
"version": "1.1.8",
|
|
3
3
|
"keywords": [
|
|
4
4
|
"strapi",
|
|
5
5
|
"strapi plugin",
|
|
@@ -42,12 +42,11 @@
|
|
|
42
42
|
"watch": "strapi-plugin watch",
|
|
43
43
|
"watch:link": "strapi-plugin watch:link",
|
|
44
44
|
"verify": "strapi-plugin verify",
|
|
45
|
-
"test:ts:front": "
|
|
46
|
-
"test:ts:back": "
|
|
45
|
+
"test:ts:front": "tsc -p admin/tsconfig.json --noEmit",
|
|
46
|
+
"test:ts:back": "tsc -p server/tsconfig.json --noEmit"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"js-cookie": "^3.0.5"
|
|
50
|
-
"react-intl": "^8.0.1"
|
|
49
|
+
"js-cookie": "^3.0.5"
|
|
51
50
|
},
|
|
52
51
|
"devDependencies": {
|
|
53
52
|
"@strapi/design-system": "^2.0.0-rc.30",
|
|
@@ -55,11 +54,12 @@
|
|
|
55
54
|
"@strapi/strapi": "^5.32.0",
|
|
56
55
|
"@strapi/sdk-plugin": "^5.3.2",
|
|
57
56
|
"@strapi/typescript-utils": "^5.32.0",
|
|
58
|
-
"@types/react": "^
|
|
59
|
-
"@types/react-dom": "^
|
|
57
|
+
"@types/react": "^18.3.31",
|
|
58
|
+
"@types/react-dom": "^18.3.7",
|
|
60
59
|
"prettier": "^3.6.2",
|
|
61
60
|
"react": "^18.3.1",
|
|
62
61
|
"react-dom": "^18.3.1",
|
|
62
|
+
"react-intl": "^7.1.14",
|
|
63
63
|
"react-router-dom": "^6.30.1",
|
|
64
64
|
"styled-components": "^6.1.19",
|
|
65
65
|
"typescript": "^5.9.2"
|
|
@@ -72,14 +72,14 @@
|
|
|
72
72
|
"@esbuild/win32-x64": "^0.20.2"
|
|
73
73
|
},
|
|
74
74
|
"peerDependencies": {
|
|
75
|
-
"@strapi/design-system": "
|
|
76
|
-
"@strapi/icons": "
|
|
77
|
-
"@strapi/strapi": "
|
|
78
|
-
"
|
|
79
|
-
"react": "^18.
|
|
80
|
-
"react-
|
|
81
|
-
"react-router-dom": "^6.
|
|
82
|
-
"styled-components": "^6.
|
|
75
|
+
"@strapi/design-system": ">=2.0.0-rc.11 <3.0.0",
|
|
76
|
+
"@strapi/icons": ">=2.0.0-rc.11 <3.0.0",
|
|
77
|
+
"@strapi/strapi": ">=5.0.0 <6.0.0",
|
|
78
|
+
"react": "^17.0.0 || ^18.0.0",
|
|
79
|
+
"react-dom": "^17.0.0 || ^18.0.0",
|
|
80
|
+
"react-intl": "^6.6.2 || ^7.0.0",
|
|
81
|
+
"react-router-dom": "^6.0.0",
|
|
82
|
+
"styled-components": "^6.0.0"
|
|
83
83
|
},
|
|
84
84
|
"strapi": {
|
|
85
85
|
"kind": "plugin",
|