├── .eslintrc.json ├── .github └── workflows │ ├── docker-build.yml │ └── docker-publish.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app ├── (loggedInRoutes) │ ├── admin │ │ └── page.tsx │ ├── checklist │ │ └── [...categoryPath] │ │ │ └── page.tsx │ ├── checklists │ │ └── page.tsx │ ├── note │ │ └── [...categoryPath] │ │ │ └── page.tsx │ ├── notes │ │ └── page.tsx │ ├── page.tsx │ ├── profile │ │ └── page.tsx │ └── tasks │ │ └── page.tsx ├── (loggedOutRoutes) │ └── auth │ │ ├── layout.tsx │ │ ├── login │ │ ├── login-form.tsx │ │ └── page.tsx │ │ └── setup │ │ ├── page.tsx │ │ └── setup-form.tsx ├── _components │ ├── FeatureComponents │ │ ├── Admin │ │ │ ├── AdminClient.tsx │ │ │ └── Parts │ │ │ │ ├── AdminContent.tsx │ │ │ │ ├── AdminContentColumn.tsx │ │ │ │ ├── AdminExport.tsx │ │ │ │ ├── AdminOverview.tsx │ │ │ │ ├── AdminTabs.tsx │ │ │ │ ├── AdminUsers.tsx │ │ │ │ ├── AppSettingsTab.tsx │ │ │ │ ├── EditorSettingsTab.tsx │ │ │ │ ├── EmojiManager.tsx │ │ │ │ ├── Sharing │ │ │ │ ├── ActiveSharersBarChart.tsx │ │ │ │ ├── AdminSharedItemsList.tsx │ │ │ │ ├── AdminSharing.tsx │ │ │ │ ├── AdminSharingFunctions.ts │ │ │ │ ├── ShareTypePieChart.tsx │ │ │ │ └── SharingNetworkGraph.tsx │ │ │ │ ├── SharingNetworkGraph.tsx │ │ │ │ ├── StylingTab.tsx │ │ │ │ └── ThemePreview.tsx │ │ ├── Calendar │ │ │ └── Calendar.tsx │ │ ├── Checklists │ │ │ ├── Checklist.tsx │ │ │ ├── ChecklistsPageClient.tsx │ │ │ ├── Parts │ │ │ │ ├── ChecklistClient.tsx │ │ │ │ ├── ChecklistTypeSelector.tsx │ │ │ │ ├── Common │ │ │ │ │ ├── ChecklistHeader.tsx │ │ │ │ │ ├── ChecklistHeading.tsx │ │ │ │ │ ├── ChecklistModals.tsx │ │ │ │ │ ├── CompletedSuggestionsDropdown.tsx │ │ │ │ │ └── LastModifiedCreatedInfo.tsx │ │ │ │ ├── Kanban │ │ │ │ │ ├── ArchivedItemsModal.tsx │ │ │ │ │ ├── KanbanBoard.tsx │ │ │ │ │ ├── KanbanColumn.tsx │ │ │ │ │ ├── KanbanItem.tsx │ │ │ │ │ ├── KanbanItemContent.tsx │ │ │ │ │ ├── KanbanItemTimer.tsx │ │ │ │ │ ├── StatusManagementModal.tsx │ │ │ │ │ ├── SubtaskModal.tsx │ │ │ │ │ └── TimeEntriesAccordion.tsx │ │ │ │ └── Simple │ │ │ │ │ ├── ChecklistBody.tsx │ │ │ │ │ ├── ChecklistDropIndicator.tsx │ │ │ │ │ ├── ChecklistItemsWrapper.tsx │ │ │ │ │ ├── ChecklistProgress.tsx │ │ │ │ │ ├── NestedChecklistItem.tsx │ │ │ │ │ └── VirtualizedChecklistItems.tsx │ │ │ └── TasksPageClient.tsx │ │ ├── Header │ │ │ └── QuickNav.tsx │ │ ├── Home │ │ │ ├── HomeClient.tsx │ │ │ └── Parts │ │ │ │ ├── ChecklistHome.tsx │ │ │ │ └── NotesHome.tsx │ │ ├── Migration │ │ │ ├── MigrationPage.tsx │ │ │ └── Parts │ │ │ │ ├── MIgrationAdminRequired.tsx │ │ │ │ ├── MigrationHeader.tsx │ │ │ │ ├── SharingMigrationView.tsx │ │ │ │ └── YamlMetadataMigrationView.tsx │ │ ├── Navigation │ │ │ └── Parts │ │ │ │ ├── NavigationGlobalIcon.tsx │ │ │ │ ├── NavigationHelpIcon.tsx │ │ │ │ ├── NavigationLogoutIcon.tsx │ │ │ │ └── NavigationSearchIcon.tsx │ │ ├── Notes │ │ │ ├── NoteClient.tsx │ │ │ ├── NotesPageClient.tsx │ │ │ └── Parts │ │ │ │ ├── CodeBlock │ │ │ │ ├── CodeBlockDropdown.tsx │ │ │ │ ├── CodeBlockNodeView.tsx │ │ │ │ └── CodeBlockRenderer.tsx │ │ │ │ ├── DrawioRenderer.tsx │ │ │ │ ├── FileAttachment │ │ │ │ ├── CompactImageResizeOverlay.tsx │ │ │ │ ├── FileAttachmentExtension.tsx │ │ │ │ └── FileAttachmentNode.tsx │ │ │ │ ├── MermaidRenderer.tsx │ │ │ │ ├── NoteEditor │ │ │ │ ├── NoteEditor.tsx │ │ │ │ ├── NoteEditorContent.tsx │ │ │ │ └── NoteEditorHeader.tsx │ │ │ │ ├── ReferencedBySection.tsx │ │ │ │ ├── Table │ │ │ │ ├── CompactTableToolbar.tsx │ │ │ │ └── TableInsertModal.tsx │ │ │ │ ├── TableOfContents.tsx │ │ │ │ ├── TipTap │ │ │ │ ├── ColorPicker │ │ │ │ │ └── ColorPicker.tsx │ │ │ │ ├── CustomExtensions │ │ │ │ │ ├── AtMentionsList.tsx │ │ │ │ │ ├── DetailsExtension.tsx │ │ │ │ │ ├── DrawioExtension.tsx │ │ │ │ │ ├── InternalLink.tsx │ │ │ │ │ ├── InternalLinkComponent.tsx │ │ │ │ │ ├── KeyboardShortcuts.tsx │ │ │ │ │ ├── MermaidExtension.tsx │ │ │ │ │ ├── OverlayExtension.tsx │ │ │ │ │ ├── SlashCommands.tsx │ │ │ │ │ └── SlashCommandsList.tsx │ │ │ │ ├── EditorHooks │ │ │ │ │ ├── useFileUpload.ts │ │ │ │ │ ├── useImageResize.ts │ │ │ │ │ ├── useOverlayClickOutside.ts │ │ │ │ │ └── useTableToolbar.ts │ │ │ │ ├── EditorUtils │ │ │ │ │ ├── editorConfig.ts │ │ │ │ │ └── editorHandlers.ts │ │ │ │ ├── FloatingMenu │ │ │ │ │ └── BubbleMenu.tsx │ │ │ │ ├── MarkdownEditor.tsx │ │ │ │ ├── TipTapEditor.tsx │ │ │ │ ├── Toolbar │ │ │ │ │ ├── CodeBlocksDropdown.tsx │ │ │ │ │ ├── DiagramsDropdown.tsx │ │ │ │ │ ├── ExtraItemsDropdown.tsx │ │ │ │ │ ├── FontFamilyDropdown.tsx │ │ │ │ │ ├── TipTapToolbar.tsx │ │ │ │ │ └── ToolbarDropdown.tsx │ │ │ │ └── VisualEditor.tsx │ │ │ │ └── UnifiedMarkdownRenderer.tsx │ │ ├── Profile │ │ │ ├── Parts │ │ │ │ ├── ArchiveTab.tsx │ │ │ │ ├── LinksTab.tsx │ │ │ │ ├── ProfileTab.tsx │ │ │ │ ├── SessionManager.tsx │ │ │ │ ├── SessionsTab.tsx │ │ │ │ └── SettingsTab.tsx │ │ │ └── UserProfileClient.tsx │ │ ├── PublicView │ │ │ ├── Parts │ │ │ │ ├── PublicChecklistBody.tsx │ │ │ │ ├── PublicChecklistHeader.tsx │ │ │ │ └── TaskStatusSection.tsx │ │ │ ├── PublicChecklistView.tsx │ │ │ └── PublicNoteView.tsx │ │ ├── Search │ │ │ ├── Parts │ │ │ │ ├── SearchInput.tsx │ │ │ │ └── SearchResults.tsx │ │ │ └── SearchBar.tsx │ │ └── Sidebar │ │ │ ├── Parts │ │ │ ├── CategoryList.tsx │ │ │ ├── CategoryRenderer.tsx │ │ │ ├── Draggable.tsx │ │ │ ├── DropIndicator.tsx │ │ │ ├── Droppable.tsx │ │ │ ├── SharedItemsList.tsx │ │ │ ├── SidebarActions.tsx │ │ │ ├── SidebarItem.tsx │ │ │ └── SidebarNavigation.tsx │ │ │ └── Sidebar.tsx │ └── GlobalComponents │ │ ├── Auth │ │ └── AuthShell.tsx │ │ ├── Buttons │ │ └── Button.tsx │ │ ├── Cards │ │ ├── ArchivedItemCard.tsx │ │ ├── ChecklistCard.tsx │ │ ├── EmptyState.tsx │ │ ├── FileCard.tsx │ │ ├── InfoBox.tsx │ │ ├── InfoCard.tsx │ │ ├── NoteCard.tsx │ │ ├── SessionCard.tsx │ │ ├── SharedItemCard.tsx │ │ ├── StatCard.tsx │ │ └── TaskSpecificDetails.tsx │ │ ├── Dropdowns │ │ ├── CategoryMultiselect.tsx │ │ ├── CategoryTreeNode.tsx │ │ ├── CategoryTreeSelector.tsx │ │ ├── Dropdown.tsx │ │ └── DropdownMenu.tsx │ │ ├── Feedback │ │ ├── FeedbackMessage.tsx │ │ ├── Toast.tsx │ │ └── ToastContainer.tsx │ │ ├── FormElements │ │ ├── CSSEditor.tsx │ │ ├── CategoryInput.tsx │ │ ├── FileAttachment.tsx │ │ ├── FileUpload.tsx │ │ ├── FormWrapper.tsx │ │ ├── ImageAttachment.tsx │ │ ├── ImageUpload.tsx │ │ ├── Input.tsx │ │ ├── PasswordFields.tsx │ │ ├── RecurrenceSelector.tsx │ │ ├── Toggle.tsx │ │ ├── UploadOverlay.tsx │ │ ├── VideoAttachment.tsx │ │ └── label.tsx │ │ ├── Icons │ │ └── DynamicIcon.tsx │ │ ├── Indicators │ │ └── RecurrenceIndicator.tsx │ │ ├── Layout │ │ ├── Accordion.tsx │ │ ├── AppName.tsx │ │ ├── Delay.tsx │ │ ├── FileGrid.tsx │ │ ├── FilterSidebar.tsx │ │ ├── Layout.tsx │ │ ├── LoadingSpinner.tsx │ │ ├── Logo │ │ │ ├── DynamicFavicon.tsx │ │ │ ├── DynamicLogo.tsx │ │ │ ├── LegacyLogo.tsx │ │ │ └── Logo.tsx │ │ ├── MobileHeader.tsx │ │ ├── PageHeader.tsx │ │ ├── Pagination.tsx │ │ ├── ReadingProgressBar.tsx │ │ ├── SiteHeader.tsx │ │ └── SuppressWarnings.tsx │ │ ├── Modals │ │ ├── BulkPasteModal │ │ │ └── BulkPasteModal.tsx │ │ ├── CategoryModals │ │ │ ├── CreateCategoryModal.tsx │ │ │ ├── DeleteCategoryModal.tsx │ │ │ └── RenameCategoryModal.tsx │ │ ├── ChecklistModals │ │ │ ├── AddItemWithRecurrenceModal.tsx │ │ │ ├── CreateListModal.tsx │ │ │ └── EditChecklistModal.tsx │ │ ├── ConfirmationModals │ │ │ ├── ConversionConfirmModal.tsx │ │ │ └── UnsavedChangesModal.tsx │ │ ├── FilesModal │ │ │ └── FileModal.tsx │ │ ├── ImageSizeModal.tsx │ │ ├── Modal.tsx │ │ ├── NotesModal │ │ │ ├── CreateNoteModal.tsx │ │ │ └── EditNoteModal.tsx │ │ ├── SettingsModals │ │ │ └── Settings.tsx │ │ ├── SharingModals │ │ │ ├── Parts │ │ │ │ ├── PublicShareTabs.tsx │ │ │ │ ├── ShareTabs.tsx │ │ │ │ ├── SharingFeedbackMessage.tsx │ │ │ │ └── UsersShareTab.tsx │ │ │ ├── ShareModal.tsx │ │ │ └── SharedWithModal.tsx │ │ └── UserModals │ │ │ ├── DeleteAccountModal.tsx │ │ │ └── UserManagementModal.tsx │ │ ├── Prompts │ │ ├── InstallPrompt.tsx │ │ └── UpdatePrompt.tsx │ │ ├── Pwa │ │ └── UpdatePrompt.tsx │ │ ├── Statistics │ │ ├── NoteFooterStats.tsx │ │ └── ProgressBar.tsx │ │ ├── Tabs │ │ ├── FileTabs.tsx │ │ └── Tabs.tsx │ │ └── User │ │ └── UserAvatar.tsx ├── _consts │ ├── checklists.ts │ ├── emojis.ts │ ├── files.ts │ ├── notes.ts │ └── themes.tsx ├── _hooks │ ├── useCalendar.tsx │ ├── useChecklist.tsx │ ├── useChecklistHome.tsx │ ├── useEditorSettings.tsx │ ├── useEmojiCache.ts │ ├── useEmojis.tsx │ ├── useFaviconUpdate.ts │ ├── useFileManager.tsx │ ├── useGitHubRelease.ts │ ├── useKanbanBoard.tsx │ ├── useKanbanItem.tsx │ ├── useMobileGestures.tsx │ ├── useNoteEditor.ts │ ├── useNotesHome.tsx │ ├── usePagination.tsx │ ├── usePreferredDateTime.tsx │ ├── useSearch.ts │ ├── useSessionManager.tsx │ ├── useSharingTools.ts │ ├── useShortcuts.ts │ ├── useSidebar.tsx │ ├── useStyling.tsx │ └── useUserManagementModal.tsx ├── _middleware │ └── caching.ts ├── _providers │ ├── AppModeProvider.tsx │ ├── EmojiProvider.tsx │ ├── MetadataProvider.tsx │ ├── NavigationGuardProvider.tsx │ ├── PermissionsProvider.tsx │ ├── ShortcutsProvider.tsx │ ├── ThemeProvider.tsx │ └── ToastProvider.tsx ├── _schemas │ └── user-schemas.ts ├── _server │ └── actions │ │ ├── api │ │ └── index.ts │ │ ├── archived │ │ └── index.ts │ │ ├── auth │ │ └── index.ts │ │ ├── category │ │ └── index.ts │ │ ├── checklist-item │ │ └── index.ts │ │ ├── checklist │ │ └── index.ts │ │ ├── config │ │ └── index.ts │ │ ├── dashboard │ │ └── index.ts │ │ ├── export │ │ └── index.ts │ │ ├── file │ │ └── index.ts │ │ ├── github │ │ └── index.ts │ │ ├── guards │ │ └── index.ts │ │ ├── link │ │ └── index.ts │ │ ├── migration │ │ └── index.ts │ │ ├── note │ │ └── index.ts │ │ ├── session │ │ └── index.ts │ │ ├── sharing │ │ └── index.ts │ │ ├── stats │ │ └── index.ts │ │ ├── upload │ │ └── index.ts │ │ └── users │ │ └── index.ts ├── _styles │ └── globals.css ├── _types │ ├── enums.ts │ └── index.ts ├── _utils │ ├── api-utils.ts │ ├── category-utils.ts │ ├── checklist-utils.ts │ ├── client-parser-utils.ts │ ├── code-block-utils.tsx │ ├── color-utils.ts │ ├── config-loader.ts │ ├── custom-html-utils.tsx │ ├── date-utils.ts │ ├── emoji-utils.ts │ ├── file-icon-utils.tsx │ ├── filename-utils.ts │ ├── global-utils.ts │ ├── home-filter-store.ts │ ├── indexes-utils.ts │ ├── kanban-utils.tsx │ ├── lowlight-utils.tsx │ ├── markdown-utils.tsx │ ├── recurrence-utils.ts │ ├── settings-store.ts │ ├── sharing-utils.ts │ └── yaml-metadata-utils.ts ├── api │ ├── admin │ │ └── rebuild-index │ │ │ └── route.ts │ ├── app-icons │ │ └── [filename] │ │ │ └── route.ts │ ├── auth │ │ └── check-session │ │ │ └── route.ts │ ├── categories │ │ └── route.ts │ ├── checklists │ │ ├── [listId] │ │ │ ├── items │ │ │ │ ├── [itemIndex] │ │ │ │ │ ├── check │ │ │ │ │ │ └── route.ts │ │ │ │ │ └── uncheck │ │ │ │ │ │ └── route.ts │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ └── route.ts │ ├── custom-css │ │ └── route.ts │ ├── docs │ │ └── route.ts │ ├── exports │ │ ├── [filename] │ │ │ └── route.ts │ │ └── route.ts │ ├── file │ │ └── [username] │ │ │ └── [filename] │ │ │ └── route.ts │ ├── health │ │ └── route.ts │ ├── image │ │ └── [username] │ │ │ └── [filename] │ │ │ └── route.ts │ ├── manifest │ │ └── route.ts │ ├── notes │ │ ├── [noteId] │ │ │ └── route.ts │ │ └── route.ts │ ├── oidc │ │ ├── callback │ │ │ └── route.ts │ │ ├── login │ │ │ └── route.ts │ │ └── logout │ │ │ └── route.ts │ ├── summary │ │ └── route.ts │ ├── user │ │ ├── [username] │ │ │ ├── avatar │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ └── route.ts │ └── video │ │ └── [username] │ │ └── [filename] │ │ └── route.ts ├── layout.tsx ├── migration │ └── page.tsx └── public │ ├── checklist │ └── [...categoryPath] │ │ └── page.tsx │ └── note │ └── [...categoryPath] │ └── page.tsx ├── config ├── custom.css ├── emojis.json └── themes.json ├── docker-compose.yml ├── favicon.ico ├── howto ├── API.md ├── CUSTOMISATIONS.md ├── DOCKER.md ├── ENV-VARIABLES.md ├── MARKDOWN.md ├── PWA.md ├── SHORTCUTS.md └── SSO.md ├── middleware.ts ├── migration.png ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── app-icons │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── legacy │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── rwmarkable.svg │ │ └── site.webmanifest │ ├── logos │ │ ├── favicon-variation.png │ │ ├── favicon-variation.svg │ │ ├── favicon.png │ │ ├── favicon.svg │ │ ├── logo-variation.png │ │ ├── logo-variation.svg │ │ ├── logo.png │ │ ├── logo.psd │ │ └── logo.svg │ └── site.webmanifest ├── app-screenshots │ ├── checklist-view-dark.png │ ├── checklist-view-light.png │ ├── checklists-home-dark.png │ ├── checklists-home-light.png │ ├── note-view-dark.png │ ├── note-view-light.png │ ├── notes-home-dark.png │ ├── notes-home-light.png │ ├── register-dark.png │ ├── register-light.png │ ├── tasks-view-dark.png │ └── tasks-view-light.png ├── openapi.yaml ├── repo-images │ └── discord_icon.webp ├── site.webmanifest ├── sw.js └── workbox-1bb06f5e.js ├── scripts └── test-api.js ├── setup-docker.sh ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/README.md -------------------------------------------------------------------------------- /app/(loggedInRoutes)/admin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/(loggedInRoutes)/admin/page.tsx -------------------------------------------------------------------------------- /app/(loggedInRoutes)/checklist/[...categoryPath]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/(loggedInRoutes)/checklist/[...categoryPath]/page.tsx -------------------------------------------------------------------------------- /app/(loggedInRoutes)/checklists/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/(loggedInRoutes)/checklists/page.tsx -------------------------------------------------------------------------------- /app/(loggedInRoutes)/note/[...categoryPath]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/(loggedInRoutes)/note/[...categoryPath]/page.tsx -------------------------------------------------------------------------------- /app/(loggedInRoutes)/notes/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/(loggedInRoutes)/notes/page.tsx -------------------------------------------------------------------------------- /app/(loggedInRoutes)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/(loggedInRoutes)/page.tsx -------------------------------------------------------------------------------- /app/(loggedInRoutes)/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/(loggedInRoutes)/profile/page.tsx -------------------------------------------------------------------------------- /app/(loggedInRoutes)/tasks/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/(loggedInRoutes)/tasks/page.tsx -------------------------------------------------------------------------------- /app/(loggedOutRoutes)/auth/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/(loggedOutRoutes)/auth/layout.tsx -------------------------------------------------------------------------------- /app/(loggedOutRoutes)/auth/login/login-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/(loggedOutRoutes)/auth/login/login-form.tsx -------------------------------------------------------------------------------- /app/(loggedOutRoutes)/auth/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/(loggedOutRoutes)/auth/login/page.tsx -------------------------------------------------------------------------------- /app/(loggedOutRoutes)/auth/setup/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/(loggedOutRoutes)/auth/setup/page.tsx -------------------------------------------------------------------------------- /app/(loggedOutRoutes)/auth/setup/setup-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/(loggedOutRoutes)/auth/setup/setup-form.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Admin/AdminClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Admin/AdminClient.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Admin/Parts/AdminContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Admin/Parts/AdminContent.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Admin/Parts/AdminContentColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Admin/Parts/AdminContentColumn.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Admin/Parts/AdminExport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Admin/Parts/AdminExport.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Admin/Parts/AdminOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Admin/Parts/AdminOverview.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Admin/Parts/AdminTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Admin/Parts/AdminTabs.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Admin/Parts/AdminUsers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Admin/Parts/AdminUsers.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Admin/Parts/AppSettingsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Admin/Parts/AppSettingsTab.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Admin/Parts/EditorSettingsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Admin/Parts/EditorSettingsTab.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Admin/Parts/EmojiManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Admin/Parts/EmojiManager.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Admin/Parts/Sharing/ActiveSharersBarChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Admin/Parts/Sharing/ActiveSharersBarChart.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Admin/Parts/Sharing/AdminSharedItemsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Admin/Parts/Sharing/AdminSharedItemsList.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Admin/Parts/Sharing/AdminSharing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Admin/Parts/Sharing/AdminSharing.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Admin/Parts/Sharing/AdminSharingFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Admin/Parts/Sharing/AdminSharingFunctions.ts -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Admin/Parts/Sharing/ShareTypePieChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Admin/Parts/Sharing/ShareTypePieChart.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Admin/Parts/Sharing/SharingNetworkGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Admin/Parts/Sharing/SharingNetworkGraph.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Admin/Parts/SharingNetworkGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Admin/Parts/SharingNetworkGraph.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Admin/Parts/StylingTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Admin/Parts/StylingTab.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Admin/Parts/ThemePreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Admin/Parts/ThemePreview.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Calendar/Calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Calendar/Calendar.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Checklists/Checklist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Checklists/Checklist.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Checklists/ChecklistsPageClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Checklists/ChecklistsPageClient.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Checklists/Parts/ChecklistClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Checklists/Parts/ChecklistClient.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Checklists/Parts/ChecklistTypeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Checklists/Parts/ChecklistTypeSelector.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Checklists/Parts/Common/ChecklistHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Checklists/Parts/Common/ChecklistHeader.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Checklists/Parts/Common/ChecklistHeading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Checklists/Parts/Common/ChecklistHeading.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Checklists/Parts/Common/ChecklistModals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Checklists/Parts/Common/ChecklistModals.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Checklists/Parts/Common/CompletedSuggestionsDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Checklists/Parts/Common/CompletedSuggestionsDropdown.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Checklists/Parts/Common/LastModifiedCreatedInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Checklists/Parts/Common/LastModifiedCreatedInfo.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Checklists/Parts/Kanban/ArchivedItemsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Checklists/Parts/Kanban/ArchivedItemsModal.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Checklists/Parts/Kanban/KanbanBoard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Checklists/Parts/Kanban/KanbanBoard.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Checklists/Parts/Kanban/KanbanColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Checklists/Parts/Kanban/KanbanColumn.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Checklists/Parts/Kanban/KanbanItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Checklists/Parts/Kanban/KanbanItem.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Checklists/Parts/Kanban/KanbanItemContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Checklists/Parts/Kanban/KanbanItemContent.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Checklists/Parts/Kanban/KanbanItemTimer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Checklists/Parts/Kanban/KanbanItemTimer.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Checklists/Parts/Kanban/StatusManagementModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Checklists/Parts/Kanban/StatusManagementModal.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Checklists/Parts/Kanban/SubtaskModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Checklists/Parts/Kanban/SubtaskModal.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Checklists/Parts/Kanban/TimeEntriesAccordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Checklists/Parts/Kanban/TimeEntriesAccordion.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Checklists/Parts/Simple/ChecklistBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Checklists/Parts/Simple/ChecklistBody.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Checklists/Parts/Simple/ChecklistDropIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Checklists/Parts/Simple/ChecklistDropIndicator.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Checklists/Parts/Simple/ChecklistItemsWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Checklists/Parts/Simple/ChecklistItemsWrapper.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Checklists/Parts/Simple/ChecklistProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Checklists/Parts/Simple/ChecklistProgress.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Checklists/Parts/Simple/NestedChecklistItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Checklists/Parts/Simple/NestedChecklistItem.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Checklists/Parts/Simple/VirtualizedChecklistItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Checklists/Parts/Simple/VirtualizedChecklistItems.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Checklists/TasksPageClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Checklists/TasksPageClient.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Header/QuickNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Header/QuickNav.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Home/HomeClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Home/HomeClient.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Home/Parts/ChecklistHome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Home/Parts/ChecklistHome.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Home/Parts/NotesHome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Home/Parts/NotesHome.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Migration/MigrationPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Migration/MigrationPage.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Migration/Parts/MIgrationAdminRequired.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Migration/Parts/MIgrationAdminRequired.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Migration/Parts/MigrationHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Migration/Parts/MigrationHeader.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Migration/Parts/SharingMigrationView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Migration/Parts/SharingMigrationView.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Migration/Parts/YamlMetadataMigrationView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Migration/Parts/YamlMetadataMigrationView.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Navigation/Parts/NavigationGlobalIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Navigation/Parts/NavigationGlobalIcon.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Navigation/Parts/NavigationHelpIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Navigation/Parts/NavigationHelpIcon.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Navigation/Parts/NavigationLogoutIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Navigation/Parts/NavigationLogoutIcon.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Navigation/Parts/NavigationSearchIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Navigation/Parts/NavigationSearchIcon.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/NoteClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/NoteClient.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/NotesPageClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/NotesPageClient.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/CodeBlock/CodeBlockDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/CodeBlock/CodeBlockDropdown.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/CodeBlock/CodeBlockNodeView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/CodeBlock/CodeBlockNodeView.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/CodeBlock/CodeBlockRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/CodeBlock/CodeBlockRenderer.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/DrawioRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/DrawioRenderer.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/FileAttachment/CompactImageResizeOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/FileAttachment/CompactImageResizeOverlay.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/FileAttachment/FileAttachmentExtension.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/FileAttachment/FileAttachmentExtension.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/FileAttachment/FileAttachmentNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/FileAttachment/FileAttachmentNode.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/MermaidRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/MermaidRenderer.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/NoteEditor/NoteEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/NoteEditor/NoteEditor.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/NoteEditor/NoteEditorContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/NoteEditor/NoteEditorContent.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/NoteEditor/NoteEditorHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/NoteEditor/NoteEditorHeader.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/ReferencedBySection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/ReferencedBySection.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/Table/CompactTableToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/Table/CompactTableToolbar.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/Table/TableInsertModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/Table/TableInsertModal.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TableOfContents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TableOfContents.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/ColorPicker/ColorPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/ColorPicker/ColorPicker.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/CustomExtensions/AtMentionsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/CustomExtensions/AtMentionsList.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/CustomExtensions/DetailsExtension.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/CustomExtensions/DetailsExtension.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/CustomExtensions/DrawioExtension.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/CustomExtensions/DrawioExtension.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/CustomExtensions/InternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/CustomExtensions/InternalLink.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/CustomExtensions/InternalLinkComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/CustomExtensions/InternalLinkComponent.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/CustomExtensions/KeyboardShortcuts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/CustomExtensions/KeyboardShortcuts.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/CustomExtensions/MermaidExtension.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/CustomExtensions/MermaidExtension.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/CustomExtensions/OverlayExtension.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/CustomExtensions/OverlayExtension.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/CustomExtensions/SlashCommands.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/CustomExtensions/SlashCommands.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/CustomExtensions/SlashCommandsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/CustomExtensions/SlashCommandsList.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/EditorHooks/useFileUpload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/EditorHooks/useFileUpload.ts -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/EditorHooks/useImageResize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/EditorHooks/useImageResize.ts -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/EditorHooks/useOverlayClickOutside.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/EditorHooks/useOverlayClickOutside.ts -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/EditorHooks/useTableToolbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/EditorHooks/useTableToolbar.ts -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/EditorUtils/editorConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/EditorUtils/editorConfig.ts -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/EditorUtils/editorHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/EditorUtils/editorHandlers.ts -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/FloatingMenu/BubbleMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/FloatingMenu/BubbleMenu.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/MarkdownEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/MarkdownEditor.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/TipTapEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/TipTapEditor.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/Toolbar/CodeBlocksDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/Toolbar/CodeBlocksDropdown.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/Toolbar/DiagramsDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/Toolbar/DiagramsDropdown.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/Toolbar/ExtraItemsDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/Toolbar/ExtraItemsDropdown.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/Toolbar/FontFamilyDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/Toolbar/FontFamilyDropdown.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/Toolbar/TipTapToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/Toolbar/TipTapToolbar.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/Toolbar/ToolbarDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/Toolbar/ToolbarDropdown.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/TipTap/VisualEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/TipTap/VisualEditor.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Notes/Parts/UnifiedMarkdownRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Notes/Parts/UnifiedMarkdownRenderer.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Profile/Parts/ArchiveTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Profile/Parts/ArchiveTab.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Profile/Parts/LinksTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Profile/Parts/LinksTab.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Profile/Parts/ProfileTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Profile/Parts/ProfileTab.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Profile/Parts/SessionManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Profile/Parts/SessionManager.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Profile/Parts/SessionsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Profile/Parts/SessionsTab.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Profile/Parts/SettingsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Profile/Parts/SettingsTab.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Profile/UserProfileClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Profile/UserProfileClient.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/PublicView/Parts/PublicChecklistBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/PublicView/Parts/PublicChecklistBody.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/PublicView/Parts/PublicChecklistHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/PublicView/Parts/PublicChecklistHeader.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/PublicView/Parts/TaskStatusSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/PublicView/Parts/TaskStatusSection.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/PublicView/PublicChecklistView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/PublicView/PublicChecklistView.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/PublicView/PublicNoteView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/PublicView/PublicNoteView.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Search/Parts/SearchInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Search/Parts/SearchInput.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Search/Parts/SearchResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Search/Parts/SearchResults.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Search/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Search/SearchBar.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Sidebar/Parts/CategoryList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Sidebar/Parts/CategoryList.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Sidebar/Parts/CategoryRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Sidebar/Parts/CategoryRenderer.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Sidebar/Parts/Draggable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Sidebar/Parts/Draggable.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Sidebar/Parts/DropIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Sidebar/Parts/DropIndicator.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Sidebar/Parts/Droppable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Sidebar/Parts/Droppable.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Sidebar/Parts/SharedItemsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Sidebar/Parts/SharedItemsList.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Sidebar/Parts/SidebarActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Sidebar/Parts/SidebarActions.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Sidebar/Parts/SidebarItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Sidebar/Parts/SidebarItem.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Sidebar/Parts/SidebarNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Sidebar/Parts/SidebarNavigation.tsx -------------------------------------------------------------------------------- /app/_components/FeatureComponents/Sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/FeatureComponents/Sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Auth/AuthShell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Auth/AuthShell.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Buttons/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Buttons/Button.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Cards/ArchivedItemCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Cards/ArchivedItemCard.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Cards/ChecklistCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Cards/ChecklistCard.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Cards/EmptyState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Cards/EmptyState.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Cards/FileCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Cards/FileCard.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Cards/InfoBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Cards/InfoBox.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Cards/InfoCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Cards/InfoCard.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Cards/NoteCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Cards/NoteCard.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Cards/SessionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Cards/SessionCard.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Cards/SharedItemCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Cards/SharedItemCard.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Cards/StatCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Cards/StatCard.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Cards/TaskSpecificDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Cards/TaskSpecificDetails.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Dropdowns/CategoryMultiselect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Dropdowns/CategoryMultiselect.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Dropdowns/CategoryTreeNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Dropdowns/CategoryTreeNode.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Dropdowns/CategoryTreeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Dropdowns/CategoryTreeSelector.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Dropdowns/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Dropdowns/Dropdown.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Dropdowns/DropdownMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Dropdowns/DropdownMenu.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Feedback/FeedbackMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Feedback/FeedbackMessage.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Feedback/Toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Feedback/Toast.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Feedback/ToastContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Feedback/ToastContainer.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/FormElements/CSSEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/FormElements/CSSEditor.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/FormElements/CategoryInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/FormElements/CategoryInput.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/FormElements/FileAttachment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/FormElements/FileAttachment.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/FormElements/FileUpload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/FormElements/FileUpload.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/FormElements/FormWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/FormElements/FormWrapper.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/FormElements/ImageAttachment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/FormElements/ImageAttachment.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/FormElements/ImageUpload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/FormElements/ImageUpload.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/FormElements/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/FormElements/Input.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/FormElements/PasswordFields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/FormElements/PasswordFields.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/FormElements/RecurrenceSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/FormElements/RecurrenceSelector.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/FormElements/Toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/FormElements/Toggle.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/FormElements/UploadOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/FormElements/UploadOverlay.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/FormElements/VideoAttachment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/FormElements/VideoAttachment.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/FormElements/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/FormElements/label.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Icons/DynamicIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Icons/DynamicIcon.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Indicators/RecurrenceIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Indicators/RecurrenceIndicator.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Layout/Accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Layout/Accordion.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Layout/AppName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Layout/AppName.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Layout/Delay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Layout/Delay.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Layout/FileGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Layout/FileGrid.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Layout/FilterSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Layout/FilterSidebar.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Layout/Layout.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Layout/LoadingSpinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Layout/LoadingSpinner.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Layout/Logo/DynamicFavicon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Layout/Logo/DynamicFavicon.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Layout/Logo/DynamicLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Layout/Logo/DynamicLogo.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Layout/Logo/LegacyLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Layout/Logo/LegacyLogo.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Layout/Logo/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Layout/Logo/Logo.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Layout/MobileHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Layout/MobileHeader.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Layout/PageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Layout/PageHeader.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Layout/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Layout/Pagination.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Layout/ReadingProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Layout/ReadingProgressBar.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Layout/SiteHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Layout/SiteHeader.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Layout/SuppressWarnings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Layout/SuppressWarnings.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Modals/BulkPasteModal/BulkPasteModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Modals/BulkPasteModal/BulkPasteModal.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Modals/CategoryModals/CreateCategoryModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Modals/CategoryModals/CreateCategoryModal.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Modals/CategoryModals/DeleteCategoryModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Modals/CategoryModals/DeleteCategoryModal.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Modals/CategoryModals/RenameCategoryModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Modals/CategoryModals/RenameCategoryModal.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Modals/ChecklistModals/AddItemWithRecurrenceModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Modals/ChecklistModals/AddItemWithRecurrenceModal.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Modals/ChecklistModals/CreateListModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Modals/ChecklistModals/CreateListModal.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Modals/ChecklistModals/EditChecklistModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Modals/ChecklistModals/EditChecklistModal.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Modals/ConfirmationModals/ConversionConfirmModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Modals/ConfirmationModals/ConversionConfirmModal.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Modals/ConfirmationModals/UnsavedChangesModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Modals/ConfirmationModals/UnsavedChangesModal.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Modals/FilesModal/FileModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Modals/FilesModal/FileModal.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Modals/ImageSizeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Modals/ImageSizeModal.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Modals/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Modals/Modal.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Modals/NotesModal/CreateNoteModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Modals/NotesModal/CreateNoteModal.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Modals/NotesModal/EditNoteModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Modals/NotesModal/EditNoteModal.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Modals/SettingsModals/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Modals/SettingsModals/Settings.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Modals/SharingModals/Parts/PublicShareTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Modals/SharingModals/Parts/PublicShareTabs.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Modals/SharingModals/Parts/ShareTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Modals/SharingModals/Parts/ShareTabs.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Modals/SharingModals/Parts/SharingFeedbackMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Modals/SharingModals/Parts/SharingFeedbackMessage.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Modals/SharingModals/Parts/UsersShareTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Modals/SharingModals/Parts/UsersShareTab.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Modals/SharingModals/ShareModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Modals/SharingModals/ShareModal.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Modals/SharingModals/SharedWithModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Modals/SharingModals/SharedWithModal.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Modals/UserModals/DeleteAccountModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Modals/UserModals/DeleteAccountModal.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Modals/UserModals/UserManagementModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Modals/UserModals/UserManagementModal.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Prompts/InstallPrompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Prompts/InstallPrompt.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Prompts/UpdatePrompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Prompts/UpdatePrompt.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Pwa/UpdatePrompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Pwa/UpdatePrompt.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Statistics/NoteFooterStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Statistics/NoteFooterStats.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Statistics/ProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Statistics/ProgressBar.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Tabs/FileTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Tabs/FileTabs.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/Tabs/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/Tabs/Tabs.tsx -------------------------------------------------------------------------------- /app/_components/GlobalComponents/User/UserAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_components/GlobalComponents/User/UserAvatar.tsx -------------------------------------------------------------------------------- /app/_consts/checklists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_consts/checklists.ts -------------------------------------------------------------------------------- /app/_consts/emojis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_consts/emojis.ts -------------------------------------------------------------------------------- /app/_consts/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_consts/files.ts -------------------------------------------------------------------------------- /app/_consts/notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_consts/notes.ts -------------------------------------------------------------------------------- /app/_consts/themes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_consts/themes.tsx -------------------------------------------------------------------------------- /app/_hooks/useCalendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_hooks/useCalendar.tsx -------------------------------------------------------------------------------- /app/_hooks/useChecklist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_hooks/useChecklist.tsx -------------------------------------------------------------------------------- /app/_hooks/useChecklistHome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_hooks/useChecklistHome.tsx -------------------------------------------------------------------------------- /app/_hooks/useEditorSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_hooks/useEditorSettings.tsx -------------------------------------------------------------------------------- /app/_hooks/useEmojiCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_hooks/useEmojiCache.ts -------------------------------------------------------------------------------- /app/_hooks/useEmojis.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_hooks/useEmojis.tsx -------------------------------------------------------------------------------- /app/_hooks/useFaviconUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_hooks/useFaviconUpdate.ts -------------------------------------------------------------------------------- /app/_hooks/useFileManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_hooks/useFileManager.tsx -------------------------------------------------------------------------------- /app/_hooks/useGitHubRelease.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_hooks/useGitHubRelease.ts -------------------------------------------------------------------------------- /app/_hooks/useKanbanBoard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_hooks/useKanbanBoard.tsx -------------------------------------------------------------------------------- /app/_hooks/useKanbanItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_hooks/useKanbanItem.tsx -------------------------------------------------------------------------------- /app/_hooks/useMobileGestures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_hooks/useMobileGestures.tsx -------------------------------------------------------------------------------- /app/_hooks/useNoteEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_hooks/useNoteEditor.ts -------------------------------------------------------------------------------- /app/_hooks/useNotesHome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_hooks/useNotesHome.tsx -------------------------------------------------------------------------------- /app/_hooks/usePagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_hooks/usePagination.tsx -------------------------------------------------------------------------------- /app/_hooks/usePreferredDateTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_hooks/usePreferredDateTime.tsx -------------------------------------------------------------------------------- /app/_hooks/useSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_hooks/useSearch.ts -------------------------------------------------------------------------------- /app/_hooks/useSessionManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_hooks/useSessionManager.tsx -------------------------------------------------------------------------------- /app/_hooks/useSharingTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_hooks/useSharingTools.ts -------------------------------------------------------------------------------- /app/_hooks/useShortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_hooks/useShortcuts.ts -------------------------------------------------------------------------------- /app/_hooks/useSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_hooks/useSidebar.tsx -------------------------------------------------------------------------------- /app/_hooks/useStyling.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_hooks/useStyling.tsx -------------------------------------------------------------------------------- /app/_hooks/useUserManagementModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_hooks/useUserManagementModal.tsx -------------------------------------------------------------------------------- /app/_middleware/caching.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_middleware/caching.ts -------------------------------------------------------------------------------- /app/_providers/AppModeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_providers/AppModeProvider.tsx -------------------------------------------------------------------------------- /app/_providers/EmojiProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_providers/EmojiProvider.tsx -------------------------------------------------------------------------------- /app/_providers/MetadataProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_providers/MetadataProvider.tsx -------------------------------------------------------------------------------- /app/_providers/NavigationGuardProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_providers/NavigationGuardProvider.tsx -------------------------------------------------------------------------------- /app/_providers/PermissionsProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_providers/PermissionsProvider.tsx -------------------------------------------------------------------------------- /app/_providers/ShortcutsProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_providers/ShortcutsProvider.tsx -------------------------------------------------------------------------------- /app/_providers/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_providers/ThemeProvider.tsx -------------------------------------------------------------------------------- /app/_providers/ToastProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_providers/ToastProvider.tsx -------------------------------------------------------------------------------- /app/_schemas/user-schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_schemas/user-schemas.ts -------------------------------------------------------------------------------- /app/_server/actions/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_server/actions/api/index.ts -------------------------------------------------------------------------------- /app/_server/actions/archived/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_server/actions/archived/index.ts -------------------------------------------------------------------------------- /app/_server/actions/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_server/actions/auth/index.ts -------------------------------------------------------------------------------- /app/_server/actions/category/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_server/actions/category/index.ts -------------------------------------------------------------------------------- /app/_server/actions/checklist-item/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_server/actions/checklist-item/index.ts -------------------------------------------------------------------------------- /app/_server/actions/checklist/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_server/actions/checklist/index.ts -------------------------------------------------------------------------------- /app/_server/actions/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_server/actions/config/index.ts -------------------------------------------------------------------------------- /app/_server/actions/dashboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_server/actions/dashboard/index.ts -------------------------------------------------------------------------------- /app/_server/actions/export/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_server/actions/export/index.ts -------------------------------------------------------------------------------- /app/_server/actions/file/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_server/actions/file/index.ts -------------------------------------------------------------------------------- /app/_server/actions/github/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_server/actions/github/index.ts -------------------------------------------------------------------------------- /app/_server/actions/guards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_server/actions/guards/index.ts -------------------------------------------------------------------------------- /app/_server/actions/link/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_server/actions/link/index.ts -------------------------------------------------------------------------------- /app/_server/actions/migration/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_server/actions/migration/index.ts -------------------------------------------------------------------------------- /app/_server/actions/note/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_server/actions/note/index.ts -------------------------------------------------------------------------------- /app/_server/actions/session/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_server/actions/session/index.ts -------------------------------------------------------------------------------- /app/_server/actions/sharing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_server/actions/sharing/index.ts -------------------------------------------------------------------------------- /app/_server/actions/stats/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_server/actions/stats/index.ts -------------------------------------------------------------------------------- /app/_server/actions/upload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_server/actions/upload/index.ts -------------------------------------------------------------------------------- /app/_server/actions/users/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_server/actions/users/index.ts -------------------------------------------------------------------------------- /app/_styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_styles/globals.css -------------------------------------------------------------------------------- /app/_types/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_types/enums.ts -------------------------------------------------------------------------------- /app/_types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_types/index.ts -------------------------------------------------------------------------------- /app/_utils/api-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_utils/api-utils.ts -------------------------------------------------------------------------------- /app/_utils/category-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_utils/category-utils.ts -------------------------------------------------------------------------------- /app/_utils/checklist-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_utils/checklist-utils.ts -------------------------------------------------------------------------------- /app/_utils/client-parser-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_utils/client-parser-utils.ts -------------------------------------------------------------------------------- /app/_utils/code-block-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_utils/code-block-utils.tsx -------------------------------------------------------------------------------- /app/_utils/color-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_utils/color-utils.ts -------------------------------------------------------------------------------- /app/_utils/config-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_utils/config-loader.ts -------------------------------------------------------------------------------- /app/_utils/custom-html-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_utils/custom-html-utils.tsx -------------------------------------------------------------------------------- /app/_utils/date-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_utils/date-utils.ts -------------------------------------------------------------------------------- /app/_utils/emoji-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_utils/emoji-utils.ts -------------------------------------------------------------------------------- /app/_utils/file-icon-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_utils/file-icon-utils.tsx -------------------------------------------------------------------------------- /app/_utils/filename-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_utils/filename-utils.ts -------------------------------------------------------------------------------- /app/_utils/global-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_utils/global-utils.ts -------------------------------------------------------------------------------- /app/_utils/home-filter-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_utils/home-filter-store.ts -------------------------------------------------------------------------------- /app/_utils/indexes-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_utils/indexes-utils.ts -------------------------------------------------------------------------------- /app/_utils/kanban-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_utils/kanban-utils.tsx -------------------------------------------------------------------------------- /app/_utils/lowlight-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_utils/lowlight-utils.tsx -------------------------------------------------------------------------------- /app/_utils/markdown-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_utils/markdown-utils.tsx -------------------------------------------------------------------------------- /app/_utils/recurrence-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_utils/recurrence-utils.ts -------------------------------------------------------------------------------- /app/_utils/settings-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_utils/settings-store.ts -------------------------------------------------------------------------------- /app/_utils/sharing-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_utils/sharing-utils.ts -------------------------------------------------------------------------------- /app/_utils/yaml-metadata-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/_utils/yaml-metadata-utils.ts -------------------------------------------------------------------------------- /app/api/admin/rebuild-index/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/admin/rebuild-index/route.ts -------------------------------------------------------------------------------- /app/api/app-icons/[filename]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/app-icons/[filename]/route.ts -------------------------------------------------------------------------------- /app/api/auth/check-session/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/auth/check-session/route.ts -------------------------------------------------------------------------------- /app/api/categories/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/categories/route.ts -------------------------------------------------------------------------------- /app/api/checklists/[listId]/items/[itemIndex]/check/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/checklists/[listId]/items/[itemIndex]/check/route.ts -------------------------------------------------------------------------------- /app/api/checklists/[listId]/items/[itemIndex]/uncheck/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/checklists/[listId]/items/[itemIndex]/uncheck/route.ts -------------------------------------------------------------------------------- /app/api/checklists/[listId]/items/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/checklists/[listId]/items/route.ts -------------------------------------------------------------------------------- /app/api/checklists/[listId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/checklists/[listId]/route.ts -------------------------------------------------------------------------------- /app/api/checklists/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/checklists/route.ts -------------------------------------------------------------------------------- /app/api/custom-css/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/custom-css/route.ts -------------------------------------------------------------------------------- /app/api/docs/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/docs/route.ts -------------------------------------------------------------------------------- /app/api/exports/[filename]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/exports/[filename]/route.ts -------------------------------------------------------------------------------- /app/api/exports/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/exports/route.ts -------------------------------------------------------------------------------- /app/api/file/[username]/[filename]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/file/[username]/[filename]/route.ts -------------------------------------------------------------------------------- /app/api/health/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/health/route.ts -------------------------------------------------------------------------------- /app/api/image/[username]/[filename]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/image/[username]/[filename]/route.ts -------------------------------------------------------------------------------- /app/api/manifest/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/manifest/route.ts -------------------------------------------------------------------------------- /app/api/notes/[noteId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/notes/[noteId]/route.ts -------------------------------------------------------------------------------- /app/api/notes/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/notes/route.ts -------------------------------------------------------------------------------- /app/api/oidc/callback/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/oidc/callback/route.ts -------------------------------------------------------------------------------- /app/api/oidc/login/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/oidc/login/route.ts -------------------------------------------------------------------------------- /app/api/oidc/logout/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/oidc/logout/route.ts -------------------------------------------------------------------------------- /app/api/summary/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/summary/route.ts -------------------------------------------------------------------------------- /app/api/user/[username]/avatar/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/user/[username]/avatar/route.ts -------------------------------------------------------------------------------- /app/api/user/[username]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/user/[username]/route.ts -------------------------------------------------------------------------------- /app/api/user/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/user/route.ts -------------------------------------------------------------------------------- /app/api/video/[username]/[filename]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/api/video/[username]/[filename]/route.ts -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/migration/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/migration/page.tsx -------------------------------------------------------------------------------- /app/public/checklist/[...categoryPath]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/public/checklist/[...categoryPath]/page.tsx -------------------------------------------------------------------------------- /app/public/note/[...categoryPath]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/app/public/note/[...categoryPath]/page.tsx -------------------------------------------------------------------------------- /config/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/emojis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/config/emojis.json -------------------------------------------------------------------------------- /config/themes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/config/themes.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/favicon.ico -------------------------------------------------------------------------------- /howto/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/howto/API.md -------------------------------------------------------------------------------- /howto/CUSTOMISATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/howto/CUSTOMISATIONS.md -------------------------------------------------------------------------------- /howto/DOCKER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/howto/DOCKER.md -------------------------------------------------------------------------------- /howto/ENV-VARIABLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/howto/ENV-VARIABLES.md -------------------------------------------------------------------------------- /howto/MARKDOWN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/howto/MARKDOWN.md -------------------------------------------------------------------------------- /howto/PWA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/howto/PWA.md -------------------------------------------------------------------------------- /howto/SHORTCUTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/howto/SHORTCUTS.md -------------------------------------------------------------------------------- /howto/SSO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/howto/SSO.md -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/middleware.ts -------------------------------------------------------------------------------- /migration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/migration.png -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/app-icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/app-icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/app-icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-icons/apple-touch-icon.png -------------------------------------------------------------------------------- /public/app-icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-icons/favicon-16x16.png -------------------------------------------------------------------------------- /public/app-icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-icons/favicon-32x32.png -------------------------------------------------------------------------------- /public/app-icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-icons/favicon.ico -------------------------------------------------------------------------------- /public/app-icons/legacy/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-icons/legacy/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/app-icons/legacy/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-icons/legacy/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/app-icons/legacy/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-icons/legacy/apple-touch-icon.png -------------------------------------------------------------------------------- /public/app-icons/legacy/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-icons/legacy/favicon-16x16.png -------------------------------------------------------------------------------- /public/app-icons/legacy/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-icons/legacy/favicon-32x32.png -------------------------------------------------------------------------------- /public/app-icons/legacy/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-icons/legacy/favicon.ico -------------------------------------------------------------------------------- /public/app-icons/legacy/rwmarkable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-icons/legacy/rwmarkable.svg -------------------------------------------------------------------------------- /public/app-icons/legacy/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-icons/legacy/site.webmanifest -------------------------------------------------------------------------------- /public/app-icons/logos/favicon-variation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-icons/logos/favicon-variation.png -------------------------------------------------------------------------------- /public/app-icons/logos/favicon-variation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-icons/logos/favicon-variation.svg -------------------------------------------------------------------------------- /public/app-icons/logos/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-icons/logos/favicon.png -------------------------------------------------------------------------------- /public/app-icons/logos/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-icons/logos/favicon.svg -------------------------------------------------------------------------------- /public/app-icons/logos/logo-variation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-icons/logos/logo-variation.png -------------------------------------------------------------------------------- /public/app-icons/logos/logo-variation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-icons/logos/logo-variation.svg -------------------------------------------------------------------------------- /public/app-icons/logos/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-icons/logos/logo.png -------------------------------------------------------------------------------- /public/app-icons/logos/logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-icons/logos/logo.psd -------------------------------------------------------------------------------- /public/app-icons/logos/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-icons/logos/logo.svg -------------------------------------------------------------------------------- /public/app-icons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-icons/site.webmanifest -------------------------------------------------------------------------------- /public/app-screenshots/checklist-view-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-screenshots/checklist-view-dark.png -------------------------------------------------------------------------------- /public/app-screenshots/checklist-view-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-screenshots/checklist-view-light.png -------------------------------------------------------------------------------- /public/app-screenshots/checklists-home-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-screenshots/checklists-home-dark.png -------------------------------------------------------------------------------- /public/app-screenshots/checklists-home-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-screenshots/checklists-home-light.png -------------------------------------------------------------------------------- /public/app-screenshots/note-view-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-screenshots/note-view-dark.png -------------------------------------------------------------------------------- /public/app-screenshots/note-view-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-screenshots/note-view-light.png -------------------------------------------------------------------------------- /public/app-screenshots/notes-home-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-screenshots/notes-home-dark.png -------------------------------------------------------------------------------- /public/app-screenshots/notes-home-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-screenshots/notes-home-light.png -------------------------------------------------------------------------------- /public/app-screenshots/register-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-screenshots/register-dark.png -------------------------------------------------------------------------------- /public/app-screenshots/register-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-screenshots/register-light.png -------------------------------------------------------------------------------- /public/app-screenshots/tasks-view-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-screenshots/tasks-view-dark.png -------------------------------------------------------------------------------- /public/app-screenshots/tasks-view-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/app-screenshots/tasks-view-light.png -------------------------------------------------------------------------------- /public/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/openapi.yaml -------------------------------------------------------------------------------- /public/repo-images/discord_icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/repo-images/discord_icon.webp -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/sw.js -------------------------------------------------------------------------------- /public/workbox-1bb06f5e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/public/workbox-1bb06f5e.js -------------------------------------------------------------------------------- /scripts/test-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/scripts/test-api.js -------------------------------------------------------------------------------- /setup-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/setup-docker.sh -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fccview/jotty/HEAD/yarn.lock --------------------------------------------------------------------------------