Skip to content

Commit 3b3e411

Browse files
committed
fix: update dependencies and delete import-export plugin from users.ts
1 parent daefcd1 commit 3b3e411

File tree

3 files changed

+68
-62
lines changed

3 files changed

+68
-62
lines changed

live-demo/app/package-lock.json

Lines changed: 58 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

live-demo/app/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@
1616
"author": "",
1717
"description": "",
1818
"dependencies": {
19-
"@adminforth/audit-log": "^1.0.42",
19+
"@adminforth/audit-log": "^1.2.0",
2020
"@adminforth/chat-gpt": "^1.0.20",
2121
"@adminforth/completion-adapter-open-ai-chat-gpt": "^1.0.2",
22-
"@adminforth/email-password-reset": "^1.0.5",
22+
"@adminforth/email-password-reset": "^1.1.0",
2323
"@adminforth/foreign-inline-list": "^1.3.1",
24-
"@adminforth/i18n": "^1.0.23-next.0",
25-
"@adminforth/import-export": "^1.0.2",
26-
"@adminforth/rich-editor": "^1.0.16",
27-
"@adminforth/two-factors-auth": "^1.0.21",
28-
"@adminforth/upload": "^1.2.0",
29-
"@prisma/client": "^6.1.0",
30-
"adminforth": "^1.11.5-next.14",
24+
"@adminforth/i18n": "^1.2.4",
25+
"@adminforth/import-export": "^1.3.1",
26+
"@adminforth/rich-editor": "^1.2.2",
27+
"@adminforth/two-factors-auth": "^1.1.2",
28+
"@adminforth/upload": "^1.4.1",
29+
"@prisma/client": "^6.6.0",
30+
"adminforth": "^1.16.1",
3131
"better-sqlite3": "^10.0.0",
3232
"express": "^4.19.2"
3333
},

live-demo/app/resources/users.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
import AdminForth, { AdminForthDataTypes, AdminForthResourceColumn, AdminForthResourceInput } from 'adminforth';
2-
import importExport from '@adminforth/import-export';
1+
import AdminForth, { AdminForthDataTypes, AdminForthResourceColumn } from 'adminforth';
32
import ForeignInlineListPlugin from '@adminforth/foreign-inline-list';
43
import { randomUUID } from 'crypto';
54

@@ -16,7 +15,6 @@ export default {
1615
label: 'Users',
1716
recordLabel: (r) => `👤 ${r.email}`,
1817
plugins: [
19-
new importExport({}),
2018
new ForeignInlineListPlugin({
2119
foreignResourceId: 'aparts',
2220
modifyTableResourceConfig: (resourceConfig: AdminForthResource) => {

0 commit comments

Comments
 (0)