-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathChanges
70 lines (52 loc) · 2.38 KB
/
Changes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
Change log for jquery.datetextentry plugin.
For full commit history see:
https://github.com/grantm/jquery-datetextentry/commits/master
2.0.16 2020-09-09
* make aria-label more descriptive when focus moves fields automatically
2.0.15 2019-09-26
* add inputmode="numeric" to date input fields
* whitelist keyCode 229 in keyUp events when assessing whether to advance
2.0.14 2019-07-21
* add the 'is_required' option
* update all calls to 'throw' to use a custom Error object rather than a
string, with error object tracking which subfield triggered the error
* Switch linting to ESLint
2.0.13 2017-09-25
* reorganise documentation & example files to remove duplication
* fix issues raised by JSHint
2.0.12 2015-10-01
* alter ARIA label to include the format suggestion
2.0.11 2020-06-08
* revise focus handling so that blur event happens before focus event
2.0.10 2015-06-08
* fix validation of DD + MM (without YYYY) - broken by previous commit
2.0.9 2014-04-27
* fix #1 where focus advanced 2 fields instead of 1
* fix class name applied to sub-field input elements
* add aria-label to sub-field input elements for improved accessibility
2.0.8 2014-03-10
* added set_readonly method to make date field non-editable
* throw a better error if call is made to non-existent method
2.0.7 2013-12-19
* work around IE8 not understanding negative offset to substr
2.0.6 2013-11-18
* add the (as-yet-undocumented) widget_error_text() method
2.0.5 2013-11-17
* more fixes for 'clear' api call not clearing all internal state
2.0.4 2013-11-07
* add a 'destroy' method to remove date widget functionality
* apply zero padding more consistently
* improve handling of different types passed to min_date & max_date
2.0.3 2013-11-03
* fix auto-advance not working when digits keyed via numeric keypad
* add 'show_errors' boolean option for better custom error handling
* add 'on_blur' callback option to track when widget loses focus
2.0.2 2013-10-31
* fix 'clear' api call not clearing underlying input element
* disable word-wrapping of sub-fields
* add some regression tests
* add a Changes file
2.0.1 2013-03-19
* initial release on jQuery plugins site
* complete rewrite in cleaner object style, add support for API methods
* requires jQuery 1.6 or later for :focus selector support