├── .editorconfig ├── .gitignore ├── .npmignore ├── .prettierrc ├── README.md ├── angular.json ├── demo ├── .editorconfig ├── .gitignore ├── README.md ├── karma.conf.js ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── data-model.ts │ │ ├── data.service.ts │ │ ├── dummy.component.html │ │ ├── dummy.component.ts │ │ └── util.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── typings.d.ts ├── tsconfig.json └── tslint.json ├── karma.conf.js ├── package.json ├── projects └── ngx-bootstrap-multiselect │ ├── LICENSE │ ├── ng-package.json │ ├── package.json │ ├── src │ ├── index.ts │ ├── lib │ │ ├── autofocus.directive.ts │ │ ├── ngx-bootstrap-multiselect.component.css │ │ ├── ngx-bootstrap-multiselect.component.html │ │ ├── ngx-bootstrap-multiselect.component.ts │ │ ├── ngx-bootstrap-multiselect.module.ts │ │ ├── off-click.directive.ts │ │ ├── search-filter.pipe.ts │ │ └── types.ts │ ├── public-api.ts │ └── test.ts │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/angular.json -------------------------------------------------------------------------------- /demo/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/.editorconfig -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/.gitignore -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/README.md -------------------------------------------------------------------------------- /demo/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/karma.conf.js -------------------------------------------------------------------------------- /demo/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/src/app/app.component.css -------------------------------------------------------------------------------- /demo/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/src/app/app.component.html -------------------------------------------------------------------------------- /demo/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /demo/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/src/app/app.component.ts -------------------------------------------------------------------------------- /demo/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/src/app/app.module.ts -------------------------------------------------------------------------------- /demo/src/app/data-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/src/app/data-model.ts -------------------------------------------------------------------------------- /demo/src/app/data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/src/app/data.service.ts -------------------------------------------------------------------------------- /demo/src/app/dummy.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/src/app/dummy.component.html -------------------------------------------------------------------------------- /demo/src/app/dummy.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/src/app/dummy.component.ts -------------------------------------------------------------------------------- /demo/src/app/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/src/app/util.ts -------------------------------------------------------------------------------- /demo/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /demo/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/src/environments/environment.ts -------------------------------------------------------------------------------- /demo/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/src/favicon.ico -------------------------------------------------------------------------------- /demo/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/src/index.html -------------------------------------------------------------------------------- /demo/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/src/main.ts -------------------------------------------------------------------------------- /demo/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/src/polyfills.ts -------------------------------------------------------------------------------- /demo/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/src/styles.css -------------------------------------------------------------------------------- /demo/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/src/test.ts -------------------------------------------------------------------------------- /demo/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/src/tsconfig.app.json -------------------------------------------------------------------------------- /demo/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/src/tsconfig.spec.json -------------------------------------------------------------------------------- /demo/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/src/typings.d.ts -------------------------------------------------------------------------------- /demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/tsconfig.json -------------------------------------------------------------------------------- /demo/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/demo/tslint.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/package.json -------------------------------------------------------------------------------- /projects/ngx-bootstrap-multiselect/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/projects/ngx-bootstrap-multiselect/LICENSE -------------------------------------------------------------------------------- /projects/ngx-bootstrap-multiselect/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/projects/ngx-bootstrap-multiselect/ng-package.json -------------------------------------------------------------------------------- /projects/ngx-bootstrap-multiselect/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/projects/ngx-bootstrap-multiselect/package.json -------------------------------------------------------------------------------- /projects/ngx-bootstrap-multiselect/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api' 2 | -------------------------------------------------------------------------------- /projects/ngx-bootstrap-multiselect/src/lib/autofocus.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/projects/ngx-bootstrap-multiselect/src/lib/autofocus.directive.ts -------------------------------------------------------------------------------- /projects/ngx-bootstrap-multiselect/src/lib/ngx-bootstrap-multiselect.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/projects/ngx-bootstrap-multiselect/src/lib/ngx-bootstrap-multiselect.component.css -------------------------------------------------------------------------------- /projects/ngx-bootstrap-multiselect/src/lib/ngx-bootstrap-multiselect.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/projects/ngx-bootstrap-multiselect/src/lib/ngx-bootstrap-multiselect.component.html -------------------------------------------------------------------------------- /projects/ngx-bootstrap-multiselect/src/lib/ngx-bootstrap-multiselect.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/projects/ngx-bootstrap-multiselect/src/lib/ngx-bootstrap-multiselect.component.ts -------------------------------------------------------------------------------- /projects/ngx-bootstrap-multiselect/src/lib/ngx-bootstrap-multiselect.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/projects/ngx-bootstrap-multiselect/src/lib/ngx-bootstrap-multiselect.module.ts -------------------------------------------------------------------------------- /projects/ngx-bootstrap-multiselect/src/lib/off-click.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/projects/ngx-bootstrap-multiselect/src/lib/off-click.directive.ts -------------------------------------------------------------------------------- /projects/ngx-bootstrap-multiselect/src/lib/search-filter.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/projects/ngx-bootstrap-multiselect/src/lib/search-filter.pipe.ts -------------------------------------------------------------------------------- /projects/ngx-bootstrap-multiselect/src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/projects/ngx-bootstrap-multiselect/src/lib/types.ts -------------------------------------------------------------------------------- /projects/ngx-bootstrap-multiselect/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/projects/ngx-bootstrap-multiselect/src/public-api.ts -------------------------------------------------------------------------------- /projects/ngx-bootstrap-multiselect/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/projects/ngx-bootstrap-multiselect/src/test.ts -------------------------------------------------------------------------------- /projects/ngx-bootstrap-multiselect/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/projects/ngx-bootstrap-multiselect/tsconfig.lib.json -------------------------------------------------------------------------------- /projects/ngx-bootstrap-multiselect/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/projects/ngx-bootstrap-multiselect/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /projects/ngx-bootstrap-multiselect/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/projects/ngx-bootstrap-multiselect/tsconfig.spec.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softsimon/ngx-bootstrap-multiselect/HEAD/tslint.json --------------------------------------------------------------------------------