{"id":31651371,"url":"https://github.com/skyzerozx/ngx-contact-list","last_synced_at":"2026-04-15T23:31:51.188Z","repository":{"id":58868229,"uuid":"534062217","full_name":"SkyZeroZx/ngx-contact-list","owner":"SkyZeroZx","description":"Angular component for filtering ,  contact list in alphabetical listing. Awesome Contact List","archived":false,"fork":false,"pushed_at":"2022-09-10T06:15:54.000Z","size":2493,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-09-15T08:15:03.402Z","etag":null,"topics":["alphabet-filter","angular","ap","cellphone-contact-list","contact-list","ngx","ngx-contact-list","search-alphabet","typescript"],"latest_commit_sha":null,"homepage":"https://skyzerozx.github.io/ngx-contact-list/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SkyZeroZx.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-09-08T05:23:11.000Z","updated_at":"2024-08-30T03:28:22.000Z","dependencies_parsed_at":"2023-01-18T02:45:17.912Z","dependency_job_id":null,"html_url":"https://github.com/SkyZeroZx/ngx-contact-list","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SkyZeroZx/ngx-contact-list","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SkyZeroZx%2Fngx-contact-list","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SkyZeroZx%2Fngx-contact-list/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SkyZeroZx%2Fngx-contact-list/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SkyZeroZx%2Fngx-contact-list/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SkyZeroZx","download_url":"https://codeload.github.com/SkyZeroZx/ngx-contact-list/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SkyZeroZx%2Fngx-contact-list/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278747540,"owners_count":26038707,"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","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["alphabet-filter","angular","ap","cellphone-contact-list","contact-list","ngx","ngx-contact-list","search-alphabet","typescript"],"created_at":"2025-10-07T08:54:50.501Z","updated_at":"2025-10-07T08:54:51.538Z","avatar_url":"https://github.com/SkyZeroZx.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NgxContactList | Angular 13+\n\nAngular component for filtering contents in alphabetical listing, using default or custom templates. Ideal to build contact lists.\n\nCompatible with previous versions of Angular, except AngularJS.\n\nSpiritual successor of alphabet-filter [repository](https://github.com/ericferreira1992/alphabet-filter).\n\nSupport use in mobile device, listening event touch start \u0026 touch move\n\n# Demo\n\nSee a [live demo](https://skyzerozx.github.io/ngx-contact-list).\n\n## Simple use\n\n```html\n\u003cngx-contact-list\n  [noSmoothScroll]=\"true\"\n  [withTemplate]=\"true\"\n  propAlphaOrder=\"name\"\n  [propsSearch]=\"['name' , 'lastName']\"\n  placeholder=\"type name or contact\"\n  [data]=\"contacts\"\n  height=\"550px\"\n\u003e\n  \u003cng-template let-item\u003e\n    \u003cdiv\u003e\n      \u003cspan\u003e{{item.name + ' ' + item.lastName}}\u003c/span\u003e\n    \u003c/div\u003e\n  \u003c/ng-template\u003e\n\u003c/ngx-contact-list\u003e\n```\n\n![](simple.png)\n\n## Custom use (with ng-template)\n\n```html\n\u003cngx-contact-list\n  [noSmoothScroll]=\"true\"\n  propAlphaOrder=\"name\"\n  [propsSearch]=\"['name' , 'lastName' , 'phone']\"\n  placeholder=\"type name or contact\"\n  [data]=\"contacts\"\n  listClass=\"search-list\"\n  [withTemplate]=\"true\"\n  height=\"550px\"\n\u003e\n  \u003cng-template let-item\u003e\n    \u003cdiv class=\"search-list-item\"\u003e\n      \u003cimg [src]=\" imageExist(item)\" alt=\"\" /\u003e\n      \u003cspan\n        \u003e{{item.name + ' ' + item.lastName }} \u003cbr /\u003e\n        \u003csmall class=\"phone-small\"\u003e\n          {{item.phone | slice:0:3}} - {{item.phone | slice:3:6}} - {{item.phone\n          | slice:6:9}}\n        \u003c/small\u003e\n      \u003c/span\u003e\n    \u003c/div\u003e\n  \u003c/ng-template\u003e\n\u003c/ngx-contact-list\u003e\n```\n\n![](with-template.png)\n\n# Usage\n\n## Install\n\n`npm install ngx-contact-list`\n\n## Import into Module\n\n```typescript\nimport { NgxContactListModule } from 'ngx-contact-list';\n\n@NgModule({\n  imports: [\n    ...,\n    NgxContactListModule\n  ],\n  declarations: [...],\n  providers: [],\n  bootstrap: [AppComponent]\n})\nexport class AppModule { }\n```\n\n## Insert into styles of `angular.json`\n\n```json\n...\n\"styles\": [\n  \"...\",\n  \"node_modules/ngx-contact-list/ngx-contact-list.scss\"\n],\n...\n```\n\n## Custom Sytles\n\n_In styles.scss or style of proyect_\n\n```scss\n...\n /*Custom Styles for ngx contact list */\n$color-contact-list : rgb(75, 77, 218) ;\n$background-contact-list :#1B2B35;\n$color-text :  WhiteSmoke;\n$color-input-search : WhiteSmoke;\n$border-line-style :  solid;\n@import '/node_modules/ngx-contact-list/ngx-contact-list.scss';\n...\n```\n\n# API\n\n## Inputs/Outputs (Required)\n\n| Name             | Type                | Description                                                                                                  |\n| ---------------- | ------------------- | ------------------------------------------------------------------------------------------------------------ |\n| `data`           | `any[]`             | Data to be listed.(ex .: ` \u003c... [data]=\"contacts\"\u003e\u003c/...\u003e`).                                                  |\n| `propAlphaOrder` | `string`            | Property for name of the property to be ordered alphabetically.(ex .: ` \u003c... propAlphaOrder=\"name\"\u003e\u003c/...\u003e`). |\n| `propsSearch`    | `string[]`          | Property(ies) to be filtered.(ex .: ` \u003c... [propsSearch]=\"['name']\"\u003e\u003c/...\u003e`).                                |\n| `onClick`        | `EventEmitter\u003cany\u003e` | Emit on item click.(ex .: ` \u003c... (onClick)=\"selected($event)\"\u003e\u003c/...\u003e`).                                      |\n\n## Inputs/Outputs (Optional)\n\n| Name           | Type                | Description                                                                                     |\n| -------------- | ------------------- | ----------------------------------------------------------------------------------------------- |\n| `placeholder`  | `string`            | Placeholder of input filter. (ex .: ` \u003c... []=\"\"\u003e\u003c/...\u003e`).                                      |\n| `listClass`    | `string`            | Class name for list element. (ex .: ` \u003c... listClass=\"search-list\"\u003e\u003c/...\u003e`).                    |\n| `height`       | `string`            | Height to be used throughout the component. (ex .: ` \u003c... height=\"100%\"\u003e\u003c/...\u003e`).               |\n| `withTemplate` | `boolean`           | Used when to need of customize using ng-template. (ex .: ` \u003c... [withTemplate]=\"true\"\u003e\u003c/...\u003e`). |\n| `onCancel`     | `EventEmitter\u003cany\u003e` | Used to enable \"close\" button.(ex .: ` \u003c... (onCancel)=\"cancel()\"\u003e\u003c/...\u003e`).                     |\n\n# Versions\n\n| Ngx-Contact-List | Angular               \n| ---------------- | --------------------- |\n|  01.0.3          |  \u003e=14.0.0             |\n|  0.9             |  \u003e=13.0.0  \u003c 14.0.0   | \n|  0.8             |  \u003e=12.0.0  \u003c 13.0.0   |\n|  0.7             |  \u003e=11.0.0  \u003c 12.0.0   |","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskyzerozx%2Fngx-contact-list","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fskyzerozx%2Fngx-contact-list","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskyzerozx%2Fngx-contact-list/lists"}