Skip to content

Commit

Permalink
Merge branch 'Pikaday:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
measuredweighed authored May 17, 2023
2 parents 704777f 21f676e commit 11778d5
Show file tree
Hide file tree
Showing 10 changed files with 703 additions and 779 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 1,16 @@
# Changelog

## 1.8.2 - 2020-10-22

- Properly parse date string, fixes #735 #755 #688
- Cleaner packages, see #542 #580
- Add space for XHTML, fixes #526
- CSS fixes, see #431 #430 #809 #883 #237 #869 #869 #730
- Add clear functionality, see #720
- Use unique IDs, fixes #650
- Bubble event on left arrow, fixes #710
- Show week numbers based on ISO 8601 by default, fixes #388 #825

## 1.8.0 - 2018-10-17

- Remove testling because service is not running atm
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 144,7 @@ Pikaday has many useful options:
* `field` bind the datepicker to a form field
* `trigger` use a different element to trigger opening the datepicker, see [trigger example][] (default to `field`)
* `bound` automatically show/hide the datepicker on `field` focus (default `true` if `field` is set)
* `ariaLabel` data-attribute on the input field with an aria assistance tekst (only applied when `bound` is set)
* `ariaLabel` data-attribute on the input field with an aria assistance text (only applied when `bound` is set)
* `position` preferred position of the datepicker relative to the form field, e.g.: `top right`, `bottom right` **Note:** automatic adjustment may occur to avoid datepicker from being displayed outside the viewport, see [positions example][] (default to 'bottom left')
* `reposition` can be set to false to not reposition datepicker within the viewport, forcing it to take the configured `position` (default: true)
* `container` DOM node to render calendar into, see [container example][] (default: undefined)
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 2,7 @@
"name": "pikaday",
"repo": "dbushell/Pikaday",
"description": "A refreshing JavaScript Datepicker — lightweight, no dependencies, modular CSS",
"version": "1.8.0",
"version": "1.8.2",
"keywords": [
"datepicker",
"calendar",
Expand Down
3 changes: 2 additions & 1 deletion css/pikaday.css
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 151,9 @@ http://nicolasgallagher.com/micro-clearfix-hack/
color: #666;
font-size: 12px;
line-height: 15px;
text-align: right;
text-align: center;
background: #f5f5f5;
height: initial;
}

.pika-week {
Expand Down
2 changes: 1 addition & 1 deletion examples/moment.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 28,7 @@ <h2>What is this?</h2>
<p class="small">Copyright © 2014 <a href="https://dbushell.com/">David Bushell</a> | BSD &amp; MIT license | Example by <a href="https://github.com/rikkert">Ramiro Rikkert</a></p>


<script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.5.1/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js"></script>
<script src="../pikaday.js"></script>
<script>

Expand Down
Loading

0 comments on commit 11778d5

Please sign in to comment.