@yorha2b-lab/autodev 1.0.1 → 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 +10 -0
- package/package.json +1 -1
- package/src/prompts/mock.js +1 -1
- package/templates/react/components/MyBaseForm.js +1 -1
package/README.md
CHANGED
|
@@ -170,4 +170,14 @@ A: 工具本身开源免费,但调用的 AI 模型(如 GPT-4v, Qwen-VL)可
|
|
|
170
170
|
|
|
171
171
|
---
|
|
172
172
|
|
|
173
|
+
## ⚖️ Disclaimer
|
|
174
|
+
|
|
175
|
+
Auto CRUD Copilot is a **fan-made, non-commercial, open-source tool**.
|
|
176
|
+
|
|
177
|
+
- The themes, names (YoRHa, 2B, etc.), and catchphrases included in this project are inspired by **NieR:Automata**, which is a trademark and copyright of **Square Enix Co., Ltd. / PlatinumGames Inc.**
|
|
178
|
+
- This project is not affiliated with, endorsed by, or representative of Square Enix in any way.
|
|
179
|
+
- Please support the original masterpiece: [NieR:Automata Official Site](https://nierautomata.square-enix-games.com/).
|
|
180
|
+
|
|
181
|
+
**Glory to Mankind.**
|
|
182
|
+
|
|
173
183
|
⭐ 如果这个项目对你有帮助,请给个Star支持一下!
|
package/package.json
CHANGED
package/src/prompts/mock.js
CHANGED
|
@@ -3,7 +3,7 @@ import { formNode } from './index'
|
|
|
3
3
|
|
|
4
4
|
export const MyBaseForm = ({ item, form }) => {
|
|
5
5
|
|
|
6
|
-
const renderFormContent = item => {
|
|
6
|
+
const renderFormContent = ({ item }) => {
|
|
7
7
|
|
|
8
8
|
if (!item.name) {
|
|
9
9
|
return typeof item.render === 'function' ? item.render(item) : (item.value ?? '-')
|