Skip to content
This repository was archived by the owner on Jun 5, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
/bower_components
.sass-cache
*.map
.idea/
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@

## Changelog:

0.1.1
- loosen momentjs dependecy ([#8](https://github.com/monterail/angular-mighty-datepicker/pull/8)) by [@mrodrigues](https://github.com/mrodrigues)

0.1.0
- added explicit dependency ([#9](https://github.com/monterail/angular-mighty-datepicker/pull/9)) by [@Jaspur](https://github.com/Jaspur)
- fixed missing week in January for leap year ([#16](https://github.com/monterail/angular-mighty-datepicker/pull/16)) by [@metrox](https://github.com/metrox)

0.0.18
- when two datepickers are used for range selection, additional parameters (`range-from` and `range-to`) allow to highlight selected time range

0.0.17
- updating model in `simple` mode fixed (not tangling with model anymore)

Expand Down
10 changes: 6 additions & 4 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
{

"name": "angular-mighty-datepicker",
"version": "0.0.17",
"version": "0.1.1",
"authors": [
"Krzysztof Jung <krzysztof.jung@monterail.com>",
"Patryk Peas <patryk.peas@monterail.com>",
"Kamil Nicieja <kamil.nicieja@monterail.com>",
"Bartosz Erbert <bartosz.erbert@monterail.com>"
],
"repository": "git://github.com/monterail/angular-mighty-datepicker.git",
"repository": "git://github.com/dzincolorado/angular-mighty-datepicker-strict.git",
"description": "Angular based datepicker with mighty options",
"main": [
"build/angular-mighty-datepicker.js",
"build/angular-mighty-datepicker.css"
],
"ignore": [],
"dependencies": {
"angular": ">= 1.2",
"angular-bindonce": "*",
"moment": "~2.6.0",
"moment-range": "~1.0.1"
"moment": ">= 2.6.0",
"moment-range": "2.2.0"
},
"license": "MIT",
"homepage": "http://github.com/monterail/angular-mighty-datepicker"
Expand Down
8 changes: 6 additions & 2 deletions build/angular-mighty-datepicker.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
.mighty-picker-calendar__day {
cursor: pointer;
position: relative;
color: #333;
}
.mighty-picker-calendar__day--disabled {
color: #aaa;
cursor: auto;
}
.mighty-picker-calendar__day--in-range {
color: #347ab3;
font-weight: bold;
}
.mighty-picker-calendar__day-marker-wrapper {
position: relative;
}
Expand All @@ -25,8 +30,7 @@
font-weight: bold;
}
.mighty-picker-calendar__day--selected {
color: #3b5;
font-weight: bold;
background-color: #ffe684;
}
.mighty-picker__month {
display: inline-block;
Expand Down
Loading