Skip to content

Commit

Permalink
fix minDate, maxDate params; upd deps version
Browse files Browse the repository at this point in the history
  • Loading branch information
scoletti committed Dec 27, 2017
1 parent 80d9b08 commit 358b42c
Show file tree
Hide file tree
Showing 9 changed files with 4,500 additions and 23 deletions.
8 changes: 4 additions & 4 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mdPickers",
"version": "0.7.13",
"version": "0.7.14",
"homepage": "https://github.com/simonered/mdPickers",
"authors": [
"simonered"
Expand All @@ -26,9 +26,9 @@
"tests"
],
"dependencies": {
"angular": "~1.6.2",
"angular-material": "~1.1.3",
"moment": "~2.17.1",
"angular": "~1.6.7",
"angular-material": "~1.1.5",
"moment": "~2.20.1",
"bowser" : "latest"
}
}
9 changes: 6 additions & 3 deletions dist/mdPickers.css
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@
padding: 0;
min-width: 0px;
min-height: 0px;
box-shadow: none !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
background-color: transparent;
}
.mdp-calendar-days {
Expand All @@ -117,7 +118,8 @@
padding: 0;
min-width: 0px;
min-height: 0px;
box-shadow: none !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
background-color: transparent;
}
.mdp-calendar-days .md-button[disabled] {
Expand Down Expand Up @@ -263,7 +265,8 @@ mdp-calendar {
background: #ededed;
}
.mdp-clock .md-button {
box-shadow: none !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
background-color: transparent;
display: block;
position: absolute;
Expand Down
4 changes: 2 additions & 2 deletions dist/mdPickers.js
Original file line number Diff line number Diff line change
Expand Up @@ -358,8 +358,8 @@ module.directive("mdpDatePicker", ["$mdpDatePicker", "$timeout", function($mdpDa

$mdpDatePicker(ngModel.$modelValue, {
targetEvent: ev,
autoSwitch: scope.minDate,
minDate: scope.maxDate,
minDate: scope.minDate,
maxDate: scope.maxDate,
useUtc: scope.useUtc,
utcOffset: scope.utcOffset,
fullscreen: scope.fullscreen || false
Expand Down
2 changes: 1 addition & 1 deletion dist/mdPickers.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/mdPickers.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/mdPickers.min.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 358b42c

Please sign in to comment.