@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 `strapi-plugin-cm-subnav-stacker` to `@xbstracts/strapi-plugin-content-manager-sort`. Please use the new package name for future installs and updates.
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).
@@ -1,2 +1,3 @@
1
- declare const PluginIcon: () => import("react/jsx-runtime").JSX.Element;
1
+ /// <reference types="react" />
2
+ declare const PluginIcon: () => import("react").JSX.Element;
2
3
  export { PluginIcon };
@@ -1,2 +1,3 @@
1
- declare const App: () => import("react/jsx-runtime").JSX.Element;
1
+ /// <reference types="react" />
2
+ declare const App: () => import("react").JSX.Element;
2
3
  export { App };
@@ -1,2 +1,3 @@
1
- declare const HomePage: () => import("react/jsx-runtime").JSX.Element;
1
+ /// <reference types="react" />
2
+ declare const HomePage: () => import("react").JSX.Element;
2
3
  export { HomePage };
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.1.7",
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": "run -T tsc -p admin/tsconfig.json",
46
- "test:ts:back": "run -T tsc -p server/tsconfig.json"
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": "^19.1.10",
59
- "@types/react-dom": "^19.1.7",
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": "^2.0.0-rc.30",
76
- "@strapi/icons": "^2.0.0-rc.30",
77
- "@strapi/strapi": "^5.32.0",
78
- "@strapi/sdk-plugin": "^5.3.2",
79
- "react": "^18.3.1",
80
- "react-dom": "^18.3.1",
81
- "react-router-dom": "^6.30.0",
82
- "styled-components": "^6.1.19"
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",