├── .babelrc ├── .eslintignore ├── .eslintrc ├── .flowconfig ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .prettierrc ├── .travis.yml ├── LICENSE ├── README.md ├── package-scripts.js ├── package.json ├── rollup.config.js └── src ├── index.js ├── index.js.flow ├── setFieldTouched.js └── setFieldTouched.test.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-set-field-touched/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | dist 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-set-field-touched/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-set-field-touched/HEAD/.flowconfig -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-set-field-touched/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-set-field-touched/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-set-field-touched/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-set-field-touched/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-set-field-touched/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-set-field-touched/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | semi: false 2 | singleQuote: true 3 | trailingComma: none 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-set-field-touched/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-set-field-touched/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-set-field-touched/HEAD/README.md -------------------------------------------------------------------------------- /package-scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-set-field-touched/HEAD/package-scripts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-set-field-touched/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-set-field-touched/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | export { default } from './setFieldTouched' 3 | -------------------------------------------------------------------------------- /src/index.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-set-field-touched/HEAD/src/index.js.flow -------------------------------------------------------------------------------- /src/setFieldTouched.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-set-field-touched/HEAD/src/setFieldTouched.js -------------------------------------------------------------------------------- /src/setFieldTouched.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/final-form-set-field-touched/HEAD/src/setFieldTouched.test.js --------------------------------------------------------------------------------