├── .browserslistrc ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature-request.md └── workflows │ └── nodejs.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── angular.json ├── dev ├── README.txt └── docker-compose.yml ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── json-typings.d.ts ├── karma.conf.js ├── mock_backend ├── .gitignore ├── config.json ├── index.js ├── package-lock.json ├── package.json ├── sample_data.js └── utils.js ├── package.json ├── projects └── login │ ├── .browserslistrc │ ├── karma.conf.js │ ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── login-page │ │ │ ├── login-page.component.html │ │ │ ├── login-page.component.scss │ │ │ └── login-page.component.ts │ │ └── services │ │ │ └── theme.service.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── favicon.ico │ │ └── http_config.json │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.scss │ ├── test.ts │ ├── theme.scss │ ├── utils │ │ └── Environment.ts │ └── variables.scss │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── tslint.json ├── scripts ├── assets │ ├── config.unix.json │ └── config.windows.json └── builds │ └── build_prod.sh ├── src ├── app │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.config.json │ ├── app.module.ts │ ├── chip-label │ │ ├── chip-label.component.css │ │ ├── chip-label.component.html │ │ └── chip-label.component.ts │ ├── drag-and-drop-files.directive.ts │ ├── file-system-tree-explorer │ │ ├── file-system-tree-explorer.component.html │ │ ├── file-system-tree-explorer.component.scss │ │ └── file-system-tree-explorer.component.ts │ ├── global-transfer-info │ │ ├── global-transfer-info.component.html │ │ ├── global-transfer-info.component.scss │ │ └── global-transfer-info.component.ts │ ├── home │ │ ├── home.component.html │ │ ├── home.component.scss │ │ ├── home.component.ts │ │ └── search-torrents │ │ │ ├── search-torrents.component.css │ │ │ ├── search-torrents.component.html │ │ │ └── search-torrents.component.ts │ ├── modals │ │ ├── add-torrent-dialog │ │ │ ├── add-torrent-dialog.component.html │ │ │ ├── add-torrent-dialog.component.scss │ │ │ └── add-torrent-dialog.component.ts │ │ ├── delete-torrent-dialog │ │ │ ├── delete-torrent-dialog.component.css │ │ │ ├── delete-torrent-dialog.component.html │ │ │ └── delete-torrent-dialog.component.ts │ │ ├── file-system-dialog │ │ │ ├── file-system-dialog.component.html │ │ │ ├── file-system-dialog.component.scss │ │ │ └── file-system-dialog.component.ts │ │ ├── move-torrents-dialog │ │ │ ├── move-torrents-dialog.component.css │ │ │ ├── move-torrents-dialog.component.html │ │ │ └── move-torrents-dialog.component.ts │ │ ├── rate-limits-dialog │ │ │ ├── rate-limits-dialog.component.css │ │ │ ├── rate-limits-dialog.component.html │ │ │ └── rate-limits-dialog.component.ts │ │ ├── settings │ │ │ ├── about-settings │ │ │ │ ├── about-settings.component.css │ │ │ │ ├── about-settings.component.html │ │ │ │ └── about-settings.component.ts │ │ │ ├── download-settings │ │ │ │ ├── download-settings.component.html │ │ │ │ ├── download-settings.component.scss │ │ │ │ └── download-settings.component.ts │ │ │ ├── rss-settings │ │ │ │ ├── rss-settings.component.css │ │ │ │ ├── rss-settings.component.html │ │ │ │ └── rss-settings.component.ts │ │ │ ├── settings.component.html │ │ │ ├── settings.component.scss │ │ │ ├── settings.component.ts │ │ │ ├── speed-settings │ │ │ │ ├── speed-settings.component.html │ │ │ │ ├── speed-settings.component.scss │ │ │ │ └── speed-settings.component.ts │ │ │ └── web-ui-settings │ │ │ │ ├── web-ui-settings.component.html │ │ │ │ ├── web-ui-settings.component.scss │ │ │ │ └── web-ui-settings.component.ts │ │ ├── statistics-dialog │ │ │ ├── statistics-dialog.component.css │ │ │ ├── statistics-dialog.component.html │ │ │ └── statistics-dialog.component.ts │ │ └── torrent-info-dialog │ │ │ ├── torrent-info-dialog.component.html │ │ │ ├── torrent-info-dialog.component.scss │ │ │ └── torrent-info-dialog.component.ts │ ├── services │ │ ├── app │ │ │ ├── application-config.service.ts │ │ │ └── defaults.ts │ │ ├── auth │ │ │ └── auth.service.ts │ │ ├── file-system │ │ │ ├── Exceptions │ │ │ │ └── FileSystemExceptions.ts │ │ │ ├── FileSystemNodes │ │ │ │ ├── DirectoryNode.ts │ │ │ │ ├── FileNode.ts │ │ │ │ └── Inode.ts │ │ │ ├── Statics │ │ │ │ └── FileSystemTypes.ts │ │ │ ├── TreeNode.ts │ │ │ ├── file-directory-explorer.service.ts │ │ │ └── file-system.service.ts │ │ ├── network │ │ │ └── network-connection-information.service.ts │ │ ├── notifications │ │ │ ├── snackbar.service.ts │ │ │ └── snackbar │ │ │ │ ├── error-snackbar │ │ │ │ ├── error-snackbar.component.css │ │ │ │ ├── error-snackbar.component.html │ │ │ │ └── error-snackbar.component.ts │ │ │ │ ├── info-snackbar │ │ │ │ ├── info-snackbar.component.css │ │ │ │ ├── info-snackbar.component.html │ │ │ │ └── info-snackbar.component.ts │ │ │ │ ├── success-snackbar │ │ │ │ ├── success-snackbar.component.css │ │ │ │ ├── success-snackbar.component.html │ │ │ │ └── success-snackbar.component.ts │ │ │ │ └── warn-snackbar │ │ │ │ ├── warn-snackbar.component.css │ │ │ │ ├── warn-snackbar.component.html │ │ │ │ └── warn-snackbar.component.ts │ │ ├── pretty-print-torrent-data.service.ts │ │ ├── theme.service.ts │ │ ├── torrent-filter-service.service.ts │ │ ├── torrent-management │ │ │ ├── row-selection.service.ts │ │ │ ├── torrent-data-http.service.ts │ │ │ ├── torrent-data-store.service.ts │ │ │ ├── torrent-helper.service.ts │ │ │ └── torrent-parser.service.ts │ │ ├── torrent-search-service.service.ts │ │ └── units-helper.service.ts │ └── torrents-table │ │ ├── bulk-update-torrents │ │ ├── bulk-update-torrents.component.html │ │ ├── bulk-update-torrents.component.scss │ │ └── bulk-update-torrents.component.ts │ │ ├── torrents-table.component.html │ │ ├── torrents-table.component.scss │ │ └── torrents-table.component.ts ├── assets │ ├── bundles │ │ └── bundle.js │ ├── config.json │ ├── config.prod.json │ ├── favicon.ico │ └── http_config.json ├── constants.ts ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── index.html ├── main.ts ├── polyfills.ts ├── style │ ├── fonts.scss │ └── fonts │ │ ├── latin_300_KFOlCnqEu92Fr1MmSU5fBBc4.woff2 │ │ ├── latin_400_KFOmCnqEu92Fr1Mu4mxK.woff2 │ │ └── latin_500_KFOlCnqEu92Fr1MmEU9fBBc4.woff2 ├── styles.scss ├── test.ts ├── theme.scss ├── utils │ ├── Environment.ts │ ├── Helpers.ts │ ├── Interfaces.ts │ └── file-system │ │ └── interfaces.ts └── variables.scss ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/angular.json -------------------------------------------------------------------------------- /dev/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/dev/README.txt -------------------------------------------------------------------------------- /dev/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/dev/docker-compose.yml -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /json-typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/json-typings.d.ts -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/karma.conf.js -------------------------------------------------------------------------------- /mock_backend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /mock_backend/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/mock_backend/config.json -------------------------------------------------------------------------------- /mock_backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/mock_backend/index.js -------------------------------------------------------------------------------- /mock_backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/mock_backend/package-lock.json -------------------------------------------------------------------------------- /mock_backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/mock_backend/package.json -------------------------------------------------------------------------------- /mock_backend/sample_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/mock_backend/sample_data.js -------------------------------------------------------------------------------- /mock_backend/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/mock_backend/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/package.json -------------------------------------------------------------------------------- /projects/login/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/projects/login/.browserslistrc -------------------------------------------------------------------------------- /projects/login/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/projects/login/karma.conf.js -------------------------------------------------------------------------------- /projects/login/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/projects/login/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /projects/login/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/projects/login/src/app/app.component.html -------------------------------------------------------------------------------- /projects/login/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/login/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/projects/login/src/app/app.component.ts -------------------------------------------------------------------------------- /projects/login/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/projects/login/src/app/app.module.ts -------------------------------------------------------------------------------- /projects/login/src/app/login-page/login-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/projects/login/src/app/login-page/login-page.component.html -------------------------------------------------------------------------------- /projects/login/src/app/login-page/login-page.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/projects/login/src/app/login-page/login-page.component.scss -------------------------------------------------------------------------------- /projects/login/src/app/login-page/login-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/projects/login/src/app/login-page/login-page.component.ts -------------------------------------------------------------------------------- /projects/login/src/app/services/theme.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/projects/login/src/app/services/theme.service.ts -------------------------------------------------------------------------------- /projects/login/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/login/src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/projects/login/src/assets/favicon.ico -------------------------------------------------------------------------------- /projects/login/src/assets/http_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/projects/login/src/assets/http_config.json -------------------------------------------------------------------------------- /projects/login/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /projects/login/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/projects/login/src/environments/environment.ts -------------------------------------------------------------------------------- /projects/login/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/projects/login/src/index.html -------------------------------------------------------------------------------- /projects/login/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/projects/login/src/main.ts -------------------------------------------------------------------------------- /projects/login/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/projects/login/src/polyfills.ts -------------------------------------------------------------------------------- /projects/login/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/projects/login/src/styles.scss -------------------------------------------------------------------------------- /projects/login/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/projects/login/src/test.ts -------------------------------------------------------------------------------- /projects/login/src/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/projects/login/src/theme.scss -------------------------------------------------------------------------------- /projects/login/src/utils/Environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/projects/login/src/utils/Environment.ts -------------------------------------------------------------------------------- /projects/login/src/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/projects/login/src/variables.scss -------------------------------------------------------------------------------- /projects/login/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/projects/login/tsconfig.app.json -------------------------------------------------------------------------------- /projects/login/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/projects/login/tsconfig.spec.json -------------------------------------------------------------------------------- /projects/login/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/projects/login/tslint.json -------------------------------------------------------------------------------- /scripts/assets/config.unix.json: -------------------------------------------------------------------------------- 1 | { 2 | "filePathDelimeter": "/" 3 | } 4 | -------------------------------------------------------------------------------- /scripts/assets/config.windows.json: -------------------------------------------------------------------------------- 1 | { 2 | "filePathDelimeter": "\\" 3 | } 4 | -------------------------------------------------------------------------------- /scripts/builds/build_prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/scripts/builds/build_prod.sh -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/app.component.css -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.16.2" 3 | } 4 | -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/chip-label/chip-label.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/chip-label/chip-label.component.css -------------------------------------------------------------------------------- /src/app/chip-label/chip-label.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/chip-label/chip-label.component.html -------------------------------------------------------------------------------- /src/app/chip-label/chip-label.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/chip-label/chip-label.component.ts -------------------------------------------------------------------------------- /src/app/drag-and-drop-files.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/drag-and-drop-files.directive.ts -------------------------------------------------------------------------------- /src/app/file-system-tree-explorer/file-system-tree-explorer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/file-system-tree-explorer/file-system-tree-explorer.component.html -------------------------------------------------------------------------------- /src/app/file-system-tree-explorer/file-system-tree-explorer.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/file-system-tree-explorer/file-system-tree-explorer.component.scss -------------------------------------------------------------------------------- /src/app/file-system-tree-explorer/file-system-tree-explorer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/file-system-tree-explorer/file-system-tree-explorer.component.ts -------------------------------------------------------------------------------- /src/app/global-transfer-info/global-transfer-info.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/global-transfer-info/global-transfer-info.component.html -------------------------------------------------------------------------------- /src/app/global-transfer-info/global-transfer-info.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/global-transfer-info/global-transfer-info.component.scss -------------------------------------------------------------------------------- /src/app/global-transfer-info/global-transfer-info.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/global-transfer-info/global-transfer-info.component.ts -------------------------------------------------------------------------------- /src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/home/home.component.html -------------------------------------------------------------------------------- /src/app/home/home.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/home/home.component.scss -------------------------------------------------------------------------------- /src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/home/home.component.ts -------------------------------------------------------------------------------- /src/app/home/search-torrents/search-torrents.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/home/search-torrents/search-torrents.component.css -------------------------------------------------------------------------------- /src/app/home/search-torrents/search-torrents.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/home/search-torrents/search-torrents.component.html -------------------------------------------------------------------------------- /src/app/home/search-torrents/search-torrents.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/home/search-torrents/search-torrents.component.ts -------------------------------------------------------------------------------- /src/app/modals/add-torrent-dialog/add-torrent-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/add-torrent-dialog/add-torrent-dialog.component.html -------------------------------------------------------------------------------- /src/app/modals/add-torrent-dialog/add-torrent-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/add-torrent-dialog/add-torrent-dialog.component.scss -------------------------------------------------------------------------------- /src/app/modals/add-torrent-dialog/add-torrent-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/add-torrent-dialog/add-torrent-dialog.component.ts -------------------------------------------------------------------------------- /src/app/modals/delete-torrent-dialog/delete-torrent-dialog.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/delete-torrent-dialog/delete-torrent-dialog.component.css -------------------------------------------------------------------------------- /src/app/modals/delete-torrent-dialog/delete-torrent-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/delete-torrent-dialog/delete-torrent-dialog.component.html -------------------------------------------------------------------------------- /src/app/modals/delete-torrent-dialog/delete-torrent-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/delete-torrent-dialog/delete-torrent-dialog.component.ts -------------------------------------------------------------------------------- /src/app/modals/file-system-dialog/file-system-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/file-system-dialog/file-system-dialog.component.html -------------------------------------------------------------------------------- /src/app/modals/file-system-dialog/file-system-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/file-system-dialog/file-system-dialog.component.scss -------------------------------------------------------------------------------- /src/app/modals/file-system-dialog/file-system-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/file-system-dialog/file-system-dialog.component.ts -------------------------------------------------------------------------------- /src/app/modals/move-torrents-dialog/move-torrents-dialog.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/move-torrents-dialog/move-torrents-dialog.component.css -------------------------------------------------------------------------------- /src/app/modals/move-torrents-dialog/move-torrents-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/move-torrents-dialog/move-torrents-dialog.component.html -------------------------------------------------------------------------------- /src/app/modals/move-torrents-dialog/move-torrents-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/move-torrents-dialog/move-torrents-dialog.component.ts -------------------------------------------------------------------------------- /src/app/modals/rate-limits-dialog/rate-limits-dialog.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/modals/rate-limits-dialog/rate-limits-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/rate-limits-dialog/rate-limits-dialog.component.html -------------------------------------------------------------------------------- /src/app/modals/rate-limits-dialog/rate-limits-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/rate-limits-dialog/rate-limits-dialog.component.ts -------------------------------------------------------------------------------- /src/app/modals/settings/about-settings/about-settings.component.css: -------------------------------------------------------------------------------- 1 | h3 { 2 | font-weight: 500; 3 | } -------------------------------------------------------------------------------- /src/app/modals/settings/about-settings/about-settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/settings/about-settings/about-settings.component.html -------------------------------------------------------------------------------- /src/app/modals/settings/about-settings/about-settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/settings/about-settings/about-settings.component.ts -------------------------------------------------------------------------------- /src/app/modals/settings/download-settings/download-settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/settings/download-settings/download-settings.component.html -------------------------------------------------------------------------------- /src/app/modals/settings/download-settings/download-settings.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/settings/download-settings/download-settings.component.scss -------------------------------------------------------------------------------- /src/app/modals/settings/download-settings/download-settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/settings/download-settings/download-settings.component.ts -------------------------------------------------------------------------------- /src/app/modals/settings/rss-settings/rss-settings.component.css: -------------------------------------------------------------------------------- 1 | h3 { 2 | font-weight: 500; 3 | } -------------------------------------------------------------------------------- /src/app/modals/settings/rss-settings/rss-settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/settings/rss-settings/rss-settings.component.html -------------------------------------------------------------------------------- /src/app/modals/settings/rss-settings/rss-settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/settings/rss-settings/rss-settings.component.ts -------------------------------------------------------------------------------- /src/app/modals/settings/settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/settings/settings.component.html -------------------------------------------------------------------------------- /src/app/modals/settings/settings.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/settings/settings.component.scss -------------------------------------------------------------------------------- /src/app/modals/settings/settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/settings/settings.component.ts -------------------------------------------------------------------------------- /src/app/modals/settings/speed-settings/speed-settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/settings/speed-settings/speed-settings.component.html -------------------------------------------------------------------------------- /src/app/modals/settings/speed-settings/speed-settings.component.scss: -------------------------------------------------------------------------------- 1 | h3 { 2 | font-weight: 500; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/modals/settings/speed-settings/speed-settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/settings/speed-settings/speed-settings.component.ts -------------------------------------------------------------------------------- /src/app/modals/settings/web-ui-settings/web-ui-settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/settings/web-ui-settings/web-ui-settings.component.html -------------------------------------------------------------------------------- /src/app/modals/settings/web-ui-settings/web-ui-settings.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/settings/web-ui-settings/web-ui-settings.component.scss -------------------------------------------------------------------------------- /src/app/modals/settings/web-ui-settings/web-ui-settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/settings/web-ui-settings/web-ui-settings.component.ts -------------------------------------------------------------------------------- /src/app/modals/statistics-dialog/statistics-dialog.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/modals/statistics-dialog/statistics-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/statistics-dialog/statistics-dialog.component.html -------------------------------------------------------------------------------- /src/app/modals/statistics-dialog/statistics-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/statistics-dialog/statistics-dialog.component.ts -------------------------------------------------------------------------------- /src/app/modals/torrent-info-dialog/torrent-info-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/torrent-info-dialog/torrent-info-dialog.component.html -------------------------------------------------------------------------------- /src/app/modals/torrent-info-dialog/torrent-info-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/torrent-info-dialog/torrent-info-dialog.component.scss -------------------------------------------------------------------------------- /src/app/modals/torrent-info-dialog/torrent-info-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/modals/torrent-info-dialog/torrent-info-dialog.component.ts -------------------------------------------------------------------------------- /src/app/services/app/application-config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/app/application-config.service.ts -------------------------------------------------------------------------------- /src/app/services/app/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/app/defaults.ts -------------------------------------------------------------------------------- /src/app/services/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/auth/auth.service.ts -------------------------------------------------------------------------------- /src/app/services/file-system/Exceptions/FileSystemExceptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/file-system/Exceptions/FileSystemExceptions.ts -------------------------------------------------------------------------------- /src/app/services/file-system/FileSystemNodes/DirectoryNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/file-system/FileSystemNodes/DirectoryNode.ts -------------------------------------------------------------------------------- /src/app/services/file-system/FileSystemNodes/FileNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/file-system/FileSystemNodes/FileNode.ts -------------------------------------------------------------------------------- /src/app/services/file-system/FileSystemNodes/Inode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/file-system/FileSystemNodes/Inode.ts -------------------------------------------------------------------------------- /src/app/services/file-system/Statics/FileSystemTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/file-system/Statics/FileSystemTypes.ts -------------------------------------------------------------------------------- /src/app/services/file-system/TreeNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/file-system/TreeNode.ts -------------------------------------------------------------------------------- /src/app/services/file-system/file-directory-explorer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/file-system/file-directory-explorer.service.ts -------------------------------------------------------------------------------- /src/app/services/file-system/file-system.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/file-system/file-system.service.ts -------------------------------------------------------------------------------- /src/app/services/network/network-connection-information.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/network/network-connection-information.service.ts -------------------------------------------------------------------------------- /src/app/services/notifications/snackbar.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/notifications/snackbar.service.ts -------------------------------------------------------------------------------- /src/app/services/notifications/snackbar/error-snackbar/error-snackbar.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/notifications/snackbar/error-snackbar/error-snackbar.component.css -------------------------------------------------------------------------------- /src/app/services/notifications/snackbar/error-snackbar/error-snackbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/notifications/snackbar/error-snackbar/error-snackbar.component.html -------------------------------------------------------------------------------- /src/app/services/notifications/snackbar/error-snackbar/error-snackbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/notifications/snackbar/error-snackbar/error-snackbar.component.ts -------------------------------------------------------------------------------- /src/app/services/notifications/snackbar/info-snackbar/info-snackbar.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/notifications/snackbar/info-snackbar/info-snackbar.component.css -------------------------------------------------------------------------------- /src/app/services/notifications/snackbar/info-snackbar/info-snackbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/notifications/snackbar/info-snackbar/info-snackbar.component.html -------------------------------------------------------------------------------- /src/app/services/notifications/snackbar/info-snackbar/info-snackbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/notifications/snackbar/info-snackbar/info-snackbar.component.ts -------------------------------------------------------------------------------- /src/app/services/notifications/snackbar/success-snackbar/success-snackbar.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/notifications/snackbar/success-snackbar/success-snackbar.component.css -------------------------------------------------------------------------------- /src/app/services/notifications/snackbar/success-snackbar/success-snackbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/notifications/snackbar/success-snackbar/success-snackbar.component.html -------------------------------------------------------------------------------- /src/app/services/notifications/snackbar/success-snackbar/success-snackbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/notifications/snackbar/success-snackbar/success-snackbar.component.ts -------------------------------------------------------------------------------- /src/app/services/notifications/snackbar/warn-snackbar/warn-snackbar.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/notifications/snackbar/warn-snackbar/warn-snackbar.component.css -------------------------------------------------------------------------------- /src/app/services/notifications/snackbar/warn-snackbar/warn-snackbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/notifications/snackbar/warn-snackbar/warn-snackbar.component.html -------------------------------------------------------------------------------- /src/app/services/notifications/snackbar/warn-snackbar/warn-snackbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/notifications/snackbar/warn-snackbar/warn-snackbar.component.ts -------------------------------------------------------------------------------- /src/app/services/pretty-print-torrent-data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/pretty-print-torrent-data.service.ts -------------------------------------------------------------------------------- /src/app/services/theme.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/theme.service.ts -------------------------------------------------------------------------------- /src/app/services/torrent-filter-service.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/torrent-filter-service.service.ts -------------------------------------------------------------------------------- /src/app/services/torrent-management/row-selection.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/torrent-management/row-selection.service.ts -------------------------------------------------------------------------------- /src/app/services/torrent-management/torrent-data-http.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/torrent-management/torrent-data-http.service.ts -------------------------------------------------------------------------------- /src/app/services/torrent-management/torrent-data-store.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/torrent-management/torrent-data-store.service.ts -------------------------------------------------------------------------------- /src/app/services/torrent-management/torrent-helper.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/torrent-management/torrent-helper.service.ts -------------------------------------------------------------------------------- /src/app/services/torrent-management/torrent-parser.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/torrent-management/torrent-parser.service.ts -------------------------------------------------------------------------------- /src/app/services/torrent-search-service.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/torrent-search-service.service.ts -------------------------------------------------------------------------------- /src/app/services/units-helper.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/services/units-helper.service.ts -------------------------------------------------------------------------------- /src/app/torrents-table/bulk-update-torrents/bulk-update-torrents.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/torrents-table/bulk-update-torrents/bulk-update-torrents.component.html -------------------------------------------------------------------------------- /src/app/torrents-table/bulk-update-torrents/bulk-update-torrents.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/torrents-table/bulk-update-torrents/bulk-update-torrents.component.scss -------------------------------------------------------------------------------- /src/app/torrents-table/bulk-update-torrents/bulk-update-torrents.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/torrents-table/bulk-update-torrents/bulk-update-torrents.component.ts -------------------------------------------------------------------------------- /src/app/torrents-table/torrents-table.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/torrents-table/torrents-table.component.html -------------------------------------------------------------------------------- /src/app/torrents-table/torrents-table.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/torrents-table/torrents-table.component.scss -------------------------------------------------------------------------------- /src/app/torrents-table/torrents-table.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/app/torrents-table/torrents-table.component.ts -------------------------------------------------------------------------------- /src/assets/bundles/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/assets/bundles/bundle.js -------------------------------------------------------------------------------- /src/assets/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "filePathDelimeter": "/" 3 | } 4 | -------------------------------------------------------------------------------- /src/assets/config.prod.json: -------------------------------------------------------------------------------- 1 | { 2 | "filePathDelimeter": "\\" 3 | } 4 | -------------------------------------------------------------------------------- /src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/assets/favicon.ico -------------------------------------------------------------------------------- /src/assets/http_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/assets/http_config.json -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/style/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/style/fonts.scss -------------------------------------------------------------------------------- /src/style/fonts/latin_300_KFOlCnqEu92Fr1MmSU5fBBc4.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/style/fonts/latin_300_KFOlCnqEu92Fr1MmSU5fBBc4.woff2 -------------------------------------------------------------------------------- /src/style/fonts/latin_400_KFOmCnqEu92Fr1Mu4mxK.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/style/fonts/latin_400_KFOmCnqEu92Fr1Mu4mxK.woff2 -------------------------------------------------------------------------------- /src/style/fonts/latin_500_KFOlCnqEu92Fr1MmEU9fBBc4.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/style/fonts/latin_500_KFOlCnqEu92Fr1MmEU9fBBc4.woff2 -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/theme.scss -------------------------------------------------------------------------------- /src/utils/Environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/utils/Environment.ts -------------------------------------------------------------------------------- /src/utils/Helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/utils/Helpers.ts -------------------------------------------------------------------------------- /src/utils/Interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/utils/Interfaces.ts -------------------------------------------------------------------------------- /src/utils/file-system/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/utils/file-system/interfaces.ts -------------------------------------------------------------------------------- /src/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/src/variables.scss -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bill-ahmed/qbit-matUI/HEAD/tslint.json --------------------------------------------------------------------------------