Make WordPress Core

Changeset 58218


Ignore:
Timestamp:
05/27/2024 09:12:08 PM (10 months ago)
Author:
audrasjb
Message:

External Libraries: Update the jQuery UI library to version 1.13.3.

For more information on the changes included, see https://blog.jqueryui.com/2024/04/jquery-ui-1-13-3-released/.

Props audrasjb, desrosj, khokansardar, swissspidy.
Fixes #61090.

Location:
trunk/src
Files:
38 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/js/_enqueues/vendor/jquery/ui/accordion.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Accordion 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Accordion 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1313//>>description: Displays collapsible content panels for presenting information in a limited amount of space.
    1414/* eslint-enable max-len */
    15 //>>docs: http://api.jqueryui.com/accordion/
    16 //>>demos: http://jqueryui.com/accordion/
     15//>>docs: https://api.jqueryui.com/accordion/
     16//>>demos: https://jqueryui.com/accordion/
    1717//>>css.structure: ../../themes/base/core.css
    1818//>>css.structure: ../../themes/base/accordion.css
     
    2727        define( [
    2828            "jquery",
    29             "./core"
     29            "../version",
     30            "../keycode",
     31            "../unique-id",
     32            "../widget"
    3033        ], factory );
    3134    } else {
     
    3841
    3942return $.widget( "ui.accordion", {
    40     version: "1.13.2",
     43    version: "1.13.3",
    4144    options: {
    4245        active: 0,
  • trunk/src/js/_enqueues/vendor/jquery/ui/autocomplete.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Autocomplete 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Autocomplete 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Widgets
    1212//>>description: Lists suggested words as the user is typing.
    13 //>>docs: http://api.jqueryui.com/autocomplete/
    14 //>>demos: http://jqueryui.com/autocomplete/
     13//>>docs: https://api.jqueryui.com/autocomplete/
     14//>>demos: https://jqueryui.com/autocomplete/
    1515//>>css.structure: ../../themes/base/core.css
    1616//>>css.structure: ../../themes/base/autocomplete.css
     
    2626            "jquery",
    2727            "./menu",
    28             "./core"
     28            "../keycode",
     29            "../position",
     30            "../safe-active-element",
     31            "../version",
     32            "../widget"
    2933        ], factory );
    3034    } else {
     
    3741
    3842$.widget( "ui.autocomplete", {
    39     version: "1.13.2",
     43    version: "1.13.3",
    4044    defaultElement: "<input>",
    4145    options: {
  • trunk/src/js/_enqueues/vendor/jquery/ui/button.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Button 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Button 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Widgets
    1212//>>description: Enhances a form with themeable buttons.
    13 //>>docs: http://api.jqueryui.com/button/
    14 //>>demos: http://jqueryui.com/button/
     13//>>docs: https://api.jqueryui.com/button/
     14//>>demos: https://jqueryui.com/button/
    1515//>>css.structure: ../../themes/base/core.css
    1616//>>css.structure: ../../themes/base/button.css
     
    3131            "./checkboxradio",
    3232
    33             "./core"
     33            "../keycode",
     34            "../widget"
    3435        ], factory );
    3536    } else {
     
    4243
    4344$.widget( "ui.button", {
    44     version: "1.13.2",
     45    version: "1.13.3",
    4546    defaultElement: "<button>",
    4647    options: {
  • trunk/src/js/_enqueues/vendor/jquery/ui/checkboxradio.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Checkboxradio 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Checkboxradio 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Widgets
    1212//>>description: Enhances a form with multiple themeable checkboxes or radio buttons.
    13 //>>docs: http://api.jqueryui.com/checkboxradio/
    14 //>>demos: http://jqueryui.com/checkboxradio/
     13//>>docs: https://api.jqueryui.com/checkboxradio/
     14//>>demos: https://jqueryui.com/checkboxradio/
    1515//>>css.structure: ../../themes/base/core.css
    1616//>>css.structure: ../../themes/base/button.css
     
    2626        define( [
    2727            "jquery",
    28             "./core"
     28            "../form-reset-mixin",
     29            "../labels",
     30            "../widget"
    2931        ], factory );
    3032    } else {
     
    3739
    3840$.widget( "ui.checkboxradio", [ $.ui.formResetMixin, {
    39     version: "1.13.2",
     41    version: "1.13.3",
    4042    options: {
    4143        disabled: null,
  • trunk/src/js/_enqueues/vendor/jquery/ui/controlgroup.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Controlgroup 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Controlgroup 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Widgets
    1212//>>description: Visually groups form control widgets
    13 //>>docs: http://api.jqueryui.com/controlgroup/
    14 //>>demos: http://jqueryui.com/controlgroup/
     13//>>docs: https://api.jqueryui.com/controlgroup/
     14//>>demos: https://jqueryui.com/controlgroup/
    1515//>>css.structure: ../../themes/base/core.css
    1616//>>css.structure: ../../themes/base/controlgroup.css
     
    2525        define( [
    2626            "jquery",
    27             "./core"
     27            "../widget"
    2828        ], factory );
    2929    } else {
     
    3737var controlgroupCornerRegex = /ui-corner-([a-z]){2,6}/g;
    3838
    39 $.widget( "ui.controlgroup", {
    40     version: "1.13.2",
     39return $.widget( "ui.controlgroup", {
     40    version: "1.13.3",
    4141    defaultElement: "<div>",
    4242    options: {
  • trunk/src/js/_enqueues/vendor/jquery/ui/core.js

    r54209 r58218  
    1 /*! jQuery UI - v1.13.2 - 2022-07-14
    2 * http://jqueryui.com
     1/*! jQuery UI - v1.13.3 - 2024-04-26
     2* https://jqueryui.com
    33* 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
    44* Copyright jQuery Foundation and other contributors; Licensed MIT */
     
    2121$.ui = $.ui || {};
    2222
    23 $.ui.version = "1.13.2";
     23$.ui.version = "1.13.3";
    2424
    2525// Source: data.js
    2626/*!
    27  * jQuery UI :data 1.13.2
    28  * http://jqueryui.com
     27 * jQuery UI :data 1.13.3
     28 * https://jqueryui.com
    2929 *
    30  * Copyright jQuery Foundation and other contributors
     30 * Copyright OpenJS Foundation and other contributors
    3131 * Released under the MIT license.
    32  * http://jquery.org/license
     32 * https://jquery.org/license
    3333 */
    3434
     
    3636//>>group: Core
    3737//>>description: Selects elements which have data stored under the specified key.
    38 //>>docs: http://api.jqueryui.com/data-selector/
     38//>>docs: https://api.jqueryui.com/data-selector/
    3939
    4040$.extend( $.expr.pseudos, {
     
    5454// Source: disable-selection.js
    5555/*!
    56  * jQuery UI Disable Selection 1.13.2
    57  * http://jqueryui.com
     56 * jQuery UI Disable Selection 1.13.3
     57 * https://jqueryui.com
    5858 *
    59  * Copyright jQuery Foundation and other contributors
     59 * Copyright OpenJS Foundation and other contributors
    6060 * Released under the MIT license.
    61  * http://jquery.org/license
     61 * https://jquery.org/license
    6262 */
    6363
     
    6565//>>group: Core
    6666//>>description: Disable selection of text content within the set of matched elements.
    67 //>>docs: http://api.jqueryui.com/disableSelection/
     67//>>docs: https://api.jqueryui.com/disableSelection/
    6868
    6969// This file is deprecated
     
    8888// Source: focusable.js
    8989/*!
    90  * jQuery UI Focusable 1.13.2
    91  * http://jqueryui.com
     90 * jQuery UI Focusable 1.13.3
     91 * https://jqueryui.com
    9292 *
    93  * Copyright jQuery Foundation and other contributors
     93 * Copyright OpenJS Foundation and other contributors
    9494 * Released under the MIT license.
    95  * http://jquery.org/license
     95 * https://jquery.org/license
    9696 */
    9797
     
    9999//>>group: Core
    100100//>>description: Selects elements which can be focused.
    101 //>>docs: http://api.jqueryui.com/focusable-selector/
     101//>>docs: https://api.jqueryui.com/focusable-selector/
    102102
    103103// Selectors
     
    165165// Source: form-reset-mixin.js
    166166/*!
    167  * jQuery UI Form Reset Mixin 1.13.2
    168  * http://jqueryui.com
     167 * jQuery UI Form Reset Mixin 1.13.3
     168 * https://jqueryui.com
    169169 *
    170  * Copyright jQuery Foundation and other contributors
     170 * Copyright OpenJS Foundation and other contributors
    171171 * Released under the MIT license.
    172  * http://jquery.org/license
     172 * https://jquery.org/license
    173173 */
    174174
     
    176176//>>group: Core
    177177//>>description: Refresh input widgets when their form is reset
    178 //>>docs: http://api.jqueryui.com/form-reset-mixin/
     178//>>docs: https://api.jqueryui.com/form-reset-mixin/
    179179
    180180$.ui.formResetMixin = {
     
    230230// Source: jquery-patch.js
    231231/*!
    232  * jQuery UI Support for jQuery core 1.8.x and newer 1.13.2
    233  * http://jqueryui.com
     232 * jQuery UI Support for jQuery core 1.8.x and newer 1.13.3
     233 * https://jqueryui.com
    234234 *
    235  * Copyright jQuery Foundation and other contributors
     235 * Copyright OpenJS Foundation and other contributors
    236236 * Released under the MIT license.
    237  * http://jquery.org/license
     237 * https://jquery.org/license
    238238 *
    239239 */
     
    304304// Source: keycode.js
    305305/*!
    306  * jQuery UI Keycode 1.13.2
    307  * http://jqueryui.com
     306 * jQuery UI Keycode 1.13.3
     307 * https://jqueryui.com
    308308 *
    309  * Copyright jQuery Foundation and other contributors
     309 * Copyright OpenJS Foundation and other contributors
    310310 * Released under the MIT license.
    311  * http://jquery.org/license
     311 * https://jquery.org/license
    312312 */
    313313
     
    315315//>>group: Core
    316316//>>description: Provide keycodes as keynames
    317 //>>docs: http://api.jqueryui.com/jQuery.ui.keyCode/
     317//>>docs: https://api.jqueryui.com/jQuery.ui.keyCode/
    318318
    319319$.ui.keyCode = {
     
    338338// Source: labels.js
    339339/*!
    340  * jQuery UI Labels 1.13.2
    341  * http://jqueryui.com
     340 * jQuery UI Labels 1.13.3
     341 * https://jqueryui.com
    342342 *
    343  * Copyright jQuery Foundation and other contributors
     343 * Copyright OpenJS Foundation and other contributors
    344344 * Released under the MIT license.
    345  * http://jquery.org/license
     345 * https://jquery.org/license
    346346 */
    347347
     
    349349//>>group: Core
    350350//>>description: Find all the labels associated with a given input
    351 //>>docs: http://api.jqueryui.com/labels/
     351//>>docs: https://api.jqueryui.com/labels/
    352352
    353353$.fn.labels = function() {
     
    424424// Source: position.js
    425425/*!
    426  * jQuery UI Position 1.13.2
    427  * http://jqueryui.com
     426 * jQuery UI Position 1.13.3
     427 * https://jqueryui.com
    428428 *
    429  * Copyright jQuery Foundation and other contributors
     429 * Copyright OpenJS Foundation and other contributors
    430430 * Released under the MIT license.
    431  * http://jquery.org/license
     431 * https://jquery.org/license
    432432 *
    433  * http://api.jqueryui.com/position/
     433 * https://api.jqueryui.com/position/
    434434 */
    435435
     
    437437//>>group: Core
    438438//>>description: Positions elements relative to other elements.
    439 //>>docs: http://api.jqueryui.com/position/
    440 //>>demos: http://jqueryui.com/position/
     439//>>docs: https://api.jqueryui.com/position/
     440//>>demos: https://jqueryui.com/position/
    441441
    442442( function() {
     
    957957// Source: scroll-parent.js
    958958/*!
    959  * jQuery UI Scroll Parent 1.13.2
    960  * http://jqueryui.com
     959 * jQuery UI Scroll Parent 1.13.3
     960 * https://jqueryui.com
    961961 *
    962  * Copyright jQuery Foundation and other contributors
     962 * Copyright OpenJS Foundation and other contributors
    963963 * Released under the MIT license.
    964  * http://jquery.org/license
     964 * https://jquery.org/license
    965965 */
    966966
     
    968968//>>group: Core
    969969//>>description: Get the closest ancestor element that is scrollable.
    970 //>>docs: http://api.jqueryui.com/scrollParent/
     970//>>docs: https://api.jqueryui.com/scrollParent/
    971971
    972972$.fn.scrollParent = function( includeHidden ) {
     
    990990// Source: tabbable.js
    991991/*!
    992  * jQuery UI Tabbable 1.13.2
    993  * http://jqueryui.com
     992 * jQuery UI Tabbable 1.13.3
     993 * https://jqueryui.com
    994994 *
    995  * Copyright jQuery Foundation and other contributors
     995 * Copyright OpenJS Foundation and other contributors
    996996 * Released under the MIT license.
    997  * http://jquery.org/license
     997 * https://jquery.org/license
    998998 */
    999999
     
    10011001//>>group: Core
    10021002//>>description: Selects elements which can be tabbed to.
    1003 //>>docs: http://api.jqueryui.com/tabbable-selector/
     1003//>>docs: https://api.jqueryui.com/tabbable-selector/
    10041004
    10051005$.extend( $.expr.pseudos, {
     
    10131013// Source: unique-id.js
    10141014/*!
    1015  * jQuery UI Unique ID 1.13.2
    1016  * http://jqueryui.com
     1015 * jQuery UI Unique ID 1.13.3
     1016 * https://jqueryui.com
    10171017 *
    1018  * Copyright jQuery Foundation and other contributors
     1018 * Copyright OpenJS Foundation and other contributors
    10191019 * Released under the MIT license.
    1020  * http://jquery.org/license
     1020 * https://jquery.org/license
    10211021 */
    10221022
     
    10241024//>>group: Core
    10251025//>>description: Functions to generate and remove uniqueId's
    1026 //>>docs: http://api.jqueryui.com/uniqueId/
     1026//>>docs: https://api.jqueryui.com/uniqueId/
    10271027
    10281028$.fn.extend( {
     
    10501050// Source: widget.js
    10511051/*!
    1052  * jQuery UI Widget 1.13.2
    1053  * http://jqueryui.com
     1052 * jQuery UI Widget 1.13.3
     1053 * https://jqueryui.com
    10541054 *
    1055  * Copyright jQuery Foundation and other contributors
     1055 * Copyright OpenJS Foundation and other contributors
    10561056 * Released under the MIT license.
    1057  * http://jquery.org/license
     1057 * https://jquery.org/license
    10581058 */
    10591059
     
    10611061//>>group: Core
    10621062//>>description: Provides a factory for creating stateful widgets with a common API.
    1063 //>>docs: http://api.jqueryui.com/jQuery.widget/
    1064 //>>demos: http://jqueryui.com/widget/
     1063//>>docs: https://api.jqueryui.com/jQuery.widget/
     1064//>>demos: https://jqueryui.com/widget/
    10651065
    10661066var widgetUuid = 0;
  • trunk/src/js/_enqueues/vendor/jquery/ui/datepicker.js

    r54209 r58218  
    11/* eslint-disable max-len, camelcase */
    22/*!
    3  * jQuery UI Datepicker 1.13.2
    4  * http://jqueryui.com
     3 * jQuery UI Datepicker 1.13.3
     4 * https://jqueryui.com
    55 *
    6  * Copyright jQuery Foundation and other contributors
     6 * Copyright OpenJS Foundation and other contributors
    77 * Released under the MIT license.
    8  * http://jquery.org/license
     8 * https://jquery.org/license
    99 */
    1010
     
    1212//>>group: Widgets
    1313//>>description: Displays a calendar from an input or inline for selecting dates.
    14 //>>docs: http://api.jqueryui.com/datepicker/
    15 //>>demos: http://jqueryui.com/datepicker/
     14//>>docs: https://api.jqueryui.com/datepicker/
     15//>>demos: https://jqueryui.com/datepicker/
    1616//>>css.structure: ../../themes/base/core.css
    1717//>>css.structure: ../../themes/base/datepicker.css
     
    2626        define( [
    2727            "jquery",
    28             "./core"
     28            "../version",
     29            "../keycode"
    2930        ], factory );
    3031    } else {
     
    3637"use strict";
    3738
    38 $.extend( $.ui, { datepicker: { version: "1.13.2" } } );
     39$.extend( $.ui, { datepicker: { version: "1.13.3" } } );
    3940
    4041var datepicker_instActive;
     
    353354
    354355        // Set display:block in place of inst.dpDiv.show() which won't work on disconnected elements
    355         // http://bugs.jqueryui.com/ticket/7552 - A Datepicker created on a detached div has zero height
     356        // https://bugs.jqueryui.com/ticket/7552 - A Datepicker created on a detached div has zero height
    356357        inst.dpDiv.css( "display", "block" );
    357358    },
     
    22332234$.datepicker.initialized = false;
    22342235$.datepicker.uuid = new Date().getTime();
    2235 $.datepicker.version = "1.13.2";
     2236$.datepicker.version = "1.13.3";
    22362237
    22372238return $.datepicker;
  • trunk/src/js/_enqueues/vendor/jquery/ui/dialog.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Dialog 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Dialog 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Widgets
    1212//>>description: Displays customizable dialog windows.
    13 //>>docs: http://api.jqueryui.com/dialog/
    14 //>>demos: http://jqueryui.com/dialog/
     13//>>docs: https://api.jqueryui.com/dialog/
     14//>>demos: https://jqueryui.com/dialog/
    1515//>>css.structure: ../../themes/base/core.css
    1616//>>css.structure: ../../themes/base/dialog.css
     
    2929            "./mouse",
    3030            "./resizable",
    31             "./core"
     31            "../focusable",
     32            "../keycode",
     33            "../position",
     34            "../safe-active-element",
     35            "../safe-blur",
     36            "../tabbable",
     37            "../unique-id",
     38            "../version",
     39            "../widget"
    3240        ], factory );
    3341    } else {
     
    4048
    4149$.widget( "ui.dialog", {
    42     version: "1.13.2",
     50    version: "1.13.3",
    4351    options: {
    4452        appendTo: "body",
     
    874882                    instance._focusTabbable();
    875883
    876                     // Support: jQuery >=3.4 <3.6 only
    877                     // Focus re-triggering in jQuery 3.4/3.5 makes the original element
    878                     // have its focus event propagated last, breaking the re-targeting.
    879                     // Trigger focus in a delay in addition if needed to avoid the issue
     884                    // Support: jQuery >=3.4 <3.7 only
     885                    // In jQuery 3.4-3.6, there are multiple issues with focus/blur
     886                    // trigger chains or when triggering is done on a hidden element
     887                    // at least once.
     888                    // Trigger focus in a delay in addition if needed to avoid the issues.
    880889                    // See https://github.com/jquery/jquery/issues/4382
    881                     if ( jqMinor === "3.4." || jqMinor === "3.5." ) {
     890                    // See https://github.com/jquery/jquery/issues/4856
     891                    // See https://github.com/jquery/jquery/issues/4950
     892                    if ( jqMinor === "3.4." || jqMinor === "3.5." || jqMinor === "3.6." ) {
    882893                        instance._delay( instance._restoreTabbableFocus );
    883894                    }
  • trunk/src/js/_enqueues/vendor/jquery/ui/draggable.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Draggable 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Draggable 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Interactions
    1212//>>description: Enables dragging functionality for any element.
    13 //>>docs: http://api.jqueryui.com/draggable/
    14 //>>demos: http://jqueryui.com/draggable/
     13//>>docs: https://api.jqueryui.com/draggable/
     14//>>demos: https://jqueryui.com/draggable/
    1515//>>css.structure: ../../themes/base/draggable.css
    1616
     
    2424            "jquery",
    2525            "./mouse",
    26             "./core"
     26            "../data",
     27            "../plugin",
     28            "../safe-active-element",
     29            "../safe-blur",
     30            "../scroll-parent",
     31            "../version",
     32            "../widget"
    2733        ], factory );
    2834    } else {
     
    3541
    3642$.widget( "ui.draggable", $.ui.mouse, {
    37     version: "1.13.2",
     43    version: "1.13.3",
    3844    widgetEventPrefix: "drag",
    3945    options: {
     
    381387        }
    382388
    383         // Http://bugs.jqueryui.com/ticket/9446
     389        // https://bugs.jqueryui.com/ticket/9446
    384390        // a helper function can return the original element
    385391        // which wouldn't have been set to relative in _create
  • trunk/src/js/_enqueues/vendor/jquery/ui/droppable.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Droppable 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Droppable 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Interactions
    1212//>>description: Enables drop targets for draggable elements.
    13 //>>docs: http://api.jqueryui.com/droppable/
    14 //>>demos: http://jqueryui.com/droppable/
     13//>>docs: https://api.jqueryui.com/droppable/
     14//>>demos: https://jqueryui.com/droppable/
    1515
    1616( function( factory ) {
     
    2424            "./draggable",
    2525            "./mouse",
    26             "./core"
     26            "../version",
     27            "../widget"
    2728        ], factory );
    2829    } else {
     
    3536
    3637$.widget( "ui.droppable", {
    37     version: "1.13.2",
     38    version: "1.13.3",
    3839    widgetEventPrefix: "drop",
    3940    options: {
  • trunk/src/js/_enqueues/vendor/jquery/ui/effect-blind.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Effects Blind 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Effects Blind 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Effects
    1212//>>description: Blinds the element.
    13 //>>docs: http://api.jqueryui.com/blind-effect/
    14 //>>demos: http://jqueryui.com/effect/
     13//>>docs: https://api.jqueryui.com/blind-effect/
     14//>>demos: https://jqueryui.com/effect/
    1515
    1616( function( factory ) {
     
    2222        define( [
    2323            "jquery",
    24             "./effect"
     24            "../version",
     25            "../effect"
    2526        ], factory );
    2627    } else {
  • trunk/src/js/_enqueues/vendor/jquery/ui/effect-bounce.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Effects Bounce 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Effects Bounce 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Effects
    1212//>>description: Bounces an element horizontally or vertically n times.
    13 //>>docs: http://api.jqueryui.com/bounce-effect/
    14 //>>demos: http://jqueryui.com/effect/
     13//>>docs: https://api.jqueryui.com/bounce-effect/
     14//>>demos: https://jqueryui.com/effect/
    1515
    1616( function( factory ) {
     
    2222        define( [
    2323            "jquery",
    24             "./effect"
     24            "../version",
     25            "../effect"
    2526        ], factory );
    2627    } else {
  • trunk/src/js/_enqueues/vendor/jquery/ui/effect-clip.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Effects Clip 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Effects Clip 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Effects
    1212//>>description: Clips the element on and off like an old TV.
    13 //>>docs: http://api.jqueryui.com/clip-effect/
    14 //>>demos: http://jqueryui.com/effect/
     13//>>docs: https://api.jqueryui.com/clip-effect/
     14//>>demos: https://jqueryui.com/effect/
    1515
    1616( function( factory ) {
     
    2222        define( [
    2323            "jquery",
    24             "./effect"
     24            "../version",
     25            "../effect"
    2526        ], factory );
    2627    } else {
  • trunk/src/js/_enqueues/vendor/jquery/ui/effect-drop.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Effects Drop 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Effects Drop 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Effects
    1212//>>description: Moves an element in one direction and hides it at the same time.
    13 //>>docs: http://api.jqueryui.com/drop-effect/
    14 //>>demos: http://jqueryui.com/effect/
     13//>>docs: https://api.jqueryui.com/drop-effect/
     14//>>demos: https://jqueryui.com/effect/
    1515
    1616( function( factory ) {
     
    2222        define( [
    2323            "jquery",
    24             "./effect"
     24            "../version",
     25            "../effect"
    2526        ], factory );
    2627    } else {
  • trunk/src/js/_enqueues/vendor/jquery/ui/effect-explode.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Effects Explode 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Effects Explode 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1313//>>description: Explodes an element in all directions into n pieces. Implodes an element to its original wholeness.
    1414/* eslint-enable max-len */
    15 //>>docs: http://api.jqueryui.com/explode-effect/
    16 //>>demos: http://jqueryui.com/effect/
     15//>>docs: https://api.jqueryui.com/explode-effect/
     16//>>demos: https://jqueryui.com/effect/
    1717
    1818( function( factory ) {
     
    2424        define( [
    2525            "jquery",
    26             "./effect"
     26            "../version",
     27            "../effect"
    2728        ], factory );
    2829    } else {
  • trunk/src/js/_enqueues/vendor/jquery/ui/effect-fade.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Effects Fade 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Effects Fade 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Effects
    1212//>>description: Fades the element.
    13 //>>docs: http://api.jqueryui.com/fade-effect/
    14 //>>demos: http://jqueryui.com/effect/
     13//>>docs: https://api.jqueryui.com/fade-effect/
     14//>>demos: https://jqueryui.com/effect/
    1515
    1616( function( factory ) {
     
    2222        define( [
    2323            "jquery",
    24             "./effect"
     24            "../version",
     25            "../effect"
    2526        ], factory );
    2627    } else {
  • trunk/src/js/_enqueues/vendor/jquery/ui/effect-fold.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Effects Fold 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Effects Fold 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Effects
    1212//>>description: Folds an element first horizontally and then vertically.
    13 //>>docs: http://api.jqueryui.com/fold-effect/
    14 //>>demos: http://jqueryui.com/effect/
     13//>>docs: https://api.jqueryui.com/fold-effect/
     14//>>demos: https://jqueryui.com/effect/
    1515
    1616( function( factory ) {
     
    2222        define( [
    2323            "jquery",
    24             "./effect"
     24            "../version",
     25            "../effect"
    2526        ], factory );
    2627    } else {
  • trunk/src/js/_enqueues/vendor/jquery/ui/effect-highlight.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Effects Highlight 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Effects Highlight 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Effects
    1212//>>description: Highlights the background of an element in a defined color for a custom duration.
    13 //>>docs: http://api.jqueryui.com/highlight-effect/
    14 //>>demos: http://jqueryui.com/effect/
     13//>>docs: https://api.jqueryui.com/highlight-effect/
     14//>>demos: https://jqueryui.com/effect/
    1515
    1616( function( factory ) {
     
    2222        define( [
    2323            "jquery",
    24             "./effect"
     24            "../version",
     25            "../effect"
    2526        ], factory );
    2627    } else {
  • trunk/src/js/_enqueues/vendor/jquery/ui/effect-puff.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Effects Puff 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Effects Puff 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Effects
    1212//>>description: Creates a puff effect by scaling the element up and hiding it at the same time.
    13 //>>docs: http://api.jqueryui.com/puff-effect/
    14 //>>demos: http://jqueryui.com/effect/
     13//>>docs: https://api.jqueryui.com/puff-effect/
     14//>>demos: https://jqueryui.com/effect/
    1515
    1616( function( factory ) {
     
    2222        define( [
    2323            "jquery",
    24             "./effect",
     24            "../version",
     25            "../effect",
    2526            "./effect-scale"
    2627        ], factory );
  • trunk/src/js/_enqueues/vendor/jquery/ui/effect-pulsate.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Effects Pulsate 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Effects Pulsate 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Effects
    1212//>>description: Pulsates an element n times by changing the opacity to zero and back.
    13 //>>docs: http://api.jqueryui.com/pulsate-effect/
    14 //>>demos: http://jqueryui.com/effect/
     13//>>docs: https://api.jqueryui.com/pulsate-effect/
     14//>>demos: https://jqueryui.com/effect/
    1515
    1616( function( factory ) {
     
    2222        define( [
    2323            "jquery",
    24             "./effect"
     24            "../version",
     25            "../effect"
    2526        ], factory );
    2627    } else {
  • trunk/src/js/_enqueues/vendor/jquery/ui/effect-scale.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Effects Scale 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Effects Scale 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Effects
    1212//>>description: Grows or shrinks an element and its content.
    13 //>>docs: http://api.jqueryui.com/scale-effect/
    14 //>>demos: http://jqueryui.com/effect/
     13//>>docs: https://api.jqueryui.com/scale-effect/
     14//>>demos: https://jqueryui.com/effect/
    1515
    1616( function( factory ) {
     
    2222        define( [
    2323            "jquery",
    24             "./effect",
     24            "../version",
     25            "../effect",
    2526            "./effect-size"
    2627        ], factory );
  • trunk/src/js/_enqueues/vendor/jquery/ui/effect-shake.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Effects Shake 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Effects Shake 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Effects
    1212//>>description: Shakes an element horizontally or vertically n times.
    13 //>>docs: http://api.jqueryui.com/shake-effect/
    14 //>>demos: http://jqueryui.com/effect/
     13//>>docs: https://api.jqueryui.com/shake-effect/
     14//>>demos: https://jqueryui.com/effect/
    1515
    1616( function( factory ) {
     
    2222        define( [
    2323            "jquery",
    24             "./effect"
     24            "../version",
     25            "../effect"
    2526        ], factory );
    2627    } else {
  • trunk/src/js/_enqueues/vendor/jquery/ui/effect-size.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Effects Size 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Effects Size 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Effects
    1212//>>description: Resize an element to a specified width and height.
    13 //>>docs: http://api.jqueryui.com/size-effect/
    14 //>>demos: http://jqueryui.com/effect/
     13//>>docs: https://api.jqueryui.com/size-effect/
     14//>>demos: https://jqueryui.com/effect/
    1515
    1616( function( factory ) {
     
    2222        define( [
    2323            "jquery",
    24             "./effect"
     24            "../version",
     25            "../effect"
    2526        ], factory );
    2627    } else {
  • trunk/src/js/_enqueues/vendor/jquery/ui/effect-slide.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Effects Slide 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Effects Slide 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Effects
    1212//>>description: Slides an element in and out of the viewport.
    13 //>>docs: http://api.jqueryui.com/slide-effect/
    14 //>>demos: http://jqueryui.com/effect/
     13//>>docs: https://api.jqueryui.com/slide-effect/
     14//>>demos: https://jqueryui.com/effect/
    1515
    1616( function( factory ) {
     
    2222        define( [
    2323            "jquery",
    24             "./effect"
     24            "../version",
     25            "../effect"
    2526        ], factory );
    2627    } else {
  • trunk/src/js/_enqueues/vendor/jquery/ui/effect-transfer.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Effects Transfer 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Effects Transfer 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Effects
    1212//>>description: Displays a transfer effect from one element to another.
    13 //>>docs: http://api.jqueryui.com/transfer-effect/
    14 //>>demos: http://jqueryui.com/effect/
     13//>>docs: https://api.jqueryui.com/transfer-effect/
     14//>>demos: https://jqueryui.com/effect/
    1515
    1616( function( factory ) {
     
    2222        define( [
    2323            "jquery",
    24             "./effect"
     24            "../version",
     25            "../effect"
    2526        ], factory );
    2627    } else {
  • trunk/src/js/_enqueues/vendor/jquery/ui/effect.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Effects 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Effects 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1313//>>description: Extends the internal jQuery effects. Includes morphing and easing. Required by all other effects.
    1414/* eslint-enable max-len */
    15 //>>docs: http://api.jqueryui.com/category/effects-core/
    16 //>>demos: http://jqueryui.com/effect/
     15//>>docs: https://api.jqueryui.com/category/effects-core/
     16//>>demos: https://jqueryui.com/effect/
    1717
    1818( function( factory ) {
     
    2222
    2323        // AMD. Register as an anonymous module.
    24         define( [ "jquery" ], factory );
     24        define( [
     25            "jquery",
     26            "./jquery-var-for-color",
     27            "./vendor/jquery-color/jquery.color",
     28            "./version"
     29        ], factory );
    2530    } else {
    2631
     
    3035} )( function( $ ) {
    3136"use strict";
    32 
    33 // Include version.js
    34 $.ui = $.ui || {};
    35 $.ui.version = "1.13.1";
    36 
    37 // Source: jquery-var-for-color.js
    38 // Create a local jQuery because jQuery Color relies on it and the
    39 // global may not exist with AMD and a custom build (#10199).
    40 // This module is a noop if used as a regular AMD module.
    41 // eslint-disable-next-line no-unused-vars
    42 var jQuery = $;
    43 
    44 
    45 /*!
    46  * jQuery Color Animations v2.2.0
    47  * https://github.com/jquery/jquery-color
    48  *
    49  * Copyright OpenJS Foundation and other contributors
    50  * Released under the MIT license.
    51  * http://jquery.org/license
    52  *
    53  * Date: Sun May 10 09:02:36 2020 +0200
    54  */
    55 
    56 
    57 
    58     var stepHooks = "backgroundColor borderBottomColor borderLeftColor borderRightColor " +
    59         "borderTopColor color columnRuleColor outlineColor textDecorationColor textEmphasisColor",
    60 
    61     class2type = {},
    62     toString = class2type.toString,
    63 
    64     // plusequals test for += 100 -= 100
    65     rplusequals = /^([\-+])=\s*(\d+\.?\d*)/,
    66 
    67     // a set of RE's that can match strings and generate color tuples.
    68     stringParsers = [ {
    69             re: /rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,
    70             parse: function( execResult ) {
    71                 return [
    72                     execResult[ 1 ],
    73                     execResult[ 2 ],
    74                     execResult[ 3 ],
    75                     execResult[ 4 ]
    76                 ];
    77             }
    78         }, {
    79             re: /rgba?\(\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,
    80             parse: function( execResult ) {
    81                 return [
    82                     execResult[ 1 ] * 2.55,
    83                     execResult[ 2 ] * 2.55,
    84                     execResult[ 3 ] * 2.55,
    85                     execResult[ 4 ]
    86                 ];
    87             }
    88         }, {
    89 
    90             // this regex ignores A-F because it's compared against an already lowercased string
    91             re: /#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})?/,
    92             parse: function( execResult ) {
    93                 return [
    94                     parseInt( execResult[ 1 ], 16 ),
    95                     parseInt( execResult[ 2 ], 16 ),
    96                     parseInt( execResult[ 3 ], 16 ),
    97                     execResult[ 4 ] ?
    98                         ( parseInt( execResult[ 4 ], 16 ) / 255 ).toFixed( 2 ) :
    99                         1
    100                 ];
    101             }
    102         }, {
    103 
    104             // this regex ignores A-F because it's compared against an already lowercased string
    105             re: /#([a-f0-9])([a-f0-9])([a-f0-9])([a-f0-9])?/,
    106             parse: function( execResult ) {
    107                 return [
    108                     parseInt( execResult[ 1 ] + execResult[ 1 ], 16 ),
    109                     parseInt( execResult[ 2 ] + execResult[ 2 ], 16 ),
    110                     parseInt( execResult[ 3 ] + execResult[ 3 ], 16 ),
    111                     execResult[ 4 ] ?
    112                         ( parseInt( execResult[ 4 ] + execResult[ 4 ], 16 ) / 255 )
    113                             .toFixed( 2 ) :
    114                         1
    115                 ];
    116             }
    117         }, {
    118             re: /hsla?\(\s*(\d+(?:\.\d+)?)\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,
    119             space: "hsla",
    120             parse: function( execResult ) {
    121                 return [
    122                     execResult[ 1 ],
    123                     execResult[ 2 ] / 100,
    124                     execResult[ 3 ] / 100,
    125                     execResult[ 4 ]
    126                 ];
    127             }
    128         } ],
    129 
    130     // jQuery.Color( )
    131     color = jQuery.Color = function( color, green, blue, alpha ) {
    132         return new jQuery.Color.fn.parse( color, green, blue, alpha );
    133     },
    134     spaces = {
    135         rgba: {
    136             props: {
    137                 red: {
    138                     idx: 0,
    139                     type: "byte"
    140                 },
    141                 green: {
    142                     idx: 1,
    143                     type: "byte"
    144                 },
    145                 blue: {
    146                     idx: 2,
    147                     type: "byte"
    148                 }
    149             }
    150         },
    151 
    152         hsla: {
    153             props: {
    154                 hue: {
    155                     idx: 0,
    156                     type: "degrees"
    157                 },
    158                 saturation: {
    159                     idx: 1,
    160                     type: "percent"
    161                 },
    162                 lightness: {
    163                     idx: 2,
    164                     type: "percent"
    165                 }
    166             }
    167         }
    168     },
    169     propTypes = {
    170         "byte": {
    171             floor: true,
    172             max: 255
    173         },
    174         "percent": {
    175             max: 1
    176         },
    177         "degrees": {
    178             mod: 360,
    179             floor: true
    180         }
    181     },
    182     support = color.support = {},
    183 
    184     // element for support tests
    185     supportElem = jQuery( "<p>" )[ 0 ],
    186 
    187     // colors = jQuery.Color.names
    188     colors,
    189 
    190     // local aliases of functions called often
    191     each = jQuery.each;
    192 
    193 // determine rgba support immediately
    194 supportElem.style.cssText = "background-color:rgba(1,1,1,.5)";
    195 support.rgba = supportElem.style.backgroundColor.indexOf( "rgba" ) > -1;
    196 
    197 // define cache name and alpha properties
    198 // for rgba and hsla spaces
    199 each( spaces, function( spaceName, space ) {
    200     space.cache = "_" + spaceName;
    201     space.props.alpha = {
    202         idx: 3,
    203         type: "percent",
    204         def: 1
    205     };
    206 } );
    207 
    208 // Populate the class2type map
    209 jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ),
    210     function( _i, name ) {
    211         class2type[ "[object " + name + "]" ] = name.toLowerCase();
    212     } );
    213 
    214 function getType( obj ) {
    215     if ( obj == null ) {
    216         return obj + "";
    217     }
    218 
    219     return typeof obj === "object" ?
    220         class2type[ toString.call( obj ) ] || "object" :
    221         typeof obj;
    222 }
    223 
    224 function clamp( value, prop, allowEmpty ) {
    225     var type = propTypes[ prop.type ] || {};
    226 
    227     if ( value == null ) {
    228         return ( allowEmpty || !prop.def ) ? null : prop.def;
    229     }
    230 
    231     // ~~ is an short way of doing floor for positive numbers
    232     value = type.floor ? ~~value : parseFloat( value );
    233 
    234     // IE will pass in empty strings as value for alpha,
    235     // which will hit this case
    236     if ( isNaN( value ) ) {
    237         return prop.def;
    238     }
    239 
    240     if ( type.mod ) {
    241 
    242         // we add mod before modding to make sure that negatives values
    243         // get converted properly: -10 -> 350
    244         return ( value + type.mod ) % type.mod;
    245     }
    246 
    247     // for now all property types without mod have min and max
    248     return Math.min( type.max, Math.max( 0, value ) );
    249 }
    250 
    251 function stringParse( string ) {
    252     var inst = color(),
    253         rgba = inst._rgba = [];
    254 
    255     string = string.toLowerCase();
    256 
    257     each( stringParsers, function( _i, parser ) {
    258         var parsed,
    259             match = parser.re.exec( string ),
    260             values = match && parser.parse( match ),
    261             spaceName = parser.space || "rgba";
    262 
    263         if ( values ) {
    264             parsed = inst[ spaceName ]( values );
    265 
    266             // if this was an rgba parse the assignment might happen twice
    267             // oh well....
    268             inst[ spaces[ spaceName ].cache ] = parsed[ spaces[ spaceName ].cache ];
    269             rgba = inst._rgba = parsed._rgba;
    270 
    271             // exit each( stringParsers ) here because we matched
    272             return false;
    273         }
    274     } );
    275 
    276     // Found a stringParser that handled it
    277     if ( rgba.length ) {
    278 
    279         // if this came from a parsed string, force "transparent" when alpha is 0
    280         // chrome, (and maybe others) return "transparent" as rgba(0,0,0,0)
    281         if ( rgba.join() === "0,0,0,0" ) {
    282             jQuery.extend( rgba, colors.transparent );
    283         }
    284         return inst;
    285     }
    286 
    287     // named colors
    288     return colors[ string ];
    289 }
    290 
    291 color.fn = jQuery.extend( color.prototype, {
    292     parse: function( red, green, blue, alpha ) {
    293         if ( red === undefined ) {
    294             this._rgba = [ null, null, null, null ];
    295             return this;
    296         }
    297         if ( red.jquery || red.nodeType ) {
    298             red = jQuery( red ).css( green );
    299             green = undefined;
    300         }
    301 
    302         var inst = this,
    303             type = getType( red ),
    304             rgba = this._rgba = [];
    305 
    306         // more than 1 argument specified - assume ( red, green, blue, alpha )
    307         if ( green !== undefined ) {
    308             red = [ red, green, blue, alpha ];
    309             type = "array";
    310         }
    311 
    312         if ( type === "string" ) {
    313             return this.parse( stringParse( red ) || colors._default );
    314         }
    315 
    316         if ( type === "array" ) {
    317             each( spaces.rgba.props, function( _key, prop ) {
    318                 rgba[ prop.idx ] = clamp( red[ prop.idx ], prop );
    319             } );
    320             return this;
    321         }
    322 
    323         if ( type === "object" ) {
    324             if ( red instanceof color ) {
    325                 each( spaces, function( _spaceName, space ) {
    326                     if ( red[ space.cache ] ) {
    327                         inst[ space.cache ] = red[ space.cache ].slice();
    328                     }
    329                 } );
    330             } else {
    331                 each( spaces, function( _spaceName, space ) {
    332                     var cache = space.cache;
    333                     each( space.props, function( key, prop ) {
    334 
    335                         // if the cache doesn't exist, and we know how to convert
    336                         if ( !inst[ cache ] && space.to ) {
    337 
    338                             // if the value was null, we don't need to copy it
    339                             // if the key was alpha, we don't need to copy it either
    340                             if ( key === "alpha" || red[ key ] == null ) {
    341                                 return;
    342                             }
    343                             inst[ cache ] = space.to( inst._rgba );
    344                         }
    345 
    346                         // this is the only case where we allow nulls for ALL properties.
    347                         // call clamp with alwaysAllowEmpty
    348                         inst[ cache ][ prop.idx ] = clamp( red[ key ], prop, true );
    349                     } );
    350 
    351                     // everything defined but alpha?
    352                     if ( inst[ cache ] && jQuery.inArray( null, inst[ cache ].slice( 0, 3 ) ) < 0 ) {
    353 
    354                         // use the default of 1
    355                         if ( inst[ cache ][ 3 ] == null ) {
    356                             inst[ cache ][ 3 ] = 1;
    357                         }
    358 
    359                         if ( space.from ) {
    360                             inst._rgba = space.from( inst[ cache ] );
    361                         }
    362                     }
    363                 } );
    364             }
    365             return this;
    366         }
    367     },
    368     is: function( compare ) {
    369         var is = color( compare ),
    370             same = true,
    371             inst = this;
    372 
    373         each( spaces, function( _, space ) {
    374             var localCache,
    375                 isCache = is[ space.cache ];
    376             if ( isCache ) {
    377                 localCache = inst[ space.cache ] || space.to && space.to( inst._rgba ) || [];
    378                 each( space.props, function( _, prop ) {
    379                     if ( isCache[ prop.idx ] != null ) {
    380                         same = ( isCache[ prop.idx ] === localCache[ prop.idx ] );
    381                         return same;
    382                     }
    383                 } );
    384             }
    385             return same;
    386         } );
    387         return same;
    388     },
    389     _space: function() {
    390         var used = [],
    391             inst = this;
    392         each( spaces, function( spaceName, space ) {
    393             if ( inst[ space.cache ] ) {
    394                 used.push( spaceName );
    395             }
    396         } );
    397         return used.pop();
    398     },
    399     transition: function( other, distance ) {
    400         var end = color( other ),
    401             spaceName = end._space(),
    402             space = spaces[ spaceName ],
    403             startColor = this.alpha() === 0 ? color( "transparent" ) : this,
    404             start = startColor[ space.cache ] || space.to( startColor._rgba ),
    405             result = start.slice();
    406 
    407         end = end[ space.cache ];
    408         each( space.props, function( _key, prop ) {
    409             var index = prop.idx,
    410                 startValue = start[ index ],
    411                 endValue = end[ index ],
    412                 type = propTypes[ prop.type ] || {};
    413 
    414             // if null, don't override start value
    415             if ( endValue === null ) {
    416                 return;
    417             }
    418 
    419             // if null - use end
    420             if ( startValue === null ) {
    421                 result[ index ] = endValue;
    422             } else {
    423                 if ( type.mod ) {
    424                     if ( endValue - startValue > type.mod / 2 ) {
    425                         startValue += type.mod;
    426                     } else if ( startValue - endValue > type.mod / 2 ) {
    427                         startValue -= type.mod;
    428                     }
    429                 }
    430                 result[ index ] = clamp( ( endValue - startValue ) * distance + startValue, prop );
    431             }
    432         } );
    433         return this[ spaceName ]( result );
    434     },
    435     blend: function( opaque ) {
    436 
    437         // if we are already opaque - return ourself
    438         if ( this._rgba[ 3 ] === 1 ) {
    439             return this;
    440         }
    441 
    442         var rgb = this._rgba.slice(),
    443             a = rgb.pop(),
    444             blend = color( opaque )._rgba;
    445 
    446         return color( jQuery.map( rgb, function( v, i ) {
    447             return ( 1 - a ) * blend[ i ] + a * v;
    448         } ) );
    449     },
    450     toRgbaString: function() {
    451         var prefix = "rgba(",
    452             rgba = jQuery.map( this._rgba, function( v, i ) {
    453                 if ( v != null ) {
    454                     return v;
    455                 }
    456                 return i > 2 ? 1 : 0;
    457             } );
    458 
    459         if ( rgba[ 3 ] === 1 ) {
    460             rgba.pop();
    461             prefix = "rgb(";
    462         }
    463 
    464         return prefix + rgba.join() + ")";
    465     },
    466     toHslaString: function() {
    467         var prefix = "hsla(",
    468             hsla = jQuery.map( this.hsla(), function( v, i ) {
    469                 if ( v == null ) {
    470                     v = i > 2 ? 1 : 0;
    471                 }
    472 
    473                 // catch 1 and 2
    474                 if ( i && i < 3 ) {
    475                     v = Math.round( v * 100 ) + "%";
    476                 }
    477                 return v;
    478             } );
    479 
    480         if ( hsla[ 3 ] === 1 ) {
    481             hsla.pop();
    482             prefix = "hsl(";
    483         }
    484         return prefix + hsla.join() + ")";
    485     },
    486     toHexString: function( includeAlpha ) {
    487         var rgba = this._rgba.slice(),
    488             alpha = rgba.pop();
    489 
    490         if ( includeAlpha ) {
    491             rgba.push( ~~( alpha * 255 ) );
    492         }
    493 
    494         return "#" + jQuery.map( rgba, function( v ) {
    495 
    496             // default to 0 when nulls exist
    497             v = ( v || 0 ).toString( 16 );
    498             return v.length === 1 ? "0" + v : v;
    499         } ).join( "" );
    500     },
    501     toString: function() {
    502         return this._rgba[ 3 ] === 0 ? "transparent" : this.toRgbaString();
    503     }
    504 } );
    505 color.fn.parse.prototype = color.fn;
    506 
    507 // hsla conversions adapted from:
    508 // https://code.google.com/p/maashaack/source/browse/packages/graphics/trunk/src/graphics/colors/HUE2RGB.as?r=5021
    509 
    510 function hue2rgb( p, q, h ) {
    511     h = ( h + 1 ) % 1;
    512     if ( h * 6 < 1 ) {
    513         return p + ( q - p ) * h * 6;
    514     }
    515     if ( h * 2 < 1 ) {
    516         return q;
    517     }
    518     if ( h * 3 < 2 ) {
    519         return p + ( q - p ) * ( ( 2 / 3 ) - h ) * 6;
    520     }
    521     return p;
    522 }
    523 
    524 spaces.hsla.to = function( rgba ) {
    525     if ( rgba[ 0 ] == null || rgba[ 1 ] == null || rgba[ 2 ] == null ) {
    526         return [ null, null, null, rgba[ 3 ] ];
    527     }
    528     var r = rgba[ 0 ] / 255,
    529         g = rgba[ 1 ] / 255,
    530         b = rgba[ 2 ] / 255,
    531         a = rgba[ 3 ],
    532         max = Math.max( r, g, b ),
    533         min = Math.min( r, g, b ),
    534         diff = max - min,
    535         add = max + min,
    536         l = add * 0.5,
    537         h, s;
    538 
    539     if ( min === max ) {
    540         h = 0;
    541     } else if ( r === max ) {
    542         h = ( 60 * ( g - b ) / diff ) + 360;
    543     } else if ( g === max ) {
    544         h = ( 60 * ( b - r ) / diff ) + 120;
    545     } else {
    546         h = ( 60 * ( r - g ) / diff ) + 240;
    547     }
    548 
    549     // chroma (diff) == 0 means greyscale which, by definition, saturation = 0%
    550     // otherwise, saturation is based on the ratio of chroma (diff) to lightness (add)
    551     if ( diff === 0 ) {
    552         s = 0;
    553     } else if ( l <= 0.5 ) {
    554         s = diff / add;
    555     } else {
    556         s = diff / ( 2 - add );
    557     }
    558     return [ Math.round( h ) % 360, s, l, a == null ? 1 : a ];
    559 };
    560 
    561 spaces.hsla.from = function( hsla ) {
    562     if ( hsla[ 0 ] == null || hsla[ 1 ] == null || hsla[ 2 ] == null ) {
    563         return [ null, null, null, hsla[ 3 ] ];
    564     }
    565     var h = hsla[ 0 ] / 360,
    566         s = hsla[ 1 ],
    567         l = hsla[ 2 ],
    568         a = hsla[ 3 ],
    569         q = l <= 0.5 ? l * ( 1 + s ) : l + s - l * s,
    570         p = 2 * l - q;
    571 
    572     return [
    573         Math.round( hue2rgb( p, q, h + ( 1 / 3 ) ) * 255 ),
    574         Math.round( hue2rgb( p, q, h ) * 255 ),
    575         Math.round( hue2rgb( p, q, h - ( 1 / 3 ) ) * 255 ),
    576         a
    577     ];
    578 };
    579 
    580 
    581 each( spaces, function( spaceName, space ) {
    582     var props = space.props,
    583         cache = space.cache,
    584         to = space.to,
    585         from = space.from;
    586 
    587     // makes rgba() and hsla()
    588     color.fn[ spaceName ] = function( value ) {
    589 
    590         // generate a cache for this space if it doesn't exist
    591         if ( to && !this[ cache ] ) {
    592             this[ cache ] = to( this._rgba );
    593         }
    594         if ( value === undefined ) {
    595             return this[ cache ].slice();
    596         }
    597 
    598         var ret,
    599             type = getType( value ),
    600             arr = ( type === "array" || type === "object" ) ? value : arguments,
    601             local = this[ cache ].slice();
    602 
    603         each( props, function( key, prop ) {
    604             var val = arr[ type === "object" ? key : prop.idx ];
    605             if ( val == null ) {
    606                 val = local[ prop.idx ];
    607             }
    608             local[ prop.idx ] = clamp( val, prop );
    609         } );
    610 
    611         if ( from ) {
    612             ret = color( from( local ) );
    613             ret[ cache ] = local;
    614             return ret;
    615         } else {
    616             return color( local );
    617         }
    618     };
    619 
    620     // makes red() green() blue() alpha() hue() saturation() lightness()
    621     each( props, function( key, prop ) {
    622 
    623         // alpha is included in more than one space
    624         if ( color.fn[ key ] ) {
    625             return;
    626         }
    627         color.fn[ key ] = function( value ) {
    628             var local, cur, match, fn,
    629                 vtype = getType( value );
    630 
    631             if ( key === "alpha" ) {
    632                 fn = this._hsla ? "hsla" : "rgba";
    633             } else {
    634                 fn = spaceName;
    635             }
    636             local = this[ fn ]();
    637             cur = local[ prop.idx ];
    638 
    639             if ( vtype === "undefined" ) {
    640                 return cur;
    641             }
    642 
    643             if ( vtype === "function" ) {
    644                 value = value.call( this, cur );
    645                 vtype = getType( value );
    646             }
    647             if ( value == null && prop.empty ) {
    648                 return this;
    649             }
    650             if ( vtype === "string" ) {
    651                 match = rplusequals.exec( value );
    652                 if ( match ) {
    653                     value = cur + parseFloat( match[ 2 ] ) * ( match[ 1 ] === "+" ? 1 : -1 );
    654                 }
    655             }
    656             local[ prop.idx ] = value;
    657             return this[ fn ]( local );
    658         };
    659     } );
    660 } );
    661 
    662 // add cssHook and .fx.step function for each named hook.
    663 // accept a space separated string of properties
    664 color.hook = function( hook ) {
    665     var hooks = hook.split( " " );
    666     each( hooks, function( _i, hook ) {
    667         jQuery.cssHooks[ hook ] = {
    668             set: function( elem, value ) {
    669                 var parsed, curElem,
    670                     backgroundColor = "";
    671 
    672                 if ( value !== "transparent" && ( getType( value ) !== "string" || ( parsed = stringParse( value ) ) ) ) {
    673                     value = color( parsed || value );
    674                     if ( !support.rgba && value._rgba[ 3 ] !== 1 ) {
    675                         curElem = hook === "backgroundColor" ? elem.parentNode : elem;
    676                         while (
    677                             ( backgroundColor === "" || backgroundColor === "transparent" ) &&
    678                             curElem && curElem.style
    679                         ) {
    680                             try {
    681                                 backgroundColor = jQuery.css( curElem, "backgroundColor" );
    682                                 curElem = curElem.parentNode;
    683                             } catch ( e ) {
    684                             }
    685                         }
    686 
    687                         value = value.blend( backgroundColor && backgroundColor !== "transparent" ?
    688                             backgroundColor :
    689                             "_default" );
    690                     }
    691 
    692                     value = value.toRgbaString();
    693                 }
    694                 try {
    695                     elem.style[ hook ] = value;
    696                 } catch ( e ) {
    697 
    698                     // wrapped to prevent IE from throwing errors on "invalid" values like 'auto' or 'inherit'
    699                 }
    700             }
    701         };
    702         jQuery.fx.step[ hook ] = function( fx ) {
    703             if ( !fx.colorInit ) {
    704                 fx.start = color( fx.elem, hook );
    705                 fx.end = color( fx.end );
    706                 fx.colorInit = true;
    707             }
    708             jQuery.cssHooks[ hook ].set( fx.elem, fx.start.transition( fx.end, fx.pos ) );
    709         };
    710     } );
    711 
    712 };
    713 
    714 color.hook( stepHooks );
    715 
    716 jQuery.cssHooks.borderColor = {
    717     expand: function( value ) {
    718         var expanded = {};
    719 
    720         each( [ "Top", "Right", "Bottom", "Left" ], function( _i, part ) {
    721             expanded[ "border" + part + "Color" ] = value;
    722         } );
    723         return expanded;
    724     }
    725 };
    726 
    727 // Basic color names only.
    728 // Usage of any of the other color names requires adding yourself or including
    729 // jquery.color.svg-names.js.
    730 colors = jQuery.Color.names = {
    731 
    732     // 4.1. Basic color keywords
    733     aqua: "#00ffff",
    734     black: "#000000",
    735     blue: "#0000ff",
    736     fuchsia: "#ff00ff",
    737     gray: "#808080",
    738     green: "#008000",
    739     lime: "#00ff00",
    740     maroon: "#800000",
    741     navy: "#000080",
    742     olive: "#808000",
    743     purple: "#800080",
    744     red: "#ff0000",
    745     silver: "#c0c0c0",
    746     teal: "#008080",
    747     white: "#ffffff",
    748     yellow: "#ffff00",
    749 
    750     // 4.2.3. "transparent" color keyword
    751     transparent: [ null, null, null, 0 ],
    752 
    753     _default: "#ffffff"
    754 };
    75537
    75638var dataSpace = "ui-effects-",
     
    1121403
    1122404$.extend( $.effects, {
    1123     version: "1.13.2",
     405    version: "1.13.3",
    1124406
    1125407    define: function( name, mode, effect ) {
     
    1244526        // Lock in margins first to account for form elements, which
    1245527        // will change margin if you explicitly set height
    1246         // see: http://jsfiddle.net/JZSMt/3/ https://bugs.webkit.org/show_bug.cgi?id=107380
     528        // see: https://jsfiddle.net/JZSMt/3/ https://bugs.webkit.org/show_bug.cgi?id=107380
    1247529        // Support: Safari
    1248530        element.css( {
     
    1638920( function() {
    1639921
    1640 // Based on easing equations from Robert Penner (http://www.robertpenner.com/easing)
     922// Based on easing equations from Robert Penner (http://robertpenner.com/easing)
    1641923
    1642924var baseEasings = {};
  • trunk/src/js/_enqueues/vendor/jquery/ui/menu.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Menu 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Menu 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Widgets
    1212//>>description: Creates nestable menus.
    13 //>>docs: http://api.jqueryui.com/menu/
    14 //>>demos: http://jqueryui.com/menu/
     13//>>docs: https://api.jqueryui.com/menu/
     14//>>demos: https://jqueryui.com/menu/
    1515//>>css.structure: ../../themes/base/core.css
    1616//>>css.structure: ../../themes/base/menu.css
     
    2525        define( [
    2626            "jquery",
    27             "./core"
     27            "../keycode",
     28            "../position",
     29            "../safe-active-element",
     30            "../unique-id",
     31            "../version",
     32            "../widget"
    2833        ], factory );
    2934    } else {
     
    3641
    3742return $.widget( "ui.menu", {
    38     version: "1.13.2",
     43    version: "1.13.3",
    3944    defaultElement: "<ul>",
    4045    delay: 300,
  • trunk/src/js/_enqueues/vendor/jquery/ui/mouse.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Mouse 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Mouse 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Widgets
    1212//>>description: Abstracts mouse-based interactions to assist in creating certain widgets.
    13 //>>docs: http://api.jqueryui.com/mouse/
     13//>>docs: https://api.jqueryui.com/mouse/
    1414
    1515( function( factory ) {
     
    2121        define( [
    2222            "jquery",
    23             "./core"
     23            "../ie",
     24            "../version",
     25            "../widget"
    2426        ], factory );
    2527    } else {
     
    3739
    3840return $.widget( "ui.mouse", {
    39     version: "1.13.2",
     41    version: "1.13.3",
    4042    options: {
    4143        cancel: "input, textarea, button, select, option",
  • trunk/src/js/_enqueues/vendor/jquery/ui/progressbar.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Progressbar 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Progressbar 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1313//>>description: Displays a status indicator for loading state, standard percentage, and other progress indicators.
    1414/* eslint-enable max-len */
    15 //>>docs: http://api.jqueryui.com/progressbar/
    16 //>>demos: http://jqueryui.com/progressbar/
     15//>>docs: https://api.jqueryui.com/progressbar/
     16//>>demos: https://jqueryui.com/progressbar/
    1717//>>css.structure: ../../themes/base/core.css
    1818//>>css.structure: ../../themes/base/progressbar.css
     
    2727        define( [
    2828            "jquery",
    29             "./core"
     29            "../version",
     30            "../widget"
    3031        ], factory );
    3132    } else {
     
    3839
    3940return $.widget( "ui.progressbar", {
    40     version: "1.13.2",
     41    version: "1.13.3",
    4142    options: {
    4243        classes: {
  • trunk/src/js/_enqueues/vendor/jquery/ui/resizable.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Resizable 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Resizable 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Interactions
    1212//>>description: Enables resize functionality for any element.
    13 //>>docs: http://api.jqueryui.com/resizable/
    14 //>>demos: http://jqueryui.com/resizable/
     13//>>docs: https://api.jqueryui.com/resizable/
     14//>>demos: https://jqueryui.com/resizable/
    1515//>>css.structure: ../../themes/base/core.css
    1616//>>css.structure: ../../themes/base/resizable.css
     
    2626            "jquery",
    2727            "./mouse",
    28             "./core"
     28            "../disable-selection",
     29            "../plugin",
     30            "../version",
     31            "../widget"
    2932        ], factory );
    3033    } else {
     
    3740
    3841$.widget( "ui.resizable", $.ui.mouse, {
    39     version: "1.13.2",
     42    version: "1.13.3",
    4043    widgetEventPrefix: "resize",
    4144    options: {
     
    531534            props.left = this.position.left + "px";
    532535        }
     536
     537        this.helper.css( props );
     538
    533539        if ( this.size.width !== this.prevSize.width ) {
    534540            props.width = this.size.width + "px";
     541            this.helper.width( props.width );
    535542        }
    536543        if ( this.size.height !== this.prevSize.height ) {
    537544            props.height = this.size.height + "px";
    538         }
    539 
    540         this.helper.css( props );
     545            this.helper.height( props.height );
     546        }
    541547
    542548        return props;
     
    10461052            var el = $( this );
    10471053            el.data( "ui-resizable-alsoresize", {
    1048                 width: parseFloat( el.width() ), height: parseFloat( el.height() ),
     1054                width: parseFloat( el.css( "width" ) ), height: parseFloat( el.css( "height" ) ),
    10491055                left: parseFloat( el.css( "left" ) ), top: parseFloat( el.css( "top" ) )
    10501056            } );
  • trunk/src/js/_enqueues/vendor/jquery/ui/selectable.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Selectable 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Selectable 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Interactions
    1212//>>description: Allows groups of elements to be selected with the mouse.
    13 //>>docs: http://api.jqueryui.com/selectable/
    14 //>>demos: http://jqueryui.com/selectable/
     13//>>docs: https://api.jqueryui.com/selectable/
     14//>>demos: https://jqueryui.com/selectable/
    1515//>>css.structure: ../../themes/base/selectable.css
    1616
     
    2424            "jquery",
    2525            "./mouse",
    26             "./core"
     26            "../version",
     27            "../widget"
    2728        ], factory );
    2829    } else {
     
    3536
    3637return $.widget( "ui.selectable", $.ui.mouse, {
    37     version: "1.13.2",
     38    version: "1.13.3",
    3839    options: {
    3940        appendTo: "body",
  • trunk/src/js/_enqueues/vendor/jquery/ui/selectmenu.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Selectmenu 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Selectmenu 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1313//>>description: Duplicates and extends the functionality of a native HTML select element, allowing it to be customizable in behavior and appearance far beyond the limitations of a native select.
    1414/* eslint-enable max-len */
    15 //>>docs: http://api.jqueryui.com/selectmenu/
    16 //>>demos: http://jqueryui.com/selectmenu/
     15//>>docs: https://api.jqueryui.com/selectmenu/
     16//>>demos: https://jqueryui.com/selectmenu/
    1717//>>css.structure: ../../themes/base/core.css
    1818//>>css.structure: ../../themes/base/selectmenu.css, ../../themes/base/button.css
     
    2828            "jquery",
    2929            "./menu",
    30             "./core"
     30            "../form-reset-mixin",
     31            "../keycode",
     32            "../labels",
     33            "../position",
     34            "../unique-id",
     35            "../version",
     36            "../widget"
    3137        ], factory );
    3238    } else {
     
    3945
    4046return $.widget( "ui.selectmenu", [ $.ui.formResetMixin, {
    41     version: "1.13.2",
     47    version: "1.13.3",
    4248    defaultElement: "<select>",
    4349    options: {
     
    349355            this._addClass( li, null, "ui-state-disabled" );
    350356        }
    351         this._setText( wrapper, item.label );
     357
     358        if ( item.hidden ) {
     359            li.prop( "hidden", true );
     360        } else {
     361            this._setText( wrapper, item.label );
     362        }
    352363
    353364        return li.append( wrapper ).appendTo( ul );
     
    653664            data = [];
    654665        options.each( function( index, item ) {
    655             if ( item.hidden ) {
    656                 return;
    657             }
    658 
    659666            data.push( that._parseOption( $( item ), index ) );
    660667        } );
     
    670677            value: option.val(),
    671678            label: option.text(),
     679            hidden: optgroup.prop( "hidden" ) || option.prop( "hidden" ),
    672680            optgroup: optgroup.attr( "label" ) || "",
    673681            disabled: optgroup.prop( "disabled" ) || option.prop( "disabled" )
  • trunk/src/js/_enqueues/vendor/jquery/ui/slider.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Slider 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Slider 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Widgets
    1212//>>description: Displays a flexible slider with ranges and accessibility via keyboard.
    13 //>>docs: http://api.jqueryui.com/slider/
    14 //>>demos: http://jqueryui.com/slider/
     13//>>docs: https://api.jqueryui.com/slider/
     14//>>demos: https://jqueryui.com/slider/
    1515//>>css.structure: ../../themes/base/core.css
    1616//>>css.structure: ../../themes/base/slider.css
     
    2626            "jquery",
    2727            "./mouse",
    28             "./core"
     28            "../keycode",
     29            "../version",
     30            "../widget"
    2931        ], factory );
    3032    } else {
     
    3739
    3840return $.widget( "ui.slider", $.ui.mouse, {
    39     version: "1.13.2",
     41    version: "1.13.3",
    4042    widgetEventPrefix: "slide",
    4143
  • trunk/src/js/_enqueues/vendor/jquery/ui/sortable.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Sortable 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Sortable 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Interactions
    1212//>>description: Enables items in a list to be sorted using the mouse.
    13 //>>docs: http://api.jqueryui.com/sortable/
    14 //>>demos: http://jqueryui.com/sortable/
     13//>>docs: https://api.jqueryui.com/sortable/
     14//>>demos: https://jqueryui.com/sortable/
    1515//>>css.structure: ../../themes/base/sortable.css
    1616
     
    2424            "jquery",
    2525            "./mouse",
    26             "./core"
     26            "../data",
     27            "../ie",
     28            "../scroll-parent",
     29            "../version",
     30            "../widget"
    2731        ], factory );
    2832    } else {
     
    3539
    3640return $.widget( "ui.sortable", $.ui.mouse, {
    37     version: "1.13.2",
     41    version: "1.13.3",
    3842    widgetEventPrefix: "sort",
    3943    ready: false,
  • trunk/src/js/_enqueues/vendor/jquery/ui/spinner.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Spinner 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Spinner 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Widgets
    1212//>>description: Displays buttons to easily input numbers via the keyboard or mouse.
    13 //>>docs: http://api.jqueryui.com/spinner/
    14 //>>demos: http://jqueryui.com/spinner/
     13//>>docs: https://api.jqueryui.com/spinner/
     14//>>demos: https://jqueryui.com/spinner/
    1515//>>css.structure: ../../themes/base/core.css
    1616//>>css.structure: ../../themes/base/spinner.css
     
    2626            "jquery",
    2727            "./button",
    28             "./core"
     28            "../version",
     29            "../keycode",
     30            "../safe-active-element",
     31            "../widget"
    2932        ], factory );
    3033    } else {
     
    4851
    4952$.widget( "ui.spinner", {
    50     version: "1.13.2",
     53    version: "1.13.3",
    5154    defaultElement: "<input>",
    5255    widgetEventPrefix: "spin",
  • trunk/src/js/_enqueues/vendor/jquery/ui/tabs.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Tabs 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Tabs 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Widgets
    1212//>>description: Transforms a set of container elements into a tab structure.
    13 //>>docs: http://api.jqueryui.com/tabs/
    14 //>>demos: http://jqueryui.com/tabs/
     13//>>docs: https://api.jqueryui.com/tabs/
     14//>>demos: https://jqueryui.com/tabs/
    1515//>>css.structure: ../../themes/base/core.css
    1616//>>css.structure: ../../themes/base/tabs.css
     
    2525        define( [
    2626            "jquery",
    27             "./core"
     27            "../keycode",
     28            "../safe-active-element",
     29            "../unique-id",
     30            "../version",
     31            "../widget"
    2832        ], factory );
    2933    } else {
     
    3640
    3741$.widget( "ui.tabs", {
    38     version: "1.13.2",
     42    version: "1.13.3",
    3943    delay: 300,
    4044    options: {
     
    865869
    866870                    // support: jQuery <1.8
    867                     // http://bugs.jquery.com/ticket/11778
     871                    // https://bugs.jquery.com/ticket/11778
    868872                    setTimeout( function() {
    869873                        panel.html( response );
     
    876880
    877881                    // support: jQuery <1.8
    878                     // http://bugs.jquery.com/ticket/11778
     882                    // https://bugs.jquery.com/ticket/11778
    879883                    setTimeout( function() {
    880884                        complete( jqXHR, status );
  • trunk/src/js/_enqueues/vendor/jquery/ui/tooltip.js

    r54209 r58218  
    11/*!
    2  * jQuery UI Tooltip 1.13.2
    3  * http://jqueryui.com
     2 * jQuery UI Tooltip 1.13.3
     3 * https://jqueryui.com
    44 *
    5  * Copyright jQuery Foundation and other contributors
     5 * Copyright OpenJS Foundation and other contributors
    66 * Released under the MIT license.
    7  * http://jquery.org/license
     7 * https://jquery.org/license
    88 */
    99
     
    1111//>>group: Widgets
    1212//>>description: Shows additional information for any element on hover or focus.
    13 //>>docs: http://api.jqueryui.com/tooltip/
    14 //>>demos: http://jqueryui.com/tooltip/
     13//>>docs: https://api.jqueryui.com/tooltip/
     14//>>demos: https://jqueryui.com/tooltip/
    1515//>>css.structure: ../../themes/base/core.css
    1616//>>css.structure: ../../themes/base/tooltip.css
     
    2525        define( [
    2626            "jquery",
    27             "./core"
     27            "../keycode",
     28            "../position",
     29            "../unique-id",
     30            "../version",
     31            "../widget"
    2832        ], factory );
    2933    } else {
     
    3640
    3741$.widget( "ui.tooltip", {
    38     version: "1.13.2",
     42    version: "1.13.3",
    3943    options: {
    4044        classes: {
  • trunk/src/wp-includes/script-loader.php

    r58187 r58218  
    108108
    109109    $vendor_scripts_versions = array(
    110         'react'                       => '18.3.1',
    111         'react-dom'                   => '18.3.1',
     110        'react'                       => '18.2.0',
     111        'react-dom'                   => '18.2.0',
    112112        'regenerator-runtime'         => '0.14.0',
    113113        'moment'                      => '2.29.4',
     
    882882     * A notable change is that 'jquery-ui-core' now contains 'jquery-ui-position' and 'jquery-ui-widget'.
    883883     */
    884     $scripts->add( 'jquery-ui-core', "/wp-includes/js/jquery/ui/core$suffix.js", array( 'jquery' ), '1.13.2', 1 );
    885     $scripts->add( 'jquery-effects-core', "/wp-includes/js/jquery/ui/effect$suffix.js", array( 'jquery' ), '1.13.2', 1 );
    886 
    887     $scripts->add( 'jquery-effects-blind', "/wp-includes/js/jquery/ui/effect-blind$suffix.js", array( 'jquery-effects-core' ), '1.13.2', 1 );
    888     $scripts->add( 'jquery-effects-bounce', "/wp-includes/js/jquery/ui/effect-bounce$suffix.js", array( 'jquery-effects-core' ), '1.13.2', 1 );
    889     $scripts->add( 'jquery-effects-clip', "/wp-includes/js/jquery/ui/effect-clip$suffix.js", array( 'jquery-effects-core' ), '1.13.2', 1 );
    890     $scripts->add( 'jquery-effects-drop', "/wp-includes/js/jquery/ui/effect-drop$suffix.js", array( 'jquery-effects-core' ), '1.13.2', 1 );
    891     $scripts->add( 'jquery-effects-explode', "/wp-includes/js/jquery/ui/effect-explode$suffix.js", array( 'jquery-effects-core' ), '1.13.2', 1 );
    892     $scripts->add( 'jquery-effects-fade', "/wp-includes/js/jquery/ui/effect-fade$suffix.js", array( 'jquery-effects-core' ), '1.13.2', 1 );
    893     $scripts->add( 'jquery-effects-fold', "/wp-includes/js/jquery/ui/effect-fold$suffix.js", array( 'jquery-effects-core' ), '1.13.2', 1 );
    894     $scripts->add( 'jquery-effects-highlight', "/wp-includes/js/jquery/ui/effect-highlight$suffix.js", array( 'jquery-effects-core' ), '1.13.2', 1 );
    895     $scripts->add( 'jquery-effects-puff', "/wp-includes/js/jquery/ui/effect-puff$suffix.js", array( 'jquery-effects-core', 'jquery-effects-scale' ), '1.13.2', 1 );
    896     $scripts->add( 'jquery-effects-pulsate', "/wp-includes/js/jquery/ui/effect-pulsate$suffix.js", array( 'jquery-effects-core' ), '1.13.2', 1 );
    897     $scripts->add( 'jquery-effects-scale', "/wp-includes/js/jquery/ui/effect-scale$suffix.js", array( 'jquery-effects-core', 'jquery-effects-size' ), '1.13.2', 1 );
    898     $scripts->add( 'jquery-effects-shake', "/wp-includes/js/jquery/ui/effect-shake$suffix.js", array( 'jquery-effects-core' ), '1.13.2', 1 );
    899     $scripts->add( 'jquery-effects-size', "/wp-includes/js/jquery/ui/effect-size$suffix.js", array( 'jquery-effects-core' ), '1.13.2', 1 );
    900     $scripts->add( 'jquery-effects-slide', "/wp-includes/js/jquery/ui/effect-slide$suffix.js", array( 'jquery-effects-core' ), '1.13.2', 1 );
    901     $scripts->add( 'jquery-effects-transfer', "/wp-includes/js/jquery/ui/effect-transfer$suffix.js", array( 'jquery-effects-core' ), '1.13.2', 1 );
     884    $scripts->add( 'jquery-ui-core', "/wp-includes/js/jquery/ui/core$suffix.js", array( 'jquery' ), '1.13.3', 1 );
     885    $scripts->add( 'jquery-effects-core', "/wp-includes/js/jquery/ui/effect$suffix.js", array( 'jquery' ), '1.13.3', 1 );
     886
     887    $scripts->add( 'jquery-effects-blind', "/wp-includes/js/jquery/ui/effect-blind$suffix.js", array( 'jquery-effects-core' ), '1.13.3', 1 );
     888    $scripts->add( 'jquery-effects-bounce', "/wp-includes/js/jquery/ui/effect-bounce$suffix.js", array( 'jquery-effects-core' ), '1.13.3', 1 );
     889    $scripts->add( 'jquery-effects-clip', "/wp-includes/js/jquery/ui/effect-clip$suffix.js", array( 'jquery-effects-core' ), '1.13.3', 1 );
     890    $scripts->add( 'jquery-effects-drop', "/wp-includes/js/jquery/ui/effect-drop$suffix.js", array( 'jquery-effects-core' ), '1.13.3', 1 );
     891    $scripts->add( 'jquery-effects-explode', "/wp-includes/js/jquery/ui/effect-explode$suffix.js", array( 'jquery-effects-core' ), '1.13.3', 1 );
     892    $scripts->add( 'jquery-effects-fade', "/wp-includes/js/jquery/ui/effect-fade$suffix.js", array( 'jquery-effects-core' ), '1.13.3', 1 );
     893    $scripts->add( 'jquery-effects-fold', "/wp-includes/js/jquery/ui/effect-fold$suffix.js", array( 'jquery-effects-core' ), '1.13.3', 1 );
     894    $scripts->add( 'jquery-effects-highlight', "/wp-includes/js/jquery/ui/effect-highlight$suffix.js", array( 'jquery-effects-core' ), '1.13.3', 1 );
     895    $scripts->add( 'jquery-effects-puff', "/wp-includes/js/jquery/ui/effect-puff$suffix.js", array( 'jquery-effects-core', 'jquery-effects-scale' ), '1.13.3', 1 );
     896    $scripts->add( 'jquery-effects-pulsate', "/wp-includes/js/jquery/ui/effect-pulsate$suffix.js", array( 'jquery-effects-core' ), '1.13.3', 1 );
     897    $scripts->add( 'jquery-effects-scale', "/wp-includes/js/jquery/ui/effect-scale$suffix.js", array( 'jquery-effects-core', 'jquery-effects-size' ), '1.13.3', 1 );
     898    $scripts->add( 'jquery-effects-shake', "/wp-includes/js/jquery/ui/effect-shake$suffix.js", array( 'jquery-effects-core' ), '1.13.3', 1 );
     899    $scripts->add( 'jquery-effects-size', "/wp-includes/js/jquery/ui/effect-size$suffix.js", array( 'jquery-effects-core' ), '1.13.3', 1 );
     900    $scripts->add( 'jquery-effects-slide', "/wp-includes/js/jquery/ui/effect-slide$suffix.js", array( 'jquery-effects-core' ), '1.13.3', 1 );
     901    $scripts->add( 'jquery-effects-transfer', "/wp-includes/js/jquery/ui/effect-transfer$suffix.js", array( 'jquery-effects-core' ), '1.13.3', 1 );
    902902
    903903    // Widgets
    904     $scripts->add( 'jquery-ui-accordion', "/wp-includes/js/jquery/ui/accordion$suffix.js", array( 'jquery-ui-core' ), '1.13.2', 1 );
    905     $scripts->add( 'jquery-ui-autocomplete', "/wp-includes/js/jquery/ui/autocomplete$suffix.js", array( 'jquery-ui-menu', 'wp-a11y' ), '1.13.2', 1 );
    906     $scripts->add( 'jquery-ui-button', "/wp-includes/js/jquery/ui/button$suffix.js", array( 'jquery-ui-core', 'jquery-ui-controlgroup', 'jquery-ui-checkboxradio' ), '1.13.2', 1 );
    907     $scripts->add( 'jquery-ui-datepicker', "/wp-includes/js/jquery/ui/datepicker$suffix.js", array( 'jquery-ui-core' ), '1.13.2', 1 );
    908     $scripts->add( 'jquery-ui-dialog', "/wp-includes/js/jquery/ui/dialog$suffix.js", array( 'jquery-ui-resizable', 'jquery-ui-draggable', 'jquery-ui-button' ), '1.13.2', 1 );
    909     $scripts->add( 'jquery-ui-menu', "/wp-includes/js/jquery/ui/menu$suffix.js", array( 'jquery-ui-core' ), '1.13.2', 1 );
    910     $scripts->add( 'jquery-ui-mouse', "/wp-includes/js/jquery/ui/mouse$suffix.js", array( 'jquery-ui-core' ), '1.13.2', 1 );
    911     $scripts->add( 'jquery-ui-progressbar', "/wp-includes/js/jquery/ui/progressbar$suffix.js", array( 'jquery-ui-core' ), '1.13.2', 1 );
    912     $scripts->add( 'jquery-ui-selectmenu', "/wp-includes/js/jquery/ui/selectmenu$suffix.js", array( 'jquery-ui-menu' ), '1.13.2', 1 );
    913     $scripts->add( 'jquery-ui-slider', "/wp-includes/js/jquery/ui/slider$suffix.js", array( 'jquery-ui-mouse' ), '1.13.2', 1 );
    914     $scripts->add( 'jquery-ui-spinner', "/wp-includes/js/jquery/ui/spinner$suffix.js", array( 'jquery-ui-button' ), '1.13.2', 1 );
    915     $scripts->add( 'jquery-ui-tabs', "/wp-includes/js/jquery/ui/tabs$suffix.js", array( 'jquery-ui-core' ), '1.13.2', 1 );
    916     $scripts->add( 'jquery-ui-tooltip', "/wp-includes/js/jquery/ui/tooltip$suffix.js", array( 'jquery-ui-core' ), '1.13.2', 1 );
     904    $scripts->add( 'jquery-ui-accordion', "/wp-includes/js/jquery/ui/accordion$suffix.js", array( 'jquery-ui-core' ), '1.13.3', 1 );
     905    $scripts->add( 'jquery-ui-autocomplete', "/wp-includes/js/jquery/ui/autocomplete$suffix.js", array( 'jquery-ui-menu', 'wp-a11y' ), '1.13.3', 1 );
     906    $scripts->add( 'jquery-ui-button', "/wp-includes/js/jquery/ui/button$suffix.js", array( 'jquery-ui-core', 'jquery-ui-controlgroup', 'jquery-ui-checkboxradio' ), '1.13.3', 1 );
     907    $scripts->add( 'jquery-ui-datepicker', "/wp-includes/js/jquery/ui/datepicker$suffix.js", array( 'jquery-ui-core' ), '1.13.3', 1 );
     908    $scripts->add( 'jquery-ui-dialog', "/wp-includes/js/jquery/ui/dialog$suffix.js", array( 'jquery-ui-resizable', 'jquery-ui-draggable', 'jquery-ui-button' ), '1.13.3', 1 );
     909    $scripts->add( 'jquery-ui-menu', "/wp-includes/js/jquery/ui/menu$suffix.js", array( 'jquery-ui-core' ), '1.13.3', 1 );
     910    $scripts->add( 'jquery-ui-mouse', "/wp-includes/js/jquery/ui/mouse$suffix.js", array( 'jquery-ui-core' ), '1.13.3', 1 );
     911    $scripts->add( 'jquery-ui-progressbar', "/wp-includes/js/jquery/ui/progressbar$suffix.js", array( 'jquery-ui-core' ), '1.13.3', 1 );
     912    $scripts->add( 'jquery-ui-selectmenu', "/wp-includes/js/jquery/ui/selectmenu$suffix.js", array( 'jquery-ui-menu' ), '1.13.3', 1 );
     913    $scripts->add( 'jquery-ui-slider', "/wp-includes/js/jquery/ui/slider$suffix.js", array( 'jquery-ui-mouse' ), '1.13.3', 1 );
     914    $scripts->add( 'jquery-ui-spinner', "/wp-includes/js/jquery/ui/spinner$suffix.js", array( 'jquery-ui-button' ), '1.13.3', 1 );
     915    $scripts->add( 'jquery-ui-tabs', "/wp-includes/js/jquery/ui/tabs$suffix.js", array( 'jquery-ui-core' ), '1.13.3', 1 );
     916    $scripts->add( 'jquery-ui-tooltip', "/wp-includes/js/jquery/ui/tooltip$suffix.js", array( 'jquery-ui-core' ), '1.13.3', 1 );
    917917
    918918    // New in 1.12.1
    919     $scripts->add( 'jquery-ui-checkboxradio', "/wp-includes/js/jquery/ui/checkboxradio$suffix.js", array( 'jquery-ui-core' ), '1.13.2', 1 );
    920     $scripts->add( 'jquery-ui-controlgroup', "/wp-includes/js/jquery/ui/controlgroup$suffix.js", array( 'jquery-ui-core' ), '1.13.2', 1 );
     919    $scripts->add( 'jquery-ui-checkboxradio', "/wp-includes/js/jquery/ui/checkboxradio$suffix.js", array( 'jquery-ui-core' ), '1.13.3', 1 );
     920    $scripts->add( 'jquery-ui-controlgroup', "/wp-includes/js/jquery/ui/controlgroup$suffix.js", array( 'jquery-ui-core' ), '1.13.3', 1 );
    921921
    922922    // Interactions
    923     $scripts->add( 'jquery-ui-draggable', "/wp-includes/js/jquery/ui/draggable$suffix.js", array( 'jquery-ui-mouse' ), '1.13.2', 1 );
    924     $scripts->add( 'jquery-ui-droppable', "/wp-includes/js/jquery/ui/droppable$suffix.js", array( 'jquery-ui-draggable' ), '1.13.2', 1 );
    925     $scripts->add( 'jquery-ui-resizable', "/wp-includes/js/jquery/ui/resizable$suffix.js", array( 'jquery-ui-mouse' ), '1.13.2', 1 );
    926     $scripts->add( 'jquery-ui-selectable', "/wp-includes/js/jquery/ui/selectable$suffix.js", array( 'jquery-ui-mouse' ), '1.13.2', 1 );
    927     $scripts->add( 'jquery-ui-sortable', "/wp-includes/js/jquery/ui/sortable$suffix.js", array( 'jquery-ui-mouse' ), '1.13.2', 1 );
     923    $scripts->add( 'jquery-ui-draggable', "/wp-includes/js/jquery/ui/draggable$suffix.js", array( 'jquery-ui-mouse' ), '1.13.3', 1 );
     924    $scripts->add( 'jquery-ui-droppable', "/wp-includes/js/jquery/ui/droppable$suffix.js", array( 'jquery-ui-draggable' ), '1.13.3', 1 );
     925    $scripts->add( 'jquery-ui-resizable', "/wp-includes/js/jquery/ui/resizable$suffix.js", array( 'jquery-ui-mouse' ), '1.13.3', 1 );
     926    $scripts->add( 'jquery-ui-selectable', "/wp-includes/js/jquery/ui/selectable$suffix.js", array( 'jquery-ui-mouse' ), '1.13.3', 1 );
     927    $scripts->add( 'jquery-ui-sortable', "/wp-includes/js/jquery/ui/sortable$suffix.js", array( 'jquery-ui-mouse' ), '1.13.3', 1 );
    928928
    929929    /*
     
    931931     * Listed here for back-compat.
    932932     */
    933     $scripts->add( 'jquery-ui-position', false, array( 'jquery-ui-core' ), '1.13.2', 1 );
    934     $scripts->add( 'jquery-ui-widget', false, array( 'jquery-ui-core' ), '1.13.2', 1 );
     933    $scripts->add( 'jquery-ui-position', false, array( 'jquery-ui-core' ), '1.13.3', 1 );
     934    $scripts->add( 'jquery-ui-widget', false, array( 'jquery-ui-core' ), '1.13.3', 1 );
    935935
    936936    // Deprecated, not used in core, most functionality is included in jQuery 1.3.
Note: See TracChangeset for help on using the changeset viewer.