├── .babelrc ├── .coveralls.yml ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── playground ├── app │ ├── App.js │ ├── conf │ │ ├── embedded.js │ │ ├── index.js │ │ ├── issue.59.js │ │ └── simpleSum.js │ └── index.js ├── index.html └── index.prod.html ├── src ├── actions │ ├── index.js │ ├── remove.js │ ├── require.js │ ├── uiAppend.js │ ├── uiOverride.js │ ├── uiReplace.js │ └── validateAction.js ├── applyRules.js ├── index.js ├── rulesRunner.js └── utils.js ├── test ├── .eslintrc ├── actions │ ├── remove.fromArray.test.js │ ├── remove.nested.test.js │ ├── remove.test.js │ ├── require.nested.test.js │ ├── require.test.js │ ├── uiAppend.test.js │ ├── uiAppend │ │ ├── nested │ │ │ ├── rules.json │ │ │ ├── schema.json │ │ │ └── uiSchema.json │ │ └── uiAppend.nested.test.js │ ├── uiOverride.test.js │ ├── uiReplace.test.js │ ├── validateAction.nested.test.js │ ├── validateAction.test.js │ ├── validateField.test.js │ └── validation.test.js ├── applyRules.render.test.js ├── applyRules.test.js ├── applyRules.validation.test.js ├── calculatedField.test.js ├── issues │ ├── 34.test.js │ ├── 35.test.js │ ├── 38.test.js │ ├── 43.test.js │ ├── 44.test.js │ ├── 46.test.js │ ├── 47.test.js │ ├── 53.test.js │ ├── 59.test.js │ └── 61.test.js ├── rulesRuneer.test.js ├── runRules.normRules.test.js ├── utils.findRelUiSchema.test.js ├── utils.js └── utils.test.js ├── webpack.config.dist.js ├── webpack.config.js ├── webpack.config.prod.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/.babelrc -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: apkhWgDS9UbAI8V6ibKL9JmZEsgBzU6nC -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/package.json -------------------------------------------------------------------------------- /playground/app/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/playground/app/App.js -------------------------------------------------------------------------------- /playground/app/conf/embedded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/playground/app/conf/embedded.js -------------------------------------------------------------------------------- /playground/app/conf/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/playground/app/conf/index.js -------------------------------------------------------------------------------- /playground/app/conf/issue.59.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/playground/app/conf/issue.59.js -------------------------------------------------------------------------------- /playground/app/conf/simpleSum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/playground/app/conf/simpleSum.js -------------------------------------------------------------------------------- /playground/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/playground/app/index.js -------------------------------------------------------------------------------- /playground/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/playground/index.html -------------------------------------------------------------------------------- /playground/index.prod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/playground/index.prod.html -------------------------------------------------------------------------------- /src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/src/actions/index.js -------------------------------------------------------------------------------- /src/actions/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/src/actions/remove.js -------------------------------------------------------------------------------- /src/actions/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/src/actions/require.js -------------------------------------------------------------------------------- /src/actions/uiAppend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/src/actions/uiAppend.js -------------------------------------------------------------------------------- /src/actions/uiOverride.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/src/actions/uiOverride.js -------------------------------------------------------------------------------- /src/actions/uiReplace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/src/actions/uiReplace.js -------------------------------------------------------------------------------- /src/actions/validateAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/src/actions/validateAction.js -------------------------------------------------------------------------------- /src/applyRules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/src/applyRules.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/src/index.js -------------------------------------------------------------------------------- /src/rulesRunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/src/rulesRunner.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/src/utils.js -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/actions/remove.fromArray.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/actions/remove.fromArray.test.js -------------------------------------------------------------------------------- /test/actions/remove.nested.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/actions/remove.nested.test.js -------------------------------------------------------------------------------- /test/actions/remove.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/actions/remove.test.js -------------------------------------------------------------------------------- /test/actions/require.nested.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/actions/require.nested.test.js -------------------------------------------------------------------------------- /test/actions/require.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/actions/require.test.js -------------------------------------------------------------------------------- /test/actions/uiAppend.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/actions/uiAppend.test.js -------------------------------------------------------------------------------- /test/actions/uiAppend/nested/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/actions/uiAppend/nested/rules.json -------------------------------------------------------------------------------- /test/actions/uiAppend/nested/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/actions/uiAppend/nested/schema.json -------------------------------------------------------------------------------- /test/actions/uiAppend/nested/uiSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/actions/uiAppend/nested/uiSchema.json -------------------------------------------------------------------------------- /test/actions/uiAppend/uiAppend.nested.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/actions/uiAppend/uiAppend.nested.test.js -------------------------------------------------------------------------------- /test/actions/uiOverride.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/actions/uiOverride.test.js -------------------------------------------------------------------------------- /test/actions/uiReplace.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/actions/uiReplace.test.js -------------------------------------------------------------------------------- /test/actions/validateAction.nested.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/actions/validateAction.nested.test.js -------------------------------------------------------------------------------- /test/actions/validateAction.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/actions/validateAction.test.js -------------------------------------------------------------------------------- /test/actions/validateField.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/actions/validateField.test.js -------------------------------------------------------------------------------- /test/actions/validation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/actions/validation.test.js -------------------------------------------------------------------------------- /test/applyRules.render.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/applyRules.render.test.js -------------------------------------------------------------------------------- /test/applyRules.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/applyRules.test.js -------------------------------------------------------------------------------- /test/applyRules.validation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/applyRules.validation.test.js -------------------------------------------------------------------------------- /test/calculatedField.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/calculatedField.test.js -------------------------------------------------------------------------------- /test/issues/34.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/issues/34.test.js -------------------------------------------------------------------------------- /test/issues/35.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/issues/35.test.js -------------------------------------------------------------------------------- /test/issues/38.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/issues/38.test.js -------------------------------------------------------------------------------- /test/issues/43.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/issues/43.test.js -------------------------------------------------------------------------------- /test/issues/44.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/issues/44.test.js -------------------------------------------------------------------------------- /test/issues/46.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/issues/46.test.js -------------------------------------------------------------------------------- /test/issues/47.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/issues/47.test.js -------------------------------------------------------------------------------- /test/issues/53.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/issues/53.test.js -------------------------------------------------------------------------------- /test/issues/59.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/issues/59.test.js -------------------------------------------------------------------------------- /test/issues/61.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/issues/61.test.js -------------------------------------------------------------------------------- /test/rulesRuneer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/rulesRuneer.test.js -------------------------------------------------------------------------------- /test/runRules.normRules.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/runRules.normRules.test.js -------------------------------------------------------------------------------- /test/utils.findRelUiSchema.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/utils.findRelUiSchema.test.js -------------------------------------------------------------------------------- /test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/utils.js -------------------------------------------------------------------------------- /test/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/test/utils.test.js -------------------------------------------------------------------------------- /webpack.config.dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/webpack.config.dist.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/webpack.config.prod.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RXNT/react-jsonschema-form-conditionals/HEAD/yarn.lock --------------------------------------------------------------------------------