├── .coderabbit.yaml ├── .dockerignore ├── .editorconfig ├── .eslintrc.cjs ├── .github ├── dependabot.yml └── workflows │ ├── auto-update.yml │ ├── deploy.yml │ ├── links-checker.yml │ ├── matrix-bot.yml │ ├── node.js.yml │ ├── publish.yml │ └── visual-regression.yml ├── .gitignore ├── .gitmodules ├── .husky ├── commit-msg └── pre-commit ├── AGENTS.md ├── Dockerfile.snapshot-tests ├── LICENSE ├── README.md ├── biome.jsonc ├── commitlint.config.js ├── docker-compose.yml ├── index.html ├── package.json ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico └── site.webmanifest ├── scripts ├── cp-gp.js └── run-docker-snapshot-tests.sh ├── shared └── links-metadata │ ├── .npmignore │ ├── index.ts │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── SynctexStore.ts │ ├── TexStore.ts │ ├── link.ts │ ├── metadata.ts │ ├── migrate.ts │ ├── notes.ts │ ├── types.ts │ └── utils.ts │ └── tsconfig.json ├── src ├── App.css ├── App.tsx ├── assets │ ├── fluffy-logo.svg │ ├── reader.svg │ └── tool-logo.svg ├── components │ ├── CodeSyncProvider │ │ ├── CodeSyncProvider.tsx │ │ ├── debugDrawBlock.ts │ │ └── hooks │ │ │ ├── useSynctexStore.ts │ │ │ └── useTexStore.ts │ ├── DownloadThemedPdf │ │ └── DownloadThemedPdf.tsx │ ├── Header │ │ ├── Header.tsx │ │ ├── components │ │ │ ├── ConfirmDropdownMenuItem.tsx │ │ │ ├── MoreNotesActionsButton.tsx │ │ │ ├── NotesButtonsGroup.tsx │ │ │ ├── SettingsModal.tsx │ │ │ ├── index.ts │ │ │ └── useImport.ts │ │ └── index.ts │ ├── Label │ │ ├── Label.tsx │ │ └── color-utils.ts │ ├── LabelsFilter │ │ ├── LabelsFilter.tsx │ │ └── index.ts │ ├── LightThemeToggle │ │ └── LightThemeToggle.tsx │ ├── LocationProvider │ │ ├── LocationProvider.tsx │ │ ├── VersionProvider.tsx │ │ ├── hooks │ │ │ └── useGetLocationParamsToHash.ts │ │ ├── types.ts │ │ └── utils │ │ │ ├── constants.ts │ │ │ ├── encodePageNumberAndIndex.ts │ │ │ └── locationParamsToHash.ts │ ├── MetadataProvider │ │ └── MetadataProvider.tsx │ ├── NoteContent │ │ └── NoteContent.tsx │ ├── NoteManager │ │ ├── NoteManager.css │ │ ├── NoteManager.tsx │ │ └── components │ │ │ ├── Note.tsx │ │ │ ├── NoteContext.tsx │ │ │ ├── NoteDropdown.tsx │ │ │ ├── NoteLabels.tsx │ │ │ ├── NoteLayout.tsx │ │ │ ├── NoteLink.tsx │ │ │ ├── NotesList.tsx │ │ │ ├── SimpleComponents │ │ │ ├── DropdownMenuItemCopyButton.tsx │ │ │ ├── Input.tsx │ │ │ ├── Textarea.tsx │ │ │ ├── TinyIconButton.tsx │ │ │ ├── TwoStepDropdownMenuItem.tsx │ │ │ ├── common.ts │ │ │ └── index.ts │ │ │ └── icons │ │ │ ├── CheckIcon.tsx │ │ │ └── CopyIcon.tsx │ ├── NotesProvider │ │ ├── NotesProvider.tsx │ │ ├── consts │ │ │ ├── labels.ts │ │ │ └── remoteSources.ts │ │ ├── hooks │ │ │ ├── useDecoratedNotes.ts │ │ │ ├── useLabels.spec.ts │ │ │ ├── useLabels.ts │ │ │ └── useRemoteNotes.ts │ │ ├── types │ │ │ ├── DecoratedNote.ts │ │ │ ├── RemoteSource.ts │ │ │ └── StorageNote.ts │ │ └── utils │ │ │ ├── areSelectionsEqual.ts │ │ │ ├── labelsLocalStorage.ts │ │ │ ├── notesImportExport.spec.ts │ │ │ ├── notesImportExport.ts │ │ │ ├── notesLocalStorage.ts │ │ │ ├── remoteSources.spec.ts │ │ │ └── remoteSources.ts │ ├── Outline │ │ ├── Outline.css │ │ ├── Outline.tsx │ │ ├── OutlineLink.tsx │ │ ├── Skeleton.tsx │ │ ├── index.ts │ │ └── types.ts │ ├── PdfProvider │ │ ├── PdfProvider.tsx │ │ └── hooks │ │ │ └── useTextLayerRendered.ts │ ├── PdfViewer │ │ ├── Highlighter │ │ │ ├── Highlighter.css │ │ │ └── Highlighter.tsx │ │ ├── NoteRenderer │ │ │ ├── NoteRenderer.tsx │ │ │ └── components │ │ │ │ └── HighlightNote │ │ │ │ ├── HighlightNote.css │ │ │ │ └── HighlightNote.tsx │ │ ├── PdfViewer.css │ │ ├── PdfViewer.tsx │ │ └── SelectionRenderer │ │ │ ├── SelectionRenderer.tsx │ │ │ └── useIsCurrentPageRendered.ts │ ├── RemoteSources │ │ ├── RemoteSources.tsx │ │ └── components │ │ │ ├── RemoteSource.css │ │ │ ├── RemoteSource.tsx │ │ │ └── Versions.tsx │ ├── Resizable │ │ ├── Resizable.css │ │ └── Resizable.tsx │ ├── Search │ │ ├── Search.css │ │ └── Search.tsx │ ├── Selection │ │ ├── Selection.css │ │ └── Selection.tsx │ ├── SelectionProvider │ │ └── SelectionProvider.tsx │ ├── Sidebar │ │ ├── Sidebar.css │ │ └── Sidebar.tsx │ ├── Tabs │ │ └── Tabs.tsx │ ├── Version │ │ ├── Version.tsx │ │ └── index.ts │ └── ZoomControls │ │ ├── ZoomControls.css │ │ └── ZoomControls.tsx ├── devtools │ ├── featureFlags.ts │ ├── index.ts │ ├── initDevTools.ts │ └── useFeatureFlag.tsx ├── font.css ├── hooks │ ├── useKeyboardShortcut.ts │ ├── usePrevious.ts │ └── useStateSyncecWthLocalStorage.ts ├── index.css ├── main.tsx ├── tailwind.css ├── utils │ ├── deserializeLegacyLocation.ts │ ├── renderMathToString.ts │ ├── subtractBorder.ts │ └── validateMath.ts ├── variables.css └── vite-env.d.ts ├── tailwind.config.js ├── tools ├── links-check │ ├── .npmignore │ ├── README.md │ ├── bin │ │ └── links-check.js │ ├── index.ts │ ├── migrate.ts │ ├── notes.ts │ ├── package-lock.json │ ├── package.json │ ├── report.ts │ ├── scan.ts │ └── tsconfig.json ├── matrix-bot │ ├── .gitignore │ ├── Dockerfile │ ├── convert-to-notes.ts │ ├── index.ts │ ├── logger.ts │ ├── output │ │ └── .gitkeep │ ├── package-lock.json │ ├── package.json │ ├── server.ts │ └── tsconfig.json └── snapshot-tests │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── playwright.config.ts │ └── tests │ ├── basic-snapshots.spec.ts │ ├── basic-snapshots.spec.ts-snapshots │ ├── homepage-outline-dark-mode-darwin.png │ ├── homepage-outline-dark-mode-linux.png │ ├── homepage-outline-light-mode-darwin.png │ ├── homepage-outline-light-mode-linux.png │ ├── notes-tab-after-edit-click-dark-mode-darwin.png │ ├── notes-tab-after-edit-click-light-mode-darwin.png │ ├── notes-tab-after-note-activation-dark-mode-darwin.png │ ├── notes-tab-after-note-activation-dark-mode-linux.png │ ├── notes-tab-after-note-activation-light-mode-darwin.png │ ├── notes-tab-after-note-activation-light-mode-linux.png │ ├── notes-tab-after-note-edit-dark-mode-darwin.png │ ├── notes-tab-after-note-edit-dark-mode-linux.png │ ├── notes-tab-after-note-edit-light-mode-darwin.png │ ├── notes-tab-after-note-edit-light-mode-linux.png │ ├── notes-tab-after-opening-dropdown-dark-mode-linux.png │ ├── notes-tab-after-opening-dropdown-light-mode-linux.png │ ├── notes-tab-edit-dark-mode-darwin.png │ ├── notes-tab-edit-dark-mode-linux.png │ ├── notes-tab-edit-light-mode-darwin.png │ ├── notes-tab-edit-light-mode-linux.png │ ├── notes-tab-initial-dark-mode-darwin.png │ ├── notes-tab-initial-dark-mode-linux.png │ ├── notes-tab-initial-light-mode-darwin.png │ ├── notes-tab-initial-light-mode-linux.png │ ├── search-initial-dark-mode-darwin.png │ ├── search-initial-dark-mode-linux.png │ ├── search-initial-light-mode-darwin.png │ ├── search-initial-light-mode-linux.png │ ├── search-with-query-dark-mode-darwin.png │ ├── search-with-query-dark-mode-linux.png │ ├── search-with-query-light-mode-darwin.png │ ├── search-with-query-light-mode-linux.png │ ├── search-with-results-dark-mode-darwin.png │ ├── search-with-results-dark-mode-linux.png │ ├── search-with-results-light-mode-darwin.png │ ├── search-with-results-light-mode-linux.png │ ├── topbar-github-expanded-dark-mode-darwin.png │ ├── topbar-github-expanded-dark-mode-linux.png │ ├── topbar-github-expanded-light-mode-darwin.png │ ├── topbar-github-expanded-light-mode-linux.png │ ├── topbar-github-option-hover-dark-mode-darwin.png │ ├── topbar-github-option-hover-dark-mode-linux.png │ ├── topbar-github-option-hover-light-mode-darwin.png │ ├── topbar-github-option-hover-light-mode-linux.png │ ├── topbar-more-clicked-dark-mode-darwin.png │ ├── topbar-more-clicked-dark-mode-linux.png │ ├── topbar-more-clicked-light-mode-darwin.png │ ├── topbar-more-clicked-light-mode-linux.png │ ├── topbar-more-settings-clicked-dark-mode-darwin.png │ ├── topbar-more-settings-clicked-dark-mode-linux.png │ ├── topbar-more-settings-clicked-light-mode-darwin.png │ ├── topbar-more-settings-clicked-light-mode-linux.png │ ├── topbar-notes-dropdown-dark-mode-darwin.png │ ├── topbar-notes-dropdown-dark-mode-linux.png │ ├── topbar-notes-dropdown-light-mode-darwin.png │ ├── topbar-notes-dropdown-light-mode-linux.png │ ├── topbar-notes-selected-off-dark-mode-darwin.png │ ├── topbar-notes-selected-off-dark-mode-linux.png │ ├── topbar-notes-selected-off-light-mode-darwin.png │ ├── topbar-notes-selected-off-light-mode-linux.png │ ├── topbar-notes-selected-on-dark-mode-darwin.png │ ├── topbar-notes-selected-on-dark-mode-linux.png │ ├── topbar-notes-selected-on-light-mode-darwin.png │ └── topbar-notes-selected-on-light-mode-linux.png │ └── utils │ └── add-notes-to-local-storage.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── update-archive.sh ├── vite.config.ts └── vitest.config.ts /.coderabbit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/.coderabbit.yaml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/.github/workflows/auto-update.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/links-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/.github/workflows/links-checker.yml -------------------------------------------------------------------------------- /.github/workflows/matrix-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/.github/workflows/matrix-bot.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/visual-regression.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/.github/workflows/visual-regression.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/.gitmodules -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/AGENTS.md -------------------------------------------------------------------------------- /Dockerfile.snapshot-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/Dockerfile.snapshot-tests -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/README.md -------------------------------------------------------------------------------- /biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/biome.jsonc -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | export default { extends: ["@commitlint/config-conventional"] }; 2 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/package.json -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /scripts/cp-gp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/scripts/cp-gp.js -------------------------------------------------------------------------------- /scripts/run-docker-snapshot-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/scripts/run-docker-snapshot-tests.sh -------------------------------------------------------------------------------- /shared/links-metadata/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shared/links-metadata/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/shared/links-metadata/index.ts -------------------------------------------------------------------------------- /shared/links-metadata/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/shared/links-metadata/package-lock.json -------------------------------------------------------------------------------- /shared/links-metadata/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/shared/links-metadata/package.json -------------------------------------------------------------------------------- /shared/links-metadata/src/SynctexStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/shared/links-metadata/src/SynctexStore.ts -------------------------------------------------------------------------------- /shared/links-metadata/src/TexStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/shared/links-metadata/src/TexStore.ts -------------------------------------------------------------------------------- /shared/links-metadata/src/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/shared/links-metadata/src/link.ts -------------------------------------------------------------------------------- /shared/links-metadata/src/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/shared/links-metadata/src/metadata.ts -------------------------------------------------------------------------------- /shared/links-metadata/src/migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/shared/links-metadata/src/migrate.ts -------------------------------------------------------------------------------- /shared/links-metadata/src/notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/shared/links-metadata/src/notes.ts -------------------------------------------------------------------------------- /shared/links-metadata/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/shared/links-metadata/src/types.ts -------------------------------------------------------------------------------- /shared/links-metadata/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/shared/links-metadata/src/utils.ts -------------------------------------------------------------------------------- /shared/links-metadata/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/shared/links-metadata/tsconfig.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/fluffy-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/assets/fluffy-logo.svg -------------------------------------------------------------------------------- /src/assets/reader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/assets/reader.svg -------------------------------------------------------------------------------- /src/assets/tool-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/assets/tool-logo.svg -------------------------------------------------------------------------------- /src/components/CodeSyncProvider/CodeSyncProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/CodeSyncProvider/CodeSyncProvider.tsx -------------------------------------------------------------------------------- /src/components/CodeSyncProvider/debugDrawBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/CodeSyncProvider/debugDrawBlock.ts -------------------------------------------------------------------------------- /src/components/CodeSyncProvider/hooks/useSynctexStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/CodeSyncProvider/hooks/useSynctexStore.ts -------------------------------------------------------------------------------- /src/components/CodeSyncProvider/hooks/useTexStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/CodeSyncProvider/hooks/useTexStore.ts -------------------------------------------------------------------------------- /src/components/DownloadThemedPdf/DownloadThemedPdf.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/DownloadThemedPdf/DownloadThemedPdf.tsx -------------------------------------------------------------------------------- /src/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Header/Header.tsx -------------------------------------------------------------------------------- /src/components/Header/components/ConfirmDropdownMenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Header/components/ConfirmDropdownMenuItem.tsx -------------------------------------------------------------------------------- /src/components/Header/components/MoreNotesActionsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Header/components/MoreNotesActionsButton.tsx -------------------------------------------------------------------------------- /src/components/Header/components/NotesButtonsGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Header/components/NotesButtonsGroup.tsx -------------------------------------------------------------------------------- /src/components/Header/components/SettingsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Header/components/SettingsModal.tsx -------------------------------------------------------------------------------- /src/components/Header/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./NotesButtonsGroup"; 2 | -------------------------------------------------------------------------------- /src/components/Header/components/useImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Header/components/useImport.ts -------------------------------------------------------------------------------- /src/components/Header/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Header/index.ts -------------------------------------------------------------------------------- /src/components/Label/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Label/Label.tsx -------------------------------------------------------------------------------- /src/components/Label/color-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Label/color-utils.ts -------------------------------------------------------------------------------- /src/components/LabelsFilter/LabelsFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/LabelsFilter/LabelsFilter.tsx -------------------------------------------------------------------------------- /src/components/LabelsFilter/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./LabelsFilter"; 2 | -------------------------------------------------------------------------------- /src/components/LightThemeToggle/LightThemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/LightThemeToggle/LightThemeToggle.tsx -------------------------------------------------------------------------------- /src/components/LocationProvider/LocationProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/LocationProvider/LocationProvider.tsx -------------------------------------------------------------------------------- /src/components/LocationProvider/VersionProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/LocationProvider/VersionProvider.tsx -------------------------------------------------------------------------------- /src/components/LocationProvider/hooks/useGetLocationParamsToHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/LocationProvider/hooks/useGetLocationParamsToHash.ts -------------------------------------------------------------------------------- /src/components/LocationProvider/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/LocationProvider/types.ts -------------------------------------------------------------------------------- /src/components/LocationProvider/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/LocationProvider/utils/constants.ts -------------------------------------------------------------------------------- /src/components/LocationProvider/utils/encodePageNumberAndIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/LocationProvider/utils/encodePageNumberAndIndex.ts -------------------------------------------------------------------------------- /src/components/LocationProvider/utils/locationParamsToHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/LocationProvider/utils/locationParamsToHash.ts -------------------------------------------------------------------------------- /src/components/MetadataProvider/MetadataProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/MetadataProvider/MetadataProvider.tsx -------------------------------------------------------------------------------- /src/components/NoteContent/NoteContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NoteContent/NoteContent.tsx -------------------------------------------------------------------------------- /src/components/NoteManager/NoteManager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NoteManager/NoteManager.css -------------------------------------------------------------------------------- /src/components/NoteManager/NoteManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NoteManager/NoteManager.tsx -------------------------------------------------------------------------------- /src/components/NoteManager/components/Note.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NoteManager/components/Note.tsx -------------------------------------------------------------------------------- /src/components/NoteManager/components/NoteContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NoteManager/components/NoteContext.tsx -------------------------------------------------------------------------------- /src/components/NoteManager/components/NoteDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NoteManager/components/NoteDropdown.tsx -------------------------------------------------------------------------------- /src/components/NoteManager/components/NoteLabels.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NoteManager/components/NoteLabels.tsx -------------------------------------------------------------------------------- /src/components/NoteManager/components/NoteLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NoteManager/components/NoteLayout.tsx -------------------------------------------------------------------------------- /src/components/NoteManager/components/NoteLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NoteManager/components/NoteLink.tsx -------------------------------------------------------------------------------- /src/components/NoteManager/components/NotesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NoteManager/components/NotesList.tsx -------------------------------------------------------------------------------- /src/components/NoteManager/components/SimpleComponents/DropdownMenuItemCopyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NoteManager/components/SimpleComponents/DropdownMenuItemCopyButton.tsx -------------------------------------------------------------------------------- /src/components/NoteManager/components/SimpleComponents/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NoteManager/components/SimpleComponents/Input.tsx -------------------------------------------------------------------------------- /src/components/NoteManager/components/SimpleComponents/Textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NoteManager/components/SimpleComponents/Textarea.tsx -------------------------------------------------------------------------------- /src/components/NoteManager/components/SimpleComponents/TinyIconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NoteManager/components/SimpleComponents/TinyIconButton.tsx -------------------------------------------------------------------------------- /src/components/NoteManager/components/SimpleComponents/TwoStepDropdownMenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NoteManager/components/SimpleComponents/TwoStepDropdownMenuItem.tsx -------------------------------------------------------------------------------- /src/components/NoteManager/components/SimpleComponents/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NoteManager/components/SimpleComponents/common.ts -------------------------------------------------------------------------------- /src/components/NoteManager/components/SimpleComponents/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NoteManager/components/SimpleComponents/index.ts -------------------------------------------------------------------------------- /src/components/NoteManager/components/icons/CheckIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NoteManager/components/icons/CheckIcon.tsx -------------------------------------------------------------------------------- /src/components/NoteManager/components/icons/CopyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NoteManager/components/icons/CopyIcon.tsx -------------------------------------------------------------------------------- /src/components/NotesProvider/NotesProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NotesProvider/NotesProvider.tsx -------------------------------------------------------------------------------- /src/components/NotesProvider/consts/labels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NotesProvider/consts/labels.ts -------------------------------------------------------------------------------- /src/components/NotesProvider/consts/remoteSources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NotesProvider/consts/remoteSources.ts -------------------------------------------------------------------------------- /src/components/NotesProvider/hooks/useDecoratedNotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NotesProvider/hooks/useDecoratedNotes.ts -------------------------------------------------------------------------------- /src/components/NotesProvider/hooks/useLabels.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NotesProvider/hooks/useLabels.spec.ts -------------------------------------------------------------------------------- /src/components/NotesProvider/hooks/useLabels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NotesProvider/hooks/useLabels.ts -------------------------------------------------------------------------------- /src/components/NotesProvider/hooks/useRemoteNotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NotesProvider/hooks/useRemoteNotes.ts -------------------------------------------------------------------------------- /src/components/NotesProvider/types/DecoratedNote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NotesProvider/types/DecoratedNote.ts -------------------------------------------------------------------------------- /src/components/NotesProvider/types/RemoteSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NotesProvider/types/RemoteSource.ts -------------------------------------------------------------------------------- /src/components/NotesProvider/types/StorageNote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NotesProvider/types/StorageNote.ts -------------------------------------------------------------------------------- /src/components/NotesProvider/utils/areSelectionsEqual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NotesProvider/utils/areSelectionsEqual.ts -------------------------------------------------------------------------------- /src/components/NotesProvider/utils/labelsLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NotesProvider/utils/labelsLocalStorage.ts -------------------------------------------------------------------------------- /src/components/NotesProvider/utils/notesImportExport.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NotesProvider/utils/notesImportExport.spec.ts -------------------------------------------------------------------------------- /src/components/NotesProvider/utils/notesImportExport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NotesProvider/utils/notesImportExport.ts -------------------------------------------------------------------------------- /src/components/NotesProvider/utils/notesLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NotesProvider/utils/notesLocalStorage.ts -------------------------------------------------------------------------------- /src/components/NotesProvider/utils/remoteSources.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NotesProvider/utils/remoteSources.spec.ts -------------------------------------------------------------------------------- /src/components/NotesProvider/utils/remoteSources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/NotesProvider/utils/remoteSources.ts -------------------------------------------------------------------------------- /src/components/Outline/Outline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Outline/Outline.css -------------------------------------------------------------------------------- /src/components/Outline/Outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Outline/Outline.tsx -------------------------------------------------------------------------------- /src/components/Outline/OutlineLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Outline/OutlineLink.tsx -------------------------------------------------------------------------------- /src/components/Outline/Skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Outline/Skeleton.tsx -------------------------------------------------------------------------------- /src/components/Outline/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Outline/index.ts -------------------------------------------------------------------------------- /src/components/Outline/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Outline/types.ts -------------------------------------------------------------------------------- /src/components/PdfProvider/PdfProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/PdfProvider/PdfProvider.tsx -------------------------------------------------------------------------------- /src/components/PdfProvider/hooks/useTextLayerRendered.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/PdfProvider/hooks/useTextLayerRendered.ts -------------------------------------------------------------------------------- /src/components/PdfViewer/Highlighter/Highlighter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/PdfViewer/Highlighter/Highlighter.css -------------------------------------------------------------------------------- /src/components/PdfViewer/Highlighter/Highlighter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/PdfViewer/Highlighter/Highlighter.tsx -------------------------------------------------------------------------------- /src/components/PdfViewer/NoteRenderer/NoteRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/PdfViewer/NoteRenderer/NoteRenderer.tsx -------------------------------------------------------------------------------- /src/components/PdfViewer/NoteRenderer/components/HighlightNote/HighlightNote.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/PdfViewer/NoteRenderer/components/HighlightNote/HighlightNote.css -------------------------------------------------------------------------------- /src/components/PdfViewer/NoteRenderer/components/HighlightNote/HighlightNote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/PdfViewer/NoteRenderer/components/HighlightNote/HighlightNote.tsx -------------------------------------------------------------------------------- /src/components/PdfViewer/PdfViewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/PdfViewer/PdfViewer.css -------------------------------------------------------------------------------- /src/components/PdfViewer/PdfViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/PdfViewer/PdfViewer.tsx -------------------------------------------------------------------------------- /src/components/PdfViewer/SelectionRenderer/SelectionRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/PdfViewer/SelectionRenderer/SelectionRenderer.tsx -------------------------------------------------------------------------------- /src/components/PdfViewer/SelectionRenderer/useIsCurrentPageRendered.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/PdfViewer/SelectionRenderer/useIsCurrentPageRendered.ts -------------------------------------------------------------------------------- /src/components/RemoteSources/RemoteSources.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/RemoteSources/RemoteSources.tsx -------------------------------------------------------------------------------- /src/components/RemoteSources/components/RemoteSource.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/RemoteSources/components/RemoteSource.css -------------------------------------------------------------------------------- /src/components/RemoteSources/components/RemoteSource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/RemoteSources/components/RemoteSource.tsx -------------------------------------------------------------------------------- /src/components/RemoteSources/components/Versions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/RemoteSources/components/Versions.tsx -------------------------------------------------------------------------------- /src/components/Resizable/Resizable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Resizable/Resizable.css -------------------------------------------------------------------------------- /src/components/Resizable/Resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Resizable/Resizable.tsx -------------------------------------------------------------------------------- /src/components/Search/Search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Search/Search.css -------------------------------------------------------------------------------- /src/components/Search/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Search/Search.tsx -------------------------------------------------------------------------------- /src/components/Selection/Selection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Selection/Selection.css -------------------------------------------------------------------------------- /src/components/Selection/Selection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Selection/Selection.tsx -------------------------------------------------------------------------------- /src/components/SelectionProvider/SelectionProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/SelectionProvider/SelectionProvider.tsx -------------------------------------------------------------------------------- /src/components/Sidebar/Sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Sidebar/Sidebar.css -------------------------------------------------------------------------------- /src/components/Sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/Tabs/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Tabs/Tabs.tsx -------------------------------------------------------------------------------- /src/components/Version/Version.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Version/Version.tsx -------------------------------------------------------------------------------- /src/components/Version/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/Version/index.ts -------------------------------------------------------------------------------- /src/components/ZoomControls/ZoomControls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/ZoomControls/ZoomControls.css -------------------------------------------------------------------------------- /src/components/ZoomControls/ZoomControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/components/ZoomControls/ZoomControls.tsx -------------------------------------------------------------------------------- /src/devtools/featureFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/devtools/featureFlags.ts -------------------------------------------------------------------------------- /src/devtools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/devtools/index.ts -------------------------------------------------------------------------------- /src/devtools/initDevTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/devtools/initDevTools.ts -------------------------------------------------------------------------------- /src/devtools/useFeatureFlag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/devtools/useFeatureFlag.tsx -------------------------------------------------------------------------------- /src/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/font.css -------------------------------------------------------------------------------- /src/hooks/useKeyboardShortcut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/hooks/useKeyboardShortcut.ts -------------------------------------------------------------------------------- /src/hooks/usePrevious.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/hooks/usePrevious.ts -------------------------------------------------------------------------------- /src/hooks/useStateSyncecWthLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/hooks/useStateSyncecWthLocalStorage.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/tailwind.css -------------------------------------------------------------------------------- /src/utils/deserializeLegacyLocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/utils/deserializeLegacyLocation.ts -------------------------------------------------------------------------------- /src/utils/renderMathToString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/utils/renderMathToString.ts -------------------------------------------------------------------------------- /src/utils/subtractBorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/utils/subtractBorder.ts -------------------------------------------------------------------------------- /src/utils/validateMath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/utils/validateMath.ts -------------------------------------------------------------------------------- /src/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/variables.css -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/src/vite-env.d.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tools/links-check/.npmignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tools/links-check/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/links-check/README.md -------------------------------------------------------------------------------- /tools/links-check/bin/links-check.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require("../dist/index"); 4 | -------------------------------------------------------------------------------- /tools/links-check/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/links-check/index.ts -------------------------------------------------------------------------------- /tools/links-check/migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/links-check/migrate.ts -------------------------------------------------------------------------------- /tools/links-check/notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/links-check/notes.ts -------------------------------------------------------------------------------- /tools/links-check/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/links-check/package-lock.json -------------------------------------------------------------------------------- /tools/links-check/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/links-check/package.json -------------------------------------------------------------------------------- /tools/links-check/report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/links-check/report.ts -------------------------------------------------------------------------------- /tools/links-check/scan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/links-check/scan.ts -------------------------------------------------------------------------------- /tools/links-check/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/links-check/tsconfig.json -------------------------------------------------------------------------------- /tools/matrix-bot/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | output/*.json 3 | -------------------------------------------------------------------------------- /tools/matrix-bot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/matrix-bot/Dockerfile -------------------------------------------------------------------------------- /tools/matrix-bot/convert-to-notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/matrix-bot/convert-to-notes.ts -------------------------------------------------------------------------------- /tools/matrix-bot/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/matrix-bot/index.ts -------------------------------------------------------------------------------- /tools/matrix-bot/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/matrix-bot/logger.ts -------------------------------------------------------------------------------- /tools/matrix-bot/output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/matrix-bot/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/matrix-bot/package-lock.json -------------------------------------------------------------------------------- /tools/matrix-bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/matrix-bot/package.json -------------------------------------------------------------------------------- /tools/matrix-bot/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/matrix-bot/server.ts -------------------------------------------------------------------------------- /tools/matrix-bot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/matrix-bot/tsconfig.json -------------------------------------------------------------------------------- /tools/snapshot-tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/.gitignore -------------------------------------------------------------------------------- /tools/snapshot-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/README.md -------------------------------------------------------------------------------- /tools/snapshot-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/package.json -------------------------------------------------------------------------------- /tools/snapshot-tests/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/playwright.config.ts -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/homepage-outline-dark-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/homepage-outline-dark-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/homepage-outline-dark-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/homepage-outline-dark-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/homepage-outline-light-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/homepage-outline-light-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/homepage-outline-light-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/homepage-outline-light-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-after-edit-click-dark-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-after-edit-click-dark-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-after-edit-click-light-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-after-edit-click-light-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-after-note-activation-dark-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-after-note-activation-dark-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-after-note-activation-dark-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-after-note-activation-dark-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-after-note-activation-light-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-after-note-activation-light-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-after-note-activation-light-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-after-note-activation-light-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-after-note-edit-dark-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-after-note-edit-dark-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-after-note-edit-dark-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-after-note-edit-dark-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-after-note-edit-light-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-after-note-edit-light-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-after-note-edit-light-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-after-note-edit-light-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-after-opening-dropdown-dark-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-after-opening-dropdown-dark-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-after-opening-dropdown-light-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-after-opening-dropdown-light-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-edit-dark-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-edit-dark-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-edit-dark-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-edit-dark-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-edit-light-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-edit-light-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-edit-light-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-edit-light-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-initial-dark-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-initial-dark-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-initial-dark-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-initial-dark-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-initial-light-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-initial-light-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-initial-light-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/notes-tab-initial-light-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/search-initial-dark-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/search-initial-dark-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/search-initial-dark-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/search-initial-dark-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/search-initial-light-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/search-initial-light-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/search-initial-light-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/search-initial-light-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/search-with-query-dark-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/search-with-query-dark-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/search-with-query-dark-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/search-with-query-dark-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/search-with-query-light-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/search-with-query-light-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/search-with-query-light-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/search-with-query-light-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/search-with-results-dark-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/search-with-results-dark-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/search-with-results-dark-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/search-with-results-dark-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/search-with-results-light-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/search-with-results-light-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/search-with-results-light-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/search-with-results-light-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-github-expanded-dark-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-github-expanded-dark-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-github-expanded-dark-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-github-expanded-dark-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-github-expanded-light-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-github-expanded-light-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-github-expanded-light-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-github-expanded-light-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-github-option-hover-dark-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-github-option-hover-dark-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-github-option-hover-dark-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-github-option-hover-dark-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-github-option-hover-light-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-github-option-hover-light-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-github-option-hover-light-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-github-option-hover-light-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-more-clicked-dark-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-more-clicked-dark-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-more-clicked-dark-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-more-clicked-dark-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-more-clicked-light-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-more-clicked-light-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-more-clicked-light-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-more-clicked-light-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-more-settings-clicked-dark-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-more-settings-clicked-dark-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-more-settings-clicked-dark-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-more-settings-clicked-dark-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-more-settings-clicked-light-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-more-settings-clicked-light-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-more-settings-clicked-light-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-more-settings-clicked-light-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-notes-dropdown-dark-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-notes-dropdown-dark-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-notes-dropdown-dark-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-notes-dropdown-dark-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-notes-dropdown-light-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-notes-dropdown-light-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-notes-dropdown-light-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-notes-dropdown-light-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-notes-selected-off-dark-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-notes-selected-off-dark-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-notes-selected-off-dark-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-notes-selected-off-dark-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-notes-selected-off-light-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-notes-selected-off-light-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-notes-selected-off-light-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-notes-selected-off-light-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-notes-selected-on-dark-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-notes-selected-on-dark-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-notes-selected-on-dark-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-notes-selected-on-dark-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-notes-selected-on-light-mode-darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-notes-selected-on-light-mode-darwin.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-notes-selected-on-light-mode-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/basic-snapshots.spec.ts-snapshots/topbar-notes-selected-on-light-mode-linux.png -------------------------------------------------------------------------------- /tools/snapshot-tests/tests/utils/add-notes-to-local-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tools/snapshot-tests/tests/utils/add-notes-to-local-storage.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /update-archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/update-archive.sh -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/vite.config.ts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluffyLabs/graypaper-reader/HEAD/vitest.config.ts --------------------------------------------------------------------------------