@applica-software-guru/react-admin 1.0.57 → 1.0.59

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.
Files changed (79) hide show
  1. package/.eslintrc.json +3 -0
  2. package/README.md +14 -0
  3. package/dist/ApplicaAdmin.d.ts +68 -2
  4. package/dist/ApplicaAdmin.d.ts.map +1 -1
  5. package/dist/components/MainIcon.d.ts.map +1 -1
  6. package/dist/components/index.d.ts +1 -0
  7. package/dist/components/index.d.ts.map +1 -1
  8. package/dist/components/ra-pages/LoginPage/AuthCard.d.ts +12 -0
  9. package/dist/components/ra-pages/LoginPage/AuthCard.d.ts.map +1 -0
  10. package/dist/components/ra-pages/LoginPage/AuthLogin.d.ts +6 -0
  11. package/dist/components/ra-pages/LoginPage/AuthLogin.d.ts.map +1 -0
  12. package/dist/components/ra-pages/LoginPage/AuthWrapper.d.ts +15 -0
  13. package/dist/components/ra-pages/LoginPage/AuthWrapper.d.ts.map +1 -0
  14. package/dist/components/ra-pages/LoginPage/Login.d.ts +34 -0
  15. package/dist/components/ra-pages/LoginPage/Login.d.ts.map +1 -0
  16. package/dist/components/ra-pages/LoginPage/index.d.ts +3 -0
  17. package/dist/components/ra-pages/LoginPage/index.d.ts.map +1 -0
  18. package/dist/components/ra-pages/index.d.ts +3 -0
  19. package/dist/components/ra-pages/index.d.ts.map +1 -0
  20. package/dist/react-admin.cjs.js +48 -48
  21. package/dist/react-admin.cjs.js.map +1 -1
  22. package/dist/react-admin.es.js +7158 -7078
  23. package/dist/react-admin.es.js.map +1 -1
  24. package/dist/react-admin.umd.js +50 -50
  25. package/dist/react-admin.umd.js.map +1 -1
  26. package/index.html +13 -0
  27. package/package.json +5 -6
  28. package/src/ApplicaAdmin.tsx +83 -60
  29. package/src/components/MainIcon.jsx +4 -3
  30. package/src/components/index.jsx +1 -0
  31. package/src/components/ra-pages/LoginPage/AuthCard.jsx +33 -0
  32. package/src/components/ra-pages/LoginPage/AuthLogin.jsx +79 -0
  33. package/src/components/ra-pages/LoginPage/AuthWrapper.jsx +46 -0
  34. package/src/components/ra-pages/LoginPage/Login.tsx +61 -0
  35. package/src/components/ra-pages/LoginPage/index.jsx +3 -0
  36. package/src/components/ra-pages/index.ts +3 -0
  37. package/src/main.tsx +10 -0
  38. package/{playground/src/App.js → src/playground/App.jsx} +4 -2
  39. package/{playground/src/components/index.js → src/playground/components/index.jsx} +1 -0
  40. package/{playground/src/components/ra-lists/DeviceList.js → src/playground/components/ra-lists/DeviceList.jsx} +1 -1
  41. package/{playground/src/config.js → src/playground/config.jsx} +1 -1
  42. package/{playground/src/entities/device.js → src/playground/entities/device.jsx} +1 -1
  43. package/{playground/src/entities/i18n-message.js → src/playground/entities/i18n-message.jsx} +1 -1
  44. package/{playground/src/entities/user.js → src/playground/entities/user.jsx} +2 -2
  45. package/src/playground/hooks/index.jsx +1 -0
  46. package/{playground/src/theme.js → src/playground/theme.jsx} +1 -1
  47. package/vite.config.js +5 -0
  48. package/playground/config-overrides.js +0 -31
  49. package/playground/jsconfig.json +0 -9
  50. package/playground/package-lock.json +0 -17777
  51. package/playground/package.json +0 -69
  52. package/playground/public/favicon-dark.png +0 -0
  53. package/playground/public/favicon-light.png +0 -0
  54. package/playground/public/index.html +0 -46
  55. package/playground/src/hooks/index.js +0 -1
  56. package/playground/src/react-app-env.d.js +0 -1
  57. /package/{playground/src → src/playground}/.prettierrc +0 -0
  58. /package/{playground/src → src/playground}/build.json +0 -0
  59. /package/{playground/src → src/playground}/components/pages/CustomPage.jsx +0 -0
  60. /package/{playground/src → src/playground}/components/pages/index.jsx +0 -0
  61. /package/{playground/src/components/ra-buttons/index.js → src/playground/components/ra-buttons/index.jsx} +0 -0
  62. /package/{playground/src/components/ra-fields/UserPictureField.js → src/playground/components/ra-fields/UserPictureField.jsx} +0 -0
  63. /package/{playground/src/components/ra-fields/index.js → src/playground/components/ra-fields/index.jsx} +0 -0
  64. /package/{playground/src/components/ra-forms/DeviceForm.js → src/playground/components/ra-forms/DeviceForm.jsx} +0 -0
  65. /package/{playground/src/components/ra-forms/I18nMessageForm.js → src/playground/components/ra-forms/I18nMessageForm.jsx} +0 -0
  66. /package/{playground/src/components/ra-forms/UserForm.js → src/playground/components/ra-forms/UserForm.jsx} +0 -0
  67. /package/{playground/src/components/ra-forms/index.js → src/playground/components/ra-forms/index.jsx} +0 -0
  68. /package/{playground/src/components/ra-inputs/LangSelectInput.js → src/playground/components/ra-inputs/LangSelectInput.jsx} +0 -0
  69. /package/{playground/src/components/ra-inputs/YesOrNoSelectInput.js → src/playground/components/ra-inputs/YesOrNoSelectInput.jsx} +0 -0
  70. /package/{playground/src/components/ra-inputs/index.js → src/playground/components/ra-inputs/index.jsx} +0 -0
  71. /package/{playground/src/components/ra-lists/I18nMessageList.js → src/playground/components/ra-lists/I18nMessageList.jsx} +0 -0
  72. /package/{playground/src/components/ra-lists/UserList.js → src/playground/components/ra-lists/UserList.jsx} +0 -0
  73. /package/{playground/src/components/ra-lists/index.js → src/playground/components/ra-lists/index.jsx} +0 -0
  74. /package/{playground/src/contexts/index.js → src/playground/contexts/index.jsx} +0 -0
  75. /package/{playground/src/entities/index.js → src/playground/entities/index.jsx} +0 -0
  76. /package/{playground/src/entities/notification.js → src/playground/entities/notification.jsx} +0 -0
  77. /package/{playground/src/index.js → src/playground/index.jsx} +0 -0
  78. /package/{playground/src/menu.js → src/playground/menu.jsx} +0 -0
  79. /package/{playground/src/reportWebVitals.js → src/playground/reportWebVitals.jsx} +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.