{"id":13422205,"url":"https://github.com/twisty/formsy-react-components","last_synced_at":"2026-02-19T09:05:43.112Z","repository":{"id":31225433,"uuid":"34786581","full_name":"twisty/formsy-react-components","owner":"twisty","description":"Bootstrap components for a formsy-react form.","archived":false,"fork":false,"pushed_at":"2023-01-07T03:26:59.000Z","size":4653,"stargazers_count":287,"open_issues_count":18,"forks_count":92,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-01-22T09:51:33.735Z","etag":null,"topics":["bootstrap","form-controls","javascript","react-component","react-components"],"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/twisty.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-04-29T10:04:39.000Z","updated_at":"2025-01-16T18:11:44.000Z","dependencies_parsed_at":"2023-01-14T18:35:36.656Z","dependency_job_id":null,"html_url":"https://github.com/twisty/formsy-react-components","commit_stats":null,"previous_names":[],"tags_count":51,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/twisty%2Fformsy-react-components","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/twisty%2Fformsy-react-components/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/twisty%2Fformsy-react-components/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/twisty%2Fformsy-react-components/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/twisty","download_url":"https://codeload.github.com/twisty/formsy-react-components/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243724939,"owners_count":20337653,"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","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":["bootstrap","form-controls","javascript","react-component","react-components"],"created_at":"2024-07-30T23:00:39.109Z","updated_at":"2025-10-22T18:09:14.246Z","avatar_url":"https://github.com/twisty.png","language":"TypeScript","readme":"# formsy-react-components\n\n[![Build Status](https://travis-ci.org/twisty/formsy-react-components.svg?branch=bootstrap-4-dev)](https://travis-ci.org/twisty/formsy-react-components)\n[![npm version](https://badge.fury.io/js/formsy-react-components.svg)](https://badge.fury.io/js/formsy-react-components)\n[![GitHub release](https://img.shields.io/github/release/twisty/formsy-react-components.svg)](https://github.com/twisty/formsy-react-components/releases)\n[![GitHub contributors](https://img.shields.io/github/contributors/twisty/formsy-react-components.svg)](https://github.com/twisty/formsy-react-components/contributors)\n\n**Note:** The work here on the [`master`](https://github.com/twisty/formsy-react-components/tree/master) branch is for upcoming release that supports Bootstrap 4. The source for current (1.x) releases can be found on the [`release-1.x`](https://github.com/twisty/formsy-react-components/tree/release-1.x) branch.\n\n---\n\n`formsy-react-components` is a selection of React components that render form elements for use in a [formsy-react](https://github.com/formsy/formsy-react) form.\n\nThe components render markup to be quickly included in a [Bootstrap 4 form](https://getbootstrap.com/docs/4.3/components/forms/). This includes a `\u003clabel\u003e`, [help text](https://getbootstrap.com/docs/4.3/components/forms/#help-text), and some [validation styling](https://getbootstrap.com/docs/4.3/components/forms/#validation) tied to formsy’s validation state and validation messages.\n\n## Install\n\nTo install using `yarn`:\n\n```\nyarn add formsy-react\nyarn add formsy-react-components@next\n```\n\nTo install using `npm`:\n\n```\nnpm install --save formsy-react\nnpm install --save formsy-react-components@next\n```\n\n## Browser Support\n\nThis should run on browsers where both [Bootstrap](https://getbootstrap.com/docs/4.3/getting-started/browsers-devices/#supported-browsers) and [React](https://facebook.github.io/react/docs/react-dom.html#browser-support) are supported.\n\n* *Internet Explorer:* polyfills for [Set](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) and [Array.from](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/from?v=example#Polyfill) are required.\n\n## Usage\n\n```jsx\nimport { Form, Input } from 'formsy-react-components';\n\nconst MyForm = (props) =\u003e {\n  return (\n    \u003cForm onSubmit={(data) =\u003e { console.log(data) }}\u003e\n      \u003cInput\n        name=\"firstname\"\n        label=\"What is your first name?\"\n      /\u003e\n    \u003c/Form\u003e\n  )\n}\n```\n\n## Examples\n\n* See [examples](./examples/) for a overview on usage.\n\n## Documentation\n\nDocumentation is a work in progress!\n\n* For a working code example, visit the [Playground](http://twisty.github.io/formsy-react-components/playground/), then examine the [source](https://github.com/twisty/formsy-react-components/tree/master/examples/playground).\n* There is some information in [/docs](https://github.com/twisty/formsy-react-components/tree/master/docs).\n","funding_links":[],"categories":["UI Components","Uncategorized","Demos","\u003csummary\u003eUI Components\u003c/summary\u003e","TypeScript"],"sub_categories":["Form Components","Uncategorized"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftwisty%2Fformsy-react-components","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftwisty%2Fformsy-react-components","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftwisty%2Fformsy-react-components/lists"}