elcrm 0.9.187 → 1.1.1
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.
- package/README.md +16 -0
- package/dist/index.js +1807 -0
- package/dist/vite/check-tokens.d.ts +8 -0
- package/dist/vite/check-tokens.js +42 -0
- package/dist/vite/concat-css.d.ts +8 -0
- package/dist/vite/concat-css.js +16 -0
- package/dist/vite/discover-lib.d.ts +14 -0
- package/dist/vite/discover-lib.js +50 -0
- package/dist/vite/plugin-css-scoped.d.ts +30 -0
- package/dist/vite/plugin-css-scoped.js +120 -0
- package/dist/vite/postbuild.d.ts +5 -0
- package/dist/vite/postbuild.js +59 -0
- package/package.json +75 -55
- package/templates/app/index.html +12 -0
- package/templates/app/package.json +27 -0
- package/templates/app/src/App.tsx +8 -0
- package/templates/app/src/index.css +19 -0
- package/templates/app/src/main.tsx +10 -0
- package/templates/app/src/vite-env.d.ts +1 -0
- package/templates/app/tsconfig.json +21 -0
- package/templates/app/tsconfig.node.json +12 -0
- package/templates/app/vite.config.ts +6 -0
- package/templates/lib/package.json +48 -0
- package/templates/lib/src/Example.tsx +10 -0
- package/templates/lib/src/index.ts +1 -0
- package/templates/lib/tsconfig.json +16 -0
- package/templates/lib/vite.config.ts +32 -0
- package/templates/panel/README.md +22 -0
- package/templates/panel/api/data/.gitkeep +0 -0
- package/templates/panel/api/package.json +18 -0
- package/templates/panel/api/src/config.ts +49 -0
- package/templates/panel/api/src/index.ts +73 -0
- package/templates/panel/api/src/lib/cron.ts +13 -0
- package/templates/panel/api/src/lib/db.ts +53 -0
- package/templates/panel/api/src/lib/jwt.ts +19 -0
- package/templates/panel/api/src/routes/auth.ts +114 -0
- package/templates/panel/api/src/routes/deploy.ts +16 -0
- package/templates/panel/api/src/routes/index.ts +16 -0
- package/templates/panel/package.json +20 -0
- package/templates/panel/scripts/dev.ts +33 -0
- package/templates/panel/web/.env.example +3 -0
- package/templates/panel/web/index.html +28 -0
- package/templates/panel/web/package.json +39 -0
- package/templates/panel/web/src/App.tsx +32 -0
- package/templates/panel/web/src/component/Header.tsx +103 -0
- package/templates/panel/web/src/lazyRoute.ts +4 -0
- package/templates/panel/web/src/lib/routeKey.ts +9 -0
- package/templates/panel/web/src/lib/theme.ts +39 -0
- package/templates/panel/web/src/main.tsx +71 -0
- package/templates/panel/web/src/modules/Account/index.tsx +39 -0
- package/templates/panel/web/src/modules/Account/router.sections.ts +9 -0
- package/templates/panel/web/src/modules/Account/sections/Profile.tsx +75 -0
- package/templates/panel/web/src/modules/Account/sections/Sessions.tsx +17 -0
- package/templates/panel/web/src/modules/Home/index.tsx +56 -0
- package/templates/panel/web/src/modules/Home/modal/Demo.tsx +19 -0
- package/templates/panel/web/src/modules/List/index.tsx +49 -0
- package/templates/panel/web/src/modules/List/router.sections.ts +10 -0
- package/templates/panel/web/src/modules/List/sections/Basic.tsx +42 -0
- package/templates/panel/web/src/modules/List/sections/Horizontal.tsx +21 -0
- package/templates/panel/web/src/modules/List/sections/Rows.tsx +61 -0
- package/templates/panel/web/src/modules/List/style.css +60 -0
- package/templates/panel/web/src/modules/Settings/index.tsx +37 -0
- package/templates/panel/web/src/modules/Settings/router.sections.ts +19 -0
- package/templates/panel/web/src/modules/Settings/sections/Appearance.tsx +39 -0
- package/templates/panel/web/src/modules/Settings/sections/General.tsx +45 -0
- package/templates/panel/web/src/modules/Settings/sections/Profile.tsx +81 -0
- package/templates/panel/web/src/pages/Auth.tsx +84 -0
- package/templates/panel/web/src/pages/Main.tsx +32 -0
- package/templates/panel/web/src/router-data.d.ts +14 -0
- package/templates/panel/web/src/state.ts +48 -0
- package/templates/panel/web/src/style/elcrm.css +27 -0
- package/templates/panel/web/src/style/theme-dark.css +204 -0
- package/templates/panel/web/src/style/theme-light.css +204 -0
- package/templates/panel/web/src/style/theme.css +196 -0
- package/templates/panel/web/src/vite-env.d.ts +12 -0
- package/templates/panel/web/tsconfig.json +19 -0
- package/templates/panel/web/vite.config.ts +15 -0
- package/dist/index.d.ts +0 -32
- package/dist/index.es.js +0 -25
- package/dist/index.umd.js +0 -1
package/README.md
CHANGED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# elcrm
|
|
2
|
+
|
|
3
|
+
CLI для экосистемы `@elcrm/*`: обновление зависимостей, шаблоны проектов, миграции и проверка стандартов.
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
bun i -g elcrm
|
|
7
|
+
elcrm test # server или front — по package.json (@elcrm/server?)
|
|
8
|
+
elcrm doctor --fix
|
|
9
|
+
elcrm update
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Документация: [DOCS.md](./DOCS.md).
|
|
13
|
+
|
|
14
|
+
## Лицензия
|
|
15
|
+
|
|
16
|
+
MIT © MaSkal
|