{"id":24042369,"url":"https://github.com/ouracademy/ngx-dual-listbox","last_synced_at":"2025-04-19T20:25:25.257Z","repository":{"id":102066881,"uuid":"100823771","full_name":"ouracademy/ngx-dual-listbox","owner":"ouracademy","description":"A dual list box component for Angular 2+","archived":false,"fork":false,"pushed_at":"2017-09-11T04:05:29.000Z","size":3964,"stargazers_count":2,"open_issues_count":3,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-29T12:51:22.124Z","etag":null,"topics":["angular","angular4","ui-component"],"latest_commit_sha":null,"homepage":"https://ouracademy.github.io/ngx-dual-listbox/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ouracademy.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-08-19T22:03:30.000Z","updated_at":"2017-09-10T03:48:54.000Z","dependencies_parsed_at":null,"dependency_job_id":"a0992e58-c25c-40d5-8d2f-235bec77ac73","html_url":"https://github.com/ouracademy/ngx-dual-listbox","commit_stats":{"total_commits":34,"total_committers":3,"mean_commits":"11.333333333333334","dds":"0.23529411764705888","last_synced_commit":"d2344b1d00bdc31953d9777c31d62c70a572b4fc"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ouracademy%2Fngx-dual-listbox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ouracademy%2Fngx-dual-listbox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ouracademy%2Fngx-dual-listbox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ouracademy%2Fngx-dual-listbox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ouracademy","download_url":"https://codeload.github.com/ouracademy/ngx-dual-listbox/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249793486,"owners_count":21326549,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["angular","angular4","ui-component"],"created_at":"2025-01-08T22:38:19.730Z","updated_at":"2025-04-19T20:25:25.251Z","avatar_url":"https://github.com/ouracademy.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ngx-dual-listbox / Angular dual list box\n[![Build Status](https://travis-ci.org/ouracademy/ngx-dual-listbox.svg?branch=master)](https://travis-ci.org/ouracademy/ngx-dual-listbox)\n[![codecov](https://codecov.io/gh/ouracademy/ngx-dual-listbox/branch/master/graph/badge.svg)](https://codecov.io/gh/ouracademy/ngx-dual-listbox)\n[![npm version](https://badge.fury.io/js/ngx-dual-listbox.svg)](http://badge.fury.io/js/ngx-dual-listbox)\n[![devDependency Status](https://david-dm.org/ouracademy/ngx-dual-listbox/dev-status.svg)](https://david-dm.org/ouracademy/ngx-dual-listbox?type=dev)\n[![GitHub issues](https://img.shields.io/github/issues/ouracademy/ngx-dual-listbox.svg)](https://github.com/ouracademy/ngx-dual-listbox/issues)\n[![GitHub stars](https://img.shields.io/github/stars/ouracademy/ngx-dual-listbox.svg)](https://github.com/ouracademy/ngx-dual-listbox/stargazers)\n[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/ouracademy/ngx-dual-listbox/master/LICENSE)\n\n## Demo\nhttps://ouracademy.github.io/ngx-dual-listbox/\n\n## Table of contents\n\n- [About](#about)\n- [Installation](#installation)\n- [Documentation](#documentation)\n- [Development](#development)\n- [License](#license)\n\n## About\n\nA dual list box component for Angular 2+\n\n## Installation\n\nInstall through npm:\n```\nnpm install --save ngx-dual-listbox\n```\n\nThen include in your apps module:\n\n```typescript\nimport { NgModule } from '@angular/core';\nimport { NgxDualListboxModule } from 'ngx-dual-listbox';\n\n@NgModule({\n  imports: [\n    NgxDualListboxModule.forRoot()\n  ]\n})\nexport class MyModule {}\n```\n\nFinally use in one of your apps components:\n```typescript\nimport { Component } from '@angular/core';\n\n@Component({\n  template: `\n    \u003cngx-dual-listbox [items]=\"items\" [(selectedItems)]=\"selectedItems\"\u003e\n    \u003c/ngx-dual-listbox\u003e\n  `\n})\nexport class MyComponent {\n  items: any[] = [\n    { id: 1, name: 'Movie 1', url: '' },\n    { id: 2, name: 'Movie 2', url: '' },\n    { id: 3, name: 'Movie 3', url: '' },\n    { id: 4, name: 'Movie 4', url: '' },\n    { id: 5, name: 'Movie 5', url: '' }\n  ];\n\n  selectedItems: any[] = [{ id: 1, name: 'Movie 1', url: '' }];\n}\n```\n\nYou may also find it useful to view the [demo source](https://github.com/ouracademy/ngx-dual-listbox/blob/master/demo/demo.component.ts).\n\n### Usage without a module bundler\n```\n\u003cscript src=\"node_modules/ngx-dual-listbox/bundles/ngx-dual-listbox.umd.js\"\u003e\u003c/script\u003e\n\u003cscript\u003e\n    // everything is exported ngxDualListbox namespace\n\u003c/script\u003e\n```\n\n## Documentation\nAll documentation is auto-generated from the source via [compodoc](https://compodoc.github.io/compodoc/) and can be viewed here:\nhttps://ouracademy.github.io/ngx-dual-listbox/docs/\n\n## Development\n\n### Prepare your environment\n* Install [Node.js](http://nodejs.org/) and NPM\n* Install local dev dependencies: `npm install` while current directory is this repo\n\n### Development server\nRun `npm start` to start a development server on port 8000 with auto reload + tests.\n\n### Testing\nRun `npm test` to run tests once or `npm run test:watch` to continually run tests.\n\n### Release\n* Bump the version in package.json (once the module hits 1.0 this will become automatic)\n```bash\nnpm run release\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fouracademy%2Fngx-dual-listbox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fouracademy%2Fngx-dual-listbox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fouracademy%2Fngx-dual-listbox/lists"}