{"id":28632566,"url":"https://github.com/icklechris/ic-datepicker","last_synced_at":"2025-08-03T16:37:36.936Z","repository":{"id":57270726,"uuid":"81735697","full_name":"IckleChris/ic-datepicker","owner":"IckleChris","description":"Angular (2+) datepicker component","archived":false,"fork":false,"pushed_at":"2017-11-19T15:39:22.000Z","size":5087,"stargazers_count":27,"open_issues_count":3,"forks_count":5,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-06-01T01:58:06.436Z","etag":null,"topics":["angular","angular2","datepicker","datepicker-component","ng2"],"latest_commit_sha":null,"homepage":"https://icklechris.github.io/ic-datepicker","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/IckleChris.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":"2017-02-12T15:27:24.000Z","updated_at":"2020-02-06T15:58:47.000Z","dependencies_parsed_at":"2022-09-09T17:02:49.319Z","dependency_job_id":null,"html_url":"https://github.com/IckleChris/ic-datepicker","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IckleChris%2Fic-datepicker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IckleChris%2Fic-datepicker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IckleChris%2Fic-datepicker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IckleChris%2Fic-datepicker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/IckleChris","download_url":"https://codeload.github.com/IckleChris/ic-datepicker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IckleChris%2Fic-datepicker/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259280658,"owners_count":22833432,"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","angular2","datepicker","datepicker-component","ng2"],"created_at":"2025-06-12T14:09:41.048Z","updated_at":"2025-06-12T14:09:41.846Z","avatar_url":"https://github.com/IckleChris.png","language":"TypeScript","readme":"# Ic Datepicker\n\n[Docs \u0026 Example](https://icklechris.github.io/ic-datepicker)\n\n**Warning:** This component is still in pre-release. Although the component should be stable, until v1 is released there is potential for API changes whilst things are finalised. To prevent issues, ensure your `package.json` file specifies a specific version (e.g. `\"ic-datepicker\": \"0.0.5\"`).\n\n## Installation\n\nInstall the component via NPM;\n\n```\nnpm install -S ic-datepicker\n  (or)\nyarn add ic-datepicker\n```\n\nImport the `IcDatepickerModule` into your module;\n\n```typescript\n// app.module.ts\n\nimport { IcDatepickerModule } from 'ic-datepicker';\n\n@NgModule({\n  imports: [\n    IcDatepickerModule,\n  ],\n})\n```\n\n## Usage\n\nUse the `\u003cic-datepicker/\u003e` element, optionally providing an `IcDatepickerOptionsInterface` instance containing overriding options ([see defaults](https://icklechris.github.io/ic-datepicker/options)).\n\n```typescript\nimport { IcDatepickerOptionsInterface } from 'ic-datepicker';\n\n@Component({\n  selector: 'my-example-component',\n  template: `\n    \u003cform [formGroup]=\"exampleForm\"\u003e\n      \u003c!-- Reactive Form --\u003e\n      \u003cic-datepicker formControlName=\"datepicker\" options=\"datepickerOptions\"\u003e\u003c/ic-datepicker\u003e\n      \n      \u003c!-- ngModel --\u003e\n      \u003cic-datepicker [(ngModel)]=\"modelDatepicker\" options=\"datepickerOptions\"\u003e\u003c/ic-datepicker\u003e\n    \u003c/form\u003e\n  `,\n  styles: ``\n})\nexport class MyExampleComponent implements OnInit {\n  datepickerOptions: IcDatepickerOptionsInterface;\n  exampleForm: FormGroup;\n  modelDatepicker: any;\n\n  ngOnInit() {\n    this.datepickerOptions = {\n      position: 'top'\n    };\n\n    this.exampleForm = new FormGroup({\n      datepicker: new FormControl()\n    });\n  }\n}\n\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ficklechris%2Fic-datepicker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ficklechris%2Fic-datepicker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ficklechris%2Fic-datepicker/lists"}