elcrm 0.9.187 → 1.0.0

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 (78) hide show
  1. package/README.md +7 -0
  2. package/dist/index.js +959 -0
  3. package/dist/vite/check-tokens.d.ts +8 -0
  4. package/dist/vite/check-tokens.js +42 -0
  5. package/dist/vite/concat-css.d.ts +8 -0
  6. package/dist/vite/concat-css.js +16 -0
  7. package/dist/vite/discover-lib.d.ts +14 -0
  8. package/dist/vite/discover-lib.js +50 -0
  9. package/dist/vite/plugin-css-scoped.d.ts +30 -0
  10. package/dist/vite/plugin-css-scoped.js +120 -0
  11. package/package.json +69 -55
  12. package/templates/app/index.html +12 -0
  13. package/templates/app/package.json +27 -0
  14. package/templates/app/src/App.tsx +8 -0
  15. package/templates/app/src/index.css +19 -0
  16. package/templates/app/src/main.tsx +10 -0
  17. package/templates/app/src/vite-env.d.ts +1 -0
  18. package/templates/app/tsconfig.json +21 -0
  19. package/templates/app/tsconfig.node.json +12 -0
  20. package/templates/app/vite.config.ts +6 -0
  21. package/templates/lib/package.json +48 -0
  22. package/templates/lib/src/Example.tsx +10 -0
  23. package/templates/lib/src/index.ts +1 -0
  24. package/templates/lib/tsconfig.json +16 -0
  25. package/templates/lib/vite.config.ts +32 -0
  26. package/templates/panel/README.md +46 -0
  27. package/templates/panel/api/data/.gitkeep +0 -0
  28. package/templates/panel/api/package.json +21 -0
  29. package/templates/panel/api/src/config.ts +49 -0
  30. package/templates/panel/api/src/index.ts +82 -0
  31. package/templates/panel/api/src/lib/cron.ts +10 -0
  32. package/templates/panel/api/src/lib/db.ts +55 -0
  33. package/templates/panel/api/src/lib/jwt.ts +19 -0
  34. package/templates/panel/api/src/routes/auth.ts +102 -0
  35. package/templates/panel/api/src/routes/deploy.ts +16 -0
  36. package/templates/panel/api/src/routes/index.ts +16 -0
  37. package/templates/panel/package.json +20 -0
  38. package/templates/panel/scripts/dev.ts +33 -0
  39. package/templates/panel/web/.env.example +3 -0
  40. package/templates/panel/web/index.html +28 -0
  41. package/templates/panel/web/package.json +39 -0
  42. package/templates/panel/web/src/App.tsx +32 -0
  43. package/templates/panel/web/src/component/Header.tsx +103 -0
  44. package/templates/panel/web/src/lazyRoute.ts +4 -0
  45. package/templates/panel/web/src/lib/routeKey.ts +9 -0
  46. package/templates/panel/web/src/lib/theme.ts +39 -0
  47. package/templates/panel/web/src/main.tsx +71 -0
  48. package/templates/panel/web/src/modules/Account/index.tsx +39 -0
  49. package/templates/panel/web/src/modules/Account/router.sections.ts +9 -0
  50. package/templates/panel/web/src/modules/Account/sections/Profile.tsx +76 -0
  51. package/templates/panel/web/src/modules/Account/sections/Sessions.tsx +17 -0
  52. package/templates/panel/web/src/modules/Home/index.tsx +56 -0
  53. package/templates/panel/web/src/modules/Home/modal/Demo.tsx +19 -0
  54. package/templates/panel/web/src/modules/List/index.tsx +49 -0
  55. package/templates/panel/web/src/modules/List/router.sections.ts +10 -0
  56. package/templates/panel/web/src/modules/List/sections/Basic.tsx +42 -0
  57. package/templates/panel/web/src/modules/List/sections/Horizontal.tsx +21 -0
  58. package/templates/panel/web/src/modules/List/sections/Rows.tsx +61 -0
  59. package/templates/panel/web/src/modules/List/style.css +60 -0
  60. package/templates/panel/web/src/modules/Settings/index.tsx +37 -0
  61. package/templates/panel/web/src/modules/Settings/router.sections.ts +19 -0
  62. package/templates/panel/web/src/modules/Settings/sections/Appearance.tsx +39 -0
  63. package/templates/panel/web/src/modules/Settings/sections/General.tsx +47 -0
  64. package/templates/panel/web/src/modules/Settings/sections/Profile.tsx +82 -0
  65. package/templates/panel/web/src/pages/Auth.tsx +85 -0
  66. package/templates/panel/web/src/pages/Main.tsx +32 -0
  67. package/templates/panel/web/src/router-data.d.ts +14 -0
  68. package/templates/panel/web/src/state.ts +48 -0
  69. package/templates/panel/web/src/style/elcrm.css +24 -0
  70. package/templates/panel/web/src/style/theme-dark.css +178 -0
  71. package/templates/panel/web/src/style/theme-light.css +178 -0
  72. package/templates/panel/web/src/style/theme.css +174 -0
  73. package/templates/panel/web/src/vite-env.d.ts +12 -0
  74. package/templates/panel/web/tsconfig.json +19 -0
  75. package/templates/panel/web/vite.config.ts +15 -0
  76. package/dist/index.d.ts +0 -32
  77. package/dist/index.es.js +0 -25
  78. package/dist/index.umd.js +0 -1
package/README.md CHANGED
@@ -0,0 +1,7 @@
1
+ # elcrm
2
+
3
+ CLI для экосистемы `@elcrm/*`: обновление зависимостей, шаблоны проектов, миграции и проверка стандартов.
4
+
5
+ ## Лицензия
6
+
7
+ MIT © MaSkal