├── .all-contributorsrc ├── .editorconfig ├── .eslintrc.yml ├── .github └── workflows │ └── ghpages.yml ├── .gitignore ├── .npmrc ├── .vscode └── settings.json ├── CONTRIBUTION.md ├── LICENSE ├── README.md ├── index.html ├── package.json ├── pnpm-lock.yaml ├── src ├── assets │ ├── Icon.png │ ├── LOGO-fixing.svg │ └── logo.png ├── components │ ├── Alert │ │ ├── index.tsx │ │ └── style.scss │ ├── Button │ │ ├── index.tsx │ │ └── style.scss │ ├── ButtonSelect │ │ ├── index.tsx │ │ └── style.scss │ ├── Card │ │ ├── index.tsx │ │ └── style.scss │ ├── Checkbox │ │ ├── index.tsx │ │ └── style.scss │ ├── Drawer │ │ └── index.tsx │ ├── Header │ │ ├── index.tsx │ │ └── style.scss │ ├── Icon │ │ └── index.tsx │ ├── Input │ │ ├── index.tsx │ │ └── style.scss │ ├── Loading │ │ ├── Spinner │ │ │ ├── index.tsx │ │ │ └── style.scss │ │ ├── index.tsx │ │ └── style.scss │ ├── Message │ │ ├── index.tsx │ │ └── style.scss │ ├── Modal │ │ ├── index.tsx │ │ └── style.scss │ ├── Select │ │ ├── index.tsx │ │ └── style.scss │ ├── Switch │ │ ├── index.tsx │ │ └── style.scss │ ├── Tag │ │ ├── index.tsx │ │ └── style.scss │ ├── Tags │ │ ├── index.tsx │ │ └── style.scss │ └── index.ts ├── containers │ ├── App.tsx │ ├── Connections │ │ ├── Devices │ │ │ ├── index.tsx │ │ │ └── style.scss │ │ ├── Info │ │ │ └── index.tsx │ │ ├── index.tsx │ │ ├── store.ts │ │ └── style.scss │ ├── ExternalControllerDrawer │ │ ├── index.tsx │ │ └── style.scss │ ├── Logs │ │ ├── index.tsx │ │ └── style.scss │ ├── Overview │ │ └── index.tsx │ ├── Proxies │ │ ├── components │ │ │ ├── Group │ │ │ │ ├── index.tsx │ │ │ │ └── style.scss │ │ │ ├── Provider │ │ │ │ ├── index.tsx │ │ │ │ └── style.scss │ │ │ ├── Proxy │ │ │ │ ├── index.tsx │ │ │ │ └── style.scss │ │ │ └── index.ts │ │ ├── index.tsx │ │ └── style.scss │ ├── Rules │ │ ├── Provider │ │ │ ├── index.tsx │ │ │ └── style.scss │ │ ├── index.tsx │ │ └── style.scss │ ├── Settings │ │ ├── index.tsx │ │ └── style.scss │ └── Sidebar │ │ ├── index.tsx │ │ └── style.scss ├── i18n │ ├── en_US.ts │ ├── index.ts │ └── zh_CN.ts ├── index.ts ├── lib │ ├── date.ts │ ├── event.ts │ ├── helper.ts │ ├── hook.ts │ ├── ip.ts │ ├── jotai.ts │ ├── jsBridge.ts │ ├── request.ts │ ├── streamer.ts │ └── type.ts ├── models │ ├── BaseProps.ts │ ├── Cipher.ts │ ├── Config.ts │ ├── Log.ts │ ├── Rule.ts │ └── index.ts ├── render.tsx ├── stores │ ├── index.ts │ ├── jotai.ts │ └── request.ts └── styles │ ├── common.scss │ ├── iconfont.scss │ └── variables.scss ├── tsconfig.json ├── uno.config.ts └── vite.config.ts /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/workflows/ghpages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/.github/workflows/ghpages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | strict-peer-dependencies=false 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/CONTRIBUTION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/assets/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/assets/Icon.png -------------------------------------------------------------------------------- /src/assets/LOGO-fixing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/assets/LOGO-fixing.svg -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/Alert/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Alert/index.tsx -------------------------------------------------------------------------------- /src/components/Alert/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Alert/style.scss -------------------------------------------------------------------------------- /src/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Button/index.tsx -------------------------------------------------------------------------------- /src/components/Button/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Button/style.scss -------------------------------------------------------------------------------- /src/components/ButtonSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/ButtonSelect/index.tsx -------------------------------------------------------------------------------- /src/components/ButtonSelect/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/ButtonSelect/style.scss -------------------------------------------------------------------------------- /src/components/Card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Card/index.tsx -------------------------------------------------------------------------------- /src/components/Card/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Card/style.scss -------------------------------------------------------------------------------- /src/components/Checkbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Checkbox/index.tsx -------------------------------------------------------------------------------- /src/components/Checkbox/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Checkbox/style.scss -------------------------------------------------------------------------------- /src/components/Drawer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Drawer/index.tsx -------------------------------------------------------------------------------- /src/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Header/index.tsx -------------------------------------------------------------------------------- /src/components/Header/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Header/style.scss -------------------------------------------------------------------------------- /src/components/Icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Icon/index.tsx -------------------------------------------------------------------------------- /src/components/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Input/index.tsx -------------------------------------------------------------------------------- /src/components/Input/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Input/style.scss -------------------------------------------------------------------------------- /src/components/Loading/Spinner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Loading/Spinner/index.tsx -------------------------------------------------------------------------------- /src/components/Loading/Spinner/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Loading/Spinner/style.scss -------------------------------------------------------------------------------- /src/components/Loading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Loading/index.tsx -------------------------------------------------------------------------------- /src/components/Loading/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Loading/style.scss -------------------------------------------------------------------------------- /src/components/Message/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Message/index.tsx -------------------------------------------------------------------------------- /src/components/Message/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Message/style.scss -------------------------------------------------------------------------------- /src/components/Modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Modal/index.tsx -------------------------------------------------------------------------------- /src/components/Modal/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Modal/style.scss -------------------------------------------------------------------------------- /src/components/Select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Select/index.tsx -------------------------------------------------------------------------------- /src/components/Select/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Select/style.scss -------------------------------------------------------------------------------- /src/components/Switch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Switch/index.tsx -------------------------------------------------------------------------------- /src/components/Switch/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Switch/style.scss -------------------------------------------------------------------------------- /src/components/Tag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Tag/index.tsx -------------------------------------------------------------------------------- /src/components/Tag/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Tag/style.scss -------------------------------------------------------------------------------- /src/components/Tags/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Tags/index.tsx -------------------------------------------------------------------------------- /src/components/Tags/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/Tags/style.scss -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/containers/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/App.tsx -------------------------------------------------------------------------------- /src/containers/Connections/Devices/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Connections/Devices/index.tsx -------------------------------------------------------------------------------- /src/containers/Connections/Devices/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Connections/Devices/style.scss -------------------------------------------------------------------------------- /src/containers/Connections/Info/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Connections/Info/index.tsx -------------------------------------------------------------------------------- /src/containers/Connections/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Connections/index.tsx -------------------------------------------------------------------------------- /src/containers/Connections/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Connections/store.ts -------------------------------------------------------------------------------- /src/containers/Connections/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Connections/style.scss -------------------------------------------------------------------------------- /src/containers/ExternalControllerDrawer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/ExternalControllerDrawer/index.tsx -------------------------------------------------------------------------------- /src/containers/ExternalControllerDrawer/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/ExternalControllerDrawer/style.scss -------------------------------------------------------------------------------- /src/containers/Logs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Logs/index.tsx -------------------------------------------------------------------------------- /src/containers/Logs/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Logs/style.scss -------------------------------------------------------------------------------- /src/containers/Overview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Overview/index.tsx -------------------------------------------------------------------------------- /src/containers/Proxies/components/Group/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Proxies/components/Group/index.tsx -------------------------------------------------------------------------------- /src/containers/Proxies/components/Group/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Proxies/components/Group/style.scss -------------------------------------------------------------------------------- /src/containers/Proxies/components/Provider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Proxies/components/Provider/index.tsx -------------------------------------------------------------------------------- /src/containers/Proxies/components/Provider/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Proxies/components/Provider/style.scss -------------------------------------------------------------------------------- /src/containers/Proxies/components/Proxy/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Proxies/components/Proxy/index.tsx -------------------------------------------------------------------------------- /src/containers/Proxies/components/Proxy/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Proxies/components/Proxy/style.scss -------------------------------------------------------------------------------- /src/containers/Proxies/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Proxies/components/index.ts -------------------------------------------------------------------------------- /src/containers/Proxies/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Proxies/index.tsx -------------------------------------------------------------------------------- /src/containers/Proxies/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Proxies/style.scss -------------------------------------------------------------------------------- /src/containers/Rules/Provider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Rules/Provider/index.tsx -------------------------------------------------------------------------------- /src/containers/Rules/Provider/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Rules/Provider/style.scss -------------------------------------------------------------------------------- /src/containers/Rules/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Rules/index.tsx -------------------------------------------------------------------------------- /src/containers/Rules/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Rules/style.scss -------------------------------------------------------------------------------- /src/containers/Settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Settings/index.tsx -------------------------------------------------------------------------------- /src/containers/Settings/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Settings/style.scss -------------------------------------------------------------------------------- /src/containers/Sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Sidebar/index.tsx -------------------------------------------------------------------------------- /src/containers/Sidebar/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/containers/Sidebar/style.scss -------------------------------------------------------------------------------- /src/i18n/en_US.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/i18n/en_US.ts -------------------------------------------------------------------------------- /src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/i18n/index.ts -------------------------------------------------------------------------------- /src/i18n/zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/i18n/zh_CN.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/lib/date.ts -------------------------------------------------------------------------------- /src/lib/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/lib/event.ts -------------------------------------------------------------------------------- /src/lib/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/lib/helper.ts -------------------------------------------------------------------------------- /src/lib/hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/lib/hook.ts -------------------------------------------------------------------------------- /src/lib/ip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/lib/ip.ts -------------------------------------------------------------------------------- /src/lib/jotai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/lib/jotai.ts -------------------------------------------------------------------------------- /src/lib/jsBridge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/lib/jsBridge.ts -------------------------------------------------------------------------------- /src/lib/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/lib/request.ts -------------------------------------------------------------------------------- /src/lib/streamer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/lib/streamer.ts -------------------------------------------------------------------------------- /src/lib/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/lib/type.ts -------------------------------------------------------------------------------- /src/models/BaseProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/models/BaseProps.ts -------------------------------------------------------------------------------- /src/models/Cipher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/models/Cipher.ts -------------------------------------------------------------------------------- /src/models/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/models/Config.ts -------------------------------------------------------------------------------- /src/models/Log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/models/Log.ts -------------------------------------------------------------------------------- /src/models/Rule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/models/Rule.ts -------------------------------------------------------------------------------- /src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/models/index.ts -------------------------------------------------------------------------------- /src/render.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/render.tsx -------------------------------------------------------------------------------- /src/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/stores/index.ts -------------------------------------------------------------------------------- /src/stores/jotai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/stores/jotai.ts -------------------------------------------------------------------------------- /src/stores/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/stores/request.ts -------------------------------------------------------------------------------- /src/styles/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/styles/common.scss -------------------------------------------------------------------------------- /src/styles/iconfont.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/styles/iconfont.scss -------------------------------------------------------------------------------- /src/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/src/styles/variables.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/tsconfig.json -------------------------------------------------------------------------------- /uno.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/uno.config.ts -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaoYutang/clash-and-dashboard/HEAD/vite.config.ts --------------------------------------------------------------------------------