{"id":15735310,"url":"https://github.com/gridle-io/gridle-datetimepickers","last_synced_at":"2025-03-31T03:47:16.676Z","repository":{"id":31308176,"uuid":"127513476","full_name":"gridle-io/gridle-datetimepickers","owner":"gridle-io","description":"Date, Time and Datetime Pickers for AngularJS 1.5+","archived":false,"fork":false,"pushed_at":"2022-03-15T18:43:32.000Z","size":53,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-04-26T23:02:03.851Z","etag":null,"topics":["angular-components","angular-directive","angularjs","angularjs1-5","datepicker","datetimepicker","select-dropdown","timepicker"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/gridle-io.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}},"created_at":"2018-03-31T08:21:56.000Z","updated_at":"2018-04-17T08:21:21.000Z","dependencies_parsed_at":"2022-08-07T16:15:46.549Z","dependency_job_id":null,"html_url":"https://github.com/gridle-io/gridle-datetimepickers","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gridle-io%2Fgridle-datetimepickers","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gridle-io%2Fgridle-datetimepickers/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gridle-io%2Fgridle-datetimepickers/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gridle-io%2Fgridle-datetimepickers/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gridle-io","download_url":"https://codeload.github.com/gridle-io/gridle-datetimepickers/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246413244,"owners_count":20773053,"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-components","angular-directive","angularjs","angularjs1-5","datepicker","datetimepicker","select-dropdown","timepicker"],"created_at":"2024-10-04T01:12:15.176Z","updated_at":"2025-03-31T03:47:16.653Z","avatar_url":"https://github.com/gridle-io.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Date, Time and Datetime Pickers for AngularJS 1.5+\n\n**Simple Dropdown based pickers**\n\nInstallation:\n============\n\n* Clone as a Git repository\n    ```sh\n    https://github.com/gridle-io/gridle-datetimepickers.git\n    ```\n    [OR]\n    ```sh\n    git@github.com:gridle-io/gridle-datetimepickers.git\n    ```\n\n* Install as a node_module\n    ```sh\n    npm i gridle-datetimepickers --save\n\n    OR\n\n    npm install gridle-datetimepickers --save\n    ```\n\nGetting Started:\n===============\n\n1. Include the Script and add it as a dependency\n\n    * In the browser\n    ```html\n        \u003cscript src=\"PATH_TO_REPO/dist/bundle.js\"\u003e\u003c/script\u003e\n        \u003cscript\u003e\n            angular.module('pickers', ['gridle.datepicker']);\n            \n            // OR\n            \n            angular.module('pickers', ['gridle.timepicker']);\n            \n            // OR\n\n            angular.module('pickers', ['gridle.datetimepicker']);\n\t\t\u003c/script\u003e\n    ```\n\n    * As an NPM module\n    ```js\n        import { datepicker, timepicker, datetimepicker } from 'gridle-datetimepickers';\n\n        angular.module('pickers', [datepicker]);\n\n        // OR\n        \n        angular.module('pickers', [timepicker]);\n\n        // OR\n        angular.module('pickers', [datetimepicker]);\n    ```\n\n\n2. To use the pickers you can use it as follows:\n\n    * Datepicker\n\n    ```html\n    \u003c!-- Datepicker --\u003e\n    \u003cdatepicker ng-model=\"datepicker\" datepicker-config=\"datepickerConfig\"\u003e\u003c/datepicker\u003e\n    ```\n\n      * Date picker config properties\n        * max: [Date|string|moment] *default=null* The maximum date the datepicker should allow\n        * min [Date|string|moment] *default=null* The minimum date the datepicker should allow\n        * strict [boolean] *strict=true* Whether a strict parsing should be done or not\n        * validate [boolean] *strict=false* Whether to perform validation on the value or not\n\n    ```html\n\t\u003c!-- Timepicker --\u003e\n    \u003ctimepicker ng-model=\"timepicker\" timepicker-config=\"timepickerConfig\"\u003e\u003c/timepicker\u003e\n    ```\n\n      * Time picker config properties\n        * strict [boolean] *default=true* Whether a strict parsing should be done or not\n        * validate [boolean] *default=true* Whether to perform validation on the value or not\n\n    * Datetimepicker\n\n    ```html\n    \u003c!-- Datetimepicker --\u003e\n    \u003cdatetimepicker ng-model=\"datetimepicker\" datetimepicker-config=\"datetimepickerConfig\"\u003e\u003c/datetimepicker\u003e    \n    ```\n\n      * DateTime picker config properties\n        * isUtc [boolean] *default=true* Whether the dateTime provided is in UTC or not\n        * max: [Date|string|moment] *default=null* The maximum dateTime the datetimePicker should allow\n        * min [Date|string|moment] *default=null* The minimum dateTime the datetimePicker should allow\n        * strict [boolean] *default=true* Whether a strict parsing should be done or not\n\n## License\n\n[MIT](LICENSE)\n\n[npm-image]: https://img.shields.io/npm/v/twitter-login-client.svg\n[npm-url]: https://npmjs.org/package/twitter-login-client\n[downloads-image]: https://img.shields.io/npm/dm/twitter-login-client.svg\n[downloads-url]: https://npmjs.org/package/twitter-login-client","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgridle-io%2Fgridle-datetimepickers","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgridle-io%2Fgridle-datetimepickers","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgridle-io%2Fgridle-datetimepickers/lists"}