├── .bowerrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── Gruntfile.js ├── README.md ├── app ├── js │ ├── .gitkeep │ ├── module.js.coffee │ ├── schemaFormField.js.coffee │ └── schemaFormFields.js.coffee ├── pages │ └── index.html └── templates │ ├── booleanField.html │ ├── enumField.html │ ├── schemaFormFields.html │ └── stringField.html ├── basic.css ├── bower.json ├── config ├── application.js ├── bower-template.json ├── files.js ├── lib.json ├── lineman.js └── spec.json ├── dist ├── schema-form.js └── schema-form.min.js ├── example.html ├── example.js ├── main.js ├── package.json ├── spec ├── helpers │ ├── helper.js │ ├── jasmine-fixture.js │ ├── jasmine-given.js │ ├── jasmine-only.js │ └── jasmine-stealth.js ├── schema_form_field_spec.js.coffee └── schema_form_fields_spec.js.coffee ├── tasks └── .gitkeep └── vendor └── js └── underscore.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "/vendor/bower" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/README.md -------------------------------------------------------------------------------- /app/js/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/js/module.js.coffee: -------------------------------------------------------------------------------- 1 | angular.module("schemaForm", []) 2 | -------------------------------------------------------------------------------- /app/js/schemaFormField.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/app/js/schemaFormField.js.coffee -------------------------------------------------------------------------------- /app/js/schemaFormFields.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/app/js/schemaFormFields.js.coffee -------------------------------------------------------------------------------- /app/pages/index.html: -------------------------------------------------------------------------------- 1 | Hi 2 | -------------------------------------------------------------------------------- /app/templates/booleanField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/app/templates/booleanField.html -------------------------------------------------------------------------------- /app/templates/enumField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/app/templates/enumField.html -------------------------------------------------------------------------------- /app/templates/schemaFormFields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/app/templates/schemaFormFields.html -------------------------------------------------------------------------------- /app/templates/stringField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/app/templates/stringField.html -------------------------------------------------------------------------------- /basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/basic.css -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/bower.json -------------------------------------------------------------------------------- /config/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/config/application.js -------------------------------------------------------------------------------- /config/bower-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/config/bower-template.json -------------------------------------------------------------------------------- /config/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/config/files.js -------------------------------------------------------------------------------- /config/lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/config/lib.json -------------------------------------------------------------------------------- /config/lineman.js: -------------------------------------------------------------------------------- 1 | module.exports = require(process.env['LINEMAN_MAIN']); 2 | -------------------------------------------------------------------------------- /config/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/config/spec.json -------------------------------------------------------------------------------- /dist/schema-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/dist/schema-form.js -------------------------------------------------------------------------------- /dist/schema-form.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/dist/schema-form.min.js -------------------------------------------------------------------------------- /example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/example.html -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/example.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/package.json -------------------------------------------------------------------------------- /spec/helpers/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/spec/helpers/helper.js -------------------------------------------------------------------------------- /spec/helpers/jasmine-fixture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/spec/helpers/jasmine-fixture.js -------------------------------------------------------------------------------- /spec/helpers/jasmine-given.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/spec/helpers/jasmine-given.js -------------------------------------------------------------------------------- /spec/helpers/jasmine-only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/spec/helpers/jasmine-only.js -------------------------------------------------------------------------------- /spec/helpers/jasmine-stealth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/spec/helpers/jasmine-stealth.js -------------------------------------------------------------------------------- /spec/schema_form_field_spec.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/spec/schema_form_field_spec.js.coffee -------------------------------------------------------------------------------- /spec/schema_form_fields_spec.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/spec/schema_form_fields_spec.js.coffee -------------------------------------------------------------------------------- /tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/js/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/launchscout/angular-schema-form/HEAD/vendor/js/underscore.js --------------------------------------------------------------------------------