├── .dockerignore ├── .eslintrc.json ├── .github └── workflows │ ├── deploy_to_server.yml │ ├── release.yml │ └── tests.yml ├── .gitignore ├── .prettierrc.json ├── Dockerfile ├── LICENSE ├── README.md ├── cypress.config.ts ├── cypress ├── e2e │ ├── base.cy.ts │ ├── config.cy.ts │ ├── migration.cy.ts │ └── visual.cy.ts ├── fixtures │ ├── default-after-sync.json │ ├── default-manifest.json │ ├── default.json │ ├── dummy.json │ ├── sample-cache.json │ └── v1-config.json ├── plugins │ └── index.js ├── support │ ├── commands.js │ ├── e2e.js │ ├── index.d.ts │ └── pageCommands.ts └── tsconfig.json ├── default.conf ├── docker-compose.yml ├── docs └── assets │ ├── config-manager-desktop.png │ ├── config-manager-mobile.png │ ├── edit-desktop.png │ ├── edit-mobile.png │ ├── hotkey-desktop.png │ ├── hotkey-mobile.png │ ├── main-desktop.png │ ├── main-mobile.png │ ├── screen-config.png │ ├── screen-drop.png │ ├── screen-edit.png │ ├── screen-search.png │ ├── search-desktop.png │ └── search-mobile.png ├── package.json ├── public ├── assets │ ├── Blue_1.jpeg │ ├── Blue_1_medium.jpeg │ ├── Blue_2.jpeg │ ├── Blue_2_medium.jpeg │ ├── Blue_3.jpeg │ ├── Blue_3_medium.jpeg │ ├── Red_1.jpeg │ ├── Red_1_medium.jpeg │ ├── Red_2.jpeg │ ├── Red_2_medium.jpeg │ ├── Red_3.jpeg │ ├── Red_3_medium.jpeg │ ├── White_1.jpeg │ ├── White_1_medium.jpeg │ ├── White_2.jpeg │ ├── White_2_medium.jpeg │ ├── White_3.jpeg │ ├── White_3_medium.jpeg │ └── card.png ├── configs │ ├── config.json │ ├── manifest.json │ └── older_config.json ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.tsx ├── components │ ├── Card │ │ ├── Card.tsx │ │ ├── index.module.css │ │ └── index.tsx │ ├── CategorySection │ │ ├── Category │ │ │ ├── AddCategory.tsx │ │ │ ├── Category.tsx │ │ │ ├── CategoryCard │ │ │ │ ├── AddCategoryCard.tsx │ │ │ │ ├── CategoryCard.tsx │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ ├── CategorySection.tsx │ │ ├── index.module.css │ │ └── index.tsx │ ├── ConfigContext │ │ ├── index.module.css │ │ └── index.tsx │ ├── ConfigEditor │ │ ├── ConfigDetails.module.css │ │ ├── ConfigDetails.tsx │ │ ├── ConfigList │ │ │ ├── ConfigListItem.tsx │ │ │ ├── ListAction.tsx │ │ │ ├── UploadButton.tsx │ │ │ ├── index.module.css │ │ │ ├── index.tsx │ │ │ └── useAction.ts │ │ ├── ConfigPreview.module.css │ │ ├── ConfigPreview.tsx │ │ ├── MainScreen.module.css │ │ ├── MainScreen.tsx │ │ ├── StoreScreen.module.css │ │ ├── StoreScreen.tsx │ │ ├── index.module.css │ │ └── index.tsx │ ├── EditLinkModal │ │ ├── EditLinkModal.tsx │ │ ├── index.tsx │ │ └── transforms.ts │ ├── FeaturedSection │ │ ├── FeaturedCard │ │ │ ├── AddFeaturedCard.tsx │ │ │ ├── FeaturedCard.tsx │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ ├── FeaturedSection.tsx │ │ ├── index.module.css │ │ └── index.tsx │ ├── Hotkeys │ │ ├── index.jsx │ │ └── index.module.css │ ├── SearchBar │ │ ├── EditModal.tsx │ │ ├── constants.ts │ │ ├── index.module.css │ │ ├── index.tsx │ │ ├── useSearch.tsx │ │ └── utils.ts │ ├── SearchContext │ │ └── index.tsx │ ├── StatusCard │ │ ├── index.module.css │ │ └── index.tsx │ └── common │ │ ├── Drop │ │ ├── index.module.css │ │ ├── index.ts │ │ ├── useDragging.ts │ │ └── useDrop.ts │ │ ├── Icon │ │ ├── Icon.tsx │ │ ├── IconButton.tsx │ │ ├── button.module.css │ │ ├── icon.module.css │ │ ├── icons │ │ │ ├── check-solid.svg │ │ │ ├── cog-solid.svg │ │ │ ├── ellipsis-solid.svg │ │ │ ├── file-alt-solid.svg │ │ │ ├── file-download-solid.svg │ │ │ ├── folder-plus-solid.svg │ │ │ ├── glasses-solid.svg │ │ │ ├── globe-americas-solid.svg │ │ │ ├── image-solid.svg │ │ │ ├── index.tsx │ │ │ ├── pen-solid.svg │ │ │ ├── plus-circle-solid.svg │ │ │ ├── plus-solid.svg │ │ │ ├── save-solid.svg │ │ │ ├── search-solid.svg │ │ │ ├── square-plus-regular.svg │ │ │ ├── star-regular.svg │ │ │ ├── sync-alt-solid.svg │ │ │ ├── table-solid.svg │ │ │ ├── times-solid.svg │ │ │ ├── trash-solid.svg │ │ │ ├── triangle-exclamation-solid.svg │ │ │ ├── undo-solid.svg │ │ │ └── upload-solid.svg │ │ └── index.tsx │ │ ├── Input │ │ ├── index.module.css │ │ └── index.tsx │ │ ├── Modal │ │ ├── Modal.tsx │ │ ├── ModalPortal.tsx │ │ ├── index.module.css │ │ └── index.tsx │ │ ├── Section │ │ ├── index.module.css │ │ └── index.tsx │ │ └── Select │ │ ├── Select.tsx │ │ └── index.module.css ├── index.css ├── index.tsx ├── modules │ ├── config │ │ ├── __mocks__ │ │ │ ├── mock_1_0_0_config.json │ │ │ ├── mock_2_0_0_config.json │ │ │ └── mock_latest_config.json │ │ ├── config.ts │ │ ├── configHelpers.ts │ │ ├── configService.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── load │ │ │ ├── index.ts │ │ │ └── manifest.ts │ │ ├── migrations │ │ │ ├── index.ts │ │ │ ├── migrationService.spec.ts │ │ │ ├── migrationService.ts │ │ │ ├── migrations.ts │ │ │ └── types.ts │ │ ├── remotes │ │ │ ├── index.ts │ │ │ ├── localStorageRemote.ts │ │ │ ├── remoteService.ts │ │ │ └── urlRemote.ts │ │ ├── types.ts │ │ ├── useStore.ts │ │ ├── utils.ts │ │ └── validate │ │ │ ├── index.spec.ts │ │ │ └── index.ts │ ├── hash │ │ ├── index.spec.ts │ │ └── index.ts │ ├── hooks │ │ ├── index.ts │ │ ├── useDragging.ts │ │ ├── useMethods.ts │ │ └── useWindowSize.jsx │ ├── isWindows │ │ └── index.ts │ ├── ui-events │ │ ├── index.spec.ts │ │ └── index.ts │ ├── utils.spec.ts │ ├── utils.ts │ └── uuid │ │ ├── index.spec.ts │ │ └── index.ts ├── react-app-env.d.ts ├── serviceWorker.js └── setupTests.js └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/deploy_to_server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/.github/workflows/deploy_to_server.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/README.md -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /cypress/e2e/base.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/cypress/e2e/base.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/config.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/cypress/e2e/config.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/migration.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/cypress/e2e/migration.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/visual.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/cypress/e2e/visual.cy.ts -------------------------------------------------------------------------------- /cypress/fixtures/default-after-sync.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/cypress/fixtures/default-after-sync.json -------------------------------------------------------------------------------- /cypress/fixtures/default-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/cypress/fixtures/default-manifest.json -------------------------------------------------------------------------------- /cypress/fixtures/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/cypress/fixtures/default.json -------------------------------------------------------------------------------- /cypress/fixtures/dummy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/cypress/fixtures/dummy.json -------------------------------------------------------------------------------- /cypress/fixtures/sample-cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/cypress/fixtures/sample-cache.json -------------------------------------------------------------------------------- /cypress/fixtures/v1-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/cypress/fixtures/v1-config.json -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/cypress/support/e2e.js -------------------------------------------------------------------------------- /cypress/support/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/cypress/support/index.d.ts -------------------------------------------------------------------------------- /cypress/support/pageCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/cypress/support/pageCommands.ts -------------------------------------------------------------------------------- /cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/cypress/tsconfig.json -------------------------------------------------------------------------------- /default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/default.conf -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/assets/config-manager-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/docs/assets/config-manager-desktop.png -------------------------------------------------------------------------------- /docs/assets/config-manager-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/docs/assets/config-manager-mobile.png -------------------------------------------------------------------------------- /docs/assets/edit-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/docs/assets/edit-desktop.png -------------------------------------------------------------------------------- /docs/assets/edit-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/docs/assets/edit-mobile.png -------------------------------------------------------------------------------- /docs/assets/hotkey-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/docs/assets/hotkey-desktop.png -------------------------------------------------------------------------------- /docs/assets/hotkey-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/docs/assets/hotkey-mobile.png -------------------------------------------------------------------------------- /docs/assets/main-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/docs/assets/main-desktop.png -------------------------------------------------------------------------------- /docs/assets/main-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/docs/assets/main-mobile.png -------------------------------------------------------------------------------- /docs/assets/screen-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/docs/assets/screen-config.png -------------------------------------------------------------------------------- /docs/assets/screen-drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/docs/assets/screen-drop.png -------------------------------------------------------------------------------- /docs/assets/screen-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/docs/assets/screen-edit.png -------------------------------------------------------------------------------- /docs/assets/screen-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/docs/assets/screen-search.png -------------------------------------------------------------------------------- /docs/assets/search-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/docs/assets/search-desktop.png -------------------------------------------------------------------------------- /docs/assets/search-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/docs/assets/search-mobile.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/package.json -------------------------------------------------------------------------------- /public/assets/Blue_1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/assets/Blue_1.jpeg -------------------------------------------------------------------------------- /public/assets/Blue_1_medium.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/assets/Blue_1_medium.jpeg -------------------------------------------------------------------------------- /public/assets/Blue_2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/assets/Blue_2.jpeg -------------------------------------------------------------------------------- /public/assets/Blue_2_medium.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/assets/Blue_2_medium.jpeg -------------------------------------------------------------------------------- /public/assets/Blue_3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/assets/Blue_3.jpeg -------------------------------------------------------------------------------- /public/assets/Blue_3_medium.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/assets/Blue_3_medium.jpeg -------------------------------------------------------------------------------- /public/assets/Red_1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/assets/Red_1.jpeg -------------------------------------------------------------------------------- /public/assets/Red_1_medium.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/assets/Red_1_medium.jpeg -------------------------------------------------------------------------------- /public/assets/Red_2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/assets/Red_2.jpeg -------------------------------------------------------------------------------- /public/assets/Red_2_medium.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/assets/Red_2_medium.jpeg -------------------------------------------------------------------------------- /public/assets/Red_3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/assets/Red_3.jpeg -------------------------------------------------------------------------------- /public/assets/Red_3_medium.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/assets/Red_3_medium.jpeg -------------------------------------------------------------------------------- /public/assets/White_1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/assets/White_1.jpeg -------------------------------------------------------------------------------- /public/assets/White_1_medium.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/assets/White_1_medium.jpeg -------------------------------------------------------------------------------- /public/assets/White_2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/assets/White_2.jpeg -------------------------------------------------------------------------------- /public/assets/White_2_medium.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/assets/White_2_medium.jpeg -------------------------------------------------------------------------------- /public/assets/White_3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/assets/White_3.jpeg -------------------------------------------------------------------------------- /public/assets/White_3_medium.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/assets/White_3_medium.jpeg -------------------------------------------------------------------------------- /public/assets/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/assets/card.png -------------------------------------------------------------------------------- /public/configs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/configs/config.json -------------------------------------------------------------------------------- /public/configs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/configs/manifest.json -------------------------------------------------------------------------------- /public/configs/older_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/configs/older_config.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/Card/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/Card/Card.tsx -------------------------------------------------------------------------------- /src/components/Card/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/Card/index.module.css -------------------------------------------------------------------------------- /src/components/Card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/Card/index.tsx -------------------------------------------------------------------------------- /src/components/CategorySection/Category/AddCategory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/CategorySection/Category/AddCategory.tsx -------------------------------------------------------------------------------- /src/components/CategorySection/Category/Category.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/CategorySection/Category/Category.tsx -------------------------------------------------------------------------------- /src/components/CategorySection/Category/CategoryCard/AddCategoryCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/CategorySection/Category/CategoryCard/AddCategoryCard.tsx -------------------------------------------------------------------------------- /src/components/CategorySection/Category/CategoryCard/CategoryCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/CategorySection/Category/CategoryCard/CategoryCard.tsx -------------------------------------------------------------------------------- /src/components/CategorySection/Category/CategoryCard/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/CategorySection/Category/CategoryCard/index.module.css -------------------------------------------------------------------------------- /src/components/CategorySection/Category/CategoryCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/CategorySection/Category/CategoryCard/index.tsx -------------------------------------------------------------------------------- /src/components/CategorySection/Category/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/CategorySection/Category/index.module.css -------------------------------------------------------------------------------- /src/components/CategorySection/Category/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/CategorySection/Category/index.tsx -------------------------------------------------------------------------------- /src/components/CategorySection/CategorySection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/CategorySection/CategorySection.tsx -------------------------------------------------------------------------------- /src/components/CategorySection/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/CategorySection/index.module.css -------------------------------------------------------------------------------- /src/components/CategorySection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/CategorySection/index.tsx -------------------------------------------------------------------------------- /src/components/ConfigContext/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/ConfigContext/index.module.css -------------------------------------------------------------------------------- /src/components/ConfigContext/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/ConfigContext/index.tsx -------------------------------------------------------------------------------- /src/components/ConfigEditor/ConfigDetails.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/ConfigEditor/ConfigDetails.module.css -------------------------------------------------------------------------------- /src/components/ConfigEditor/ConfigDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/ConfigEditor/ConfigDetails.tsx -------------------------------------------------------------------------------- /src/components/ConfigEditor/ConfigList/ConfigListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/ConfigEditor/ConfigList/ConfigListItem.tsx -------------------------------------------------------------------------------- /src/components/ConfigEditor/ConfigList/ListAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/ConfigEditor/ConfigList/ListAction.tsx -------------------------------------------------------------------------------- /src/components/ConfigEditor/ConfigList/UploadButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/ConfigEditor/ConfigList/UploadButton.tsx -------------------------------------------------------------------------------- /src/components/ConfigEditor/ConfigList/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/ConfigEditor/ConfigList/index.module.css -------------------------------------------------------------------------------- /src/components/ConfigEditor/ConfigList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/ConfigEditor/ConfigList/index.tsx -------------------------------------------------------------------------------- /src/components/ConfigEditor/ConfigList/useAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/ConfigEditor/ConfigList/useAction.ts -------------------------------------------------------------------------------- /src/components/ConfigEditor/ConfigPreview.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/ConfigEditor/ConfigPreview.module.css -------------------------------------------------------------------------------- /src/components/ConfigEditor/ConfigPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/ConfigEditor/ConfigPreview.tsx -------------------------------------------------------------------------------- /src/components/ConfigEditor/MainScreen.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/ConfigEditor/MainScreen.module.css -------------------------------------------------------------------------------- /src/components/ConfigEditor/MainScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/ConfigEditor/MainScreen.tsx -------------------------------------------------------------------------------- /src/components/ConfigEditor/StoreScreen.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/ConfigEditor/StoreScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/ConfigEditor/StoreScreen.tsx -------------------------------------------------------------------------------- /src/components/ConfigEditor/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/ConfigEditor/index.module.css -------------------------------------------------------------------------------- /src/components/ConfigEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/ConfigEditor/index.tsx -------------------------------------------------------------------------------- /src/components/EditLinkModal/EditLinkModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/EditLinkModal/EditLinkModal.tsx -------------------------------------------------------------------------------- /src/components/EditLinkModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/EditLinkModal/index.tsx -------------------------------------------------------------------------------- /src/components/EditLinkModal/transforms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/EditLinkModal/transforms.ts -------------------------------------------------------------------------------- /src/components/FeaturedSection/FeaturedCard/AddFeaturedCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/FeaturedSection/FeaturedCard/AddFeaturedCard.tsx -------------------------------------------------------------------------------- /src/components/FeaturedSection/FeaturedCard/FeaturedCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/FeaturedSection/FeaturedCard/FeaturedCard.tsx -------------------------------------------------------------------------------- /src/components/FeaturedSection/FeaturedCard/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/FeaturedSection/FeaturedCard/index.module.css -------------------------------------------------------------------------------- /src/components/FeaturedSection/FeaturedCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/FeaturedSection/FeaturedCard/index.tsx -------------------------------------------------------------------------------- /src/components/FeaturedSection/FeaturedSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/FeaturedSection/FeaturedSection.tsx -------------------------------------------------------------------------------- /src/components/FeaturedSection/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/FeaturedSection/index.module.css -------------------------------------------------------------------------------- /src/components/FeaturedSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/FeaturedSection/index.tsx -------------------------------------------------------------------------------- /src/components/Hotkeys/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/Hotkeys/index.jsx -------------------------------------------------------------------------------- /src/components/Hotkeys/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/Hotkeys/index.module.css -------------------------------------------------------------------------------- /src/components/SearchBar/EditModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/SearchBar/EditModal.tsx -------------------------------------------------------------------------------- /src/components/SearchBar/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/SearchBar/constants.ts -------------------------------------------------------------------------------- /src/components/SearchBar/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/SearchBar/index.module.css -------------------------------------------------------------------------------- /src/components/SearchBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/SearchBar/index.tsx -------------------------------------------------------------------------------- /src/components/SearchBar/useSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/SearchBar/useSearch.tsx -------------------------------------------------------------------------------- /src/components/SearchBar/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/SearchBar/utils.ts -------------------------------------------------------------------------------- /src/components/SearchContext/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/SearchContext/index.tsx -------------------------------------------------------------------------------- /src/components/StatusCard/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/StatusCard/index.module.css -------------------------------------------------------------------------------- /src/components/StatusCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/StatusCard/index.tsx -------------------------------------------------------------------------------- /src/components/common/Drop/index.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/common/Drop/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Drop/index.ts -------------------------------------------------------------------------------- /src/components/common/Drop/useDragging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Drop/useDragging.ts -------------------------------------------------------------------------------- /src/components/common/Drop/useDrop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Drop/useDrop.ts -------------------------------------------------------------------------------- /src/components/common/Icon/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/Icon.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/IconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/IconButton.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/button.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/button.module.css -------------------------------------------------------------------------------- /src/components/common/Icon/icon.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/icon.module.css -------------------------------------------------------------------------------- /src/components/common/Icon/icons/check-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/icons/check-solid.svg -------------------------------------------------------------------------------- /src/components/common/Icon/icons/cog-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/icons/cog-solid.svg -------------------------------------------------------------------------------- /src/components/common/Icon/icons/ellipsis-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/icons/ellipsis-solid.svg -------------------------------------------------------------------------------- /src/components/common/Icon/icons/file-alt-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/icons/file-alt-solid.svg -------------------------------------------------------------------------------- /src/components/common/Icon/icons/file-download-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/icons/file-download-solid.svg -------------------------------------------------------------------------------- /src/components/common/Icon/icons/folder-plus-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/icons/folder-plus-solid.svg -------------------------------------------------------------------------------- /src/components/common/Icon/icons/glasses-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/icons/glasses-solid.svg -------------------------------------------------------------------------------- /src/components/common/Icon/icons/globe-americas-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/icons/globe-americas-solid.svg -------------------------------------------------------------------------------- /src/components/common/Icon/icons/image-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/icons/image-solid.svg -------------------------------------------------------------------------------- /src/components/common/Icon/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/icons/index.tsx -------------------------------------------------------------------------------- /src/components/common/Icon/icons/pen-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/icons/pen-solid.svg -------------------------------------------------------------------------------- /src/components/common/Icon/icons/plus-circle-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/icons/plus-circle-solid.svg -------------------------------------------------------------------------------- /src/components/common/Icon/icons/plus-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/icons/plus-solid.svg -------------------------------------------------------------------------------- /src/components/common/Icon/icons/save-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/icons/save-solid.svg -------------------------------------------------------------------------------- /src/components/common/Icon/icons/search-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/icons/search-solid.svg -------------------------------------------------------------------------------- /src/components/common/Icon/icons/square-plus-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/icons/square-plus-regular.svg -------------------------------------------------------------------------------- /src/components/common/Icon/icons/star-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/icons/star-regular.svg -------------------------------------------------------------------------------- /src/components/common/Icon/icons/sync-alt-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/icons/sync-alt-solid.svg -------------------------------------------------------------------------------- /src/components/common/Icon/icons/table-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/icons/table-solid.svg -------------------------------------------------------------------------------- /src/components/common/Icon/icons/times-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/icons/times-solid.svg -------------------------------------------------------------------------------- /src/components/common/Icon/icons/trash-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/icons/trash-solid.svg -------------------------------------------------------------------------------- /src/components/common/Icon/icons/triangle-exclamation-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/icons/triangle-exclamation-solid.svg -------------------------------------------------------------------------------- /src/components/common/Icon/icons/undo-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/icons/undo-solid.svg -------------------------------------------------------------------------------- /src/components/common/Icon/icons/upload-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/icons/upload-solid.svg -------------------------------------------------------------------------------- /src/components/common/Icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Icon/index.tsx -------------------------------------------------------------------------------- /src/components/common/Input/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Input/index.module.css -------------------------------------------------------------------------------- /src/components/common/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Input/index.tsx -------------------------------------------------------------------------------- /src/components/common/Modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Modal/Modal.tsx -------------------------------------------------------------------------------- /src/components/common/Modal/ModalPortal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Modal/ModalPortal.tsx -------------------------------------------------------------------------------- /src/components/common/Modal/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Modal/index.module.css -------------------------------------------------------------------------------- /src/components/common/Modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Modal/index.tsx -------------------------------------------------------------------------------- /src/components/common/Section/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Section/index.module.css -------------------------------------------------------------------------------- /src/components/common/Section/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Section/index.tsx -------------------------------------------------------------------------------- /src/components/common/Select/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Select/Select.tsx -------------------------------------------------------------------------------- /src/components/common/Select/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/components/common/Select/index.module.css -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/modules/config/__mocks__/mock_1_0_0_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/config/__mocks__/mock_1_0_0_config.json -------------------------------------------------------------------------------- /src/modules/config/__mocks__/mock_2_0_0_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/config/__mocks__/mock_2_0_0_config.json -------------------------------------------------------------------------------- /src/modules/config/__mocks__/mock_latest_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/config/__mocks__/mock_latest_config.json -------------------------------------------------------------------------------- /src/modules/config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/config/config.ts -------------------------------------------------------------------------------- /src/modules/config/configHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/config/configHelpers.ts -------------------------------------------------------------------------------- /src/modules/config/configService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/config/configService.ts -------------------------------------------------------------------------------- /src/modules/config/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/config/constants.ts -------------------------------------------------------------------------------- /src/modules/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/config/index.ts -------------------------------------------------------------------------------- /src/modules/config/load/index.ts: -------------------------------------------------------------------------------- 1 | export * from './manifest' 2 | -------------------------------------------------------------------------------- /src/modules/config/load/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/config/load/manifest.ts -------------------------------------------------------------------------------- /src/modules/config/migrations/index.ts: -------------------------------------------------------------------------------- 1 | export * from './migrationService' 2 | -------------------------------------------------------------------------------- /src/modules/config/migrations/migrationService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/config/migrations/migrationService.spec.ts -------------------------------------------------------------------------------- /src/modules/config/migrations/migrationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/config/migrations/migrationService.ts -------------------------------------------------------------------------------- /src/modules/config/migrations/migrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/config/migrations/migrations.ts -------------------------------------------------------------------------------- /src/modules/config/migrations/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/config/migrations/types.ts -------------------------------------------------------------------------------- /src/modules/config/remotes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/config/remotes/index.ts -------------------------------------------------------------------------------- /src/modules/config/remotes/localStorageRemote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/config/remotes/localStorageRemote.ts -------------------------------------------------------------------------------- /src/modules/config/remotes/remoteService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/config/remotes/remoteService.ts -------------------------------------------------------------------------------- /src/modules/config/remotes/urlRemote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/config/remotes/urlRemote.ts -------------------------------------------------------------------------------- /src/modules/config/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/config/types.ts -------------------------------------------------------------------------------- /src/modules/config/useStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/config/useStore.ts -------------------------------------------------------------------------------- /src/modules/config/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/config/utils.ts -------------------------------------------------------------------------------- /src/modules/config/validate/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/config/validate/index.spec.ts -------------------------------------------------------------------------------- /src/modules/config/validate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/config/validate/index.ts -------------------------------------------------------------------------------- /src/modules/hash/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/hash/index.spec.ts -------------------------------------------------------------------------------- /src/modules/hash/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/hash/index.ts -------------------------------------------------------------------------------- /src/modules/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/hooks/index.ts -------------------------------------------------------------------------------- /src/modules/hooks/useDragging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/hooks/useDragging.ts -------------------------------------------------------------------------------- /src/modules/hooks/useMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/hooks/useMethods.ts -------------------------------------------------------------------------------- /src/modules/hooks/useWindowSize.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/hooks/useWindowSize.jsx -------------------------------------------------------------------------------- /src/modules/isWindows/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/isWindows/index.ts -------------------------------------------------------------------------------- /src/modules/ui-events/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/ui-events/index.spec.ts -------------------------------------------------------------------------------- /src/modules/ui-events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/ui-events/index.ts -------------------------------------------------------------------------------- /src/modules/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/utils.spec.ts -------------------------------------------------------------------------------- /src/modules/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/utils.ts -------------------------------------------------------------------------------- /src/modules/uuid/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/uuid/index.spec.ts -------------------------------------------------------------------------------- /src/modules/uuid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/modules/uuid/index.ts -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwin-pc/hiccup/HEAD/tsconfig.json --------------------------------------------------------------------------------