@adminforth/clone-row 1.2.6 → 1.2.7
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 +31 -0
- package/package.json +13 -5
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# AdminForth Clone Row Plugin
|
|
2
|
+
|
|
3
|
+
<img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="License: MIT" /> <img src="https://woodpecker.devforth.io/api/badges/3848/status.svg" alt="Build Status" /> <a href="https://www.npmjs.com/package/@adminforth/clone-row"><img src="https://img.shields.io/npm/dm/@adminforth/clone-row" alt="npm downloads" /></a> <a href="https://www.npmjs.com/package/@adminforth/clone-row"><img src="https://img.shields.io/npm/v/@adminforth/clone-row" alt="npm version" /></a>
|
|
4
|
+
|
|
5
|
+
[](https://tluma.ai/ask-ai/devforth/adminforth)
|
|
6
|
+
|
|
7
|
+
Adds one-click row cloning for AdminForth resources.
|
|
8
|
+
|
|
9
|
+
## Features
|
|
10
|
+
|
|
11
|
+
- Duplicate existing records with one click.
|
|
12
|
+
- Reduce repetitive manual data entry in admin flows.
|
|
13
|
+
- Reuse row data as a starting point for new records.
|
|
14
|
+
- Keep cloning actions inside AdminForth resources.
|
|
15
|
+
|
|
16
|
+
## Documentation
|
|
17
|
+
|
|
18
|
+
Full setup and configuration guide:
|
|
19
|
+
|
|
20
|
+
[AdminForth Clone Row Documentation](https://adminforth.dev/docs/tutorial/Plugins/clone-row/)
|
|
21
|
+
|
|
22
|
+
## About AdminForth
|
|
23
|
+
|
|
24
|
+
AdminForth is an open-source, agent-first admin framework for building robust admin panels and back-office applications faster.
|
|
25
|
+
|
|
26
|
+
## Related links
|
|
27
|
+
|
|
28
|
+
- [AdminForth website](https://adminforth.dev)
|
|
29
|
+
- [npm package](https://www.npmjs.com/package/@adminforth/clone-row)
|
|
30
|
+
- [More AdminForth plugins](https://adminforth.dev/docs/tutorial/ListOfPlugins/)
|
|
31
|
+
- [Built by DevForth](https://devforth.io)
|
package/package.json
CHANGED
|
@@ -1,28 +1,36 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adminforth/clone-row",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.7",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"type": "module",
|
|
7
|
+
"homepage": "https://adminforth.dev/docs/tutorial/Plugins/clone-row/",
|
|
7
8
|
"publishConfig": {
|
|
8
9
|
"access": "public"
|
|
9
10
|
},
|
|
10
11
|
"scripts": {
|
|
11
12
|
"build": "tsc && rsync -av --exclude 'node_modules' custom dist/"
|
|
12
13
|
},
|
|
13
|
-
"keywords": [
|
|
14
|
+
"keywords": [
|
|
15
|
+
"adminforth",
|
|
16
|
+
"record-cloning",
|
|
17
|
+
"row-duplication",
|
|
18
|
+
"list-actions",
|
|
19
|
+
"form-prefill",
|
|
20
|
+
"productivity"
|
|
21
|
+
],
|
|
14
22
|
"author": "",
|
|
15
23
|
"license": "MIT",
|
|
16
|
-
"description": "",
|
|
24
|
+
"description": "Record cloning plugin for AdminForth with one-click row duplication",
|
|
17
25
|
"devDependencies": {
|
|
18
26
|
"@types/node": "latest",
|
|
19
|
-
"adminforth": "^2.
|
|
27
|
+
"adminforth": "^2.42.0",
|
|
20
28
|
"semantic-release": "^24.2.1",
|
|
21
29
|
"semantic-release-slack-bot": "^4.0.2",
|
|
22
30
|
"typescript": "^5.7.3"
|
|
23
31
|
},
|
|
24
32
|
"peerDependencies": {
|
|
25
|
-
"adminforth": "^2.
|
|
33
|
+
"adminforth": "^2.42.0"
|
|
26
34
|
},
|
|
27
35
|
"release": {
|
|
28
36
|
"plugins": [
|