pickadate-rails 3.5.3.0 → 3.5.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/pickadate-rails/version.rb +1 -1
- data/vendor/assets/javascripts/pickadate/picker.date.js +22 -17
- data/vendor/assets/javascripts/pickadate/picker.js +10 -11
- data/vendor/assets/javascripts/pickadate/picker.time.js +1 -1
- data/vendor/assets/javascripts/pickadate/translations/es_ES.js +1 -0
- data/vendor/assets/javascripts/pickadate/translations/fr_FR.js +1 -0
- data/vendor/assets/javascripts/pickadate/translations/it_IT.js +3 -2
- data/vendor/assets/javascripts/pickadate/translations/ru_RU.js +3 -2
- data/vendor/assets/javascripts/pickadate/translations/sk_SK.js +3 -2
- data/vendor/assets/stylesheets/pickadate/classic.time.css +1 -0
- data/vendor/assets/stylesheets/pickadate/default.time.css +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b8c988b830fbfebffec05bc42aa384cef86b593b
|
4
|
+
data.tar.gz: b812ba0d63c6779f8ebf900c1e067b867993a08b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c6bc321378c9af93eb96ae0a26196ec4f39523ac79ce9b57989eb06ac0095cc655b3533cc55b953e86192b60fe0000e9392a8ef804fca6e0df0ebec876c53d96
|
7
|
+
data.tar.gz: 343ebb4e6b2904fbfdc934b27cf2f060c387159ca799f5b45e94671dbc11371901e09884f083dd8a6d9a5bb8e3ad832d2da2d52ef760eef917cc3615210b8557
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Pickadate-Rails [![Gem Version](https://badge.fury.io/rb/pickadate-rails.png)](http://badge.fury.io/rb/pickadate-rails)
|
2
2
|
|
3
|
-
## Pickadate Version: 3.5.
|
3
|
+
## Pickadate Version: 3.5.4
|
4
4
|
|
5
5
|
Easily add [pickadate.js](https://github.com/amsul/pickadate.js) to your Rails 3.1+ application using the asset pipeline.
|
6
6
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
|
2
2
|
/*!
|
3
|
-
* Date picker for pickadate.js v3.5.
|
3
|
+
* Date picker for pickadate.js v3.5.4
|
4
4
|
* http://amsul.github.io/pickadate.js/date.htm
|
5
5
|
*/
|
6
6
|
|
@@ -102,10 +102,10 @@ function DatePicker( picker, settings ) {
|
|
102
102
|
37: function() { return isRTL() ? 1 : -1 }, // Left
|
103
103
|
go: function( timeChange ) {
|
104
104
|
var highlightedObject = calendar.item.highlight,
|
105
|
-
targetDate = new Date( highlightedObject.year, highlightedObject.month, highlightedObject.date + timeChange )
|
105
|
+
targetDate = new Date( Date.UTC(highlightedObject.year, highlightedObject.month, highlightedObject.date + timeChange) )
|
106
106
|
calendar.set(
|
107
107
|
'highlight',
|
108
|
-
|
108
|
+
targetDate,
|
109
109
|
{ interval: timeChange }
|
110
110
|
)
|
111
111
|
this.render()
|
@@ -222,15 +222,20 @@ DatePicker.prototype.create = function( type, value, options ) {
|
|
222
222
|
// If it’s an array, convert it into a date and make sure
|
223
223
|
// that it’s a valid date – otherwise default to today.
|
224
224
|
else if ( $.isArray( value ) ) {
|
225
|
-
value = new Date(
|
225
|
+
value = new Date(Date.UTC(value[ 0 ], value[ 1 ], value[ 2 ] ))
|
226
226
|
value = _.isDate( value ) ? value : calendar.create().obj
|
227
227
|
}
|
228
228
|
|
229
|
-
// If it’s a number
|
230
|
-
else if ( _.isInteger( value )
|
229
|
+
// If it’s a number, make a normalized date.
|
230
|
+
else if ( _.isInteger( value ) ) {
|
231
231
|
value = calendar.normalize( new Date( value ), options )
|
232
232
|
}
|
233
233
|
|
234
|
+
// If it’s a date object, make a normalized date.
|
235
|
+
else if ( _.isDate( value ) ) {
|
236
|
+
value = calendar.normalize( value, options )
|
237
|
+
}
|
238
|
+
|
234
239
|
// If it’s a literal true or any other case, set it to now.
|
235
240
|
else /*if ( value === true )*/ {
|
236
241
|
value = calendar.now( type, value, options )
|
@@ -238,10 +243,10 @@ DatePicker.prototype.create = function( type, value, options ) {
|
|
238
243
|
|
239
244
|
// Return the compiled object.
|
240
245
|
return {
|
241
|
-
year: isInfiniteValue || value.
|
242
|
-
month: isInfiniteValue || value.
|
243
|
-
date: isInfiniteValue || value.
|
244
|
-
day: isInfiniteValue || value.
|
246
|
+
year: isInfiniteValue || value.getUTCFullYear(),
|
247
|
+
month: isInfiniteValue || value.getUTCMonth(),
|
248
|
+
date: isInfiniteValue || value.getUTCDate(),
|
249
|
+
day: isInfiniteValue || value.getUTCDay(),
|
245
250
|
obj: isInfiniteValue || value,
|
246
251
|
pick: isInfiniteValue || value.getTime()
|
247
252
|
}
|
@@ -316,7 +321,7 @@ DatePicker.prototype.overlapRanges = function( one, two ) {
|
|
316
321
|
DatePicker.prototype.now = function( type, value, options ) {
|
317
322
|
value = new Date()
|
318
323
|
if ( options && options.rel ) {
|
319
|
-
value.
|
324
|
+
value.setUTCDate( value.getUTCDate() + options.rel )
|
320
325
|
}
|
321
326
|
return this.normalize( value, options )
|
322
327
|
}
|
@@ -358,13 +363,13 @@ DatePicker.prototype.navigate = function( type, value, options ) {
|
|
358
363
|
}
|
359
364
|
|
360
365
|
// Figure out the expected target year and month.
|
361
|
-
targetDateObject = new Date( targetYear, targetMonth + ( options && options.nav ? options.nav : 0 ), 1 )
|
362
|
-
targetYear = targetDateObject.
|
363
|
-
targetMonth = targetDateObject.
|
366
|
+
targetDateObject = new Date( Date.UTC( targetYear, targetMonth + ( options && options.nav ? options.nav : 0 ), 1 ) )
|
367
|
+
targetYear = targetDateObject.getUTCFullYear()
|
368
|
+
targetMonth = targetDateObject.getUTCMonth()
|
364
369
|
|
365
370
|
// If the month we’re going to doesn’t have enough days,
|
366
371
|
// keep decreasing the date until we reach the month’s last date.
|
367
|
-
while ( /*safety &&*/ new Date( targetYear, targetMonth, targetDate ).
|
372
|
+
while ( /*safety &&*/ new Date( Date.UTC( targetYear, targetMonth, targetDate ) ).getUTCMonth() !== targetMonth ) {
|
368
373
|
targetDate -= 1
|
369
374
|
/*safety -= 1
|
370
375
|
if ( !safety ) {
|
@@ -383,7 +388,7 @@ DatePicker.prototype.navigate = function( type, value, options ) {
|
|
383
388
|
* Normalize a date by setting the hours to midnight.
|
384
389
|
*/
|
385
390
|
DatePicker.prototype.normalize = function( value/*, options*/ ) {
|
386
|
-
value.
|
391
|
+
value.setUTCHours( 0, 0, 0, 0 )
|
387
392
|
return value
|
388
393
|
}
|
389
394
|
|
@@ -928,7 +933,7 @@ DatePicker.prototype.activate = function( type, datesToEnable ) {
|
|
928
933
|
if ( !matchFound[3] ) matchFound.push( 'inverted' )
|
929
934
|
}
|
930
935
|
else if ( _.isDate( unitToEnable ) ) {
|
931
|
-
matchFound = [ unitToEnable.
|
936
|
+
matchFound = [ unitToEnable.getUTCFullYear(), unitToEnable.getUTCMonth(), unitToEnable.getUTCDate(), 'inverted' ]
|
932
937
|
}
|
933
938
|
break
|
934
939
|
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* pickadate.js v3.5.
|
2
|
+
* pickadate.js v3.5.4, 2014/09/11
|
3
3
|
* By Amsul, http://amsul.ca
|
4
4
|
* Hosted on http://amsul.github.io/pickadate.js
|
5
5
|
* Licensed under MIT
|
@@ -684,7 +684,7 @@ function PickerConstructor( ELEMENT, NAME, COMPONENT, OPTIONS ) {
|
|
684
684
|
}).
|
685
685
|
|
686
686
|
// If there’s a click on an actionable element, carry out the actions.
|
687
|
-
on( 'click', '[data-pick], [data-nav], [data-clear]', function() {
|
687
|
+
on( 'click', '[data-pick], [data-nav], [data-clear], [data-close]', function() {
|
688
688
|
|
689
689
|
var $target = $( this ),
|
690
690
|
targetData = $target.data(),
|
@@ -701,12 +701,12 @@ function PickerConstructor( ELEMENT, NAME, COMPONENT, OPTIONS ) {
|
|
701
701
|
}
|
702
702
|
|
703
703
|
// If something is superficially changed, update the `highlight` based on the `nav`.
|
704
|
-
if ( targetData.nav
|
704
|
+
if ( !targetDisabled && targetData.nav ) {
|
705
705
|
P.set( 'highlight', P.component.item.highlight, { nav: targetData.nav } )
|
706
706
|
}
|
707
707
|
|
708
708
|
// If something is picked, set `select` then close with focus.
|
709
|
-
else if (
|
709
|
+
else if ( !targetDisabled && 'pick' in targetData ) {
|
710
710
|
P.set( 'select', targetData.pick ).close( true )
|
711
711
|
}
|
712
712
|
|
@@ -714,9 +714,11 @@ function PickerConstructor( ELEMENT, NAME, COMPONENT, OPTIONS ) {
|
|
714
714
|
else if ( targetData.clear ) {
|
715
715
|
P.clear().close( true )
|
716
716
|
}
|
717
|
-
|
718
|
-
|
719
|
-
|
717
|
+
|
718
|
+
else if ( targetData.close ) {
|
719
|
+
P.close( true )
|
720
|
+
}
|
721
|
+
|
720
722
|
}) //P.$root
|
721
723
|
|
722
724
|
aria( P.$root[0], 'hidden', true )
|
@@ -749,9 +751,6 @@ function PickerConstructor( ELEMENT, NAME, COMPONENT, OPTIONS ) {
|
|
749
751
|
// Create the name using the original input’s with a prefix and suffix.
|
750
752
|
'name="' + name + '"' +
|
751
753
|
|
752
|
-
// Create the ID using the original input’s; only if it has one.
|
753
|
-
(ELEMENT.id ? 'id="' + ELEMENT.id + '_hidden"' : '') +
|
754
|
-
|
755
754
|
// If the element has a value, set the hidden value as well.
|
756
755
|
(
|
757
756
|
$ELEMENT.data('value') || ELEMENT.value ?
|
@@ -979,7 +978,7 @@ PickerConstructor._ = {
|
|
979
978
|
* Tell if something is a date object.
|
980
979
|
*/
|
981
980
|
isDate: function( value ) {
|
982
|
-
return {}.toString.call( value ).indexOf( 'Date' ) > -1 && this.isInteger( value.
|
981
|
+
return {}.toString.call( value ).indexOf( 'Date' ) > -1 && this.isInteger( value.getUTCDate() )
|
983
982
|
},
|
984
983
|
|
985
984
|
|
@@ -5,8 +5,9 @@ jQuery.extend( jQuery.fn.pickadate.defaults, {
|
|
5
5
|
monthsShort: [ 'gen', 'feb', 'mar', 'apr', 'mag', 'giu', 'lug', 'ago', 'set', 'ott', 'nov', 'dic' ],
|
6
6
|
weekdaysFull: [ 'domenica', 'lunedì', 'martedì', 'mercoledì', 'giovedì', 'venerdì', 'sabato' ],
|
7
7
|
weekdaysShort: [ 'dom', 'lun', 'mar', 'mer', 'gio', 'ven', 'sab' ],
|
8
|
-
today: '
|
9
|
-
clear: '
|
8
|
+
today: 'Oggi',
|
9
|
+
clear: 'Cancellare',
|
10
|
+
close: 'Chiudi',
|
10
11
|
firstDay: 1,
|
11
12
|
format: 'dddd d mmmm yyyy',
|
12
13
|
formatSubmit: 'yyyy/mm/dd'
|
@@ -1,12 +1,13 @@
|
|
1
1
|
// Russian
|
2
2
|
|
3
3
|
jQuery.extend( jQuery.fn.pickadate.defaults, {
|
4
|
-
monthsFull: [ '
|
5
|
-
monthsShort: [ '
|
4
|
+
monthsFull: [ 'января', 'февраля', 'марта', 'апреля', 'мая', 'июня', 'июля', 'августа', 'сентября', 'октября', 'ноября', 'декабря' ],
|
5
|
+
monthsShort: [ 'янв', 'фев', 'мар', 'апр', 'май', 'июн', 'июл', 'авг', 'сен', 'окт', 'ноя', 'дек' ],
|
6
6
|
weekdaysFull: [ 'воскресенье', 'понедельник', 'вторник', 'среда', 'четверг', 'пятница', 'суббота' ],
|
7
7
|
weekdaysShort: [ 'вс', 'пн', 'вт', 'ср', 'чт', 'пт', 'сб' ],
|
8
8
|
today: 'сегодня',
|
9
9
|
clear: 'удалить',
|
10
|
+
close: 'закрыть',
|
10
11
|
firstDay: 1,
|
11
12
|
format: 'd mmmm yyyy г.',
|
12
13
|
formatSubmit: 'yyyy/mm/dd'
|
@@ -2,11 +2,12 @@
|
|
2
2
|
|
3
3
|
jQuery.extend( jQuery.fn.pickadate.defaults, {
|
4
4
|
monthsFull: [ 'január', 'február', 'marec', 'apríl', 'máj', 'jún', 'júl', 'august', 'september', 'október', 'november', 'december' ],
|
5
|
-
monthsShort: [ '
|
6
|
-
weekdaysFull: [ '
|
5
|
+
monthsShort: [ 'jan', 'feb', 'mar', 'apr', 'máj', 'jún', 'júl', 'aug', 'sep', 'okt', 'nov', 'dec' ],
|
6
|
+
weekdaysFull: [ 'nedeľa', 'pondelok', 'utorok', 'streda', 'štvrtok', 'piatok', 'sobota' ],
|
7
7
|
weekdaysShort: [ 'Ne', 'Po', 'Ut', 'St', 'Št', 'Pi', 'So' ],
|
8
8
|
today: 'dnes',
|
9
9
|
clear: 'vymazať',
|
10
|
+
close: 'zavrieť',
|
10
11
|
firstDay: 1,
|
11
12
|
format: 'd. mmmm yyyy',
|
12
13
|
formatSubmit: 'yyyy/mm/dd'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pickadate-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.5.
|
4
|
+
version: 3.5.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeff Fraser
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-10-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|