add func renderHeaderColumn
parents
Showing
.gitignore
0 → 100644
.npmignore
0 → 100644
HISTORY.MD
0 → 100644
LICENSE
0 → 100644
assets/styles.scss
0 → 100644
examples/basic.html
0 → 100644
examples/basic.js
0 → 100644
examples/drag.html
0 → 100644
examples/drag.js
0 → 100644
package.json
0 → 100644
| { | ||
| "name": "react-finder", | ||
| "version": "0.2.1", | ||
| "description": "", | ||
| "main": "./lib/index", | ||
| "module": "./es/index", | ||
| "homepage": "https://github.com/Frezc/react-finder", | ||
| "scripts": { | ||
| "build": "rclib-tools run build", | ||
| "compile": "rclib-tools run compile --babel-runtime", | ||
| "gh-pages": "rclib-tools run gh-pages", | ||
| "start": "rclib-tools run server", | ||
| "pub": "npm run lint:fix && rclib-tools run pub --babel-runtime", | ||
| "lint": "rclib-tools run lint", | ||
| "lint:fix": "rclib-tools run lint --fix", | ||
| "test": "jest", | ||
| "coverage": "jest --coverage", | ||
| "pub-d": "npm run lint:fix && rclib-tools run publish --babel-runtime", | ||
| "precommit": "npm run lint:fix", | ||
| "prepublishOnly": "rclib-tools run guard", | ||
| "coverage:upload": "jest --coverage && cat ./coverage/lcov.info | coveralls", | ||
| "clean": "rclib-tools run clean", | ||
| "init": "rclib-tools run init", | ||
| "update-snapshot": "jest -u", | ||
| "preinstall": "npx npm-force-resolutions" | ||
| }, | ||
| "keywords": [], | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "git@github.com:Frezc/react-finder.git" | ||
| }, | ||
| "bugs": { | ||
| "url": "http://github.com/Frezc/react-finder/issues" | ||
| }, | ||
| "files": [ | ||
| "assets/*.css", | ||
| "assets/*.png", | ||
| "assets/*.gif", | ||
| "dist", | ||
| "es", | ||
| "lib" | ||
| ], | ||
| "author": "frezc", | ||
| "license": "MIT", | ||
| "config": { | ||
| "port": 8000 | ||
| }, | ||
| "devDependencies": { | ||
| "enzyme": "^3.1.0", | ||
| "enzyme-adapter-react-15": "^1.0.2", | ||
| "enzyme-to-json": "^3.1.4", | ||
| "jest": "^21.2.0", | ||
| "pre-commit": "1.x", | ||
| "rclib-tools": "^0.1.13", | ||
| "react-dom": "^15.6.1" | ||
| }, | ||
| "dependencies": { | ||
| "lodash": "^4.17.4", | ||
| "prop-types": "^15.5.10", | ||
| "react": "^15.6.1", | ||
| "react-sortable-hoc": "^0.6.7" | ||
| }, | ||
| "pre-commit": [ | ||
| "lint" | ||
| ], | ||
| "jest": { | ||
| "setupFiles": [ | ||
| "./tests/setup.js" | ||
| ], | ||
| "collectCoverageFrom": [ | ||
| "src/**/*" | ||
| ], | ||
| "transform": { | ||
| "\\.tsx?$": "./node_modules/rclib-tools/scripts/jestPreprocessor.js", | ||
| "\\.jsx?$": "./node_modules/rclib-tools/scripts/jestPreprocessor.js" | ||
| }, | ||
| "snapshotSerializers": [ | ||
| "enzyme-to-json/serializer" | ||
| ], | ||
| "moduleNameMapper": { | ||
| "^.+\\.(css|less|scss)$": "babel-jest" | ||
| } | ||
| }, | ||
| "lib-tools-config": { | ||
| "disable_update": true | ||
| }, | ||
| "resolutions": { | ||
| "graceful-fs": "^4.2.4" | ||
| } | ||
| } |
readme.md
0 → 100644
src/FinderColumn.js
0 → 100644
src/FinderColumnHeader.js
0 → 100644
src/FinderItem.js
0 → 100644
src/ReactFinder.js
0 → 100644
src/index.js
0 → 100644
src/utils.js
0 → 100644
tests/ReactFinder.spec.js
0 → 100644
tests/__snapshots__/ReactFinder.spec.js.snap
0 → 100644
tests/setup.js
0 → 100644
yarn.lock
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
Please
register
or
sign in
to comment