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.
- package/README.md +7 -0
- package/dist/index.js +959 -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/package.json +69 -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 +46 -0
- package/templates/panel/api/data/.gitkeep +0 -0
- package/templates/panel/api/package.json +21 -0
- package/templates/panel/api/src/config.ts +49 -0
- package/templates/panel/api/src/index.ts +82 -0
- package/templates/panel/api/src/lib/cron.ts +10 -0
- package/templates/panel/api/src/lib/db.ts +55 -0
- package/templates/panel/api/src/lib/jwt.ts +19 -0
- package/templates/panel/api/src/routes/auth.ts +102 -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 +76 -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 +47 -0
- package/templates/panel/web/src/modules/Settings/sections/Profile.tsx +82 -0
- package/templates/panel/web/src/pages/Auth.tsx +85 -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 +24 -0
- package/templates/panel/web/src/style/theme-dark.css +178 -0
- package/templates/panel/web/src/style/theme-light.css +178 -0
- package/templates/panel/web/src/style/theme.css +174 -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