├── .firebaserc ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── README.md ├── firebase.json ├── package.json ├── public ├── css │ ├── doc │ │ ├── default.css │ │ └── drake.css │ └── hljs │ │ ├── .gitignore │ │ └── info.txt ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.tsx ├── assets │ ├── icons │ │ ├── essentials │ │ │ ├── generateIndex.js │ │ │ ├── index.ts │ │ │ ├── svg │ │ │ │ ├── add-circle.svg │ │ │ │ ├── add.svg │ │ │ │ ├── alert-circle.svg │ │ │ │ ├── apps.svg │ │ │ │ ├── arrow-back.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-forward.svg │ │ │ │ ├── arrow-up-circle.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── bar-chart.svg │ │ │ │ ├── bookmarks.svg │ │ │ │ ├── calendar-number.svg │ │ │ │ ├── chatbox-ellipses.svg │ │ │ │ ├── checkmark-circle.svg │ │ │ │ ├── checkmark-done.svg │ │ │ │ ├── checkmark.svg │ │ │ │ ├── chevron-back.svg │ │ │ │ ├── chevron-forward.svg │ │ │ │ ├── close-circle.svg │ │ │ │ ├── close.svg │ │ │ │ ├── cloudy-night.svg │ │ │ │ ├── cog.svg │ │ │ │ ├── color-fill.svg │ │ │ │ ├── color-palette.svg │ │ │ │ ├── color-wand.svg │ │ │ │ ├── create.svg │ │ │ │ ├── document.svg │ │ │ │ ├── download.svg │ │ │ │ ├── ellipsis-horizontal.svg │ │ │ │ ├── ellipsis-vertical.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── file-tray-full.svg │ │ │ │ ├── file-tray.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── grid.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── help-circle.svg │ │ │ │ ├── help.svg │ │ │ │ ├── home.svg │ │ │ │ ├── image.svg │ │ │ │ ├── information-circle.svg │ │ │ │ ├── information.svg │ │ │ │ ├── layers.svg │ │ │ │ ├── leaf.svg │ │ │ │ ├── library.svg │ │ │ │ ├── link.svg │ │ │ │ ├── list.svg │ │ │ │ ├── log-out.svg │ │ │ │ ├── menu.svg │ │ │ │ ├── rainy.svg │ │ │ │ ├── reader.svg │ │ │ │ ├── refresh.svg │ │ │ │ ├── reload.svg │ │ │ │ ├── remove.svg │ │ │ │ ├── resize.svg │ │ │ │ ├── ribbon.svg │ │ │ │ ├── search.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── share.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star.svg │ │ │ │ ├── text.svg │ │ │ │ ├── time.svg │ │ │ │ ├── timer.svg │ │ │ │ └── trash.svg │ │ │ ├── svg_cleanup_commands.txt │ │ │ └── withStyle.tsx │ │ └── filetypes │ │ │ ├── generateIndex.js │ │ │ ├── index.ts │ │ │ ├── svg │ │ │ ├── bmp-icon.svg │ │ │ ├── css-icon.svg │ │ │ ├── file-icon.svg │ │ │ ├── gif-icon.svg │ │ │ ├── jpg-icon.svg │ │ │ ├── md-icon.svg │ │ │ ├── png-icon.svg │ │ │ └── svg-icon.svg │ │ │ ├── svg_cleanup_commands.txt │ │ │ ├── svgo.json │ │ │ ├── svgo.yml │ │ │ └── withStyle.tsx │ ├── styles │ │ ├── codeThemes │ │ │ ├── generateStyles.js │ │ │ └── index.ts │ │ └── docThemes │ │ │ ├── base.scss │ │ │ ├── generateStyles.js │ │ │ ├── index.ts │ │ │ └── themes │ │ │ ├── default.scss │ │ │ └── drake.scss │ └── themes │ │ └── index.ts ├── components │ ├── ActionHandler │ │ ├── index.tsx │ │ ├── types.ts │ │ └── views │ │ │ ├── collection.module.scss │ │ │ ├── collectionHandler.tsx │ │ │ ├── delete.module.scss │ │ │ ├── deleteHandler.tsx │ │ │ ├── details.module.scss │ │ │ ├── detailsHandler.tsx │ │ │ ├── index.ts │ │ │ ├── manageImagesHandler .tsx │ │ │ ├── removeImage.tsx │ │ │ ├── rename.module.scss │ │ │ ├── renameHandler.tsx │ │ │ ├── replaceImage.module.scss │ │ │ └── replaceImageHandler.tsx │ ├── ErrorHandler │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── FileControls │ │ ├── Heading.tsx │ │ ├── MainControls.tsx │ │ ├── MoreControls.tsx │ │ ├── index.tsx │ │ ├── styles.module.scss │ │ └── types.ts │ ├── FileGrid │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── FileSlider │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── FileView │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── Hightlight │ │ ├── ColorItem.tsx │ │ ├── Notes.tsx │ │ ├── StyleEditor.tsx │ │ ├── TextStyleGrid.tsx │ │ ├── coloritem.module.scss │ │ ├── index.tsx │ │ ├── notes.module.scss │ │ ├── styleeditor.module.scss │ │ ├── styles.ts │ │ ├── textstyles.module.scss │ │ ├── types.ts │ │ ├── useHighlightRange.ts │ │ └── utils.ts │ ├── Navs │ │ ├── AddButton.tsx │ │ ├── NavItem.tsx │ │ ├── addbutton.module.scss │ │ ├── index.tsx │ │ ├── styles.module.scss │ │ └── types.ts │ ├── NotificationHandler │ │ ├── Notification.tsx │ │ ├── index.tsx │ │ ├── notification.module.scss │ │ └── styles.module.scss │ ├── QuickNavs │ │ ├── QuickNavButton.tsx │ │ ├── index.tsx │ │ ├── quicknavbutton.module.scss │ │ ├── types.ts │ │ └── useHideOnReaderScroll.ts │ ├── Selector │ │ ├── Editor.tsx │ │ ├── SearchField.tsx │ │ ├── Toggler.tsx │ │ ├── editor.module.scss │ │ ├── index.tsx │ │ ├── searchfield.module.scss │ │ ├── toggler.module.scss │ │ └── types.ts │ ├── ThemeHandler │ │ ├── CodeTheme.tsx │ │ ├── DocTheme.tsx │ │ ├── FontsLoader.tsx │ │ ├── GlobalStyles.tsx │ │ ├── index.tsx │ │ └── utils.ts │ └── UI │ │ ├── Backdrop │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── Buttons │ │ ├── BlockButton.tsx │ │ ├── Button.tsx │ │ ├── GridButton.tsx │ │ ├── IconButton.tsx │ │ ├── blockbuttons.module.scss │ │ ├── button.module.scss │ │ ├── gridbutton.module.scss │ │ ├── iconbutton.module.scss │ │ └── index.ts │ │ ├── Checkbox │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── ControlButtons │ │ ├── index.tsx │ │ ├── styles.module.scss │ │ └── types.ts │ │ ├── Empty │ │ ├── empty.module.scss │ │ └── index.tsx │ │ ├── FileIcon │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── Input │ │ ├── Input.tsx │ │ ├── Slider.tsx │ │ ├── index.tsx │ │ ├── input.module.scss │ │ └── slider.module.scss │ │ ├── Label │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── Loading │ │ ├── LogoV1.tsx │ │ ├── LogoV2.tsx │ │ ├── Spinner.tsx │ │ ├── index.tsx │ │ ├── logov1.module.scss │ │ ├── logov2.module.scss │ │ └── spinner.module.scss │ │ ├── Menu │ │ ├── Controls.tsx │ │ ├── Items.tsx │ │ ├── Menu.tsx │ │ ├── controls.module.scss │ │ ├── index.ts │ │ ├── items.module.scss │ │ ├── menu.module.scss │ │ └── types.ts │ │ ├── Modal │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── Popup │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── Scroll │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── SlideExit │ │ ├── Container.tsx │ │ ├── index.tsx │ │ ├── styles.module.scss │ │ └── useSlideExit.ts │ │ ├── Switches │ │ ├── IconSwitch.tsx │ │ ├── Switch.tsx │ │ ├── iconswitch.module.scss │ │ ├── index.ts │ │ └── switch.module.scss │ │ ├── Tabs │ │ ├── TabItems.tsx │ │ ├── index.tsx │ │ ├── styles.module.scss │ │ ├── tabitems.module.scss │ │ └── types.ts │ │ ├── common │ │ └── InputContainer │ │ │ ├── container.module.scss │ │ │ ├── index.tsx │ │ │ └── utils.ts │ │ └── index.ts ├── containers │ ├── Files │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── Highlights │ │ ├── HighlightItem.tsx │ │ ├── highlightitem.module.scss │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── Home │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── ImageManager │ │ ├── Controls.tsx │ │ ├── ImageGrid │ │ │ ├── CreateImage.tsx │ │ │ ├── Grid.tsx │ │ │ ├── Image.tsx │ │ │ ├── createimage.module.scss │ │ │ ├── image.module.scss │ │ │ ├── imagegrid.module.scss │ │ │ └── index.tsx │ │ ├── controls.module.scss │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── LoadingScreen │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── Reader │ │ ├── CreateDoc.tsx │ │ ├── DocInfo │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── QuickSettings │ │ │ ├── FontSizes.tsx │ │ │ ├── Fonts.tsx │ │ │ ├── Themes.tsx │ │ │ └── styles.module.scss │ │ ├── createdoc.module.scss │ │ ├── index.tsx │ │ ├── types.ts │ │ └── useReaderScroll.ts │ ├── Settings │ │ ├── Container.tsx │ │ ├── SettingItem.tsx │ │ ├── index.tsx │ │ ├── settingitem.module.scss │ │ ├── settings.tsx │ │ ├── styles.module.scss │ │ ├── types.ts │ │ └── views │ │ │ ├── About │ │ │ └── index.tsx │ │ │ ├── Dialogs │ │ │ └── index.tsx │ │ │ ├── Fonts │ │ │ ├── AppFont.tsx │ │ │ ├── AppFontSizer.tsx │ │ │ ├── FontItem.tsx │ │ │ ├── FontSizer.tsx │ │ │ ├── ReaderFontSizer.tsx │ │ │ ├── ReaderFonts.tsx │ │ │ ├── fontitem.module.scss │ │ │ ├── fonts.module.scss │ │ │ ├── fontsizer.module.scss │ │ │ └── index.tsx │ │ │ ├── Reset │ │ │ └── index.tsx │ │ │ └── Themes │ │ │ ├── AppThemes.tsx │ │ │ ├── ReaderThemes.tsx │ │ │ ├── ThemeItem.tsx │ │ │ ├── index.tsx │ │ │ ├── styles.module.scss │ │ │ ├── themeitem.module.scss │ │ │ └── themes.module.scss │ ├── TestComponent │ │ ├── TestComponent.tsx │ │ ├── index.ts │ │ └── sample_controlitems.tsx │ └── Views │ │ ├── index.tsx │ │ ├── styles.module.scss │ │ ├── types.ts │ │ └── views.ts ├── database │ ├── attachments-db.ts │ ├── files-db.ts │ ├── index.ts │ ├── info-db.ts │ ├── types.ts │ └── utils │ │ └── transform-attachments.ts ├── hooks │ ├── index.ts │ ├── useBackHandler.ts │ ├── useDimensions.ts │ ├── useLocation.ts │ └── useWindowResize.ts ├── index.css ├── index.tsx ├── keys │ ├── .gitignore │ ├── googlefonts.ts │ └── index.ts ├── libs │ ├── highlight-range │ │ └── index.ts │ ├── pan │ │ ├── index.ts │ │ ├── pan.ts │ │ └── types.ts │ ├── spring │ │ ├── index.ts │ │ ├── spring.ts │ │ └── types.ts │ └── utils │ │ ├── getDimensions.ts │ │ └── index.ts ├── react-app-env.d.ts ├── store │ ├── alert │ │ ├── actions │ │ │ ├── actionsAlerts.ts │ │ │ ├── index.ts │ │ │ └── notificationAlerts.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── useAlertStore.ts │ ├── configs │ │ ├── actions │ │ │ ├── index.ts │ │ │ └── sync.ts │ │ ├── index.ts │ │ ├── init.ts │ │ ├── initial_configs.ts │ │ ├── types.ts │ │ └── useConfigsStore.ts │ ├── error │ │ ├── actions.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── useErrorStore.ts │ ├── files │ │ ├── actions │ │ │ ├── crud.ts │ │ │ ├── dispatchAction.ts │ │ │ ├── index.ts │ │ │ ├── sort.ts │ │ │ └── various.ts │ │ ├── index.ts │ │ ├── init.ts │ │ ├── types.ts │ │ ├── useFileStore.ts │ │ └── utils │ │ │ ├── createNewFiles │ │ │ ├── createAttachment.ts │ │ │ ├── createHtml.ts │ │ │ ├── createImageList.ts │ │ │ ├── createMarkdown.ts │ │ │ ├── createNewFiles.ts │ │ │ ├── index.ts │ │ │ └── readText.ts │ │ │ ├── index.ts │ │ │ ├── markdownList.ts │ │ │ ├── modifyFiles.ts │ │ │ └── sortMarkdowns.ts │ ├── history.ts │ ├── image-manager │ │ ├── actions │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── types.ts │ │ ├── useImageManagerStore.ts │ │ └── utils │ │ │ ├── index.ts │ │ │ ├── maps.ts │ │ │ └── others.ts │ ├── index.ts │ ├── read │ │ ├── actions │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── types.ts │ │ ├── useReadStore.ts │ │ └── utils │ │ │ ├── attachImages.ts │ │ │ ├── index.ts │ │ │ └── sourceImages.ts │ ├── types.ts │ └── ui │ │ ├── actions │ │ ├── font.ts │ │ ├── index.ts │ │ ├── selectionActions.ts │ │ └── viewActions.ts │ │ ├── index.ts │ │ ├── init.ts │ │ ├── types.ts │ │ ├── useUiStore.ts │ │ └── utils │ │ ├── getFonts.ts │ │ └── index.ts ├── tools │ ├── generate_favicon.txt │ └── logo.svg └── types │ ├── css.d.ts │ ├── markdown-it-plugins.d.ts │ └── react-style-object-to-css.d.ts ├── tsconfig.json └── yarn.lock /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/README.md -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/firebase.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/package.json -------------------------------------------------------------------------------- /public/css/doc/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/public/css/doc/default.css -------------------------------------------------------------------------------- /public/css/doc/drake.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/public/css/doc/drake.css -------------------------------------------------------------------------------- /public/css/hljs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !info.txt -------------------------------------------------------------------------------- /public/css/hljs/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/public/css/hljs/info.txt -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/icons/essentials/generateIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/generateIndex.js -------------------------------------------------------------------------------- /src/assets/icons/essentials/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/index.ts -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/add-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/add-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/add.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/alert-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/alert-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/apps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/apps.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/arrow-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/arrow-back.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/arrow-down.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/arrow-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/arrow-forward.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/arrow-up-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/arrow-up-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/arrow-up.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/bar-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/bar-chart.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/bookmarks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/bookmarks.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/calendar-number.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/calendar-number.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/chatbox-ellipses.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/chatbox-ellipses.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/checkmark-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/checkmark-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/checkmark-done.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/checkmark-done.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/checkmark.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/chevron-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/chevron-back.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/chevron-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/chevron-forward.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/close-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/close-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/close.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/cloudy-night.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/cloudy-night.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/cog.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/color-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/color-fill.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/color-palette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/color-palette.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/color-wand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/color-wand.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/create.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/create.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/document.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/download.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/ellipsis-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/ellipsis-horizontal.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/ellipsis-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/ellipsis-vertical.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/expand.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/file-tray-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/file-tray-full.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/file-tray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/file-tray.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/filter.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/folder-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/folder-open.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/grid.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/heart.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/help-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/help-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/help.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/home.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/image.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/information-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/information-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/information.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/information.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/layers.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/leaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/leaf.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/library.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/library.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/link.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/list.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/log-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/log-out.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/menu.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/rainy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/rainy.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/reader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/reader.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/refresh.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/reload.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/remove.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/resize.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/ribbon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/ribbon.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/search.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/settings.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/share.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/star-half.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/star-half.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/star.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/text.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/time.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/timer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/timer.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg/trash.svg -------------------------------------------------------------------------------- /src/assets/icons/essentials/svg_cleanup_commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/svg_cleanup_commands.txt -------------------------------------------------------------------------------- /src/assets/icons/essentials/withStyle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/essentials/withStyle.tsx -------------------------------------------------------------------------------- /src/assets/icons/filetypes/generateIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/filetypes/generateIndex.js -------------------------------------------------------------------------------- /src/assets/icons/filetypes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/filetypes/index.ts -------------------------------------------------------------------------------- /src/assets/icons/filetypes/svg/bmp-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/filetypes/svg/bmp-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/filetypes/svg/css-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/filetypes/svg/css-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/filetypes/svg/file-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/filetypes/svg/file-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/filetypes/svg/gif-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/filetypes/svg/gif-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/filetypes/svg/jpg-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/filetypes/svg/jpg-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/filetypes/svg/md-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/filetypes/svg/md-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/filetypes/svg/png-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/filetypes/svg/png-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/filetypes/svg/svg-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/filetypes/svg/svg-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/filetypes/svg_cleanup_commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/filetypes/svg_cleanup_commands.txt -------------------------------------------------------------------------------- /src/assets/icons/filetypes/svgo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/filetypes/svgo.json -------------------------------------------------------------------------------- /src/assets/icons/filetypes/svgo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/filetypes/svgo.yml -------------------------------------------------------------------------------- /src/assets/icons/filetypes/withStyle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/icons/filetypes/withStyle.tsx -------------------------------------------------------------------------------- /src/assets/styles/codeThemes/generateStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/styles/codeThemes/generateStyles.js -------------------------------------------------------------------------------- /src/assets/styles/codeThemes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/styles/codeThemes/index.ts -------------------------------------------------------------------------------- /src/assets/styles/docThemes/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/styles/docThemes/base.scss -------------------------------------------------------------------------------- /src/assets/styles/docThemes/generateStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/styles/docThemes/generateStyles.js -------------------------------------------------------------------------------- /src/assets/styles/docThemes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/styles/docThemes/index.ts -------------------------------------------------------------------------------- /src/assets/styles/docThemes/themes/default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/styles/docThemes/themes/default.scss -------------------------------------------------------------------------------- /src/assets/styles/docThemes/themes/drake.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/styles/docThemes/themes/drake.scss -------------------------------------------------------------------------------- /src/assets/themes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/assets/themes/index.ts -------------------------------------------------------------------------------- /src/components/ActionHandler/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/ActionHandler/index.tsx -------------------------------------------------------------------------------- /src/components/ActionHandler/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/ActionHandler/types.ts -------------------------------------------------------------------------------- /src/components/ActionHandler/views/collection.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/ActionHandler/views/collection.module.scss -------------------------------------------------------------------------------- /src/components/ActionHandler/views/collectionHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/ActionHandler/views/collectionHandler.tsx -------------------------------------------------------------------------------- /src/components/ActionHandler/views/delete.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/ActionHandler/views/delete.module.scss -------------------------------------------------------------------------------- /src/components/ActionHandler/views/deleteHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/ActionHandler/views/deleteHandler.tsx -------------------------------------------------------------------------------- /src/components/ActionHandler/views/details.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/ActionHandler/views/details.module.scss -------------------------------------------------------------------------------- /src/components/ActionHandler/views/detailsHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/ActionHandler/views/detailsHandler.tsx -------------------------------------------------------------------------------- /src/components/ActionHandler/views/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/ActionHandler/views/index.ts -------------------------------------------------------------------------------- /src/components/ActionHandler/views/manageImagesHandler .tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/ActionHandler/views/manageImagesHandler .tsx -------------------------------------------------------------------------------- /src/components/ActionHandler/views/removeImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/ActionHandler/views/removeImage.tsx -------------------------------------------------------------------------------- /src/components/ActionHandler/views/rename.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/ActionHandler/views/rename.module.scss -------------------------------------------------------------------------------- /src/components/ActionHandler/views/renameHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/ActionHandler/views/renameHandler.tsx -------------------------------------------------------------------------------- /src/components/ActionHandler/views/replaceImage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/ActionHandler/views/replaceImage.module.scss -------------------------------------------------------------------------------- /src/components/ActionHandler/views/replaceImageHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/ActionHandler/views/replaceImageHandler.tsx -------------------------------------------------------------------------------- /src/components/ErrorHandler/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/ErrorHandler/index.tsx -------------------------------------------------------------------------------- /src/components/ErrorHandler/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/ErrorHandler/styles.module.scss -------------------------------------------------------------------------------- /src/components/FileControls/Heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/FileControls/Heading.tsx -------------------------------------------------------------------------------- /src/components/FileControls/MainControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/FileControls/MainControls.tsx -------------------------------------------------------------------------------- /src/components/FileControls/MoreControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/FileControls/MoreControls.tsx -------------------------------------------------------------------------------- /src/components/FileControls/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/FileControls/index.tsx -------------------------------------------------------------------------------- /src/components/FileControls/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/FileControls/styles.module.scss -------------------------------------------------------------------------------- /src/components/FileControls/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/FileControls/types.ts -------------------------------------------------------------------------------- /src/components/FileGrid/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/FileGrid/index.tsx -------------------------------------------------------------------------------- /src/components/FileGrid/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/FileGrid/styles.module.scss -------------------------------------------------------------------------------- /src/components/FileSlider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/FileSlider/index.tsx -------------------------------------------------------------------------------- /src/components/FileSlider/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/FileSlider/styles.module.scss -------------------------------------------------------------------------------- /src/components/FileView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/FileView/index.tsx -------------------------------------------------------------------------------- /src/components/FileView/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/FileView/styles.module.scss -------------------------------------------------------------------------------- /src/components/Hightlight/ColorItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Hightlight/ColorItem.tsx -------------------------------------------------------------------------------- /src/components/Hightlight/Notes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Hightlight/Notes.tsx -------------------------------------------------------------------------------- /src/components/Hightlight/StyleEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Hightlight/StyleEditor.tsx -------------------------------------------------------------------------------- /src/components/Hightlight/TextStyleGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Hightlight/TextStyleGrid.tsx -------------------------------------------------------------------------------- /src/components/Hightlight/coloritem.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Hightlight/coloritem.module.scss -------------------------------------------------------------------------------- /src/components/Hightlight/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Hightlight/index.tsx -------------------------------------------------------------------------------- /src/components/Hightlight/notes.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Hightlight/notes.module.scss -------------------------------------------------------------------------------- /src/components/Hightlight/styleeditor.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Hightlight/styleeditor.module.scss -------------------------------------------------------------------------------- /src/components/Hightlight/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Hightlight/styles.ts -------------------------------------------------------------------------------- /src/components/Hightlight/textstyles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Hightlight/textstyles.module.scss -------------------------------------------------------------------------------- /src/components/Hightlight/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Hightlight/types.ts -------------------------------------------------------------------------------- /src/components/Hightlight/useHighlightRange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Hightlight/useHighlightRange.ts -------------------------------------------------------------------------------- /src/components/Hightlight/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Hightlight/utils.ts -------------------------------------------------------------------------------- /src/components/Navs/AddButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Navs/AddButton.tsx -------------------------------------------------------------------------------- /src/components/Navs/NavItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Navs/NavItem.tsx -------------------------------------------------------------------------------- /src/components/Navs/addbutton.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Navs/addbutton.module.scss -------------------------------------------------------------------------------- /src/components/Navs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Navs/index.tsx -------------------------------------------------------------------------------- /src/components/Navs/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Navs/styles.module.scss -------------------------------------------------------------------------------- /src/components/Navs/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Navs/types.ts -------------------------------------------------------------------------------- /src/components/NotificationHandler/Notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/NotificationHandler/Notification.tsx -------------------------------------------------------------------------------- /src/components/NotificationHandler/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/NotificationHandler/index.tsx -------------------------------------------------------------------------------- /src/components/NotificationHandler/notification.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/NotificationHandler/notification.module.scss -------------------------------------------------------------------------------- /src/components/NotificationHandler/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/NotificationHandler/styles.module.scss -------------------------------------------------------------------------------- /src/components/QuickNavs/QuickNavButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/QuickNavs/QuickNavButton.tsx -------------------------------------------------------------------------------- /src/components/QuickNavs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/QuickNavs/index.tsx -------------------------------------------------------------------------------- /src/components/QuickNavs/quicknavbutton.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/QuickNavs/quicknavbutton.module.scss -------------------------------------------------------------------------------- /src/components/QuickNavs/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/QuickNavs/types.ts -------------------------------------------------------------------------------- /src/components/QuickNavs/useHideOnReaderScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/QuickNavs/useHideOnReaderScroll.ts -------------------------------------------------------------------------------- /src/components/Selector/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Selector/Editor.tsx -------------------------------------------------------------------------------- /src/components/Selector/SearchField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Selector/SearchField.tsx -------------------------------------------------------------------------------- /src/components/Selector/Toggler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Selector/Toggler.tsx -------------------------------------------------------------------------------- /src/components/Selector/editor.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Selector/editor.module.scss -------------------------------------------------------------------------------- /src/components/Selector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Selector/index.tsx -------------------------------------------------------------------------------- /src/components/Selector/searchfield.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Selector/searchfield.module.scss -------------------------------------------------------------------------------- /src/components/Selector/toggler.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Selector/toggler.module.scss -------------------------------------------------------------------------------- /src/components/Selector/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/Selector/types.ts -------------------------------------------------------------------------------- /src/components/ThemeHandler/CodeTheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/ThemeHandler/CodeTheme.tsx -------------------------------------------------------------------------------- /src/components/ThemeHandler/DocTheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/ThemeHandler/DocTheme.tsx -------------------------------------------------------------------------------- /src/components/ThemeHandler/FontsLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/ThemeHandler/FontsLoader.tsx -------------------------------------------------------------------------------- /src/components/ThemeHandler/GlobalStyles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/ThemeHandler/GlobalStyles.tsx -------------------------------------------------------------------------------- /src/components/ThemeHandler/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/ThemeHandler/index.tsx -------------------------------------------------------------------------------- /src/components/ThemeHandler/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/ThemeHandler/utils.ts -------------------------------------------------------------------------------- /src/components/UI/Backdrop/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Backdrop/index.tsx -------------------------------------------------------------------------------- /src/components/UI/Backdrop/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Backdrop/styles.module.scss -------------------------------------------------------------------------------- /src/components/UI/Buttons/BlockButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Buttons/BlockButton.tsx -------------------------------------------------------------------------------- /src/components/UI/Buttons/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Buttons/Button.tsx -------------------------------------------------------------------------------- /src/components/UI/Buttons/GridButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Buttons/GridButton.tsx -------------------------------------------------------------------------------- /src/components/UI/Buttons/IconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Buttons/IconButton.tsx -------------------------------------------------------------------------------- /src/components/UI/Buttons/blockbuttons.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Buttons/blockbuttons.module.scss -------------------------------------------------------------------------------- /src/components/UI/Buttons/button.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Buttons/button.module.scss -------------------------------------------------------------------------------- /src/components/UI/Buttons/gridbutton.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Buttons/gridbutton.module.scss -------------------------------------------------------------------------------- /src/components/UI/Buttons/iconbutton.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Buttons/iconbutton.module.scss -------------------------------------------------------------------------------- /src/components/UI/Buttons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Buttons/index.ts -------------------------------------------------------------------------------- /src/components/UI/Checkbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Checkbox/index.tsx -------------------------------------------------------------------------------- /src/components/UI/Checkbox/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Checkbox/styles.module.scss -------------------------------------------------------------------------------- /src/components/UI/ControlButtons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/ControlButtons/index.tsx -------------------------------------------------------------------------------- /src/components/UI/ControlButtons/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/ControlButtons/styles.module.scss -------------------------------------------------------------------------------- /src/components/UI/ControlButtons/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/ControlButtons/types.ts -------------------------------------------------------------------------------- /src/components/UI/Empty/empty.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Empty/empty.module.scss -------------------------------------------------------------------------------- /src/components/UI/Empty/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Empty/index.tsx -------------------------------------------------------------------------------- /src/components/UI/FileIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/FileIcon/index.tsx -------------------------------------------------------------------------------- /src/components/UI/FileIcon/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/FileIcon/styles.module.scss -------------------------------------------------------------------------------- /src/components/UI/Input/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Input/Input.tsx -------------------------------------------------------------------------------- /src/components/UI/Input/Slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Input/Slider.tsx -------------------------------------------------------------------------------- /src/components/UI/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Input/index.tsx -------------------------------------------------------------------------------- /src/components/UI/Input/input.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Input/input.module.scss -------------------------------------------------------------------------------- /src/components/UI/Input/slider.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Input/slider.module.scss -------------------------------------------------------------------------------- /src/components/UI/Label/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Label/index.tsx -------------------------------------------------------------------------------- /src/components/UI/Label/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Label/styles.module.scss -------------------------------------------------------------------------------- /src/components/UI/Loading/LogoV1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Loading/LogoV1.tsx -------------------------------------------------------------------------------- /src/components/UI/Loading/LogoV2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Loading/LogoV2.tsx -------------------------------------------------------------------------------- /src/components/UI/Loading/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Loading/Spinner.tsx -------------------------------------------------------------------------------- /src/components/UI/Loading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Loading/index.tsx -------------------------------------------------------------------------------- /src/components/UI/Loading/logov1.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Loading/logov1.module.scss -------------------------------------------------------------------------------- /src/components/UI/Loading/logov2.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Loading/logov2.module.scss -------------------------------------------------------------------------------- /src/components/UI/Loading/spinner.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Loading/spinner.module.scss -------------------------------------------------------------------------------- /src/components/UI/Menu/Controls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Menu/Controls.tsx -------------------------------------------------------------------------------- /src/components/UI/Menu/Items.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Menu/Items.tsx -------------------------------------------------------------------------------- /src/components/UI/Menu/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Menu/Menu.tsx -------------------------------------------------------------------------------- /src/components/UI/Menu/controls.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Menu/controls.module.scss -------------------------------------------------------------------------------- /src/components/UI/Menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Menu/index.ts -------------------------------------------------------------------------------- /src/components/UI/Menu/items.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Menu/items.module.scss -------------------------------------------------------------------------------- /src/components/UI/Menu/menu.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Menu/menu.module.scss -------------------------------------------------------------------------------- /src/components/UI/Menu/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Menu/types.ts -------------------------------------------------------------------------------- /src/components/UI/Modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Modal/index.tsx -------------------------------------------------------------------------------- /src/components/UI/Modal/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Modal/styles.module.scss -------------------------------------------------------------------------------- /src/components/UI/Popup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Popup/index.tsx -------------------------------------------------------------------------------- /src/components/UI/Popup/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Popup/styles.module.scss -------------------------------------------------------------------------------- /src/components/UI/Scroll/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Scroll/index.tsx -------------------------------------------------------------------------------- /src/components/UI/Scroll/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Scroll/styles.module.scss -------------------------------------------------------------------------------- /src/components/UI/SlideExit/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/SlideExit/Container.tsx -------------------------------------------------------------------------------- /src/components/UI/SlideExit/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/SlideExit/index.tsx -------------------------------------------------------------------------------- /src/components/UI/SlideExit/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/SlideExit/styles.module.scss -------------------------------------------------------------------------------- /src/components/UI/SlideExit/useSlideExit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/SlideExit/useSlideExit.ts -------------------------------------------------------------------------------- /src/components/UI/Switches/IconSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Switches/IconSwitch.tsx -------------------------------------------------------------------------------- /src/components/UI/Switches/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Switches/Switch.tsx -------------------------------------------------------------------------------- /src/components/UI/Switches/iconswitch.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Switches/iconswitch.module.scss -------------------------------------------------------------------------------- /src/components/UI/Switches/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Switches/index.ts -------------------------------------------------------------------------------- /src/components/UI/Switches/switch.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Switches/switch.module.scss -------------------------------------------------------------------------------- /src/components/UI/Tabs/TabItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Tabs/TabItems.tsx -------------------------------------------------------------------------------- /src/components/UI/Tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Tabs/index.tsx -------------------------------------------------------------------------------- /src/components/UI/Tabs/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Tabs/styles.module.scss -------------------------------------------------------------------------------- /src/components/UI/Tabs/tabitems.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Tabs/tabitems.module.scss -------------------------------------------------------------------------------- /src/components/UI/Tabs/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/Tabs/types.ts -------------------------------------------------------------------------------- /src/components/UI/common/InputContainer/container.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/common/InputContainer/container.module.scss -------------------------------------------------------------------------------- /src/components/UI/common/InputContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/common/InputContainer/index.tsx -------------------------------------------------------------------------------- /src/components/UI/common/InputContainer/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/common/InputContainer/utils.ts -------------------------------------------------------------------------------- /src/components/UI/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/components/UI/index.ts -------------------------------------------------------------------------------- /src/containers/Files/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Files/index.tsx -------------------------------------------------------------------------------- /src/containers/Files/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Files/styles.module.scss -------------------------------------------------------------------------------- /src/containers/Highlights/HighlightItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Highlights/HighlightItem.tsx -------------------------------------------------------------------------------- /src/containers/Highlights/highlightitem.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Highlights/highlightitem.module.scss -------------------------------------------------------------------------------- /src/containers/Highlights/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Highlights/index.tsx -------------------------------------------------------------------------------- /src/containers/Highlights/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Highlights/styles.module.scss -------------------------------------------------------------------------------- /src/containers/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Home/index.tsx -------------------------------------------------------------------------------- /src/containers/Home/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Home/styles.module.scss -------------------------------------------------------------------------------- /src/containers/ImageManager/Controls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/ImageManager/Controls.tsx -------------------------------------------------------------------------------- /src/containers/ImageManager/ImageGrid/CreateImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/ImageManager/ImageGrid/CreateImage.tsx -------------------------------------------------------------------------------- /src/containers/ImageManager/ImageGrid/Grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/ImageManager/ImageGrid/Grid.tsx -------------------------------------------------------------------------------- /src/containers/ImageManager/ImageGrid/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/ImageManager/ImageGrid/Image.tsx -------------------------------------------------------------------------------- /src/containers/ImageManager/ImageGrid/createimage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/ImageManager/ImageGrid/createimage.module.scss -------------------------------------------------------------------------------- /src/containers/ImageManager/ImageGrid/image.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/ImageManager/ImageGrid/image.module.scss -------------------------------------------------------------------------------- /src/containers/ImageManager/ImageGrid/imagegrid.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/ImageManager/ImageGrid/imagegrid.module.scss -------------------------------------------------------------------------------- /src/containers/ImageManager/ImageGrid/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/ImageManager/ImageGrid/index.tsx -------------------------------------------------------------------------------- /src/containers/ImageManager/controls.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/ImageManager/controls.module.scss -------------------------------------------------------------------------------- /src/containers/ImageManager/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/ImageManager/index.tsx -------------------------------------------------------------------------------- /src/containers/ImageManager/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/ImageManager/styles.module.scss -------------------------------------------------------------------------------- /src/containers/LoadingScreen/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/LoadingScreen/index.tsx -------------------------------------------------------------------------------- /src/containers/LoadingScreen/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/LoadingScreen/styles.module.scss -------------------------------------------------------------------------------- /src/containers/Reader/CreateDoc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Reader/CreateDoc.tsx -------------------------------------------------------------------------------- /src/containers/Reader/DocInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Reader/DocInfo/index.tsx -------------------------------------------------------------------------------- /src/containers/Reader/DocInfo/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Reader/DocInfo/styles.module.scss -------------------------------------------------------------------------------- /src/containers/Reader/QuickSettings/FontSizes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Reader/QuickSettings/FontSizes.tsx -------------------------------------------------------------------------------- /src/containers/Reader/QuickSettings/Fonts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Reader/QuickSettings/Fonts.tsx -------------------------------------------------------------------------------- /src/containers/Reader/QuickSettings/Themes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Reader/QuickSettings/Themes.tsx -------------------------------------------------------------------------------- /src/containers/Reader/QuickSettings/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Reader/QuickSettings/styles.module.scss -------------------------------------------------------------------------------- /src/containers/Reader/createdoc.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Reader/createdoc.module.scss -------------------------------------------------------------------------------- /src/containers/Reader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Reader/index.tsx -------------------------------------------------------------------------------- /src/containers/Reader/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Reader/types.ts -------------------------------------------------------------------------------- /src/containers/Reader/useReaderScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Reader/useReaderScroll.ts -------------------------------------------------------------------------------- /src/containers/Settings/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Settings/Container.tsx -------------------------------------------------------------------------------- /src/containers/Settings/SettingItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Settings/SettingItem.tsx -------------------------------------------------------------------------------- /src/containers/Settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Settings/index.tsx -------------------------------------------------------------------------------- /src/containers/Settings/settingitem.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Settings/settingitem.module.scss -------------------------------------------------------------------------------- /src/containers/Settings/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Settings/settings.tsx -------------------------------------------------------------------------------- /src/containers/Settings/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Settings/styles.module.scss -------------------------------------------------------------------------------- /src/containers/Settings/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Settings/types.ts -------------------------------------------------------------------------------- /src/containers/Settings/views/About/index.tsx: -------------------------------------------------------------------------------- 1 | export const About: React.FC = () => { 2 | return null; 3 | }; 4 | -------------------------------------------------------------------------------- /src/containers/Settings/views/Dialogs/index.tsx: -------------------------------------------------------------------------------- 1 | export const Dialogs: React.FC = () => { 2 | return null; 3 | }; 4 | -------------------------------------------------------------------------------- /src/containers/Settings/views/Fonts/AppFont.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Settings/views/Fonts/AppFont.tsx -------------------------------------------------------------------------------- /src/containers/Settings/views/Fonts/AppFontSizer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Settings/views/Fonts/AppFontSizer.tsx -------------------------------------------------------------------------------- /src/containers/Settings/views/Fonts/FontItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Settings/views/Fonts/FontItem.tsx -------------------------------------------------------------------------------- /src/containers/Settings/views/Fonts/FontSizer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Settings/views/Fonts/FontSizer.tsx -------------------------------------------------------------------------------- /src/containers/Settings/views/Fonts/ReaderFontSizer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Settings/views/Fonts/ReaderFontSizer.tsx -------------------------------------------------------------------------------- /src/containers/Settings/views/Fonts/ReaderFonts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Settings/views/Fonts/ReaderFonts.tsx -------------------------------------------------------------------------------- /src/containers/Settings/views/Fonts/fontitem.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Settings/views/Fonts/fontitem.module.scss -------------------------------------------------------------------------------- /src/containers/Settings/views/Fonts/fonts.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Settings/views/Fonts/fonts.module.scss -------------------------------------------------------------------------------- /src/containers/Settings/views/Fonts/fontsizer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Settings/views/Fonts/fontsizer.module.scss -------------------------------------------------------------------------------- /src/containers/Settings/views/Fonts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Settings/views/Fonts/index.tsx -------------------------------------------------------------------------------- /src/containers/Settings/views/Reset/index.tsx: -------------------------------------------------------------------------------- 1 | export const Reset: React.FC = () => { 2 | return null; 3 | }; 4 | -------------------------------------------------------------------------------- /src/containers/Settings/views/Themes/AppThemes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Settings/views/Themes/AppThemes.tsx -------------------------------------------------------------------------------- /src/containers/Settings/views/Themes/ReaderThemes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Settings/views/Themes/ReaderThemes.tsx -------------------------------------------------------------------------------- /src/containers/Settings/views/Themes/ThemeItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Settings/views/Themes/ThemeItem.tsx -------------------------------------------------------------------------------- /src/containers/Settings/views/Themes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Settings/views/Themes/index.tsx -------------------------------------------------------------------------------- /src/containers/Settings/views/Themes/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Settings/views/Themes/styles.module.scss -------------------------------------------------------------------------------- /src/containers/Settings/views/Themes/themeitem.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Settings/views/Themes/themeitem.module.scss -------------------------------------------------------------------------------- /src/containers/Settings/views/Themes/themes.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Settings/views/Themes/themes.module.scss -------------------------------------------------------------------------------- /src/containers/TestComponent/TestComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/TestComponent/TestComponent.tsx -------------------------------------------------------------------------------- /src/containers/TestComponent/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TestComponent'; 2 | -------------------------------------------------------------------------------- /src/containers/TestComponent/sample_controlitems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/TestComponent/sample_controlitems.tsx -------------------------------------------------------------------------------- /src/containers/Views/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Views/index.tsx -------------------------------------------------------------------------------- /src/containers/Views/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Views/styles.module.scss -------------------------------------------------------------------------------- /src/containers/Views/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Views/types.ts -------------------------------------------------------------------------------- /src/containers/Views/views.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/containers/Views/views.ts -------------------------------------------------------------------------------- /src/database/attachments-db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/database/attachments-db.ts -------------------------------------------------------------------------------- /src/database/files-db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/database/files-db.ts -------------------------------------------------------------------------------- /src/database/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/database/index.ts -------------------------------------------------------------------------------- /src/database/info-db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/database/info-db.ts -------------------------------------------------------------------------------- /src/database/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/database/types.ts -------------------------------------------------------------------------------- /src/database/utils/transform-attachments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/database/utils/transform-attachments.ts -------------------------------------------------------------------------------- /src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/hooks/index.ts -------------------------------------------------------------------------------- /src/hooks/useBackHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/hooks/useBackHandler.ts -------------------------------------------------------------------------------- /src/hooks/useDimensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/hooks/useDimensions.ts -------------------------------------------------------------------------------- /src/hooks/useLocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/hooks/useLocation.ts -------------------------------------------------------------------------------- /src/hooks/useWindowResize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/hooks/useWindowResize.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/keys/.gitignore: -------------------------------------------------------------------------------- 1 | *dev.ts -------------------------------------------------------------------------------- /src/keys/googlefonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/keys/googlefonts.ts -------------------------------------------------------------------------------- /src/keys/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/keys/index.ts -------------------------------------------------------------------------------- /src/libs/highlight-range/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/libs/highlight-range/index.ts -------------------------------------------------------------------------------- /src/libs/pan/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/libs/pan/index.ts -------------------------------------------------------------------------------- /src/libs/pan/pan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/libs/pan/pan.ts -------------------------------------------------------------------------------- /src/libs/pan/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/libs/pan/types.ts -------------------------------------------------------------------------------- /src/libs/spring/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/libs/spring/index.ts -------------------------------------------------------------------------------- /src/libs/spring/spring.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/libs/spring/spring.ts -------------------------------------------------------------------------------- /src/libs/spring/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/libs/spring/types.ts -------------------------------------------------------------------------------- /src/libs/utils/getDimensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/libs/utils/getDimensions.ts -------------------------------------------------------------------------------- /src/libs/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './getDimensions'; 2 | -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/store/alert/actions/actionsAlerts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/alert/actions/actionsAlerts.ts -------------------------------------------------------------------------------- /src/store/alert/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/alert/actions/index.ts -------------------------------------------------------------------------------- /src/store/alert/actions/notificationAlerts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/alert/actions/notificationAlerts.ts -------------------------------------------------------------------------------- /src/store/alert/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/alert/index.ts -------------------------------------------------------------------------------- /src/store/alert/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/alert/types.ts -------------------------------------------------------------------------------- /src/store/alert/useAlertStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/alert/useAlertStore.ts -------------------------------------------------------------------------------- /src/store/configs/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/configs/actions/index.ts -------------------------------------------------------------------------------- /src/store/configs/actions/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/configs/actions/sync.ts -------------------------------------------------------------------------------- /src/store/configs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/configs/index.ts -------------------------------------------------------------------------------- /src/store/configs/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/configs/init.ts -------------------------------------------------------------------------------- /src/store/configs/initial_configs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/configs/initial_configs.ts -------------------------------------------------------------------------------- /src/store/configs/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/configs/types.ts -------------------------------------------------------------------------------- /src/store/configs/useConfigsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/configs/useConfigsStore.ts -------------------------------------------------------------------------------- /src/store/error/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/error/actions.ts -------------------------------------------------------------------------------- /src/store/error/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/error/index.ts -------------------------------------------------------------------------------- /src/store/error/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/error/types.ts -------------------------------------------------------------------------------- /src/store/error/useErrorStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/error/useErrorStore.ts -------------------------------------------------------------------------------- /src/store/files/actions/crud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/files/actions/crud.ts -------------------------------------------------------------------------------- /src/store/files/actions/dispatchAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/files/actions/dispatchAction.ts -------------------------------------------------------------------------------- /src/store/files/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/files/actions/index.ts -------------------------------------------------------------------------------- /src/store/files/actions/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/files/actions/sort.ts -------------------------------------------------------------------------------- /src/store/files/actions/various.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/files/actions/various.ts -------------------------------------------------------------------------------- /src/store/files/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/files/index.ts -------------------------------------------------------------------------------- /src/store/files/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/files/init.ts -------------------------------------------------------------------------------- /src/store/files/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/files/types.ts -------------------------------------------------------------------------------- /src/store/files/useFileStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/files/useFileStore.ts -------------------------------------------------------------------------------- /src/store/files/utils/createNewFiles/createAttachment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/files/utils/createNewFiles/createAttachment.ts -------------------------------------------------------------------------------- /src/store/files/utils/createNewFiles/createHtml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/files/utils/createNewFiles/createHtml.ts -------------------------------------------------------------------------------- /src/store/files/utils/createNewFiles/createImageList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/files/utils/createNewFiles/createImageList.ts -------------------------------------------------------------------------------- /src/store/files/utils/createNewFiles/createMarkdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/files/utils/createNewFiles/createMarkdown.ts -------------------------------------------------------------------------------- /src/store/files/utils/createNewFiles/createNewFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/files/utils/createNewFiles/createNewFiles.ts -------------------------------------------------------------------------------- /src/store/files/utils/createNewFiles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/files/utils/createNewFiles/index.ts -------------------------------------------------------------------------------- /src/store/files/utils/createNewFiles/readText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/files/utils/createNewFiles/readText.ts -------------------------------------------------------------------------------- /src/store/files/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/files/utils/index.ts -------------------------------------------------------------------------------- /src/store/files/utils/markdownList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/files/utils/markdownList.ts -------------------------------------------------------------------------------- /src/store/files/utils/modifyFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/files/utils/modifyFiles.ts -------------------------------------------------------------------------------- /src/store/files/utils/sortMarkdowns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/files/utils/sortMarkdowns.ts -------------------------------------------------------------------------------- /src/store/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/history.ts -------------------------------------------------------------------------------- /src/store/image-manager/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/image-manager/actions/index.ts -------------------------------------------------------------------------------- /src/store/image-manager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/image-manager/index.ts -------------------------------------------------------------------------------- /src/store/image-manager/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/image-manager/types.ts -------------------------------------------------------------------------------- /src/store/image-manager/useImageManagerStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/image-manager/useImageManagerStore.ts -------------------------------------------------------------------------------- /src/store/image-manager/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/image-manager/utils/index.ts -------------------------------------------------------------------------------- /src/store/image-manager/utils/maps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/image-manager/utils/maps.ts -------------------------------------------------------------------------------- /src/store/image-manager/utils/others.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/image-manager/utils/others.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/read/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/read/actions/index.ts -------------------------------------------------------------------------------- /src/store/read/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/read/index.ts -------------------------------------------------------------------------------- /src/store/read/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/read/types.ts -------------------------------------------------------------------------------- /src/store/read/useReadStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/read/useReadStore.ts -------------------------------------------------------------------------------- /src/store/read/utils/attachImages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/read/utils/attachImages.ts -------------------------------------------------------------------------------- /src/store/read/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/read/utils/index.ts -------------------------------------------------------------------------------- /src/store/read/utils/sourceImages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/read/utils/sourceImages.ts -------------------------------------------------------------------------------- /src/store/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/types.ts -------------------------------------------------------------------------------- /src/store/ui/actions/font.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/ui/actions/font.ts -------------------------------------------------------------------------------- /src/store/ui/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/ui/actions/index.ts -------------------------------------------------------------------------------- /src/store/ui/actions/selectionActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/ui/actions/selectionActions.ts -------------------------------------------------------------------------------- /src/store/ui/actions/viewActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/ui/actions/viewActions.ts -------------------------------------------------------------------------------- /src/store/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/ui/index.ts -------------------------------------------------------------------------------- /src/store/ui/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/ui/init.ts -------------------------------------------------------------------------------- /src/store/ui/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/ui/types.ts -------------------------------------------------------------------------------- /src/store/ui/useUiStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/ui/useUiStore.ts -------------------------------------------------------------------------------- /src/store/ui/utils/getFonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/store/ui/utils/getFonts.ts -------------------------------------------------------------------------------- /src/store/ui/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './getFonts'; 2 | -------------------------------------------------------------------------------- /src/tools/generate_favicon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/tools/generate_favicon.txt -------------------------------------------------------------------------------- /src/tools/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/tools/logo.svg -------------------------------------------------------------------------------- /src/types/css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/types/css.d.ts -------------------------------------------------------------------------------- /src/types/markdown-it-plugins.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/src/types/markdown-it-plugins.d.ts -------------------------------------------------------------------------------- /src/types/react-style-object-to-css.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'react-style-object-to-css'; 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruvkr/markdown-reader/HEAD/yarn.lock --------------------------------------------------------------------------------