Rafał Dzięgielewski
Rafał Dzięgielewski
Currently AdminJS doesn't use defaults at all, they're handled entirely by ORM/ODM. On the other hand, some of our adapters use `required` option to determine whether to force that field...
The bundles are minified only if your `NODE_ENV` is `production`. Nevertheless, design system bundle is still huge. I've recently done some changes which reduce the production bundle size from 6-7MB...
I would suggest setting `NODE_ENV` before starting your app: https://stackoverflow.com/questions/9249830/how-can-i-set-node-env-production-on-windows The minified and development bundles of `global.bundle.js`, `app.bundle.js` and `design-system.bundle.js` are all included in the packages you install and the...
Mongoose should set your `level` to 1 if you leave the form field empty, but the form is not autofilled with your ORM's/ODM's defaults.
Potential implementation: - add `href` option to `Action` config - `handler` should be optional - if `href` is specified but `handler` isn't, the UI button should simply open the link
There's currently an adapter for Objection which uses Knex internally, there's also an unofficial adapter made by @wirekang for MySQL. I'll close this issue as Bookshelf's adapter is not planned...
We've updated Typescript version in all AdminJS packages with the release of version 7 and we're not seeing any type errors. If you're still experiencing type issues, please open a...
Closing because we've updated the documentation: https://docs.adminjs.co
TODO: Verify if this is still an issue in version 7. If yes, all components should be additionally exported via `adminjs/components` or `adminjs/ui` namespace.
After https://github.com/SoftwareBrothers/adminjs/pull/1520 is merged you should be able to: ``` import { New } from 'adminjs' ```