mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 09:49:28 +02:00
node_modules
This commit is contained in:
parent
6fa46f4e34
commit
680eb33f0d
4375 changed files with 1042080 additions and 6 deletions
23
node_modules/jquery-ui/ui/core.js
generated
vendored
Normal file
23
node_modules/jquery-ui/ui/core.js
generated
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
// This file is deprecated in 1.12.0 to be removed in 1.14
|
||||
( function() {
|
||||
"use strict";
|
||||
|
||||
define( [
|
||||
"jquery",
|
||||
"./data",
|
||||
"./disable-selection",
|
||||
"./focusable",
|
||||
"./form",
|
||||
"./ie",
|
||||
"./keycode",
|
||||
"./labels",
|
||||
"./jquery-patch.js",
|
||||
"./plugin",
|
||||
"./safe-active-element",
|
||||
"./safe-blur",
|
||||
"./scroll-parent",
|
||||
"./tabbable",
|
||||
"./unique-id",
|
||||
"./version"
|
||||
] );
|
||||
} )();
|
43
node_modules/jquery-ui/ui/data.js
generated
vendored
Normal file
43
node_modules/jquery-ui/ui/data.js
generated
vendored
Normal file
|
@ -0,0 +1,43 @@
|
|||
/*!
|
||||
* jQuery UI :data 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: :data Selector
|
||||
//>>group: Core
|
||||
//>>description: Selects elements which have data stored under the specified key.
|
||||
//>>docs: http://api.jqueryui.com/data-selector/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "jquery", "./version" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
}
|
||||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
return $.extend( $.expr.pseudos, {
|
||||
data: $.expr.createPseudo ?
|
||||
$.expr.createPseudo( function( dataName ) {
|
||||
return function( elem ) {
|
||||
return !!$.data( elem, dataName );
|
||||
};
|
||||
} ) :
|
||||
|
||||
// Support: jQuery <1.8
|
||||
function( elem, i, match ) {
|
||||
return !!$.data( elem, match[ 3 ] );
|
||||
}
|
||||
} );
|
||||
} );
|
49
node_modules/jquery-ui/ui/disable-selection.js
generated
vendored
Normal file
49
node_modules/jquery-ui/ui/disable-selection.js
generated
vendored
Normal file
|
@ -0,0 +1,49 @@
|
|||
/*!
|
||||
* jQuery UI Disable Selection 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: disableSelection
|
||||
//>>group: Core
|
||||
//>>description: Disable selection of text content within the set of matched elements.
|
||||
//>>docs: http://api.jqueryui.com/disableSelection/
|
||||
|
||||
// This file is deprecated
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "jquery", "./version" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
}
|
||||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
return $.fn.extend( {
|
||||
disableSelection: ( function() {
|
||||
var eventType = "onselectstart" in document.createElement( "div" ) ?
|
||||
"selectstart" :
|
||||
"mousedown";
|
||||
|
||||
return function() {
|
||||
return this.on( eventType + ".ui-disableSelection", function( event ) {
|
||||
event.preventDefault();
|
||||
} );
|
||||
};
|
||||
} )(),
|
||||
|
||||
enableSelection: function() {
|
||||
return this.off( ".ui-disableSelection" );
|
||||
}
|
||||
} );
|
||||
|
||||
} );
|
971
node_modules/jquery-ui/ui/effect.js
generated
vendored
Normal file
971
node_modules/jquery-ui/ui/effect.js
generated
vendored
Normal file
|
@ -0,0 +1,971 @@
|
|||
/*!
|
||||
* jQuery UI Effects 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Effects Core
|
||||
//>>group: Effects
|
||||
/* eslint-disable max-len */
|
||||
//>>description: Extends the internal jQuery effects. Includes morphing and easing. Required by all other effects.
|
||||
/* eslint-enable max-len */
|
||||
//>>docs: http://api.jqueryui.com/category/effects-core/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"./jquery-var-for-color",
|
||||
"./vendor/jquery-color/jquery.color",
|
||||
"./version"
|
||||
], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
}
|
||||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
var dataSpace = "ui-effects-",
|
||||
dataSpaceStyle = "ui-effects-style",
|
||||
dataSpaceAnimated = "ui-effects-animated";
|
||||
|
||||
$.effects = {
|
||||
effect: {}
|
||||
};
|
||||
|
||||
/******************************************************************************/
|
||||
/****************************** CLASS ANIMATIONS ******************************/
|
||||
/******************************************************************************/
|
||||
( function() {
|
||||
|
||||
var classAnimationActions = [ "add", "remove", "toggle" ],
|
||||
shorthandStyles = {
|
||||
border: 1,
|
||||
borderBottom: 1,
|
||||
borderColor: 1,
|
||||
borderLeft: 1,
|
||||
borderRight: 1,
|
||||
borderTop: 1,
|
||||
borderWidth: 1,
|
||||
margin: 1,
|
||||
padding: 1
|
||||
};
|
||||
|
||||
$.each(
|
||||
[ "borderLeftStyle", "borderRightStyle", "borderBottomStyle", "borderTopStyle" ],
|
||||
function( _, prop ) {
|
||||
$.fx.step[ prop ] = function( fx ) {
|
||||
if ( fx.end !== "none" && !fx.setAttr || fx.pos === 1 && !fx.setAttr ) {
|
||||
jQuery.style( fx.elem, prop, fx.end );
|
||||
fx.setAttr = true;
|
||||
}
|
||||
};
|
||||
}
|
||||
);
|
||||
|
||||
function camelCase( string ) {
|
||||
return string.replace( /-([\da-z])/gi, function( all, letter ) {
|
||||
return letter.toUpperCase();
|
||||
} );
|
||||
}
|
||||
|
||||
function getElementStyles( elem ) {
|
||||
var key, len,
|
||||
style = elem.ownerDocument.defaultView ?
|
||||
elem.ownerDocument.defaultView.getComputedStyle( elem, null ) :
|
||||
elem.currentStyle,
|
||||
styles = {};
|
||||
|
||||
if ( style && style.length && style[ 0 ] && style[ style[ 0 ] ] ) {
|
||||
len = style.length;
|
||||
while ( len-- ) {
|
||||
key = style[ len ];
|
||||
if ( typeof style[ key ] === "string" ) {
|
||||
styles[ camelCase( key ) ] = style[ key ];
|
||||
}
|
||||
}
|
||||
|
||||
// Support: Opera, IE <9
|
||||
} else {
|
||||
for ( key in style ) {
|
||||
if ( typeof style[ key ] === "string" ) {
|
||||
styles[ key ] = style[ key ];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return styles;
|
||||
}
|
||||
|
||||
function styleDifference( oldStyle, newStyle ) {
|
||||
var diff = {},
|
||||
name, value;
|
||||
|
||||
for ( name in newStyle ) {
|
||||
value = newStyle[ name ];
|
||||
if ( oldStyle[ name ] !== value ) {
|
||||
if ( !shorthandStyles[ name ] ) {
|
||||
if ( $.fx.step[ name ] || !isNaN( parseFloat( value ) ) ) {
|
||||
diff[ name ] = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return diff;
|
||||
}
|
||||
|
||||
// Support: jQuery <1.8
|
||||
if ( !$.fn.addBack ) {
|
||||
$.fn.addBack = function( selector ) {
|
||||
return this.add( selector == null ?
|
||||
this.prevObject : this.prevObject.filter( selector )
|
||||
);
|
||||
};
|
||||
}
|
||||
|
||||
$.effects.animateClass = function( value, duration, easing, callback ) {
|
||||
var o = $.speed( duration, easing, callback );
|
||||
|
||||
return this.queue( function() {
|
||||
var animated = $( this ),
|
||||
baseClass = animated.attr( "class" ) || "",
|
||||
applyClassChange,
|
||||
allAnimations = o.children ? animated.find( "*" ).addBack() : animated;
|
||||
|
||||
// Map the animated objects to store the original styles.
|
||||
allAnimations = allAnimations.map( function() {
|
||||
var el = $( this );
|
||||
return {
|
||||
el: el,
|
||||
start: getElementStyles( this )
|
||||
};
|
||||
} );
|
||||
|
||||
// Apply class change
|
||||
applyClassChange = function() {
|
||||
$.each( classAnimationActions, function( i, action ) {
|
||||
if ( value[ action ] ) {
|
||||
animated[ action + "Class" ]( value[ action ] );
|
||||
}
|
||||
} );
|
||||
};
|
||||
applyClassChange();
|
||||
|
||||
// Map all animated objects again - calculate new styles and diff
|
||||
allAnimations = allAnimations.map( function() {
|
||||
this.end = getElementStyles( this.el[ 0 ] );
|
||||
this.diff = styleDifference( this.start, this.end );
|
||||
return this;
|
||||
} );
|
||||
|
||||
// Apply original class
|
||||
animated.attr( "class", baseClass );
|
||||
|
||||
// Map all animated objects again - this time collecting a promise
|
||||
allAnimations = allAnimations.map( function() {
|
||||
var styleInfo = this,
|
||||
dfd = $.Deferred(),
|
||||
opts = $.extend( {}, o, {
|
||||
queue: false,
|
||||
complete: function() {
|
||||
dfd.resolve( styleInfo );
|
||||
}
|
||||
} );
|
||||
|
||||
this.el.animate( this.diff, opts );
|
||||
return dfd.promise();
|
||||
} );
|
||||
|
||||
// Once all animations have completed:
|
||||
$.when.apply( $, allAnimations.get() ).done( function() {
|
||||
|
||||
// Set the final class
|
||||
applyClassChange();
|
||||
|
||||
// For each animated element,
|
||||
// clear all css properties that were animated
|
||||
$.each( arguments, function() {
|
||||
var el = this.el;
|
||||
$.each( this.diff, function( key ) {
|
||||
el.css( key, "" );
|
||||
} );
|
||||
} );
|
||||
|
||||
// This is guarnteed to be there if you use jQuery.speed()
|
||||
// it also handles dequeuing the next anim...
|
||||
o.complete.call( animated[ 0 ] );
|
||||
} );
|
||||
} );
|
||||
};
|
||||
|
||||
$.fn.extend( {
|
||||
addClass: ( function( orig ) {
|
||||
return function( classNames, speed, easing, callback ) {
|
||||
return speed ?
|
||||
$.effects.animateClass.call( this,
|
||||
{ add: classNames }, speed, easing, callback ) :
|
||||
orig.apply( this, arguments );
|
||||
};
|
||||
} )( $.fn.addClass ),
|
||||
|
||||
removeClass: ( function( orig ) {
|
||||
return function( classNames, speed, easing, callback ) {
|
||||
return arguments.length > 1 ?
|
||||
$.effects.animateClass.call( this,
|
||||
{ remove: classNames }, speed, easing, callback ) :
|
||||
orig.apply( this, arguments );
|
||||
};
|
||||
} )( $.fn.removeClass ),
|
||||
|
||||
toggleClass: ( function( orig ) {
|
||||
return function( classNames, force, speed, easing, callback ) {
|
||||
if ( typeof force === "boolean" || force === undefined ) {
|
||||
if ( !speed ) {
|
||||
|
||||
// Without speed parameter
|
||||
return orig.apply( this, arguments );
|
||||
} else {
|
||||
return $.effects.animateClass.call( this,
|
||||
( force ? { add: classNames } : { remove: classNames } ),
|
||||
speed, easing, callback );
|
||||
}
|
||||
} else {
|
||||
|
||||
// Without force parameter
|
||||
return $.effects.animateClass.call( this,
|
||||
{ toggle: classNames }, force, speed, easing );
|
||||
}
|
||||
};
|
||||
} )( $.fn.toggleClass ),
|
||||
|
||||
switchClass: function( remove, add, speed, easing, callback ) {
|
||||
return $.effects.animateClass.call( this, {
|
||||
add: add,
|
||||
remove: remove
|
||||
}, speed, easing, callback );
|
||||
}
|
||||
} );
|
||||
|
||||
} )();
|
||||
|
||||
/******************************************************************************/
|
||||
/*********************************** EFFECTS **********************************/
|
||||
/******************************************************************************/
|
||||
|
||||
( function() {
|
||||
|
||||
if ( $.expr && $.expr.pseudos && $.expr.pseudos.animated ) {
|
||||
$.expr.pseudos.animated = ( function( orig ) {
|
||||
return function( elem ) {
|
||||
return !!$( elem ).data( dataSpaceAnimated ) || orig( elem );
|
||||
};
|
||||
} )( $.expr.pseudos.animated );
|
||||
}
|
||||
|
||||
if ( $.uiBackCompat !== false ) {
|
||||
$.extend( $.effects, {
|
||||
|
||||
// Saves a set of properties in a data storage
|
||||
save: function( element, set ) {
|
||||
var i = 0, length = set.length;
|
||||
for ( ; i < length; i++ ) {
|
||||
if ( set[ i ] !== null ) {
|
||||
element.data( dataSpace + set[ i ], element[ 0 ].style[ set[ i ] ] );
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
// Restores a set of previously saved properties from a data storage
|
||||
restore: function( element, set ) {
|
||||
var val, i = 0, length = set.length;
|
||||
for ( ; i < length; i++ ) {
|
||||
if ( set[ i ] !== null ) {
|
||||
val = element.data( dataSpace + set[ i ] );
|
||||
element.css( set[ i ], val );
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
setMode: function( el, mode ) {
|
||||
if ( mode === "toggle" ) {
|
||||
mode = el.is( ":hidden" ) ? "show" : "hide";
|
||||
}
|
||||
return mode;
|
||||
},
|
||||
|
||||
// Wraps the element around a wrapper that copies position properties
|
||||
createWrapper: function( element ) {
|
||||
|
||||
// If the element is already wrapped, return it
|
||||
if ( element.parent().is( ".ui-effects-wrapper" ) ) {
|
||||
return element.parent();
|
||||
}
|
||||
|
||||
// Wrap the element
|
||||
var props = {
|
||||
width: element.outerWidth( true ),
|
||||
height: element.outerHeight( true ),
|
||||
"float": element.css( "float" )
|
||||
},
|
||||
wrapper = $( "<div></div>" )
|
||||
.addClass( "ui-effects-wrapper" )
|
||||
.css( {
|
||||
fontSize: "100%",
|
||||
background: "transparent",
|
||||
border: "none",
|
||||
margin: 0,
|
||||
padding: 0
|
||||
} ),
|
||||
|
||||
// Store the size in case width/height are defined in % - Fixes #5245
|
||||
size = {
|
||||
width: element.width(),
|
||||
height: element.height()
|
||||
},
|
||||
active = document.activeElement;
|
||||
|
||||
// Support: Firefox
|
||||
// Firefox incorrectly exposes anonymous content
|
||||
// https://bugzilla.mozilla.org/show_bug.cgi?id=561664
|
||||
try {
|
||||
// eslint-disable-next-line no-unused-expressions
|
||||
active.id;
|
||||
} catch ( e ) {
|
||||
active = document.body;
|
||||
}
|
||||
|
||||
element.wrap( wrapper );
|
||||
|
||||
// Fixes #7595 - Elements lose focus when wrapped.
|
||||
if ( element[ 0 ] === active || $.contains( element[ 0 ], active ) ) {
|
||||
$( active ).trigger( "focus" );
|
||||
}
|
||||
|
||||
// Hotfix for jQuery 1.4 since some change in wrap() seems to actually
|
||||
// lose the reference to the wrapped element
|
||||
wrapper = element.parent();
|
||||
|
||||
// Transfer positioning properties to the wrapper
|
||||
if ( element.css( "position" ) === "static" ) {
|
||||
wrapper.css( { position: "relative" } );
|
||||
element.css( { position: "relative" } );
|
||||
} else {
|
||||
$.extend( props, {
|
||||
position: element.css( "position" ),
|
||||
zIndex: element.css( "z-index" )
|
||||
} );
|
||||
$.each( [ "top", "left", "bottom", "right" ], function( i, pos ) {
|
||||
props[ pos ] = element.css( pos );
|
||||
if ( isNaN( parseInt( props[ pos ], 10 ) ) ) {
|
||||
props[ pos ] = "auto";
|
||||
}
|
||||
} );
|
||||
element.css( {
|
||||
position: "relative",
|
||||
top: 0,
|
||||
left: 0,
|
||||
right: "auto",
|
||||
bottom: "auto"
|
||||
} );
|
||||
}
|
||||
element.css( size );
|
||||
|
||||
return wrapper.css( props ).show();
|
||||
},
|
||||
|
||||
removeWrapper: function( element ) {
|
||||
var active = document.activeElement;
|
||||
|
||||
if ( element.parent().is( ".ui-effects-wrapper" ) ) {
|
||||
element.parent().replaceWith( element );
|
||||
|
||||
// Fixes #7595 - Elements lose focus when wrapped.
|
||||
if ( element[ 0 ] === active || $.contains( element[ 0 ], active ) ) {
|
||||
$( active ).trigger( "focus" );
|
||||
}
|
||||
}
|
||||
|
||||
return element;
|
||||
}
|
||||
} );
|
||||
}
|
||||
|
||||
$.extend( $.effects, {
|
||||
version: "1.13.1",
|
||||
|
||||
define: function( name, mode, effect ) {
|
||||
if ( !effect ) {
|
||||
effect = mode;
|
||||
mode = "effect";
|
||||
}
|
||||
|
||||
$.effects.effect[ name ] = effect;
|
||||
$.effects.effect[ name ].mode = mode;
|
||||
|
||||
return effect;
|
||||
},
|
||||
|
||||
scaledDimensions: function( element, percent, direction ) {
|
||||
if ( percent === 0 ) {
|
||||
return {
|
||||
height: 0,
|
||||
width: 0,
|
||||
outerHeight: 0,
|
||||
outerWidth: 0
|
||||
};
|
||||
}
|
||||
|
||||
var x = direction !== "horizontal" ? ( ( percent || 100 ) / 100 ) : 1,
|
||||
y = direction !== "vertical" ? ( ( percent || 100 ) / 100 ) : 1;
|
||||
|
||||
return {
|
||||
height: element.height() * y,
|
||||
width: element.width() * x,
|
||||
outerHeight: element.outerHeight() * y,
|
||||
outerWidth: element.outerWidth() * x
|
||||
};
|
||||
|
||||
},
|
||||
|
||||
clipToBox: function( animation ) {
|
||||
return {
|
||||
width: animation.clip.right - animation.clip.left,
|
||||
height: animation.clip.bottom - animation.clip.top,
|
||||
left: animation.clip.left,
|
||||
top: animation.clip.top
|
||||
};
|
||||
},
|
||||
|
||||
// Injects recently queued functions to be first in line (after "inprogress")
|
||||
unshift: function( element, queueLength, count ) {
|
||||
var queue = element.queue();
|
||||
|
||||
if ( queueLength > 1 ) {
|
||||
queue.splice.apply( queue,
|
||||
[ 1, 0 ].concat( queue.splice( queueLength, count ) ) );
|
||||
}
|
||||
element.dequeue();
|
||||
},
|
||||
|
||||
saveStyle: function( element ) {
|
||||
element.data( dataSpaceStyle, element[ 0 ].style.cssText );
|
||||
},
|
||||
|
||||
restoreStyle: function( element ) {
|
||||
element[ 0 ].style.cssText = element.data( dataSpaceStyle ) || "";
|
||||
element.removeData( dataSpaceStyle );
|
||||
},
|
||||
|
||||
mode: function( element, mode ) {
|
||||
var hidden = element.is( ":hidden" );
|
||||
|
||||
if ( mode === "toggle" ) {
|
||||
mode = hidden ? "show" : "hide";
|
||||
}
|
||||
if ( hidden ? mode === "hide" : mode === "show" ) {
|
||||
mode = "none";
|
||||
}
|
||||
return mode;
|
||||
},
|
||||
|
||||
// Translates a [top,left] array into a baseline value
|
||||
getBaseline: function( origin, original ) {
|
||||
var y, x;
|
||||
|
||||
switch ( origin[ 0 ] ) {
|
||||
case "top":
|
||||
y = 0;
|
||||
break;
|
||||
case "middle":
|
||||
y = 0.5;
|
||||
break;
|
||||
case "bottom":
|
||||
y = 1;
|
||||
break;
|
||||
default:
|
||||
y = origin[ 0 ] / original.height;
|
||||
}
|
||||
|
||||
switch ( origin[ 1 ] ) {
|
||||
case "left":
|
||||
x = 0;
|
||||
break;
|
||||
case "center":
|
||||
x = 0.5;
|
||||
break;
|
||||
case "right":
|
||||
x = 1;
|
||||
break;
|
||||
default:
|
||||
x = origin[ 1 ] / original.width;
|
||||
}
|
||||
|
||||
return {
|
||||
x: x,
|
||||
y: y
|
||||
};
|
||||
},
|
||||
|
||||
// Creates a placeholder element so that the original element can be made absolute
|
||||
createPlaceholder: function( element ) {
|
||||
var placeholder,
|
||||
cssPosition = element.css( "position" ),
|
||||
position = element.position();
|
||||
|
||||
// Lock in margins first to account for form elements, which
|
||||
// will change margin if you explicitly set height
|
||||
// see: http://jsfiddle.net/JZSMt/3/ https://bugs.webkit.org/show_bug.cgi?id=107380
|
||||
// Support: Safari
|
||||
element.css( {
|
||||
marginTop: element.css( "marginTop" ),
|
||||
marginBottom: element.css( "marginBottom" ),
|
||||
marginLeft: element.css( "marginLeft" ),
|
||||
marginRight: element.css( "marginRight" )
|
||||
} )
|
||||
.outerWidth( element.outerWidth() )
|
||||
.outerHeight( element.outerHeight() );
|
||||
|
||||
if ( /^(static|relative)/.test( cssPosition ) ) {
|
||||
cssPosition = "absolute";
|
||||
|
||||
placeholder = $( "<" + element[ 0 ].nodeName + ">" ).insertAfter( element ).css( {
|
||||
|
||||
// Convert inline to inline block to account for inline elements
|
||||
// that turn to inline block based on content (like img)
|
||||
display: /^(inline|ruby)/.test( element.css( "display" ) ) ?
|
||||
"inline-block" :
|
||||
"block",
|
||||
visibility: "hidden",
|
||||
|
||||
// Margins need to be set to account for margin collapse
|
||||
marginTop: element.css( "marginTop" ),
|
||||
marginBottom: element.css( "marginBottom" ),
|
||||
marginLeft: element.css( "marginLeft" ),
|
||||
marginRight: element.css( "marginRight" ),
|
||||
"float": element.css( "float" )
|
||||
} )
|
||||
.outerWidth( element.outerWidth() )
|
||||
.outerHeight( element.outerHeight() )
|
||||
.addClass( "ui-effects-placeholder" );
|
||||
|
||||
element.data( dataSpace + "placeholder", placeholder );
|
||||
}
|
||||
|
||||
element.css( {
|
||||
position: cssPosition,
|
||||
left: position.left,
|
||||
top: position.top
|
||||
} );
|
||||
|
||||
return placeholder;
|
||||
},
|
||||
|
||||
removePlaceholder: function( element ) {
|
||||
var dataKey = dataSpace + "placeholder",
|
||||
placeholder = element.data( dataKey );
|
||||
|
||||
if ( placeholder ) {
|
||||
placeholder.remove();
|
||||
element.removeData( dataKey );
|
||||
}
|
||||
},
|
||||
|
||||
// Removes a placeholder if it exists and restores
|
||||
// properties that were modified during placeholder creation
|
||||
cleanUp: function( element ) {
|
||||
$.effects.restoreStyle( element );
|
||||
$.effects.removePlaceholder( element );
|
||||
},
|
||||
|
||||
setTransition: function( element, list, factor, value ) {
|
||||
value = value || {};
|
||||
$.each( list, function( i, x ) {
|
||||
var unit = element.cssUnit( x );
|
||||
if ( unit[ 0 ] > 0 ) {
|
||||
value[ x ] = unit[ 0 ] * factor + unit[ 1 ];
|
||||
}
|
||||
} );
|
||||
return value;
|
||||
}
|
||||
} );
|
||||
|
||||
// Return an effect options object for the given parameters:
|
||||
function _normalizeArguments( effect, options, speed, callback ) {
|
||||
|
||||
// Allow passing all options as the first parameter
|
||||
if ( $.isPlainObject( effect ) ) {
|
||||
options = effect;
|
||||
effect = effect.effect;
|
||||
}
|
||||
|
||||
// Convert to an object
|
||||
effect = { effect: effect };
|
||||
|
||||
// Catch (effect, null, ...)
|
||||
if ( options == null ) {
|
||||
options = {};
|
||||
}
|
||||
|
||||
// Catch (effect, callback)
|
||||
if ( typeof options === "function" ) {
|
||||
callback = options;
|
||||
speed = null;
|
||||
options = {};
|
||||
}
|
||||
|
||||
// Catch (effect, speed, ?)
|
||||
if ( typeof options === "number" || $.fx.speeds[ options ] ) {
|
||||
callback = speed;
|
||||
speed = options;
|
||||
options = {};
|
||||
}
|
||||
|
||||
// Catch (effect, options, callback)
|
||||
if ( typeof speed === "function" ) {
|
||||
callback = speed;
|
||||
speed = null;
|
||||
}
|
||||
|
||||
// Add options to effect
|
||||
if ( options ) {
|
||||
$.extend( effect, options );
|
||||
}
|
||||
|
||||
speed = speed || options.duration;
|
||||
effect.duration = $.fx.off ? 0 :
|
||||
typeof speed === "number" ? speed :
|
||||
speed in $.fx.speeds ? $.fx.speeds[ speed ] :
|
||||
$.fx.speeds._default;
|
||||
|
||||
effect.complete = callback || options.complete;
|
||||
|
||||
return effect;
|
||||
}
|
||||
|
||||
function standardAnimationOption( option ) {
|
||||
|
||||
// Valid standard speeds (nothing, number, named speed)
|
||||
if ( !option || typeof option === "number" || $.fx.speeds[ option ] ) {
|
||||
return true;
|
||||
}
|
||||
|
||||
// Invalid strings - treat as "normal" speed
|
||||
if ( typeof option === "string" && !$.effects.effect[ option ] ) {
|
||||
return true;
|
||||
}
|
||||
|
||||
// Complete callback
|
||||
if ( typeof option === "function" ) {
|
||||
return true;
|
||||
}
|
||||
|
||||
// Options hash (but not naming an effect)
|
||||
if ( typeof option === "object" && !option.effect ) {
|
||||
return true;
|
||||
}
|
||||
|
||||
// Didn't match any standard API
|
||||
return false;
|
||||
}
|
||||
|
||||
$.fn.extend( {
|
||||
effect: function( /* effect, options, speed, callback */ ) {
|
||||
var args = _normalizeArguments.apply( this, arguments ),
|
||||
effectMethod = $.effects.effect[ args.effect ],
|
||||
defaultMode = effectMethod.mode,
|
||||
queue = args.queue,
|
||||
queueName = queue || "fx",
|
||||
complete = args.complete,
|
||||
mode = args.mode,
|
||||
modes = [],
|
||||
prefilter = function( next ) {
|
||||
var el = $( this ),
|
||||
normalizedMode = $.effects.mode( el, mode ) || defaultMode;
|
||||
|
||||
// Sentinel for duck-punching the :animated pseudo-selector
|
||||
el.data( dataSpaceAnimated, true );
|
||||
|
||||
// Save effect mode for later use,
|
||||
// we can't just call $.effects.mode again later,
|
||||
// as the .show() below destroys the initial state
|
||||
modes.push( normalizedMode );
|
||||
|
||||
// See $.uiBackCompat inside of run() for removal of defaultMode in 1.14
|
||||
if ( defaultMode && ( normalizedMode === "show" ||
|
||||
( normalizedMode === defaultMode && normalizedMode === "hide" ) ) ) {
|
||||
el.show();
|
||||
}
|
||||
|
||||
if ( !defaultMode || normalizedMode !== "none" ) {
|
||||
$.effects.saveStyle( el );
|
||||
}
|
||||
|
||||
if ( typeof next === "function" ) {
|
||||
next();
|
||||
}
|
||||
};
|
||||
|
||||
if ( $.fx.off || !effectMethod ) {
|
||||
|
||||
// Delegate to the original method (e.g., .show()) if possible
|
||||
if ( mode ) {
|
||||
return this[ mode ]( args.duration, complete );
|
||||
} else {
|
||||
return this.each( function() {
|
||||
if ( complete ) {
|
||||
complete.call( this );
|
||||
}
|
||||
} );
|
||||
}
|
||||
}
|
||||
|
||||
function run( next ) {
|
||||
var elem = $( this );
|
||||
|
||||
function cleanup() {
|
||||
elem.removeData( dataSpaceAnimated );
|
||||
|
||||
$.effects.cleanUp( elem );
|
||||
|
||||
if ( args.mode === "hide" ) {
|
||||
elem.hide();
|
||||
}
|
||||
|
||||
done();
|
||||
}
|
||||
|
||||
function done() {
|
||||
if ( typeof complete === "function" ) {
|
||||
complete.call( elem[ 0 ] );
|
||||
}
|
||||
|
||||
if ( typeof next === "function" ) {
|
||||
next();
|
||||
}
|
||||
}
|
||||
|
||||
// Override mode option on a per element basis,
|
||||
// as toggle can be either show or hide depending on element state
|
||||
args.mode = modes.shift();
|
||||
|
||||
if ( $.uiBackCompat !== false && !defaultMode ) {
|
||||
if ( elem.is( ":hidden" ) ? mode === "hide" : mode === "show" ) {
|
||||
|
||||
// Call the core method to track "olddisplay" properly
|
||||
elem[ mode ]();
|
||||
done();
|
||||
} else {
|
||||
effectMethod.call( elem[ 0 ], args, done );
|
||||
}
|
||||
} else {
|
||||
if ( args.mode === "none" ) {
|
||||
|
||||
// Call the core method to track "olddisplay" properly
|
||||
elem[ mode ]();
|
||||
done();
|
||||
} else {
|
||||
effectMethod.call( elem[ 0 ], args, cleanup );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Run prefilter on all elements first to ensure that
|
||||
// any showing or hiding happens before placeholder creation,
|
||||
// which ensures that any layout changes are correctly captured.
|
||||
return queue === false ?
|
||||
this.each( prefilter ).each( run ) :
|
||||
this.queue( queueName, prefilter ).queue( queueName, run );
|
||||
},
|
||||
|
||||
show: ( function( orig ) {
|
||||
return function( option ) {
|
||||
if ( standardAnimationOption( option ) ) {
|
||||
return orig.apply( this, arguments );
|
||||
} else {
|
||||
var args = _normalizeArguments.apply( this, arguments );
|
||||
args.mode = "show";
|
||||
return this.effect.call( this, args );
|
||||
}
|
||||
};
|
||||
} )( $.fn.show ),
|
||||
|
||||
hide: ( function( orig ) {
|
||||
return function( option ) {
|
||||
if ( standardAnimationOption( option ) ) {
|
||||
return orig.apply( this, arguments );
|
||||
} else {
|
||||
var args = _normalizeArguments.apply( this, arguments );
|
||||
args.mode = "hide";
|
||||
return this.effect.call( this, args );
|
||||
}
|
||||
};
|
||||
} )( $.fn.hide ),
|
||||
|
||||
toggle: ( function( orig ) {
|
||||
return function( option ) {
|
||||
if ( standardAnimationOption( option ) || typeof option === "boolean" ) {
|
||||
return orig.apply( this, arguments );
|
||||
} else {
|
||||
var args = _normalizeArguments.apply( this, arguments );
|
||||
args.mode = "toggle";
|
||||
return this.effect.call( this, args );
|
||||
}
|
||||
};
|
||||
} )( $.fn.toggle ),
|
||||
|
||||
cssUnit: function( key ) {
|
||||
var style = this.css( key ),
|
||||
val = [];
|
||||
|
||||
$.each( [ "em", "px", "%", "pt" ], function( i, unit ) {
|
||||
if ( style.indexOf( unit ) > 0 ) {
|
||||
val = [ parseFloat( style ), unit ];
|
||||
}
|
||||
} );
|
||||
return val;
|
||||
},
|
||||
|
||||
cssClip: function( clipObj ) {
|
||||
if ( clipObj ) {
|
||||
return this.css( "clip", "rect(" + clipObj.top + "px " + clipObj.right + "px " +
|
||||
clipObj.bottom + "px " + clipObj.left + "px)" );
|
||||
}
|
||||
return parseClip( this.css( "clip" ), this );
|
||||
},
|
||||
|
||||
transfer: function( options, done ) {
|
||||
var element = $( this ),
|
||||
target = $( options.to ),
|
||||
targetFixed = target.css( "position" ) === "fixed",
|
||||
body = $( "body" ),
|
||||
fixTop = targetFixed ? body.scrollTop() : 0,
|
||||
fixLeft = targetFixed ? body.scrollLeft() : 0,
|
||||
endPosition = target.offset(),
|
||||
animation = {
|
||||
top: endPosition.top - fixTop,
|
||||
left: endPosition.left - fixLeft,
|
||||
height: target.innerHeight(),
|
||||
width: target.innerWidth()
|
||||
},
|
||||
startPosition = element.offset(),
|
||||
transfer = $( "<div class='ui-effects-transfer'></div>" );
|
||||
|
||||
transfer
|
||||
.appendTo( "body" )
|
||||
.addClass( options.className )
|
||||
.css( {
|
||||
top: startPosition.top - fixTop,
|
||||
left: startPosition.left - fixLeft,
|
||||
height: element.innerHeight(),
|
||||
width: element.innerWidth(),
|
||||
position: targetFixed ? "fixed" : "absolute"
|
||||
} )
|
||||
.animate( animation, options.duration, options.easing, function() {
|
||||
transfer.remove();
|
||||
if ( typeof done === "function" ) {
|
||||
done();
|
||||
}
|
||||
} );
|
||||
}
|
||||
} );
|
||||
|
||||
function parseClip( str, element ) {
|
||||
var outerWidth = element.outerWidth(),
|
||||
outerHeight = element.outerHeight(),
|
||||
clipRegex = /^rect\((-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto)\)$/,
|
||||
values = clipRegex.exec( str ) || [ "", 0, outerWidth, outerHeight, 0 ];
|
||||
|
||||
return {
|
||||
top: parseFloat( values[ 1 ] ) || 0,
|
||||
right: values[ 2 ] === "auto" ? outerWidth : parseFloat( values[ 2 ] ),
|
||||
bottom: values[ 3 ] === "auto" ? outerHeight : parseFloat( values[ 3 ] ),
|
||||
left: parseFloat( values[ 4 ] ) || 0
|
||||
};
|
||||
}
|
||||
|
||||
$.fx.step.clip = function( fx ) {
|
||||
if ( !fx.clipInit ) {
|
||||
fx.start = $( fx.elem ).cssClip();
|
||||
if ( typeof fx.end === "string" ) {
|
||||
fx.end = parseClip( fx.end, fx.elem );
|
||||
}
|
||||
fx.clipInit = true;
|
||||
}
|
||||
|
||||
$( fx.elem ).cssClip( {
|
||||
top: fx.pos * ( fx.end.top - fx.start.top ) + fx.start.top,
|
||||
right: fx.pos * ( fx.end.right - fx.start.right ) + fx.start.right,
|
||||
bottom: fx.pos * ( fx.end.bottom - fx.start.bottom ) + fx.start.bottom,
|
||||
left: fx.pos * ( fx.end.left - fx.start.left ) + fx.start.left
|
||||
} );
|
||||
};
|
||||
|
||||
} )();
|
||||
|
||||
/******************************************************************************/
|
||||
/*********************************** EASING ***********************************/
|
||||
/******************************************************************************/
|
||||
|
||||
( function() {
|
||||
|
||||
// Based on easing equations from Robert Penner (http://www.robertpenner.com/easing)
|
||||
|
||||
var baseEasings = {};
|
||||
|
||||
$.each( [ "Quad", "Cubic", "Quart", "Quint", "Expo" ], function( i, name ) {
|
||||
baseEasings[ name ] = function( p ) {
|
||||
return Math.pow( p, i + 2 );
|
||||
};
|
||||
} );
|
||||
|
||||
$.extend( baseEasings, {
|
||||
Sine: function( p ) {
|
||||
return 1 - Math.cos( p * Math.PI / 2 );
|
||||
},
|
||||
Circ: function( p ) {
|
||||
return 1 - Math.sqrt( 1 - p * p );
|
||||
},
|
||||
Elastic: function( p ) {
|
||||
return p === 0 || p === 1 ? p :
|
||||
-Math.pow( 2, 8 * ( p - 1 ) ) * Math.sin( ( ( p - 1 ) * 80 - 7.5 ) * Math.PI / 15 );
|
||||
},
|
||||
Back: function( p ) {
|
||||
return p * p * ( 3 * p - 2 );
|
||||
},
|
||||
Bounce: function( p ) {
|
||||
var pow2,
|
||||
bounce = 4;
|
||||
|
||||
while ( p < ( ( pow2 = Math.pow( 2, --bounce ) ) - 1 ) / 11 ) {}
|
||||
return 1 / Math.pow( 4, 3 - bounce ) - 7.5625 * Math.pow( ( pow2 * 3 - 2 ) / 22 - p, 2 );
|
||||
}
|
||||
} );
|
||||
|
||||
$.each( baseEasings, function( name, easeIn ) {
|
||||
$.easing[ "easeIn" + name ] = easeIn;
|
||||
$.easing[ "easeOut" + name ] = function( p ) {
|
||||
return 1 - easeIn( 1 - p );
|
||||
};
|
||||
$.easing[ "easeInOut" + name ] = function( p ) {
|
||||
return p < 0.5 ?
|
||||
easeIn( p * 2 ) / 2 :
|
||||
1 - easeIn( p * -2 + 2 ) / 2;
|
||||
};
|
||||
} );
|
||||
|
||||
} )();
|
||||
|
||||
return $.effects;
|
||||
|
||||
} );
|
73
node_modules/jquery-ui/ui/effects/effect-blind.js
generated
vendored
Normal file
73
node_modules/jquery-ui/ui/effects/effect-blind.js
generated
vendored
Normal file
|
@ -0,0 +1,73 @@
|
|||
/*!
|
||||
* jQuery UI Effects Blind 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Blind Effect
|
||||
//>>group: Effects
|
||||
//>>description: Blinds the element.
|
||||
//>>docs: http://api.jqueryui.com/blind-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
}
|
||||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
return $.effects.define( "blind", "hide", function( options, done ) {
|
||||
var map = {
|
||||
up: [ "bottom", "top" ],
|
||||
vertical: [ "bottom", "top" ],
|
||||
down: [ "top", "bottom" ],
|
||||
left: [ "right", "left" ],
|
||||
horizontal: [ "right", "left" ],
|
||||
right: [ "left", "right" ]
|
||||
},
|
||||
element = $( this ),
|
||||
direction = options.direction || "up",
|
||||
start = element.cssClip(),
|
||||
animate = { clip: $.extend( {}, start ) },
|
||||
placeholder = $.effects.createPlaceholder( element );
|
||||
|
||||
animate.clip[ map[ direction ][ 0 ] ] = animate.clip[ map[ direction ][ 1 ] ];
|
||||
|
||||
if ( options.mode === "show" ) {
|
||||
element.cssClip( animate.clip );
|
||||
if ( placeholder ) {
|
||||
placeholder.css( $.effects.clipToBox( animate ) );
|
||||
}
|
||||
|
||||
animate.clip = start;
|
||||
}
|
||||
|
||||
if ( placeholder ) {
|
||||
placeholder.animate( $.effects.clipToBox( animate ), options.duration, options.easing );
|
||||
}
|
||||
|
||||
element.animate( animate, {
|
||||
queue: false,
|
||||
duration: options.duration,
|
||||
easing: options.easing,
|
||||
complete: done
|
||||
} );
|
||||
} );
|
||||
|
||||
} );
|
113
node_modules/jquery-ui/ui/effects/effect-bounce.js
generated
vendored
Normal file
113
node_modules/jquery-ui/ui/effects/effect-bounce.js
generated
vendored
Normal file
|
@ -0,0 +1,113 @@
|
|||
/*!
|
||||
* jQuery UI Effects Bounce 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Bounce Effect
|
||||
//>>group: Effects
|
||||
//>>description: Bounces an element horizontally or vertically n times.
|
||||
//>>docs: http://api.jqueryui.com/bounce-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
}
|
||||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
return $.effects.define( "bounce", function( options, done ) {
|
||||
var upAnim, downAnim, refValue,
|
||||
element = $( this ),
|
||||
|
||||
// Defaults:
|
||||
mode = options.mode,
|
||||
hide = mode === "hide",
|
||||
show = mode === "show",
|
||||
direction = options.direction || "up",
|
||||
distance = options.distance,
|
||||
times = options.times || 5,
|
||||
|
||||
// Number of internal animations
|
||||
anims = times * 2 + ( show || hide ? 1 : 0 ),
|
||||
speed = options.duration / anims,
|
||||
easing = options.easing,
|
||||
|
||||
// Utility:
|
||||
ref = ( direction === "up" || direction === "down" ) ? "top" : "left",
|
||||
motion = ( direction === "up" || direction === "left" ),
|
||||
i = 0,
|
||||
|
||||
queuelen = element.queue().length;
|
||||
|
||||
$.effects.createPlaceholder( element );
|
||||
|
||||
refValue = element.css( ref );
|
||||
|
||||
// Default distance for the BIGGEST bounce is the outer Distance / 3
|
||||
if ( !distance ) {
|
||||
distance = element[ ref === "top" ? "outerHeight" : "outerWidth" ]() / 3;
|
||||
}
|
||||
|
||||
if ( show ) {
|
||||
downAnim = { opacity: 1 };
|
||||
downAnim[ ref ] = refValue;
|
||||
|
||||
// If we are showing, force opacity 0 and set the initial position
|
||||
// then do the "first" animation
|
||||
element
|
||||
.css( "opacity", 0 )
|
||||
.css( ref, motion ? -distance * 2 : distance * 2 )
|
||||
.animate( downAnim, speed, easing );
|
||||
}
|
||||
|
||||
// Start at the smallest distance if we are hiding
|
||||
if ( hide ) {
|
||||
distance = distance / Math.pow( 2, times - 1 );
|
||||
}
|
||||
|
||||
downAnim = {};
|
||||
downAnim[ ref ] = refValue;
|
||||
|
||||
// Bounces up/down/left/right then back to 0 -- times * 2 animations happen here
|
||||
for ( ; i < times; i++ ) {
|
||||
upAnim = {};
|
||||
upAnim[ ref ] = ( motion ? "-=" : "+=" ) + distance;
|
||||
|
||||
element
|
||||
.animate( upAnim, speed, easing )
|
||||
.animate( downAnim, speed, easing );
|
||||
|
||||
distance = hide ? distance * 2 : distance / 2;
|
||||
}
|
||||
|
||||
// Last Bounce when Hiding
|
||||
if ( hide ) {
|
||||
upAnim = { opacity: 0 };
|
||||
upAnim[ ref ] = ( motion ? "-=" : "+=" ) + distance;
|
||||
|
||||
element.animate( upAnim, speed, easing );
|
||||
}
|
||||
|
||||
element.queue( done );
|
||||
|
||||
$.effects.unshift( element, queuelen, anims + 1 );
|
||||
} );
|
||||
|
||||
} );
|
68
node_modules/jquery-ui/ui/effects/effect-clip.js
generated
vendored
Normal file
68
node_modules/jquery-ui/ui/effects/effect-clip.js
generated
vendored
Normal file
|
@ -0,0 +1,68 @@
|
|||
/*!
|
||||
* jQuery UI Effects Clip 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Clip Effect
|
||||
//>>group: Effects
|
||||
//>>description: Clips the element on and off like an old TV.
|
||||
//>>docs: http://api.jqueryui.com/clip-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
}
|
||||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
return $.effects.define( "clip", "hide", function( options, done ) {
|
||||
var start,
|
||||
animate = {},
|
||||
element = $( this ),
|
||||
direction = options.direction || "vertical",
|
||||
both = direction === "both",
|
||||
horizontal = both || direction === "horizontal",
|
||||
vertical = both || direction === "vertical";
|
||||
|
||||
start = element.cssClip();
|
||||
animate.clip = {
|
||||
top: vertical ? ( start.bottom - start.top ) / 2 : start.top,
|
||||
right: horizontal ? ( start.right - start.left ) / 2 : start.right,
|
||||
bottom: vertical ? ( start.bottom - start.top ) / 2 : start.bottom,
|
||||
left: horizontal ? ( start.right - start.left ) / 2 : start.left
|
||||
};
|
||||
|
||||
$.effects.createPlaceholder( element );
|
||||
|
||||
if ( options.mode === "show" ) {
|
||||
element.cssClip( animate.clip );
|
||||
animate.clip = start;
|
||||
}
|
||||
|
||||
element.animate( animate, {
|
||||
queue: false,
|
||||
duration: options.duration,
|
||||
easing: options.easing,
|
||||
complete: done
|
||||
} );
|
||||
|
||||
} );
|
||||
|
||||
} );
|
72
node_modules/jquery-ui/ui/effects/effect-drop.js
generated
vendored
Normal file
72
node_modules/jquery-ui/ui/effects/effect-drop.js
generated
vendored
Normal file
|
@ -0,0 +1,72 @@
|
|||
/*!
|
||||
* jQuery UI Effects Drop 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Drop Effect
|
||||
//>>group: Effects
|
||||
//>>description: Moves an element in one direction and hides it at the same time.
|
||||
//>>docs: http://api.jqueryui.com/drop-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
}
|
||||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
return $.effects.define( "drop", "hide", function( options, done ) {
|
||||
|
||||
var distance,
|
||||
element = $( this ),
|
||||
mode = options.mode,
|
||||
show = mode === "show",
|
||||
direction = options.direction || "left",
|
||||
ref = ( direction === "up" || direction === "down" ) ? "top" : "left",
|
||||
motion = ( direction === "up" || direction === "left" ) ? "-=" : "+=",
|
||||
oppositeMotion = ( motion === "+=" ) ? "-=" : "+=",
|
||||
animation = {
|
||||
opacity: 0
|
||||
};
|
||||
|
||||
$.effects.createPlaceholder( element );
|
||||
|
||||
distance = options.distance ||
|
||||
element[ ref === "top" ? "outerHeight" : "outerWidth" ]( true ) / 2;
|
||||
|
||||
animation[ ref ] = motion + distance;
|
||||
|
||||
if ( show ) {
|
||||
element.css( animation );
|
||||
|
||||
animation[ ref ] = oppositeMotion + distance;
|
||||
animation.opacity = 1;
|
||||
}
|
||||
|
||||
// Animate
|
||||
element.animate( animation, {
|
||||
queue: false,
|
||||
duration: options.duration,
|
||||
easing: options.easing,
|
||||
complete: done
|
||||
} );
|
||||
} );
|
||||
|
||||
} );
|
114
node_modules/jquery-ui/ui/effects/effect-explode.js
generated
vendored
Normal file
114
node_modules/jquery-ui/ui/effects/effect-explode.js
generated
vendored
Normal file
|
@ -0,0 +1,114 @@
|
|||
/*!
|
||||
* jQuery UI Effects Explode 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Explode Effect
|
||||
//>>group: Effects
|
||||
/* eslint-disable max-len */
|
||||
//>>description: Explodes an element in all directions into n pieces. Implodes an element to its original wholeness.
|
||||
/* eslint-enable max-len */
|
||||
//>>docs: http://api.jqueryui.com/explode-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
}
|
||||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
return $.effects.define( "explode", "hide", function( options, done ) {
|
||||
|
||||
var i, j, left, top, mx, my,
|
||||
rows = options.pieces ? Math.round( Math.sqrt( options.pieces ) ) : 3,
|
||||
cells = rows,
|
||||
element = $( this ),
|
||||
mode = options.mode,
|
||||
show = mode === "show",
|
||||
|
||||
// Show and then visibility:hidden the element before calculating offset
|
||||
offset = element.show().css( "visibility", "hidden" ).offset(),
|
||||
|
||||
// Width and height of a piece
|
||||
width = Math.ceil( element.outerWidth() / cells ),
|
||||
height = Math.ceil( element.outerHeight() / rows ),
|
||||
pieces = [];
|
||||
|
||||
// Children animate complete:
|
||||
function childComplete() {
|
||||
pieces.push( this );
|
||||
if ( pieces.length === rows * cells ) {
|
||||
animComplete();
|
||||
}
|
||||
}
|
||||
|
||||
// Clone the element for each row and cell.
|
||||
for ( i = 0; i < rows; i++ ) { // ===>
|
||||
top = offset.top + i * height;
|
||||
my = i - ( rows - 1 ) / 2;
|
||||
|
||||
for ( j = 0; j < cells; j++ ) { // |||
|
||||
left = offset.left + j * width;
|
||||
mx = j - ( cells - 1 ) / 2;
|
||||
|
||||
// Create a clone of the now hidden main element that will be absolute positioned
|
||||
// within a wrapper div off the -left and -top equal to size of our pieces
|
||||
element
|
||||
.clone()
|
||||
.appendTo( "body" )
|
||||
.wrap( "<div></div>" )
|
||||
.css( {
|
||||
position: "absolute",
|
||||
visibility: "visible",
|
||||
left: -j * width,
|
||||
top: -i * height
|
||||
} )
|
||||
|
||||
// Select the wrapper - make it overflow: hidden and absolute positioned based on
|
||||
// where the original was located +left and +top equal to the size of pieces
|
||||
.parent()
|
||||
.addClass( "ui-effects-explode" )
|
||||
.css( {
|
||||
position: "absolute",
|
||||
overflow: "hidden",
|
||||
width: width,
|
||||
height: height,
|
||||
left: left + ( show ? mx * width : 0 ),
|
||||
top: top + ( show ? my * height : 0 ),
|
||||
opacity: show ? 0 : 1
|
||||
} )
|
||||
.animate( {
|
||||
left: left + ( show ? 0 : mx * width ),
|
||||
top: top + ( show ? 0 : my * height ),
|
||||
opacity: show ? 1 : 0
|
||||
}, options.duration || 500, options.easing, childComplete );
|
||||
}
|
||||
}
|
||||
|
||||
function animComplete() {
|
||||
element.css( {
|
||||
visibility: "visible"
|
||||
} );
|
||||
$( pieces ).remove();
|
||||
done();
|
||||
}
|
||||
} );
|
||||
|
||||
} );
|
50
node_modules/jquery-ui/ui/effects/effect-fade.js
generated
vendored
Normal file
50
node_modules/jquery-ui/ui/effects/effect-fade.js
generated
vendored
Normal file
|
@ -0,0 +1,50 @@
|
|||
/*!
|
||||
* jQuery UI Effects Fade 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Fade Effect
|
||||
//>>group: Effects
|
||||
//>>description: Fades the element.
|
||||
//>>docs: http://api.jqueryui.com/fade-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
}
|
||||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
return $.effects.define( "fade", "toggle", function( options, done ) {
|
||||
var show = options.mode === "show";
|
||||
|
||||
$( this )
|
||||
.css( "opacity", show ? 0 : 1 )
|
||||
.animate( {
|
||||
opacity: show ? 1 : 0
|
||||
}, {
|
||||
queue: false,
|
||||
duration: options.duration,
|
||||
easing: options.easing,
|
||||
complete: done
|
||||
} );
|
||||
} );
|
||||
|
||||
} );
|
92
node_modules/jquery-ui/ui/effects/effect-fold.js
generated
vendored
Normal file
92
node_modules/jquery-ui/ui/effects/effect-fold.js
generated
vendored
Normal file
|
@ -0,0 +1,92 @@
|
|||
/*!
|
||||
* jQuery UI Effects Fold 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Fold Effect
|
||||
//>>group: Effects
|
||||
//>>description: Folds an element first horizontally and then vertically.
|
||||
//>>docs: http://api.jqueryui.com/fold-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
}
|
||||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
return $.effects.define( "fold", "hide", function( options, done ) {
|
||||
|
||||
// Create element
|
||||
var element = $( this ),
|
||||
mode = options.mode,
|
||||
show = mode === "show",
|
||||
hide = mode === "hide",
|
||||
size = options.size || 15,
|
||||
percent = /([0-9]+)%/.exec( size ),
|
||||
horizFirst = !!options.horizFirst,
|
||||
ref = horizFirst ? [ "right", "bottom" ] : [ "bottom", "right" ],
|
||||
duration = options.duration / 2,
|
||||
|
||||
placeholder = $.effects.createPlaceholder( element ),
|
||||
|
||||
start = element.cssClip(),
|
||||
animation1 = { clip: $.extend( {}, start ) },
|
||||
animation2 = { clip: $.extend( {}, start ) },
|
||||
|
||||
distance = [ start[ ref[ 0 ] ], start[ ref[ 1 ] ] ],
|
||||
|
||||
queuelen = element.queue().length;
|
||||
|
||||
if ( percent ) {
|
||||
size = parseInt( percent[ 1 ], 10 ) / 100 * distance[ hide ? 0 : 1 ];
|
||||
}
|
||||
animation1.clip[ ref[ 0 ] ] = size;
|
||||
animation2.clip[ ref[ 0 ] ] = size;
|
||||
animation2.clip[ ref[ 1 ] ] = 0;
|
||||
|
||||
if ( show ) {
|
||||
element.cssClip( animation2.clip );
|
||||
if ( placeholder ) {
|
||||
placeholder.css( $.effects.clipToBox( animation2 ) );
|
||||
}
|
||||
|
||||
animation2.clip = start;
|
||||
}
|
||||
|
||||
// Animate
|
||||
element
|
||||
.queue( function( next ) {
|
||||
if ( placeholder ) {
|
||||
placeholder
|
||||
.animate( $.effects.clipToBox( animation1 ), duration, options.easing )
|
||||
.animate( $.effects.clipToBox( animation2 ), duration, options.easing );
|
||||
}
|
||||
|
||||
next();
|
||||
} )
|
||||
.animate( animation1, duration, options.easing )
|
||||
.animate( animation2, duration, options.easing )
|
||||
.queue( done );
|
||||
|
||||
$.effects.unshift( element, queuelen, 4 );
|
||||
} );
|
||||
|
||||
} );
|
60
node_modules/jquery-ui/ui/effects/effect-highlight.js
generated
vendored
Normal file
60
node_modules/jquery-ui/ui/effects/effect-highlight.js
generated
vendored
Normal file
|
@ -0,0 +1,60 @@
|
|||
/*!
|
||||
* jQuery UI Effects Highlight 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Highlight Effect
|
||||
//>>group: Effects
|
||||
//>>description: Highlights the background of an element in a defined color for a custom duration.
|
||||
//>>docs: http://api.jqueryui.com/highlight-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
}
|
||||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
return $.effects.define( "highlight", "show", function( options, done ) {
|
||||
var element = $( this ),
|
||||
animation = {
|
||||
backgroundColor: element.css( "backgroundColor" )
|
||||
};
|
||||
|
||||
if ( options.mode === "hide" ) {
|
||||
animation.opacity = 0;
|
||||
}
|
||||
|
||||
$.effects.saveStyle( element );
|
||||
|
||||
element
|
||||
.css( {
|
||||
backgroundImage: "none",
|
||||
backgroundColor: options.color || "#ffff99"
|
||||
} )
|
||||
.animate( animation, {
|
||||
queue: false,
|
||||
duration: options.duration,
|
||||
easing: options.easing,
|
||||
complete: done
|
||||
} );
|
||||
} );
|
||||
|
||||
} );
|
45
node_modules/jquery-ui/ui/effects/effect-puff.js
generated
vendored
Normal file
45
node_modules/jquery-ui/ui/effects/effect-puff.js
generated
vendored
Normal file
|
@ -0,0 +1,45 @@
|
|||
/*!
|
||||
* jQuery UI Effects Puff 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Puff Effect
|
||||
//>>group: Effects
|
||||
//>>description: Creates a puff effect by scaling the element up and hiding it at the same time.
|
||||
//>>docs: http://api.jqueryui.com/puff-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect",
|
||||
"./effect-scale"
|
||||
], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
}
|
||||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
return $.effects.define( "puff", "hide", function( options, done ) {
|
||||
var newOptions = $.extend( true, {}, options, {
|
||||
fade: true,
|
||||
percent: parseInt( options.percent, 10 ) || 150
|
||||
} );
|
||||
|
||||
$.effects.effect.scale.call( this, newOptions, done );
|
||||
} );
|
||||
|
||||
} );
|
67
node_modules/jquery-ui/ui/effects/effect-pulsate.js
generated
vendored
Normal file
67
node_modules/jquery-ui/ui/effects/effect-pulsate.js
generated
vendored
Normal file
|
@ -0,0 +1,67 @@
|
|||
/*!
|
||||
* jQuery UI Effects Pulsate 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Pulsate Effect
|
||||
//>>group: Effects
|
||||
//>>description: Pulsates an element n times by changing the opacity to zero and back.
|
||||
//>>docs: http://api.jqueryui.com/pulsate-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
}
|
||||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
return $.effects.define( "pulsate", "show", function( options, done ) {
|
||||
var element = $( this ),
|
||||
mode = options.mode,
|
||||
show = mode === "show",
|
||||
hide = mode === "hide",
|
||||
showhide = show || hide,
|
||||
|
||||
// Showing or hiding leaves off the "last" animation
|
||||
anims = ( ( options.times || 5 ) * 2 ) + ( showhide ? 1 : 0 ),
|
||||
duration = options.duration / anims,
|
||||
animateTo = 0,
|
||||
i = 1,
|
||||
queuelen = element.queue().length;
|
||||
|
||||
if ( show || !element.is( ":visible" ) ) {
|
||||
element.css( "opacity", 0 ).show();
|
||||
animateTo = 1;
|
||||
}
|
||||
|
||||
// Anims - 1 opacity "toggles"
|
||||
for ( ; i < anims; i++ ) {
|
||||
element.animate( { opacity: animateTo }, duration, options.easing );
|
||||
animateTo = 1 - animateTo;
|
||||
}
|
||||
|
||||
element.animate( { opacity: animateTo }, duration, options.easing );
|
||||
|
||||
element.queue( done );
|
||||
|
||||
$.effects.unshift( element, queuelen, anims + 1 );
|
||||
} );
|
||||
|
||||
} );
|
59
node_modules/jquery-ui/ui/effects/effect-scale.js
generated
vendored
Normal file
59
node_modules/jquery-ui/ui/effects/effect-scale.js
generated
vendored
Normal file
|
@ -0,0 +1,59 @@
|
|||
/*!
|
||||
* jQuery UI Effects Scale 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Scale Effect
|
||||
//>>group: Effects
|
||||
//>>description: Grows or shrinks an element and its content.
|
||||
//>>docs: http://api.jqueryui.com/scale-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect",
|
||||
"./effect-size"
|
||||
], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
}
|
||||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
return $.effects.define( "scale", function( options, done ) {
|
||||
|
||||
// Create element
|
||||
var el = $( this ),
|
||||
mode = options.mode,
|
||||
percent = parseInt( options.percent, 10 ) ||
|
||||
( parseInt( options.percent, 10 ) === 0 ? 0 : ( mode !== "effect" ? 0 : 100 ) ),
|
||||
|
||||
newOptions = $.extend( true, {
|
||||
from: $.effects.scaledDimensions( el ),
|
||||
to: $.effects.scaledDimensions( el, percent, options.direction || "both" ),
|
||||
origin: options.origin || [ "middle", "center" ]
|
||||
}, options );
|
||||
|
||||
// Fade option to support puff
|
||||
if ( options.fade ) {
|
||||
newOptions.from.opacity = 1;
|
||||
newOptions.to.opacity = 0;
|
||||
}
|
||||
|
||||
$.effects.effect.size.call( this, newOptions, done );
|
||||
} );
|
||||
|
||||
} );
|
77
node_modules/jquery-ui/ui/effects/effect-shake.js
generated
vendored
Normal file
77
node_modules/jquery-ui/ui/effects/effect-shake.js
generated
vendored
Normal file
|
@ -0,0 +1,77 @@
|
|||
/*!
|
||||
* jQuery UI Effects Shake 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Shake Effect
|
||||
//>>group: Effects
|
||||
//>>description: Shakes an element horizontally or vertically n times.
|
||||
//>>docs: http://api.jqueryui.com/shake-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
}
|
||||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
return $.effects.define( "shake", function( options, done ) {
|
||||
|
||||
var i = 1,
|
||||
element = $( this ),
|
||||
direction = options.direction || "left",
|
||||
distance = options.distance || 20,
|
||||
times = options.times || 3,
|
||||
anims = times * 2 + 1,
|
||||
speed = Math.round( options.duration / anims ),
|
||||
ref = ( direction === "up" || direction === "down" ) ? "top" : "left",
|
||||
positiveMotion = ( direction === "up" || direction === "left" ),
|
||||
animation = {},
|
||||
animation1 = {},
|
||||
animation2 = {},
|
||||
|
||||
queuelen = element.queue().length;
|
||||
|
||||
$.effects.createPlaceholder( element );
|
||||
|
||||
// Animation
|
||||
animation[ ref ] = ( positiveMotion ? "-=" : "+=" ) + distance;
|
||||
animation1[ ref ] = ( positiveMotion ? "+=" : "-=" ) + distance * 2;
|
||||
animation2[ ref ] = ( positiveMotion ? "-=" : "+=" ) + distance * 2;
|
||||
|
||||
// Animate
|
||||
element.animate( animation, speed, options.easing );
|
||||
|
||||
// Shakes
|
||||
for ( ; i < times; i++ ) {
|
||||
element
|
||||
.animate( animation1, speed, options.easing )
|
||||
.animate( animation2, speed, options.easing );
|
||||
}
|
||||
|
||||
element
|
||||
.animate( animation1, speed, options.easing )
|
||||
.animate( animation, speed / 2, options.easing )
|
||||
.queue( done );
|
||||
|
||||
$.effects.unshift( element, queuelen, anims + 1 );
|
||||
} );
|
||||
|
||||
} );
|
196
node_modules/jquery-ui/ui/effects/effect-size.js
generated
vendored
Normal file
196
node_modules/jquery-ui/ui/effects/effect-size.js
generated
vendored
Normal file
|
@ -0,0 +1,196 @@
|
|||
/*!
|
||||
* jQuery UI Effects Size 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Size Effect
|
||||
//>>group: Effects
|
||||
//>>description: Resize an element to a specified width and height.
|
||||
//>>docs: http://api.jqueryui.com/size-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
}
|
||||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
return $.effects.define( "size", function( options, done ) {
|
||||
|
||||
// Create element
|
||||
var baseline, factor, temp,
|
||||
element = $( this ),
|
||||
|
||||
// Copy for children
|
||||
cProps = [ "fontSize" ],
|
||||
vProps = [ "borderTopWidth", "borderBottomWidth", "paddingTop", "paddingBottom" ],
|
||||
hProps = [ "borderLeftWidth", "borderRightWidth", "paddingLeft", "paddingRight" ],
|
||||
|
||||
// Set options
|
||||
mode = options.mode,
|
||||
restore = mode !== "effect",
|
||||
scale = options.scale || "both",
|
||||
origin = options.origin || [ "middle", "center" ],
|
||||
position = element.css( "position" ),
|
||||
pos = element.position(),
|
||||
original = $.effects.scaledDimensions( element ),
|
||||
from = options.from || original,
|
||||
to = options.to || $.effects.scaledDimensions( element, 0 );
|
||||
|
||||
$.effects.createPlaceholder( element );
|
||||
|
||||
if ( mode === "show" ) {
|
||||
temp = from;
|
||||
from = to;
|
||||
to = temp;
|
||||
}
|
||||
|
||||
// Set scaling factor
|
||||
factor = {
|
||||
from: {
|
||||
y: from.height / original.height,
|
||||
x: from.width / original.width
|
||||
},
|
||||
to: {
|
||||
y: to.height / original.height,
|
||||
x: to.width / original.width
|
||||
}
|
||||
};
|
||||
|
||||
// Scale the css box
|
||||
if ( scale === "box" || scale === "both" ) {
|
||||
|
||||
// Vertical props scaling
|
||||
if ( factor.from.y !== factor.to.y ) {
|
||||
from = $.effects.setTransition( element, vProps, factor.from.y, from );
|
||||
to = $.effects.setTransition( element, vProps, factor.to.y, to );
|
||||
}
|
||||
|
||||
// Horizontal props scaling
|
||||
if ( factor.from.x !== factor.to.x ) {
|
||||
from = $.effects.setTransition( element, hProps, factor.from.x, from );
|
||||
to = $.effects.setTransition( element, hProps, factor.to.x, to );
|
||||
}
|
||||
}
|
||||
|
||||
// Scale the content
|
||||
if ( scale === "content" || scale === "both" ) {
|
||||
|
||||
// Vertical props scaling
|
||||
if ( factor.from.y !== factor.to.y ) {
|
||||
from = $.effects.setTransition( element, cProps, factor.from.y, from );
|
||||
to = $.effects.setTransition( element, cProps, factor.to.y, to );
|
||||
}
|
||||
}
|
||||
|
||||
// Adjust the position properties based on the provided origin points
|
||||
if ( origin ) {
|
||||
baseline = $.effects.getBaseline( origin, original );
|
||||
from.top = ( original.outerHeight - from.outerHeight ) * baseline.y + pos.top;
|
||||
from.left = ( original.outerWidth - from.outerWidth ) * baseline.x + pos.left;
|
||||
to.top = ( original.outerHeight - to.outerHeight ) * baseline.y + pos.top;
|
||||
to.left = ( original.outerWidth - to.outerWidth ) * baseline.x + pos.left;
|
||||
}
|
||||
delete from.outerHeight;
|
||||
delete from.outerWidth;
|
||||
element.css( from );
|
||||
|
||||
// Animate the children if desired
|
||||
if ( scale === "content" || scale === "both" ) {
|
||||
|
||||
vProps = vProps.concat( [ "marginTop", "marginBottom" ] ).concat( cProps );
|
||||
hProps = hProps.concat( [ "marginLeft", "marginRight" ] );
|
||||
|
||||
// Only animate children with width attributes specified
|
||||
// TODO: is this right? should we include anything with css width specified as well
|
||||
element.find( "*[width]" ).each( function() {
|
||||
var child = $( this ),
|
||||
childOriginal = $.effects.scaledDimensions( child ),
|
||||
childFrom = {
|
||||
height: childOriginal.height * factor.from.y,
|
||||
width: childOriginal.width * factor.from.x,
|
||||
outerHeight: childOriginal.outerHeight * factor.from.y,
|
||||
outerWidth: childOriginal.outerWidth * factor.from.x
|
||||
},
|
||||
childTo = {
|
||||
height: childOriginal.height * factor.to.y,
|
||||
width: childOriginal.width * factor.to.x,
|
||||
outerHeight: childOriginal.height * factor.to.y,
|
||||
outerWidth: childOriginal.width * factor.to.x
|
||||
};
|
||||
|
||||
// Vertical props scaling
|
||||
if ( factor.from.y !== factor.to.y ) {
|
||||
childFrom = $.effects.setTransition( child, vProps, factor.from.y, childFrom );
|
||||
childTo = $.effects.setTransition( child, vProps, factor.to.y, childTo );
|
||||
}
|
||||
|
||||
// Horizontal props scaling
|
||||
if ( factor.from.x !== factor.to.x ) {
|
||||
childFrom = $.effects.setTransition( child, hProps, factor.from.x, childFrom );
|
||||
childTo = $.effects.setTransition( child, hProps, factor.to.x, childTo );
|
||||
}
|
||||
|
||||
if ( restore ) {
|
||||
$.effects.saveStyle( child );
|
||||
}
|
||||
|
||||
// Animate children
|
||||
child.css( childFrom );
|
||||
child.animate( childTo, options.duration, options.easing, function() {
|
||||
|
||||
// Restore children
|
||||
if ( restore ) {
|
||||
$.effects.restoreStyle( child );
|
||||
}
|
||||
} );
|
||||
} );
|
||||
}
|
||||
|
||||
// Animate
|
||||
element.animate( to, {
|
||||
queue: false,
|
||||
duration: options.duration,
|
||||
easing: options.easing,
|
||||
complete: function() {
|
||||
|
||||
var offset = element.offset();
|
||||
|
||||
if ( to.opacity === 0 ) {
|
||||
element.css( "opacity", from.opacity );
|
||||
}
|
||||
|
||||
if ( !restore ) {
|
||||
element
|
||||
.css( "position", position === "static" ? "relative" : position )
|
||||
.offset( offset );
|
||||
|
||||
// Need to save style here so that automatic style restoration
|
||||
// doesn't restore to the original styles from before the animation.
|
||||
$.effects.saveStyle( element );
|
||||
}
|
||||
|
||||
done();
|
||||
}
|
||||
} );
|
||||
|
||||
} );
|
||||
|
||||
} );
|
79
node_modules/jquery-ui/ui/effects/effect-slide.js
generated
vendored
Normal file
79
node_modules/jquery-ui/ui/effects/effect-slide.js
generated
vendored
Normal file
|
@ -0,0 +1,79 @@
|
|||
/*!
|
||||
* jQuery UI Effects Slide 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Slide Effect
|
||||
//>>group: Effects
|
||||
//>>description: Slides an element in and out of the viewport.
|
||||
//>>docs: http://api.jqueryui.com/slide-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
}
|
||||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
return $.effects.define( "slide", "show", function( options, done ) {
|
||||
var startClip, startRef,
|
||||
element = $( this ),
|
||||
map = {
|
||||
up: [ "bottom", "top" ],
|
||||
down: [ "top", "bottom" ],
|
||||
left: [ "right", "left" ],
|
||||
right: [ "left", "right" ]
|
||||
},
|
||||
mode = options.mode,
|
||||
direction = options.direction || "left",
|
||||
ref = ( direction === "up" || direction === "down" ) ? "top" : "left",
|
||||
positiveMotion = ( direction === "up" || direction === "left" ),
|
||||
distance = options.distance ||
|
||||
element[ ref === "top" ? "outerHeight" : "outerWidth" ]( true ),
|
||||
animation = {};
|
||||
|
||||
$.effects.createPlaceholder( element );
|
||||
|
||||
startClip = element.cssClip();
|
||||
startRef = element.position()[ ref ];
|
||||
|
||||
// Define hide animation
|
||||
animation[ ref ] = ( positiveMotion ? -1 : 1 ) * distance + startRef;
|
||||
animation.clip = element.cssClip();
|
||||
animation.clip[ map[ direction ][ 1 ] ] = animation.clip[ map[ direction ][ 0 ] ];
|
||||
|
||||
// Reverse the animation if we're showing
|
||||
if ( mode === "show" ) {
|
||||
element.cssClip( animation.clip );
|
||||
element.css( ref, animation[ ref ] );
|
||||
animation.clip = startClip;
|
||||
animation[ ref ] = startRef;
|
||||
}
|
||||
|
||||
// Actually animate
|
||||
element.animate( animation, {
|
||||
queue: false,
|
||||
duration: options.duration,
|
||||
easing: options.easing,
|
||||
complete: done
|
||||
} );
|
||||
} );
|
||||
|
||||
} );
|
43
node_modules/jquery-ui/ui/effects/effect-transfer.js
generated
vendored
Normal file
43
node_modules/jquery-ui/ui/effects/effect-transfer.js
generated
vendored
Normal file
|
@ -0,0 +1,43 @@
|
|||
/*!
|
||||
* jQuery UI Effects Transfer 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Transfer Effect
|
||||
//>>group: Effects
|
||||
//>>description: Displays a transfer effect from one element to another.
|
||||
//>>docs: http://api.jqueryui.com/transfer-effect/
|
||||
//>>demos: http://jqueryui.com/effect/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"../version",
|
||||
"../effect"
|
||||
], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
}
|
||||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
var effect;
|
||||
if ( $.uiBackCompat !== false ) {
|
||||
effect = $.effects.define( "transfer", function( options, done ) {
|
||||
$( this ).transfer( options, done );
|
||||
} );
|
||||
}
|
||||
return effect;
|
||||
|
||||
} );
|
87
node_modules/jquery-ui/ui/focusable.js
generated
vendored
Normal file
87
node_modules/jquery-ui/ui/focusable.js
generated
vendored
Normal file
|
@ -0,0 +1,87 @@
|
|||
/*!
|
||||
* jQuery UI Focusable 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: :focusable Selector
|
||||
//>>group: Core
|
||||
//>>description: Selects elements which can be focused.
|
||||
//>>docs: http://api.jqueryui.com/focusable-selector/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "jquery", "./version" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
}
|
||||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
// Selectors
|
||||
$.ui.focusable = function( element, hasTabindex ) {
|
||||
var map, mapName, img, focusableIfVisible, fieldset,
|
||||
nodeName = element.nodeName.toLowerCase();
|
||||
|
||||
if ( "area" === nodeName ) {
|
||||
map = element.parentNode;
|
||||
mapName = map.name;
|
||||
if ( !element.href || !mapName || map.nodeName.toLowerCase() !== "map" ) {
|
||||
return false;
|
||||
}
|
||||
img = $( "img[usemap='#" + mapName + "']" );
|
||||
return img.length > 0 && img.is( ":visible" );
|
||||
}
|
||||
|
||||
if ( /^(input|select|textarea|button|object)$/.test( nodeName ) ) {
|
||||
focusableIfVisible = !element.disabled;
|
||||
|
||||
if ( focusableIfVisible ) {
|
||||
|
||||
// Form controls within a disabled fieldset are disabled.
|
||||
// However, controls within the fieldset's legend do not get disabled.
|
||||
// Since controls generally aren't placed inside legends, we skip
|
||||
// this portion of the check.
|
||||
fieldset = $( element ).closest( "fieldset" )[ 0 ];
|
||||
if ( fieldset ) {
|
||||
focusableIfVisible = !fieldset.disabled;
|
||||
}
|
||||
}
|
||||
} else if ( "a" === nodeName ) {
|
||||
focusableIfVisible = element.href || hasTabindex;
|
||||
} else {
|
||||
focusableIfVisible = hasTabindex;
|
||||
}
|
||||
|
||||
return focusableIfVisible && $( element ).is( ":visible" ) && visible( $( element ) );
|
||||
};
|
||||
|
||||
// Support: IE 8 only
|
||||
// IE 8 doesn't resolve inherit to visible/hidden for computed values
|
||||
function visible( element ) {
|
||||
var visibility = element.css( "visibility" );
|
||||
while ( visibility === "inherit" ) {
|
||||
element = element.parent();
|
||||
visibility = element.css( "visibility" );
|
||||
}
|
||||
return visibility === "visible";
|
||||
}
|
||||
|
||||
$.extend( $.expr.pseudos, {
|
||||
focusable: function( element ) {
|
||||
return $.ui.focusable( element, $.attr( element, "tabindex" ) != null );
|
||||
}
|
||||
} );
|
||||
|
||||
return $.ui.focusable;
|
||||
|
||||
} );
|
80
node_modules/jquery-ui/ui/form-reset-mixin.js
generated
vendored
Normal file
80
node_modules/jquery-ui/ui/form-reset-mixin.js
generated
vendored
Normal file
|
@ -0,0 +1,80 @@
|
|||
/*!
|
||||
* jQuery UI Form Reset Mixin 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
|
||||
//>>label: Form Reset Mixin
|
||||
//>>group: Core
|
||||
//>>description: Refresh input widgets when their form is reset
|
||||
//>>docs: http://api.jqueryui.com/form-reset-mixin/
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [
|
||||
"jquery",
|
||||
"./form",
|
||||
"./version"
|
||||
], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
}
|
||||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
return $.ui.formResetMixin = {
|
||||
_formResetHandler: function() {
|
||||
var form = $( this );
|
||||
|
||||
// Wait for the form reset to actually happen before refreshing
|
||||
setTimeout( function() {
|
||||
var instances = form.data( "ui-form-reset-instances" );
|
||||
$.each( instances, function() {
|
||||
this.refresh();
|
||||
} );
|
||||
} );
|
||||
},
|
||||
|
||||
_bindFormResetHandler: function() {
|
||||
this.form = this.element._form();
|
||||
if ( !this.form.length ) {
|
||||
return;
|
||||
}
|
||||
|
||||
var instances = this.form.data( "ui-form-reset-instances" ) || [];
|
||||
if ( !instances.length ) {
|
||||
|
||||
// We don't use _on() here because we use a single event handler per form
|
||||
this.form.on( "reset.ui-form-reset", this._formResetHandler );
|
||||
}
|
||||
instances.push( this );
|
||||
this.form.data( "ui-form-reset-instances", instances );
|
||||
},
|
||||
|
||||
_unbindFormResetHandler: function() {
|
||||
if ( !this.form.length ) {
|
||||
return;
|
||||
}
|
||||
|
||||
var instances = this.form.data( "ui-form-reset-instances" );
|
||||
instances.splice( $.inArray( this, instances ), 1 );
|
||||
if ( instances.length ) {
|
||||
this.form.data( "ui-form-reset-instances", instances );
|
||||
} else {
|
||||
this.form
|
||||
.removeData( "ui-form-reset-instances" )
|
||||
.off( "reset.ui-form-reset" );
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
} );
|
23
node_modules/jquery-ui/ui/form.js
generated
vendored
Normal file
23
node_modules/jquery-ui/ui/form.js
generated
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "jquery", "./version" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
}
|
||||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
// Support: IE8 Only
|
||||
// IE8 does not support the form attribute and when it is supplied. It overwrites the form prop
|
||||
// with a string, so we need to find the proper form.
|
||||
return $.fn._form = function() {
|
||||
return typeof this[ 0 ].form === "string" ? this.closest( "form" ) : $( this[ 0 ].form );
|
||||
};
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-af.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-af.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Afrikaans initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Renier Pretorius. */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.af = {
|
||||
closeText: "Selekteer",
|
||||
prevText: "Vorige",
|
||||
nextText: "Volgende",
|
||||
currentText: "Vandag",
|
||||
monthNames: [ "Januarie", "Februarie", "Maart", "April", "Mei", "Junie",
|
||||
"Julie", "Augustus", "September", "Oktober", "November", "Desember" ],
|
||||
monthNamesShort: [ "Jan", "Feb", "Mrt", "Apr", "Mei", "Jun",
|
||||
"Jul", "Aug", "Sep", "Okt", "Nov", "Des" ],
|
||||
dayNames: [ "Sondag", "Maandag", "Dinsdag", "Woensdag", "Donderdag", "Vrydag", "Saterdag" ],
|
||||
dayNamesShort: [ "Son", "Maa", "Din", "Woe", "Don", "Vry", "Sat" ],
|
||||
dayNamesMin: [ "So", "Ma", "Di", "Wo", "Do", "Vr", "Sa" ],
|
||||
weekHeader: "Wk",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.af );
|
||||
|
||||
return datepicker.regional.af;
|
||||
|
||||
} );
|
42
node_modules/jquery-ui/ui/i18n/datepicker-ar-DZ.js
generated
vendored
Normal file
42
node_modules/jquery-ui/ui/i18n/datepicker-ar-DZ.js
generated
vendored
Normal file
|
@ -0,0 +1,42 @@
|
|||
/* Algerian Arabic Translation for jQuery UI date picker plugin.
|
||||
/* Used in most of Maghreb countries, primarily in Algeria, Tunisia, Morocco.
|
||||
/* Mohamed Cherif BOUCHELAGHEM -- cherifbouchelaghem@yahoo.fr */
|
||||
/* Mohamed Amine HADDAD -- zatamine@gmail.com */
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional[ "ar-DZ" ] = {
|
||||
closeText: "إغلاق",
|
||||
prevText: "<السابق",
|
||||
nextText: "التالي>",
|
||||
currentText: "اليوم",
|
||||
monthNames: [ "جانفي", "فيفري", "مارس", "أفريل", "ماي", "جوان",
|
||||
"جويلية", "أوت", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر" ],
|
||||
monthNamesShort: [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12" ],
|
||||
dayNames: [ "الأحد", "الاثنين", "الثلاثاء", "الأربعاء", "الخميس", "الجمعة", "السبت" ],
|
||||
dayNamesShort: [ "الأحد", "الاثنين", "الثلاثاء", "الأربعاء", "الخميس", "الجمعة", "السبت" ],
|
||||
dayNamesMin: [ "ح", "ن", "ث", "ر", "خ", "ج", "س" ],
|
||||
weekHeader: "أسبوع",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 6,
|
||||
isRTL: true,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional[ "ar-DZ" ] );
|
||||
|
||||
return datepicker.regional[ "ar-DZ" ];
|
||||
|
||||
} );
|
42
node_modules/jquery-ui/ui/i18n/datepicker-ar.js
generated
vendored
Normal file
42
node_modules/jquery-ui/ui/i18n/datepicker-ar.js
generated
vendored
Normal file
|
@ -0,0 +1,42 @@
|
|||
/* Arabic Translation for jQuery UI date picker plugin. */
|
||||
/* Used in most of Arab countries, primarily in Bahrain, */
|
||||
/* Kuwait, Oman, Qatar, Saudi Arabia and the United Arab Emirates, Egypt, Sudan and Yemen. */
|
||||
/* Written by Mohammed Alshehri -- m@dralshehri.com */
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.ar = {
|
||||
closeText: "إغلاق",
|
||||
prevText: "<السابق",
|
||||
nextText: "التالي>",
|
||||
currentText: "اليوم",
|
||||
monthNames: [ "يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو",
|
||||
"يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر" ],
|
||||
monthNamesShort: [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12" ],
|
||||
dayNames: [ "الأحد", "الاثنين", "الثلاثاء", "الأربعاء", "الخميس", "الجمعة", "السبت" ],
|
||||
dayNamesShort: [ "أحد", "اثنين", "ثلاثاء", "أربعاء", "خميس", "جمعة", "سبت" ],
|
||||
dayNamesMin: [ "ح", "ن", "ث", "ر", "خ", "ج", "س" ],
|
||||
weekHeader: "أسبوع",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 0,
|
||||
isRTL: true,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.ar );
|
||||
|
||||
return datepicker.regional.ar;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-az.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-az.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Azerbaijani (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Jamil Najafov (necefov33@gmail.com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.az = {
|
||||
closeText: "Bağla",
|
||||
prevText: "<Geri",
|
||||
nextText: "İrəli>",
|
||||
currentText: "Bugün",
|
||||
monthNames: [ "Yanvar", "Fevral", "Mart", "Aprel", "May", "İyun",
|
||||
"İyul", "Avqust", "Sentyabr", "Oktyabr", "Noyabr", "Dekabr" ],
|
||||
monthNamesShort: [ "Yan", "Fev", "Mar", "Apr", "May", "İyun",
|
||||
"İyul", "Avq", "Sen", "Okt", "Noy", "Dek" ],
|
||||
dayNames: [ "Bazar", "Bazar ertəsi", "Çərşənbə axşamı", "Çərşənbə", "Cümə axşamı", "Cümə", "Şənbə" ],
|
||||
dayNamesShort: [ "B", "Be", "Ça", "Ç", "Ca", "C", "Ş" ],
|
||||
dayNamesMin: [ "B", "B", "Ç", "С", "Ç", "C", "Ş" ],
|
||||
weekHeader: "Hf",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.az );
|
||||
|
||||
return datepicker.regional.az;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-be.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-be.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Belarusian initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Pavel Selitskas <p.selitskas@gmail.com> */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.be = {
|
||||
closeText: "Зачыніць",
|
||||
prevText: "←Папяр.",
|
||||
nextText: "Наст.→",
|
||||
currentText: "Сёньня",
|
||||
monthNames: [ "Студзень", "Люты", "Сакавік", "Красавік", "Травень", "Чэрвень",
|
||||
"Ліпень", "Жнівень", "Верасень", "Кастрычнік", "Лістапад", "Сьнежань" ],
|
||||
monthNamesShort: [ "Сту", "Лют", "Сак", "Кра", "Тра", "Чэр",
|
||||
"Ліп", "Жні", "Вер", "Кас", "Ліс", "Сьн" ],
|
||||
dayNames: [ "нядзеля", "панядзелак", "аўторак", "серада", "чацьвер", "пятніца", "субота" ],
|
||||
dayNamesShort: [ "ндз", "пнд", "аўт", "срд", "чцв", "птн", "сбт" ],
|
||||
dayNamesMin: [ "Нд", "Пн", "Аў", "Ср", "Чц", "Пт", "Сб" ],
|
||||
weekHeader: "Тд",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.be );
|
||||
|
||||
return datepicker.regional.be;
|
||||
|
||||
} );
|
41
node_modules/jquery-ui/ui/i18n/datepicker-bg.js
generated
vendored
Normal file
41
node_modules/jquery-ui/ui/i18n/datepicker-bg.js
generated
vendored
Normal file
|
@ -0,0 +1,41 @@
|
|||
/* Bulgarian initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Stoyan Kyosev (http://svest.org). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.bg = {
|
||||
closeText: "затвори",
|
||||
prevText: "<назад",
|
||||
nextText: "напред>",
|
||||
nextBigText: ">>",
|
||||
currentText: "днес",
|
||||
monthNames: [ "Януари", "Февруари", "Март", "Април", "Май", "Юни",
|
||||
"Юли", "Август", "Септември", "Октомври", "Ноември", "Декември" ],
|
||||
monthNamesShort: [ "Яну", "Фев", "Мар", "Апр", "Май", "Юни",
|
||||
"Юли", "Авг", "Сеп", "Окт", "Нов", "Дек" ],
|
||||
dayNames: [ "Неделя", "Понеделник", "Вторник", "Сряда", "Четвъртък", "Петък", "Събота" ],
|
||||
dayNamesShort: [ "Нед", "Пон", "Вто", "Сря", "Чет", "Пет", "Съб" ],
|
||||
dayNamesMin: [ "Не", "По", "Вт", "Ср", "Че", "Пе", "Съ" ],
|
||||
weekHeader: "Wk",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.bg );
|
||||
|
||||
return datepicker.regional.bg;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-bs.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-bs.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Bosnian i18n for the jQuery UI date picker plugin. */
|
||||
/* Written by Kenan Konjo. */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.bs = {
|
||||
closeText: "Zatvori",
|
||||
prevText: "<",
|
||||
nextText: ">",
|
||||
currentText: "Danas",
|
||||
monthNames: [ "Januar", "Februar", "Mart", "April", "Maj", "Juni",
|
||||
"Juli", "August", "Septembar", "Oktobar", "Novembar", "Decembar" ],
|
||||
monthNamesShort: [ "Jan", "Feb", "Mar", "Apr", "Maj", "Jun",
|
||||
"Jul", "Aug", "Sep", "Okt", "Nov", "Dec" ],
|
||||
dayNames: [ "Nedelja", "Ponedeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota" ],
|
||||
dayNamesShort: [ "Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub" ],
|
||||
dayNamesMin: [ "Ne", "Po", "Ut", "Sr", "Če", "Pe", "Su" ],
|
||||
weekHeader: "Wk",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.bs );
|
||||
|
||||
return datepicker.regional.bs;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-ca.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-ca.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Inicialització en català per a l'extensió 'UI date picker' per jQuery. */
|
||||
/* Writers: (joan.leon@gmail.com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.ca = {
|
||||
closeText: "Tanca",
|
||||
prevText: "Anterior",
|
||||
nextText: "Següent",
|
||||
currentText: "Avui",
|
||||
monthNames: [ "gener", "febrer", "març", "abril", "maig", "juny",
|
||||
"juliol", "agost", "setembre", "octubre", "novembre", "desembre" ],
|
||||
monthNamesShort: [ "gen", "feb", "març", "abr", "maig", "juny",
|
||||
"jul", "ag", "set", "oct", "nov", "des" ],
|
||||
dayNames: [ "diumenge", "dilluns", "dimarts", "dimecres", "dijous", "divendres", "dissabte" ],
|
||||
dayNamesShort: [ "dg", "dl", "dt", "dc", "dj", "dv", "ds" ],
|
||||
dayNamesMin: [ "dg", "dl", "dt", "dc", "dj", "dv", "ds" ],
|
||||
weekHeader: "Set",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.ca );
|
||||
|
||||
return datepicker.regional.ca;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-cs.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-cs.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Czech initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Tomas Muller (tomas@tomas-muller.net). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.cs = {
|
||||
closeText: "Zavřít",
|
||||
prevText: "<Dříve",
|
||||
nextText: "Později>",
|
||||
currentText: "Nyní",
|
||||
monthNames: [ "leden", "únor", "březen", "duben", "květen", "červen",
|
||||
"červenec", "srpen", "září", "říjen", "listopad", "prosinec" ],
|
||||
monthNamesShort: [ "led", "úno", "bře", "dub", "kvě", "čer",
|
||||
"čvc", "srp", "zář", "říj", "lis", "pro" ],
|
||||
dayNames: [ "neděle", "pondělí", "úterý", "středa", "čtvrtek", "pátek", "sobota" ],
|
||||
dayNamesShort: [ "ne", "po", "út", "st", "čt", "pá", "so" ],
|
||||
dayNamesMin: [ "ne", "po", "út", "st", "čt", "pá", "so" ],
|
||||
weekHeader: "Týd",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.cs );
|
||||
|
||||
return datepicker.regional.cs;
|
||||
|
||||
} );
|
48
node_modules/jquery-ui/ui/i18n/datepicker-cy-GB.js
generated
vendored
Normal file
48
node_modules/jquery-ui/ui/i18n/datepicker-cy-GB.js
generated
vendored
Normal file
|
@ -0,0 +1,48 @@
|
|||
/* Welsh/UK initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by William Griffiths. */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional[ "cy-GB" ] = {
|
||||
closeText: "Done",
|
||||
prevText: "Prev",
|
||||
nextText: "Next",
|
||||
currentText: "Today",
|
||||
monthNames: [ "Ionawr", "Chwefror", "Mawrth", "Ebrill", "Mai", "Mehefin",
|
||||
"Gorffennaf", "Awst", "Medi", "Hydref", "Tachwedd", "Rhagfyr" ],
|
||||
monthNamesShort: [ "Ion", "Chw", "Maw", "Ebr", "Mai", "Meh",
|
||||
"Gor", "Aws", "Med", "Hyd", "Tac", "Rha" ],
|
||||
dayNames: [
|
||||
"Dydd Sul",
|
||||
"Dydd Llun",
|
||||
"Dydd Mawrth",
|
||||
"Dydd Mercher",
|
||||
"Dydd Iau",
|
||||
"Dydd Gwener",
|
||||
"Dydd Sadwrn"
|
||||
],
|
||||
dayNamesShort: [ "Sul", "Llu", "Maw", "Mer", "Iau", "Gwe", "Sad" ],
|
||||
dayNamesMin: [ "Su", "Ll", "Ma", "Me", "Ia", "Gw", "Sa" ],
|
||||
weekHeader: "Wy",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional[ "cy-GB" ] );
|
||||
|
||||
return datepicker.regional[ "cy-GB" ];
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-da.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-da.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Danish initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Jan Christensen ( deletestuff@gmail.com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.da = {
|
||||
closeText: "Luk",
|
||||
prevText: "<Forrige",
|
||||
nextText: "Næste>",
|
||||
currentText: "I dag",
|
||||
monthNames: [ "Januar", "Februar", "Marts", "April", "Maj", "Juni",
|
||||
"Juli", "August", "September", "Oktober", "November", "December" ],
|
||||
monthNamesShort: [ "Jan", "Feb", "Mar", "Apr", "Maj", "Jun",
|
||||
"Jul", "Aug", "Sep", "Okt", "Nov", "Dec" ],
|
||||
dayNames: [ "Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag" ],
|
||||
dayNamesShort: [ "Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør" ],
|
||||
dayNamesMin: [ "Sø", "Ma", "Ti", "On", "To", "Fr", "Lø" ],
|
||||
weekHeader: "Uge",
|
||||
dateFormat: "dd-mm-yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.da );
|
||||
|
||||
return datepicker.regional.da;
|
||||
|
||||
} );
|
41
node_modules/jquery-ui/ui/i18n/datepicker-de-AT.js
generated
vendored
Normal file
41
node_modules/jquery-ui/ui/i18n/datepicker-de-AT.js
generated
vendored
Normal file
|
@ -0,0 +1,41 @@
|
|||
/* German/Austrian initialisation for the jQuery UI date picker plugin. */
|
||||
/* Based on the de initialisation. */
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional[ "de-AT" ] = {
|
||||
closeText: "Schließen",
|
||||
prevText: "<Zurück",
|
||||
nextText: "Vor>",
|
||||
currentText: "Heute",
|
||||
monthNames: [ "Jänner", "Februar", "März", "April", "Mai", "Juni",
|
||||
"Juli", "August", "September", "Oktober", "November", "Dezember" ],
|
||||
monthNamesShort: [ "Jän", "Feb", "Mär", "Apr", "Mai", "Jun",
|
||||
"Jul", "Aug", "Sep", "Okt", "Nov", "Dez" ],
|
||||
dayNames: [ "Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag" ],
|
||||
dayNamesShort: [ "So", "Mo", "Di", "Mi", "Do", "Fr", "Sa" ],
|
||||
dayNamesMin: [ "So", "Mo", "Di", "Mi", "Do", "Fr", "Sa" ],
|
||||
weekHeader: "KW",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional[ "de-AT" ] );
|
||||
|
||||
return datepicker.regional[ "de-AT" ];
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-de.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-de.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* German initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Milian Wolff (mail@milianw.de). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.de = {
|
||||
closeText: "Schließen",
|
||||
prevText: "<Zurück",
|
||||
nextText: "Vor>",
|
||||
currentText: "Heute",
|
||||
monthNames: [ "Januar", "Februar", "März", "April", "Mai", "Juni",
|
||||
"Juli", "August", "September", "Oktober", "November", "Dezember" ],
|
||||
monthNamesShort: [ "Jan", "Feb", "Mär", "Apr", "Mai", "Jun",
|
||||
"Jul", "Aug", "Sep", "Okt", "Nov", "Dez" ],
|
||||
dayNames: [ "Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag" ],
|
||||
dayNamesShort: [ "So", "Mo", "Di", "Mi", "Do", "Fr", "Sa" ],
|
||||
dayNamesMin: [ "So", "Mo", "Di", "Mi", "Do", "Fr", "Sa" ],
|
||||
weekHeader: "KW",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.de );
|
||||
|
||||
return datepicker.regional.de;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-el.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-el.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Greek (el) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Alex Cicovic (http://www.alexcicovic.com) */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.el = {
|
||||
closeText: "Κλείσιμο",
|
||||
prevText: "Προηγούμενος",
|
||||
nextText: "Επόμενος",
|
||||
currentText: "Σήμερα",
|
||||
monthNames: [ "Ιανουάριος", "Φεβρουάριος", "Μάρτιος", "Απρίλιος", "Μάιος", "Ιούνιος",
|
||||
"Ιούλιος", "Αύγουστος", "Σεπτέμβριος", "Οκτώβριος", "Νοέμβριος", "Δεκέμβριος" ],
|
||||
monthNamesShort: [ "Ιαν", "Φεβ", "Μαρ", "Απρ", "Μαι", "Ιουν",
|
||||
"Ιουλ", "Αυγ", "Σεπ", "Οκτ", "Νοε", "Δεκ" ],
|
||||
dayNames: [ "Κυριακή", "Δευτέρα", "Τρίτη", "Τετάρτη", "Πέμπτη", "Παρασκευή", "Σάββατο" ],
|
||||
dayNamesShort: [ "Κυρ", "Δευ", "Τρι", "Τετ", "Πεμ", "Παρ", "Σαβ" ],
|
||||
dayNamesMin: [ "Κυ", "Δε", "Τρ", "Τε", "Πε", "Πα", "Σα" ],
|
||||
weekHeader: "Εβδ",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.el );
|
||||
|
||||
return datepicker.regional.el;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-en-AU.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-en-AU.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* English/Australia initialisation for the jQuery UI date picker plugin. */
|
||||
/* Based on the en-GB initialisation. */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional[ "en-AU" ] = {
|
||||
closeText: "Done",
|
||||
prevText: "Prev",
|
||||
nextText: "Next",
|
||||
currentText: "Today",
|
||||
monthNames: [ "January", "February", "March", "April", "May", "June",
|
||||
"July", "August", "September", "October", "November", "December" ],
|
||||
monthNamesShort: [ "Jan", "Feb", "Mar", "Apr", "May", "Jun",
|
||||
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ],
|
||||
dayNames: [ "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" ],
|
||||
dayNamesShort: [ "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" ],
|
||||
dayNamesMin: [ "Su", "Mo", "Tu", "We", "Th", "Fr", "Sa" ],
|
||||
weekHeader: "Wk",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional[ "en-AU" ] );
|
||||
|
||||
return datepicker.regional[ "en-AU" ];
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-en-GB.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-en-GB.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* English/UK initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Stuart. */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional[ "en-GB" ] = {
|
||||
closeText: "Done",
|
||||
prevText: "Prev",
|
||||
nextText: "Next",
|
||||
currentText: "Today",
|
||||
monthNames: [ "January", "February", "March", "April", "May", "June",
|
||||
"July", "August", "September", "October", "November", "December" ],
|
||||
monthNamesShort: [ "Jan", "Feb", "Mar", "Apr", "May", "Jun",
|
||||
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ],
|
||||
dayNames: [ "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" ],
|
||||
dayNamesShort: [ "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" ],
|
||||
dayNamesMin: [ "Su", "Mo", "Tu", "We", "Th", "Fr", "Sa" ],
|
||||
weekHeader: "Wk",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional[ "en-GB" ] );
|
||||
|
||||
return datepicker.regional[ "en-GB" ];
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-en-NZ.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-en-NZ.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* English/New Zealand initialisation for the jQuery UI date picker plugin. */
|
||||
/* Based on the en-GB initialisation. */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional[ "en-NZ" ] = {
|
||||
closeText: "Done",
|
||||
prevText: "Prev",
|
||||
nextText: "Next",
|
||||
currentText: "Today",
|
||||
monthNames: [ "January", "February", "March", "April", "May", "June",
|
||||
"July", "August", "September", "October", "November", "December" ],
|
||||
monthNamesShort: [ "Jan", "Feb", "Mar", "Apr", "May", "Jun",
|
||||
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ],
|
||||
dayNames: [ "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" ],
|
||||
dayNamesShort: [ "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" ],
|
||||
dayNamesMin: [ "Su", "Mo", "Tu", "We", "Th", "Fr", "Sa" ],
|
||||
weekHeader: "Wk",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional[ "en-NZ" ] );
|
||||
|
||||
return datepicker.regional[ "en-NZ" ];
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-eo.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-eo.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Esperanto initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Olivier M. (olivierweb@ifrance.com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.eo = {
|
||||
closeText: "Fermi",
|
||||
prevText: "<Anta",
|
||||
nextText: "Sekv>",
|
||||
currentText: "Nuna",
|
||||
monthNames: [ "Januaro", "Februaro", "Marto", "Aprilo", "Majo", "Junio",
|
||||
"Julio", "Aŭgusto", "Septembro", "Oktobro", "Novembro", "Decembro" ],
|
||||
monthNamesShort: [ "Jan", "Feb", "Mar", "Apr", "Maj", "Jun",
|
||||
"Jul", "Aŭg", "Sep", "Okt", "Nov", "Dec" ],
|
||||
dayNames: [ "Dimanĉo", "Lundo", "Mardo", "Merkredo", "Ĵaŭdo", "Vendredo", "Sabato" ],
|
||||
dayNamesShort: [ "Dim", "Lun", "Mar", "Mer", "Ĵaŭ", "Ven", "Sab" ],
|
||||
dayNamesMin: [ "Di", "Lu", "Ma", "Me", "Ĵa", "Ve", "Sa" ],
|
||||
weekHeader: "Sb",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 0,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.eo );
|
||||
|
||||
return datepicker.regional.eo;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-es.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-es.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Inicialización en español para la extensión 'UI date picker' para jQuery. */
|
||||
/* Traducido por Vester (xvester@gmail.com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.es = {
|
||||
closeText: "Cerrar",
|
||||
prevText: "<Ant",
|
||||
nextText: "Sig>",
|
||||
currentText: "Hoy",
|
||||
monthNames: [ "enero", "febrero", "marzo", "abril", "mayo", "junio",
|
||||
"julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre" ],
|
||||
monthNamesShort: [ "ene", "feb", "mar", "abr", "may", "jun",
|
||||
"jul", "ago", "sep", "oct", "nov", "dic" ],
|
||||
dayNames: [ "domingo", "lunes", "martes", "miércoles", "jueves", "viernes", "sábado" ],
|
||||
dayNamesShort: [ "dom", "lun", "mar", "mié", "jue", "vie", "sáb" ],
|
||||
dayNamesMin: [ "D", "L", "M", "X", "J", "V", "S" ],
|
||||
weekHeader: "Sm",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.es );
|
||||
|
||||
return datepicker.regional.es;
|
||||
|
||||
} );
|
48
node_modules/jquery-ui/ui/i18n/datepicker-et.js
generated
vendored
Normal file
48
node_modules/jquery-ui/ui/i18n/datepicker-et.js
generated
vendored
Normal file
|
@ -0,0 +1,48 @@
|
|||
/* Estonian initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Mart Sõmermaa (mrts.pydev at gmail com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.et = {
|
||||
closeText: "Sulge",
|
||||
prevText: "Eelnev",
|
||||
nextText: "Järgnev",
|
||||
currentText: "Täna",
|
||||
monthNames: [ "Jaanuar", "Veebruar", "Märts", "Aprill", "Mai", "Juuni",
|
||||
"Juuli", "August", "September", "Oktoober", "November", "Detsember" ],
|
||||
monthNamesShort: [ "Jaan", "Veebr", "Märts", "Apr", "Mai", "Juuni",
|
||||
"Juuli", "Aug", "Sept", "Okt", "Nov", "Dets" ],
|
||||
dayNames: [
|
||||
"Pühapäev",
|
||||
"Esmaspäev",
|
||||
"Teisipäev",
|
||||
"Kolmapäev",
|
||||
"Neljapäev",
|
||||
"Reede",
|
||||
"Laupäev"
|
||||
],
|
||||
dayNamesShort: [ "Pühap", "Esmasp", "Teisip", "Kolmap", "Neljap", "Reede", "Laup" ],
|
||||
dayNamesMin: [ "P", "E", "T", "K", "N", "R", "L" ],
|
||||
weekHeader: "näd",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.et );
|
||||
|
||||
return datepicker.regional.et;
|
||||
|
||||
} );
|
39
node_modules/jquery-ui/ui/i18n/datepicker-eu.js
generated
vendored
Normal file
39
node_modules/jquery-ui/ui/i18n/datepicker-eu.js
generated
vendored
Normal file
|
@ -0,0 +1,39 @@
|
|||
/* Karrikas-ek itzulia (karrikas@karrikas.com) */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.eu = {
|
||||
closeText: "Egina",
|
||||
prevText: "<Aur",
|
||||
nextText: "Hur>",
|
||||
currentText: "Gaur",
|
||||
monthNames: [ "urtarrila", "otsaila", "martxoa", "apirila", "maiatza", "ekaina",
|
||||
"uztaila", "abuztua", "iraila", "urria", "azaroa", "abendua" ],
|
||||
monthNamesShort: [ "urt.", "ots.", "mar.", "api.", "mai.", "eka.",
|
||||
"uzt.", "abu.", "ira.", "urr.", "aza.", "abe." ],
|
||||
dayNames: [ "igandea", "astelehena", "asteartea", "asteazkena", "osteguna", "ostirala", "larunbata" ],
|
||||
dayNamesShort: [ "ig.", "al.", "ar.", "az.", "og.", "ol.", "lr." ],
|
||||
dayNamesMin: [ "ig", "al", "ar", "az", "og", "ol", "lr" ],
|
||||
weekHeader: "As",
|
||||
dateFormat: "yy-mm-dd",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.eu );
|
||||
|
||||
return datepicker.regional.eu;
|
||||
|
||||
} );
|
76
node_modules/jquery-ui/ui/i18n/datepicker-fa.js
generated
vendored
Normal file
76
node_modules/jquery-ui/ui/i18n/datepicker-fa.js
generated
vendored
Normal file
|
@ -0,0 +1,76 @@
|
|||
/* Persian (Farsi) Translation for the jQuery UI date picker plugin. */
|
||||
/* Javad Mowlanezhad -- jmowla@gmail.com */
|
||||
/* Jalali calendar should supported soon! (Its implemented but I have to test it) */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.fa = {
|
||||
closeText: "بستن",
|
||||
prevText: "<قبلی",
|
||||
nextText: "بعدی>",
|
||||
currentText: "امروز",
|
||||
monthNames: [
|
||||
"ژانویه",
|
||||
"فوریه",
|
||||
"مارس",
|
||||
"آوریل",
|
||||
"مه",
|
||||
"ژوئن",
|
||||
"ژوئیه",
|
||||
"اوت",
|
||||
"سپتامبر",
|
||||
"اکتبر",
|
||||
"نوامبر",
|
||||
"دسامبر"
|
||||
],
|
||||
monthNamesShort: [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12" ],
|
||||
dayNames: [
|
||||
"يکشنبه",
|
||||
"دوشنبه",
|
||||
"سهشنبه",
|
||||
"چهارشنبه",
|
||||
"پنجشنبه",
|
||||
"جمعه",
|
||||
"شنبه"
|
||||
],
|
||||
dayNamesShort: [
|
||||
"ی",
|
||||
"د",
|
||||
"س",
|
||||
"چ",
|
||||
"پ",
|
||||
"ج",
|
||||
"ش"
|
||||
],
|
||||
dayNamesMin: [
|
||||
"ی",
|
||||
"د",
|
||||
"س",
|
||||
"چ",
|
||||
"پ",
|
||||
"ج",
|
||||
"ش"
|
||||
],
|
||||
weekHeader: "هف",
|
||||
dateFormat: "yy/mm/dd",
|
||||
firstDay: 6,
|
||||
isRTL: true,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.fa );
|
||||
|
||||
return datepicker.regional.fa;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-fi.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-fi.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Finnish initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Harri Kilpiö (harrikilpio@gmail.com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.fi = {
|
||||
closeText: "Sulje",
|
||||
prevText: "«Edellinen",
|
||||
nextText: "Seuraava»",
|
||||
currentText: "Tänään",
|
||||
monthNames: [ "Tammikuu", "Helmikuu", "Maaliskuu", "Huhtikuu", "Toukokuu", "Kesäkuu",
|
||||
"Heinäkuu", "Elokuu", "Syyskuu", "Lokakuu", "Marraskuu", "Joulukuu" ],
|
||||
monthNamesShort: [ "Tammi", "Helmi", "Maalis", "Huhti", "Touko", "Kesä",
|
||||
"Heinä", "Elo", "Syys", "Loka", "Marras", "Joulu" ],
|
||||
dayNamesShort: [ "Su", "Ma", "Ti", "Ke", "To", "Pe", "La" ],
|
||||
dayNames: [ "Sunnuntai", "Maanantai", "Tiistai", "Keskiviikko", "Torstai", "Perjantai", "Lauantai" ],
|
||||
dayNamesMin: [ "Su", "Ma", "Ti", "Ke", "To", "Pe", "La" ],
|
||||
weekHeader: "Vk",
|
||||
dateFormat: "d.m.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.fi );
|
||||
|
||||
return datepicker.regional.fi;
|
||||
|
||||
} );
|
48
node_modules/jquery-ui/ui/i18n/datepicker-fo.js
generated
vendored
Normal file
48
node_modules/jquery-ui/ui/i18n/datepicker-fo.js
generated
vendored
Normal file
|
@ -0,0 +1,48 @@
|
|||
/* Faroese initialisation for the jQuery UI date picker plugin */
|
||||
/* Written by Sverri Mohr Olsen, sverrimo@gmail.com */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.fo = {
|
||||
closeText: "Lat aftur",
|
||||
prevText: "<Fyrra",
|
||||
nextText: "Næsta>",
|
||||
currentText: "Í dag",
|
||||
monthNames: [ "Januar", "Februar", "Mars", "Apríl", "Mei", "Juni",
|
||||
"Juli", "August", "September", "Oktober", "November", "Desember" ],
|
||||
monthNamesShort: [ "Jan", "Feb", "Mar", "Apr", "Mei", "Jun",
|
||||
"Jul", "Aug", "Sep", "Okt", "Nov", "Des" ],
|
||||
dayNames: [
|
||||
"Sunnudagur",
|
||||
"Mánadagur",
|
||||
"Týsdagur",
|
||||
"Mikudagur",
|
||||
"Hósdagur",
|
||||
"Fríggjadagur",
|
||||
"Leyardagur"
|
||||
],
|
||||
dayNamesShort: [ "Sun", "Mán", "Týs", "Mik", "Hós", "Frí", "Ley" ],
|
||||
dayNamesMin: [ "Su", "Má", "Tý", "Mi", "Hó", "Fr", "Le" ],
|
||||
weekHeader: "Vk",
|
||||
dateFormat: "dd-mm-yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.fo );
|
||||
|
||||
return datepicker.regional.fo;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-fr-CA.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-fr-CA.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Canadian-French initialisation for the jQuery UI date picker plugin. */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional[ "fr-CA" ] = {
|
||||
closeText: "Fermer",
|
||||
prevText: "Précédent",
|
||||
nextText: "Suivant",
|
||||
currentText: "Aujourd'hui",
|
||||
monthNames: [ "janvier", "février", "mars", "avril", "mai", "juin",
|
||||
"juillet", "août", "septembre", "octobre", "novembre", "décembre" ],
|
||||
monthNamesShort: [ "janv.", "févr.", "mars", "avril", "mai", "juin",
|
||||
"juil.", "août", "sept.", "oct.", "nov.", "déc." ],
|
||||
dayNames: [ "dimanche", "lundi", "mardi", "mercredi", "jeudi", "vendredi", "samedi" ],
|
||||
dayNamesShort: [ "dim.", "lun.", "mar.", "mer.", "jeu.", "ven.", "sam." ],
|
||||
dayNamesMin: [ "D", "L", "M", "M", "J", "V", "S" ],
|
||||
weekHeader: "Sem.",
|
||||
dateFormat: "yy-mm-dd",
|
||||
firstDay: 0,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: ""
|
||||
};
|
||||
datepicker.setDefaults( datepicker.regional[ "fr-CA" ] );
|
||||
|
||||
return datepicker.regional[ "fr-CA" ];
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-fr-CH.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-fr-CH.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Swiss-French initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written Martin Voelkle (martin.voelkle@e-tc.ch). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional[ "fr-CH" ] = {
|
||||
closeText: "Fermer",
|
||||
prevText: "<Préc",
|
||||
nextText: "Suiv>",
|
||||
currentText: "Courant",
|
||||
monthNames: [ "janvier", "février", "mars", "avril", "mai", "juin",
|
||||
"juillet", "août", "septembre", "octobre", "novembre", "décembre" ],
|
||||
monthNamesShort: [ "janv.", "févr.", "mars", "avril", "mai", "juin",
|
||||
"juil.", "août", "sept.", "oct.", "nov.", "déc." ],
|
||||
dayNames: [ "dimanche", "lundi", "mardi", "mercredi", "jeudi", "vendredi", "samedi" ],
|
||||
dayNamesShort: [ "dim.", "lun.", "mar.", "mer.", "jeu.", "ven.", "sam." ],
|
||||
dayNamesMin: [ "D", "L", "M", "M", "J", "V", "S" ],
|
||||
weekHeader: "Sm",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional[ "fr-CH" ] );
|
||||
|
||||
return datepicker.regional[ "fr-CH" ];
|
||||
|
||||
} );
|
42
node_modules/jquery-ui/ui/i18n/datepicker-fr.js
generated
vendored
Normal file
42
node_modules/jquery-ui/ui/i18n/datepicker-fr.js
generated
vendored
Normal file
|
@ -0,0 +1,42 @@
|
|||
/* French initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Keith Wood (kbwood{at}iinet.com.au),
|
||||
Stéphane Nahmani (sholby@sholby.net),
|
||||
Stéphane Raimbault <stephane.raimbault@gmail.com> */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.fr = {
|
||||
closeText: "Fermer",
|
||||
prevText: "Précédent",
|
||||
nextText: "Suivant",
|
||||
currentText: "Aujourd'hui",
|
||||
monthNames: [ "janvier", "février", "mars", "avril", "mai", "juin",
|
||||
"juillet", "août", "septembre", "octobre", "novembre", "décembre" ],
|
||||
monthNamesShort: [ "janv.", "févr.", "mars", "avr.", "mai", "juin",
|
||||
"juil.", "août", "sept.", "oct.", "nov.", "déc." ],
|
||||
dayNames: [ "dimanche", "lundi", "mardi", "mercredi", "jeudi", "vendredi", "samedi" ],
|
||||
dayNamesShort: [ "dim.", "lun.", "mar.", "mer.", "jeu.", "ven.", "sam." ],
|
||||
dayNamesMin: [ "D", "L", "M", "M", "J", "V", "S" ],
|
||||
weekHeader: "Sem.",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.fr );
|
||||
|
||||
return datepicker.regional.fr;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-gl.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-gl.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Galician localization for 'UI date picker' jQuery extension. */
|
||||
/* Translated by Jorge Barreiro <yortx.barry@gmail.com>. */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.gl = {
|
||||
closeText: "Pechar",
|
||||
prevText: "<Ant",
|
||||
nextText: "Seg>",
|
||||
currentText: "Hoxe",
|
||||
monthNames: [ "Xaneiro", "Febreiro", "Marzo", "Abril", "Maio", "Xuño",
|
||||
"Xullo", "Agosto", "Setembro", "Outubro", "Novembro", "Decembro" ],
|
||||
monthNamesShort: [ "Xan", "Feb", "Mar", "Abr", "Mai", "Xuñ",
|
||||
"Xul", "Ago", "Set", "Out", "Nov", "Dec" ],
|
||||
dayNames: [ "Domingo", "Luns", "Martes", "Mércores", "Xoves", "Venres", "Sábado" ],
|
||||
dayNamesShort: [ "Dom", "Lun", "Mar", "Mér", "Xov", "Ven", "Sáb" ],
|
||||
dayNamesMin: [ "Do", "Lu", "Ma", "Mé", "Xo", "Ve", "Sá" ],
|
||||
weekHeader: "Sm",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.gl );
|
||||
|
||||
return datepicker.regional.gl;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-he.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-he.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Hebrew initialisation for the UI Datepicker extension. */
|
||||
/* Written by Amir Hardon (ahardon at gmail dot com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.he = {
|
||||
closeText: "סגור",
|
||||
prevText: "<הקודם",
|
||||
nextText: "הבא>",
|
||||
currentText: "היום",
|
||||
monthNames: [ "ינואר", "פברואר", "מרץ", "אפריל", "מאי", "יוני",
|
||||
"יולי", "אוגוסט", "ספטמבר", "אוקטובר", "נובמבר", "דצמבר" ],
|
||||
monthNamesShort: [ "ינו", "פבר", "מרץ", "אפר", "מאי", "יוני",
|
||||
"יולי", "אוג", "ספט", "אוק", "נוב", "דצמ" ],
|
||||
dayNames: [ "ראשון", "שני", "שלישי", "רביעי", "חמישי", "שישי", "שבת" ],
|
||||
dayNamesShort: [ "א'", "ב'", "ג'", "ד'", "ה'", "ו'", "שבת" ],
|
||||
dayNamesMin: [ "א'", "ב'", "ג'", "ד'", "ה'", "ו'", "שבת" ],
|
||||
weekHeader: "Wk",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 0,
|
||||
isRTL: true,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.he );
|
||||
|
||||
return datepicker.regional.he;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-hi.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-hi.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Hindi initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Michael Dawart. */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.hi = {
|
||||
closeText: "बंद",
|
||||
prevText: "पिछला",
|
||||
nextText: "अगला",
|
||||
currentText: "आज",
|
||||
monthNames: [ "जनवरी ", "फरवरी", "मार्च", "अप्रेल", "मई", "जून",
|
||||
"जूलाई", "अगस्त ", "सितम्बर", "अक्टूबर", "नवम्बर", "दिसम्बर" ],
|
||||
monthNamesShort: [ "जन", "फर", "मार्च", "अप्रेल", "मई", "जून",
|
||||
"जूलाई", "अग", "सित", "अक्ट", "नव", "दि" ],
|
||||
dayNames: [ "रविवार", "सोमवार", "मंगलवार", "बुधवार", "गुरुवार", "शुक्रवार", "शनिवार" ],
|
||||
dayNamesShort: [ "रवि", "सोम", "मंगल", "बुध", "गुरु", "शुक्र", "शनि" ],
|
||||
dayNamesMin: [ "रवि", "सोम", "मंगल", "बुध", "गुरु", "शुक्र", "शनि" ],
|
||||
weekHeader: "हफ्ता",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.hi );
|
||||
|
||||
return datepicker.regional.hi;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-hr.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-hr.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Croatian i18n for the jQuery UI date picker plugin. */
|
||||
/* Written by Vjekoslav Nesek. */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.hr = {
|
||||
closeText: "Zatvori",
|
||||
prevText: "<",
|
||||
nextText: ">",
|
||||
currentText: "Danas",
|
||||
monthNames: [ "Siječanj", "Veljača", "Ožujak", "Travanj", "Svibanj", "Lipanj",
|
||||
"Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac" ],
|
||||
monthNamesShort: [ "Sij", "Velj", "Ožu", "Tra", "Svi", "Lip",
|
||||
"Srp", "Kol", "Ruj", "Lis", "Stu", "Pro" ],
|
||||
dayNames: [ "Nedjelja", "Ponedjeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota" ],
|
||||
dayNamesShort: [ "Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub" ],
|
||||
dayNamesMin: [ "Ne", "Po", "Ut", "Sr", "Če", "Pe", "Su" ],
|
||||
weekHeader: "Tje",
|
||||
dateFormat: "dd.mm.yy.",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.hr );
|
||||
|
||||
return datepicker.regional.hr;
|
||||
|
||||
} );
|
39
node_modules/jquery-ui/ui/i18n/datepicker-hu.js
generated
vendored
Normal file
39
node_modules/jquery-ui/ui/i18n/datepicker-hu.js
generated
vendored
Normal file
|
@ -0,0 +1,39 @@
|
|||
/* Hungarian initialisation for the jQuery UI date picker plugin. */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.hu = {
|
||||
closeText: "Bezár",
|
||||
prevText: "Vissza",
|
||||
nextText: "Előre",
|
||||
currentText: "Ma",
|
||||
monthNames: [ "Január", "Február", "Március", "Április", "Május", "Június",
|
||||
"Július", "Augusztus", "Szeptember", "Október", "November", "December" ],
|
||||
monthNamesShort: [ "Jan", "Feb", "Már", "Ápr", "Máj", "Jún",
|
||||
"Júl", "Aug", "Szep", "Okt", "Nov", "Dec" ],
|
||||
dayNames: [ "Vasárnap", "Hétfő", "Kedd", "Szerda", "Csütörtök", "Péntek", "Szombat" ],
|
||||
dayNamesShort: [ "Vas", "Hét", "Ked", "Sze", "Csü", "Pén", "Szo" ],
|
||||
dayNamesMin: [ "V", "H", "K", "Sze", "Cs", "P", "Szo" ],
|
||||
weekHeader: "Hét",
|
||||
dateFormat: "yy.mm.dd.",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: true,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.hu );
|
||||
|
||||
return datepicker.regional.hu;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-hy.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-hy.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Armenian(UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Levon Zakaryan (levon.zakaryan@gmail.com)*/
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.hy = {
|
||||
closeText: "Փակել",
|
||||
prevText: "<Նախ.",
|
||||
nextText: "Հաջ.>",
|
||||
currentText: "Այսօր",
|
||||
monthNames: [ "Հունվար", "Փետրվար", "Մարտ", "Ապրիլ", "Մայիս", "Հունիս",
|
||||
"Հուլիս", "Օգոստոս", "Սեպտեմբեր", "Հոկտեմբեր", "Նոյեմբեր", "Դեկտեմբեր" ],
|
||||
monthNamesShort: [ "Հունվ", "Փետր", "Մարտ", "Ապր", "Մայիս", "Հունիս",
|
||||
"Հուլ", "Օգս", "Սեպ", "Հոկ", "Նոյ", "Դեկ" ],
|
||||
dayNames: [ "կիրակի", "եկուշաբթի", "երեքշաբթի", "չորեքշաբթի", "հինգշաբթի", "ուրբաթ", "շաբաթ" ],
|
||||
dayNamesShort: [ "կիր", "երկ", "երք", "չրք", "հնգ", "ուրբ", "շբթ" ],
|
||||
dayNamesMin: [ "կիր", "երկ", "երք", "չրք", "հնգ", "ուրբ", "շբթ" ],
|
||||
weekHeader: "ՇԲՏ",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.hy );
|
||||
|
||||
return datepicker.regional.hy;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-id.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-id.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Indonesian initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Deden Fathurahman (dedenf@gmail.com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.id = {
|
||||
closeText: "Tutup",
|
||||
prevText: "<mundur",
|
||||
nextText: "maju>",
|
||||
currentText: "hari ini",
|
||||
monthNames: [ "Januari", "Februari", "Maret", "April", "Mei", "Juni",
|
||||
"Juli", "Agustus", "September", "Oktober", "Nopember", "Desember" ],
|
||||
monthNamesShort: [ "Jan", "Feb", "Mar", "Apr", "Mei", "Jun",
|
||||
"Jul", "Agus", "Sep", "Okt", "Nop", "Des" ],
|
||||
dayNames: [ "Minggu", "Senin", "Selasa", "Rabu", "Kamis", "Jumat", "Sabtu" ],
|
||||
dayNamesShort: [ "Min", "Sen", "Sel", "Rab", "kam", "Jum", "Sab" ],
|
||||
dayNamesMin: [ "Mg", "Sn", "Sl", "Rb", "Km", "jm", "Sb" ],
|
||||
weekHeader: "Mg",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 0,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.id );
|
||||
|
||||
return datepicker.regional.id;
|
||||
|
||||
} );
|
48
node_modules/jquery-ui/ui/i18n/datepicker-is.js
generated
vendored
Normal file
48
node_modules/jquery-ui/ui/i18n/datepicker-is.js
generated
vendored
Normal file
|
@ -0,0 +1,48 @@
|
|||
/* Icelandic initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Haukur H. Thorsson (haukur@eskill.is). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.is = {
|
||||
closeText: "Loka",
|
||||
prevText: "< Fyrri",
|
||||
nextText: "Næsti >",
|
||||
currentText: "Í dag",
|
||||
monthNames: [ "Janúar", "Febrúar", "Mars", "Apríl", "Maí", "Júní",
|
||||
"Júlí", "Ágúst", "September", "Október", "Nóvember", "Desember" ],
|
||||
monthNamesShort: [ "Jan", "Feb", "Mar", "Apr", "Maí", "Jún",
|
||||
"Júl", "Ágú", "Sep", "Okt", "Nóv", "Des" ],
|
||||
dayNames: [
|
||||
"Sunnudagur",
|
||||
"Mánudagur",
|
||||
"Þriðjudagur",
|
||||
"Miðvikudagur",
|
||||
"Fimmtudagur",
|
||||
"Föstudagur",
|
||||
"Laugardagur"
|
||||
],
|
||||
dayNamesShort: [ "Sun", "Mán", "Þri", "Mið", "Fim", "Fös", "Lau" ],
|
||||
dayNamesMin: [ "Su", "Má", "Þr", "Mi", "Fi", "Fö", "La" ],
|
||||
weekHeader: "Vika",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 0,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.is );
|
||||
|
||||
return datepicker.regional.is;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-it-CH.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-it-CH.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Italian initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Antonello Pasella (antonello.pasella@gmail.com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional[ "it-CH" ] = {
|
||||
closeText: "Chiudi",
|
||||
prevText: "<Prec",
|
||||
nextText: "Succ>",
|
||||
currentText: "Oggi",
|
||||
monthNames: [ "Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno",
|
||||
"Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre" ],
|
||||
monthNamesShort: [ "Gen", "Feb", "Mar", "Apr", "Mag", "Giu",
|
||||
"Lug", "Ago", "Set", "Ott", "Nov", "Dic" ],
|
||||
dayNames: [ "Domenica", "Lunedì", "Martedì", "Mercoledì", "Giovedì", "Venerdì", "Sabato" ],
|
||||
dayNamesShort: [ "Dom", "Lun", "Mar", "Mer", "Gio", "Ven", "Sab" ],
|
||||
dayNamesMin: [ "Do", "Lu", "Ma", "Me", "Gi", "Ve", "Sa" ],
|
||||
weekHeader: "Sm",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional[ "it-CH" ] );
|
||||
|
||||
return datepicker.regional[ "it-CH" ];
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-it.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-it.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Italian initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Antonello Pasella (antonello.pasella@gmail.com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.it = {
|
||||
closeText: "Chiudi",
|
||||
prevText: "<Prec",
|
||||
nextText: "Succ>",
|
||||
currentText: "Oggi",
|
||||
monthNames: [ "Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno",
|
||||
"Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre" ],
|
||||
monthNamesShort: [ "Gen", "Feb", "Mar", "Apr", "Mag", "Giu",
|
||||
"Lug", "Ago", "Set", "Ott", "Nov", "Dic" ],
|
||||
dayNames: [ "Domenica", "Lunedì", "Martedì", "Mercoledì", "Giovedì", "Venerdì", "Sabato" ],
|
||||
dayNamesShort: [ "Dom", "Lun", "Mar", "Mer", "Gio", "Ven", "Sab" ],
|
||||
dayNamesMin: [ "Do", "Lu", "Ma", "Me", "Gi", "Ve", "Sa" ],
|
||||
weekHeader: "Sm",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.it );
|
||||
|
||||
return datepicker.regional.it;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-ja.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-ja.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Japanese initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Kentaro SATO (kentaro@ranvis.com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.ja = {
|
||||
closeText: "閉じる",
|
||||
prevText: "<前",
|
||||
nextText: "次>",
|
||||
currentText: "今日",
|
||||
monthNames: [ "1月", "2月", "3月", "4月", "5月", "6月",
|
||||
"7月", "8月", "9月", "10月", "11月", "12月" ],
|
||||
monthNamesShort: [ "1月", "2月", "3月", "4月", "5月", "6月",
|
||||
"7月", "8月", "9月", "10月", "11月", "12月" ],
|
||||
dayNames: [ "日曜日", "月曜日", "火曜日", "水曜日", "木曜日", "金曜日", "土曜日" ],
|
||||
dayNamesShort: [ "日", "月", "火", "水", "木", "金", "土" ],
|
||||
dayNamesMin: [ "日", "月", "火", "水", "木", "金", "土" ],
|
||||
weekHeader: "週",
|
||||
dateFormat: "yy/mm/dd",
|
||||
firstDay: 0,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: true,
|
||||
yearSuffix: "年" };
|
||||
datepicker.setDefaults( datepicker.regional.ja );
|
||||
|
||||
return datepicker.regional.ja;
|
||||
|
||||
} );
|
51
node_modules/jquery-ui/ui/i18n/datepicker-ka.js
generated
vendored
Normal file
51
node_modules/jquery-ui/ui/i18n/datepicker-ka.js
generated
vendored
Normal file
|
@ -0,0 +1,51 @@
|
|||
/* Georgian (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Lado Lomidze (lado.lomidze@gmail.com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.ka = {
|
||||
closeText: "დახურვა",
|
||||
prevText: "< წინა",
|
||||
nextText: "შემდეგი >",
|
||||
currentText: "დღეს",
|
||||
monthNames: [
|
||||
"იანვარი",
|
||||
"თებერვალი",
|
||||
"მარტი",
|
||||
"აპრილი",
|
||||
"მაისი",
|
||||
"ივნისი",
|
||||
"ივლისი",
|
||||
"აგვისტო",
|
||||
"სექტემბერი",
|
||||
"ოქტომბერი",
|
||||
"ნოემბერი",
|
||||
"დეკემბერი"
|
||||
],
|
||||
monthNamesShort: [ "იან", "თებ", "მარ", "აპრ", "მაი", "ივნ", "ივლ", "აგვ", "სექ", "ოქტ", "ნოე", "დეკ" ],
|
||||
dayNames: [ "კვირა", "ორშაბათი", "სამშაბათი", "ოთხშაბათი", "ხუთშაბათი", "პარასკევი", "შაბათი" ],
|
||||
dayNamesShort: [ "კვ", "ორშ", "სამ", "ოთხ", "ხუთ", "პარ", "შაბ" ],
|
||||
dayNamesMin: [ "კვ", "ორშ", "სამ", "ოთხ", "ხუთ", "პარ", "შაბ" ],
|
||||
weekHeader: "კვირა",
|
||||
dateFormat: "dd-mm-yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.ka );
|
||||
|
||||
return datepicker.regional.ka;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-kk.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-kk.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Kazakh (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Dmitriy Karasyov (dmitriy.karasyov@gmail.com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.kk = {
|
||||
closeText: "Жабу",
|
||||
prevText: "<Алдыңғы",
|
||||
nextText: "Келесі>",
|
||||
currentText: "Бүгін",
|
||||
monthNames: [ "Қаңтар", "Ақпан", "Наурыз", "Сәуір", "Мамыр", "Маусым",
|
||||
"Шілде", "Тамыз", "Қыркүйек", "Қазан", "Қараша", "Желтоқсан" ],
|
||||
monthNamesShort: [ "Қаң", "Ақп", "Нау", "Сәу", "Мам", "Мау",
|
||||
"Шіл", "Там", "Қыр", "Қаз", "Қар", "Жел" ],
|
||||
dayNames: [ "Жексенбі", "Дүйсенбі", "Сейсенбі", "Сәрсенбі", "Бейсенбі", "Жұма", "Сенбі" ],
|
||||
dayNamesShort: [ "жкс", "дсн", "ссн", "срс", "бсн", "жма", "снб" ],
|
||||
dayNamesMin: [ "Жк", "Дс", "Сс", "Ср", "Бс", "Жм", "Сн" ],
|
||||
weekHeader: "Не",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.kk );
|
||||
|
||||
return datepicker.regional.kk;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-km.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-km.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Khmer initialisation for the jQuery calendar extension. */
|
||||
/* Written by Chandara Om (chandara.teacher@gmail.com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.km = {
|
||||
closeText: "ធ្វើរួច",
|
||||
prevText: "មុន",
|
||||
nextText: "បន្ទាប់",
|
||||
currentText: "ថ្ងៃនេះ",
|
||||
monthNames: [ "មករា", "កុម្ភៈ", "មីនា", "មេសា", "ឧសភា", "មិថុនា",
|
||||
"កក្កដា", "សីហា", "កញ្ញា", "តុលា", "វិច្ឆិកា", "ធ្នូ" ],
|
||||
monthNamesShort: [ "មករា", "កុម្ភៈ", "មីនា", "មេសា", "ឧសភា", "មិថុនា",
|
||||
"កក្កដា", "សីហា", "កញ្ញា", "តុលា", "វិច្ឆិកា", "ធ្នូ" ],
|
||||
dayNames: [ "អាទិត្យ", "ចន្ទ", "អង្គារ", "ពុធ", "ព្រហស្បតិ៍", "សុក្រ", "សៅរ៍" ],
|
||||
dayNamesShort: [ "អា", "ច", "អ", "ពុ", "ព្រហ", "សុ", "សៅ" ],
|
||||
dayNamesMin: [ "អា", "ច", "អ", "ពុ", "ព្រហ", "សុ", "សៅ" ],
|
||||
weekHeader: "សប្ដាហ៍",
|
||||
dateFormat: "dd-mm-yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.km );
|
||||
|
||||
return datepicker.regional.km;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-ko.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-ko.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Korean initialisation for the jQuery calendar extension. */
|
||||
/* Written by DaeKwon Kang (ncrash.dk@gmail.com), Edited by Genie and Myeongjin Lee. */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.ko = {
|
||||
closeText: "닫기",
|
||||
prevText: "이전달",
|
||||
nextText: "다음달",
|
||||
currentText: "오늘",
|
||||
monthNames: [ "1월", "2월", "3월", "4월", "5월", "6월",
|
||||
"7월", "8월", "9월", "10월", "11월", "12월" ],
|
||||
monthNamesShort: [ "1월", "2월", "3월", "4월", "5월", "6월",
|
||||
"7월", "8월", "9월", "10월", "11월", "12월" ],
|
||||
dayNames: [ "일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일" ],
|
||||
dayNamesShort: [ "일", "월", "화", "수", "목", "금", "토" ],
|
||||
dayNamesMin: [ "일", "월", "화", "수", "목", "금", "토" ],
|
||||
weekHeader: "주",
|
||||
dateFormat: "yy. m. d.",
|
||||
firstDay: 0,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: true,
|
||||
yearSuffix: "년" };
|
||||
datepicker.setDefaults( datepicker.regional.ko );
|
||||
|
||||
return datepicker.regional.ko;
|
||||
|
||||
} );
|
41
node_modules/jquery-ui/ui/i18n/datepicker-ky.js
generated
vendored
Normal file
41
node_modules/jquery-ui/ui/i18n/datepicker-ky.js
generated
vendored
Normal file
|
@ -0,0 +1,41 @@
|
|||
/* Kyrgyz (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Sergey Kartashov (ebishkek@yandex.ru). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.ky = {
|
||||
closeText: "Жабуу",
|
||||
prevText: "<Мур",
|
||||
nextText: "Кий>",
|
||||
currentText: "Бүгүн",
|
||||
monthNames: [ "Январь", "Февраль", "Март", "Апрель", "Май", "Июнь",
|
||||
"Июль", "Август", "Сентябрь", "Октябрь", "Ноябрь", "Декабрь" ],
|
||||
monthNamesShort: [ "Янв", "Фев", "Мар", "Апр", "Май", "Июн",
|
||||
"Июл", "Авг", "Сен", "Окт", "Ноя", "Дек" ],
|
||||
dayNames: [ "жекшемби", "дүйшөмбү", "шейшемби", "шаршемби", "бейшемби", "жума", "ишемби" ],
|
||||
dayNamesShort: [ "жек", "дүй", "шей", "шар", "бей", "жум", "ише" ],
|
||||
dayNamesMin: [ "Жк", "Дш", "Шш", "Шр", "Бш", "Жм", "Иш" ],
|
||||
weekHeader: "Жум",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: ""
|
||||
};
|
||||
datepicker.setDefaults( datepicker.regional.ky );
|
||||
|
||||
return datepicker.regional.ky;
|
||||
|
||||
} );
|
48
node_modules/jquery-ui/ui/i18n/datepicker-lb.js
generated
vendored
Normal file
48
node_modules/jquery-ui/ui/i18n/datepicker-lb.js
generated
vendored
Normal file
|
@ -0,0 +1,48 @@
|
|||
/* Luxembourgish initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Michel Weimerskirch <michel@weimerskirch.net> */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.lb = {
|
||||
closeText: "Fäerdeg",
|
||||
prevText: "Zréck",
|
||||
nextText: "Weider",
|
||||
currentText: "Haut",
|
||||
monthNames: [ "Januar", "Februar", "Mäerz", "Abrëll", "Mee", "Juni",
|
||||
"Juli", "August", "September", "Oktober", "November", "Dezember" ],
|
||||
monthNamesShort: [ "Jan", "Feb", "Mäe", "Abr", "Mee", "Jun",
|
||||
"Jul", "Aug", "Sep", "Okt", "Nov", "Dez" ],
|
||||
dayNames: [
|
||||
"Sonndeg",
|
||||
"Méindeg",
|
||||
"Dënschdeg",
|
||||
"Mëttwoch",
|
||||
"Donneschdeg",
|
||||
"Freideg",
|
||||
"Samschdeg"
|
||||
],
|
||||
dayNamesShort: [ "Son", "Méi", "Dën", "Mët", "Don", "Fre", "Sam" ],
|
||||
dayNamesMin: [ "So", "Mé", "Dë", "Më", "Do", "Fr", "Sa" ],
|
||||
weekHeader: "W",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.lb );
|
||||
|
||||
return datepicker.regional.lb;
|
||||
|
||||
} );
|
48
node_modules/jquery-ui/ui/i18n/datepicker-lt.js
generated
vendored
Normal file
48
node_modules/jquery-ui/ui/i18n/datepicker-lt.js
generated
vendored
Normal file
|
@ -0,0 +1,48 @@
|
|||
/* Lithuanian (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* @author Arturas Paleicikas <arturas@avalon.lt> */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.lt = {
|
||||
closeText: "Uždaryti",
|
||||
prevText: "<Atgal",
|
||||
nextText: "Pirmyn>",
|
||||
currentText: "Šiandien",
|
||||
monthNames: [ "Sausis", "Vasaris", "Kovas", "Balandis", "Gegužė", "Birželis",
|
||||
"Liepa", "Rugpjūtis", "Rugsėjis", "Spalis", "Lapkritis", "Gruodis" ],
|
||||
monthNamesShort: [ "Sau", "Vas", "Kov", "Bal", "Geg", "Bir",
|
||||
"Lie", "Rugp", "Rugs", "Spa", "Lap", "Gru" ],
|
||||
dayNames: [
|
||||
"sekmadienis",
|
||||
"pirmadienis",
|
||||
"antradienis",
|
||||
"trečiadienis",
|
||||
"ketvirtadienis",
|
||||
"penktadienis",
|
||||
"šeštadienis"
|
||||
],
|
||||
dayNamesShort: [ "sek", "pir", "ant", "tre", "ket", "pen", "šeš" ],
|
||||
dayNamesMin: [ "Se", "Pr", "An", "Tr", "Ke", "Pe", "Še" ],
|
||||
weekHeader: "SAV",
|
||||
dateFormat: "yy-mm-dd",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: true,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.lt );
|
||||
|
||||
return datepicker.regional.lt;
|
||||
|
||||
} );
|
48
node_modules/jquery-ui/ui/i18n/datepicker-lv.js
generated
vendored
Normal file
48
node_modules/jquery-ui/ui/i18n/datepicker-lv.js
generated
vendored
Normal file
|
@ -0,0 +1,48 @@
|
|||
/* Latvian (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* @author Arturas Paleicikas <arturas.paleicikas@metasite.net> */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.lv = {
|
||||
closeText: "Aizvērt",
|
||||
prevText: "Iepr.",
|
||||
nextText: "Nāk.",
|
||||
currentText: "Šodien",
|
||||
monthNames: [ "Janvāris", "Februāris", "Marts", "Aprīlis", "Maijs", "Jūnijs",
|
||||
"Jūlijs", "Augusts", "Septembris", "Oktobris", "Novembris", "Decembris" ],
|
||||
monthNamesShort: [ "Jan", "Feb", "Mar", "Apr", "Mai", "Jūn",
|
||||
"Jūl", "Aug", "Sep", "Okt", "Nov", "Dec" ],
|
||||
dayNames: [
|
||||
"svētdiena",
|
||||
"pirmdiena",
|
||||
"otrdiena",
|
||||
"trešdiena",
|
||||
"ceturtdiena",
|
||||
"piektdiena",
|
||||
"sestdiena"
|
||||
],
|
||||
dayNamesShort: [ "svt", "prm", "otr", "tre", "ctr", "pkt", "sst" ],
|
||||
dayNamesMin: [ "Sv", "Pr", "Ot", "Tr", "Ct", "Pk", "Ss" ],
|
||||
weekHeader: "Ned.",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.lv );
|
||||
|
||||
return datepicker.regional.lv;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-mk.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-mk.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Macedonian i18n for the jQuery UI date picker plugin. */
|
||||
/* Written by Stojce Slavkovski. */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.mk = {
|
||||
closeText: "Затвори",
|
||||
prevText: "<",
|
||||
nextText: ">",
|
||||
currentText: "Денес",
|
||||
monthNames: [ "Јануари", "Февруари", "Март", "Април", "Мај", "Јуни",
|
||||
"Јули", "Август", "Септември", "Октомври", "Ноември", "Декември" ],
|
||||
monthNamesShort: [ "Јан", "Фев", "Мар", "Апр", "Мај", "Јун",
|
||||
"Јул", "Авг", "Сеп", "Окт", "Ное", "Дек" ],
|
||||
dayNames: [ "Недела", "Понеделник", "Вторник", "Среда", "Четврток", "Петок", "Сабота" ],
|
||||
dayNamesShort: [ "Нед", "Пон", "Вто", "Сре", "Чет", "Пет", "Саб" ],
|
||||
dayNamesMin: [ "Не", "По", "Вт", "Ср", "Че", "Пе", "Са" ],
|
||||
weekHeader: "Сед",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.mk );
|
||||
|
||||
return datepicker.regional.mk;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-ml.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-ml.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Malayalam (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Saji Nediyanchath (saji89@gmail.com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.ml = {
|
||||
closeText: "ശരി",
|
||||
prevText: "മുന്നത്തെ",
|
||||
nextText: "അടുത്തത് ",
|
||||
currentText: "ഇന്ന്",
|
||||
monthNames: [ "ജനുവരി", "ഫെബ്രുവരി", "മാര്ച്ച്", "ഏപ്രില്", "മേയ്", "ജൂണ്",
|
||||
"ജൂലൈ", "ആഗസ്റ്റ്", "സെപ്റ്റംബര്", "ഒക്ടോബര്", "നവംബര്", "ഡിസംബര്" ],
|
||||
monthNamesShort: [ "ജനു", "ഫെബ്", "മാര്", "ഏപ്രി", "മേയ്", "ജൂണ്",
|
||||
"ജൂലാ", "ആഗ", "സെപ്", "ഒക്ടോ", "നവം", "ഡിസ" ],
|
||||
dayNames: [ "ഞായര്", "തിങ്കള്", "ചൊവ്വ", "ബുധന്", "വ്യാഴം", "വെള്ളി", "ശനി" ],
|
||||
dayNamesShort: [ "ഞായ", "തിങ്ക", "ചൊവ്വ", "ബുധ", "വ്യാഴം", "വെള്ളി", "ശനി" ],
|
||||
dayNamesMin: [ "ഞാ", "തി", "ചൊ", "ബു", "വ്യാ", "വെ", "ശ" ],
|
||||
weekHeader: "ആ",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.ml );
|
||||
|
||||
return datepicker.regional.ml;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-ms.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-ms.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Malaysian initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Mohd Nawawi Mohamad Jamili (nawawi@ronggeng.net). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.ms = {
|
||||
closeText: "Tutup",
|
||||
prevText: "<Sebelum",
|
||||
nextText: "Selepas>",
|
||||
currentText: "hari ini",
|
||||
monthNames: [ "Januari", "Februari", "Mac", "April", "Mei", "Jun",
|
||||
"Julai", "Ogos", "September", "Oktober", "November", "Disember" ],
|
||||
monthNamesShort: [ "Jan", "Feb", "Mac", "Apr", "Mei", "Jun",
|
||||
"Jul", "Ogo", "Sep", "Okt", "Nov", "Dis" ],
|
||||
dayNames: [ "Ahad", "Isnin", "Selasa", "Rabu", "Khamis", "Jumaat", "Sabtu" ],
|
||||
dayNamesShort: [ "Aha", "Isn", "Sel", "Rab", "kha", "Jum", "Sab" ],
|
||||
dayNamesMin: [ "Ah", "Is", "Se", "Ra", "Kh", "Ju", "Sa" ],
|
||||
weekHeader: "Mg",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 0,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.ms );
|
||||
|
||||
return datepicker.regional.ms;
|
||||
|
||||
} );
|
52
node_modules/jquery-ui/ui/i18n/datepicker-nb.js
generated
vendored
Normal file
52
node_modules/jquery-ui/ui/i18n/datepicker-nb.js
generated
vendored
Normal file
|
@ -0,0 +1,52 @@
|
|||
/* Norwegian Bokmål initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Bjørn Johansen (post@bjornjohansen.no). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.nb = {
|
||||
closeText: "Lukk",
|
||||
prevText: "«Forrige",
|
||||
nextText: "Neste»",
|
||||
currentText: "I dag",
|
||||
monthNames: [
|
||||
"januar",
|
||||
"februar",
|
||||
"mars",
|
||||
"april",
|
||||
"mai",
|
||||
"juni",
|
||||
"juli",
|
||||
"august",
|
||||
"september",
|
||||
"oktober",
|
||||
"november",
|
||||
"desember"
|
||||
],
|
||||
monthNamesShort: [ "jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des" ],
|
||||
dayNamesShort: [ "søn", "man", "tir", "ons", "tor", "fre", "lør" ],
|
||||
dayNames: [ "søndag", "mandag", "tirsdag", "onsdag", "torsdag", "fredag", "lørdag" ],
|
||||
dayNamesMin: [ "sø", "ma", "ti", "on", "to", "fr", "lø" ],
|
||||
weekHeader: "Uke",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: ""
|
||||
};
|
||||
datepicker.setDefaults( datepicker.regional.nb );
|
||||
|
||||
return datepicker.regional.nb;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-nl-BE.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-nl-BE.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Dutch (Belgium) initialisation for the jQuery UI date picker plugin. */
|
||||
/* David De Sloovere @DavidDeSloovere */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional[ "nl-BE" ] = {
|
||||
closeText: "Sluiten",
|
||||
prevText: "←",
|
||||
nextText: "→",
|
||||
currentText: "Vandaag",
|
||||
monthNames: [ "januari", "februari", "maart", "april", "mei", "juni",
|
||||
"juli", "augustus", "september", "oktober", "november", "december" ],
|
||||
monthNamesShort: [ "jan", "feb", "mrt", "apr", "mei", "jun",
|
||||
"jul", "aug", "sep", "okt", "nov", "dec" ],
|
||||
dayNames: [ "zondag", "maandag", "dinsdag", "woensdag", "donderdag", "vrijdag", "zaterdag" ],
|
||||
dayNamesShort: [ "zon", "maa", "din", "woe", "don", "vri", "zat" ],
|
||||
dayNamesMin: [ "zo", "ma", "di", "wo", "do", "vr", "za" ],
|
||||
weekHeader: "Wk",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional[ "nl-BE" ] );
|
||||
|
||||
return datepicker.regional[ "nl-BE" ];
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-nl.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-nl.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Dutch (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Mathias Bynens <http://mathiasbynens.be/> */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.nl = {
|
||||
closeText: "Sluiten",
|
||||
prevText: "←",
|
||||
nextText: "→",
|
||||
currentText: "Vandaag",
|
||||
monthNames: [ "januari", "februari", "maart", "april", "mei", "juni",
|
||||
"juli", "augustus", "september", "oktober", "november", "december" ],
|
||||
monthNamesShort: [ "jan", "feb", "mrt", "apr", "mei", "jun",
|
||||
"jul", "aug", "sep", "okt", "nov", "dec" ],
|
||||
dayNames: [ "zondag", "maandag", "dinsdag", "woensdag", "donderdag", "vrijdag", "zaterdag" ],
|
||||
dayNamesShort: [ "zon", "maa", "din", "woe", "don", "vri", "zat" ],
|
||||
dayNamesMin: [ "zo", "ma", "di", "wo", "do", "vr", "za" ],
|
||||
weekHeader: "Wk",
|
||||
dateFormat: "dd-mm-yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.nl );
|
||||
|
||||
return datepicker.regional.nl;
|
||||
|
||||
} );
|
52
node_modules/jquery-ui/ui/i18n/datepicker-nn.js
generated
vendored
Normal file
52
node_modules/jquery-ui/ui/i18n/datepicker-nn.js
generated
vendored
Normal file
|
@ -0,0 +1,52 @@
|
|||
/* Norwegian Nynorsk initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Bjørn Johansen (post@bjornjohansen.no). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.nn = {
|
||||
closeText: "Lukk",
|
||||
prevText: "«Førre",
|
||||
nextText: "Neste»",
|
||||
currentText: "I dag",
|
||||
monthNames: [
|
||||
"januar",
|
||||
"februar",
|
||||
"mars",
|
||||
"april",
|
||||
"mai",
|
||||
"juni",
|
||||
"juli",
|
||||
"august",
|
||||
"september",
|
||||
"oktober",
|
||||
"november",
|
||||
"desember"
|
||||
],
|
||||
monthNamesShort: [ "jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des" ],
|
||||
dayNamesShort: [ "sun", "mån", "tys", "ons", "tor", "fre", "lau" ],
|
||||
dayNames: [ "sundag", "måndag", "tysdag", "onsdag", "torsdag", "fredag", "laurdag" ],
|
||||
dayNamesMin: [ "su", "må", "ty", "on", "to", "fr", "la" ],
|
||||
weekHeader: "Veke",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: ""
|
||||
};
|
||||
datepicker.setDefaults( datepicker.regional.nn );
|
||||
|
||||
return datepicker.regional.nn;
|
||||
|
||||
} );
|
53
node_modules/jquery-ui/ui/i18n/datepicker-no.js
generated
vendored
Normal file
53
node_modules/jquery-ui/ui/i18n/datepicker-no.js
generated
vendored
Normal file
|
@ -0,0 +1,53 @@
|
|||
/* Norwegian initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Naimdjon Takhirov (naimdjon@gmail.com). */
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.no = {
|
||||
closeText: "Lukk",
|
||||
prevText: "«Forrige",
|
||||
nextText: "Neste»",
|
||||
currentText: "I dag",
|
||||
monthNames: [
|
||||
"januar",
|
||||
"februar",
|
||||
"mars",
|
||||
"april",
|
||||
"mai",
|
||||
"juni",
|
||||
"juli",
|
||||
"august",
|
||||
"september",
|
||||
"oktober",
|
||||
"november",
|
||||
"desember"
|
||||
],
|
||||
monthNamesShort: [ "jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des" ],
|
||||
dayNamesShort: [ "søn", "man", "tir", "ons", "tor", "fre", "lør" ],
|
||||
dayNames: [ "søndag", "mandag", "tirsdag", "onsdag", "torsdag", "fredag", "lørdag" ],
|
||||
dayNamesMin: [ "sø", "ma", "ti", "on", "to", "fr", "lø" ],
|
||||
weekHeader: "Uke",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: ""
|
||||
};
|
||||
datepicker.setDefaults( datepicker.regional.no );
|
||||
|
||||
return datepicker.regional.no;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-pl.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-pl.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Polish initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Jacek Wysocki (jacek.wysocki@gmail.com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.pl = {
|
||||
closeText: "Zamknij",
|
||||
prevText: "<Poprzedni",
|
||||
nextText: "Następny>",
|
||||
currentText: "Dziś",
|
||||
monthNames: [ "Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec",
|
||||
"Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień" ],
|
||||
monthNamesShort: [ "Sty", "Lu", "Mar", "Kw", "Maj", "Cze",
|
||||
"Lip", "Sie", "Wrz", "Pa", "Lis", "Gru" ],
|
||||
dayNames: [ "Niedziela", "Poniedziałek", "Wtorek", "Środa", "Czwartek", "Piątek", "Sobota" ],
|
||||
dayNamesShort: [ "Nie", "Pn", "Wt", "Śr", "Czw", "Pt", "So" ],
|
||||
dayNamesMin: [ "N", "Pn", "Wt", "Śr", "Cz", "Pt", "So" ],
|
||||
weekHeader: "Tydz",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.pl );
|
||||
|
||||
return datepicker.regional.pl;
|
||||
|
||||
} );
|
48
node_modules/jquery-ui/ui/i18n/datepicker-pt-BR.js
generated
vendored
Normal file
48
node_modules/jquery-ui/ui/i18n/datepicker-pt-BR.js
generated
vendored
Normal file
|
@ -0,0 +1,48 @@
|
|||
/* Brazilian initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Leonildo Costa Silva (leocsilva@gmail.com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional[ "pt-BR" ] = {
|
||||
closeText: "Fechar",
|
||||
prevText: "<Anterior",
|
||||
nextText: "Próximo>",
|
||||
currentText: "Hoje",
|
||||
monthNames: [ "Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho",
|
||||
"Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro" ],
|
||||
monthNamesShort: [ "Jan", "Fev", "Mar", "Abr", "Mai", "Jun",
|
||||
"Jul", "Ago", "Set", "Out", "Nov", "Dez" ],
|
||||
dayNames: [
|
||||
"Domingo",
|
||||
"Segunda-feira",
|
||||
"Terça-feira",
|
||||
"Quarta-feira",
|
||||
"Quinta-feira",
|
||||
"Sexta-feira",
|
||||
"Sábado"
|
||||
],
|
||||
dayNamesShort: [ "Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb" ],
|
||||
dayNamesMin: [ "Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb" ],
|
||||
weekHeader: "Sm",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 0,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional[ "pt-BR" ] );
|
||||
|
||||
return datepicker.regional[ "pt-BR" ];
|
||||
|
||||
} );
|
47
node_modules/jquery-ui/ui/i18n/datepicker-pt.js
generated
vendored
Normal file
47
node_modules/jquery-ui/ui/i18n/datepicker-pt.js
generated
vendored
Normal file
|
@ -0,0 +1,47 @@
|
|||
/* Portuguese initialisation for the jQuery UI date picker plugin. */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.pt = {
|
||||
closeText: "Fechar",
|
||||
prevText: "Anterior",
|
||||
nextText: "Seguinte",
|
||||
currentText: "Hoje",
|
||||
monthNames: [ "Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho",
|
||||
"Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro" ],
|
||||
monthNamesShort: [ "Jan", "Fev", "Mar", "Abr", "Mai", "Jun",
|
||||
"Jul", "Ago", "Set", "Out", "Nov", "Dez" ],
|
||||
dayNames: [
|
||||
"Domingo",
|
||||
"Segunda-feira",
|
||||
"Terça-feira",
|
||||
"Quarta-feira",
|
||||
"Quinta-feira",
|
||||
"Sexta-feira",
|
||||
"Sábado"
|
||||
],
|
||||
dayNamesShort: [ "Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb" ],
|
||||
dayNamesMin: [ "Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb" ],
|
||||
weekHeader: "Sem",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.pt );
|
||||
|
||||
return datepicker.regional.pt;
|
||||
|
||||
} );
|
64
node_modules/jquery-ui/ui/i18n/datepicker-rm.js
generated
vendored
Normal file
64
node_modules/jquery-ui/ui/i18n/datepicker-rm.js
generated
vendored
Normal file
|
@ -0,0 +1,64 @@
|
|||
/* Romansh initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Yvonne Gienal (yvonne.gienal@educa.ch). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.rm = {
|
||||
closeText: "Serrar",
|
||||
prevText: "<Suandant",
|
||||
nextText: "Precedent>",
|
||||
currentText: "Actual",
|
||||
monthNames: [
|
||||
"Schaner",
|
||||
"Favrer",
|
||||
"Mars",
|
||||
"Avrigl",
|
||||
"Matg",
|
||||
"Zercladur",
|
||||
"Fanadur",
|
||||
"Avust",
|
||||
"Settember",
|
||||
"October",
|
||||
"November",
|
||||
"December"
|
||||
],
|
||||
monthNamesShort: [
|
||||
"Scha",
|
||||
"Fev",
|
||||
"Mar",
|
||||
"Avr",
|
||||
"Matg",
|
||||
"Zer",
|
||||
"Fan",
|
||||
"Avu",
|
||||
"Sett",
|
||||
"Oct",
|
||||
"Nov",
|
||||
"Dec"
|
||||
],
|
||||
dayNames: [ "Dumengia", "Glindesdi", "Mardi", "Mesemna", "Gievgia", "Venderdi", "Sonda" ],
|
||||
dayNamesShort: [ "Dum", "Gli", "Mar", "Mes", "Gie", "Ven", "Som" ],
|
||||
dayNamesMin: [ "Du", "Gl", "Ma", "Me", "Gi", "Ve", "So" ],
|
||||
weekHeader: "emna",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.rm );
|
||||
|
||||
return datepicker.regional.rm;
|
||||
|
||||
} );
|
43
node_modules/jquery-ui/ui/i18n/datepicker-ro.js
generated
vendored
Normal file
43
node_modules/jquery-ui/ui/i18n/datepicker-ro.js
generated
vendored
Normal file
|
@ -0,0 +1,43 @@
|
|||
/* Romanian initialisation for the jQuery UI date picker plugin.
|
||||
*
|
||||
* Written by Edmond L. (ll_edmond@walla.com)
|
||||
* and Ionut G. Stan (ionut.g.stan@gmail.com)
|
||||
*/
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.ro = {
|
||||
closeText: "Închide",
|
||||
prevText: "« Luna precedentă",
|
||||
nextText: "Luna următoare »",
|
||||
currentText: "Azi",
|
||||
monthNames: [ "Ianuarie", "Februarie", "Martie", "Aprilie", "Mai", "Iunie",
|
||||
"Iulie", "August", "Septembrie", "Octombrie", "Noiembrie", "Decembrie" ],
|
||||
monthNamesShort: [ "Ian", "Feb", "Mar", "Apr", "Mai", "Iun",
|
||||
"Iul", "Aug", "Sep", "Oct", "Nov", "Dec" ],
|
||||
dayNames: [ "Duminică", "Luni", "Marţi", "Miercuri", "Joi", "Vineri", "Sâmbătă" ],
|
||||
dayNamesShort: [ "Dum", "Lun", "Mar", "Mie", "Joi", "Vin", "Sâm" ],
|
||||
dayNamesMin: [ "Du", "Lu", "Ma", "Mi", "Jo", "Vi", "Sâ" ],
|
||||
weekHeader: "Săpt",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.ro );
|
||||
|
||||
return datepicker.regional.ro;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-ru.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-ru.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Russian (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Andrew Stromnov (stromnov@gmail.com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.ru = {
|
||||
closeText: "Закрыть",
|
||||
prevText: "<Пред",
|
||||
nextText: "След>",
|
||||
currentText: "Сегодня",
|
||||
monthNames: [ "Январь", "Февраль", "Март", "Апрель", "Май", "Июнь",
|
||||
"Июль", "Август", "Сентябрь", "Октябрь", "Ноябрь", "Декабрь" ],
|
||||
monthNamesShort: [ "Янв", "Фев", "Мар", "Апр", "Май", "Июн",
|
||||
"Июл", "Авг", "Сен", "Окт", "Ноя", "Дек" ],
|
||||
dayNames: [ "воскресенье", "понедельник", "вторник", "среда", "четверг", "пятница", "суббота" ],
|
||||
dayNamesShort: [ "вск", "пнд", "втр", "срд", "чтв", "птн", "сбт" ],
|
||||
dayNamesMin: [ "Вс", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб" ],
|
||||
weekHeader: "Нед",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.ru );
|
||||
|
||||
return datepicker.regional.ru;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-sk.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-sk.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Slovak initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Vojtech Rinik (vojto@hmm.sk). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.sk = {
|
||||
closeText: "Zavrieť",
|
||||
prevText: "<Predchádzajúci",
|
||||
nextText: "Nasledujúci>",
|
||||
currentText: "Dnes",
|
||||
monthNames: [ "január", "február", "marec", "apríl", "máj", "jún",
|
||||
"júl", "august", "september", "október", "november", "december" ],
|
||||
monthNamesShort: [ "Jan", "Feb", "Mar", "Apr", "Máj", "Jún",
|
||||
"Júl", "Aug", "Sep", "Okt", "Nov", "Dec" ],
|
||||
dayNames: [ "nedeľa", "pondelok", "utorok", "streda", "štvrtok", "piatok", "sobota" ],
|
||||
dayNamesShort: [ "Ned", "Pon", "Uto", "Str", "Štv", "Pia", "Sob" ],
|
||||
dayNamesMin: [ "Ne", "Po", "Ut", "St", "Št", "Pia", "So" ],
|
||||
weekHeader: "Ty",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.sk );
|
||||
|
||||
return datepicker.regional.sk;
|
||||
|
||||
} );
|
41
node_modules/jquery-ui/ui/i18n/datepicker-sl.js
generated
vendored
Normal file
41
node_modules/jquery-ui/ui/i18n/datepicker-sl.js
generated
vendored
Normal file
|
@ -0,0 +1,41 @@
|
|||
/* Slovenian initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Jaka Jancar (jaka@kubje.org). */
|
||||
/* c = č, s = š z = ž C = Č S = Š Z = Ž */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.sl = {
|
||||
closeText: "Zapri",
|
||||
prevText: "<Prejšnji",
|
||||
nextText: "Naslednji>",
|
||||
currentText: "Trenutni",
|
||||
monthNames: [ "Januar", "Februar", "Marec", "April", "Maj", "Junij",
|
||||
"Julij", "Avgust", "September", "Oktober", "November", "December" ],
|
||||
monthNamesShort: [ "Jan", "Feb", "Mar", "Apr", "Maj", "Jun",
|
||||
"Jul", "Avg", "Sep", "Okt", "Nov", "Dec" ],
|
||||
dayNames: [ "Nedelja", "Ponedeljek", "Torek", "Sreda", "Četrtek", "Petek", "Sobota" ],
|
||||
dayNamesShort: [ "Ned", "Pon", "Tor", "Sre", "Čet", "Pet", "Sob" ],
|
||||
dayNamesMin: [ "Ne", "Po", "To", "Sr", "Če", "Pe", "So" ],
|
||||
weekHeader: "Teden",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.sl );
|
||||
|
||||
return datepicker.regional.sl;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-sq.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-sq.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Albanian initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Flakron Bytyqi (flakron@gmail.com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.sq = {
|
||||
closeText: "mbylle",
|
||||
prevText: "<mbrapa",
|
||||
nextText: "Përpara>",
|
||||
currentText: "sot",
|
||||
monthNames: [ "Janar", "Shkurt", "Mars", "Prill", "Maj", "Qershor",
|
||||
"Korrik", "Gusht", "Shtator", "Tetor", "Nëntor", "Dhjetor" ],
|
||||
monthNamesShort: [ "Jan", "Shk", "Mar", "Pri", "Maj", "Qer",
|
||||
"Kor", "Gus", "Sht", "Tet", "Nën", "Dhj" ],
|
||||
dayNames: [ "E Diel", "E Hënë", "E Martë", "E Mërkurë", "E Enjte", "E Premte", "E Shtune" ],
|
||||
dayNamesShort: [ "Di", "Hë", "Ma", "Më", "En", "Pr", "Sh" ],
|
||||
dayNamesMin: [ "Di", "Hë", "Ma", "Më", "En", "Pr", "Sh" ],
|
||||
weekHeader: "Ja",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.sq );
|
||||
|
||||
return datepicker.regional.sq;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-sr-SR.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-sr-SR.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Serbian i18n for the jQuery UI date picker plugin. */
|
||||
/* Written by Dejan Dimić. */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional[ "sr-SR" ] = {
|
||||
closeText: "Zatvori",
|
||||
prevText: "<",
|
||||
nextText: ">",
|
||||
currentText: "Danas",
|
||||
monthNames: [ "Januar", "Februar", "Mart", "April", "Maj", "Jun",
|
||||
"Jul", "Avgust", "Septembar", "Oktobar", "Novembar", "Decembar" ],
|
||||
monthNamesShort: [ "Jan", "Feb", "Mar", "Apr", "Maj", "Jun",
|
||||
"Jul", "Avg", "Sep", "Okt", "Nov", "Dec" ],
|
||||
dayNames: [ "Nedelja", "Ponedeljak", "Utorak", "Sreda", "Četvrtak", "Petak", "Subota" ],
|
||||
dayNamesShort: [ "Ned", "Pon", "Uto", "Sre", "Čet", "Pet", "Sub" ],
|
||||
dayNamesMin: [ "Ne", "Po", "Ut", "Sr", "Če", "Pe", "Su" ],
|
||||
weekHeader: "Sed",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional[ "sr-SR" ] );
|
||||
|
||||
return datepicker.regional[ "sr-SR" ];
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-sr.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-sr.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Serbian i18n for the jQuery UI date picker plugin. */
|
||||
/* Written by Dejan Dimić. */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.sr = {
|
||||
closeText: "Затвори",
|
||||
prevText: "<",
|
||||
nextText: ">",
|
||||
currentText: "Данас",
|
||||
monthNames: [ "Јануар", "Фебруар", "Март", "Април", "Мај", "Јун",
|
||||
"Јул", "Август", "Септембар", "Октобар", "Новембар", "Децембар" ],
|
||||
monthNamesShort: [ "Јан", "Феб", "Мар", "Апр", "Мај", "Јун",
|
||||
"Јул", "Авг", "Сеп", "Окт", "Нов", "Дец" ],
|
||||
dayNames: [ "Недеља", "Понедељак", "Уторак", "Среда", "Четвртак", "Петак", "Субота" ],
|
||||
dayNamesShort: [ "Нед", "Пон", "Уто", "Сре", "Чет", "Пет", "Суб" ],
|
||||
dayNamesMin: [ "Не", "По", "Ут", "Ср", "Че", "Пе", "Су" ],
|
||||
weekHeader: "Сед",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.sr );
|
||||
|
||||
return datepicker.regional.sr;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-sv.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-sv.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Swedish initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Anders Ekdahl ( anders@nomadiz.se). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.sv = {
|
||||
closeText: "Stäng",
|
||||
prevText: "«Förra",
|
||||
nextText: "Nästa»",
|
||||
currentText: "Idag",
|
||||
monthNames: [ "januari", "februari", "mars", "april", "maj", "juni",
|
||||
"juli", "augusti", "september", "oktober", "november", "december" ],
|
||||
monthNamesShort: [ "jan.", "feb.", "mars", "apr.", "maj", "juni",
|
||||
"juli", "aug.", "sep.", "okt.", "nov.", "dec." ],
|
||||
dayNamesShort: [ "sön", "mån", "tis", "ons", "tor", "fre", "lör" ],
|
||||
dayNames: [ "söndag", "måndag", "tisdag", "onsdag", "torsdag", "fredag", "lördag" ],
|
||||
dayNamesMin: [ "sö", "må", "ti", "on", "to", "fr", "lö" ],
|
||||
weekHeader: "Ve",
|
||||
dateFormat: "yy-mm-dd",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.sv );
|
||||
|
||||
return datepicker.regional.sv;
|
||||
|
||||
} );
|
56
node_modules/jquery-ui/ui/i18n/datepicker-ta.js
generated
vendored
Normal file
56
node_modules/jquery-ui/ui/i18n/datepicker-ta.js
generated
vendored
Normal file
|
@ -0,0 +1,56 @@
|
|||
/* Tamil (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by S A Sureshkumar (saskumar@live.com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.ta = {
|
||||
closeText: "மூடு",
|
||||
prevText: "முன்னையது",
|
||||
nextText: "அடுத்தது",
|
||||
currentText: "இன்று",
|
||||
monthNames: [ "தை", "மாசி", "பங்குனி", "சித்திரை", "வைகாசி", "ஆனி",
|
||||
"ஆடி", "ஆவணி", "புரட்டாசி", "ஐப்பசி", "கார்த்திகை", "மார்கழி" ],
|
||||
monthNamesShort: [ "தை", "மாசி", "பங்", "சித்", "வைகா", "ஆனி",
|
||||
"ஆடி", "ஆவ", "புர", "ஐப்", "கார்", "மார்" ],
|
||||
dayNames: [
|
||||
"ஞாயிற்றுக்கிழமை",
|
||||
"திங்கட்கிழமை",
|
||||
"செவ்வாய்க்கிழமை",
|
||||
"புதன்கிழமை",
|
||||
"வியாழக்கிழமை",
|
||||
"வெள்ளிக்கிழமை",
|
||||
"சனிக்கிழமை"
|
||||
],
|
||||
dayNamesShort: [
|
||||
"ஞாயிறு",
|
||||
"திங்கள்",
|
||||
"செவ்வாய்",
|
||||
"புதன்",
|
||||
"வியாழன்",
|
||||
"வெள்ளி",
|
||||
"சனி"
|
||||
],
|
||||
dayNamesMin: [ "ஞா", "தி", "செ", "பு", "வி", "வெ", "ச" ],
|
||||
weekHeader: "Не",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.ta );
|
||||
|
||||
return datepicker.regional.ta;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-th.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-th.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Thai initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by pipo (pipo@sixhead.com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.th = {
|
||||
closeText: "ปิด",
|
||||
prevText: "« ย้อน",
|
||||
nextText: "ถัดไป »",
|
||||
currentText: "วันนี้",
|
||||
monthNames: [ "มกราคม", "กุมภาพันธ์", "มีนาคม", "เมษายน", "พฤษภาคม", "มิถุนายน",
|
||||
"กรกฎาคม", "สิงหาคม", "กันยายน", "ตุลาคม", "พฤศจิกายน", "ธันวาคม" ],
|
||||
monthNamesShort: [ "ม.ค.", "ก.พ.", "มี.ค.", "เม.ย.", "พ.ค.", "มิ.ย.",
|
||||
"ก.ค.", "ส.ค.", "ก.ย.", "ต.ค.", "พ.ย.", "ธ.ค." ],
|
||||
dayNames: [ "อาทิตย์", "จันทร์", "อังคาร", "พุธ", "พฤหัสบดี", "ศุกร์", "เสาร์" ],
|
||||
dayNamesShort: [ "อา.", "จ.", "อ.", "พ.", "พฤ.", "ศ.", "ส." ],
|
||||
dayNamesMin: [ "อา.", "จ.", "อ.", "พ.", "พฤ.", "ศ.", "ส." ],
|
||||
weekHeader: "Wk",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 0,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.th );
|
||||
|
||||
return datepicker.regional.th;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-tj.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-tj.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Tajiki (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Abdurahmon Saidov (saidovab@gmail.com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.tj = {
|
||||
closeText: "Идома",
|
||||
prevText: "<Қафо",
|
||||
nextText: "Пеш>",
|
||||
currentText: "Имрӯз",
|
||||
monthNames: [ "Январ", "Феврал", "Март", "Апрел", "Май", "Июн",
|
||||
"Июл", "Август", "Сентябр", "Октябр", "Ноябр", "Декабр" ],
|
||||
monthNamesShort: [ "Янв", "Фев", "Мар", "Апр", "Май", "Июн",
|
||||
"Июл", "Авг", "Сен", "Окт", "Ноя", "Дек" ],
|
||||
dayNames: [ "якшанбе", "душанбе", "сешанбе", "чоршанбе", "панҷшанбе", "ҷумъа", "шанбе" ],
|
||||
dayNamesShort: [ "якш", "душ", "сеш", "чор", "пан", "ҷум", "шан" ],
|
||||
dayNamesMin: [ "Як", "Дш", "Сш", "Чш", "Пш", "Ҷм", "Шн" ],
|
||||
weekHeader: "Хф",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.tj );
|
||||
|
||||
return datepicker.regional.tj;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-tr.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-tr.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Turkish initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Izzet Emre Erkan (kara@karalamalar.net). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.tr = {
|
||||
closeText: "kapat",
|
||||
prevText: "<geri",
|
||||
nextText: "ileri>",
|
||||
currentText: "bugün",
|
||||
monthNames: [ "Ocak", "Şubat", "Mart", "Nisan", "Mayıs", "Haziran",
|
||||
"Temmuz", "Ağustos", "Eylül", "Ekim", "Kasım", "Aralık" ],
|
||||
monthNamesShort: [ "Oca", "Şub", "Mar", "Nis", "May", "Haz",
|
||||
"Tem", "Ağu", "Eyl", "Eki", "Kas", "Ara" ],
|
||||
dayNames: [ "Pazar", "Pazartesi", "Salı", "Çarşamba", "Perşembe", "Cuma", "Cumartesi" ],
|
||||
dayNamesShort: [ "Pz", "Pt", "Sa", "Ça", "Pe", "Cu", "Ct" ],
|
||||
dayNamesMin: [ "Pz", "Pt", "Sa", "Ça", "Pe", "Cu", "Ct" ],
|
||||
weekHeader: "Hf",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.tr );
|
||||
|
||||
return datepicker.regional.tr;
|
||||
|
||||
} );
|
41
node_modules/jquery-ui/ui/i18n/datepicker-uk.js
generated
vendored
Normal file
41
node_modules/jquery-ui/ui/i18n/datepicker-uk.js
generated
vendored
Normal file
|
@ -0,0 +1,41 @@
|
|||
/* Ukrainian (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Maxim Drogobitskiy (maxdao@gmail.com). */
|
||||
/* Corrected by Igor Milla (igor.fsp.milla@gmail.com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.uk = {
|
||||
closeText: "Закрити",
|
||||
prevText: "<",
|
||||
nextText: ">",
|
||||
currentText: "Сьогодні",
|
||||
monthNames: [ "Січень", "Лютий", "Березень", "Квітень", "Травень", "Червень",
|
||||
"Липень", "Серпень", "Вересень", "Жовтень", "Листопад", "Грудень" ],
|
||||
monthNamesShort: [ "Січ", "Лют", "Бер", "Кві", "Тра", "Чер",
|
||||
"Лип", "Сер", "Вер", "Жов", "Лис", "Гру" ],
|
||||
dayNames: [ "неділя", "понеділок", "вівторок", "середа", "четвер", "п’ятниця", "субота" ],
|
||||
dayNamesShort: [ "нед", "пнд", "вів", "срд", "чтв", "птн", "сбт" ],
|
||||
dayNamesMin: [ "Нд", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб" ],
|
||||
weekHeader: "Тиж",
|
||||
dateFormat: "dd.mm.yy",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.uk );
|
||||
|
||||
return datepicker.regional.uk;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-vi.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-vi.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Vietnamese initialisation for the jQuery UI date picker plugin. */
|
||||
/* Translated by Le Thanh Huy (lthanhhuy@cit.ctu.edu.vn). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional.vi = {
|
||||
closeText: "Đóng",
|
||||
prevText: "<Trước",
|
||||
nextText: "Tiếp>",
|
||||
currentText: "Hôm nay",
|
||||
monthNames: [ "Tháng Một", "Tháng Hai", "Tháng Ba", "Tháng Tư", "Tháng Năm", "Tháng Sáu",
|
||||
"Tháng Bảy", "Tháng Tám", "Tháng Chín", "Tháng Mười", "Tháng Mười Một", "Tháng Mười Hai" ],
|
||||
monthNamesShort: [ "Tháng 1", "Tháng 2", "Tháng 3", "Tháng 4", "Tháng 5", "Tháng 6",
|
||||
"Tháng 7", "Tháng 8", "Tháng 9", "Tháng 10", "Tháng 11", "Tháng 12" ],
|
||||
dayNames: [ "Chủ Nhật", "Thứ Hai", "Thứ Ba", "Thứ Tư", "Thứ Năm", "Thứ Sáu", "Thứ Bảy" ],
|
||||
dayNamesShort: [ "CN", "T2", "T3", "T4", "T5", "T6", "T7" ],
|
||||
dayNamesMin: [ "CN", "T2", "T3", "T4", "T5", "T6", "T7" ],
|
||||
weekHeader: "Tu",
|
||||
dateFormat: "dd/mm/yy",
|
||||
firstDay: 0,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: "" };
|
||||
datepicker.setDefaults( datepicker.regional.vi );
|
||||
|
||||
return datepicker.regional.vi;
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-zh-CN.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-zh-CN.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Chinese initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Cloudream (cloudream@gmail.com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional[ "zh-CN" ] = {
|
||||
closeText: "关闭",
|
||||
prevText: "<上月",
|
||||
nextText: "下月>",
|
||||
currentText: "今天",
|
||||
monthNames: [ "一月", "二月", "三月", "四月", "五月", "六月",
|
||||
"七月", "八月", "九月", "十月", "十一月", "十二月" ],
|
||||
monthNamesShort: [ "一月", "二月", "三月", "四月", "五月", "六月",
|
||||
"七月", "八月", "九月", "十月", "十一月", "十二月" ],
|
||||
dayNames: [ "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" ],
|
||||
dayNamesShort: [ "周日", "周一", "周二", "周三", "周四", "周五", "周六" ],
|
||||
dayNamesMin: [ "日", "一", "二", "三", "四", "五", "六" ],
|
||||
weekHeader: "周",
|
||||
dateFormat: "yy-mm-dd",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: true,
|
||||
yearSuffix: "年" };
|
||||
datepicker.setDefaults( datepicker.regional[ "zh-CN" ] );
|
||||
|
||||
return datepicker.regional[ "zh-CN" ];
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-zh-HK.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-zh-HK.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Chinese initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by SCCY (samuelcychan@gmail.com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional[ "zh-HK" ] = {
|
||||
closeText: "關閉",
|
||||
prevText: "<上月",
|
||||
nextText: "下月>",
|
||||
currentText: "今天",
|
||||
monthNames: [ "一月", "二月", "三月", "四月", "五月", "六月",
|
||||
"七月", "八月", "九月", "十月", "十一月", "十二月" ],
|
||||
monthNamesShort: [ "一月", "二月", "三月", "四月", "五月", "六月",
|
||||
"七月", "八月", "九月", "十月", "十一月", "十二月" ],
|
||||
dayNames: [ "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" ],
|
||||
dayNamesShort: [ "周日", "周一", "周二", "周三", "周四", "周五", "周六" ],
|
||||
dayNamesMin: [ "日", "一", "二", "三", "四", "五", "六" ],
|
||||
weekHeader: "周",
|
||||
dateFormat: "dd-mm-yy",
|
||||
firstDay: 0,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: true,
|
||||
yearSuffix: "年" };
|
||||
datepicker.setDefaults( datepicker.regional[ "zh-HK" ] );
|
||||
|
||||
return datepicker.regional[ "zh-HK" ];
|
||||
|
||||
} );
|
40
node_modules/jquery-ui/ui/i18n/datepicker-zh-TW.js
generated
vendored
Normal file
40
node_modules/jquery-ui/ui/i18n/datepicker-zh-TW.js
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* Chinese initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Ressol (ressol@gmail.com). */
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "../widgets/datepicker" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery.datepicker );
|
||||
}
|
||||
} )( function( datepicker ) {
|
||||
"use strict";
|
||||
|
||||
datepicker.regional[ "zh-TW" ] = {
|
||||
closeText: "關閉",
|
||||
prevText: "<上個月",
|
||||
nextText: "下個月>",
|
||||
currentText: "今天",
|
||||
monthNames: [ "一月", "二月", "三月", "四月", "五月", "六月",
|
||||
"七月", "八月", "九月", "十月", "十一月", "十二月" ],
|
||||
monthNamesShort: [ "一月", "二月", "三月", "四月", "五月", "六月",
|
||||
"七月", "八月", "九月", "十月", "十一月", "十二月" ],
|
||||
dayNames: [ "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" ],
|
||||
dayNamesShort: [ "週日", "週一", "週二", "週三", "週四", "週五", "週六" ],
|
||||
dayNamesMin: [ "日", "一", "二", "三", "四", "五", "六" ],
|
||||
weekHeader: "週",
|
||||
dateFormat: "yy/mm/dd",
|
||||
firstDay: 1,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: true,
|
||||
yearSuffix: "年" };
|
||||
datepicker.setDefaults( datepicker.regional[ "zh-TW" ] );
|
||||
|
||||
return datepicker.regional[ "zh-TW" ];
|
||||
|
||||
} );
|
18
node_modules/jquery-ui/ui/ie.js
generated
vendored
Normal file
18
node_modules/jquery-ui/ui/ie.js
generated
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "jquery", "./version" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
}
|
||||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
// This file is deprecated
|
||||
return $.ui.ie = !!/msie [\w.]+/.exec( navigator.userAgent.toLowerCase() );
|
||||
} );
|
89
node_modules/jquery-ui/ui/jquery-patch.js
generated
vendored
Normal file
89
node_modules/jquery-ui/ui/jquery-patch.js
generated
vendored
Normal file
|
@ -0,0 +1,89 @@
|
|||
/*!
|
||||
* jQuery UI Support for jQuery core 1.8.x and newer 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
*/
|
||||
|
||||
//>>label: jQuery 1.8+ Support
|
||||
//>>group: Core
|
||||
//>>description: Support version 1.8.x and newer of jQuery core
|
||||
|
||||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "jquery", "./version" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
}
|
||||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
// Support: jQuery 1.9.x or older
|
||||
// $.expr[ ":" ] is deprecated.
|
||||
if ( !$.expr.pseudos ) {
|
||||
$.expr.pseudos = $.expr[ ":" ];
|
||||
}
|
||||
|
||||
// Support: jQuery 1.11.x or older
|
||||
// $.unique has been renamed to $.uniqueSort
|
||||
if ( !$.uniqueSort ) {
|
||||
$.uniqueSort = $.unique;
|
||||
}
|
||||
|
||||
// Support: jQuery 2.2.x or older.
|
||||
// This method has been defined in jQuery 3.0.0.
|
||||
// Code from https://github.com/jquery/jquery/blob/e539bac79e666bba95bba86d690b4e609dca2286/src/selector/escapeSelector.js
|
||||
if ( !$.escapeSelector ) {
|
||||
|
||||
// CSS string/identifier serialization
|
||||
// https://drafts.csswg.org/cssom/#common-serializing-idioms
|
||||
var rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g;
|
||||
|
||||
var fcssescape = function( ch, asCodePoint ) {
|
||||
if ( asCodePoint ) {
|
||||
|
||||
// U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER
|
||||
if ( ch === "\0" ) {
|
||||
return "\uFFFD";
|
||||
}
|
||||
|
||||
// Control characters and (dependent upon position) numbers get escaped as code points
|
||||
return ch.slice( 0, -1 ) + "\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " ";
|
||||
}
|
||||
|
||||
// Other potentially-special ASCII characters get backslash-escaped
|
||||
return "\\" + ch;
|
||||
};
|
||||
|
||||
$.escapeSelector = function( sel ) {
|
||||
return ( sel + "" ).replace( rcssescape, fcssescape );
|
||||
};
|
||||
}
|
||||
|
||||
// Support: jQuery 3.4.x or older
|
||||
// These methods have been defined in jQuery 3.5.0.
|
||||
if ( !$.fn.even || !$.fn.odd ) {
|
||||
$.fn.extend( {
|
||||
even: function() {
|
||||
return this.filter( function( i ) {
|
||||
return i % 2 === 0;
|
||||
} );
|
||||
},
|
||||
odd: function() {
|
||||
return this.filter( function( i ) {
|
||||
return i % 2 === 1;
|
||||
} );
|
||||
}
|
||||
} );
|
||||
}
|
||||
|
||||
} );
|
22
node_modules/jquery-ui/ui/jquery-var-for-color.js
generated
vendored
Normal file
22
node_modules/jquery-ui/ui/jquery-var-for-color.js
generated
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
( function( factory ) {
|
||||
"use strict";
|
||||
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define( [ "jquery", "./version" ], factory );
|
||||
} else {
|
||||
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
}
|
||||
} )( function( $ ) {
|
||||
"use strict";
|
||||
|
||||
// Create a local jQuery because jQuery Color relies on it and the
|
||||
// global may not exist with AMD and a custom build (#10199).
|
||||
// This module is a noop if used as a regular AMD module.
|
||||
// eslint-disable-next-line no-unused-vars
|
||||
var jQuery = $;
|
||||
|
||||
} );
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue