{"id":15663610,"url":"https://github.com/transitive-bullshit/react-docgen-props-table","last_synced_at":"2025-07-30T13:18:07.164Z","repository":{"id":34441190,"uuid":"179094361","full_name":"transitive-bullshit/react-docgen-props-table","owner":"transitive-bullshit","description":"Beautiful Props Table for React Docgen.","archived":false,"fork":false,"pushed_at":"2022-12-09T18:06:25.000Z","size":1881,"stargazers_count":17,"open_issues_count":37,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-07-03T19:06:52.431Z","etag":null,"topics":["react","react-component","react-docgen"],"latest_commit_sha":null,"homepage":"https://transitive-bullshit.github.io/react-docgen-props-table/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/transitive-bullshit.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-04-02T14:21:33.000Z","updated_at":"2023-02-11T03:58:42.000Z","dependencies_parsed_at":"2023-01-15T07:15:30.777Z","dependency_job_id":null,"html_url":"https://github.com/transitive-bullshit/react-docgen-props-table","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/transitive-bullshit/react-docgen-props-table","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/transitive-bullshit%2Freact-docgen-props-table","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/transitive-bullshit%2Freact-docgen-props-table/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/transitive-bullshit%2Freact-docgen-props-table/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/transitive-bullshit%2Freact-docgen-props-table/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/transitive-bullshit","download_url":"https://codeload.github.com/transitive-bullshit/react-docgen-props-table/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/transitive-bullshit%2Freact-docgen-props-table/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267874524,"owners_count":24158765,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-30T02:00:09.044Z","response_time":70,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["react","react-component","react-docgen"],"created_at":"2024-10-03T13:38:53.523Z","updated_at":"2025-07-30T13:18:06.841Z","avatar_url":"https://github.com/transitive-bullshit.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# react-docgen-props-table ([demo](https://transitive-bullshit.github.io/react-docgen-props-table/))\n\n\u003e Beautiful Props Table for React Docgen.\n\n[![NPM](https://img.shields.io/npm/v/react-docgen-props-table.svg)](https://www.npmjs.com/package/react-docgen-props-table) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)\n\n\u003cp align=\"center\"\u003e\n  \u003cimg alt=\"Example\" src=\"https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/master/example.png\"\u003e\n\u003c/p\u003e\n\nThis is a standalone version of the (now deprecated) `PropsTable` component from [Docz](https://github.com/pedronauck/docz).\n\n## Install\n\n```bash\nnpm install --save react-docgen-props-table\n```\n\n## Usage\n\n```jsx\nimport React, { Component } from 'react'\n\nimport PropsTable from 'react-docgen-props-table'\n\n// this was generated via react-docgen\nconst docgenInfo = {\n  \"description\": \"General component description.\",\n  \"displayName\": \"MyComponent\",\n  \"methods\": [],\n  \"props\": {\n    \"foo\": {\n      \"type\": {\n        \"name\": \"number\"\n      },\n      \"required\": true,\n      \"description\": \"Description foo.\"\n    },\n    \"bar\": {\n      \"type\": {\n        \"name\": \"string\"\n      },\n      \"required\": false,\n      \"description\": \"Description bar.\\n\\n- markdown list-item 1\\n- markdown list-item 2\",\n      \"defaultValue\": {\n        \"value\": \"'bar'\",\n        \"computed\": false\n      }\n    },\n    \"baz\": {\n      \"type\": {\n        \"name\": \"bool\"\n      },\n      \"required\": false,\n      \"description\": \"Description baz.\"\n    }\n  }\n}\n\nclass Example extends Component {\n  render () {\n    return (\n      \u003cPropsTable props={docgenInfo.props} /\u003e\n    )\n  }\n}\n```\n\n## Examples\n\nCheck out the [demo](https://transitive-bullshit.github.io/react-docgen-props-table/) for live examples.\n\n## License\n\nCredit goes to [Pedro Nauck](https://github.com/pedronauck) and [docz](https://github.com/pedronauck/docz) for the initial implementation.\n\nMIT © [transitive-bullshit](https://transitivebullsh.it)\n\nSupport my OSS work by \u003ca href=\"https://twitter.com/transitive_bs\"\u003efollowing me on twitter \u003cimg src=\"https://storage.googleapis.com/saasify-assets/twitter-logo.svg\" alt=\"twitter\" height=\"24px\" align=\"center\"\u003e\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftransitive-bullshit%2Freact-docgen-props-table","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftransitive-bullshit%2Freact-docgen-props-table","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftransitive-bullshit%2Freact-docgen-props-table/lists"}