├── .commitlintrc.json ├── .editorconfig ├── .eslintrc.json ├── .github ├── DISCUSSION_TEMPLATE │ └── blocks-request.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── workflows │ ├── code-check.yml │ ├── issue-stale.yml │ └── prerelease-comment.yml ├── .gitignore ├── .husky └── commit-msg ├── .kodiak.toml ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── apps └── www │ ├── .env.example │ ├── .gitignore │ ├── .prettierignore │ ├── __registry__ │ └── index.tsx │ ├── app │ ├── (app) │ │ ├── docs │ │ │ ├── [[...slug]] │ │ │ │ └── page.tsx │ │ │ └── layout.tsx │ │ ├── layout.tsx │ │ └── page.tsx │ └── layout.tsx │ ├── assets │ └── fonts │ │ ├── Inter-Bold.ttf │ │ └── Inter-Regular.ttf │ ├── components │ ├── announcement.tsx │ ├── callout.tsx │ ├── code-block-wrapper.tsx │ ├── command-menu.tsx │ ├── component-example.tsx │ ├── component-preview.tsx │ ├── component-source.tsx │ ├── copy-button.tsx │ ├── framework-docs.tsx │ ├── google-analytics.tsx │ ├── icons.tsx │ ├── main-nav.tsx │ ├── mdx-components.tsx │ ├── mobile-nav.tsx │ ├── mode-toggle.tsx │ ├── page-header.tsx │ ├── page-marquee.tsx │ ├── page-section.tsx │ ├── pager.tsx │ ├── providers.tsx │ ├── sidebar-nav.tsx │ ├── site-footer.tsx │ ├── site-header.tsx │ ├── style-wrapper.tsx │ ├── toc.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── alert.tsx │ │ ├── aspect-ratio.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── dialog.tsx │ │ ├── dot-pattern.tsx │ │ ├── dropdown-menu.tsx │ │ ├── marquee.tsx │ │ ├── scroll-area.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── tabs.tsx │ │ ├── tooltip.tsx │ │ └── word-rotate.tsx │ ├── config │ ├── docs.ts │ └── site.ts │ ├── content │ └── docs │ │ ├── about.mdx │ │ ├── changelog.mdx │ │ ├── cli.mdx │ │ ├── hooks-json.mdx │ │ ├── hooks │ │ ├── battery.mdx │ │ ├── binary-search.mdx │ │ ├── breadth-first-search.mdx │ │ ├── click-away.mdx │ │ ├── cookies.mdx │ │ ├── copy-to-clipboard.mdx │ │ ├── counter.mdx │ │ ├── debounce.mdx │ │ ├── default.mdx │ │ ├── depth-first-search.mdx │ │ ├── dijkstra.mdx │ │ ├── document-title.mdx │ │ ├── favicon.mdx │ │ ├── geolocation.mdx │ │ ├── graham-scan.mdx │ │ ├── greedy.mdx │ │ ├── history-state.mdx │ │ ├── hover.mdx │ │ ├── idle.mdx │ │ ├── intersection-observer.mdx │ │ ├── is-client.mdx │ │ ├── is-first-render.mdx │ │ ├── latest.mdx │ │ ├── list.mdx │ │ ├── local-storage.mdx │ │ ├── lock-body-scroll.mdx │ │ ├── long-press.mdx │ │ ├── map.mdx │ │ ├── measure.mdx │ │ ├── media-query.mdx │ │ ├── merge-sort.mdx │ │ ├── mouse.mdx │ │ ├── network-state.mdx │ │ ├── object-state.mdx │ │ ├── orientation.mdx │ │ ├── preferred-language.mdx │ │ ├── previous.mdx │ │ ├── queue.mdx │ │ ├── quick-sort.mdx │ │ ├── render-count.mdx │ │ ├── render-info.mdx │ │ ├── script.mdx │ │ ├── session-storage.mdx │ │ ├── set.mdx │ │ ├── throttle.mdx │ │ ├── toggle.mdx │ │ ├── unmount.mdx │ │ ├── visibility-change.mdx │ │ ├── web-socket.mdx │ │ ├── window-scroll.mdx │ │ └── window-size.mdx │ │ ├── index.mdx │ │ └── installation │ │ ├── index.mdx │ │ ├── manual.mdx │ │ ├── next.mdx │ │ └── vite.mdx │ ├── contentlayer.config.js │ ├── hooks │ ├── use-config.ts │ └── use-mounted.ts │ ├── lib │ ├── events.ts │ ├── fonts.ts │ ├── highlight-code.ts │ ├── rehype-component.ts │ ├── rehype-npm-command.ts │ ├── themes │ │ ├── dark.json │ │ └── light.json │ ├── toc.ts │ ├── utils.ts │ └── validations │ │ ├── log.ts │ │ └── og.ts │ ├── next-env.d.ts │ ├── next.config.mjs │ ├── package.json │ ├── pages │ ├── .gitkeep │ └── api │ │ ├── .gitkeep │ │ ├── components.json │ │ ├── hooks.json │ │ └── hooks.ts │ ├── postcss.config.cjs │ ├── public │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── og.jpg │ ├── registry │ │ ├── codestyles │ │ │ ├── index.json │ │ │ └── react-hooks │ │ │ │ ├── battery.json │ │ │ │ ├── binary-search.json │ │ │ │ ├── breadth-first-search.json │ │ │ │ ├── click-away.json │ │ │ │ ├── cookies.json │ │ │ │ ├── copy-to-clipboard.json │ │ │ │ ├── counter.json │ │ │ │ ├── debounce.json │ │ │ │ ├── default.json │ │ │ │ ├── depth-first-search.json │ │ │ │ ├── dijkstra.json │ │ │ │ ├── document-title.json │ │ │ │ ├── favicon.json │ │ │ │ ├── geolocation.json │ │ │ │ ├── graham-scan.json │ │ │ │ ├── greedy.json │ │ │ │ ├── history-state.json │ │ │ │ ├── hover.json │ │ │ │ ├── idle.json │ │ │ │ ├── intersection-observer.json │ │ │ │ ├── is-client.json │ │ │ │ ├── is-first-render.json │ │ │ │ ├── latest.json │ │ │ │ ├── list.json │ │ │ │ ├── local-storage.json │ │ │ │ ├── lock-body-scroll.json │ │ │ │ ├── long-press.json │ │ │ │ ├── map.json │ │ │ │ ├── measure.json │ │ │ │ ├── media-query.json │ │ │ │ ├── merge-sort.json │ │ │ │ ├── mouse.json │ │ │ │ ├── network-state.json │ │ │ │ ├── object-state.json │ │ │ │ ├── orientation.json │ │ │ │ ├── preferred-language.json │ │ │ │ ├── previous.json │ │ │ │ ├── queue.json │ │ │ │ ├── quick-sort.json │ │ │ │ ├── render-count.json │ │ │ │ ├── render-info.json │ │ │ │ ├── script.json │ │ │ │ ├── session-storage.json │ │ │ │ ├── set.json │ │ │ │ ├── throttle.json │ │ │ │ ├── toggle.json │ │ │ │ ├── unmount.json │ │ │ │ ├── visibility-change.json │ │ │ │ ├── web-socket.json │ │ │ │ ├── window-scroll.json │ │ │ │ └── window-size.json │ │ └── index.json │ ├── schema.json │ ├── site.webmanifest │ └── sitemap.xml │ ├── registry │ ├── codestyles.ts │ ├── hooks.ts │ ├── react-hooks │ │ └── hook │ │ │ ├── battery.ts │ │ │ ├── binary-search.ts │ │ │ ├── breadth-first-search.ts │ │ │ ├── click-away.ts │ │ │ ├── cookies.ts │ │ │ ├── copy-to-clipboard.ts │ │ │ ├── counter.ts │ │ │ ├── debounce.ts │ │ │ ├── default.ts │ │ │ ├── depth-first-search.ts │ │ │ ├── dijkstra.ts │ │ │ ├── document-title.ts │ │ │ ├── favicon.ts │ │ │ ├── geolocation.ts │ │ │ ├── graham-scan.ts │ │ │ ├── greedy.ts │ │ │ ├── history-state.ts │ │ │ ├── hover.ts │ │ │ ├── idle.ts │ │ │ ├── intersection-observer.ts │ │ │ ├── is-client.ts │ │ │ ├── is-first-render.ts │ │ │ ├── latest.ts │ │ │ ├── list.ts │ │ │ ├── local-storage.ts │ │ │ ├── lock-body-scroll.ts │ │ │ ├── long-press.ts │ │ │ ├── map.ts │ │ │ ├── measure.ts │ │ │ ├── media-query.ts │ │ │ ├── memoized-fn.ts │ │ │ ├── merge-sort.ts │ │ │ ├── mouse.ts │ │ │ ├── network-state.ts │ │ │ ├── object-state.ts │ │ │ ├── orientation.ts │ │ │ ├── preferred-language.ts │ │ │ ├── previous.ts │ │ │ ├── queue.ts │ │ │ ├── quick-sort.ts │ │ │ ├── render-count.ts │ │ │ ├── render-info.ts │ │ │ ├── script.ts │ │ │ ├── session-storage.ts │ │ │ ├── set.ts │ │ │ ├── throttle.ts │ │ │ ├── toggle.ts │ │ │ ├── unmount.ts │ │ │ ├── visibility-change.ts │ │ │ ├── web-socket.ts │ │ │ ├── window-scroll.ts │ │ │ └── window-size.ts │ ├── registry.ts │ └── schema.ts │ ├── scripts │ └── build-registry.mts │ ├── styles │ ├── globals.css │ └── mdx.css │ ├── tailwind.config.cjs │ ├── tsconfig.json │ ├── tsconfig.scripts.json │ └── types │ ├── nav.ts │ └── unist.ts ├── package.json ├── packages └── cli │ ├── .changeset │ ├── README.md │ ├── config.json │ ├── curly-impalas-repair.md │ └── strong-trees-play.md │ ├── .gitignore │ ├── .prettierignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ ├── commands │ │ ├── add.ts │ │ ├── diff.ts │ │ └── init.ts │ ├── index.ts │ └── utils │ │ ├── get-config.ts │ │ ├── get-package-info.ts │ │ ├── get-package-manager.ts │ │ ├── get-project-info.ts │ │ ├── handle-error.ts │ │ ├── logger.ts │ │ ├── registry │ │ ├── index.ts │ │ └── schema.ts │ │ ├── resolve-import.ts │ │ └── transformers │ │ ├── index.ts │ │ ├── transform-import.ts │ │ └── transform-jsx.ts │ ├── tsconfig.json │ └── tsup.config.ts ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── postcss.config.cjs ├── prettier.config.cjs ├── tailwind.config.cjs ├── tsconfig.json └── turbo.json /.commitlintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@commitlint/config-conventional"] 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/DISCUSSION_TEMPLATE/blocks-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/.github/DISCUSSION_TEMPLATE/blocks-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/code-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/.github/workflows/code-check.yml -------------------------------------------------------------------------------- /.github/workflows/issue-stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/.github/workflows/issue-stale.yml -------------------------------------------------------------------------------- /.github/workflows/prerelease-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/.github/workflows/prerelease-comment.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.kodiak.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/.kodiak.toml -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | auto-install-peers=true 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20.5.1 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | -------------------------------------------------------------------------------- /apps/www/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/.env.example -------------------------------------------------------------------------------- /apps/www/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .env -------------------------------------------------------------------------------- /apps/www/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/.prettierignore -------------------------------------------------------------------------------- /apps/www/__registry__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/__registry__/index.tsx -------------------------------------------------------------------------------- /apps/www/app/(app)/docs/[[...slug]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/app/(app)/docs/[[...slug]]/page.tsx -------------------------------------------------------------------------------- /apps/www/app/(app)/docs/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/app/(app)/docs/layout.tsx -------------------------------------------------------------------------------- /apps/www/app/(app)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/app/(app)/layout.tsx -------------------------------------------------------------------------------- /apps/www/app/(app)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/app/(app)/page.tsx -------------------------------------------------------------------------------- /apps/www/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/app/layout.tsx -------------------------------------------------------------------------------- /apps/www/assets/fonts/Inter-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/assets/fonts/Inter-Bold.ttf -------------------------------------------------------------------------------- /apps/www/assets/fonts/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/assets/fonts/Inter-Regular.ttf -------------------------------------------------------------------------------- /apps/www/components/announcement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/announcement.tsx -------------------------------------------------------------------------------- /apps/www/components/callout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/callout.tsx -------------------------------------------------------------------------------- /apps/www/components/code-block-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/code-block-wrapper.tsx -------------------------------------------------------------------------------- /apps/www/components/command-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/command-menu.tsx -------------------------------------------------------------------------------- /apps/www/components/component-example.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/component-example.tsx -------------------------------------------------------------------------------- /apps/www/components/component-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/component-preview.tsx -------------------------------------------------------------------------------- /apps/www/components/component-source.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/component-source.tsx -------------------------------------------------------------------------------- /apps/www/components/copy-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/copy-button.tsx -------------------------------------------------------------------------------- /apps/www/components/framework-docs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/framework-docs.tsx -------------------------------------------------------------------------------- /apps/www/components/google-analytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/google-analytics.tsx -------------------------------------------------------------------------------- /apps/www/components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/icons.tsx -------------------------------------------------------------------------------- /apps/www/components/main-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/main-nav.tsx -------------------------------------------------------------------------------- /apps/www/components/mdx-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/mdx-components.tsx -------------------------------------------------------------------------------- /apps/www/components/mobile-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/mobile-nav.tsx -------------------------------------------------------------------------------- /apps/www/components/mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/mode-toggle.tsx -------------------------------------------------------------------------------- /apps/www/components/page-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/page-header.tsx -------------------------------------------------------------------------------- /apps/www/components/page-marquee.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/page-marquee.tsx -------------------------------------------------------------------------------- /apps/www/components/page-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/page-section.tsx -------------------------------------------------------------------------------- /apps/www/components/pager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/pager.tsx -------------------------------------------------------------------------------- /apps/www/components/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/providers.tsx -------------------------------------------------------------------------------- /apps/www/components/sidebar-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/sidebar-nav.tsx -------------------------------------------------------------------------------- /apps/www/components/site-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/site-footer.tsx -------------------------------------------------------------------------------- /apps/www/components/site-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/site-header.tsx -------------------------------------------------------------------------------- /apps/www/components/style-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/style-wrapper.tsx -------------------------------------------------------------------------------- /apps/www/components/toc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/toc.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/ui/accordion.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/ui/alert.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/ui/badge.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/ui/button.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/ui/command.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/ui/dialog.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/dot-pattern.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/ui/dot-pattern.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/marquee.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/ui/marquee.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/ui/separator.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/ui/sheet.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/ui/tabs.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /apps/www/components/ui/word-rotate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/components/ui/word-rotate.tsx -------------------------------------------------------------------------------- /apps/www/config/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/config/docs.ts -------------------------------------------------------------------------------- /apps/www/config/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/config/site.ts -------------------------------------------------------------------------------- /apps/www/content/docs/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/about.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/changelog.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/changelog.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/cli.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/cli.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks-json.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks-json.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/battery.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/battery.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/binary-search.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/binary-search.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/breadth-first-search.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/breadth-first-search.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/click-away.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/click-away.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/cookies.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/cookies.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/copy-to-clipboard.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/copy-to-clipboard.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/counter.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/counter.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/debounce.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/debounce.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/default.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/default.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/depth-first-search.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/depth-first-search.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/dijkstra.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/dijkstra.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/document-title.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/document-title.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/favicon.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/favicon.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/geolocation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/geolocation.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/graham-scan.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/graham-scan.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/greedy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/greedy.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/history-state.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/history-state.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/hover.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/hover.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/idle.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/idle.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/intersection-observer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/intersection-observer.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/is-client.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/is-client.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/is-first-render.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/is-first-render.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/latest.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/latest.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/list.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/local-storage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/local-storage.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/lock-body-scroll.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/lock-body-scroll.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/long-press.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/long-press.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/map.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/map.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/measure.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/measure.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/media-query.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/media-query.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/merge-sort.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/merge-sort.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/mouse.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/mouse.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/network-state.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/network-state.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/object-state.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/object-state.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/orientation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/orientation.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/preferred-language.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/preferred-language.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/previous.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/previous.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/queue.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/queue.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/quick-sort.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/quick-sort.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/render-count.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/render-count.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/render-info.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/render-info.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/script.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/script.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/session-storage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/session-storage.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/set.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/set.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/throttle.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/throttle.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/toggle.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/toggle.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/unmount.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/unmount.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/visibility-change.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/visibility-change.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/web-socket.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/web-socket.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/window-scroll.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/window-scroll.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/hooks/window-size.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/hooks/window-size.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/index.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/installation/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/installation/index.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/installation/manual.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/installation/manual.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/installation/next.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/installation/next.mdx -------------------------------------------------------------------------------- /apps/www/content/docs/installation/vite.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/content/docs/installation/vite.mdx -------------------------------------------------------------------------------- /apps/www/contentlayer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/contentlayer.config.js -------------------------------------------------------------------------------- /apps/www/hooks/use-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/hooks/use-config.ts -------------------------------------------------------------------------------- /apps/www/hooks/use-mounted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/hooks/use-mounted.ts -------------------------------------------------------------------------------- /apps/www/lib/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/lib/events.ts -------------------------------------------------------------------------------- /apps/www/lib/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/lib/fonts.ts -------------------------------------------------------------------------------- /apps/www/lib/highlight-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/lib/highlight-code.ts -------------------------------------------------------------------------------- /apps/www/lib/rehype-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/lib/rehype-component.ts -------------------------------------------------------------------------------- /apps/www/lib/rehype-npm-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/lib/rehype-npm-command.ts -------------------------------------------------------------------------------- /apps/www/lib/themes/dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/lib/themes/dark.json -------------------------------------------------------------------------------- /apps/www/lib/themes/light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/lib/themes/light.json -------------------------------------------------------------------------------- /apps/www/lib/toc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/lib/toc.ts -------------------------------------------------------------------------------- /apps/www/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/lib/utils.ts -------------------------------------------------------------------------------- /apps/www/lib/validations/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/lib/validations/log.ts -------------------------------------------------------------------------------- /apps/www/lib/validations/og.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/lib/validations/og.ts -------------------------------------------------------------------------------- /apps/www/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/next-env.d.ts -------------------------------------------------------------------------------- /apps/www/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/next.config.mjs -------------------------------------------------------------------------------- /apps/www/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/package.json -------------------------------------------------------------------------------- /apps/www/pages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/www/pages/api/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/www/pages/api/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/pages/api/components.json -------------------------------------------------------------------------------- /apps/www/pages/api/hooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/pages/api/hooks.json -------------------------------------------------------------------------------- /apps/www/pages/api/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/pages/api/hooks.ts -------------------------------------------------------------------------------- /apps/www/postcss.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = require("../../postcss.config.cjs") 2 | -------------------------------------------------------------------------------- /apps/www/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /apps/www/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /apps/www/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/apple-touch-icon.png -------------------------------------------------------------------------------- /apps/www/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/favicon-16x16.png -------------------------------------------------------------------------------- /apps/www/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/favicon-32x32.png -------------------------------------------------------------------------------- /apps/www/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/favicon.ico -------------------------------------------------------------------------------- /apps/www/public/og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/og.jpg -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/index.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/battery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/battery.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/binary-search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/binary-search.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/breadth-first-search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/breadth-first-search.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/click-away.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/click-away.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/cookies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/cookies.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/copy-to-clipboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/copy-to-clipboard.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/counter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/counter.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/debounce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/debounce.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/default.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/depth-first-search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/depth-first-search.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/dijkstra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/dijkstra.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/document-title.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/document-title.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/favicon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/favicon.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/geolocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/geolocation.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/graham-scan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/graham-scan.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/greedy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/greedy.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/history-state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/history-state.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/hover.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/hover.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/idle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/idle.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/intersection-observer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/intersection-observer.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/is-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/is-client.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/is-first-render.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/is-first-render.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/latest.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/list.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/local-storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/local-storage.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/lock-body-scroll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/lock-body-scroll.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/long-press.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/long-press.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/map.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/measure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/measure.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/media-query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/media-query.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/merge-sort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/merge-sort.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/mouse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/mouse.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/network-state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/network-state.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/object-state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/object-state.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/orientation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/orientation.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/preferred-language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/preferred-language.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/previous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/previous.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/queue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/queue.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/quick-sort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/quick-sort.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/render-count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/render-count.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/render-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/render-info.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/script.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/script.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/session-storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/session-storage.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/set.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/throttle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/throttle.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/toggle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/toggle.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/unmount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/unmount.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/visibility-change.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/visibility-change.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/web-socket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/web-socket.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/window-scroll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/window-scroll.json -------------------------------------------------------------------------------- /apps/www/public/registry/codestyles/react-hooks/window-size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/codestyles/react-hooks/window-size.json -------------------------------------------------------------------------------- /apps/www/public/registry/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/registry/index.json -------------------------------------------------------------------------------- /apps/www/public/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/schema.json -------------------------------------------------------------------------------- /apps/www/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/site.webmanifest -------------------------------------------------------------------------------- /apps/www/public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/public/sitemap.xml -------------------------------------------------------------------------------- /apps/www/registry/codestyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/codestyles.ts -------------------------------------------------------------------------------- /apps/www/registry/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/hooks.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/battery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/battery.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/binary-search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/binary-search.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/breadth-first-search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/breadth-first-search.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/click-away.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/click-away.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/cookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/cookies.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/copy-to-clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/copy-to-clipboard.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/counter.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/debounce.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/default.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/depth-first-search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/depth-first-search.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/dijkstra.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/dijkstra.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/document-title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/document-title.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/favicon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/favicon.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/geolocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/geolocation.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/graham-scan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/graham-scan.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/greedy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/greedy.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/history-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/history-state.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/hover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/hover.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/idle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/idle.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/intersection-observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/intersection-observer.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/is-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/is-client.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/is-first-render.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/is-first-render.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/latest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/latest.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/list.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/local-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/local-storage.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/lock-body-scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/lock-body-scroll.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/long-press.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/long-press.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/map.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/measure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/measure.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/media-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/media-query.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/memoized-fn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/memoized-fn.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/merge-sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/merge-sort.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/mouse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/mouse.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/network-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/network-state.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/object-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/object-state.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/orientation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/orientation.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/preferred-language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/preferred-language.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/previous.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/previous.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/queue.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/quick-sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/quick-sort.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/render-count.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/render-count.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/render-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/render-info.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/script.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/session-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/session-storage.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/set.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/throttle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/throttle.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/toggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/toggle.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/unmount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/unmount.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/visibility-change.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/visibility-change.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/web-socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/web-socket.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/window-scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/window-scroll.ts -------------------------------------------------------------------------------- /apps/www/registry/react-hooks/hook/window-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/react-hooks/hook/window-size.ts -------------------------------------------------------------------------------- /apps/www/registry/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/registry.ts -------------------------------------------------------------------------------- /apps/www/registry/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/registry/schema.ts -------------------------------------------------------------------------------- /apps/www/scripts/build-registry.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/scripts/build-registry.mts -------------------------------------------------------------------------------- /apps/www/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/styles/globals.css -------------------------------------------------------------------------------- /apps/www/styles/mdx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/styles/mdx.css -------------------------------------------------------------------------------- /apps/www/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/tailwind.config.cjs -------------------------------------------------------------------------------- /apps/www/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/tsconfig.json -------------------------------------------------------------------------------- /apps/www/tsconfig.scripts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/tsconfig.scripts.json -------------------------------------------------------------------------------- /apps/www/types/nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/types/nav.ts -------------------------------------------------------------------------------- /apps/www/types/unist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/apps/www/types/unist.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/package.json -------------------------------------------------------------------------------- /packages/cli/.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/packages/cli/.changeset/README.md -------------------------------------------------------------------------------- /packages/cli/.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/packages/cli/.changeset/config.json -------------------------------------------------------------------------------- /packages/cli/.changeset/curly-impalas-repair.md: -------------------------------------------------------------------------------- 1 | --- 2 | "scriptkavi-hooks": patch 3 | --- 4 | 5 | Fixed vite config file 6 | -------------------------------------------------------------------------------- /packages/cli/.changeset/strong-trees-play.md: -------------------------------------------------------------------------------- 1 | --- 2 | "scriptkavi-hooks": patch 3 | --- 4 | 5 | Minor updates 6 | -------------------------------------------------------------------------------- /packages/cli/.gitignore: -------------------------------------------------------------------------------- 1 | components 2 | dist 3 | .turbo -------------------------------------------------------------------------------- /packages/cli/.prettierignore: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /packages/cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/packages/cli/CHANGELOG.md -------------------------------------------------------------------------------- /packages/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/packages/cli/README.md -------------------------------------------------------------------------------- /packages/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/packages/cli/package.json -------------------------------------------------------------------------------- /packages/cli/src/commands/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/packages/cli/src/commands/add.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/packages/cli/src/commands/diff.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/packages/cli/src/commands/init.ts -------------------------------------------------------------------------------- /packages/cli/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/packages/cli/src/index.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/get-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/packages/cli/src/utils/get-config.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/get-package-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/packages/cli/src/utils/get-package-info.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/get-package-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/packages/cli/src/utils/get-package-manager.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/get-project-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/packages/cli/src/utils/get-project-info.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/handle-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/packages/cli/src/utils/handle-error.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/packages/cli/src/utils/logger.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/registry/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/packages/cli/src/utils/registry/index.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/registry/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/packages/cli/src/utils/registry/schema.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/resolve-import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/packages/cli/src/utils/resolve-import.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/transformers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/packages/cli/src/utils/transformers/index.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/transformers/transform-import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/packages/cli/src/utils/transformers/transform-import.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/transformers/transform-jsx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/packages/cli/src/utils/transformers/transform-jsx.ts -------------------------------------------------------------------------------- /packages/cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/packages/cli/tsconfig.json -------------------------------------------------------------------------------- /packages/cli/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/packages/cli/tsup.config.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/prettier.config.cjs -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptkavi/hooks/HEAD/turbo.json --------------------------------------------------------------------------------