├── .babelrc ├── .editorconfig ├── .eslintrc ├── .gitignore ├── example.png ├── example ├── README.md ├── package.json ├── public │ ├── index.html │ └── manifest.json ├── src │ ├── App.js │ ├── a.json │ ├── b.json │ ├── c.json │ ├── d.json │ ├── e.json │ ├── f.json │ ├── index.css │ ├── index.js │ └── ribbon.png └── yarn.lock ├── package.json ├── readme.md ├── rollup.config.js ├── src ├── .eslintrc ├── PropsTable.js ├── components │ ├── Table.js │ ├── Tooltip.js │ └── styles.css ├── get-prop-type.js ├── humanize-prop.js ├── index.js └── test.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/.gitignore -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/example.png -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/example/README.md -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/example/package.json -------------------------------------------------------------------------------- /example/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/example/public/index.html -------------------------------------------------------------------------------- /example/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/example/public/manifest.json -------------------------------------------------------------------------------- /example/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/example/src/App.js -------------------------------------------------------------------------------- /example/src/a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/example/src/a.json -------------------------------------------------------------------------------- /example/src/b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/example/src/b.json -------------------------------------------------------------------------------- /example/src/c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/example/src/c.json -------------------------------------------------------------------------------- /example/src/d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/example/src/d.json -------------------------------------------------------------------------------- /example/src/e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/example/src/e.json -------------------------------------------------------------------------------- /example/src/f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/example/src/f.json -------------------------------------------------------------------------------- /example/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/example/src/index.css -------------------------------------------------------------------------------- /example/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/example/src/index.js -------------------------------------------------------------------------------- /example/src/ribbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/example/src/ribbon.png -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/readme.md -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/src/.eslintrc -------------------------------------------------------------------------------- /src/PropsTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/src/PropsTable.js -------------------------------------------------------------------------------- /src/components/Table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/src/components/Table.js -------------------------------------------------------------------------------- /src/components/Tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/src/components/Tooltip.js -------------------------------------------------------------------------------- /src/components/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/src/components/styles.css -------------------------------------------------------------------------------- /src/get-prop-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/src/get-prop-type.js -------------------------------------------------------------------------------- /src/humanize-prop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/src/humanize-prop.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/src/index.js -------------------------------------------------------------------------------- /src/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/src/test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transitive-bullshit/react-docgen-props-table/HEAD/yarn.lock --------------------------------------------------------------------------------