{"id":27548919,"url":"https://github.com/maryland09/angular-wheel-date-picker","last_synced_at":"2025-04-19T04:02:31.805Z","repository":{"id":287408677,"uuid":"964520740","full_name":"maryland09/angular-wheel-date-picker","owner":"maryland09","description":"Angular wheel date picker","archived":false,"fork":false,"pushed_at":"2025-04-11T14:34:04.000Z","size":168,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-11T15:48:50.092Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/maryland09.png","metadata":{"files":{"readme":"README.md","changelog":null,"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,"zenodo":null}},"created_at":"2025-04-11T10:46:48.000Z","updated_at":"2025-04-11T10:46:52.000Z","dependencies_parsed_at":"2025-04-11T15:49:38.050Z","dependency_job_id":"f69d3758-2fe3-4c5f-a036-41b659b83d10","html_url":"https://github.com/maryland09/angular-wheel-date-picker","commit_stats":null,"previous_names":["maryland09/angular-wheel-date-picker"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maryland09%2Fangular-wheel-date-picker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maryland09%2Fangular-wheel-date-picker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maryland09%2Fangular-wheel-date-picker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maryland09%2Fangular-wheel-date-picker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maryland09","download_url":"https://codeload.github.com/maryland09/angular-wheel-date-picker/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249327175,"owners_count":21251852,"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":[],"created_at":"2025-04-19T04:02:15.566Z","updated_at":"2025-04-19T04:02:31.798Z","avatar_url":"https://github.com/maryland09.png","language":null,"funding_links":[],"categories":["Table of contents"],"sub_categories":["Third Party Components"],"readme":"# Angular Wheel Date Picker\n\nA date picker component for Angular applications that features a scrollable wheel interface similar to native mobile date pickers.\n\n## Features\n\n- Intuitive wheel-style date selection\n- Smooth scrolling experience\n- Mobile-friendly touch interface\n- Customizable year range\n\n## Installation\nnpm install angular-wheel-date-picker --save\n\n## Basic Usage\n\n```typescript\nimport {Component} from '@angular/core';\nimport {AngularWheelDatePicker} from \"angular-wheel-date-picker\";\nimport {DatePipe} from \"@angular/common\";\n\n@Component({\n  selector: 'app-root',\n  standalone: true,\n  imports: [\n    AngularWheelDatePicker,\n    DatePipe\n  ],\n  template: `\n    \u003cangular-wheel-date-picker\n      [minYear]=\"1960\"\n      [maxYear]=\"2040\"\n      (dateChange)=\"selectDate($event)\"\u003e\n    \u003c/angular-wheel-date-picker\u003e\n    \u003cp\u003eSelected date: {{ myDate | date: 'dd/MM/yyyy' }}\u003cp\u003e\n  `,\n  styleUrl: './app.component.css'\n})\nexport class AppComponent {\n  myDate?: Date;\n\n  selectDate(date: Date) {\n    this.myDate = date;\n  }\n}\n```\n\n## Inputs\n| Input | Type | Default | Description |\n|-------|------|---------|-------------|\n| `minYear` | number | Current year - 50 | Minimum year displayed in the year wheel |\n| `maxYear` | number | Current year + 10 | Maximum year displayed in the year wheel |\n\n## Outputs\n\n| Output | Type               | Description |\n|--------|--------------------|-------------|\n| `dateChange` | EventEmitter\u0026lt;Date\u0026gt; | Emits the selected date when the user changes it |\n\n\n# Requirements\n\n- Angular 15.0.0 or higher\n- dayjs\n\n# Browser Support\nThis component supports all modern browsers.\n\n# Contributing\nContributions are welcome! Please feel free to submit a Pull Request.\n\n# License\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaryland09%2Fangular-wheel-date-picker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaryland09%2Fangular-wheel-date-picker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaryland09%2Fangular-wheel-date-picker/lists"}