{"id":24073031,"url":"https://github.com/react-sandbox/tooltip","last_synced_at":"2026-04-28T16:39:40.780Z","repository":{"id":178225684,"uuid":"646339204","full_name":"react-sandbox/tooltip","owner":"react-sandbox","description":"💬 Lightweight text tooltip","archived":false,"fork":false,"pushed_at":"2024-01-15T22:03:14.000Z","size":1239,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-21T16:02:59.747Z","etag":null,"topics":["component","react","react-tooltip","tooltip","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/react-sandbox.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-05-28T04:19:15.000Z","updated_at":"2024-03-14T00:55:18.000Z","dependencies_parsed_at":"2024-01-15T23:28:48.878Z","dependency_job_id":"290b8a95-d02d-4359-8b06-3a30378df456","html_url":"https://github.com/react-sandbox/tooltip","commit_stats":null,"previous_names":["react-sandbox/tooltip"],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/react-sandbox/tooltip","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/react-sandbox%2Ftooltip","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/react-sandbox%2Ftooltip/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/react-sandbox%2Ftooltip/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/react-sandbox%2Ftooltip/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/react-sandbox","download_url":"https://codeload.github.com/react-sandbox/tooltip/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/react-sandbox%2Ftooltip/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32390053,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T14:34:11.604Z","status":"ssl_error","status_checked_at":"2026-04-28T14:32:37.009Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["component","react","react-tooltip","tooltip","typescript"],"created_at":"2025-01-09T17:25:38.420Z","updated_at":"2026-04-28T16:39:40.759Z","avatar_url":"https://github.com/react-sandbox.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e\n  \u003ca href=\"https://www.npmjs.com/package/@react-sandbox/tooltip\"\u003e@react-sandbox/tooltip\u003c/a\u003e\n\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://img.shields.io/github/actions/workflow/status/react-sandbox/tooltip/node.js.yml\" alt=\"Build status\" /\u003e\n  \u003cimg src=\"https://img.shields.io/badge/dependencies-0-brightgreen\" alt=\"Dependencies\" /\u003e\n  \u003cimg src=\"https://img.shields.io/bundlephobia/minzip/@react-sandbox/tooltip?color=%234ba0f6\" alt=\"Build size\" /\u003e\n  \u003cimg src=\"https://img.shields.io/npm/dt/@react-sandbox/tooltip?color=%234ba0f6\" alt=\"Package downloads\" /\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"example.gif\" alt=\"Example\" /\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e💬 Lightweight, customizable tooltip component.\u003c/p\u003e\n\n## Usage\n\n### Install\n\nInstall the `@react-sandbox/tooltip` package:\n\n```\nnpm install @react-sandbox/tooltip\n```\n\n### Import\n\nImport the `Tooltip` component:\n\n```tsx\nimport React from 'react'\nimport Tooltip from '@react-sandbox/tooltip'\n\nfunction App() {\n  return (\n    \u003cTooltip title=\"Download ✅\"\u003e\n      \u003cbutton\u003eSave\u003c/button\u003e\n    \u003c/Tooltip\u003e\n  )\n}\n```\n\n### Props\n\n| Prop        | Type                                                  | Default      | Description              |\n| ----------- | ----------------------------------------------------- | ------------ | ------------------------ |\n| `title`     | `string`                                              | **required** | Text content             |\n| `position`  | `'top' \\| 'bottom' \\| 'left' \\| 'right'`              | `'top'`      | Position of tooltip      |\n| `delay`     | `0 \\| 100 \\| 200 \\| 300 \\| 400 \\| 500 \\| 750 \\| 1000` | `200`        | Initial transition delay |\n| `disabled`  | `boolean`                                             | `false`      | Visible or not           |\n| `className` | `string`                                              | `-`          | CSS classes              |\n| `style`     | `React.CSSProperties`                                 | `-`          | CSS styles               |\n\n## Development\n\n### Local\n\n```\nyarn\nyarn dev\n```\n\n### Storybook\n\n```\nyarn storybook\n```\n\n### Tests\n\n```\nyarn test\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freact-sandbox%2Ftooltip","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freact-sandbox%2Ftooltip","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freact-sandbox%2Ftooltip/lists"}