├── .bowerrc ├── .gitignore ├── LICENSE ├── README.md ├── bower.json ├── config ├── forms.client.config.js └── i18n │ ├── english.js │ ├── french.js │ ├── german.js │ ├── italian.js │ └── spanish.js ├── controllers └── submit-form.client.controller.js ├── css └── form.css ├── demo ├── app.js ├── dist │ ├── bundle.js │ └── form.css └── index.html ├── directives ├── field-icon.client.directive.js ├── field.client.directive.js ├── on-enter-key.client.directive.js ├── on-finish-render.client.directive.js ├── render-form.client.directive.js └── submit-form.client.directive.js ├── dist ├── bundle.js ├── form.css ├── form.js └── template.js ├── gruntfile.js ├── index.js ├── package.json ├── publish.js ├── services ├── auth.client.service.js ├── current-form.client.service.js ├── form-fields.client.service.js ├── forms.client.service.js └── time-counter.client.service.js └── views ├── directiveViews ├── field │ ├── date.html │ ├── dropdown.html │ ├── file.html │ ├── hidden.html │ ├── legal.html │ ├── natural.html │ ├── password.html │ ├── radio.html │ ├── rating.html │ ├── statement.html │ ├── textarea.html │ ├── textfield.html │ └── yes_no.html └── form │ └── submit-form.client.view.html └── submit-form.client.view.html /.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/.bowerrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/bower.json -------------------------------------------------------------------------------- /config/forms.client.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/config/forms.client.config.js -------------------------------------------------------------------------------- /config/i18n/english.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/config/i18n/english.js -------------------------------------------------------------------------------- /config/i18n/french.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/config/i18n/french.js -------------------------------------------------------------------------------- /config/i18n/german.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/config/i18n/german.js -------------------------------------------------------------------------------- /config/i18n/italian.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/config/i18n/italian.js -------------------------------------------------------------------------------- /config/i18n/spanish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/config/i18n/spanish.js -------------------------------------------------------------------------------- /controllers/submit-form.client.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/controllers/submit-form.client.controller.js -------------------------------------------------------------------------------- /css/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/css/form.css -------------------------------------------------------------------------------- /demo/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/demo/app.js -------------------------------------------------------------------------------- /demo/dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/demo/dist/bundle.js -------------------------------------------------------------------------------- /demo/dist/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/demo/dist/form.css -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/demo/index.html -------------------------------------------------------------------------------- /directives/field-icon.client.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/directives/field-icon.client.directive.js -------------------------------------------------------------------------------- /directives/field.client.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/directives/field.client.directive.js -------------------------------------------------------------------------------- /directives/on-enter-key.client.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/directives/on-enter-key.client.directive.js -------------------------------------------------------------------------------- /directives/on-finish-render.client.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/directives/on-finish-render.client.directive.js -------------------------------------------------------------------------------- /directives/render-form.client.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/directives/render-form.client.directive.js -------------------------------------------------------------------------------- /directives/submit-form.client.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/directives/submit-form.client.directive.js -------------------------------------------------------------------------------- /dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/dist/bundle.js -------------------------------------------------------------------------------- /dist/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/dist/form.css -------------------------------------------------------------------------------- /dist/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/dist/form.js -------------------------------------------------------------------------------- /dist/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/dist/template.js -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/gruntfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/package.json -------------------------------------------------------------------------------- /publish.js: -------------------------------------------------------------------------------- 1 | require('./dist/bundle.js'); 2 | module.exports = 'angular-tellform'; -------------------------------------------------------------------------------- /services/auth.client.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/services/auth.client.service.js -------------------------------------------------------------------------------- /services/current-form.client.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/services/current-form.client.service.js -------------------------------------------------------------------------------- /services/form-fields.client.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/services/form-fields.client.service.js -------------------------------------------------------------------------------- /services/forms.client.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/services/forms.client.service.js -------------------------------------------------------------------------------- /services/time-counter.client.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/services/time-counter.client.service.js -------------------------------------------------------------------------------- /views/directiveViews/field/date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/views/directiveViews/field/date.html -------------------------------------------------------------------------------- /views/directiveViews/field/dropdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/views/directiveViews/field/dropdown.html -------------------------------------------------------------------------------- /views/directiveViews/field/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/views/directiveViews/field/file.html -------------------------------------------------------------------------------- /views/directiveViews/field/hidden.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/views/directiveViews/field/hidden.html -------------------------------------------------------------------------------- /views/directiveViews/field/legal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/views/directiveViews/field/legal.html -------------------------------------------------------------------------------- /views/directiveViews/field/natural.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/views/directiveViews/field/natural.html -------------------------------------------------------------------------------- /views/directiveViews/field/password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/views/directiveViews/field/password.html -------------------------------------------------------------------------------- /views/directiveViews/field/radio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/views/directiveViews/field/radio.html -------------------------------------------------------------------------------- /views/directiveViews/field/rating.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/views/directiveViews/field/rating.html -------------------------------------------------------------------------------- /views/directiveViews/field/statement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/views/directiveViews/field/statement.html -------------------------------------------------------------------------------- /views/directiveViews/field/textarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/views/directiveViews/field/textarea.html -------------------------------------------------------------------------------- /views/directiveViews/field/textfield.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/views/directiveViews/field/textfield.html -------------------------------------------------------------------------------- /views/directiveViews/field/yes_no.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/views/directiveViews/field/yes_no.html -------------------------------------------------------------------------------- /views/directiveViews/form/submit-form.client.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/views/directiveViews/form/submit-form.client.view.html -------------------------------------------------------------------------------- /views/submit-form.client.view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tellform/angular-tellform/HEAD/views/submit-form.client.view.html --------------------------------------------------------------------------------