{"id":44644122,"url":"https://github.com/danielmoncada/date-time-picker-dayjs-adapter","last_synced_at":"2026-02-14T19:11:46.975Z","repository":{"id":40648778,"uuid":"445936606","full_name":"danielmoncada/date-time-picker-dayjs-adapter","owner":"danielmoncada","description":"Day.js adapter for https://github.com/danielmoncada/date-time-picker","archived":false,"fork":false,"pushed_at":"2024-11-27T06:37:46.000Z","size":825,"stargazers_count":4,"open_issues_count":2,"forks_count":6,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-05T11:27:45.875Z","etag":null,"topics":["angular","date-time-picker","datepicker","dayjs","timepicker"],"latest_commit_sha":null,"homepage":"","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/danielmoncada.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}},"created_at":"2022-01-08T21:54:05.000Z","updated_at":"2025-06-12T11:08:27.000Z","dependencies_parsed_at":"2024-01-08T03:22:24.747Z","dependency_job_id":"d0a684d2-d40d-4ea1-9e31-67d6c1c0fd87","html_url":"https://github.com/danielmoncada/date-time-picker-dayjs-adapter","commit_stats":{"total_commits":6,"total_committers":2,"mean_commits":3.0,"dds":"0.16666666666666663","last_synced_commit":"a54bddfb030ab6f9fc263e2142ec95dbb27deb8a"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/danielmoncada/date-time-picker-dayjs-adapter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielmoncada%2Fdate-time-picker-dayjs-adapter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielmoncada%2Fdate-time-picker-dayjs-adapter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielmoncada%2Fdate-time-picker-dayjs-adapter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielmoncada%2Fdate-time-picker-dayjs-adapter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/danielmoncada","download_url":"https://codeload.github.com/danielmoncada/date-time-picker-dayjs-adapter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielmoncada%2Fdate-time-picker-dayjs-adapter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29452787,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T15:52:44.973Z","status":"ssl_error","status_checked_at":"2026-02-14T15:52:11.208Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["angular","date-time-picker","datepicker","dayjs","timepicker"],"created_at":"2026-02-14T19:11:46.427Z","updated_at":"2026-02-14T19:11:46.966Z","avatar_url":"https://github.com/danielmoncada.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"Angular Date Time Picker (DayJs Adapter)\n========================\n\n[![npm](https://img.shields.io/npm/v/@danielmoncada/angular-datetime-picker-dayjs-adapter.svg?maxAge=2592000?style=flat-square)](https://www.npmjs.com/package/@danielmoncada/angular-datetime-picker-dayjs-adapter)\n[![npm](https://img.shields.io/npm/dm/@danielmoncada/angular-datetime-picker-dayjs-adapter.svg)](https://www.npmjs.com/package/@danielmoncada/angular-datetime-picker-dayjs-adapter)\n\n**Angular date time picker - DayJs Adpater**\n\n**The current version of this package supports Angular 17**\n\nIf you need support for other Angular version, see *Breaking Changes* below.\n\nBreaking Changes\n-------\n- Version 3.x.x \u003e= no longer supports ng 16 - 13. If you need ng 16-13 support, stick with version 2.x.x.\n\nDescription\n-------\nThis is a DayJs adapter to be used with the following date time picker control:\n\nhttps://github.com/danielmoncada/date-time-picker\n\nHow to Use\n-------\n\n 1. Install with [npm](https://www.npmjs.com):`npm install @danielmoncada/angular-datetime-picker-dayjs-adapter --save`\n 2. \n    ```typescript\n    import { NgModule } from '@angular/core';\n    import { OwlDateTimeModule, OWL_DATE_TIME_FORMATS} from '@danielmoncada/angular-datetime-picker;\n    import { OwlDayJsDateTimeModule } from '@danielmoncada/angular-datetime-picker-dayjs-adapter';\n\n    // See the Day.js docs for the meaning of these formats:\n    // https://day.js.org/docs/en/display/format\n    export const MY_DAYJS_FORMATS = {\n        parseInput: 'l LT',\n        fullPickerInput: 'l LT',\n        datePickerInput: 'l',\n        timePickerInput: 'LT',\n        monthYearLabel: 'MMM YYYY',\n        dateA11yLabel: 'LL',\n        monthYearA11yLabel: 'MMMM YYYY',\n    };\n\n    @NgModule({\n        imports: [OwlDateTimeModule, OwlDayJsDateTimeModule],\n        providers: [\n            {provide: OWL_DATE_TIME_FORMATS, useValue: MY_DAYJS_FORMATS},\n        ],\n    })\n    export class AppExampleModule {\n    }\n    ```\n\nDependencies\n-------\n- dayjs\n- @danielmoncada/angular-datetime-picker\n- tslib\n\nDemo\n-------\n- Online doc is [here](https://daniel-projects.firebaseapp.com/owlng/date-time-picker) and [here](https://danielykpan.github.io/date-time-picker/)\n- Online demos (StackBlitz) are [here](https://stackblitz.com/edit/angular-vvp849) and [here](https://stackblitz.com/edit/angular-i7ykf5)\n\nLicense\n-------\n* License: MIT\n\nAuthor\n-------\n**Maintained and updated by Daniel Moncada, original implementatiom by Daniel Pan**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanielmoncada%2Fdate-time-picker-dayjs-adapter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdanielmoncada%2Fdate-time-picker-dayjs-adapter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanielmoncada%2Fdate-time-picker-dayjs-adapter/lists"}