├── .flowconfig ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── data └── allCamel.json ├── package.json ├── scripts ├── genFlow.js └── scrape.js ├── src ├── Style.flow.js ├── Style.js ├── __test__ │ └── index.test.js ├── css-properties.js └── index.js ├── test ├── flow-not-ok.js └── flow-ok.js └── yarn.lock /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/react-style-proptype/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/react-style-proptype/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/react-style-proptype/HEAD/README.md -------------------------------------------------------------------------------- /data/allCamel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/react-style-proptype/HEAD/data/allCamel.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/react-style-proptype/HEAD/package.json -------------------------------------------------------------------------------- /scripts/genFlow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/react-style-proptype/HEAD/scripts/genFlow.js -------------------------------------------------------------------------------- /scripts/scrape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/react-style-proptype/HEAD/scripts/scrape.js -------------------------------------------------------------------------------- /src/Style.flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/react-style-proptype/HEAD/src/Style.flow.js -------------------------------------------------------------------------------- /src/Style.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/__test__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/react-style-proptype/HEAD/src/__test__/index.test.js -------------------------------------------------------------------------------- /src/css-properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/react-style-proptype/HEAD/src/css-properties.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/react-style-proptype/HEAD/src/index.js -------------------------------------------------------------------------------- /test/flow-not-ok.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/react-style-proptype/HEAD/test/flow-not-ok.js -------------------------------------------------------------------------------- /test/flow-ok.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/react-style-proptype/HEAD/test/flow-ok.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/react-style-proptype/HEAD/yarn.lock --------------------------------------------------------------------------------