├── .dockerignore ├── .editorconfig ├── .env.example ├── .envrc ├── .eslintignore ├── .eslintrc.cjs ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── updating-build-dependencies.md ├── dependabot.yml └── workflows │ ├── best-practices.yml │ ├── check-types.yml │ ├── chromatic.yml │ ├── release.yml │ ├── tests.yml │ └── validate-pr.yml ├── .gitignore ├── .husky └── commit-msg ├── .nvmrc ├── .prettierignore ├── .prettierrc.json ├── .releaserc.json ├── .storybook ├── main.ts ├── preview.tsx └── vite-storybook.config.ts ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── @types └── vite-env.d.ts ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── DOCKER_DEV_SETUP.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── chromatic.config.json ├── commitlint.config.ts ├── docker-entrypoint.sh ├── docs ├── UT-Austin-Design-System.pdf └── WebSocket-Implementation-Tutorial.md ├── flake.lock ├── flake.nix ├── gulpfile.js ├── images ├── UTRP-Demo.gif ├── UTRP_Social-Preview_Prod.png └── UTRP_Social-Preview_Prod.svg ├── nix ├── devShells.nix └── treefmt.nix ├── package.json ├── patches ├── @crxjs__vite-plugin@2.0.0-beta.21.patch └── @unocss__vite.patch ├── pnpm-lock.yaml ├── postcss.config.cjs ├── public ├── database │ └── grade_distributions.db ├── fonts │ ├── inter-100.woff2 │ ├── inter-200.woff2 │ ├── inter-300.woff2 │ ├── inter-400.woff2 │ ├── inter-500.woff2 │ ├── inter-600.woff2 │ ├── inter-700.woff2 │ ├── inter-800.woff2 │ ├── inter-900.woff2 │ ├── roboto-flex.woff2 │ └── roboto-mono.woff2 ├── icons │ ├── icon_beta.svg │ ├── icon_beta_128.png │ ├── icon_beta_16.png │ ├── icon_beta_32.png │ ├── icon_beta_48.png │ ├── icon_development.svg │ ├── icon_development_128.png │ ├── icon_development_16.png │ ├── icon_development_32.png │ ├── icon_development_48.png │ ├── icon_production.svg │ ├── icon_production_128.png │ ├── icon_production_16.png │ ├── icon_production_32.png │ └── icon_production_48.png └── json │ └── departments.json ├── scripts ├── generateChangelog.ts └── release.ts ├── shell.nix ├── src ├── assets │ ├── LD-icon-new.png │ ├── LD-icon.png │ ├── UT-Map.svg │ ├── insideJokes.tsx │ └── robots.txt ├── debug │ └── index.tsx ├── global.d.ts ├── manifest.ts ├── pages │ ├── 404 │ │ ├── Page404.tsx │ │ ├── index.html │ │ └── index.tsx │ ├── background │ │ ├── background.ts │ │ ├── events │ │ │ ├── onInstall.ts │ │ │ ├── onServiceWorkerAlive.ts │ │ │ └── onUpdate.ts │ │ ├── handler │ │ │ ├── CESHandler.ts │ │ │ ├── browserActionHandler.ts │ │ │ ├── calendarBackgroundHandler.ts │ │ │ ├── tabManagementHandler.ts │ │ │ └── userScheduleHandler.ts │ │ ├── lib │ │ │ ├── addCourse.ts │ │ │ ├── addCourseByURL.ts │ │ │ ├── clearCourses.ts │ │ │ ├── createSchedule.ts │ │ │ ├── deleteSchedule.ts │ │ │ ├── duplicateSchedule.ts │ │ │ ├── exportSchedule.ts │ │ │ ├── handleDuplicate.ts │ │ │ ├── importSchedule.ts │ │ │ ├── migrateUTRPv1Courses.ts │ │ │ ├── removeCourse.ts │ │ │ ├── renameSchedule.ts │ │ │ └── switchSchedule.ts │ │ └── util │ │ │ ├── openDebugTab.ts │ │ │ └── openNewTab.ts │ ├── calendar │ │ ├── CalendarMain.tsx │ │ ├── index.html │ │ └── index.tsx │ ├── content │ │ └── index.tsx │ ├── debug │ │ ├── App.tsx │ │ ├── index.html │ │ └── index.tsx │ ├── map │ │ ├── Map.tsx │ │ ├── index.html │ │ └── index.tsx │ ├── options │ │ ├── Settings.tsx │ │ ├── index.html │ │ └── index.tsx │ ├── popup │ │ ├── index.html │ │ └── index.tsx │ └── report │ │ ├── index.html │ │ └── index.tsx ├── shared │ ├── messages │ │ ├── BrowserActionMessages.ts │ │ ├── CESMessage.ts │ │ ├── CalendarMessages.ts │ │ ├── TabInfoMessages.ts │ │ ├── TabManagementMessages.ts │ │ ├── UserScheduleMessages.ts │ │ └── index.ts │ ├── storage │ │ ├── CacheStore.ts │ │ ├── DevStore.ts │ │ ├── ExtensionStore.ts │ │ ├── OptionsStore.ts │ │ └── UserScheduleStore.ts │ ├── types │ │ ├── CRXPages.ts │ │ ├── CachedData.ts │ │ ├── Color.ts │ │ ├── Course.ts │ │ ├── CourseMeeting.ts │ │ ├── CourseSchedule.ts │ │ ├── Distribution.ts │ │ ├── Instructor.ts │ │ ├── MIMEType.ts │ │ ├── MainCampusBuildings.ts │ │ ├── Spacing.ts │ │ ├── ThemeColors.ts │ │ ├── UserSchedule.ts │ │ └── tests │ │ │ └── Course.test.ts │ └── util │ │ ├── appUrls.ts │ │ ├── checkLoginStatus.ts │ │ ├── colors.ts │ │ ├── downloadBlob.ts │ │ ├── icons.tsx │ │ ├── openReportWindow.ts │ │ ├── random.ts │ │ ├── storybook.ts │ │ ├── string.ts │ │ ├── tests │ │ ├── colors.test.ts │ │ ├── random.test.ts │ │ ├── string.test.ts │ │ ├── themeColors.test.ts │ │ └── time.test.ts │ │ ├── themeColors.ts │ │ ├── time.ts │ │ └── updateBadgeText.ts ├── stories │ ├── components │ │ ├── Button.stories.tsx │ │ ├── CalendarFooter.stories.tsx │ │ ├── ChangelogPopup.stories.tsx │ │ ├── Chip.stories.tsx │ │ ├── ConflictsWithWarning.stories.tsx │ │ ├── CourseStatus.stories.tsx │ │ ├── DialogProvider.stories.tsx │ │ ├── DiningAppPromo.stories.tsx │ │ ├── Divider.stories.tsx │ │ ├── Dropdown.stories.tsx │ │ ├── FileUpload.stories.tsx │ │ ├── ImportantLinks.stories.tsx │ │ ├── InfoCard.stories.tsx │ │ ├── Link.stories.ts │ │ ├── LogoIcon.stories.tsx │ │ ├── PopupCourseBlock.stories.tsx │ │ ├── PopupMain.stories.tsx │ │ ├── Prompt.stories.tsx │ │ ├── ResourceLinks.stories.tsx │ │ ├── SchedulTotalHoursAndCourses.stories.tsx │ │ ├── ScheduleListItem.stories.tsx │ │ ├── Settings.stories.tsx │ │ ├── SortableList.stories.tsx │ │ ├── Spinner.stories.tsx │ │ ├── Text.stories.tsx │ │ ├── ToggleSwitch.stories.tsx │ │ ├── WhatsNewPopup.stories.tsx │ │ └── calendar │ │ │ ├── Calendar.stories.tsx │ │ │ ├── CalendarBottomBar.stories.tsx │ │ │ ├── CalendarCourseCell.stories.tsx │ │ │ ├── CalendarGrid.stories.tsx │ │ │ ├── CalendarGridCell.stories.tsx │ │ │ ├── CalendarHeader.stories.tsx │ │ │ ├── CalendarSchedules.stories.tsx │ │ │ └── CourseCellColorPicker.stories.tsx │ └── injected │ │ ├── CourseCatalogInjectedPopup.stories.tsx │ │ └── mocked.ts ├── tsconfig.json ├── views │ ├── components │ │ ├── CourseCatalogMain.tsx │ │ ├── PopupMain.tsx │ │ ├── ReportIssueMain.tsx │ │ ├── calendar │ │ │ ├── Calendar.tsx │ │ │ ├── CalendarBottomBar.tsx │ │ │ ├── CalendarCourseCell.tsx │ │ │ ├── CalendarCourseCellColorPicker │ │ │ │ ├── ColorPatch.tsx │ │ │ │ ├── CourseCellColorPicker.tsx │ │ │ │ └── HexColorEditor.tsx │ │ │ ├── CalendarFooter.tsx │ │ │ ├── CalendarGrid.tsx │ │ │ ├── CalendarGridCell.tsx │ │ │ ├── CalendarHeader │ │ │ │ ├── CalendarHeader.module.scss │ │ │ │ └── CalendarHeader.tsx │ │ │ ├── CalendarSchedules.tsx │ │ │ ├── DiningAppPromo.tsx │ │ │ ├── ImportantLinks.tsx │ │ │ ├── ResourceLinks.tsx │ │ │ ├── TeamLinks.tsx │ │ │ ├── academic-calendars.ts │ │ │ ├── utils.test.ts │ │ │ └── utils.ts │ │ ├── common │ │ │ ├── Button.tsx │ │ │ ├── ChangelogPopup.tsx │ │ │ ├── Chip.tsx │ │ │ ├── ConflictsWithWarning.tsx │ │ │ ├── CourseStatus.tsx │ │ │ ├── Dialog.tsx │ │ │ ├── DialogProvider │ │ │ │ └── DialogProvider.tsx │ │ │ ├── Divider.tsx │ │ │ ├── ExtensionRoot │ │ │ │ ├── ExtensionRoot.module.scss │ │ │ │ ├── ExtensionRoot.tsx │ │ │ │ └── _tailwind-compat.css │ │ │ ├── FileUpload.tsx │ │ │ ├── InfoCard.tsx │ │ │ ├── Link.tsx │ │ │ ├── LogoIcon.tsx │ │ │ ├── MigrationDialog.tsx │ │ │ ├── PopupCourseBlock.tsx │ │ │ ├── Prompt.tsx │ │ │ ├── ScheduleDropdown.tsx │ │ │ ├── ScheduleListItem.tsx │ │ │ ├── ScheduleTotalHoursAndCourses.tsx │ │ │ ├── SortableItemOverlay.tsx │ │ │ ├── SortableList.tsx │ │ │ ├── SortableListDragHandle.tsx │ │ │ ├── Spinner.tsx │ │ │ ├── SwitchButton.tsx │ │ │ ├── Text │ │ │ │ ├── Text.module.scss │ │ │ │ └── Text.tsx │ │ │ └── WhatsNewPopup.tsx │ │ ├── injected │ │ │ ├── AddAllButton.tsx │ │ │ ├── AutoLoad │ │ │ │ ├── AutoLoad.module.scss │ │ │ │ └── AutoLoad.tsx │ │ │ ├── CourseCatalogInjectedPopup │ │ │ │ ├── CourseCatalogInjectedPopup.tsx │ │ │ │ ├── Description.tsx │ │ │ │ ├── DisplayMeetingInfo.tsx │ │ │ │ ├── GradeDistribution.tsx │ │ │ │ └── HeadingAndActions.tsx │ │ │ ├── DaysCheckbox.tsx │ │ │ ├── NewSearchLink.tsx │ │ │ ├── RecruitmentBanner │ │ │ │ ├── RecruitmentBanner.module.scss │ │ │ │ └── RecruitmentBanner.tsx │ │ │ ├── SearchResultShader.tsx │ │ │ ├── TableHead.tsx │ │ │ ├── TableRow │ │ │ │ ├── TableRow.module.scss │ │ │ │ └── TableRow.tsx │ │ │ └── TableSubheading │ │ │ │ ├── TableSubheading.module.scss │ │ │ │ └── TableSubheading.tsx │ │ ├── map │ │ │ ├── CampusMap.tsx │ │ │ ├── DaySelector.tsx │ │ │ ├── DevToggles.tsx │ │ │ ├── FullscreenButton.tsx │ │ │ ├── Map.tsx │ │ │ ├── Path.tsx │ │ │ ├── PathFinder.ts │ │ │ ├── PathStats.tsx │ │ │ ├── TimeWarningLabel.tsx │ │ │ ├── ZoomPanControls.tsx │ │ │ ├── graphNodes.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ └── settings │ │ │ ├── DevMode.tsx │ │ │ ├── Preview.tsx │ │ │ └── Settings.tsx │ ├── contexts │ │ ├── CalendarContext.ts │ │ ├── ColorPickerContext.tsx │ │ ├── DialogContext.ts │ │ ├── SentryContext.tsx │ │ └── SortableItemContext.tsx │ ├── hooks │ │ ├── tests │ │ │ └── useFlattenedCourseSchedule.test.ts │ │ ├── useChangelog.tsx │ │ ├── useColorPicker.ts │ │ ├── useCourseFromUrl.ts │ │ ├── useCursor.tsx │ │ ├── useDebounce.tsx │ │ ├── useEnforceScheduleLimit.tsx │ │ ├── useFlattenedCourseSchedule.ts │ │ ├── useInfiniteScroll.ts │ │ ├── useKeyPress.ts │ │ ├── useSchedules.ts │ │ ├── useTabMessage.ts │ │ ├── useVersion.ts │ │ └── useWhatsNew.tsx │ ├── index.tsx │ ├── lib │ │ ├── CourseCatalogScraper.test.ts │ │ ├── CourseCatalogScraper.ts │ │ ├── courseMigration.ts │ │ ├── database │ │ │ ├── initializeDB.ts │ │ │ └── queryDistribution.ts │ │ ├── getCourseTableRows.ts │ │ ├── getGitHubStats.ts │ │ ├── getSiteSupport.ts │ │ ├── getUpdatedAtDateTimeString.ts │ │ ├── loadNextCourseCatalogPage.ts │ │ ├── openNewTabFromContentScript.ts │ │ ├── populateSearchInputs.ts │ │ └── react │ │ │ └── index.tsx │ └── styles │ │ ├── base.module.scss │ │ ├── colors.module.scss │ │ ├── colors.module.scss.d.ts │ │ ├── elevation.module.scss │ │ ├── fonts.module.scss │ │ ├── fonts.module.scss.d.ts │ │ └── utils.module.scss └── vite-env.d.ts ├── tsconfig.json ├── unocss.config.ts ├── utils ├── git │ └── getSourceRef.ts ├── log.ts └── plugins │ ├── make-manifest.ts │ ├── run-command-on-demand.ts │ └── vite-build-logger.ts └── vite.config.ts /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.env.example -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/updating-build-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.github/ISSUE_TEMPLATE/updating-build-dependencies.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/best-practices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.github/workflows/best-practices.yml -------------------------------------------------------------------------------- /.github/workflows/check-types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.github/workflows/check-types.yml -------------------------------------------------------------------------------- /.github/workflows/chromatic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.github/workflows/chromatic.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/validate-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.github/workflows/validate-pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20.9.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.releaserc.json -------------------------------------------------------------------------------- /.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.storybook/main.ts -------------------------------------------------------------------------------- /.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.storybook/preview.tsx -------------------------------------------------------------------------------- /.storybook/vite-storybook.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.storybook/vite-storybook.config.ts -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /@types/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/@types/vite-env.d.ts -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DOCKER_DEV_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/DOCKER_DEV_SETUP.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/README.md -------------------------------------------------------------------------------- /chromatic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/chromatic.config.json -------------------------------------------------------------------------------- /commitlint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/commitlint.config.ts -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /docs/UT-Austin-Design-System.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/docs/UT-Austin-Design-System.pdf -------------------------------------------------------------------------------- /docs/WebSocket-Implementation-Tutorial.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/flake.nix -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/gulpfile.js -------------------------------------------------------------------------------- /images/UTRP-Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/images/UTRP-Demo.gif -------------------------------------------------------------------------------- /images/UTRP_Social-Preview_Prod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/images/UTRP_Social-Preview_Prod.png -------------------------------------------------------------------------------- /images/UTRP_Social-Preview_Prod.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/images/UTRP_Social-Preview_Prod.svg -------------------------------------------------------------------------------- /nix/devShells.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/nix/devShells.nix -------------------------------------------------------------------------------- /nix/treefmt.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/nix/treefmt.nix -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/package.json -------------------------------------------------------------------------------- /patches/@crxjs__vite-plugin@2.0.0-beta.21.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/patches/@crxjs__vite-plugin@2.0.0-beta.21.patch -------------------------------------------------------------------------------- /patches/@unocss__vite.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/patches/@unocss__vite.patch -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/database/grade_distributions.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/database/grade_distributions.db -------------------------------------------------------------------------------- /public/fonts/inter-100.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/fonts/inter-100.woff2 -------------------------------------------------------------------------------- /public/fonts/inter-200.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/fonts/inter-200.woff2 -------------------------------------------------------------------------------- /public/fonts/inter-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/fonts/inter-300.woff2 -------------------------------------------------------------------------------- /public/fonts/inter-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/fonts/inter-400.woff2 -------------------------------------------------------------------------------- /public/fonts/inter-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/fonts/inter-500.woff2 -------------------------------------------------------------------------------- /public/fonts/inter-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/fonts/inter-600.woff2 -------------------------------------------------------------------------------- /public/fonts/inter-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/fonts/inter-700.woff2 -------------------------------------------------------------------------------- /public/fonts/inter-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/fonts/inter-800.woff2 -------------------------------------------------------------------------------- /public/fonts/inter-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/fonts/inter-900.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-flex.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/fonts/roboto-flex.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-mono.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/fonts/roboto-mono.woff2 -------------------------------------------------------------------------------- /public/icons/icon_beta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/icons/icon_beta.svg -------------------------------------------------------------------------------- /public/icons/icon_beta_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/icons/icon_beta_128.png -------------------------------------------------------------------------------- /public/icons/icon_beta_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/icons/icon_beta_16.png -------------------------------------------------------------------------------- /public/icons/icon_beta_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/icons/icon_beta_32.png -------------------------------------------------------------------------------- /public/icons/icon_beta_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/icons/icon_beta_48.png -------------------------------------------------------------------------------- /public/icons/icon_development.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/icons/icon_development.svg -------------------------------------------------------------------------------- /public/icons/icon_development_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/icons/icon_development_128.png -------------------------------------------------------------------------------- /public/icons/icon_development_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/icons/icon_development_16.png -------------------------------------------------------------------------------- /public/icons/icon_development_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/icons/icon_development_32.png -------------------------------------------------------------------------------- /public/icons/icon_development_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/icons/icon_development_48.png -------------------------------------------------------------------------------- /public/icons/icon_production.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/icons/icon_production.svg -------------------------------------------------------------------------------- /public/icons/icon_production_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/icons/icon_production_128.png -------------------------------------------------------------------------------- /public/icons/icon_production_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/icons/icon_production_16.png -------------------------------------------------------------------------------- /public/icons/icon_production_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/icons/icon_production_32.png -------------------------------------------------------------------------------- /public/icons/icon_production_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/icons/icon_production_48.png -------------------------------------------------------------------------------- /public/json/departments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/public/json/departments.json -------------------------------------------------------------------------------- /scripts/generateChangelog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/scripts/generateChangelog.ts -------------------------------------------------------------------------------- /scripts/release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/scripts/release.ts -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/shell.nix -------------------------------------------------------------------------------- /src/assets/LD-icon-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/assets/LD-icon-new.png -------------------------------------------------------------------------------- /src/assets/LD-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/assets/LD-icon.png -------------------------------------------------------------------------------- /src/assets/UT-Map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/assets/UT-Map.svg -------------------------------------------------------------------------------- /src/assets/insideJokes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/assets/insideJokes.tsx -------------------------------------------------------------------------------- /src/assets/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/assets/robots.txt -------------------------------------------------------------------------------- /src/debug/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/debug/index.tsx -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/manifest.ts -------------------------------------------------------------------------------- /src/pages/404/Page404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/404/Page404.tsx -------------------------------------------------------------------------------- /src/pages/404/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/404/index.html -------------------------------------------------------------------------------- /src/pages/404/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/404/index.tsx -------------------------------------------------------------------------------- /src/pages/background/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/background/background.ts -------------------------------------------------------------------------------- /src/pages/background/events/onInstall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/background/events/onInstall.ts -------------------------------------------------------------------------------- /src/pages/background/events/onServiceWorkerAlive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/background/events/onServiceWorkerAlive.ts -------------------------------------------------------------------------------- /src/pages/background/events/onUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/background/events/onUpdate.ts -------------------------------------------------------------------------------- /src/pages/background/handler/CESHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/background/handler/CESHandler.ts -------------------------------------------------------------------------------- /src/pages/background/handler/browserActionHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/background/handler/browserActionHandler.ts -------------------------------------------------------------------------------- /src/pages/background/handler/calendarBackgroundHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/background/handler/calendarBackgroundHandler.ts -------------------------------------------------------------------------------- /src/pages/background/handler/tabManagementHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/background/handler/tabManagementHandler.ts -------------------------------------------------------------------------------- /src/pages/background/handler/userScheduleHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/background/handler/userScheduleHandler.ts -------------------------------------------------------------------------------- /src/pages/background/lib/addCourse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/background/lib/addCourse.ts -------------------------------------------------------------------------------- /src/pages/background/lib/addCourseByURL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/background/lib/addCourseByURL.ts -------------------------------------------------------------------------------- /src/pages/background/lib/clearCourses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/background/lib/clearCourses.ts -------------------------------------------------------------------------------- /src/pages/background/lib/createSchedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/background/lib/createSchedule.ts -------------------------------------------------------------------------------- /src/pages/background/lib/deleteSchedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/background/lib/deleteSchedule.ts -------------------------------------------------------------------------------- /src/pages/background/lib/duplicateSchedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/background/lib/duplicateSchedule.ts -------------------------------------------------------------------------------- /src/pages/background/lib/exportSchedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/background/lib/exportSchedule.ts -------------------------------------------------------------------------------- /src/pages/background/lib/handleDuplicate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/background/lib/handleDuplicate.ts -------------------------------------------------------------------------------- /src/pages/background/lib/importSchedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/background/lib/importSchedule.ts -------------------------------------------------------------------------------- /src/pages/background/lib/migrateUTRPv1Courses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/background/lib/migrateUTRPv1Courses.ts -------------------------------------------------------------------------------- /src/pages/background/lib/removeCourse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/background/lib/removeCourse.ts -------------------------------------------------------------------------------- /src/pages/background/lib/renameSchedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/background/lib/renameSchedule.ts -------------------------------------------------------------------------------- /src/pages/background/lib/switchSchedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/background/lib/switchSchedule.ts -------------------------------------------------------------------------------- /src/pages/background/util/openDebugTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/background/util/openDebugTab.ts -------------------------------------------------------------------------------- /src/pages/background/util/openNewTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/background/util/openNewTab.ts -------------------------------------------------------------------------------- /src/pages/calendar/CalendarMain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/calendar/CalendarMain.tsx -------------------------------------------------------------------------------- /src/pages/calendar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/calendar/index.html -------------------------------------------------------------------------------- /src/pages/calendar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/calendar/index.tsx -------------------------------------------------------------------------------- /src/pages/content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/content/index.tsx -------------------------------------------------------------------------------- /src/pages/debug/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/debug/App.tsx -------------------------------------------------------------------------------- /src/pages/debug/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/debug/index.html -------------------------------------------------------------------------------- /src/pages/debug/index.tsx: -------------------------------------------------------------------------------- 1 | import 'src/debug'; 2 | -------------------------------------------------------------------------------- /src/pages/map/Map.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/map/Map.tsx -------------------------------------------------------------------------------- /src/pages/map/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/map/index.html -------------------------------------------------------------------------------- /src/pages/map/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/map/index.tsx -------------------------------------------------------------------------------- /src/pages/options/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/options/Settings.tsx -------------------------------------------------------------------------------- /src/pages/options/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/options/index.html -------------------------------------------------------------------------------- /src/pages/options/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/options/index.tsx -------------------------------------------------------------------------------- /src/pages/popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/popup/index.html -------------------------------------------------------------------------------- /src/pages/popup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/popup/index.tsx -------------------------------------------------------------------------------- /src/pages/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/report/index.html -------------------------------------------------------------------------------- /src/pages/report/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/pages/report/index.tsx -------------------------------------------------------------------------------- /src/shared/messages/BrowserActionMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/messages/BrowserActionMessages.ts -------------------------------------------------------------------------------- /src/shared/messages/CESMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/messages/CESMessage.ts -------------------------------------------------------------------------------- /src/shared/messages/CalendarMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/messages/CalendarMessages.ts -------------------------------------------------------------------------------- /src/shared/messages/TabInfoMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/messages/TabInfoMessages.ts -------------------------------------------------------------------------------- /src/shared/messages/TabManagementMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/messages/TabManagementMessages.ts -------------------------------------------------------------------------------- /src/shared/messages/UserScheduleMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/messages/UserScheduleMessages.ts -------------------------------------------------------------------------------- /src/shared/messages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/messages/index.ts -------------------------------------------------------------------------------- /src/shared/storage/CacheStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/storage/CacheStore.ts -------------------------------------------------------------------------------- /src/shared/storage/DevStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/storage/DevStore.ts -------------------------------------------------------------------------------- /src/shared/storage/ExtensionStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/storage/ExtensionStore.ts -------------------------------------------------------------------------------- /src/shared/storage/OptionsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/storage/OptionsStore.ts -------------------------------------------------------------------------------- /src/shared/storage/UserScheduleStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/storage/UserScheduleStore.ts -------------------------------------------------------------------------------- /src/shared/types/CRXPages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/types/CRXPages.ts -------------------------------------------------------------------------------- /src/shared/types/CachedData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/types/CachedData.ts -------------------------------------------------------------------------------- /src/shared/types/Color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/types/Color.ts -------------------------------------------------------------------------------- /src/shared/types/Course.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/types/Course.ts -------------------------------------------------------------------------------- /src/shared/types/CourseMeeting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/types/CourseMeeting.ts -------------------------------------------------------------------------------- /src/shared/types/CourseSchedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/types/CourseSchedule.ts -------------------------------------------------------------------------------- /src/shared/types/Distribution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/types/Distribution.ts -------------------------------------------------------------------------------- /src/shared/types/Instructor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/types/Instructor.ts -------------------------------------------------------------------------------- /src/shared/types/MIMEType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/types/MIMEType.ts -------------------------------------------------------------------------------- /src/shared/types/MainCampusBuildings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/types/MainCampusBuildings.ts -------------------------------------------------------------------------------- /src/shared/types/Spacing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/types/Spacing.ts -------------------------------------------------------------------------------- /src/shared/types/ThemeColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/types/ThemeColors.ts -------------------------------------------------------------------------------- /src/shared/types/UserSchedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/types/UserSchedule.ts -------------------------------------------------------------------------------- /src/shared/types/tests/Course.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/types/tests/Course.test.ts -------------------------------------------------------------------------------- /src/shared/util/appUrls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/util/appUrls.ts -------------------------------------------------------------------------------- /src/shared/util/checkLoginStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/util/checkLoginStatus.ts -------------------------------------------------------------------------------- /src/shared/util/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/util/colors.ts -------------------------------------------------------------------------------- /src/shared/util/downloadBlob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/util/downloadBlob.ts -------------------------------------------------------------------------------- /src/shared/util/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/util/icons.tsx -------------------------------------------------------------------------------- /src/shared/util/openReportWindow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/util/openReportWindow.ts -------------------------------------------------------------------------------- /src/shared/util/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/util/random.ts -------------------------------------------------------------------------------- /src/shared/util/storybook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/util/storybook.ts -------------------------------------------------------------------------------- /src/shared/util/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/util/string.ts -------------------------------------------------------------------------------- /src/shared/util/tests/colors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/util/tests/colors.test.ts -------------------------------------------------------------------------------- /src/shared/util/tests/random.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/util/tests/random.test.ts -------------------------------------------------------------------------------- /src/shared/util/tests/string.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/util/tests/string.test.ts -------------------------------------------------------------------------------- /src/shared/util/tests/themeColors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/util/tests/themeColors.test.ts -------------------------------------------------------------------------------- /src/shared/util/tests/time.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/util/tests/time.test.ts -------------------------------------------------------------------------------- /src/shared/util/themeColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/util/themeColors.ts -------------------------------------------------------------------------------- /src/shared/util/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/util/time.ts -------------------------------------------------------------------------------- /src/shared/util/updateBadgeText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/shared/util/updateBadgeText.ts -------------------------------------------------------------------------------- /src/stories/components/Button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/Button.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/CalendarFooter.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/CalendarFooter.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/ChangelogPopup.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/ChangelogPopup.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/Chip.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/Chip.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/ConflictsWithWarning.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/ConflictsWithWarning.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/CourseStatus.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/CourseStatus.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/DialogProvider.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/DialogProvider.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/DiningAppPromo.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/DiningAppPromo.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/Divider.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/Divider.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/Dropdown.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/Dropdown.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/FileUpload.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/FileUpload.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/ImportantLinks.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/ImportantLinks.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/InfoCard.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/InfoCard.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/Link.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/Link.stories.ts -------------------------------------------------------------------------------- /src/stories/components/LogoIcon.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/LogoIcon.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/PopupCourseBlock.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/PopupCourseBlock.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/PopupMain.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/PopupMain.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/Prompt.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/Prompt.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/ResourceLinks.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/ResourceLinks.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/SchedulTotalHoursAndCourses.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/SchedulTotalHoursAndCourses.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/ScheduleListItem.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/ScheduleListItem.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/Settings.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/Settings.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/SortableList.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/SortableList.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/Spinner.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/Spinner.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/Text.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/Text.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/ToggleSwitch.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/ToggleSwitch.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/WhatsNewPopup.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/WhatsNewPopup.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/calendar/Calendar.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/calendar/Calendar.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/calendar/CalendarBottomBar.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/calendar/CalendarBottomBar.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/calendar/CalendarCourseCell.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/calendar/CalendarCourseCell.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/calendar/CalendarGrid.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/calendar/CalendarGrid.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/calendar/CalendarGridCell.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/calendar/CalendarGridCell.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/calendar/CalendarHeader.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/calendar/CalendarHeader.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/calendar/CalendarSchedules.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/calendar/CalendarSchedules.stories.tsx -------------------------------------------------------------------------------- /src/stories/components/calendar/CourseCellColorPicker.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/components/calendar/CourseCellColorPicker.stories.tsx -------------------------------------------------------------------------------- /src/stories/injected/CourseCatalogInjectedPopup.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/injected/CourseCatalogInjectedPopup.stories.tsx -------------------------------------------------------------------------------- /src/stories/injected/mocked.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/stories/injected/mocked.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/views/components/CourseCatalogMain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/CourseCatalogMain.tsx -------------------------------------------------------------------------------- /src/views/components/PopupMain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/PopupMain.tsx -------------------------------------------------------------------------------- /src/views/components/ReportIssueMain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/ReportIssueMain.tsx -------------------------------------------------------------------------------- /src/views/components/calendar/Calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/calendar/Calendar.tsx -------------------------------------------------------------------------------- /src/views/components/calendar/CalendarBottomBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/calendar/CalendarBottomBar.tsx -------------------------------------------------------------------------------- /src/views/components/calendar/CalendarCourseCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/calendar/CalendarCourseCell.tsx -------------------------------------------------------------------------------- /src/views/components/calendar/CalendarCourseCellColorPicker/ColorPatch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/calendar/CalendarCourseCellColorPicker/ColorPatch.tsx -------------------------------------------------------------------------------- /src/views/components/calendar/CalendarCourseCellColorPicker/CourseCellColorPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/calendar/CalendarCourseCellColorPicker/CourseCellColorPicker.tsx -------------------------------------------------------------------------------- /src/views/components/calendar/CalendarCourseCellColorPicker/HexColorEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/calendar/CalendarCourseCellColorPicker/HexColorEditor.tsx -------------------------------------------------------------------------------- /src/views/components/calendar/CalendarFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/calendar/CalendarFooter.tsx -------------------------------------------------------------------------------- /src/views/components/calendar/CalendarGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/calendar/CalendarGrid.tsx -------------------------------------------------------------------------------- /src/views/components/calendar/CalendarGridCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/calendar/CalendarGridCell.tsx -------------------------------------------------------------------------------- /src/views/components/calendar/CalendarHeader/CalendarHeader.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/calendar/CalendarHeader/CalendarHeader.module.scss -------------------------------------------------------------------------------- /src/views/components/calendar/CalendarHeader/CalendarHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/calendar/CalendarHeader/CalendarHeader.tsx -------------------------------------------------------------------------------- /src/views/components/calendar/CalendarSchedules.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/calendar/CalendarSchedules.tsx -------------------------------------------------------------------------------- /src/views/components/calendar/DiningAppPromo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/calendar/DiningAppPromo.tsx -------------------------------------------------------------------------------- /src/views/components/calendar/ImportantLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/calendar/ImportantLinks.tsx -------------------------------------------------------------------------------- /src/views/components/calendar/ResourceLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/calendar/ResourceLinks.tsx -------------------------------------------------------------------------------- /src/views/components/calendar/TeamLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/calendar/TeamLinks.tsx -------------------------------------------------------------------------------- /src/views/components/calendar/academic-calendars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/calendar/academic-calendars.ts -------------------------------------------------------------------------------- /src/views/components/calendar/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/calendar/utils.test.ts -------------------------------------------------------------------------------- /src/views/components/calendar/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/calendar/utils.ts -------------------------------------------------------------------------------- /src/views/components/common/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/Button.tsx -------------------------------------------------------------------------------- /src/views/components/common/ChangelogPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/ChangelogPopup.tsx -------------------------------------------------------------------------------- /src/views/components/common/Chip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/Chip.tsx -------------------------------------------------------------------------------- /src/views/components/common/ConflictsWithWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/ConflictsWithWarning.tsx -------------------------------------------------------------------------------- /src/views/components/common/CourseStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/CourseStatus.tsx -------------------------------------------------------------------------------- /src/views/components/common/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/Dialog.tsx -------------------------------------------------------------------------------- /src/views/components/common/DialogProvider/DialogProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/DialogProvider/DialogProvider.tsx -------------------------------------------------------------------------------- /src/views/components/common/Divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/Divider.tsx -------------------------------------------------------------------------------- /src/views/components/common/ExtensionRoot/ExtensionRoot.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/ExtensionRoot/ExtensionRoot.module.scss -------------------------------------------------------------------------------- /src/views/components/common/ExtensionRoot/ExtensionRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/ExtensionRoot/ExtensionRoot.tsx -------------------------------------------------------------------------------- /src/views/components/common/ExtensionRoot/_tailwind-compat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/ExtensionRoot/_tailwind-compat.css -------------------------------------------------------------------------------- /src/views/components/common/FileUpload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/FileUpload.tsx -------------------------------------------------------------------------------- /src/views/components/common/InfoCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/InfoCard.tsx -------------------------------------------------------------------------------- /src/views/components/common/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/Link.tsx -------------------------------------------------------------------------------- /src/views/components/common/LogoIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/LogoIcon.tsx -------------------------------------------------------------------------------- /src/views/components/common/MigrationDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/MigrationDialog.tsx -------------------------------------------------------------------------------- /src/views/components/common/PopupCourseBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/PopupCourseBlock.tsx -------------------------------------------------------------------------------- /src/views/components/common/Prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/Prompt.tsx -------------------------------------------------------------------------------- /src/views/components/common/ScheduleDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/ScheduleDropdown.tsx -------------------------------------------------------------------------------- /src/views/components/common/ScheduleListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/ScheduleListItem.tsx -------------------------------------------------------------------------------- /src/views/components/common/ScheduleTotalHoursAndCourses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/ScheduleTotalHoursAndCourses.tsx -------------------------------------------------------------------------------- /src/views/components/common/SortableItemOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/SortableItemOverlay.tsx -------------------------------------------------------------------------------- /src/views/components/common/SortableList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/SortableList.tsx -------------------------------------------------------------------------------- /src/views/components/common/SortableListDragHandle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/SortableListDragHandle.tsx -------------------------------------------------------------------------------- /src/views/components/common/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/Spinner.tsx -------------------------------------------------------------------------------- /src/views/components/common/SwitchButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/SwitchButton.tsx -------------------------------------------------------------------------------- /src/views/components/common/Text/Text.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/Text/Text.module.scss -------------------------------------------------------------------------------- /src/views/components/common/Text/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/Text/Text.tsx -------------------------------------------------------------------------------- /src/views/components/common/WhatsNewPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/common/WhatsNewPopup.tsx -------------------------------------------------------------------------------- /src/views/components/injected/AddAllButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/injected/AddAllButton.tsx -------------------------------------------------------------------------------- /src/views/components/injected/AutoLoad/AutoLoad.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/injected/AutoLoad/AutoLoad.module.scss -------------------------------------------------------------------------------- /src/views/components/injected/AutoLoad/AutoLoad.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/injected/AutoLoad/AutoLoad.tsx -------------------------------------------------------------------------------- /src/views/components/injected/CourseCatalogInjectedPopup/CourseCatalogInjectedPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/injected/CourseCatalogInjectedPopup/CourseCatalogInjectedPopup.tsx -------------------------------------------------------------------------------- /src/views/components/injected/CourseCatalogInjectedPopup/Description.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/injected/CourseCatalogInjectedPopup/Description.tsx -------------------------------------------------------------------------------- /src/views/components/injected/CourseCatalogInjectedPopup/DisplayMeetingInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/injected/CourseCatalogInjectedPopup/DisplayMeetingInfo.tsx -------------------------------------------------------------------------------- /src/views/components/injected/CourseCatalogInjectedPopup/GradeDistribution.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/injected/CourseCatalogInjectedPopup/GradeDistribution.tsx -------------------------------------------------------------------------------- /src/views/components/injected/CourseCatalogInjectedPopup/HeadingAndActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/injected/CourseCatalogInjectedPopup/HeadingAndActions.tsx -------------------------------------------------------------------------------- /src/views/components/injected/DaysCheckbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/injected/DaysCheckbox.tsx -------------------------------------------------------------------------------- /src/views/components/injected/NewSearchLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/injected/NewSearchLink.tsx -------------------------------------------------------------------------------- /src/views/components/injected/RecruitmentBanner/RecruitmentBanner.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/injected/RecruitmentBanner/RecruitmentBanner.module.scss -------------------------------------------------------------------------------- /src/views/components/injected/RecruitmentBanner/RecruitmentBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/injected/RecruitmentBanner/RecruitmentBanner.tsx -------------------------------------------------------------------------------- /src/views/components/injected/SearchResultShader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/injected/SearchResultShader.tsx -------------------------------------------------------------------------------- /src/views/components/injected/TableHead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/injected/TableHead.tsx -------------------------------------------------------------------------------- /src/views/components/injected/TableRow/TableRow.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/injected/TableRow/TableRow.module.scss -------------------------------------------------------------------------------- /src/views/components/injected/TableRow/TableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/injected/TableRow/TableRow.tsx -------------------------------------------------------------------------------- /src/views/components/injected/TableSubheading/TableSubheading.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/injected/TableSubheading/TableSubheading.module.scss -------------------------------------------------------------------------------- /src/views/components/injected/TableSubheading/TableSubheading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/injected/TableSubheading/TableSubheading.tsx -------------------------------------------------------------------------------- /src/views/components/map/CampusMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/map/CampusMap.tsx -------------------------------------------------------------------------------- /src/views/components/map/DaySelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/map/DaySelector.tsx -------------------------------------------------------------------------------- /src/views/components/map/DevToggles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/map/DevToggles.tsx -------------------------------------------------------------------------------- /src/views/components/map/FullscreenButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/map/FullscreenButton.tsx -------------------------------------------------------------------------------- /src/views/components/map/Map.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/map/Map.tsx -------------------------------------------------------------------------------- /src/views/components/map/Path.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/map/Path.tsx -------------------------------------------------------------------------------- /src/views/components/map/PathFinder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/map/PathFinder.ts -------------------------------------------------------------------------------- /src/views/components/map/PathStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/map/PathStats.tsx -------------------------------------------------------------------------------- /src/views/components/map/TimeWarningLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/map/TimeWarningLabel.tsx -------------------------------------------------------------------------------- /src/views/components/map/ZoomPanControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/map/ZoomPanControls.tsx -------------------------------------------------------------------------------- /src/views/components/map/graphNodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/map/graphNodes.ts -------------------------------------------------------------------------------- /src/views/components/map/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/map/types.ts -------------------------------------------------------------------------------- /src/views/components/map/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/map/utils.ts -------------------------------------------------------------------------------- /src/views/components/settings/DevMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/settings/DevMode.tsx -------------------------------------------------------------------------------- /src/views/components/settings/Preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/settings/Preview.tsx -------------------------------------------------------------------------------- /src/views/components/settings/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/components/settings/Settings.tsx -------------------------------------------------------------------------------- /src/views/contexts/CalendarContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/contexts/CalendarContext.ts -------------------------------------------------------------------------------- /src/views/contexts/ColorPickerContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/contexts/ColorPickerContext.tsx -------------------------------------------------------------------------------- /src/views/contexts/DialogContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/contexts/DialogContext.ts -------------------------------------------------------------------------------- /src/views/contexts/SentryContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/contexts/SentryContext.tsx -------------------------------------------------------------------------------- /src/views/contexts/SortableItemContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/contexts/SortableItemContext.tsx -------------------------------------------------------------------------------- /src/views/hooks/tests/useFlattenedCourseSchedule.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/hooks/tests/useFlattenedCourseSchedule.test.ts -------------------------------------------------------------------------------- /src/views/hooks/useChangelog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/hooks/useChangelog.tsx -------------------------------------------------------------------------------- /src/views/hooks/useColorPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/hooks/useColorPicker.ts -------------------------------------------------------------------------------- /src/views/hooks/useCourseFromUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/hooks/useCourseFromUrl.ts -------------------------------------------------------------------------------- /src/views/hooks/useCursor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/hooks/useCursor.tsx -------------------------------------------------------------------------------- /src/views/hooks/useDebounce.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/hooks/useDebounce.tsx -------------------------------------------------------------------------------- /src/views/hooks/useEnforceScheduleLimit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/hooks/useEnforceScheduleLimit.tsx -------------------------------------------------------------------------------- /src/views/hooks/useFlattenedCourseSchedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/hooks/useFlattenedCourseSchedule.ts -------------------------------------------------------------------------------- /src/views/hooks/useInfiniteScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/hooks/useInfiniteScroll.ts -------------------------------------------------------------------------------- /src/views/hooks/useKeyPress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/hooks/useKeyPress.ts -------------------------------------------------------------------------------- /src/views/hooks/useSchedules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/hooks/useSchedules.ts -------------------------------------------------------------------------------- /src/views/hooks/useTabMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/hooks/useTabMessage.ts -------------------------------------------------------------------------------- /src/views/hooks/useVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/hooks/useVersion.ts -------------------------------------------------------------------------------- /src/views/hooks/useWhatsNew.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/hooks/useWhatsNew.tsx -------------------------------------------------------------------------------- /src/views/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/index.tsx -------------------------------------------------------------------------------- /src/views/lib/CourseCatalogScraper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/lib/CourseCatalogScraper.test.ts -------------------------------------------------------------------------------- /src/views/lib/CourseCatalogScraper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/lib/CourseCatalogScraper.ts -------------------------------------------------------------------------------- /src/views/lib/courseMigration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/lib/courseMigration.ts -------------------------------------------------------------------------------- /src/views/lib/database/initializeDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/lib/database/initializeDB.ts -------------------------------------------------------------------------------- /src/views/lib/database/queryDistribution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/lib/database/queryDistribution.ts -------------------------------------------------------------------------------- /src/views/lib/getCourseTableRows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/lib/getCourseTableRows.ts -------------------------------------------------------------------------------- /src/views/lib/getGitHubStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/lib/getGitHubStats.ts -------------------------------------------------------------------------------- /src/views/lib/getSiteSupport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/lib/getSiteSupport.ts -------------------------------------------------------------------------------- /src/views/lib/getUpdatedAtDateTimeString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/lib/getUpdatedAtDateTimeString.ts -------------------------------------------------------------------------------- /src/views/lib/loadNextCourseCatalogPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/lib/loadNextCourseCatalogPage.ts -------------------------------------------------------------------------------- /src/views/lib/openNewTabFromContentScript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/lib/openNewTabFromContentScript.ts -------------------------------------------------------------------------------- /src/views/lib/populateSearchInputs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/lib/populateSearchInputs.ts -------------------------------------------------------------------------------- /src/views/lib/react/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/lib/react/index.tsx -------------------------------------------------------------------------------- /src/views/styles/base.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/styles/base.module.scss -------------------------------------------------------------------------------- /src/views/styles/colors.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/styles/colors.module.scss -------------------------------------------------------------------------------- /src/views/styles/colors.module.scss.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/styles/colors.module.scss.d.ts -------------------------------------------------------------------------------- /src/views/styles/elevation.module.scss: -------------------------------------------------------------------------------- 1 | $MAX_Z_INDEX: 2147483647; 2 | -------------------------------------------------------------------------------- /src/views/styles/fonts.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/styles/fonts.module.scss -------------------------------------------------------------------------------- /src/views/styles/fonts.module.scss.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/views/styles/fonts.module.scss.d.ts -------------------------------------------------------------------------------- /src/views/styles/utils.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/src/vite-env.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/tsconfig.json -------------------------------------------------------------------------------- /unocss.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/unocss.config.ts -------------------------------------------------------------------------------- /utils/git/getSourceRef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/utils/git/getSourceRef.ts -------------------------------------------------------------------------------- /utils/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/utils/log.ts -------------------------------------------------------------------------------- /utils/plugins/make-manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/utils/plugins/make-manifest.ts -------------------------------------------------------------------------------- /utils/plugins/run-command-on-demand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/utils/plugins/run-command-on-demand.ts -------------------------------------------------------------------------------- /utils/plugins/vite-build-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/utils/plugins/vite-build-logger.ts -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Longhorn-Developers/UT-Registration-Plus/HEAD/vite.config.ts --------------------------------------------------------------------------------