https://github.com/klinki/au-datetime-picker
Aurelia datetime picker plugin
https://github.com/klinki/au-datetime-picker
aurelia aurelia-plugins bootstrap datetime-inputs datetime-picker
Last synced: 3 months ago
JSON representation
Aurelia datetime picker plugin
- Host: GitHub
- URL: https://github.com/klinki/au-datetime-picker
- Owner: klinki
- License: mit
- Created: 2018-03-08T18:54:48.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-01T20:17:23.000Z (almost 7 years ago)
- Last Synced: 2025-02-22T07:04:41.782Z (3 months ago)
- Topics: aurelia, aurelia-plugins, bootstrap, datetime-inputs, datetime-picker
- Language: TypeScript
- Homepage:
- Size: 849 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
[](https://travis-ci.org/klinki/au-datetime-picker)
[](https://www.npmjs.com/package/au-datetime-picker)# au-datetime-picker
Aurelia custom element for date time picker.## Example
Example is located at: https://klinki.github.io/au-datetime-picker/## How to use
* Run `npm install au-datetime-picker`
* Add `aurelia.use.plugin(PLATFORM.moduleName('au-datetime-picker'))` to your `main.ts` file (or other aurelia configuration file)
* Use `` in your code## Goal of this library
I created this library because I needed some lightweight date-time picker and almost all available solutions were using momentjs library.
Because momentjs is not treeshakeable and is very very bloated, I decided to replace it by date-fns which offers much more modular approach.## License
MIT License## Special thanks to
I would like to thank:
- https://github.com/ghiscoding/Aurelia-Bootstrap-Plugins
- https://github.com/Eonasdan/bootstrap-datetimepickerfor inspiration.
Also thanks to:
- https://github.com/twbs/bootstrap
- https://github.com/date-fns/date-fnsAnd of course
- https://github.com/aurelia/framework