@adminforth/foreign-inline-show 1.1.4 → 1.1.6
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 +27 -3
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,7 +1,31 @@
|
|
|
1
|
-
# AdminForth
|
|
1
|
+
# AdminForth ForeignInlineShow Plugin
|
|
2
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/foreign-inline-show"
|
|
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/foreign-inline-show"><img src="https://img.shields.io/npm/dm/@adminforth/foreign-inline-show" alt="npm downloads" /></a> <a href="https://www.npmjs.com/package/@adminforth/foreign-inline-show"><img src="https://img.shields.io/npm/v/@adminforth/foreign-inline-show" alt="npm version" /></a>
|
|
4
|
+
|
|
5
|
+
[](https://tluma.ai/ask-ai/devforth/adminforth)
|
|
4
6
|
|
|
5
7
|
Allows to add an inline show of connected foreign resource records on a adminforth show page.
|
|
6
8
|
|
|
7
|
-
##
|
|
9
|
+
## Features
|
|
10
|
+
|
|
11
|
+
- Show a connected foreign record inline on show pages.
|
|
12
|
+
- Surface related record details in the same view.
|
|
13
|
+
- Reduce back-and-forth between linked resources.
|
|
14
|
+
- Improve context for relational AdminForth screens.
|
|
15
|
+
|
|
16
|
+
## Documentation
|
|
17
|
+
|
|
18
|
+
Full setup and configuration guide:
|
|
19
|
+
|
|
20
|
+
[AdminForth ForeignInlineShow Documentation](https://adminforth.dev/docs/tutorial/Plugins/foreign-inline-show/)
|
|
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/foreign-inline-show)
|
|
30
|
+
- [More AdminForth plugins](https://adminforth.dev/docs/tutorial/ListOfPlugins/)
|
|
31
|
+
- [Built by DevForth](https://devforth.io)
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adminforth/foreign-inline-show",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
4
4
|
"description": "AdminForth plugin for adding show of parent item to the child items show page",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"type": "module",
|
|
8
|
-
"homepage": "https://adminforth.dev/docs/tutorial/Plugins/
|
|
8
|
+
"homepage": "https://adminforth.dev/docs/tutorial/Plugins/foreign-inline-show/",
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "tsc && rsync -av --exclude 'node_modules' custom dist/"
|
|
11
11
|
},
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
"license": "MIT",
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@types/node": "^22.10.7",
|
|
24
|
-
"adminforth": "^2.
|
|
24
|
+
"adminforth": "^2.50.0",
|
|
25
25
|
"semantic-release": "^24.2.1",
|
|
26
26
|
"semantic-release-slack-bot": "^4.0.2",
|
|
27
27
|
"typescript": "^5.7.3"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"adminforth": "^2.
|
|
30
|
+
"adminforth": "^2.50.0"
|
|
31
31
|
},
|
|
32
32
|
"release": {
|
|
33
33
|
"plugins": [
|