strapi-plugin-bulk-editor 0.1.1 → 0.1.3

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 +18 -5
  2. package/package.json +3 -1
package/README.md CHANGED
@@ -1,11 +1,24 @@
1
- # Strapi Plugin: Bulk Editor
1
+ <div align="center">
2
+ <img style="width: 160px; height: auto;" src="https://i.imgur.com/z0LMq7J.png" alt="Logo for Strapi Plugin: Bulk Editor" />
2
3
 
3
- Edit multiple Strapi entries at once in a spreadsheet-like interface.
4
+ <h1>Strapi Plugin: Bulk Editor</h1>
4
5
 
5
- [![Strapi v5](https://img.shields.io/badge/Strapi-v5-blue)](https://strapi.io/five)
6
- [![npm](https://img.shields.io/npm/v/strapi-plugin-bulk-editor)](https://www.npmjs.com/package/strapi-plugin-bulk-editor)
6
+ <a href="https://strapi.io/five"><img src="https://img.shields.io/badge/Strapi-v5-blue" alt="Strapi v5" /></a>
7
+ <a href="https://www.npmjs.com/package/strapi-plugin-bulk-editor"><img src="https://img.shields.io/npm/v/strapi-plugin-bulk-editor" alt="npm" /></a>
7
8
 
8
- ![strapi dashboad with a spreadsheet-like bulk editor modal opened](https://i.imgur.com/ah3PnvA.png)
9
+ <p>Edit multiple Strapi entries at once in a spreadsheet-like interface.</p>
10
+
11
+ <img style="width: 960px; height: auto;" src="https://i.imgur.com/ah3PnvA.png" alt="A screenshot of the Strapi dashboad with a spreadsheet-like bulk editor modal opened" />
12
+ </div>
13
+
14
+ <h1>Get Started</h1>
15
+
16
+ - [Features](#features)
17
+ - [Requirements](#requirements)
18
+ - [Installation](#installation)
19
+ - [Usage](#usage)
20
+ - [Supported Field Types](#supported-field-types)
21
+ - [License](#license)
9
22
 
10
23
  ## Features
11
24
 
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "strapi-plugin-bulk-editor",
3
- "version": "0.1.1",
3
+ "type": "module",
4
+ "version": "0.1.3",
4
5
  "description": "Bulk edit Strapi entries in a spreadsheet-like interface",
5
6
  "license": "MIT",
6
7
  "author": "John Chedeville <hi@jchd.me>",
@@ -23,6 +24,7 @@
23
24
  },
24
25
  "main": "./strapi-server.js",
25
26
  "exports": {
27
+ "./package.json": "./package.json",
26
28
  "./strapi-admin": {
27
29
  "source": "./admin/src/index.tsx",
28
30
  "require": "./strapi-admin.js"