Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lozjackson/ember-time-tools
Time and date tools for Ember applications.
https://github.com/lozjackson/ember-time-tools
calendar date datepicker ember time timepicker
Last synced: about 2 months ago
JSON representation
Time and date tools for Ember applications.
- Host: GitHub
- URL: https://github.com/lozjackson/ember-time-tools
- Owner: lozjackson
- License: mit
- Created: 2016-03-21T16:56:30.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-04-15T16:02:31.000Z (over 6 years ago)
- Last Synced: 2024-10-08T17:29:24.260Z (3 months ago)
- Topics: calendar, date, datepicker, ember, time, timepicker
- Language: JavaScript
- Homepage: http://lozjackson.github.io/ember-time-tools/
- Size: 1.95 MB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Ember-time-tools
This Ember-cli addon provides date and time related tools for Ember applications.
The primary components consist of a date-picker, time-picker and a calendar.## Demo
http://lozjackson.github.io/ember-time-tools/
## Installation
* `ember install ember-time-tools`
## Use
## DatePicker
Create a DatePickerComponent using the following example:
```
{{date-picker selectedDate=selectedDate select=(action "select")}}
```You can use the InputDateComponent to create a html `input` element and a DatePickerComponent in one.
```
{{input-date value=date}}
```## TimePicker
Create a TimePickerComponent using the following example:
```
{{time-picker selectedTime=selectedTime select=(action "select")}}
```You can use the InputTimeComponent to create a html `input` element and a TimePickerComponent in one.
```
{{input-time value=time}}
```## Calendar
You can create a CalendarMonthComponent using the following example:
```
{{calendar-month events=model}}
```## Compatibility
Ember version ^2.0 is required for this addon to function correctly. Ember v1.x is not supported.