elcrm 1.1.13 → 1.1.15

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 (51) hide show
  1. package/README.md +1 -1
  2. package/dist/index.js +1982 -1443
  3. package/package.json +3 -3
  4. package/templates/elcrm-cursor/rules/elcrm-jsdoc.mdc +1 -1
  5. package/templates/elcrm-cursor/rules/elcrm-packages.mdc +1 -1
  6. package/templates/elcrm-cursor/rules/elcrm-ui.mdc +3 -1
  7. package/templates/elcrm-docs/BUTTON.elCRM.md +3 -3
  8. package/templates/elcrm-docs/CLI.elCRM.md +26 -12
  9. package/templates/elcrm-docs/COMPONENTS.elCRM.md +18 -10
  10. package/templates/elcrm-docs/FORM.elCRM.md +11 -3
  11. package/templates/elcrm-docs/ICONS.elCRM.md +2 -0
  12. package/templates/elcrm-docs/NOTIFICATIONS.elCRM.md +1 -1
  13. package/templates/elcrm-docs/SERVER.elCRM.md +3 -1
  14. package/templates/orbit/README.md +12 -0
  15. package/templates/orbit/index.html +28 -0
  16. package/templates/orbit/package.json +39 -0
  17. package/templates/orbit/src/App.tsx +34 -0
  18. package/templates/orbit/src/component/Nav.tsx +139 -0
  19. package/templates/orbit/src/lazyRoute.ts +4 -0
  20. package/templates/orbit/src/lib/icon.tsx +48 -0
  21. package/templates/orbit/src/lib/theme.ts +39 -0
  22. package/templates/orbit/src/main.tsx +54 -0
  23. package/templates/orbit/src/modules/Analytics/index.tsx +5 -0
  24. package/templates/orbit/src/modules/Catalog/index.tsx +7 -0
  25. package/templates/orbit/src/modules/Customers/index.tsx +5 -0
  26. package/templates/orbit/src/modules/Finances/index.tsx +5 -0
  27. package/templates/orbit/src/modules/Home/index.tsx +317 -0
  28. package/templates/orbit/src/modules/Integrations/index.tsx +7 -0
  29. package/templates/orbit/src/modules/Link/index.tsx +7 -0
  30. package/templates/orbit/src/modules/Marketing/index.tsx +5 -0
  31. package/templates/orbit/src/modules/Placeholder.tsx +13 -0
  32. package/templates/orbit/src/modules/Settings/index.tsx +22 -0
  33. package/templates/orbit/src/modules/Store/index.tsx +7 -0
  34. package/templates/orbit/src/pages/Auth.tsx +45 -0
  35. package/templates/orbit/src/pages/Main.tsx +29 -0
  36. package/templates/orbit/src/router-data.d.ts +10 -0
  37. package/templates/orbit/src/state.ts +28 -0
  38. package/templates/orbit/src/style/elcrm.css +27 -0
  39. package/templates/orbit/src/style/theme-dark.css +148 -0
  40. package/templates/orbit/src/style/theme-light.css +148 -0
  41. package/templates/orbit/src/style/theme.css +177 -0
  42. package/templates/orbit/src/vite-env.d.ts +1 -0
  43. package/templates/orbit/tsconfig.json +19 -0
  44. package/templates/orbit/vite.config.ts +14 -0
  45. package/templates/panel/README.md +1 -1
  46. package/templates/panel/web/package.json +9 -9
  47. package/templates/panel/web/src/pages/Auth.tsx +1 -1
  48. package/templates/panel/web/src/style/theme-dark.css +9 -32
  49. package/templates/panel/web/src/style/theme-light.css +9 -32
  50. package/templates/panel/web/src/style/theme.css +20 -39
  51. package/templates/panel/web/vite.config.ts +3 -0
package/README.md CHANGED
@@ -6,7 +6,7 @@ CLI для экосистемы `@elcrm/*`: обновление зависим
6
6
  bun i -g elcrm
7
7
  elcrm test # server или front — по package.json (@elcrm/server?)
8
8
  elcrm css # недостающие CSS-токены @elcrm/* в theme-*
9
- elcrm doctor --fix
9
+ elcrm doctor # порядок проекта: migrate + css (без npm update)
10
10
  elcrm update
11
11
  ```
12
12