Skip to content

Commit

Permalink
Prepping v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
indrimuska committed Aug 24, 2016
1 parent 6d1424e commit b461bf2
Show file tree
Hide file tree
Showing 7 changed files with 151 additions and 52 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,10 @@ max-view | `"minute"` | Maximum navigable view.
start-view | `"year"` | Initial view when the picker is open.
min-date | | Two-way bindable property representing the minimum selectable date in the same format of the value.
max-date | | Two-way bindable property representing the maximum selectable date in the same format of the value.
today | `false` | Highlights the current day.
disable | `false` | Disables the picker if truly.
autoclose | `true` | Closes the picker after selecting a date.
today | `false` | Highlights the current day.
keyboard | `false` | Allows using the keyboard to navigate the picker.

## Events

Expand Down Expand Up @@ -114,8 +115,9 @@ format | `"L LTS"` | Format of the output value and min/max date. <sup>1</sup>
min-view | `"decade"` | Minimum navigable view.
max-view | `"minute"` | Maximum navigable view.
start-view | `"year"` | Initial view after picker opening.
today | `false` | Highlights the current day.
autoclose | `true` | Closes the picker after selecting a date.
today | `false` | Highlights the current day.
keyboard | `false` | Allows using the keyboard to navigate the picker.
left-arrow | `"&larr;"` | Left arrow string (HTML allowed).
right-arrow | `"&rarr;"` | Right arrow string (HTML allowed).
yearsFormat | `"YYYY"` | Years format in `decade` view.
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-moment-picker",
"version": "0.5.7",
"version": "0.6.0",
"authors": [
"Indri Muska <[email protected]>"
],
Expand Down
8 changes: 7 additions & 1 deletion dist/angular-moment-picker.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Angular Moment Picker - v0.5.7 - https://github.com/indrimuska/angular-moment-picker - (c) 2015 Indri Muska - MIT */
/*! Angular Moment Picker - v0.6.0 - https://github.com/indrimuska/angular-moment-picker - (c) 2015 Indri Muska - MIT */
.moment-picker { position: relative; display: block; }
.moment-picker .moment-picker-contents { cursor: pointer; }
.moment-picker .moment-picker-container { color: #404040; min-width: 15em; background: #fff; padding: 4px; border: 1px solid #f0f3f4; border-radius: 4px; position: absolute;
Expand Down Expand Up @@ -43,6 +43,12 @@
background-image: -ms-linear-gradient(#45b1e8, #3097de);
background-image: -o-linear-gradient(#45b1e8, #3097de);
background-image: linear-gradient(#45b1e8, #3097de); }
.moment-picker td.highlighted { background: rgba(0, 0, 0, .15)
background-image: -webkit-radial-gradient(transparent, rgba(0, 0, 0, .1));
background-image: -moz-radial-gradient(transparent, rgba(0, 0, 0, .1));
background-image: -ms-radial-gradient(transparent, rgba(0, 0, 0, .1));
background-image: -o-radial-gradient(transparent, rgba(0, 0, 0, .1));
background-image: radial-gradient(transparent, rgba(0, 0, 0, .1)); }
.moment-picker th.disabled,
.moment-picker th.disabled:hover,
.moment-picker td.disabled,
Expand Down
Loading

0 comments on commit b461bf2

Please sign in to comment.