Nuget update
- JQueryUI - moment.js - System.memory
This commit is contained in:
@@ -135,13 +135,13 @@
|
||||
<Reference Include="System.IO.Pipelines, Version=6.0.0.3, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.IO.Pipelines.6.0.3\lib\net461\System.IO.Pipelines.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Memory, Version=4.0.1.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Memory.4.5.5\lib\net461\System.Memory.dll</HintPath>
|
||||
</Reference>
|
||||
<!-- <Reference Include="System.IO.Compression, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.IO.Compression.4.3.0\lib\net46\System.IO.Compression.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference> -->
|
||||
<Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Memory.4.5.4\lib\net461\System.Memory.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Net.Http, Version=4.1.1.3, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Net.Http.4.3.4\lib\net46\System.Net.Http.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
@@ -559,8 +559,8 @@
|
||||
<Content Include="Scripts\jquery-3.6.0.min.js" />
|
||||
<Content Include="Scripts\jquery-3.6.0.slim.js" />
|
||||
<Content Include="Scripts\jquery-3.6.0.slim.min.js" />
|
||||
<Content Include="Scripts\jquery-ui-1.13.0.js" />
|
||||
<Content Include="Scripts\jquery-ui-1.13.0.min.js" />
|
||||
<Content Include="Scripts\jquery-ui-1.13.1.js" />
|
||||
<Content Include="Scripts\jquery-ui-1.13.1.min.js" />
|
||||
<Content Include="Scripts\moment-with-locales.js" />
|
||||
<Content Include="Scripts\moment-with-locales.min.js" />
|
||||
<Content Include="Scripts\moment.js" />
|
||||
@@ -747,10 +747,10 @@
|
||||
<Content Include="Scripts\popper.js.map" />
|
||||
<Content Include="Scripts\popper-utils.min.js.map" />
|
||||
<Content Include="Scripts\popper-utils.js.map" />
|
||||
<Content Include="Scripts\moment.min.js.map" />
|
||||
<Content Include="Scripts\moment-with-locales.min.js.map" />
|
||||
<Content Include="Scripts\jquery-3.6.0.slim.min.map" />
|
||||
<Content Include="Scripts\jquery-3.6.0.min.map" />
|
||||
<Content Include="Scripts\moment.min.js.map" />
|
||||
<Content Include="Scripts\moment-with-locales.min.js.map" />
|
||||
<None Include="Web.Debug.config">
|
||||
<DependentUpon>Web.config</DependentUpon>
|
||||
</None>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/// <reference path="jquery-ui-1.13.0.js" />
|
||||
/// <reference path="jquery-ui-1.13.1.js" />
|
||||
/// <reference path="jquery-3.6.0.js" />
|
||||
/// <autosync enabled="true" />
|
||||
/// <reference path="bootstrap.js" />
|
||||
|
||||
-6
File diff suppressed because one or more lines are too long
+163
-152
@@ -1,4 +1,4 @@
|
||||
/*! jQuery UI - v1.13.0 - 2021-10-07
|
||||
/*! jQuery UI - v1.13.1 - 2022-01-20
|
||||
* http://jqueryui.com
|
||||
* Includes: widget.js, position.js, data.js, disable-selection.js, effect.js, effects/effect-blind.js, effects/effect-bounce.js, effects/effect-clip.js, effects/effect-drop.js, effects/effect-explode.js, effects/effect-fade.js, effects/effect-fold.js, effects/effect-highlight.js, effects/effect-puff.js, effects/effect-pulsate.js, effects/effect-scale.js, effects/effect-shake.js, effects/effect-size.js, effects/effect-slide.js, effects/effect-transfer.js, focusable.js, form-reset-mixin.js, jquery-patch.js, keycode.js, labels.js, scroll-parent.js, tabbable.js, unique-id.js, widgets/accordion.js, widgets/autocomplete.js, widgets/button.js, widgets/checkboxradio.js, widgets/controlgroup.js, widgets/datepicker.js, widgets/dialog.js, widgets/draggable.js, widgets/droppable.js, widgets/menu.js, widgets/mouse.js, widgets/progressbar.js, widgets/resizable.js, widgets/selectable.js, widgets/selectmenu.js, widgets/slider.js, widgets/sortable.js, widgets/spinner.js, widgets/tabs.js, widgets/tooltip.js
|
||||
* Copyright jQuery Foundation and other contributors; Licensed MIT */
|
||||
@@ -20,11 +20,11 @@
|
||||
|
||||
$.ui = $.ui || {};
|
||||
|
||||
var version = $.ui.version = "1.13.0";
|
||||
var version = $.ui.version = "1.13.1";
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Widget 1.13.0
|
||||
* jQuery UI Widget 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -88,7 +88,7 @@ $.widget = function( name, base, prototype ) {
|
||||
constructor = $[ namespace ][ name ] = function( options, element ) {
|
||||
|
||||
// Allow instantiation without "new" keyword
|
||||
if ( !this._createWidget ) {
|
||||
if ( !this || !this._createWidget ) {
|
||||
return new constructor( options, element );
|
||||
}
|
||||
|
||||
@@ -510,6 +510,8 @@ $.Widget.prototype = {
|
||||
}, options );
|
||||
|
||||
function bindRemoveEvent() {
|
||||
var nodesToBind = [];
|
||||
|
||||
options.element.each( function( _, element ) {
|
||||
var isTracked = $.map( that.classesElementLookup, function( elements ) {
|
||||
return elements;
|
||||
@@ -519,11 +521,13 @@ $.Widget.prototype = {
|
||||
} );
|
||||
|
||||
if ( !isTracked ) {
|
||||
that._on( $( element ), {
|
||||
remove: "_untrackClassesElement"
|
||||
} );
|
||||
nodesToBind.push( element );
|
||||
}
|
||||
} );
|
||||
|
||||
that._on( $( nodesToBind ), {
|
||||
remove: "_untrackClassesElement"
|
||||
} );
|
||||
}
|
||||
|
||||
function processClassString( classes, checkOption ) {
|
||||
@@ -762,7 +766,7 @@ var widget = $.widget;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Position 1.13.0
|
||||
* jQuery UI Position 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -1259,7 +1263,7 @@ var position = $.ui.position;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI :data 1.13.0
|
||||
* jQuery UI :data 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -1288,7 +1292,7 @@ var data = $.extend( $.expr.pseudos, {
|
||||
} );
|
||||
|
||||
/*!
|
||||
* jQuery UI Disable Selection 1.13.0
|
||||
* jQuery UI Disable Selection 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -2043,7 +2047,7 @@ colors = jQuery.Color.names = {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects 1.13.0
|
||||
* jQuery UI Effects 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -2427,7 +2431,7 @@ if ( $.uiBackCompat !== false ) {
|
||||
}
|
||||
|
||||
$.extend( $.effects, {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
|
||||
define: function( name, mode, effect ) {
|
||||
if ( !effect ) {
|
||||
@@ -2995,7 +2999,7 @@ var effect = $.effects;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Blind 1.13.0
|
||||
* jQuery UI Effects Blind 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3050,7 +3054,7 @@ var effectsEffectBlind = $.effects.define( "blind", "hide", function( options, d
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Bounce 1.13.0
|
||||
* jQuery UI Effects Bounce 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3145,7 +3149,7 @@ var effectsEffectBounce = $.effects.define( "bounce", function( options, done )
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Clip 1.13.0
|
||||
* jQuery UI Effects Clip 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3195,7 +3199,7 @@ var effectsEffectClip = $.effects.define( "clip", "hide", function( options, don
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Drop 1.13.0
|
||||
* jQuery UI Effects Drop 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3249,7 +3253,7 @@ var effectsEffectDrop = $.effects.define( "drop", "hide", function( options, don
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Explode 1.13.0
|
||||
* jQuery UI Effects Explode 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3345,7 +3349,7 @@ var effectsEffectExplode = $.effects.define( "explode", "hide", function( option
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Fade 1.13.0
|
||||
* jQuery UI Effects Fade 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3377,7 +3381,7 @@ var effectsEffectFade = $.effects.define( "fade", "toggle", function( options, d
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Fold 1.13.0
|
||||
* jQuery UI Effects Fold 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3451,7 +3455,7 @@ var effectsEffectFold = $.effects.define( "fold", "hide", function( options, don
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Highlight 1.13.0
|
||||
* jQuery UI Effects Highlight 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3493,7 +3497,7 @@ var effectsEffectHighlight = $.effects.define( "highlight", "show", function( op
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Size 1.13.0
|
||||
* jQuery UI Effects Size 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3671,7 +3675,7 @@ var effectsEffectSize = $.effects.define( "size", function( options, done ) {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Scale 1.13.0
|
||||
* jQuery UI Effects Scale 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3711,7 +3715,7 @@ var effectsEffectScale = $.effects.define( "scale", function( options, done ) {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Puff 1.13.0
|
||||
* jQuery UI Effects Puff 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3737,7 +3741,7 @@ var effectsEffectPuff = $.effects.define( "puff", "hide", function( options, don
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Pulsate 1.13.0
|
||||
* jQuery UI Effects Pulsate 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3786,7 +3790,7 @@ var effectsEffectPulsate = $.effects.define( "pulsate", "show", function( option
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Shake 1.13.0
|
||||
* jQuery UI Effects Shake 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3845,7 +3849,7 @@ var effectsEffectShake = $.effects.define( "shake", function( options, done ) {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Slide 1.13.0
|
||||
* jQuery UI Effects Slide 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3906,7 +3910,7 @@ var effectsEffectSlide = $.effects.define( "slide", "show", function( options, d
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Transfer 1.13.0
|
||||
* jQuery UI Effects Transfer 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3931,7 +3935,7 @@ var effectsEffectTransfer = effect;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Focusable 1.13.0
|
||||
* jQuery UI Focusable 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4013,7 +4017,7 @@ var form = $.fn._form = function() {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Form Reset Mixin 1.13.0
|
||||
* jQuery UI Form Reset Mixin 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4075,7 +4079,7 @@ var formResetMixin = $.ui.formResetMixin = {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Support for jQuery core 1.8.x and newer 1.13.0
|
||||
* jQuery UI Support for jQuery core 1.8.x and newer 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4150,7 +4154,7 @@ if ( !$.fn.even || !$.fn.odd ) {
|
||||
|
||||
;
|
||||
/*!
|
||||
* jQuery UI Keycode 1.13.0
|
||||
* jQuery UI Keycode 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4185,7 +4189,7 @@ var keycode = $.ui.keyCode = {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Labels 1.13.0
|
||||
* jQuery UI Labels 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4240,7 +4244,7 @@ var labels = $.fn.labels = function() {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Scroll Parent 1.13.0
|
||||
* jQuery UI Scroll Parent 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4274,7 +4278,7 @@ var scrollParent = $.fn.scrollParent = function( includeHidden ) {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Tabbable 1.13.0
|
||||
* jQuery UI Tabbable 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4298,7 +4302,7 @@ var tabbable = $.extend( $.expr.pseudos, {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Unique ID 1.13.0
|
||||
* jQuery UI Unique ID 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4336,7 +4340,7 @@ var uniqueId = $.fn.extend( {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Accordion 1.13.0
|
||||
* jQuery UI Accordion 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4357,7 +4361,7 @@ var uniqueId = $.fn.extend( {
|
||||
|
||||
|
||||
var widgetsAccordion = $.widget( "ui.accordion", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
options: {
|
||||
active: 0,
|
||||
animate: {},
|
||||
@@ -4968,7 +4972,7 @@ var safeActiveElement = $.ui.safeActiveElement = function( document ) {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Menu 1.13.0
|
||||
* jQuery UI Menu 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4987,7 +4991,7 @@ var safeActiveElement = $.ui.safeActiveElement = function( document ) {
|
||||
|
||||
|
||||
var widgetsMenu = $.widget( "ui.menu", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
defaultElement: "<ul>",
|
||||
delay: 300,
|
||||
options: {
|
||||
@@ -5659,7 +5663,7 @@ var widgetsMenu = $.widget( "ui.menu", {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Autocomplete 1.13.0
|
||||
* jQuery UI Autocomplete 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -5678,7 +5682,7 @@ var widgetsMenu = $.widget( "ui.menu", {
|
||||
|
||||
|
||||
$.widget( "ui.autocomplete", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
defaultElement: "<input>",
|
||||
options: {
|
||||
appendTo: null,
|
||||
@@ -5704,6 +5708,7 @@ $.widget( "ui.autocomplete", {
|
||||
|
||||
requestIndex: 0,
|
||||
pending: 0,
|
||||
liveRegionTimer: null,
|
||||
|
||||
_create: function() {
|
||||
|
||||
@@ -5905,8 +5910,10 @@ $.widget( "ui.autocomplete", {
|
||||
// Announce the value in the liveRegion
|
||||
label = ui.item.attr( "aria-label" ) || item.value;
|
||||
if ( label && String.prototype.trim.call( label ).length ) {
|
||||
this.liveRegion.children().hide();
|
||||
$( "<div>" ).text( label ).appendTo( this.liveRegion );
|
||||
clearTimeout( this.liveRegionTimer );
|
||||
this.liveRegionTimer = this._delay( function() {
|
||||
this.liveRegion.html( $( "<div>" ).text( label ) );
|
||||
}, 100 );
|
||||
}
|
||||
},
|
||||
menuselect: function( event, ui ) {
|
||||
@@ -6301,8 +6308,10 @@ $.widget( "ui.autocomplete", $.ui.autocomplete, {
|
||||
} else {
|
||||
message = this.options.messages.noResults;
|
||||
}
|
||||
this.liveRegion.children().hide();
|
||||
$( "<div>" ).text( message ).appendTo( this.liveRegion );
|
||||
clearTimeout( this.liveRegionTimer );
|
||||
this.liveRegionTimer = this._delay( function() {
|
||||
this.liveRegion.html( $( "<div>" ).text( message ) );
|
||||
}, 100 );
|
||||
}
|
||||
} );
|
||||
|
||||
@@ -6310,7 +6319,7 @@ var widgetsAutocomplete = $.ui.autocomplete;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Controlgroup 1.13.0
|
||||
* jQuery UI Controlgroup 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -6331,7 +6340,7 @@ var widgetsAutocomplete = $.ui.autocomplete;
|
||||
var controlgroupCornerRegex = /ui-corner-([a-z]){2,6}/g;
|
||||
|
||||
var widgetsControlgroup = $.widget( "ui.controlgroup", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
defaultElement: "<div>",
|
||||
options: {
|
||||
direction: "horizontal",
|
||||
@@ -6595,7 +6604,7 @@ var widgetsControlgroup = $.widget( "ui.controlgroup", {
|
||||
} );
|
||||
|
||||
/*!
|
||||
* jQuery UI Checkboxradio 1.13.0
|
||||
* jQuery UI Checkboxradio 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -6615,7 +6624,7 @@ var widgetsControlgroup = $.widget( "ui.controlgroup", {
|
||||
|
||||
|
||||
$.widget( "ui.checkboxradio", [ $.ui.formResetMixin, {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
options: {
|
||||
disabled: null,
|
||||
label: null,
|
||||
@@ -6861,7 +6870,7 @@ var widgetsCheckboxradio = $.ui.checkboxradio;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Button 1.13.0
|
||||
* jQuery UI Button 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -6880,7 +6889,7 @@ var widgetsCheckboxradio = $.ui.checkboxradio;
|
||||
|
||||
|
||||
$.widget( "ui.button", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
defaultElement: "<button>",
|
||||
options: {
|
||||
classes: {
|
||||
@@ -7287,7 +7296,7 @@ var widgetsButton = $.ui.button;
|
||||
|
||||
/* eslint-disable max-len, camelcase */
|
||||
/*!
|
||||
* jQuery UI Datepicker 1.13.0
|
||||
* jQuery UI Datepicker 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -7305,7 +7314,7 @@ var widgetsButton = $.ui.button;
|
||||
//>>css.theme: ../../themes/base/theme.css
|
||||
|
||||
|
||||
$.extend( $.ui, { datepicker: { version: "1.13.0" } } );
|
||||
$.extend( $.ui, { datepicker: { version: "1.13.1" } } );
|
||||
|
||||
var datepicker_instActive;
|
||||
|
||||
@@ -9502,7 +9511,7 @@ $.fn.datepicker = function( options ) {
|
||||
$.datepicker = new Datepicker(); // singleton instance
|
||||
$.datepicker.initialized = false;
|
||||
$.datepicker.uuid = new Date().getTime();
|
||||
$.datepicker.version = "1.13.0";
|
||||
$.datepicker.version = "1.13.1";
|
||||
|
||||
var widgetsDatepicker = $.datepicker;
|
||||
|
||||
@@ -9512,7 +9521,7 @@ var widgetsDatepicker = $.datepicker;
|
||||
var ie = $.ui.ie = !!/msie [\w.]+/.exec( navigator.userAgent.toLowerCase() );
|
||||
|
||||
/*!
|
||||
* jQuery UI Mouse 1.13.0
|
||||
* jQuery UI Mouse 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -9532,7 +9541,7 @@ $( document ).on( "mouseup", function() {
|
||||
} );
|
||||
|
||||
var widgetsMouse = $.widget( "ui.mouse", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
options: {
|
||||
cancel: "input, textarea, button, select, option",
|
||||
distance: 1,
|
||||
@@ -9774,7 +9783,7 @@ var safeBlur = $.ui.safeBlur = function( element ) {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Draggable 1.13.0
|
||||
* jQuery UI Draggable 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -9791,7 +9800,7 @@ var safeBlur = $.ui.safeBlur = function( element ) {
|
||||
|
||||
|
||||
$.widget( "ui.draggable", $.ui.mouse, {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
widgetEventPrefix: "drag",
|
||||
options: {
|
||||
addClasses: true,
|
||||
@@ -11009,7 +11018,7 @@ var widgetsDraggable = $.ui.draggable;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Resizable 1.13.0
|
||||
* jQuery UI Resizable 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -11028,7 +11037,7 @@ var widgetsDraggable = $.ui.draggable;
|
||||
|
||||
|
||||
$.widget( "ui.resizable", $.ui.mouse, {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
widgetEventPrefix: "resize",
|
||||
options: {
|
||||
alsoResize: false,
|
||||
@@ -12207,7 +12216,7 @@ var widgetsResizable = $.ui.resizable;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Dialog 1.13.0
|
||||
* jQuery UI Dialog 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -12226,7 +12235,7 @@ var widgetsResizable = $.ui.resizable;
|
||||
|
||||
|
||||
$.widget( "ui.dialog", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
options: {
|
||||
appendTo: "body",
|
||||
autoOpen: true,
|
||||
@@ -13132,7 +13141,7 @@ var widgetsDialog = $.ui.dialog;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Droppable 1.13.0
|
||||
* jQuery UI Droppable 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -13148,7 +13157,7 @@ var widgetsDialog = $.ui.dialog;
|
||||
|
||||
|
||||
$.widget( "ui.droppable", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
widgetEventPrefix: "drop",
|
||||
options: {
|
||||
accept: "*",
|
||||
@@ -13615,7 +13624,7 @@ var widgetsDroppable = $.ui.droppable;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Progressbar 1.13.0
|
||||
* jQuery UI Progressbar 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -13636,7 +13645,7 @@ var widgetsDroppable = $.ui.droppable;
|
||||
|
||||
|
||||
var widgetsProgressbar = $.widget( "ui.progressbar", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
options: {
|
||||
classes: {
|
||||
"ui-progressbar": "ui-corner-all",
|
||||
@@ -13778,7 +13787,7 @@ var widgetsProgressbar = $.widget( "ui.progressbar", {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Selectable 1.13.0
|
||||
* jQuery UI Selectable 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -13795,7 +13804,7 @@ var widgetsProgressbar = $.widget( "ui.progressbar", {
|
||||
|
||||
|
||||
var widgetsSelectable = $.widget( "ui.selectable", $.ui.mouse, {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
options: {
|
||||
appendTo: "body",
|
||||
autoRefresh: true,
|
||||
@@ -14076,7 +14085,7 @@ var widgetsSelectable = $.widget( "ui.selectable", $.ui.mouse, {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Selectmenu 1.13.0
|
||||
* jQuery UI Selectmenu 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -14097,7 +14106,7 @@ var widgetsSelectable = $.widget( "ui.selectable", $.ui.mouse, {
|
||||
|
||||
|
||||
var widgetsSelectmenu = $.widget( "ui.selectmenu", [ $.ui.formResetMixin, {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
defaultElement: "<select>",
|
||||
options: {
|
||||
appendTo: null,
|
||||
@@ -14745,7 +14754,7 @@ var widgetsSelectmenu = $.widget( "ui.selectmenu", [ $.ui.formResetMixin, {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Slider 1.13.0
|
||||
* jQuery UI Slider 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -14764,7 +14773,7 @@ var widgetsSelectmenu = $.widget( "ui.selectmenu", [ $.ui.formResetMixin, {
|
||||
|
||||
|
||||
var widgetsSlider = $.widget( "ui.slider", $.ui.mouse, {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
widgetEventPrefix: "slide",
|
||||
|
||||
options: {
|
||||
@@ -15480,7 +15489,7 @@ var widgetsSlider = $.widget( "ui.slider", $.ui.mouse, {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Sortable 1.13.0
|
||||
* jQuery UI Sortable 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -15497,7 +15506,7 @@ var widgetsSlider = $.widget( "ui.slider", $.ui.mouse, {
|
||||
|
||||
|
||||
var widgetsSortable = $.widget( "ui.sortable", $.ui.mouse, {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
widgetEventPrefix: "sort",
|
||||
ready: false,
|
||||
options: {
|
||||
@@ -15880,79 +15889,76 @@ var widgetsSortable = $.widget( "ui.sortable", $.ui.mouse, {
|
||||
this.helper[ 0 ].style.top = this.position.top + "px";
|
||||
}
|
||||
|
||||
//Post events to containers
|
||||
this._contactContainers( event );
|
||||
//Do scrolling
|
||||
if ( o.scroll ) {
|
||||
if ( this._scroll( event ) !== false ) {
|
||||
|
||||
if ( this.innermostContainer !== null ) {
|
||||
//Update item positions used in position checks
|
||||
this._refreshItemPositions( true );
|
||||
|
||||
//Do scrolling
|
||||
if ( o.scroll ) {
|
||||
if ( this._scroll( event ) !== false ) {
|
||||
|
||||
//Update item positions used in position checks
|
||||
this._refreshItemPositions( true );
|
||||
|
||||
if ( $.ui.ddmanager && !o.dropBehaviour ) {
|
||||
$.ui.ddmanager.prepareOffsets( this, event );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
this.dragDirection = {
|
||||
vertical: this._getDragVerticalDirection(),
|
||||
horizontal: this._getDragHorizontalDirection()
|
||||
};
|
||||
|
||||
//Rearrange
|
||||
for ( i = this.items.length - 1; i >= 0; i-- ) {
|
||||
|
||||
//Cache variables and intersection, continue if no intersection
|
||||
item = this.items[ i ];
|
||||
itemElement = item.item[ 0 ];
|
||||
intersection = this._intersectsWithPointer( item );
|
||||
if ( !intersection ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Only put the placeholder inside the current Container, skip all
|
||||
// items from other containers. This works because when moving
|
||||
// an item from one container to another the
|
||||
// currentContainer is switched before the placeholder is moved.
|
||||
//
|
||||
// Without this, moving items in "sub-sortables" can cause
|
||||
// the placeholder to jitter between the outer and inner container.
|
||||
if ( item.instance !== this.currentContainer ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Cannot intersect with itself
|
||||
// no useless actions that have been done before
|
||||
// no action if the item moved is the parent of the item checked
|
||||
if ( itemElement !== this.currentItem[ 0 ] &&
|
||||
this.placeholder[ intersection === 1 ?
|
||||
"next" : "prev" ]()[ 0 ] !== itemElement &&
|
||||
!$.contains( this.placeholder[ 0 ], itemElement ) &&
|
||||
( this.options.type === "semi-dynamic" ?
|
||||
!$.contains( this.element[ 0 ], itemElement ) :
|
||||
true
|
||||
)
|
||||
) {
|
||||
|
||||
this.direction = intersection === 1 ? "down" : "up";
|
||||
|
||||
if ( this.options.tolerance === "pointer" ||
|
||||
this._intersectsWithSides( item ) ) {
|
||||
this._rearrange( event, item );
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
|
||||
this._trigger( "change", event, this._uiHash() );
|
||||
break;
|
||||
if ( $.ui.ddmanager && !o.dropBehaviour ) {
|
||||
$.ui.ddmanager.prepareOffsets( this, event );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
this.dragDirection = {
|
||||
vertical: this._getDragVerticalDirection(),
|
||||
horizontal: this._getDragHorizontalDirection()
|
||||
};
|
||||
|
||||
//Rearrange
|
||||
for ( i = this.items.length - 1; i >= 0; i-- ) {
|
||||
|
||||
//Cache variables and intersection, continue if no intersection
|
||||
item = this.items[ i ];
|
||||
itemElement = item.item[ 0 ];
|
||||
intersection = this._intersectsWithPointer( item );
|
||||
if ( !intersection ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Only put the placeholder inside the current Container, skip all
|
||||
// items from other containers. This works because when moving
|
||||
// an item from one container to another the
|
||||
// currentContainer is switched before the placeholder is moved.
|
||||
//
|
||||
// Without this, moving items in "sub-sortables" can cause
|
||||
// the placeholder to jitter between the outer and inner container.
|
||||
if ( item.instance !== this.currentContainer ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Cannot intersect with itself
|
||||
// no useless actions that have been done before
|
||||
// no action if the item moved is the parent of the item checked
|
||||
if ( itemElement !== this.currentItem[ 0 ] &&
|
||||
this.placeholder[ intersection === 1 ?
|
||||
"next" : "prev" ]()[ 0 ] !== itemElement &&
|
||||
!$.contains( this.placeholder[ 0 ], itemElement ) &&
|
||||
( this.options.type === "semi-dynamic" ?
|
||||
!$.contains( this.element[ 0 ], itemElement ) :
|
||||
true
|
||||
)
|
||||
) {
|
||||
|
||||
this.direction = intersection === 1 ? "down" : "up";
|
||||
|
||||
if ( this.options.tolerance === "pointer" ||
|
||||
this._intersectsWithSides( item ) ) {
|
||||
this._rearrange( event, item );
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
|
||||
this._trigger( "change", event, this._uiHash() );
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
//Post events to containers
|
||||
this._contactContainers( event );
|
||||
|
||||
//Interconnect with droppables
|
||||
if ( $.ui.ddmanager ) {
|
||||
$.ui.ddmanager.drag( this, event );
|
||||
@@ -16347,10 +16353,14 @@ var widgetsSortable = $.widget( "ui.sortable", $.ui.mouse, {
|
||||
this.options.axis === "x" || this._isFloating( this.items[ 0 ].item ) :
|
||||
false;
|
||||
|
||||
if ( this.innermostContainer !== null ) {
|
||||
this._refreshItemPositions( fast );
|
||||
// This has to be redone because due to the item being moved out/into the offsetParent,
|
||||
// the offsetParent's position will change
|
||||
if ( this.offsetParent && this.helper ) {
|
||||
this.offset.parent = this._getParentOffset();
|
||||
}
|
||||
|
||||
this._refreshItemPositions( fast );
|
||||
|
||||
var i, p;
|
||||
|
||||
if ( this.options.custom && this.options.custom.refreshContainers ) {
|
||||
@@ -16497,8 +16507,6 @@ var widgetsSortable = $.widget( "ui.sortable", $.ui.mouse, {
|
||||
|
||||
}
|
||||
|
||||
this.innermostContainer = innermostContainer;
|
||||
|
||||
// If no intersecting containers found, return
|
||||
if ( !innermostContainer ) {
|
||||
return;
|
||||
@@ -17074,7 +17082,7 @@ var widgetsSortable = $.widget( "ui.sortable", $.ui.mouse, {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Spinner 1.13.0
|
||||
* jQuery UI Spinner 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -17104,7 +17112,7 @@ function spinnerModifier( fn ) {
|
||||
}
|
||||
|
||||
$.widget( "ui.spinner", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
defaultElement: "<input>",
|
||||
widgetEventPrefix: "spin",
|
||||
options: {
|
||||
@@ -17635,7 +17643,7 @@ var widgetsSpinner = $.ui.spinner;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Tabs 1.13.0
|
||||
* jQuery UI Tabs 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -17654,7 +17662,7 @@ var widgetsSpinner = $.ui.spinner;
|
||||
|
||||
|
||||
$.widget( "ui.tabs", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
delay: 300,
|
||||
options: {
|
||||
active: null,
|
||||
@@ -18539,7 +18547,7 @@ var widgetsTabs = $.ui.tabs;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Tooltip 1.13.0
|
||||
* jQuery UI Tooltip 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -18558,7 +18566,7 @@ var widgetsTabs = $.ui.tabs;
|
||||
|
||||
|
||||
$.widget( "ui.tooltip", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
options: {
|
||||
classes: {
|
||||
"ui-tooltip": "ui-corner-all ui-widget-shadow"
|
||||
@@ -18871,7 +18879,10 @@ $.widget( "ui.tooltip", {
|
||||
// tooltips will handle this in destroy.
|
||||
if ( target[ 0 ] !== this.element[ 0 ] ) {
|
||||
events.remove = function() {
|
||||
this._removeTooltip( this._find( target ).tooltip );
|
||||
var targetElement = this._find( target );
|
||||
if ( targetElement ) {
|
||||
this._removeTooltip( targetElement.tooltip );
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
+6
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
+1
-1
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+96
-81
@@ -1,5 +1,5 @@
|
||||
//! moment.js
|
||||
//! version : 2.29.1
|
||||
//! version : 2.29.4
|
||||
//! authors : Tim Wood, Iskren Chernev, Moment.js contributors
|
||||
//! license : MIT
|
||||
//! momentjs.com
|
||||
@@ -76,8 +76,9 @@
|
||||
|
||||
function map(arr, fn) {
|
||||
var res = [],
|
||||
i;
|
||||
for (i = 0; i < arr.length; ++i) {
|
||||
i,
|
||||
arrLen = arr.length;
|
||||
for (i = 0; i < arrLen; ++i) {
|
||||
res.push(fn(arr[i], i));
|
||||
}
|
||||
return res;
|
||||
@@ -206,7 +207,10 @@
|
||||
updateInProgress = false;
|
||||
|
||||
function copyConfig(to, from) {
|
||||
var i, prop, val;
|
||||
var i,
|
||||
prop,
|
||||
val,
|
||||
momentPropertiesLen = momentProperties.length;
|
||||
|
||||
if (!isUndefined(from._isAMomentObject)) {
|
||||
to._isAMomentObject = from._isAMomentObject;
|
||||
@@ -239,8 +243,8 @@
|
||||
to._locale = from._locale;
|
||||
}
|
||||
|
||||
if (momentProperties.length > 0) {
|
||||
for (i = 0; i < momentProperties.length; i++) {
|
||||
if (momentPropertiesLen > 0) {
|
||||
for (i = 0; i < momentPropertiesLen; i++) {
|
||||
prop = momentProperties[i];
|
||||
val = from[prop];
|
||||
if (!isUndefined(val)) {
|
||||
@@ -295,8 +299,9 @@
|
||||
var args = [],
|
||||
arg,
|
||||
i,
|
||||
key;
|
||||
for (i = 0; i < arguments.length; i++) {
|
||||
key,
|
||||
argLen = arguments.length;
|
||||
for (i = 0; i < argLen; i++) {
|
||||
arg = '';
|
||||
if (typeof arguments[i] === 'object') {
|
||||
arg += '\n[' + i + '] ';
|
||||
@@ -446,7 +451,8 @@
|
||||
);
|
||||
}
|
||||
|
||||
var formattingTokens = /(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,
|
||||
var formattingTokens =
|
||||
/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,
|
||||
localFormattingTokens = /(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,
|
||||
formatFunctions = {},
|
||||
formatTokenFunctions = {};
|
||||
@@ -750,8 +756,9 @@
|
||||
if (typeof units === 'object') {
|
||||
units = normalizeObjectUnits(units);
|
||||
var prioritized = getPrioritizedUnits(units),
|
||||
i;
|
||||
for (i = 0; i < prioritized.length; i++) {
|
||||
i,
|
||||
prioritizedLen = prioritized.length;
|
||||
for (i = 0; i < prioritizedLen; i++) {
|
||||
this[prioritized[i].unit](units[prioritized[i].unit]);
|
||||
}
|
||||
} else {
|
||||
@@ -781,7 +788,8 @@
|
||||
matchTimestamp = /[+-]?\d+(\.\d{1,3})?/, // 123456789 123456789.123
|
||||
// any word (or two) characters or numbers including two/three word month in arabic.
|
||||
// includes scottish gaelic two word and hyphenated months
|
||||
matchWord = /[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,
|
||||
matchWord =
|
||||
/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,
|
||||
regexes;
|
||||
|
||||
regexes = {};
|
||||
@@ -807,15 +815,12 @@
|
||||
return regexEscape(
|
||||
s
|
||||
.replace('\\', '')
|
||||
.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (
|
||||
matched,
|
||||
p1,
|
||||
p2,
|
||||
p3,
|
||||
p4
|
||||
) {
|
||||
return p1 || p2 || p3 || p4;
|
||||
})
|
||||
.replace(
|
||||
/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,
|
||||
function (matched, p1, p2, p3, p4) {
|
||||
return p1 || p2 || p3 || p4;
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
@@ -827,7 +832,8 @@
|
||||
|
||||
function addParseToken(token, callback) {
|
||||
var i,
|
||||
func = callback;
|
||||
func = callback,
|
||||
tokenLen;
|
||||
if (typeof token === 'string') {
|
||||
token = [token];
|
||||
}
|
||||
@@ -836,7 +842,8 @@
|
||||
array[callback] = toInt(input);
|
||||
};
|
||||
}
|
||||
for (i = 0; i < token.length; i++) {
|
||||
tokenLen = token.length;
|
||||
for (i = 0; i < tokenLen; i++) {
|
||||
tokens[token[i]] = func;
|
||||
}
|
||||
}
|
||||
@@ -947,12 +954,12 @@
|
||||
|
||||
// LOCALES
|
||||
|
||||
var defaultLocaleMonths = 'January_February_March_April_May_June_July_August_September_October_November_December'.split(
|
||||
'_'
|
||||
),
|
||||
defaultLocaleMonthsShort = 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split(
|
||||
'_'
|
||||
),
|
||||
var defaultLocaleMonths =
|
||||
'January_February_March_April_May_June_July_August_September_October_November_December'.split(
|
||||
'_'
|
||||
),
|
||||
defaultLocaleMonthsShort =
|
||||
'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
|
||||
MONTHS_IN_FORMAT = /D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/,
|
||||
defaultMonthsShortRegex = matchWord,
|
||||
defaultMonthsRegex = matchWord;
|
||||
@@ -1394,14 +1401,12 @@
|
||||
addRegexToken('W', match1to2);
|
||||
addRegexToken('WW', match1to2, match2);
|
||||
|
||||
addWeekParseToken(['w', 'ww', 'W', 'WW'], function (
|
||||
input,
|
||||
week,
|
||||
config,
|
||||
token
|
||||
) {
|
||||
week[token.substr(0, 1)] = toInt(input);
|
||||
});
|
||||
addWeekParseToken(
|
||||
['w', 'ww', 'W', 'WW'],
|
||||
function (input, week, config, token) {
|
||||
week[token.substr(0, 1)] = toInt(input);
|
||||
}
|
||||
);
|
||||
|
||||
// HELPERS
|
||||
|
||||
@@ -1526,9 +1531,8 @@
|
||||
return ws.slice(n, 7).concat(ws.slice(0, n));
|
||||
}
|
||||
|
||||
var defaultLocaleWeekdays = 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split(
|
||||
'_'
|
||||
),
|
||||
var defaultLocaleWeekdays =
|
||||
'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
|
||||
defaultLocaleWeekdaysShort = 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
|
||||
defaultLocaleWeekdaysMin = 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
|
||||
defaultWeekdaysRegex = matchWord,
|
||||
@@ -2076,6 +2080,11 @@
|
||||
return globalLocale;
|
||||
}
|
||||
|
||||
function isLocaleNameSane(name) {
|
||||
// Prevent names that look like filesystem paths, i.e contain '/' or '\'
|
||||
return name.match('^[^/\\\\]*$') != null;
|
||||
}
|
||||
|
||||
function loadLocale(name) {
|
||||
var oldLocale = null,
|
||||
aliasedRequire;
|
||||
@@ -2084,7 +2093,8 @@
|
||||
locales[name] === undefined &&
|
||||
typeof module !== 'undefined' &&
|
||||
module &&
|
||||
module.exports
|
||||
module.exports &&
|
||||
isLocaleNameSane(name)
|
||||
) {
|
||||
try {
|
||||
oldLocale = globalLocale._abbr;
|
||||
@@ -2301,8 +2311,10 @@
|
||||
|
||||
// iso 8601 regex
|
||||
// 0000-00-00 0000-W00 or 0000-W00-0 + T + 00 or 00:00 or 00:00:00 or 00:00:00.000 + +00:00 or +0000 or +00)
|
||||
var extendedIsoRegex = /^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,
|
||||
basicIsoRegex = /^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,
|
||||
var extendedIsoRegex =
|
||||
/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,
|
||||
basicIsoRegex =
|
||||
/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,
|
||||
tzRegex = /Z|[+-]\d\d(?::?\d\d)?/,
|
||||
isoDates = [
|
||||
['YYYYYY-MM-DD', /[+-]\d{6}-\d\d-\d\d/],
|
||||
@@ -2333,7 +2345,8 @@
|
||||
],
|
||||
aspNetJsonRegex = /^\/?Date\((-?\d+)/i,
|
||||
// RFC 2822 regex: For details see https://tools.ietf.org/html/rfc2822#section-3.3
|
||||
rfc2822 = /^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,
|
||||
rfc2822 =
|
||||
/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,
|
||||
obsOffsets = {
|
||||
UT: 0,
|
||||
GMT: 0,
|
||||
@@ -2356,12 +2369,13 @@
|
||||
allowTime,
|
||||
dateFormat,
|
||||
timeFormat,
|
||||
tzFormat;
|
||||
tzFormat,
|
||||
isoDatesLen = isoDates.length,
|
||||
isoTimesLen = isoTimes.length;
|
||||
|
||||
if (match) {
|
||||
getParsingFlags(config).iso = true;
|
||||
|
||||
for (i = 0, l = isoDates.length; i < l; i++) {
|
||||
for (i = 0, l = isoDatesLen; i < l; i++) {
|
||||
if (isoDates[i][1].exec(match[1])) {
|
||||
dateFormat = isoDates[i][0];
|
||||
allowTime = isoDates[i][2] !== false;
|
||||
@@ -2373,7 +2387,7 @@
|
||||
return;
|
||||
}
|
||||
if (match[3]) {
|
||||
for (i = 0, l = isoTimes.length; i < l; i++) {
|
||||
for (i = 0, l = isoTimesLen; i < l; i++) {
|
||||
if (isoTimes[i][1].exec(match[3])) {
|
||||
// match[2] should be 'T' or space
|
||||
timeFormat = (match[2] || ' ') + isoTimes[i][0];
|
||||
@@ -2440,7 +2454,7 @@
|
||||
function preprocessRFC2822(s) {
|
||||
// Remove comments and folding whitespace and replace multiple-spaces with a single space
|
||||
return s
|
||||
.replace(/\([^)]*\)|[\n\t]/g, ' ')
|
||||
.replace(/\([^()]*\)|[\n\t]/g, ' ')
|
||||
.replace(/(\s\s+)/g, ' ')
|
||||
.replace(/^\s\s*/, '')
|
||||
.replace(/\s\s*$/, '');
|
||||
@@ -2753,12 +2767,13 @@
|
||||
skipped,
|
||||
stringLength = string.length,
|
||||
totalParsedInputLength = 0,
|
||||
era;
|
||||
era,
|
||||
tokenLen;
|
||||
|
||||
tokens =
|
||||
expandFormat(config._f, config._locale).match(formattingTokens) || [];
|
||||
|
||||
for (i = 0; i < tokens.length; i++) {
|
||||
tokenLen = tokens.length;
|
||||
for (i = 0; i < tokenLen; i++) {
|
||||
token = tokens[i];
|
||||
parsedInput = (string.match(getParseRegexForToken(token, config)) ||
|
||||
[])[0];
|
||||
@@ -2853,15 +2868,16 @@
|
||||
i,
|
||||
currentScore,
|
||||
validFormatFound,
|
||||
bestFormatIsValid = false;
|
||||
bestFormatIsValid = false,
|
||||
configfLen = config._f.length;
|
||||
|
||||
if (config._f.length === 0) {
|
||||
if (configfLen === 0) {
|
||||
getParsingFlags(config).invalidFormat = true;
|
||||
config._d = new Date(NaN);
|
||||
return;
|
||||
}
|
||||
|
||||
for (i = 0; i < config._f.length; i++) {
|
||||
for (i = 0; i < configfLen; i++) {
|
||||
currentScore = 0;
|
||||
validFormatFound = false;
|
||||
tempConfig = copyConfig({}, config);
|
||||
@@ -3102,7 +3118,8 @@
|
||||
function isDurationValid(m) {
|
||||
var key,
|
||||
unitHasDecimal = false,
|
||||
i;
|
||||
i,
|
||||
orderLen = ordering.length;
|
||||
for (key in m) {
|
||||
if (
|
||||
hasOwnProp(m, key) &&
|
||||
@@ -3115,7 +3132,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
for (i = 0; i < ordering.length; ++i) {
|
||||
for (i = 0; i < orderLen; ++i) {
|
||||
if (m[ordering[i]]) {
|
||||
if (unitHasDecimal) {
|
||||
return false; // only allow non-integers for smallest unit
|
||||
@@ -3440,7 +3457,8 @@
|
||||
// from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html
|
||||
// somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere
|
||||
// and further modified to allow for strings containing both week and day
|
||||
isoRegex = /^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;
|
||||
isoRegex =
|
||||
/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;
|
||||
|
||||
function createDuration(input, key) {
|
||||
var duration = input,
|
||||
@@ -3661,9 +3679,10 @@
|
||||
'ms',
|
||||
],
|
||||
i,
|
||||
property;
|
||||
property,
|
||||
propertyLen = properties.length;
|
||||
|
||||
for (i = 0; i < properties.length; i += 1) {
|
||||
for (i = 0; i < propertyLen; i += 1) {
|
||||
property = properties[i];
|
||||
propertyTest = propertyTest || hasOwnProp(input, property);
|
||||
}
|
||||
@@ -4286,19 +4305,17 @@
|
||||
addRegexToken('NNNN', matchEraName);
|
||||
addRegexToken('NNNNN', matchEraNarrow);
|
||||
|
||||
addParseToken(['N', 'NN', 'NNN', 'NNNN', 'NNNNN'], function (
|
||||
input,
|
||||
array,
|
||||
config,
|
||||
token
|
||||
) {
|
||||
var era = config._locale.erasParse(input, token, config._strict);
|
||||
if (era) {
|
||||
getParsingFlags(config).era = era;
|
||||
} else {
|
||||
getParsingFlags(config).invalidEra = input;
|
||||
addParseToken(
|
||||
['N', 'NN', 'NNN', 'NNNN', 'NNNNN'],
|
||||
function (input, array, config, token) {
|
||||
var era = config._locale.erasParse(input, token, config._strict);
|
||||
if (era) {
|
||||
getParsingFlags(config).era = era;
|
||||
} else {
|
||||
getParsingFlags(config).invalidEra = input;
|
||||
}
|
||||
}
|
||||
});
|
||||
);
|
||||
|
||||
addRegexToken('y', matchUnsigned);
|
||||
addRegexToken('yy', matchUnsigned);
|
||||
@@ -4590,14 +4607,12 @@
|
||||
addRegexToken('GGGGG', match1to6, match6);
|
||||
addRegexToken('ggggg', match1to6, match6);
|
||||
|
||||
addWeekParseToken(['gggg', 'ggggg', 'GGGG', 'GGGGG'], function (
|
||||
input,
|
||||
week,
|
||||
config,
|
||||
token
|
||||
) {
|
||||
week[token.substr(0, 2)] = toInt(input);
|
||||
});
|
||||
addWeekParseToken(
|
||||
['gggg', 'ggggg', 'GGGG', 'GGGGG'],
|
||||
function (input, week, config, token) {
|
||||
week[token.substr(0, 2)] = toInt(input);
|
||||
}
|
||||
);
|
||||
|
||||
addWeekParseToken(['gg', 'GG'], function (input, week, config, token) {
|
||||
week[token] = hooks.parseTwoDigitYear(input);
|
||||
@@ -5620,7 +5635,7 @@
|
||||
|
||||
//! moment.js
|
||||
|
||||
hooks.version = '2.29.1';
|
||||
hooks.version = '2.29.4';
|
||||
|
||||
setHookCallback(createLocal);
|
||||
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -414,6 +414,10 @@
|
||||
<assemblyIdentity name="Microsoft.Web.Infrastructure" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
<system.webServer>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<package id="elmah.corelibrary" version="1.2.2" targetFramework="net462" />
|
||||
<package id="FontAwesome" version="4.7.0" targetFramework="net462" />
|
||||
<package id="jQuery" version="3.6.0" targetFramework="net462" />
|
||||
<package id="jQuery.UI.Combined" version="1.13.0" targetFramework="net462" />
|
||||
<package id="jQuery.UI.Combined" version="1.13.1" targetFramework="net462" />
|
||||
<package id="Microsoft.AspNet.FriendlyUrls" version="1.0.2" targetFramework="net462" />
|
||||
<package id="Microsoft.AspNet.FriendlyUrls.Core" version="1.0.2" targetFramework="net462" />
|
||||
<package id="Microsoft.AspNet.FriendlyUrls.Core.it" version="1.0.2" targetFramework="net462" />
|
||||
@@ -27,7 +27,7 @@
|
||||
<package id="Microsoft.Web.Infrastructure" version="2.0.0" targetFramework="net462" />
|
||||
<package id="Microsoft.Web.RedisSessionStateProvider" version="4.0.1" targetFramework="net462" />
|
||||
<package id="Modernizr" version="2.8.3" targetFramework="net462" />
|
||||
<package id="Moment.js" version="2.29.1" targetFramework="net462" />
|
||||
<package id="Moment.js" version="2.29.4" targetFramework="net462" />
|
||||
<package id="MongoDB.Bson" version="2.16.1" targetFramework="net462" />
|
||||
<package id="MongoDB.Driver" version="2.16.1" targetFramework="net462" />
|
||||
<package id="MongoDB.Driver.Core" version="2.16.1" targetFramework="net462" />
|
||||
@@ -48,7 +48,7 @@
|
||||
<package id="System.Diagnostics.PerformanceCounter" version="6.0.1" targetFramework="net462" />
|
||||
<package id="System.IO.Compression" version="4.3.0" targetFramework="net462" />
|
||||
<package id="System.IO.Pipelines" version="6.0.3" targetFramework="net462" />
|
||||
<package id="System.Memory" version="4.5.4" targetFramework="net462" />
|
||||
<package id="System.Memory" version="4.5.5" targetFramework="net462" />
|
||||
<package id="System.Net.Http" version="4.3.4" targetFramework="net462" />
|
||||
<package id="System.Numerics.Vectors" version="4.5.0" targetFramework="net462" />
|
||||
<package id="System.Runtime.CompilerServices.Unsafe" version="6.0.0" targetFramework="net462" />
|
||||
|
||||
@@ -128,13 +128,13 @@
|
||||
<Reference Include="System.IO.Pipelines, Version=6.0.0.3, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.IO.Pipelines.6.0.3\lib\net461\System.IO.Pipelines.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Memory, Version=4.0.1.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Memory.4.5.5\lib\net461\System.Memory.dll</HintPath>
|
||||
</Reference>
|
||||
<!-- <Reference Include="System.IO.Compression, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.IO.Compression.4.3.0\lib\net46\System.IO.Compression.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference> -->
|
||||
<Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Memory.4.5.4\lib\net461\System.Memory.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Net.Http, Version=4.1.1.3, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Net.Http.4.3.4\lib\net46\System.Net.Http.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
|
||||
@@ -410,6 +410,10 @@
|
||||
<assemblyIdentity name="Microsoft.Web.Infrastructure" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
<system.webServer>
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
<package id="System.Diagnostics.PerformanceCounter" version="6.0.1" targetFramework="net462" />
|
||||
<package id="System.IO.Compression" version="4.3.0" targetFramework="net462" />
|
||||
<package id="System.IO.Pipelines" version="6.0.3" targetFramework="net462" />
|
||||
<package id="System.Memory" version="4.5.4" targetFramework="net462" />
|
||||
<package id="System.Memory" version="4.5.5" targetFramework="net462" />
|
||||
<package id="System.Net.Http" version="4.3.4" targetFramework="net462" />
|
||||
<package id="System.Numerics.Vectors" version="4.5.0" targetFramework="net462" />
|
||||
<package id="System.Runtime.CompilerServices.Unsafe" version="6.0.0" targetFramework="net462" />
|
||||
|
||||
@@ -134,12 +134,12 @@
|
||||
<Reference Include="System.IO.Pipelines, Version=6.0.0.3, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.IO.Pipelines.6.0.3\lib\net461\System.IO.Pipelines.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Memory, Version=4.0.1.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Memory.4.5.5\lib\net461\System.Memory.dll</HintPath>
|
||||
</Reference>
|
||||
<!-- <Reference Include="System.IO.Compression, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.IO.Compression.4.3.0\lib\net46\System.IO.Compression.dll</HintPath>
|
||||
</Reference> -->
|
||||
<Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Memory.4.5.4\lib\net461\System.Memory.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Net.Http, Version=4.1.1.3, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Net.Http.4.3.4\lib\net46\System.Net.Http.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
@@ -408,8 +408,8 @@
|
||||
<Content Include="Scripts\jquery-3.6.0.min.js" />
|
||||
<Content Include="Scripts\jquery-3.6.0.slim.js" />
|
||||
<Content Include="Scripts\jquery-3.6.0.slim.min.js" />
|
||||
<Content Include="Scripts\jquery-ui-1.13.0.js" />
|
||||
<Content Include="Scripts\jquery-ui-1.13.0.min.js" />
|
||||
<Content Include="Scripts\jquery-ui-1.13.1.js" />
|
||||
<Content Include="Scripts\jquery-ui-1.13.1.min.js" />
|
||||
<Content Include="Scripts\moment-with-locales.js" />
|
||||
<Content Include="Scripts\moment-with-locales.min.js" />
|
||||
<Content Include="Scripts\moment.js" />
|
||||
@@ -579,10 +579,10 @@
|
||||
<Content Include="Scripts\popper.js.map" />
|
||||
<Content Include="Scripts\popper-utils.min.js.map" />
|
||||
<Content Include="Scripts\popper-utils.js.map" />
|
||||
<Content Include="Scripts\moment.min.js.map" />
|
||||
<Content Include="Scripts\moment-with-locales.min.js.map" />
|
||||
<Content Include="Scripts\jquery-3.6.0.slim.min.map" />
|
||||
<Content Include="Scripts\jquery-3.6.0.min.map" />
|
||||
<Content Include="Scripts\moment.min.js.map" />
|
||||
<Content Include="Scripts\moment-with-locales.min.js.map" />
|
||||
<None Include="Web.Debug.config">
|
||||
<DependentUpon>Web.config</DependentUpon>
|
||||
</None>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/// <reference path="jquery-ui-1.13.0.js" />
|
||||
/// <reference path="jquery-ui-1.13.1.js" />
|
||||
/// <reference path="jquery-3.6.0.js" />
|
||||
/// <autosync enabled="true" />
|
||||
/// <reference path="bootstrap.js" />
|
||||
|
||||
File diff suppressed because one or more lines are too long
+163
-152
@@ -1,4 +1,4 @@
|
||||
/*! jQuery UI - v1.13.0 - 2021-10-07
|
||||
/*! jQuery UI - v1.13.1 - 2022-01-20
|
||||
* http://jqueryui.com
|
||||
* Includes: widget.js, position.js, data.js, disable-selection.js, effect.js, effects/effect-blind.js, effects/effect-bounce.js, effects/effect-clip.js, effects/effect-drop.js, effects/effect-explode.js, effects/effect-fade.js, effects/effect-fold.js, effects/effect-highlight.js, effects/effect-puff.js, effects/effect-pulsate.js, effects/effect-scale.js, effects/effect-shake.js, effects/effect-size.js, effects/effect-slide.js, effects/effect-transfer.js, focusable.js, form-reset-mixin.js, jquery-patch.js, keycode.js, labels.js, scroll-parent.js, tabbable.js, unique-id.js, widgets/accordion.js, widgets/autocomplete.js, widgets/button.js, widgets/checkboxradio.js, widgets/controlgroup.js, widgets/datepicker.js, widgets/dialog.js, widgets/draggable.js, widgets/droppable.js, widgets/menu.js, widgets/mouse.js, widgets/progressbar.js, widgets/resizable.js, widgets/selectable.js, widgets/selectmenu.js, widgets/slider.js, widgets/sortable.js, widgets/spinner.js, widgets/tabs.js, widgets/tooltip.js
|
||||
* Copyright jQuery Foundation and other contributors; Licensed MIT */
|
||||
@@ -20,11 +20,11 @@
|
||||
|
||||
$.ui = $.ui || {};
|
||||
|
||||
var version = $.ui.version = "1.13.0";
|
||||
var version = $.ui.version = "1.13.1";
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Widget 1.13.0
|
||||
* jQuery UI Widget 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -88,7 +88,7 @@ $.widget = function( name, base, prototype ) {
|
||||
constructor = $[ namespace ][ name ] = function( options, element ) {
|
||||
|
||||
// Allow instantiation without "new" keyword
|
||||
if ( !this._createWidget ) {
|
||||
if ( !this || !this._createWidget ) {
|
||||
return new constructor( options, element );
|
||||
}
|
||||
|
||||
@@ -510,6 +510,8 @@ $.Widget.prototype = {
|
||||
}, options );
|
||||
|
||||
function bindRemoveEvent() {
|
||||
var nodesToBind = [];
|
||||
|
||||
options.element.each( function( _, element ) {
|
||||
var isTracked = $.map( that.classesElementLookup, function( elements ) {
|
||||
return elements;
|
||||
@@ -519,11 +521,13 @@ $.Widget.prototype = {
|
||||
} );
|
||||
|
||||
if ( !isTracked ) {
|
||||
that._on( $( element ), {
|
||||
remove: "_untrackClassesElement"
|
||||
} );
|
||||
nodesToBind.push( element );
|
||||
}
|
||||
} );
|
||||
|
||||
that._on( $( nodesToBind ), {
|
||||
remove: "_untrackClassesElement"
|
||||
} );
|
||||
}
|
||||
|
||||
function processClassString( classes, checkOption ) {
|
||||
@@ -762,7 +766,7 @@ var widget = $.widget;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Position 1.13.0
|
||||
* jQuery UI Position 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -1259,7 +1263,7 @@ var position = $.ui.position;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI :data 1.13.0
|
||||
* jQuery UI :data 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -1288,7 +1292,7 @@ var data = $.extend( $.expr.pseudos, {
|
||||
} );
|
||||
|
||||
/*!
|
||||
* jQuery UI Disable Selection 1.13.0
|
||||
* jQuery UI Disable Selection 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -2043,7 +2047,7 @@ colors = jQuery.Color.names = {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects 1.13.0
|
||||
* jQuery UI Effects 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -2427,7 +2431,7 @@ if ( $.uiBackCompat !== false ) {
|
||||
}
|
||||
|
||||
$.extend( $.effects, {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
|
||||
define: function( name, mode, effect ) {
|
||||
if ( !effect ) {
|
||||
@@ -2995,7 +2999,7 @@ var effect = $.effects;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Blind 1.13.0
|
||||
* jQuery UI Effects Blind 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3050,7 +3054,7 @@ var effectsEffectBlind = $.effects.define( "blind", "hide", function( options, d
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Bounce 1.13.0
|
||||
* jQuery UI Effects Bounce 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3145,7 +3149,7 @@ var effectsEffectBounce = $.effects.define( "bounce", function( options, done )
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Clip 1.13.0
|
||||
* jQuery UI Effects Clip 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3195,7 +3199,7 @@ var effectsEffectClip = $.effects.define( "clip", "hide", function( options, don
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Drop 1.13.0
|
||||
* jQuery UI Effects Drop 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3249,7 +3253,7 @@ var effectsEffectDrop = $.effects.define( "drop", "hide", function( options, don
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Explode 1.13.0
|
||||
* jQuery UI Effects Explode 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3345,7 +3349,7 @@ var effectsEffectExplode = $.effects.define( "explode", "hide", function( option
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Fade 1.13.0
|
||||
* jQuery UI Effects Fade 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3377,7 +3381,7 @@ var effectsEffectFade = $.effects.define( "fade", "toggle", function( options, d
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Fold 1.13.0
|
||||
* jQuery UI Effects Fold 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3451,7 +3455,7 @@ var effectsEffectFold = $.effects.define( "fold", "hide", function( options, don
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Highlight 1.13.0
|
||||
* jQuery UI Effects Highlight 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3493,7 +3497,7 @@ var effectsEffectHighlight = $.effects.define( "highlight", "show", function( op
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Size 1.13.0
|
||||
* jQuery UI Effects Size 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3671,7 +3675,7 @@ var effectsEffectSize = $.effects.define( "size", function( options, done ) {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Scale 1.13.0
|
||||
* jQuery UI Effects Scale 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3711,7 +3715,7 @@ var effectsEffectScale = $.effects.define( "scale", function( options, done ) {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Puff 1.13.0
|
||||
* jQuery UI Effects Puff 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3737,7 +3741,7 @@ var effectsEffectPuff = $.effects.define( "puff", "hide", function( options, don
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Pulsate 1.13.0
|
||||
* jQuery UI Effects Pulsate 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3786,7 +3790,7 @@ var effectsEffectPulsate = $.effects.define( "pulsate", "show", function( option
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Shake 1.13.0
|
||||
* jQuery UI Effects Shake 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3845,7 +3849,7 @@ var effectsEffectShake = $.effects.define( "shake", function( options, done ) {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Slide 1.13.0
|
||||
* jQuery UI Effects Slide 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3906,7 +3910,7 @@ var effectsEffectSlide = $.effects.define( "slide", "show", function( options, d
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Transfer 1.13.0
|
||||
* jQuery UI Effects Transfer 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3931,7 +3935,7 @@ var effectsEffectTransfer = effect;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Focusable 1.13.0
|
||||
* jQuery UI Focusable 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4013,7 +4017,7 @@ var form = $.fn._form = function() {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Form Reset Mixin 1.13.0
|
||||
* jQuery UI Form Reset Mixin 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4075,7 +4079,7 @@ var formResetMixin = $.ui.formResetMixin = {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Support for jQuery core 1.8.x and newer 1.13.0
|
||||
* jQuery UI Support for jQuery core 1.8.x and newer 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4150,7 +4154,7 @@ if ( !$.fn.even || !$.fn.odd ) {
|
||||
|
||||
;
|
||||
/*!
|
||||
* jQuery UI Keycode 1.13.0
|
||||
* jQuery UI Keycode 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4185,7 +4189,7 @@ var keycode = $.ui.keyCode = {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Labels 1.13.0
|
||||
* jQuery UI Labels 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4240,7 +4244,7 @@ var labels = $.fn.labels = function() {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Scroll Parent 1.13.0
|
||||
* jQuery UI Scroll Parent 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4274,7 +4278,7 @@ var scrollParent = $.fn.scrollParent = function( includeHidden ) {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Tabbable 1.13.0
|
||||
* jQuery UI Tabbable 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4298,7 +4302,7 @@ var tabbable = $.extend( $.expr.pseudos, {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Unique ID 1.13.0
|
||||
* jQuery UI Unique ID 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4336,7 +4340,7 @@ var uniqueId = $.fn.extend( {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Accordion 1.13.0
|
||||
* jQuery UI Accordion 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4357,7 +4361,7 @@ var uniqueId = $.fn.extend( {
|
||||
|
||||
|
||||
var widgetsAccordion = $.widget( "ui.accordion", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
options: {
|
||||
active: 0,
|
||||
animate: {},
|
||||
@@ -4968,7 +4972,7 @@ var safeActiveElement = $.ui.safeActiveElement = function( document ) {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Menu 1.13.0
|
||||
* jQuery UI Menu 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4987,7 +4991,7 @@ var safeActiveElement = $.ui.safeActiveElement = function( document ) {
|
||||
|
||||
|
||||
var widgetsMenu = $.widget( "ui.menu", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
defaultElement: "<ul>",
|
||||
delay: 300,
|
||||
options: {
|
||||
@@ -5659,7 +5663,7 @@ var widgetsMenu = $.widget( "ui.menu", {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Autocomplete 1.13.0
|
||||
* jQuery UI Autocomplete 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -5678,7 +5682,7 @@ var widgetsMenu = $.widget( "ui.menu", {
|
||||
|
||||
|
||||
$.widget( "ui.autocomplete", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
defaultElement: "<input>",
|
||||
options: {
|
||||
appendTo: null,
|
||||
@@ -5704,6 +5708,7 @@ $.widget( "ui.autocomplete", {
|
||||
|
||||
requestIndex: 0,
|
||||
pending: 0,
|
||||
liveRegionTimer: null,
|
||||
|
||||
_create: function() {
|
||||
|
||||
@@ -5905,8 +5910,10 @@ $.widget( "ui.autocomplete", {
|
||||
// Announce the value in the liveRegion
|
||||
label = ui.item.attr( "aria-label" ) || item.value;
|
||||
if ( label && String.prototype.trim.call( label ).length ) {
|
||||
this.liveRegion.children().hide();
|
||||
$( "<div>" ).text( label ).appendTo( this.liveRegion );
|
||||
clearTimeout( this.liveRegionTimer );
|
||||
this.liveRegionTimer = this._delay( function() {
|
||||
this.liveRegion.html( $( "<div>" ).text( label ) );
|
||||
}, 100 );
|
||||
}
|
||||
},
|
||||
menuselect: function( event, ui ) {
|
||||
@@ -6301,8 +6308,10 @@ $.widget( "ui.autocomplete", $.ui.autocomplete, {
|
||||
} else {
|
||||
message = this.options.messages.noResults;
|
||||
}
|
||||
this.liveRegion.children().hide();
|
||||
$( "<div>" ).text( message ).appendTo( this.liveRegion );
|
||||
clearTimeout( this.liveRegionTimer );
|
||||
this.liveRegionTimer = this._delay( function() {
|
||||
this.liveRegion.html( $( "<div>" ).text( message ) );
|
||||
}, 100 );
|
||||
}
|
||||
} );
|
||||
|
||||
@@ -6310,7 +6319,7 @@ var widgetsAutocomplete = $.ui.autocomplete;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Controlgroup 1.13.0
|
||||
* jQuery UI Controlgroup 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -6331,7 +6340,7 @@ var widgetsAutocomplete = $.ui.autocomplete;
|
||||
var controlgroupCornerRegex = /ui-corner-([a-z]){2,6}/g;
|
||||
|
||||
var widgetsControlgroup = $.widget( "ui.controlgroup", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
defaultElement: "<div>",
|
||||
options: {
|
||||
direction: "horizontal",
|
||||
@@ -6595,7 +6604,7 @@ var widgetsControlgroup = $.widget( "ui.controlgroup", {
|
||||
} );
|
||||
|
||||
/*!
|
||||
* jQuery UI Checkboxradio 1.13.0
|
||||
* jQuery UI Checkboxradio 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -6615,7 +6624,7 @@ var widgetsControlgroup = $.widget( "ui.controlgroup", {
|
||||
|
||||
|
||||
$.widget( "ui.checkboxradio", [ $.ui.formResetMixin, {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
options: {
|
||||
disabled: null,
|
||||
label: null,
|
||||
@@ -6861,7 +6870,7 @@ var widgetsCheckboxradio = $.ui.checkboxradio;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Button 1.13.0
|
||||
* jQuery UI Button 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -6880,7 +6889,7 @@ var widgetsCheckboxradio = $.ui.checkboxradio;
|
||||
|
||||
|
||||
$.widget( "ui.button", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
defaultElement: "<button>",
|
||||
options: {
|
||||
classes: {
|
||||
@@ -7287,7 +7296,7 @@ var widgetsButton = $.ui.button;
|
||||
|
||||
/* eslint-disable max-len, camelcase */
|
||||
/*!
|
||||
* jQuery UI Datepicker 1.13.0
|
||||
* jQuery UI Datepicker 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -7305,7 +7314,7 @@ var widgetsButton = $.ui.button;
|
||||
//>>css.theme: ../../themes/base/theme.css
|
||||
|
||||
|
||||
$.extend( $.ui, { datepicker: { version: "1.13.0" } } );
|
||||
$.extend( $.ui, { datepicker: { version: "1.13.1" } } );
|
||||
|
||||
var datepicker_instActive;
|
||||
|
||||
@@ -9502,7 +9511,7 @@ $.fn.datepicker = function( options ) {
|
||||
$.datepicker = new Datepicker(); // singleton instance
|
||||
$.datepicker.initialized = false;
|
||||
$.datepicker.uuid = new Date().getTime();
|
||||
$.datepicker.version = "1.13.0";
|
||||
$.datepicker.version = "1.13.1";
|
||||
|
||||
var widgetsDatepicker = $.datepicker;
|
||||
|
||||
@@ -9512,7 +9521,7 @@ var widgetsDatepicker = $.datepicker;
|
||||
var ie = $.ui.ie = !!/msie [\w.]+/.exec( navigator.userAgent.toLowerCase() );
|
||||
|
||||
/*!
|
||||
* jQuery UI Mouse 1.13.0
|
||||
* jQuery UI Mouse 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -9532,7 +9541,7 @@ $( document ).on( "mouseup", function() {
|
||||
} );
|
||||
|
||||
var widgetsMouse = $.widget( "ui.mouse", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
options: {
|
||||
cancel: "input, textarea, button, select, option",
|
||||
distance: 1,
|
||||
@@ -9774,7 +9783,7 @@ var safeBlur = $.ui.safeBlur = function( element ) {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Draggable 1.13.0
|
||||
* jQuery UI Draggable 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -9791,7 +9800,7 @@ var safeBlur = $.ui.safeBlur = function( element ) {
|
||||
|
||||
|
||||
$.widget( "ui.draggable", $.ui.mouse, {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
widgetEventPrefix: "drag",
|
||||
options: {
|
||||
addClasses: true,
|
||||
@@ -11009,7 +11018,7 @@ var widgetsDraggable = $.ui.draggable;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Resizable 1.13.0
|
||||
* jQuery UI Resizable 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -11028,7 +11037,7 @@ var widgetsDraggable = $.ui.draggable;
|
||||
|
||||
|
||||
$.widget( "ui.resizable", $.ui.mouse, {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
widgetEventPrefix: "resize",
|
||||
options: {
|
||||
alsoResize: false,
|
||||
@@ -12207,7 +12216,7 @@ var widgetsResizable = $.ui.resizable;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Dialog 1.13.0
|
||||
* jQuery UI Dialog 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -12226,7 +12235,7 @@ var widgetsResizable = $.ui.resizable;
|
||||
|
||||
|
||||
$.widget( "ui.dialog", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
options: {
|
||||
appendTo: "body",
|
||||
autoOpen: true,
|
||||
@@ -13132,7 +13141,7 @@ var widgetsDialog = $.ui.dialog;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Droppable 1.13.0
|
||||
* jQuery UI Droppable 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -13148,7 +13157,7 @@ var widgetsDialog = $.ui.dialog;
|
||||
|
||||
|
||||
$.widget( "ui.droppable", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
widgetEventPrefix: "drop",
|
||||
options: {
|
||||
accept: "*",
|
||||
@@ -13615,7 +13624,7 @@ var widgetsDroppable = $.ui.droppable;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Progressbar 1.13.0
|
||||
* jQuery UI Progressbar 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -13636,7 +13645,7 @@ var widgetsDroppable = $.ui.droppable;
|
||||
|
||||
|
||||
var widgetsProgressbar = $.widget( "ui.progressbar", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
options: {
|
||||
classes: {
|
||||
"ui-progressbar": "ui-corner-all",
|
||||
@@ -13778,7 +13787,7 @@ var widgetsProgressbar = $.widget( "ui.progressbar", {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Selectable 1.13.0
|
||||
* jQuery UI Selectable 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -13795,7 +13804,7 @@ var widgetsProgressbar = $.widget( "ui.progressbar", {
|
||||
|
||||
|
||||
var widgetsSelectable = $.widget( "ui.selectable", $.ui.mouse, {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
options: {
|
||||
appendTo: "body",
|
||||
autoRefresh: true,
|
||||
@@ -14076,7 +14085,7 @@ var widgetsSelectable = $.widget( "ui.selectable", $.ui.mouse, {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Selectmenu 1.13.0
|
||||
* jQuery UI Selectmenu 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -14097,7 +14106,7 @@ var widgetsSelectable = $.widget( "ui.selectable", $.ui.mouse, {
|
||||
|
||||
|
||||
var widgetsSelectmenu = $.widget( "ui.selectmenu", [ $.ui.formResetMixin, {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
defaultElement: "<select>",
|
||||
options: {
|
||||
appendTo: null,
|
||||
@@ -14745,7 +14754,7 @@ var widgetsSelectmenu = $.widget( "ui.selectmenu", [ $.ui.formResetMixin, {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Slider 1.13.0
|
||||
* jQuery UI Slider 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -14764,7 +14773,7 @@ var widgetsSelectmenu = $.widget( "ui.selectmenu", [ $.ui.formResetMixin, {
|
||||
|
||||
|
||||
var widgetsSlider = $.widget( "ui.slider", $.ui.mouse, {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
widgetEventPrefix: "slide",
|
||||
|
||||
options: {
|
||||
@@ -15480,7 +15489,7 @@ var widgetsSlider = $.widget( "ui.slider", $.ui.mouse, {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Sortable 1.13.0
|
||||
* jQuery UI Sortable 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -15497,7 +15506,7 @@ var widgetsSlider = $.widget( "ui.slider", $.ui.mouse, {
|
||||
|
||||
|
||||
var widgetsSortable = $.widget( "ui.sortable", $.ui.mouse, {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
widgetEventPrefix: "sort",
|
||||
ready: false,
|
||||
options: {
|
||||
@@ -15880,79 +15889,76 @@ var widgetsSortable = $.widget( "ui.sortable", $.ui.mouse, {
|
||||
this.helper[ 0 ].style.top = this.position.top + "px";
|
||||
}
|
||||
|
||||
//Post events to containers
|
||||
this._contactContainers( event );
|
||||
//Do scrolling
|
||||
if ( o.scroll ) {
|
||||
if ( this._scroll( event ) !== false ) {
|
||||
|
||||
if ( this.innermostContainer !== null ) {
|
||||
//Update item positions used in position checks
|
||||
this._refreshItemPositions( true );
|
||||
|
||||
//Do scrolling
|
||||
if ( o.scroll ) {
|
||||
if ( this._scroll( event ) !== false ) {
|
||||
|
||||
//Update item positions used in position checks
|
||||
this._refreshItemPositions( true );
|
||||
|
||||
if ( $.ui.ddmanager && !o.dropBehaviour ) {
|
||||
$.ui.ddmanager.prepareOffsets( this, event );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
this.dragDirection = {
|
||||
vertical: this._getDragVerticalDirection(),
|
||||
horizontal: this._getDragHorizontalDirection()
|
||||
};
|
||||
|
||||
//Rearrange
|
||||
for ( i = this.items.length - 1; i >= 0; i-- ) {
|
||||
|
||||
//Cache variables and intersection, continue if no intersection
|
||||
item = this.items[ i ];
|
||||
itemElement = item.item[ 0 ];
|
||||
intersection = this._intersectsWithPointer( item );
|
||||
if ( !intersection ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Only put the placeholder inside the current Container, skip all
|
||||
// items from other containers. This works because when moving
|
||||
// an item from one container to another the
|
||||
// currentContainer is switched before the placeholder is moved.
|
||||
//
|
||||
// Without this, moving items in "sub-sortables" can cause
|
||||
// the placeholder to jitter between the outer and inner container.
|
||||
if ( item.instance !== this.currentContainer ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Cannot intersect with itself
|
||||
// no useless actions that have been done before
|
||||
// no action if the item moved is the parent of the item checked
|
||||
if ( itemElement !== this.currentItem[ 0 ] &&
|
||||
this.placeholder[ intersection === 1 ?
|
||||
"next" : "prev" ]()[ 0 ] !== itemElement &&
|
||||
!$.contains( this.placeholder[ 0 ], itemElement ) &&
|
||||
( this.options.type === "semi-dynamic" ?
|
||||
!$.contains( this.element[ 0 ], itemElement ) :
|
||||
true
|
||||
)
|
||||
) {
|
||||
|
||||
this.direction = intersection === 1 ? "down" : "up";
|
||||
|
||||
if ( this.options.tolerance === "pointer" ||
|
||||
this._intersectsWithSides( item ) ) {
|
||||
this._rearrange( event, item );
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
|
||||
this._trigger( "change", event, this._uiHash() );
|
||||
break;
|
||||
if ( $.ui.ddmanager && !o.dropBehaviour ) {
|
||||
$.ui.ddmanager.prepareOffsets( this, event );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
this.dragDirection = {
|
||||
vertical: this._getDragVerticalDirection(),
|
||||
horizontal: this._getDragHorizontalDirection()
|
||||
};
|
||||
|
||||
//Rearrange
|
||||
for ( i = this.items.length - 1; i >= 0; i-- ) {
|
||||
|
||||
//Cache variables and intersection, continue if no intersection
|
||||
item = this.items[ i ];
|
||||
itemElement = item.item[ 0 ];
|
||||
intersection = this._intersectsWithPointer( item );
|
||||
if ( !intersection ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Only put the placeholder inside the current Container, skip all
|
||||
// items from other containers. This works because when moving
|
||||
// an item from one container to another the
|
||||
// currentContainer is switched before the placeholder is moved.
|
||||
//
|
||||
// Without this, moving items in "sub-sortables" can cause
|
||||
// the placeholder to jitter between the outer and inner container.
|
||||
if ( item.instance !== this.currentContainer ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Cannot intersect with itself
|
||||
// no useless actions that have been done before
|
||||
// no action if the item moved is the parent of the item checked
|
||||
if ( itemElement !== this.currentItem[ 0 ] &&
|
||||
this.placeholder[ intersection === 1 ?
|
||||
"next" : "prev" ]()[ 0 ] !== itemElement &&
|
||||
!$.contains( this.placeholder[ 0 ], itemElement ) &&
|
||||
( this.options.type === "semi-dynamic" ?
|
||||
!$.contains( this.element[ 0 ], itemElement ) :
|
||||
true
|
||||
)
|
||||
) {
|
||||
|
||||
this.direction = intersection === 1 ? "down" : "up";
|
||||
|
||||
if ( this.options.tolerance === "pointer" ||
|
||||
this._intersectsWithSides( item ) ) {
|
||||
this._rearrange( event, item );
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
|
||||
this._trigger( "change", event, this._uiHash() );
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
//Post events to containers
|
||||
this._contactContainers( event );
|
||||
|
||||
//Interconnect with droppables
|
||||
if ( $.ui.ddmanager ) {
|
||||
$.ui.ddmanager.drag( this, event );
|
||||
@@ -16347,10 +16353,14 @@ var widgetsSortable = $.widget( "ui.sortable", $.ui.mouse, {
|
||||
this.options.axis === "x" || this._isFloating( this.items[ 0 ].item ) :
|
||||
false;
|
||||
|
||||
if ( this.innermostContainer !== null ) {
|
||||
this._refreshItemPositions( fast );
|
||||
// This has to be redone because due to the item being moved out/into the offsetParent,
|
||||
// the offsetParent's position will change
|
||||
if ( this.offsetParent && this.helper ) {
|
||||
this.offset.parent = this._getParentOffset();
|
||||
}
|
||||
|
||||
this._refreshItemPositions( fast );
|
||||
|
||||
var i, p;
|
||||
|
||||
if ( this.options.custom && this.options.custom.refreshContainers ) {
|
||||
@@ -16497,8 +16507,6 @@ var widgetsSortable = $.widget( "ui.sortable", $.ui.mouse, {
|
||||
|
||||
}
|
||||
|
||||
this.innermostContainer = innermostContainer;
|
||||
|
||||
// If no intersecting containers found, return
|
||||
if ( !innermostContainer ) {
|
||||
return;
|
||||
@@ -17074,7 +17082,7 @@ var widgetsSortable = $.widget( "ui.sortable", $.ui.mouse, {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Spinner 1.13.0
|
||||
* jQuery UI Spinner 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -17104,7 +17112,7 @@ function spinnerModifier( fn ) {
|
||||
}
|
||||
|
||||
$.widget( "ui.spinner", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
defaultElement: "<input>",
|
||||
widgetEventPrefix: "spin",
|
||||
options: {
|
||||
@@ -17635,7 +17643,7 @@ var widgetsSpinner = $.ui.spinner;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Tabs 1.13.0
|
||||
* jQuery UI Tabs 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -17654,7 +17662,7 @@ var widgetsSpinner = $.ui.spinner;
|
||||
|
||||
|
||||
$.widget( "ui.tabs", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
delay: 300,
|
||||
options: {
|
||||
active: null,
|
||||
@@ -18539,7 +18547,7 @@ var widgetsTabs = $.ui.tabs;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Tooltip 1.13.0
|
||||
* jQuery UI Tooltip 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -18558,7 +18566,7 @@ var widgetsTabs = $.ui.tabs;
|
||||
|
||||
|
||||
$.widget( "ui.tooltip", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
options: {
|
||||
classes: {
|
||||
"ui-tooltip": "ui-corner-all ui-widget-shadow"
|
||||
@@ -18871,7 +18879,10 @@ $.widget( "ui.tooltip", {
|
||||
// tooltips will handle this in destroy.
|
||||
if ( target[ 0 ] !== this.element[ 0 ] ) {
|
||||
events.remove = function() {
|
||||
this._removeTooltip( this._find( target ).tooltip );
|
||||
var targetElement = this._find( target );
|
||||
if ( targetElement ) {
|
||||
this._removeTooltip( targetElement.tooltip );
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
+1
-1
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,5 +1,5 @@
|
||||
//! moment.js
|
||||
//! version : 2.29.1
|
||||
//! version : 2.29.4
|
||||
//! authors : Tim Wood, Iskren Chernev, Moment.js contributors
|
||||
//! license : MIT
|
||||
//! momentjs.com
|
||||
@@ -76,8 +76,9 @@
|
||||
|
||||
function map(arr, fn) {
|
||||
var res = [],
|
||||
i;
|
||||
for (i = 0; i < arr.length; ++i) {
|
||||
i,
|
||||
arrLen = arr.length;
|
||||
for (i = 0; i < arrLen; ++i) {
|
||||
res.push(fn(arr[i], i));
|
||||
}
|
||||
return res;
|
||||
@@ -206,7 +207,10 @@
|
||||
updateInProgress = false;
|
||||
|
||||
function copyConfig(to, from) {
|
||||
var i, prop, val;
|
||||
var i,
|
||||
prop,
|
||||
val,
|
||||
momentPropertiesLen = momentProperties.length;
|
||||
|
||||
if (!isUndefined(from._isAMomentObject)) {
|
||||
to._isAMomentObject = from._isAMomentObject;
|
||||
@@ -239,8 +243,8 @@
|
||||
to._locale = from._locale;
|
||||
}
|
||||
|
||||
if (momentProperties.length > 0) {
|
||||
for (i = 0; i < momentProperties.length; i++) {
|
||||
if (momentPropertiesLen > 0) {
|
||||
for (i = 0; i < momentPropertiesLen; i++) {
|
||||
prop = momentProperties[i];
|
||||
val = from[prop];
|
||||
if (!isUndefined(val)) {
|
||||
@@ -295,8 +299,9 @@
|
||||
var args = [],
|
||||
arg,
|
||||
i,
|
||||
key;
|
||||
for (i = 0; i < arguments.length; i++) {
|
||||
key,
|
||||
argLen = arguments.length;
|
||||
for (i = 0; i < argLen; i++) {
|
||||
arg = '';
|
||||
if (typeof arguments[i] === 'object') {
|
||||
arg += '\n[' + i + '] ';
|
||||
@@ -446,7 +451,8 @@
|
||||
);
|
||||
}
|
||||
|
||||
var formattingTokens = /(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,
|
||||
var formattingTokens =
|
||||
/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,
|
||||
localFormattingTokens = /(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,
|
||||
formatFunctions = {},
|
||||
formatTokenFunctions = {};
|
||||
@@ -750,8 +756,9 @@
|
||||
if (typeof units === 'object') {
|
||||
units = normalizeObjectUnits(units);
|
||||
var prioritized = getPrioritizedUnits(units),
|
||||
i;
|
||||
for (i = 0; i < prioritized.length; i++) {
|
||||
i,
|
||||
prioritizedLen = prioritized.length;
|
||||
for (i = 0; i < prioritizedLen; i++) {
|
||||
this[prioritized[i].unit](units[prioritized[i].unit]);
|
||||
}
|
||||
} else {
|
||||
@@ -781,7 +788,8 @@
|
||||
matchTimestamp = /[+-]?\d+(\.\d{1,3})?/, // 123456789 123456789.123
|
||||
// any word (or two) characters or numbers including two/three word month in arabic.
|
||||
// includes scottish gaelic two word and hyphenated months
|
||||
matchWord = /[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,
|
||||
matchWord =
|
||||
/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,
|
||||
regexes;
|
||||
|
||||
regexes = {};
|
||||
@@ -807,15 +815,12 @@
|
||||
return regexEscape(
|
||||
s
|
||||
.replace('\\', '')
|
||||
.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (
|
||||
matched,
|
||||
p1,
|
||||
p2,
|
||||
p3,
|
||||
p4
|
||||
) {
|
||||
return p1 || p2 || p3 || p4;
|
||||
})
|
||||
.replace(
|
||||
/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,
|
||||
function (matched, p1, p2, p3, p4) {
|
||||
return p1 || p2 || p3 || p4;
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
@@ -827,7 +832,8 @@
|
||||
|
||||
function addParseToken(token, callback) {
|
||||
var i,
|
||||
func = callback;
|
||||
func = callback,
|
||||
tokenLen;
|
||||
if (typeof token === 'string') {
|
||||
token = [token];
|
||||
}
|
||||
@@ -836,7 +842,8 @@
|
||||
array[callback] = toInt(input);
|
||||
};
|
||||
}
|
||||
for (i = 0; i < token.length; i++) {
|
||||
tokenLen = token.length;
|
||||
for (i = 0; i < tokenLen; i++) {
|
||||
tokens[token[i]] = func;
|
||||
}
|
||||
}
|
||||
@@ -947,12 +954,12 @@
|
||||
|
||||
// LOCALES
|
||||
|
||||
var defaultLocaleMonths = 'January_February_March_April_May_June_July_August_September_October_November_December'.split(
|
||||
'_'
|
||||
),
|
||||
defaultLocaleMonthsShort = 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split(
|
||||
'_'
|
||||
),
|
||||
var defaultLocaleMonths =
|
||||
'January_February_March_April_May_June_July_August_September_October_November_December'.split(
|
||||
'_'
|
||||
),
|
||||
defaultLocaleMonthsShort =
|
||||
'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
|
||||
MONTHS_IN_FORMAT = /D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/,
|
||||
defaultMonthsShortRegex = matchWord,
|
||||
defaultMonthsRegex = matchWord;
|
||||
@@ -1394,14 +1401,12 @@
|
||||
addRegexToken('W', match1to2);
|
||||
addRegexToken('WW', match1to2, match2);
|
||||
|
||||
addWeekParseToken(['w', 'ww', 'W', 'WW'], function (
|
||||
input,
|
||||
week,
|
||||
config,
|
||||
token
|
||||
) {
|
||||
week[token.substr(0, 1)] = toInt(input);
|
||||
});
|
||||
addWeekParseToken(
|
||||
['w', 'ww', 'W', 'WW'],
|
||||
function (input, week, config, token) {
|
||||
week[token.substr(0, 1)] = toInt(input);
|
||||
}
|
||||
);
|
||||
|
||||
// HELPERS
|
||||
|
||||
@@ -1526,9 +1531,8 @@
|
||||
return ws.slice(n, 7).concat(ws.slice(0, n));
|
||||
}
|
||||
|
||||
var defaultLocaleWeekdays = 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split(
|
||||
'_'
|
||||
),
|
||||
var defaultLocaleWeekdays =
|
||||
'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
|
||||
defaultLocaleWeekdaysShort = 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
|
||||
defaultLocaleWeekdaysMin = 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
|
||||
defaultWeekdaysRegex = matchWord,
|
||||
@@ -2076,6 +2080,11 @@
|
||||
return globalLocale;
|
||||
}
|
||||
|
||||
function isLocaleNameSane(name) {
|
||||
// Prevent names that look like filesystem paths, i.e contain '/' or '\'
|
||||
return name.match('^[^/\\\\]*$') != null;
|
||||
}
|
||||
|
||||
function loadLocale(name) {
|
||||
var oldLocale = null,
|
||||
aliasedRequire;
|
||||
@@ -2084,7 +2093,8 @@
|
||||
locales[name] === undefined &&
|
||||
typeof module !== 'undefined' &&
|
||||
module &&
|
||||
module.exports
|
||||
module.exports &&
|
||||
isLocaleNameSane(name)
|
||||
) {
|
||||
try {
|
||||
oldLocale = globalLocale._abbr;
|
||||
@@ -2301,8 +2311,10 @@
|
||||
|
||||
// iso 8601 regex
|
||||
// 0000-00-00 0000-W00 or 0000-W00-0 + T + 00 or 00:00 or 00:00:00 or 00:00:00.000 + +00:00 or +0000 or +00)
|
||||
var extendedIsoRegex = /^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,
|
||||
basicIsoRegex = /^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,
|
||||
var extendedIsoRegex =
|
||||
/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,
|
||||
basicIsoRegex =
|
||||
/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,
|
||||
tzRegex = /Z|[+-]\d\d(?::?\d\d)?/,
|
||||
isoDates = [
|
||||
['YYYYYY-MM-DD', /[+-]\d{6}-\d\d-\d\d/],
|
||||
@@ -2333,7 +2345,8 @@
|
||||
],
|
||||
aspNetJsonRegex = /^\/?Date\((-?\d+)/i,
|
||||
// RFC 2822 regex: For details see https://tools.ietf.org/html/rfc2822#section-3.3
|
||||
rfc2822 = /^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,
|
||||
rfc2822 =
|
||||
/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,
|
||||
obsOffsets = {
|
||||
UT: 0,
|
||||
GMT: 0,
|
||||
@@ -2356,12 +2369,13 @@
|
||||
allowTime,
|
||||
dateFormat,
|
||||
timeFormat,
|
||||
tzFormat;
|
||||
tzFormat,
|
||||
isoDatesLen = isoDates.length,
|
||||
isoTimesLen = isoTimes.length;
|
||||
|
||||
if (match) {
|
||||
getParsingFlags(config).iso = true;
|
||||
|
||||
for (i = 0, l = isoDates.length; i < l; i++) {
|
||||
for (i = 0, l = isoDatesLen; i < l; i++) {
|
||||
if (isoDates[i][1].exec(match[1])) {
|
||||
dateFormat = isoDates[i][0];
|
||||
allowTime = isoDates[i][2] !== false;
|
||||
@@ -2373,7 +2387,7 @@
|
||||
return;
|
||||
}
|
||||
if (match[3]) {
|
||||
for (i = 0, l = isoTimes.length; i < l; i++) {
|
||||
for (i = 0, l = isoTimesLen; i < l; i++) {
|
||||
if (isoTimes[i][1].exec(match[3])) {
|
||||
// match[2] should be 'T' or space
|
||||
timeFormat = (match[2] || ' ') + isoTimes[i][0];
|
||||
@@ -2440,7 +2454,7 @@
|
||||
function preprocessRFC2822(s) {
|
||||
// Remove comments and folding whitespace and replace multiple-spaces with a single space
|
||||
return s
|
||||
.replace(/\([^)]*\)|[\n\t]/g, ' ')
|
||||
.replace(/\([^()]*\)|[\n\t]/g, ' ')
|
||||
.replace(/(\s\s+)/g, ' ')
|
||||
.replace(/^\s\s*/, '')
|
||||
.replace(/\s\s*$/, '');
|
||||
@@ -2753,12 +2767,13 @@
|
||||
skipped,
|
||||
stringLength = string.length,
|
||||
totalParsedInputLength = 0,
|
||||
era;
|
||||
era,
|
||||
tokenLen;
|
||||
|
||||
tokens =
|
||||
expandFormat(config._f, config._locale).match(formattingTokens) || [];
|
||||
|
||||
for (i = 0; i < tokens.length; i++) {
|
||||
tokenLen = tokens.length;
|
||||
for (i = 0; i < tokenLen; i++) {
|
||||
token = tokens[i];
|
||||
parsedInput = (string.match(getParseRegexForToken(token, config)) ||
|
||||
[])[0];
|
||||
@@ -2853,15 +2868,16 @@
|
||||
i,
|
||||
currentScore,
|
||||
validFormatFound,
|
||||
bestFormatIsValid = false;
|
||||
bestFormatIsValid = false,
|
||||
configfLen = config._f.length;
|
||||
|
||||
if (config._f.length === 0) {
|
||||
if (configfLen === 0) {
|
||||
getParsingFlags(config).invalidFormat = true;
|
||||
config._d = new Date(NaN);
|
||||
return;
|
||||
}
|
||||
|
||||
for (i = 0; i < config._f.length; i++) {
|
||||
for (i = 0; i < configfLen; i++) {
|
||||
currentScore = 0;
|
||||
validFormatFound = false;
|
||||
tempConfig = copyConfig({}, config);
|
||||
@@ -3102,7 +3118,8 @@
|
||||
function isDurationValid(m) {
|
||||
var key,
|
||||
unitHasDecimal = false,
|
||||
i;
|
||||
i,
|
||||
orderLen = ordering.length;
|
||||
for (key in m) {
|
||||
if (
|
||||
hasOwnProp(m, key) &&
|
||||
@@ -3115,7 +3132,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
for (i = 0; i < ordering.length; ++i) {
|
||||
for (i = 0; i < orderLen; ++i) {
|
||||
if (m[ordering[i]]) {
|
||||
if (unitHasDecimal) {
|
||||
return false; // only allow non-integers for smallest unit
|
||||
@@ -3440,7 +3457,8 @@
|
||||
// from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html
|
||||
// somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere
|
||||
// and further modified to allow for strings containing both week and day
|
||||
isoRegex = /^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;
|
||||
isoRegex =
|
||||
/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;
|
||||
|
||||
function createDuration(input, key) {
|
||||
var duration = input,
|
||||
@@ -3661,9 +3679,10 @@
|
||||
'ms',
|
||||
],
|
||||
i,
|
||||
property;
|
||||
property,
|
||||
propertyLen = properties.length;
|
||||
|
||||
for (i = 0; i < properties.length; i += 1) {
|
||||
for (i = 0; i < propertyLen; i += 1) {
|
||||
property = properties[i];
|
||||
propertyTest = propertyTest || hasOwnProp(input, property);
|
||||
}
|
||||
@@ -4286,19 +4305,17 @@
|
||||
addRegexToken('NNNN', matchEraName);
|
||||
addRegexToken('NNNNN', matchEraNarrow);
|
||||
|
||||
addParseToken(['N', 'NN', 'NNN', 'NNNN', 'NNNNN'], function (
|
||||
input,
|
||||
array,
|
||||
config,
|
||||
token
|
||||
) {
|
||||
var era = config._locale.erasParse(input, token, config._strict);
|
||||
if (era) {
|
||||
getParsingFlags(config).era = era;
|
||||
} else {
|
||||
getParsingFlags(config).invalidEra = input;
|
||||
addParseToken(
|
||||
['N', 'NN', 'NNN', 'NNNN', 'NNNNN'],
|
||||
function (input, array, config, token) {
|
||||
var era = config._locale.erasParse(input, token, config._strict);
|
||||
if (era) {
|
||||
getParsingFlags(config).era = era;
|
||||
} else {
|
||||
getParsingFlags(config).invalidEra = input;
|
||||
}
|
||||
}
|
||||
});
|
||||
);
|
||||
|
||||
addRegexToken('y', matchUnsigned);
|
||||
addRegexToken('yy', matchUnsigned);
|
||||
@@ -4590,14 +4607,12 @@
|
||||
addRegexToken('GGGGG', match1to6, match6);
|
||||
addRegexToken('ggggg', match1to6, match6);
|
||||
|
||||
addWeekParseToken(['gggg', 'ggggg', 'GGGG', 'GGGGG'], function (
|
||||
input,
|
||||
week,
|
||||
config,
|
||||
token
|
||||
) {
|
||||
week[token.substr(0, 2)] = toInt(input);
|
||||
});
|
||||
addWeekParseToken(
|
||||
['gggg', 'ggggg', 'GGGG', 'GGGGG'],
|
||||
function (input, week, config, token) {
|
||||
week[token.substr(0, 2)] = toInt(input);
|
||||
}
|
||||
);
|
||||
|
||||
addWeekParseToken(['gg', 'GG'], function (input, week, config, token) {
|
||||
week[token] = hooks.parseTwoDigitYear(input);
|
||||
@@ -5620,7 +5635,7 @@
|
||||
|
||||
//! moment.js
|
||||
|
||||
hooks.version = '2.29.1';
|
||||
hooks.version = '2.29.4';
|
||||
|
||||
setHookCallback(createLocal);
|
||||
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -414,6 +414,10 @@
|
||||
<assemblyIdentity name="Microsoft.Web.Infrastructure" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
<system.webServer>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<package id="elmah.corelibrary" version="1.2.2" targetFramework="net462" />
|
||||
<package id="FontAwesome" version="4.7.0" targetFramework="net462" />
|
||||
<package id="jQuery" version="3.6.0" targetFramework="net462" />
|
||||
<package id="jQuery.UI.Combined" version="1.13.0" targetFramework="net462" />
|
||||
<package id="jQuery.UI.Combined" version="1.13.1" targetFramework="net462" />
|
||||
<package id="Microsoft.AspNet.FriendlyUrls" version="1.0.2" targetFramework="net462" />
|
||||
<package id="Microsoft.AspNet.FriendlyUrls.Core" version="1.0.2" targetFramework="net462" />
|
||||
<package id="Microsoft.AspNet.ScriptManager.MSAjax" version="5.0.0" targetFramework="net462" />
|
||||
@@ -29,7 +29,7 @@
|
||||
<package id="Microsoft.Web.Infrastructure" version="2.0.0" targetFramework="net462" />
|
||||
<package id="Microsoft.Web.RedisSessionStateProvider" version="4.0.1" targetFramework="net462" />
|
||||
<package id="Modernizr" version="2.8.3" targetFramework="net462" />
|
||||
<package id="Moment.js" version="2.29.1" targetFramework="net462" />
|
||||
<package id="Moment.js" version="2.29.4" targetFramework="net462" />
|
||||
<package id="MongoDB.Bson" version="2.16.1" targetFramework="net462" />
|
||||
<package id="MongoDB.Driver" version="2.16.1" targetFramework="net462" />
|
||||
<package id="MongoDB.Driver.Core" version="2.16.1" targetFramework="net462" />
|
||||
@@ -50,7 +50,7 @@
|
||||
<package id="System.Diagnostics.PerformanceCounter" version="6.0.1" targetFramework="net462" />
|
||||
<package id="System.IO.Compression" version="4.3.0" targetFramework="net462" />
|
||||
<package id="System.IO.Pipelines" version="6.0.3" targetFramework="net462" />
|
||||
<package id="System.Memory" version="4.5.4" targetFramework="net462" />
|
||||
<package id="System.Memory" version="4.5.5" targetFramework="net462" />
|
||||
<package id="System.Net.Http" version="4.3.4" targetFramework="net462" />
|
||||
<package id="System.Numerics.Vectors" version="4.5.0" targetFramework="net462" />
|
||||
<package id="System.Runtime.CompilerServices.Unsafe" version="6.0.0" targetFramework="net462" />
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<package id="System.Diagnostics.PerformanceCounter" version="6.0.1" targetFramework="net462" />
|
||||
<package id="System.IO.Compression" version="4.3.0" targetFramework="net462" />
|
||||
<package id="System.IO.Pipelines" version="6.0.3" targetFramework="net462" />
|
||||
<package id="System.Memory" version="4.5.4" targetFramework="net462" />
|
||||
<package id="System.Memory" version="4.5.5" targetFramework="net462" />
|
||||
<package id="System.Net.Http" version="4.3.4" targetFramework="net462" />
|
||||
<package id="System.Numerics.Vectors" version="4.5.0" targetFramework="net462" />
|
||||
<package id="System.Runtime.CompilerServices.Unsafe" version="6.0.0" targetFramework="net462" />
|
||||
|
||||
@@ -134,12 +134,12 @@
|
||||
<Reference Include="System.IO.Pipelines, Version=6.0.0.3, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.IO.Pipelines.6.0.3\lib\net461\System.IO.Pipelines.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Memory, Version=4.0.1.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Memory.4.5.5\lib\net461\System.Memory.dll</HintPath>
|
||||
</Reference>
|
||||
<!-- <Reference Include="System.IO.Compression, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.IO.Compression.4.3.0\lib\net46\System.IO.Compression.dll</HintPath>
|
||||
</Reference> -->
|
||||
<Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Memory.4.5.4\lib\net461\System.Memory.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Net.Http, Version=4.1.1.3, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Net.Http.4.3.4\lib\net46\System.Net.Http.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
@@ -549,8 +549,8 @@
|
||||
<Content Include="Scripts\jquery-3.6.0.min.js" />
|
||||
<Content Include="Scripts\jquery-3.6.0.slim.js" />
|
||||
<Content Include="Scripts\jquery-3.6.0.slim.min.js" />
|
||||
<Content Include="Scripts\jquery-ui-1.13.0.js" />
|
||||
<Content Include="Scripts\jquery-ui-1.13.0.min.js" />
|
||||
<Content Include="Scripts\jquery-ui-1.13.1.js" />
|
||||
<Content Include="Scripts\jquery-ui-1.13.1.min.js" />
|
||||
<Content Include="Scripts\moment-with-locales.js" />
|
||||
<Content Include="Scripts\moment-with-locales.min.js" />
|
||||
<Content Include="Scripts\moment.js" />
|
||||
@@ -733,10 +733,10 @@
|
||||
<Content Include="Scripts\popper.js.map" />
|
||||
<Content Include="Scripts\popper-utils.min.js.map" />
|
||||
<Content Include="Scripts\popper-utils.js.map" />
|
||||
<Content Include="Scripts\moment.min.js.map" />
|
||||
<Content Include="Scripts\moment-with-locales.min.js.map" />
|
||||
<Content Include="Scripts\jquery-3.6.0.slim.min.map" />
|
||||
<Content Include="Scripts\jquery-3.6.0.min.map" />
|
||||
<Content Include="Scripts\moment.min.js.map" />
|
||||
<Content Include="Scripts\moment-with-locales.min.js.map" />
|
||||
<None Include="Web.Debug.config">
|
||||
<DependentUpon>Web.config</DependentUpon>
|
||||
</None>
|
||||
|
||||
-6
File diff suppressed because one or more lines are too long
+163
-152
@@ -1,4 +1,4 @@
|
||||
/*! jQuery UI - v1.13.0 - 2021-10-07
|
||||
/*! jQuery UI - v1.13.1 - 2022-01-20
|
||||
* http://jqueryui.com
|
||||
* Includes: widget.js, position.js, data.js, disable-selection.js, effect.js, effects/effect-blind.js, effects/effect-bounce.js, effects/effect-clip.js, effects/effect-drop.js, effects/effect-explode.js, effects/effect-fade.js, effects/effect-fold.js, effects/effect-highlight.js, effects/effect-puff.js, effects/effect-pulsate.js, effects/effect-scale.js, effects/effect-shake.js, effects/effect-size.js, effects/effect-slide.js, effects/effect-transfer.js, focusable.js, form-reset-mixin.js, jquery-patch.js, keycode.js, labels.js, scroll-parent.js, tabbable.js, unique-id.js, widgets/accordion.js, widgets/autocomplete.js, widgets/button.js, widgets/checkboxradio.js, widgets/controlgroup.js, widgets/datepicker.js, widgets/dialog.js, widgets/draggable.js, widgets/droppable.js, widgets/menu.js, widgets/mouse.js, widgets/progressbar.js, widgets/resizable.js, widgets/selectable.js, widgets/selectmenu.js, widgets/slider.js, widgets/sortable.js, widgets/spinner.js, widgets/tabs.js, widgets/tooltip.js
|
||||
* Copyright jQuery Foundation and other contributors; Licensed MIT */
|
||||
@@ -20,11 +20,11 @@
|
||||
|
||||
$.ui = $.ui || {};
|
||||
|
||||
var version = $.ui.version = "1.13.0";
|
||||
var version = $.ui.version = "1.13.1";
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Widget 1.13.0
|
||||
* jQuery UI Widget 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -88,7 +88,7 @@ $.widget = function( name, base, prototype ) {
|
||||
constructor = $[ namespace ][ name ] = function( options, element ) {
|
||||
|
||||
// Allow instantiation without "new" keyword
|
||||
if ( !this._createWidget ) {
|
||||
if ( !this || !this._createWidget ) {
|
||||
return new constructor( options, element );
|
||||
}
|
||||
|
||||
@@ -510,6 +510,8 @@ $.Widget.prototype = {
|
||||
}, options );
|
||||
|
||||
function bindRemoveEvent() {
|
||||
var nodesToBind = [];
|
||||
|
||||
options.element.each( function( _, element ) {
|
||||
var isTracked = $.map( that.classesElementLookup, function( elements ) {
|
||||
return elements;
|
||||
@@ -519,11 +521,13 @@ $.Widget.prototype = {
|
||||
} );
|
||||
|
||||
if ( !isTracked ) {
|
||||
that._on( $( element ), {
|
||||
remove: "_untrackClassesElement"
|
||||
} );
|
||||
nodesToBind.push( element );
|
||||
}
|
||||
} );
|
||||
|
||||
that._on( $( nodesToBind ), {
|
||||
remove: "_untrackClassesElement"
|
||||
} );
|
||||
}
|
||||
|
||||
function processClassString( classes, checkOption ) {
|
||||
@@ -762,7 +766,7 @@ var widget = $.widget;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Position 1.13.0
|
||||
* jQuery UI Position 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -1259,7 +1263,7 @@ var position = $.ui.position;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI :data 1.13.0
|
||||
* jQuery UI :data 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -1288,7 +1292,7 @@ var data = $.extend( $.expr.pseudos, {
|
||||
} );
|
||||
|
||||
/*!
|
||||
* jQuery UI Disable Selection 1.13.0
|
||||
* jQuery UI Disable Selection 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -2043,7 +2047,7 @@ colors = jQuery.Color.names = {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects 1.13.0
|
||||
* jQuery UI Effects 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -2427,7 +2431,7 @@ if ( $.uiBackCompat !== false ) {
|
||||
}
|
||||
|
||||
$.extend( $.effects, {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
|
||||
define: function( name, mode, effect ) {
|
||||
if ( !effect ) {
|
||||
@@ -2995,7 +2999,7 @@ var effect = $.effects;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Blind 1.13.0
|
||||
* jQuery UI Effects Blind 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3050,7 +3054,7 @@ var effectsEffectBlind = $.effects.define( "blind", "hide", function( options, d
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Bounce 1.13.0
|
||||
* jQuery UI Effects Bounce 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3145,7 +3149,7 @@ var effectsEffectBounce = $.effects.define( "bounce", function( options, done )
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Clip 1.13.0
|
||||
* jQuery UI Effects Clip 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3195,7 +3199,7 @@ var effectsEffectClip = $.effects.define( "clip", "hide", function( options, don
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Drop 1.13.0
|
||||
* jQuery UI Effects Drop 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3249,7 +3253,7 @@ var effectsEffectDrop = $.effects.define( "drop", "hide", function( options, don
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Explode 1.13.0
|
||||
* jQuery UI Effects Explode 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3345,7 +3349,7 @@ var effectsEffectExplode = $.effects.define( "explode", "hide", function( option
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Fade 1.13.0
|
||||
* jQuery UI Effects Fade 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3377,7 +3381,7 @@ var effectsEffectFade = $.effects.define( "fade", "toggle", function( options, d
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Fold 1.13.0
|
||||
* jQuery UI Effects Fold 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3451,7 +3455,7 @@ var effectsEffectFold = $.effects.define( "fold", "hide", function( options, don
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Highlight 1.13.0
|
||||
* jQuery UI Effects Highlight 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3493,7 +3497,7 @@ var effectsEffectHighlight = $.effects.define( "highlight", "show", function( op
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Size 1.13.0
|
||||
* jQuery UI Effects Size 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3671,7 +3675,7 @@ var effectsEffectSize = $.effects.define( "size", function( options, done ) {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Scale 1.13.0
|
||||
* jQuery UI Effects Scale 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3711,7 +3715,7 @@ var effectsEffectScale = $.effects.define( "scale", function( options, done ) {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Puff 1.13.0
|
||||
* jQuery UI Effects Puff 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3737,7 +3741,7 @@ var effectsEffectPuff = $.effects.define( "puff", "hide", function( options, don
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Pulsate 1.13.0
|
||||
* jQuery UI Effects Pulsate 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3786,7 +3790,7 @@ var effectsEffectPulsate = $.effects.define( "pulsate", "show", function( option
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Shake 1.13.0
|
||||
* jQuery UI Effects Shake 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3845,7 +3849,7 @@ var effectsEffectShake = $.effects.define( "shake", function( options, done ) {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Slide 1.13.0
|
||||
* jQuery UI Effects Slide 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3906,7 +3910,7 @@ var effectsEffectSlide = $.effects.define( "slide", "show", function( options, d
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Effects Transfer 1.13.0
|
||||
* jQuery UI Effects Transfer 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -3931,7 +3935,7 @@ var effectsEffectTransfer = effect;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Focusable 1.13.0
|
||||
* jQuery UI Focusable 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4013,7 +4017,7 @@ var form = $.fn._form = function() {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Form Reset Mixin 1.13.0
|
||||
* jQuery UI Form Reset Mixin 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4075,7 +4079,7 @@ var formResetMixin = $.ui.formResetMixin = {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Support for jQuery core 1.8.x and newer 1.13.0
|
||||
* jQuery UI Support for jQuery core 1.8.x and newer 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4150,7 +4154,7 @@ if ( !$.fn.even || !$.fn.odd ) {
|
||||
|
||||
;
|
||||
/*!
|
||||
* jQuery UI Keycode 1.13.0
|
||||
* jQuery UI Keycode 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4185,7 +4189,7 @@ var keycode = $.ui.keyCode = {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Labels 1.13.0
|
||||
* jQuery UI Labels 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4240,7 +4244,7 @@ var labels = $.fn.labels = function() {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Scroll Parent 1.13.0
|
||||
* jQuery UI Scroll Parent 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4274,7 +4278,7 @@ var scrollParent = $.fn.scrollParent = function( includeHidden ) {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Tabbable 1.13.0
|
||||
* jQuery UI Tabbable 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4298,7 +4302,7 @@ var tabbable = $.extend( $.expr.pseudos, {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Unique ID 1.13.0
|
||||
* jQuery UI Unique ID 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4336,7 +4340,7 @@ var uniqueId = $.fn.extend( {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Accordion 1.13.0
|
||||
* jQuery UI Accordion 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4357,7 +4361,7 @@ var uniqueId = $.fn.extend( {
|
||||
|
||||
|
||||
var widgetsAccordion = $.widget( "ui.accordion", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
options: {
|
||||
active: 0,
|
||||
animate: {},
|
||||
@@ -4968,7 +4972,7 @@ var safeActiveElement = $.ui.safeActiveElement = function( document ) {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Menu 1.13.0
|
||||
* jQuery UI Menu 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -4987,7 +4991,7 @@ var safeActiveElement = $.ui.safeActiveElement = function( document ) {
|
||||
|
||||
|
||||
var widgetsMenu = $.widget( "ui.menu", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
defaultElement: "<ul>",
|
||||
delay: 300,
|
||||
options: {
|
||||
@@ -5659,7 +5663,7 @@ var widgetsMenu = $.widget( "ui.menu", {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Autocomplete 1.13.0
|
||||
* jQuery UI Autocomplete 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -5678,7 +5682,7 @@ var widgetsMenu = $.widget( "ui.menu", {
|
||||
|
||||
|
||||
$.widget( "ui.autocomplete", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
defaultElement: "<input>",
|
||||
options: {
|
||||
appendTo: null,
|
||||
@@ -5704,6 +5708,7 @@ $.widget( "ui.autocomplete", {
|
||||
|
||||
requestIndex: 0,
|
||||
pending: 0,
|
||||
liveRegionTimer: null,
|
||||
|
||||
_create: function() {
|
||||
|
||||
@@ -5905,8 +5910,10 @@ $.widget( "ui.autocomplete", {
|
||||
// Announce the value in the liveRegion
|
||||
label = ui.item.attr( "aria-label" ) || item.value;
|
||||
if ( label && String.prototype.trim.call( label ).length ) {
|
||||
this.liveRegion.children().hide();
|
||||
$( "<div>" ).text( label ).appendTo( this.liveRegion );
|
||||
clearTimeout( this.liveRegionTimer );
|
||||
this.liveRegionTimer = this._delay( function() {
|
||||
this.liveRegion.html( $( "<div>" ).text( label ) );
|
||||
}, 100 );
|
||||
}
|
||||
},
|
||||
menuselect: function( event, ui ) {
|
||||
@@ -6301,8 +6308,10 @@ $.widget( "ui.autocomplete", $.ui.autocomplete, {
|
||||
} else {
|
||||
message = this.options.messages.noResults;
|
||||
}
|
||||
this.liveRegion.children().hide();
|
||||
$( "<div>" ).text( message ).appendTo( this.liveRegion );
|
||||
clearTimeout( this.liveRegionTimer );
|
||||
this.liveRegionTimer = this._delay( function() {
|
||||
this.liveRegion.html( $( "<div>" ).text( message ) );
|
||||
}, 100 );
|
||||
}
|
||||
} );
|
||||
|
||||
@@ -6310,7 +6319,7 @@ var widgetsAutocomplete = $.ui.autocomplete;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Controlgroup 1.13.0
|
||||
* jQuery UI Controlgroup 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -6331,7 +6340,7 @@ var widgetsAutocomplete = $.ui.autocomplete;
|
||||
var controlgroupCornerRegex = /ui-corner-([a-z]){2,6}/g;
|
||||
|
||||
var widgetsControlgroup = $.widget( "ui.controlgroup", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
defaultElement: "<div>",
|
||||
options: {
|
||||
direction: "horizontal",
|
||||
@@ -6595,7 +6604,7 @@ var widgetsControlgroup = $.widget( "ui.controlgroup", {
|
||||
} );
|
||||
|
||||
/*!
|
||||
* jQuery UI Checkboxradio 1.13.0
|
||||
* jQuery UI Checkboxradio 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -6615,7 +6624,7 @@ var widgetsControlgroup = $.widget( "ui.controlgroup", {
|
||||
|
||||
|
||||
$.widget( "ui.checkboxradio", [ $.ui.formResetMixin, {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
options: {
|
||||
disabled: null,
|
||||
label: null,
|
||||
@@ -6861,7 +6870,7 @@ var widgetsCheckboxradio = $.ui.checkboxradio;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Button 1.13.0
|
||||
* jQuery UI Button 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -6880,7 +6889,7 @@ var widgetsCheckboxradio = $.ui.checkboxradio;
|
||||
|
||||
|
||||
$.widget( "ui.button", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
defaultElement: "<button>",
|
||||
options: {
|
||||
classes: {
|
||||
@@ -7287,7 +7296,7 @@ var widgetsButton = $.ui.button;
|
||||
|
||||
/* eslint-disable max-len, camelcase */
|
||||
/*!
|
||||
* jQuery UI Datepicker 1.13.0
|
||||
* jQuery UI Datepicker 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -7305,7 +7314,7 @@ var widgetsButton = $.ui.button;
|
||||
//>>css.theme: ../../themes/base/theme.css
|
||||
|
||||
|
||||
$.extend( $.ui, { datepicker: { version: "1.13.0" } } );
|
||||
$.extend( $.ui, { datepicker: { version: "1.13.1" } } );
|
||||
|
||||
var datepicker_instActive;
|
||||
|
||||
@@ -9502,7 +9511,7 @@ $.fn.datepicker = function( options ) {
|
||||
$.datepicker = new Datepicker(); // singleton instance
|
||||
$.datepicker.initialized = false;
|
||||
$.datepicker.uuid = new Date().getTime();
|
||||
$.datepicker.version = "1.13.0";
|
||||
$.datepicker.version = "1.13.1";
|
||||
|
||||
var widgetsDatepicker = $.datepicker;
|
||||
|
||||
@@ -9512,7 +9521,7 @@ var widgetsDatepicker = $.datepicker;
|
||||
var ie = $.ui.ie = !!/msie [\w.]+/.exec( navigator.userAgent.toLowerCase() );
|
||||
|
||||
/*!
|
||||
* jQuery UI Mouse 1.13.0
|
||||
* jQuery UI Mouse 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -9532,7 +9541,7 @@ $( document ).on( "mouseup", function() {
|
||||
} );
|
||||
|
||||
var widgetsMouse = $.widget( "ui.mouse", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
options: {
|
||||
cancel: "input, textarea, button, select, option",
|
||||
distance: 1,
|
||||
@@ -9774,7 +9783,7 @@ var safeBlur = $.ui.safeBlur = function( element ) {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Draggable 1.13.0
|
||||
* jQuery UI Draggable 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -9791,7 +9800,7 @@ var safeBlur = $.ui.safeBlur = function( element ) {
|
||||
|
||||
|
||||
$.widget( "ui.draggable", $.ui.mouse, {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
widgetEventPrefix: "drag",
|
||||
options: {
|
||||
addClasses: true,
|
||||
@@ -11009,7 +11018,7 @@ var widgetsDraggable = $.ui.draggable;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Resizable 1.13.0
|
||||
* jQuery UI Resizable 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -11028,7 +11037,7 @@ var widgetsDraggable = $.ui.draggable;
|
||||
|
||||
|
||||
$.widget( "ui.resizable", $.ui.mouse, {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
widgetEventPrefix: "resize",
|
||||
options: {
|
||||
alsoResize: false,
|
||||
@@ -12207,7 +12216,7 @@ var widgetsResizable = $.ui.resizable;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Dialog 1.13.0
|
||||
* jQuery UI Dialog 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -12226,7 +12235,7 @@ var widgetsResizable = $.ui.resizable;
|
||||
|
||||
|
||||
$.widget( "ui.dialog", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
options: {
|
||||
appendTo: "body",
|
||||
autoOpen: true,
|
||||
@@ -13132,7 +13141,7 @@ var widgetsDialog = $.ui.dialog;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Droppable 1.13.0
|
||||
* jQuery UI Droppable 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -13148,7 +13157,7 @@ var widgetsDialog = $.ui.dialog;
|
||||
|
||||
|
||||
$.widget( "ui.droppable", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
widgetEventPrefix: "drop",
|
||||
options: {
|
||||
accept: "*",
|
||||
@@ -13615,7 +13624,7 @@ var widgetsDroppable = $.ui.droppable;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Progressbar 1.13.0
|
||||
* jQuery UI Progressbar 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -13636,7 +13645,7 @@ var widgetsDroppable = $.ui.droppable;
|
||||
|
||||
|
||||
var widgetsProgressbar = $.widget( "ui.progressbar", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
options: {
|
||||
classes: {
|
||||
"ui-progressbar": "ui-corner-all",
|
||||
@@ -13778,7 +13787,7 @@ var widgetsProgressbar = $.widget( "ui.progressbar", {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Selectable 1.13.0
|
||||
* jQuery UI Selectable 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -13795,7 +13804,7 @@ var widgetsProgressbar = $.widget( "ui.progressbar", {
|
||||
|
||||
|
||||
var widgetsSelectable = $.widget( "ui.selectable", $.ui.mouse, {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
options: {
|
||||
appendTo: "body",
|
||||
autoRefresh: true,
|
||||
@@ -14076,7 +14085,7 @@ var widgetsSelectable = $.widget( "ui.selectable", $.ui.mouse, {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Selectmenu 1.13.0
|
||||
* jQuery UI Selectmenu 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -14097,7 +14106,7 @@ var widgetsSelectable = $.widget( "ui.selectable", $.ui.mouse, {
|
||||
|
||||
|
||||
var widgetsSelectmenu = $.widget( "ui.selectmenu", [ $.ui.formResetMixin, {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
defaultElement: "<select>",
|
||||
options: {
|
||||
appendTo: null,
|
||||
@@ -14745,7 +14754,7 @@ var widgetsSelectmenu = $.widget( "ui.selectmenu", [ $.ui.formResetMixin, {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Slider 1.13.0
|
||||
* jQuery UI Slider 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -14764,7 +14773,7 @@ var widgetsSelectmenu = $.widget( "ui.selectmenu", [ $.ui.formResetMixin, {
|
||||
|
||||
|
||||
var widgetsSlider = $.widget( "ui.slider", $.ui.mouse, {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
widgetEventPrefix: "slide",
|
||||
|
||||
options: {
|
||||
@@ -15480,7 +15489,7 @@ var widgetsSlider = $.widget( "ui.slider", $.ui.mouse, {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Sortable 1.13.0
|
||||
* jQuery UI Sortable 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -15497,7 +15506,7 @@ var widgetsSlider = $.widget( "ui.slider", $.ui.mouse, {
|
||||
|
||||
|
||||
var widgetsSortable = $.widget( "ui.sortable", $.ui.mouse, {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
widgetEventPrefix: "sort",
|
||||
ready: false,
|
||||
options: {
|
||||
@@ -15880,79 +15889,76 @@ var widgetsSortable = $.widget( "ui.sortable", $.ui.mouse, {
|
||||
this.helper[ 0 ].style.top = this.position.top + "px";
|
||||
}
|
||||
|
||||
//Post events to containers
|
||||
this._contactContainers( event );
|
||||
//Do scrolling
|
||||
if ( o.scroll ) {
|
||||
if ( this._scroll( event ) !== false ) {
|
||||
|
||||
if ( this.innermostContainer !== null ) {
|
||||
//Update item positions used in position checks
|
||||
this._refreshItemPositions( true );
|
||||
|
||||
//Do scrolling
|
||||
if ( o.scroll ) {
|
||||
if ( this._scroll( event ) !== false ) {
|
||||
|
||||
//Update item positions used in position checks
|
||||
this._refreshItemPositions( true );
|
||||
|
||||
if ( $.ui.ddmanager && !o.dropBehaviour ) {
|
||||
$.ui.ddmanager.prepareOffsets( this, event );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
this.dragDirection = {
|
||||
vertical: this._getDragVerticalDirection(),
|
||||
horizontal: this._getDragHorizontalDirection()
|
||||
};
|
||||
|
||||
//Rearrange
|
||||
for ( i = this.items.length - 1; i >= 0; i-- ) {
|
||||
|
||||
//Cache variables and intersection, continue if no intersection
|
||||
item = this.items[ i ];
|
||||
itemElement = item.item[ 0 ];
|
||||
intersection = this._intersectsWithPointer( item );
|
||||
if ( !intersection ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Only put the placeholder inside the current Container, skip all
|
||||
// items from other containers. This works because when moving
|
||||
// an item from one container to another the
|
||||
// currentContainer is switched before the placeholder is moved.
|
||||
//
|
||||
// Without this, moving items in "sub-sortables" can cause
|
||||
// the placeholder to jitter between the outer and inner container.
|
||||
if ( item.instance !== this.currentContainer ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Cannot intersect with itself
|
||||
// no useless actions that have been done before
|
||||
// no action if the item moved is the parent of the item checked
|
||||
if ( itemElement !== this.currentItem[ 0 ] &&
|
||||
this.placeholder[ intersection === 1 ?
|
||||
"next" : "prev" ]()[ 0 ] !== itemElement &&
|
||||
!$.contains( this.placeholder[ 0 ], itemElement ) &&
|
||||
( this.options.type === "semi-dynamic" ?
|
||||
!$.contains( this.element[ 0 ], itemElement ) :
|
||||
true
|
||||
)
|
||||
) {
|
||||
|
||||
this.direction = intersection === 1 ? "down" : "up";
|
||||
|
||||
if ( this.options.tolerance === "pointer" ||
|
||||
this._intersectsWithSides( item ) ) {
|
||||
this._rearrange( event, item );
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
|
||||
this._trigger( "change", event, this._uiHash() );
|
||||
break;
|
||||
if ( $.ui.ddmanager && !o.dropBehaviour ) {
|
||||
$.ui.ddmanager.prepareOffsets( this, event );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
this.dragDirection = {
|
||||
vertical: this._getDragVerticalDirection(),
|
||||
horizontal: this._getDragHorizontalDirection()
|
||||
};
|
||||
|
||||
//Rearrange
|
||||
for ( i = this.items.length - 1; i >= 0; i-- ) {
|
||||
|
||||
//Cache variables and intersection, continue if no intersection
|
||||
item = this.items[ i ];
|
||||
itemElement = item.item[ 0 ];
|
||||
intersection = this._intersectsWithPointer( item );
|
||||
if ( !intersection ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Only put the placeholder inside the current Container, skip all
|
||||
// items from other containers. This works because when moving
|
||||
// an item from one container to another the
|
||||
// currentContainer is switched before the placeholder is moved.
|
||||
//
|
||||
// Without this, moving items in "sub-sortables" can cause
|
||||
// the placeholder to jitter between the outer and inner container.
|
||||
if ( item.instance !== this.currentContainer ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Cannot intersect with itself
|
||||
// no useless actions that have been done before
|
||||
// no action if the item moved is the parent of the item checked
|
||||
if ( itemElement !== this.currentItem[ 0 ] &&
|
||||
this.placeholder[ intersection === 1 ?
|
||||
"next" : "prev" ]()[ 0 ] !== itemElement &&
|
||||
!$.contains( this.placeholder[ 0 ], itemElement ) &&
|
||||
( this.options.type === "semi-dynamic" ?
|
||||
!$.contains( this.element[ 0 ], itemElement ) :
|
||||
true
|
||||
)
|
||||
) {
|
||||
|
||||
this.direction = intersection === 1 ? "down" : "up";
|
||||
|
||||
if ( this.options.tolerance === "pointer" ||
|
||||
this._intersectsWithSides( item ) ) {
|
||||
this._rearrange( event, item );
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
|
||||
this._trigger( "change", event, this._uiHash() );
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
//Post events to containers
|
||||
this._contactContainers( event );
|
||||
|
||||
//Interconnect with droppables
|
||||
if ( $.ui.ddmanager ) {
|
||||
$.ui.ddmanager.drag( this, event );
|
||||
@@ -16347,10 +16353,14 @@ var widgetsSortable = $.widget( "ui.sortable", $.ui.mouse, {
|
||||
this.options.axis === "x" || this._isFloating( this.items[ 0 ].item ) :
|
||||
false;
|
||||
|
||||
if ( this.innermostContainer !== null ) {
|
||||
this._refreshItemPositions( fast );
|
||||
// This has to be redone because due to the item being moved out/into the offsetParent,
|
||||
// the offsetParent's position will change
|
||||
if ( this.offsetParent && this.helper ) {
|
||||
this.offset.parent = this._getParentOffset();
|
||||
}
|
||||
|
||||
this._refreshItemPositions( fast );
|
||||
|
||||
var i, p;
|
||||
|
||||
if ( this.options.custom && this.options.custom.refreshContainers ) {
|
||||
@@ -16497,8 +16507,6 @@ var widgetsSortable = $.widget( "ui.sortable", $.ui.mouse, {
|
||||
|
||||
}
|
||||
|
||||
this.innermostContainer = innermostContainer;
|
||||
|
||||
// If no intersecting containers found, return
|
||||
if ( !innermostContainer ) {
|
||||
return;
|
||||
@@ -17074,7 +17082,7 @@ var widgetsSortable = $.widget( "ui.sortable", $.ui.mouse, {
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Spinner 1.13.0
|
||||
* jQuery UI Spinner 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -17104,7 +17112,7 @@ function spinnerModifier( fn ) {
|
||||
}
|
||||
|
||||
$.widget( "ui.spinner", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
defaultElement: "<input>",
|
||||
widgetEventPrefix: "spin",
|
||||
options: {
|
||||
@@ -17635,7 +17643,7 @@ var widgetsSpinner = $.ui.spinner;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Tabs 1.13.0
|
||||
* jQuery UI Tabs 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -17654,7 +17662,7 @@ var widgetsSpinner = $.ui.spinner;
|
||||
|
||||
|
||||
$.widget( "ui.tabs", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
delay: 300,
|
||||
options: {
|
||||
active: null,
|
||||
@@ -18539,7 +18547,7 @@ var widgetsTabs = $.ui.tabs;
|
||||
|
||||
|
||||
/*!
|
||||
* jQuery UI Tooltip 1.13.0
|
||||
* jQuery UI Tooltip 1.13.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
@@ -18558,7 +18566,7 @@ var widgetsTabs = $.ui.tabs;
|
||||
|
||||
|
||||
$.widget( "ui.tooltip", {
|
||||
version: "1.13.0",
|
||||
version: "1.13.1",
|
||||
options: {
|
||||
classes: {
|
||||
"ui-tooltip": "ui-corner-all ui-widget-shadow"
|
||||
@@ -18871,7 +18879,10 @@ $.widget( "ui.tooltip", {
|
||||
// tooltips will handle this in destroy.
|
||||
if ( target[ 0 ] !== this.element[ 0 ] ) {
|
||||
events.remove = function() {
|
||||
this._removeTooltip( this._find( target ).tooltip );
|
||||
var targetElement = this._find( target );
|
||||
if ( targetElement ) {
|
||||
this._removeTooltip( targetElement.tooltip );
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
+6
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
+1
-1
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+96
-81
@@ -1,5 +1,5 @@
|
||||
//! moment.js
|
||||
//! version : 2.29.1
|
||||
//! version : 2.29.4
|
||||
//! authors : Tim Wood, Iskren Chernev, Moment.js contributors
|
||||
//! license : MIT
|
||||
//! momentjs.com
|
||||
@@ -76,8 +76,9 @@
|
||||
|
||||
function map(arr, fn) {
|
||||
var res = [],
|
||||
i;
|
||||
for (i = 0; i < arr.length; ++i) {
|
||||
i,
|
||||
arrLen = arr.length;
|
||||
for (i = 0; i < arrLen; ++i) {
|
||||
res.push(fn(arr[i], i));
|
||||
}
|
||||
return res;
|
||||
@@ -206,7 +207,10 @@
|
||||
updateInProgress = false;
|
||||
|
||||
function copyConfig(to, from) {
|
||||
var i, prop, val;
|
||||
var i,
|
||||
prop,
|
||||
val,
|
||||
momentPropertiesLen = momentProperties.length;
|
||||
|
||||
if (!isUndefined(from._isAMomentObject)) {
|
||||
to._isAMomentObject = from._isAMomentObject;
|
||||
@@ -239,8 +243,8 @@
|
||||
to._locale = from._locale;
|
||||
}
|
||||
|
||||
if (momentProperties.length > 0) {
|
||||
for (i = 0; i < momentProperties.length; i++) {
|
||||
if (momentPropertiesLen > 0) {
|
||||
for (i = 0; i < momentPropertiesLen; i++) {
|
||||
prop = momentProperties[i];
|
||||
val = from[prop];
|
||||
if (!isUndefined(val)) {
|
||||
@@ -295,8 +299,9 @@
|
||||
var args = [],
|
||||
arg,
|
||||
i,
|
||||
key;
|
||||
for (i = 0; i < arguments.length; i++) {
|
||||
key,
|
||||
argLen = arguments.length;
|
||||
for (i = 0; i < argLen; i++) {
|
||||
arg = '';
|
||||
if (typeof arguments[i] === 'object') {
|
||||
arg += '\n[' + i + '] ';
|
||||
@@ -446,7 +451,8 @@
|
||||
);
|
||||
}
|
||||
|
||||
var formattingTokens = /(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,
|
||||
var formattingTokens =
|
||||
/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,
|
||||
localFormattingTokens = /(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,
|
||||
formatFunctions = {},
|
||||
formatTokenFunctions = {};
|
||||
@@ -750,8 +756,9 @@
|
||||
if (typeof units === 'object') {
|
||||
units = normalizeObjectUnits(units);
|
||||
var prioritized = getPrioritizedUnits(units),
|
||||
i;
|
||||
for (i = 0; i < prioritized.length; i++) {
|
||||
i,
|
||||
prioritizedLen = prioritized.length;
|
||||
for (i = 0; i < prioritizedLen; i++) {
|
||||
this[prioritized[i].unit](units[prioritized[i].unit]);
|
||||
}
|
||||
} else {
|
||||
@@ -781,7 +788,8 @@
|
||||
matchTimestamp = /[+-]?\d+(\.\d{1,3})?/, // 123456789 123456789.123
|
||||
// any word (or two) characters or numbers including two/three word month in arabic.
|
||||
// includes scottish gaelic two word and hyphenated months
|
||||
matchWord = /[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,
|
||||
matchWord =
|
||||
/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,
|
||||
regexes;
|
||||
|
||||
regexes = {};
|
||||
@@ -807,15 +815,12 @@
|
||||
return regexEscape(
|
||||
s
|
||||
.replace('\\', '')
|
||||
.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (
|
||||
matched,
|
||||
p1,
|
||||
p2,
|
||||
p3,
|
||||
p4
|
||||
) {
|
||||
return p1 || p2 || p3 || p4;
|
||||
})
|
||||
.replace(
|
||||
/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,
|
||||
function (matched, p1, p2, p3, p4) {
|
||||
return p1 || p2 || p3 || p4;
|
||||
}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
@@ -827,7 +832,8 @@
|
||||
|
||||
function addParseToken(token, callback) {
|
||||
var i,
|
||||
func = callback;
|
||||
func = callback,
|
||||
tokenLen;
|
||||
if (typeof token === 'string') {
|
||||
token = [token];
|
||||
}
|
||||
@@ -836,7 +842,8 @@
|
||||
array[callback] = toInt(input);
|
||||
};
|
||||
}
|
||||
for (i = 0; i < token.length; i++) {
|
||||
tokenLen = token.length;
|
||||
for (i = 0; i < tokenLen; i++) {
|
||||
tokens[token[i]] = func;
|
||||
}
|
||||
}
|
||||
@@ -947,12 +954,12 @@
|
||||
|
||||
// LOCALES
|
||||
|
||||
var defaultLocaleMonths = 'January_February_March_April_May_June_July_August_September_October_November_December'.split(
|
||||
'_'
|
||||
),
|
||||
defaultLocaleMonthsShort = 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split(
|
||||
'_'
|
||||
),
|
||||
var defaultLocaleMonths =
|
||||
'January_February_March_April_May_June_July_August_September_October_November_December'.split(
|
||||
'_'
|
||||
),
|
||||
defaultLocaleMonthsShort =
|
||||
'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
|
||||
MONTHS_IN_FORMAT = /D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/,
|
||||
defaultMonthsShortRegex = matchWord,
|
||||
defaultMonthsRegex = matchWord;
|
||||
@@ -1394,14 +1401,12 @@
|
||||
addRegexToken('W', match1to2);
|
||||
addRegexToken('WW', match1to2, match2);
|
||||
|
||||
addWeekParseToken(['w', 'ww', 'W', 'WW'], function (
|
||||
input,
|
||||
week,
|
||||
config,
|
||||
token
|
||||
) {
|
||||
week[token.substr(0, 1)] = toInt(input);
|
||||
});
|
||||
addWeekParseToken(
|
||||
['w', 'ww', 'W', 'WW'],
|
||||
function (input, week, config, token) {
|
||||
week[token.substr(0, 1)] = toInt(input);
|
||||
}
|
||||
);
|
||||
|
||||
// HELPERS
|
||||
|
||||
@@ -1526,9 +1531,8 @@
|
||||
return ws.slice(n, 7).concat(ws.slice(0, n));
|
||||
}
|
||||
|
||||
var defaultLocaleWeekdays = 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split(
|
||||
'_'
|
||||
),
|
||||
var defaultLocaleWeekdays =
|
||||
'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
|
||||
defaultLocaleWeekdaysShort = 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
|
||||
defaultLocaleWeekdaysMin = 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
|
||||
defaultWeekdaysRegex = matchWord,
|
||||
@@ -2076,6 +2080,11 @@
|
||||
return globalLocale;
|
||||
}
|
||||
|
||||
function isLocaleNameSane(name) {
|
||||
// Prevent names that look like filesystem paths, i.e contain '/' or '\'
|
||||
return name.match('^[^/\\\\]*$') != null;
|
||||
}
|
||||
|
||||
function loadLocale(name) {
|
||||
var oldLocale = null,
|
||||
aliasedRequire;
|
||||
@@ -2084,7 +2093,8 @@
|
||||
locales[name] === undefined &&
|
||||
typeof module !== 'undefined' &&
|
||||
module &&
|
||||
module.exports
|
||||
module.exports &&
|
||||
isLocaleNameSane(name)
|
||||
) {
|
||||
try {
|
||||
oldLocale = globalLocale._abbr;
|
||||
@@ -2301,8 +2311,10 @@
|
||||
|
||||
// iso 8601 regex
|
||||
// 0000-00-00 0000-W00 or 0000-W00-0 + T + 00 or 00:00 or 00:00:00 or 00:00:00.000 + +00:00 or +0000 or +00)
|
||||
var extendedIsoRegex = /^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,
|
||||
basicIsoRegex = /^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,
|
||||
var extendedIsoRegex =
|
||||
/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,
|
||||
basicIsoRegex =
|
||||
/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,
|
||||
tzRegex = /Z|[+-]\d\d(?::?\d\d)?/,
|
||||
isoDates = [
|
||||
['YYYYYY-MM-DD', /[+-]\d{6}-\d\d-\d\d/],
|
||||
@@ -2333,7 +2345,8 @@
|
||||
],
|
||||
aspNetJsonRegex = /^\/?Date\((-?\d+)/i,
|
||||
// RFC 2822 regex: For details see https://tools.ietf.org/html/rfc2822#section-3.3
|
||||
rfc2822 = /^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,
|
||||
rfc2822 =
|
||||
/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,
|
||||
obsOffsets = {
|
||||
UT: 0,
|
||||
GMT: 0,
|
||||
@@ -2356,12 +2369,13 @@
|
||||
allowTime,
|
||||
dateFormat,
|
||||
timeFormat,
|
||||
tzFormat;
|
||||
tzFormat,
|
||||
isoDatesLen = isoDates.length,
|
||||
isoTimesLen = isoTimes.length;
|
||||
|
||||
if (match) {
|
||||
getParsingFlags(config).iso = true;
|
||||
|
||||
for (i = 0, l = isoDates.length; i < l; i++) {
|
||||
for (i = 0, l = isoDatesLen; i < l; i++) {
|
||||
if (isoDates[i][1].exec(match[1])) {
|
||||
dateFormat = isoDates[i][0];
|
||||
allowTime = isoDates[i][2] !== false;
|
||||
@@ -2373,7 +2387,7 @@
|
||||
return;
|
||||
}
|
||||
if (match[3]) {
|
||||
for (i = 0, l = isoTimes.length; i < l; i++) {
|
||||
for (i = 0, l = isoTimesLen; i < l; i++) {
|
||||
if (isoTimes[i][1].exec(match[3])) {
|
||||
// match[2] should be 'T' or space
|
||||
timeFormat = (match[2] || ' ') + isoTimes[i][0];
|
||||
@@ -2440,7 +2454,7 @@
|
||||
function preprocessRFC2822(s) {
|
||||
// Remove comments and folding whitespace and replace multiple-spaces with a single space
|
||||
return s
|
||||
.replace(/\([^)]*\)|[\n\t]/g, ' ')
|
||||
.replace(/\([^()]*\)|[\n\t]/g, ' ')
|
||||
.replace(/(\s\s+)/g, ' ')
|
||||
.replace(/^\s\s*/, '')
|
||||
.replace(/\s\s*$/, '');
|
||||
@@ -2753,12 +2767,13 @@
|
||||
skipped,
|
||||
stringLength = string.length,
|
||||
totalParsedInputLength = 0,
|
||||
era;
|
||||
era,
|
||||
tokenLen;
|
||||
|
||||
tokens =
|
||||
expandFormat(config._f, config._locale).match(formattingTokens) || [];
|
||||
|
||||
for (i = 0; i < tokens.length; i++) {
|
||||
tokenLen = tokens.length;
|
||||
for (i = 0; i < tokenLen; i++) {
|
||||
token = tokens[i];
|
||||
parsedInput = (string.match(getParseRegexForToken(token, config)) ||
|
||||
[])[0];
|
||||
@@ -2853,15 +2868,16 @@
|
||||
i,
|
||||
currentScore,
|
||||
validFormatFound,
|
||||
bestFormatIsValid = false;
|
||||
bestFormatIsValid = false,
|
||||
configfLen = config._f.length;
|
||||
|
||||
if (config._f.length === 0) {
|
||||
if (configfLen === 0) {
|
||||
getParsingFlags(config).invalidFormat = true;
|
||||
config._d = new Date(NaN);
|
||||
return;
|
||||
}
|
||||
|
||||
for (i = 0; i < config._f.length; i++) {
|
||||
for (i = 0; i < configfLen; i++) {
|
||||
currentScore = 0;
|
||||
validFormatFound = false;
|
||||
tempConfig = copyConfig({}, config);
|
||||
@@ -3102,7 +3118,8 @@
|
||||
function isDurationValid(m) {
|
||||
var key,
|
||||
unitHasDecimal = false,
|
||||
i;
|
||||
i,
|
||||
orderLen = ordering.length;
|
||||
for (key in m) {
|
||||
if (
|
||||
hasOwnProp(m, key) &&
|
||||
@@ -3115,7 +3132,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
for (i = 0; i < ordering.length; ++i) {
|
||||
for (i = 0; i < orderLen; ++i) {
|
||||
if (m[ordering[i]]) {
|
||||
if (unitHasDecimal) {
|
||||
return false; // only allow non-integers for smallest unit
|
||||
@@ -3440,7 +3457,8 @@
|
||||
// from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html
|
||||
// somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere
|
||||
// and further modified to allow for strings containing both week and day
|
||||
isoRegex = /^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;
|
||||
isoRegex =
|
||||
/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;
|
||||
|
||||
function createDuration(input, key) {
|
||||
var duration = input,
|
||||
@@ -3661,9 +3679,10 @@
|
||||
'ms',
|
||||
],
|
||||
i,
|
||||
property;
|
||||
property,
|
||||
propertyLen = properties.length;
|
||||
|
||||
for (i = 0; i < properties.length; i += 1) {
|
||||
for (i = 0; i < propertyLen; i += 1) {
|
||||
property = properties[i];
|
||||
propertyTest = propertyTest || hasOwnProp(input, property);
|
||||
}
|
||||
@@ -4286,19 +4305,17 @@
|
||||
addRegexToken('NNNN', matchEraName);
|
||||
addRegexToken('NNNNN', matchEraNarrow);
|
||||
|
||||
addParseToken(['N', 'NN', 'NNN', 'NNNN', 'NNNNN'], function (
|
||||
input,
|
||||
array,
|
||||
config,
|
||||
token
|
||||
) {
|
||||
var era = config._locale.erasParse(input, token, config._strict);
|
||||
if (era) {
|
||||
getParsingFlags(config).era = era;
|
||||
} else {
|
||||
getParsingFlags(config).invalidEra = input;
|
||||
addParseToken(
|
||||
['N', 'NN', 'NNN', 'NNNN', 'NNNNN'],
|
||||
function (input, array, config, token) {
|
||||
var era = config._locale.erasParse(input, token, config._strict);
|
||||
if (era) {
|
||||
getParsingFlags(config).era = era;
|
||||
} else {
|
||||
getParsingFlags(config).invalidEra = input;
|
||||
}
|
||||
}
|
||||
});
|
||||
);
|
||||
|
||||
addRegexToken('y', matchUnsigned);
|
||||
addRegexToken('yy', matchUnsigned);
|
||||
@@ -4590,14 +4607,12 @@
|
||||
addRegexToken('GGGGG', match1to6, match6);
|
||||
addRegexToken('ggggg', match1to6, match6);
|
||||
|
||||
addWeekParseToken(['gggg', 'ggggg', 'GGGG', 'GGGGG'], function (
|
||||
input,
|
||||
week,
|
||||
config,
|
||||
token
|
||||
) {
|
||||
week[token.substr(0, 2)] = toInt(input);
|
||||
});
|
||||
addWeekParseToken(
|
||||
['gggg', 'ggggg', 'GGGG', 'GGGGG'],
|
||||
function (input, week, config, token) {
|
||||
week[token.substr(0, 2)] = toInt(input);
|
||||
}
|
||||
);
|
||||
|
||||
addWeekParseToken(['gg', 'GG'], function (input, week, config, token) {
|
||||
week[token] = hooks.parseTwoDigitYear(input);
|
||||
@@ -5620,7 +5635,7 @@
|
||||
|
||||
//! moment.js
|
||||
|
||||
hooks.version = '2.29.1';
|
||||
hooks.version = '2.29.4';
|
||||
|
||||
setHookCallback(createLocal);
|
||||
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -406,6 +406,10 @@
|
||||
<assemblyIdentity name="Microsoft.Web.Infrastructure" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
<system.webServer>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<package id="FontAwesome" version="4.7.0" targetFramework="net462" />
|
||||
<package id="jQuery" version="3.6.0" targetFramework="net462" />
|
||||
<package id="jquery.mobile" version="1.4.5" targetFramework="net462" />
|
||||
<package id="jQuery.UI.Combined" version="1.13.0" targetFramework="net462" />
|
||||
<package id="jQuery.UI.Combined" version="1.13.1" targetFramework="net462" />
|
||||
<package id="Microsoft.AspNet.FriendlyUrls" version="1.0.2" targetFramework="net462" />
|
||||
<package id="Microsoft.AspNet.FriendlyUrls.Core" version="1.0.2" targetFramework="net462" />
|
||||
<package id="Microsoft.AspNet.ScriptManager.MSAjax" version="5.0.0" targetFramework="net462" />
|
||||
@@ -33,7 +33,7 @@
|
||||
<package id="Microsoft.Web.Infrastructure" version="2.0.0" targetFramework="net462" />
|
||||
<package id="Microsoft.Web.RedisSessionStateProvider" version="4.0.1" targetFramework="net462" />
|
||||
<package id="Modernizr" version="2.8.3" targetFramework="net462" />
|
||||
<package id="Moment.js" version="2.29.1" targetFramework="net462" />
|
||||
<package id="Moment.js" version="2.29.4" targetFramework="net462" />
|
||||
<package id="MongoDB.Bson" version="2.16.1" targetFramework="net462" />
|
||||
<package id="MongoDB.Driver" version="2.16.1" targetFramework="net462" />
|
||||
<package id="MongoDB.Driver.Core" version="2.16.1" targetFramework="net462" />
|
||||
@@ -54,7 +54,7 @@
|
||||
<package id="System.Diagnostics.PerformanceCounter" version="6.0.1" targetFramework="net462" />
|
||||
<package id="System.IO.Compression" version="4.3.0" targetFramework="net462" />
|
||||
<package id="System.IO.Pipelines" version="6.0.3" targetFramework="net462" />
|
||||
<package id="System.Memory" version="4.5.4" targetFramework="net462" />
|
||||
<package id="System.Memory" version="4.5.5" targetFramework="net462" />
|
||||
<package id="System.Net.Http" version="4.3.4" targetFramework="net462" />
|
||||
<package id="System.Numerics.Vectors" version="4.5.0" targetFramework="net462" />
|
||||
<package id="System.Runtime.CompilerServices.Unsafe" version="6.0.0" targetFramework="net462" />
|
||||
|
||||
@@ -43,6 +43,10 @@
|
||||
<assemblyIdentity name="NLog" publicKeyToken="5120e14c03d0593c" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
</configuration>
|
||||
@@ -108,12 +108,12 @@
|
||||
<Reference Include="System.IO.Pipelines, Version=6.0.0.3, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.IO.Pipelines.6.0.3\lib\net461\System.IO.Pipelines.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Memory, Version=4.0.1.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Memory.4.5.5\lib\net461\System.Memory.dll</HintPath>
|
||||
</Reference>
|
||||
<!-- <Reference Include="System.IO.Compression, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.IO.Compression.4.3.0\lib\net46\System.IO.Compression.dll</HintPath>
|
||||
</Reference> -->
|
||||
<Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Memory.4.5.4\lib\net461\System.Memory.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Net.Http, Version=4.1.1.3, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Net.Http.4.3.4\lib\net46\System.Net.Http.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
|
||||
Reference in New Issue
Block a user