├── .editorconfig ├── .gitignore ├── .jscsrc ├── .jshintignore ├── .jshintrc ├── .npmignore ├── .release.json ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── demo ├── build │ └── app.js ├── css │ └── main.css ├── images │ └── angular@2x.png ├── index.html ├── js │ ├── bootstrap.js │ ├── controllers │ │ └── main-ctrl.js │ ├── demos.js │ ├── directives │ │ ├── code-preview.html │ │ └── code-preview.js │ ├── filter │ │ └── uppercase-first.js │ ├── modules.js │ ├── routing.js │ └── services │ │ ├── dataFactory.js │ │ └── demoMap.js └── templates │ ├── menu.html │ └── preview.html ├── dist ├── ngHandsontable.js └── ngHandsontable.min.js ├── index.html ├── karma.conf.js ├── package.json ├── src ├── directives │ ├── hotAutocomplete.js │ ├── hotColumn.js │ └── hotTable.js ├── ie-shim.js ├── ngHandsontable.js └── services │ ├── autoCompleteFactory.js │ ├── hotRegisterer.js │ └── settingFactory.js └── test ├── directives ├── hotAutocomplete.spec.js ├── hotColumn.spec.js ├── hotColumn │ └── watchingOptions.spec.js ├── hotTable.spec.js └── hotTable │ ├── watchingHooks.spec.js │ └── watchingOptions.spec.js ├── phantom-polyfill.js └── services ├── autoCompleteFactory.spec.js ├── hotRegisterer.spec.js └── settingFactory.spec.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | .idea 4 | /node_modules 5 | /bower_components 6 | dev.html 7 | -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | Gruntfile.js 3 | dist/* 4 | lib/* 5 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/.npmignore -------------------------------------------------------------------------------- /.release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/.release.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/bower.json -------------------------------------------------------------------------------- /demo/build/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/demo/build/app.js -------------------------------------------------------------------------------- /demo/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/demo/css/main.css -------------------------------------------------------------------------------- /demo/images/angular@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/demo/images/angular@2x.png -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/demo/js/bootstrap.js -------------------------------------------------------------------------------- /demo/js/controllers/main-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/demo/js/controllers/main-ctrl.js -------------------------------------------------------------------------------- /demo/js/demos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/demo/js/demos.js -------------------------------------------------------------------------------- /demo/js/directives/code-preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/demo/js/directives/code-preview.html -------------------------------------------------------------------------------- /demo/js/directives/code-preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/demo/js/directives/code-preview.js -------------------------------------------------------------------------------- /demo/js/filter/uppercase-first.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/demo/js/filter/uppercase-first.js -------------------------------------------------------------------------------- /demo/js/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/demo/js/modules.js -------------------------------------------------------------------------------- /demo/js/routing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/demo/js/routing.js -------------------------------------------------------------------------------- /demo/js/services/dataFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/demo/js/services/dataFactory.js -------------------------------------------------------------------------------- /demo/js/services/demoMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/demo/js/services/demoMap.js -------------------------------------------------------------------------------- /demo/templates/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/demo/templates/menu.html -------------------------------------------------------------------------------- /demo/templates/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/demo/templates/preview.html -------------------------------------------------------------------------------- /dist/ngHandsontable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/dist/ngHandsontable.js -------------------------------------------------------------------------------- /dist/ngHandsontable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/dist/ngHandsontable.min.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/index.html -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/package.json -------------------------------------------------------------------------------- /src/directives/hotAutocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/src/directives/hotAutocomplete.js -------------------------------------------------------------------------------- /src/directives/hotColumn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/src/directives/hotColumn.js -------------------------------------------------------------------------------- /src/directives/hotTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/src/directives/hotTable.js -------------------------------------------------------------------------------- /src/ie-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/src/ie-shim.js -------------------------------------------------------------------------------- /src/ngHandsontable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/src/ngHandsontable.js -------------------------------------------------------------------------------- /src/services/autoCompleteFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/src/services/autoCompleteFactory.js -------------------------------------------------------------------------------- /src/services/hotRegisterer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/src/services/hotRegisterer.js -------------------------------------------------------------------------------- /src/services/settingFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/src/services/settingFactory.js -------------------------------------------------------------------------------- /test/directives/hotAutocomplete.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/test/directives/hotAutocomplete.spec.js -------------------------------------------------------------------------------- /test/directives/hotColumn.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/test/directives/hotColumn.spec.js -------------------------------------------------------------------------------- /test/directives/hotColumn/watchingOptions.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/test/directives/hotColumn/watchingOptions.spec.js -------------------------------------------------------------------------------- /test/directives/hotTable.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/test/directives/hotTable.spec.js -------------------------------------------------------------------------------- /test/directives/hotTable/watchingHooks.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/test/directives/hotTable/watchingHooks.spec.js -------------------------------------------------------------------------------- /test/directives/hotTable/watchingOptions.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/test/directives/hotTable/watchingOptions.spec.js -------------------------------------------------------------------------------- /test/phantom-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/test/phantom-polyfill.js -------------------------------------------------------------------------------- /test/services/autoCompleteFactory.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/test/services/autoCompleteFactory.spec.js -------------------------------------------------------------------------------- /test/services/hotRegisterer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/test/services/hotRegisterer.spec.js -------------------------------------------------------------------------------- /test/services/settingFactory.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsontable/ngHandsontable/HEAD/test/services/settingFactory.spec.js --------------------------------------------------------------------------------