elcrm 1.1.1 → 1.1.3
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 +1 -0
- package/dist/index.js +2986 -916
- package/dist/vite/concat-css.js +13 -1
- package/dist/vite/discover-lib.js +4 -4
- package/dist/vite/plugin-css-scoped.js +2 -2
- package/dist/vite/postbuild.js +13 -1
- package/package.json +4 -3
- package/templates/elcrm-cursor/AGENTS.md +15 -0
- package/templates/elcrm-cursor/rules/elcrm-jsdoc.mdc +89 -0
- package/templates/elcrm-cursor/rules/elcrm-lib.mdc +102 -0
- package/templates/elcrm-cursor/rules/elcrm-module.mdc +25 -0
- package/templates/elcrm-cursor/rules/elcrm-packages.mdc +43 -0
- package/templates/elcrm-cursor/rules/elcrm-rpc.mdc +23 -0
- package/templates/elcrm-cursor/rules/elcrm-server.mdc +30 -0
- package/templates/elcrm-cursor/rules/elcrm-theme.mdc +14 -0
- package/templates/elcrm-cursor/rules/elcrm-tokens.mdc +40 -0
- package/templates/elcrm-cursor/rules/elcrm-ui.mdc +42 -0
- package/templates/elcrm-cursor/rules/elcrm.mdc +43 -0
- package/templates/elcrm-docs/ALERT.elCRM.md +26 -0
- package/templates/elcrm-docs/API.elCRM.md +38 -0
- package/templates/elcrm-docs/BUTTON.elCRM.md +36 -0
- package/templates/elcrm-docs/CLI.elCRM.md +28 -0
- package/templates/elcrm-docs/COMPONENTS.elCRM.md +73 -0
- package/templates/elcrm-docs/FORM.elCRM.md +39 -0
- package/templates/elcrm-docs/ICONS.elCRM.md +40 -0
- package/templates/elcrm-docs/MODAL.elCRM.md +41 -0
- package/templates/elcrm-docs/NOTICE.elCRM.md +31 -0
- package/templates/elcrm-docs/NOTIFICATIONS.elCRM.md +39 -0
- package/templates/elcrm-docs/PASSKEY.elCRM.md +26 -0
- package/templates/elcrm-docs/ROUTER.elCRM.md +34 -0
- package/templates/elcrm-docs/SERVER.elCRM.md +53 -0
- package/templates/elcrm-docs/SOCKET.elCRM.md +34 -0
- package/templates/elcrm-docs/TOOLTIP.elCRM.md +25 -0
- package/templates/panel/web/src/App.tsx +15 -1
- package/templates/panel/web/src/component/Header.tsx +19 -6
- package/templates/panel/web/src/lazyRoute.ts +6 -0
- package/templates/panel/web/src/lib/routeKey.ts +8 -1
- package/templates/panel/web/src/lib/theme.ts +20 -3
- package/templates/panel/web/src/modules/Account/index.tsx +12 -8
- package/templates/panel/web/src/modules/Account/router.sections.ts +5 -3
- package/templates/panel/web/src/modules/Account/sections/Profile.tsx +9 -4
- package/templates/panel/web/src/modules/Account/sections/Sessions.tsx +1 -1
- package/templates/panel/web/src/modules/Home/index.tsx +11 -4
- package/templates/panel/web/src/modules/Home/modal/Demo.tsx +10 -0
- package/templates/panel/web/src/modules/List/index.tsx +12 -11
- package/templates/panel/web/src/modules/List/router.sections.ts +6 -4
- package/templates/panel/web/src/modules/List/sections/Basic.tsx +3 -3
- package/templates/panel/web/src/modules/List/sections/Horizontal.tsx +1 -1
- package/templates/panel/web/src/modules/List/sections/Rows.tsx +6 -3
- package/templates/panel/web/src/modules/Settings/index.tsx +14 -8
- package/templates/panel/web/src/modules/Settings/router.sections.ts +7 -4
- package/templates/panel/web/src/modules/Settings/sections/Appearance.tsx +8 -4
- package/templates/panel/web/src/modules/Settings/sections/General.tsx +5 -1
- package/templates/panel/web/src/modules/Settings/sections/Profile.tsx +5 -1
- package/templates/panel/web/src/pages/Auth.tsx +10 -0
- package/templates/panel/web/src/pages/Main.tsx +7 -1
- package/templates/panel/web/src/state.ts +9 -0
- package/templates/panel/web/src/style/theme-dark.css +57 -90
- package/templates/panel/web/src/style/theme-light.css +57 -90
- package/templates/panel/web/src/style/theme.css +80 -81
package/README.md
CHANGED