├── .gitignore ├── .jscsrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bower.json ├── dist ├── angular-schema-form-material-bundled.js ├── angular-schema-form-material-bundled.min.js ├── angular-schema-form-material.js └── angular-schema-form-material.min.js ├── examples ├── data │ ├── array.json │ ├── autocomplete.json │ ├── complex-keys.json │ ├── conditional-required.json │ ├── grid.json │ ├── remote-titlemap-books.json │ ├── remote-titlemap-movies.json │ ├── simple-oneOf.json │ ├── simple.json │ ├── sink.json │ ├── switch.json │ ├── tabarray.json │ ├── tabs.json │ ├── titlemaps.json │ └── types.json └── example.html ├── gulpfile.js ├── material-decorator.js ├── material-decorator.min.js ├── package.json ├── src ├── material-class.js ├── material-decorator.js ├── material │ ├── actions-trcl.html │ ├── actions.html │ ├── array.html │ ├── autocomplete.html │ ├── card-content.html │ ├── card.html │ ├── checkbox.html │ ├── checkboxes.html │ ├── chips.html │ ├── date.html │ ├── default.html │ ├── fieldset-trcl.html │ ├── fieldset.html │ ├── help.html │ ├── radio-buttons.html │ ├── radios-inline.html │ ├── radios.html │ ├── section.html │ ├── select.html │ ├── slider.html │ ├── submit.html │ ├── switch.html │ ├── tabarray.html │ ├── tabs.html │ └── textarea.html ├── module.js └── type-parser.js ├── test └── protractor │ ├── conf.js │ └── specs │ ├── validation-messages.js │ └── validation-tv4-errors.js ├── webpack.config.dist.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/.gitignore -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/.jscsrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/bower.json -------------------------------------------------------------------------------- /dist/angular-schema-form-material-bundled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/dist/angular-schema-form-material-bundled.js -------------------------------------------------------------------------------- /dist/angular-schema-form-material-bundled.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/dist/angular-schema-form-material-bundled.min.js -------------------------------------------------------------------------------- /dist/angular-schema-form-material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/dist/angular-schema-form-material.js -------------------------------------------------------------------------------- /dist/angular-schema-form-material.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/dist/angular-schema-form-material.min.js -------------------------------------------------------------------------------- /examples/data/array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/examples/data/array.json -------------------------------------------------------------------------------- /examples/data/autocomplete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/examples/data/autocomplete.json -------------------------------------------------------------------------------- /examples/data/complex-keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/examples/data/complex-keys.json -------------------------------------------------------------------------------- /examples/data/conditional-required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/examples/data/conditional-required.json -------------------------------------------------------------------------------- /examples/data/grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/examples/data/grid.json -------------------------------------------------------------------------------- /examples/data/remote-titlemap-books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/examples/data/remote-titlemap-books.json -------------------------------------------------------------------------------- /examples/data/remote-titlemap-movies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/examples/data/remote-titlemap-movies.json -------------------------------------------------------------------------------- /examples/data/simple-oneOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/examples/data/simple-oneOf.json -------------------------------------------------------------------------------- /examples/data/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/examples/data/simple.json -------------------------------------------------------------------------------- /examples/data/sink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/examples/data/sink.json -------------------------------------------------------------------------------- /examples/data/switch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/examples/data/switch.json -------------------------------------------------------------------------------- /examples/data/tabarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/examples/data/tabarray.json -------------------------------------------------------------------------------- /examples/data/tabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/examples/data/tabs.json -------------------------------------------------------------------------------- /examples/data/titlemaps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/examples/data/titlemaps.json -------------------------------------------------------------------------------- /examples/data/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/examples/data/types.json -------------------------------------------------------------------------------- /examples/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/examples/example.html -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/gulpfile.js -------------------------------------------------------------------------------- /material-decorator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/material-decorator.js -------------------------------------------------------------------------------- /material-decorator.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/material-decorator.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/package.json -------------------------------------------------------------------------------- /src/material-class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material-class.js -------------------------------------------------------------------------------- /src/material-decorator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material-decorator.js -------------------------------------------------------------------------------- /src/material/actions-trcl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material/actions-trcl.html -------------------------------------------------------------------------------- /src/material/actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material/actions.html -------------------------------------------------------------------------------- /src/material/array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material/array.html -------------------------------------------------------------------------------- /src/material/autocomplete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material/autocomplete.html -------------------------------------------------------------------------------- /src/material/card-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material/card-content.html -------------------------------------------------------------------------------- /src/material/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material/card.html -------------------------------------------------------------------------------- /src/material/checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material/checkbox.html -------------------------------------------------------------------------------- /src/material/checkboxes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material/checkboxes.html -------------------------------------------------------------------------------- /src/material/chips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material/chips.html -------------------------------------------------------------------------------- /src/material/date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material/date.html -------------------------------------------------------------------------------- /src/material/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material/default.html -------------------------------------------------------------------------------- /src/material/fieldset-trcl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material/fieldset-trcl.html -------------------------------------------------------------------------------- /src/material/fieldset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material/fieldset.html -------------------------------------------------------------------------------- /src/material/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material/help.html -------------------------------------------------------------------------------- /src/material/radio-buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material/radio-buttons.html -------------------------------------------------------------------------------- /src/material/radios-inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material/radios-inline.html -------------------------------------------------------------------------------- /src/material/radios.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material/radios.html -------------------------------------------------------------------------------- /src/material/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material/section.html -------------------------------------------------------------------------------- /src/material/select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material/select.html -------------------------------------------------------------------------------- /src/material/slider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material/slider.html -------------------------------------------------------------------------------- /src/material/submit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material/submit.html -------------------------------------------------------------------------------- /src/material/switch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material/switch.html -------------------------------------------------------------------------------- /src/material/tabarray.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material/tabarray.html -------------------------------------------------------------------------------- /src/material/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material/tabs.html -------------------------------------------------------------------------------- /src/material/textarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/material/textarea.html -------------------------------------------------------------------------------- /src/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/module.js -------------------------------------------------------------------------------- /src/type-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/src/type-parser.js -------------------------------------------------------------------------------- /test/protractor/conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/test/protractor/conf.js -------------------------------------------------------------------------------- /test/protractor/specs/validation-messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/test/protractor/specs/validation-messages.js -------------------------------------------------------------------------------- /test/protractor/specs/validation-tv4-errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/test/protractor/specs/validation-tv4-errors.js -------------------------------------------------------------------------------- /webpack.config.dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/webpack.config.dist.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-form/angular-schema-form-material/HEAD/webpack.config.js --------------------------------------------------------------------------------