strapi-plugin-copy-any-component 1.0.0 → 1.0.2
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 +4 -4
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Copy Any Component Plugin for Strapi 5
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/strapi-plugin-copy-any-component)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
5
|
|
|
6
6
|
A powerful Strapi plugin that allows you to copy and reorder components (sections) between pages using an intuitive drag-and-drop interface. **No code required!** Works with any content type and dynamic zone.
|
|
@@ -58,14 +58,14 @@ Settings are **automatically saved** and persist even after Strapi restarts! No
|
|
|
58
58
|
### NPM Install (Recommended)
|
|
59
59
|
|
|
60
60
|
```bash
|
|
61
|
-
npm install
|
|
61
|
+
npm install strapi-plugin-copy-any-component
|
|
62
62
|
```
|
|
63
63
|
|
|
64
64
|
### Manual Install
|
|
65
65
|
|
|
66
66
|
1. **Install the plugin:**
|
|
67
67
|
```bash
|
|
68
|
-
npm install
|
|
68
|
+
npm install strapi-plugin-copy-any-component
|
|
69
69
|
```
|
|
70
70
|
|
|
71
71
|
2. **Register the plugin** in `config/plugins.ts`:
|
|
@@ -73,7 +73,7 @@ npm install @strapi/plugin-copy-any-component
|
|
|
73
73
|
export default () => ({
|
|
74
74
|
'copy-any-component': {
|
|
75
75
|
enabled: true,
|
|
76
|
-
resolve: './node_modules
|
|
76
|
+
resolve: './node_modules/strapi-plugin-copy-any-component',
|
|
77
77
|
// Optional: Set defaults (can be changed via admin panel)
|
|
78
78
|
config: {
|
|
79
79
|
contentType: 'api::page.page',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "strapi-plugin-copy-any-component",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "A powerful Strapi plugin that allows you to copy and reorder components (sections) between pages using an intuitive drag-and-drop interface. Works with any content type and dynamic zone - no code required!",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"strapi",
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
"@strapi/strapi": "^5.0.0"
|
|
52
52
|
},
|
|
53
53
|
"author": {
|
|
54
|
-
"name": "
|
|
55
|
-
"
|
|
54
|
+
"name": "Metehan Kasap",
|
|
55
|
+
"url": "https://github.com/metehankasapp"
|
|
56
56
|
},
|
|
57
57
|
"license": "MIT",
|
|
58
58
|
"engines": {
|