Changeset 58218
- Timestamp:
- 05/27/2024 09:12:08 PM (10 months ago)
- Location:
- trunk/src
- Files:
-
- 38 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/js/_enqueues/vendor/jquery/ui/accordion.js
r54209 r58218 1 1 /*! 2 * jQuery UI Accordion 1.13. 23 * http ://jqueryui.com2 * jQuery UI Accordion 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 13 13 //>>description: Displays collapsible content panels for presenting information in a limited amount of space. 14 14 /* 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/ 17 17 //>>css.structure: ../../themes/base/core.css 18 18 //>>css.structure: ../../themes/base/accordion.css … … 27 27 define( [ 28 28 "jquery", 29 "./core" 29 "../version", 30 "../keycode", 31 "../unique-id", 32 "../widget" 30 33 ], factory ); 31 34 } else { … … 38 41 39 42 return $.widget( "ui.accordion", { 40 version: "1.13. 2",43 version: "1.13.3", 41 44 options: { 42 45 active: 0, -
trunk/src/js/_enqueues/vendor/jquery/ui/autocomplete.js
r54209 r58218 1 1 /*! 2 * jQuery UI Autocomplete 1.13. 23 * http ://jqueryui.com2 * jQuery UI Autocomplete 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Widgets 12 12 //>>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/ 15 15 //>>css.structure: ../../themes/base/core.css 16 16 //>>css.structure: ../../themes/base/autocomplete.css … … 26 26 "jquery", 27 27 "./menu", 28 "./core" 28 "../keycode", 29 "../position", 30 "../safe-active-element", 31 "../version", 32 "../widget" 29 33 ], factory ); 30 34 } else { … … 37 41 38 42 $.widget( "ui.autocomplete", { 39 version: "1.13. 2",43 version: "1.13.3", 40 44 defaultElement: "<input>", 41 45 options: { -
trunk/src/js/_enqueues/vendor/jquery/ui/button.js
r54209 r58218 1 1 /*! 2 * jQuery UI Button 1.13. 23 * http ://jqueryui.com2 * jQuery UI Button 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Widgets 12 12 //>>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/ 15 15 //>>css.structure: ../../themes/base/core.css 16 16 //>>css.structure: ../../themes/base/button.css … … 31 31 "./checkboxradio", 32 32 33 "./core" 33 "../keycode", 34 "../widget" 34 35 ], factory ); 35 36 } else { … … 42 43 43 44 $.widget( "ui.button", { 44 version: "1.13. 2",45 version: "1.13.3", 45 46 defaultElement: "<button>", 46 47 options: { -
trunk/src/js/_enqueues/vendor/jquery/ui/checkboxradio.js
r54209 r58218 1 1 /*! 2 * jQuery UI Checkboxradio 1.13. 23 * http ://jqueryui.com2 * jQuery UI Checkboxradio 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Widgets 12 12 //>>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/ 15 15 //>>css.structure: ../../themes/base/core.css 16 16 //>>css.structure: ../../themes/base/button.css … … 26 26 define( [ 27 27 "jquery", 28 "./core" 28 "../form-reset-mixin", 29 "../labels", 30 "../widget" 29 31 ], factory ); 30 32 } else { … … 37 39 38 40 $.widget( "ui.checkboxradio", [ $.ui.formResetMixin, { 39 version: "1.13. 2",41 version: "1.13.3", 40 42 options: { 41 43 disabled: null, -
trunk/src/js/_enqueues/vendor/jquery/ui/controlgroup.js
r54209 r58218 1 1 /*! 2 * jQuery UI Controlgroup 1.13. 23 * http ://jqueryui.com2 * jQuery UI Controlgroup 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Widgets 12 12 //>>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/ 15 15 //>>css.structure: ../../themes/base/core.css 16 16 //>>css.structure: ../../themes/base/controlgroup.css … … 25 25 define( [ 26 26 "jquery", 27 ". /core"27 "../widget" 28 28 ], factory ); 29 29 } else { … … 37 37 var controlgroupCornerRegex = /ui-corner-([a-z]){2,6}/g; 38 38 39 $.widget( "ui.controlgroup", {40 version: "1.13. 2",39 return $.widget( "ui.controlgroup", { 40 version: "1.13.3", 41 41 defaultElement: "<div>", 42 42 options: { -
trunk/src/js/_enqueues/vendor/jquery/ui/core.js
r54209 r58218 1 /*! jQuery UI - v1.13. 2 - 2022-07-142 * http ://jqueryui.com1 /*! jQuery UI - v1.13.3 - 2024-04-26 2 * https://jqueryui.com 3 3 * 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 4 4 * Copyright jQuery Foundation and other contributors; Licensed MIT */ … … 21 21 $.ui = $.ui || {}; 22 22 23 $.ui.version = "1.13. 2";23 $.ui.version = "1.13.3"; 24 24 25 25 // Source: data.js 26 26 /*! 27 * jQuery UI :data 1.13. 228 * http ://jqueryui.com27 * jQuery UI :data 1.13.3 28 * https://jqueryui.com 29 29 * 30 * Copyright jQueryFoundation and other contributors30 * Copyright OpenJS Foundation and other contributors 31 31 * Released under the MIT license. 32 * http ://jquery.org/license32 * https://jquery.org/license 33 33 */ 34 34 … … 36 36 //>>group: Core 37 37 //>>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/ 39 39 40 40 $.extend( $.expr.pseudos, { … … 54 54 // Source: disable-selection.js 55 55 /*! 56 * jQuery UI Disable Selection 1.13. 257 * http ://jqueryui.com56 * jQuery UI Disable Selection 1.13.3 57 * https://jqueryui.com 58 58 * 59 * Copyright jQueryFoundation and other contributors59 * Copyright OpenJS Foundation and other contributors 60 60 * Released under the MIT license. 61 * http ://jquery.org/license61 * https://jquery.org/license 62 62 */ 63 63 … … 65 65 //>>group: Core 66 66 //>>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/ 68 68 69 69 // This file is deprecated … … 88 88 // Source: focusable.js 89 89 /*! 90 * jQuery UI Focusable 1.13. 291 * http ://jqueryui.com90 * jQuery UI Focusable 1.13.3 91 * https://jqueryui.com 92 92 * 93 * Copyright jQueryFoundation and other contributors93 * Copyright OpenJS Foundation and other contributors 94 94 * Released under the MIT license. 95 * http ://jquery.org/license95 * https://jquery.org/license 96 96 */ 97 97 … … 99 99 //>>group: Core 100 100 //>>description: Selects elements which can be focused. 101 //>>docs: http ://api.jqueryui.com/focusable-selector/101 //>>docs: https://api.jqueryui.com/focusable-selector/ 102 102 103 103 // Selectors … … 165 165 // Source: form-reset-mixin.js 166 166 /*! 167 * jQuery UI Form Reset Mixin 1.13. 2168 * http ://jqueryui.com167 * jQuery UI Form Reset Mixin 1.13.3 168 * https://jqueryui.com 169 169 * 170 * Copyright jQueryFoundation and other contributors170 * Copyright OpenJS Foundation and other contributors 171 171 * Released under the MIT license. 172 * http ://jquery.org/license172 * https://jquery.org/license 173 173 */ 174 174 … … 176 176 //>>group: Core 177 177 //>>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/ 179 179 180 180 $.ui.formResetMixin = { … … 230 230 // Source: jquery-patch.js 231 231 /*! 232 * jQuery UI Support for jQuery core 1.8.x and newer 1.13. 2233 * http ://jqueryui.com232 * jQuery UI Support for jQuery core 1.8.x and newer 1.13.3 233 * https://jqueryui.com 234 234 * 235 * Copyright jQueryFoundation and other contributors235 * Copyright OpenJS Foundation and other contributors 236 236 * Released under the MIT license. 237 * http ://jquery.org/license237 * https://jquery.org/license 238 238 * 239 239 */ … … 304 304 // Source: keycode.js 305 305 /*! 306 * jQuery UI Keycode 1.13. 2307 * http ://jqueryui.com306 * jQuery UI Keycode 1.13.3 307 * https://jqueryui.com 308 308 * 309 * Copyright jQueryFoundation and other contributors309 * Copyright OpenJS Foundation and other contributors 310 310 * Released under the MIT license. 311 * http ://jquery.org/license311 * https://jquery.org/license 312 312 */ 313 313 … … 315 315 //>>group: Core 316 316 //>>description: Provide keycodes as keynames 317 //>>docs: http ://api.jqueryui.com/jQuery.ui.keyCode/317 //>>docs: https://api.jqueryui.com/jQuery.ui.keyCode/ 318 318 319 319 $.ui.keyCode = { … … 338 338 // Source: labels.js 339 339 /*! 340 * jQuery UI Labels 1.13. 2341 * http ://jqueryui.com340 * jQuery UI Labels 1.13.3 341 * https://jqueryui.com 342 342 * 343 * Copyright jQueryFoundation and other contributors343 * Copyright OpenJS Foundation and other contributors 344 344 * Released under the MIT license. 345 * http ://jquery.org/license345 * https://jquery.org/license 346 346 */ 347 347 … … 349 349 //>>group: Core 350 350 //>>description: Find all the labels associated with a given input 351 //>>docs: http ://api.jqueryui.com/labels/351 //>>docs: https://api.jqueryui.com/labels/ 352 352 353 353 $.fn.labels = function() { … … 424 424 // Source: position.js 425 425 /*! 426 * jQuery UI Position 1.13. 2427 * http ://jqueryui.com426 * jQuery UI Position 1.13.3 427 * https://jqueryui.com 428 428 * 429 * Copyright jQueryFoundation and other contributors429 * Copyright OpenJS Foundation and other contributors 430 430 * Released under the MIT license. 431 * http ://jquery.org/license431 * https://jquery.org/license 432 432 * 433 * http ://api.jqueryui.com/position/433 * https://api.jqueryui.com/position/ 434 434 */ 435 435 … … 437 437 //>>group: Core 438 438 //>>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/ 441 441 442 442 ( function() { … … 957 957 // Source: scroll-parent.js 958 958 /*! 959 * jQuery UI Scroll Parent 1.13. 2960 * http ://jqueryui.com959 * jQuery UI Scroll Parent 1.13.3 960 * https://jqueryui.com 961 961 * 962 * Copyright jQueryFoundation and other contributors962 * Copyright OpenJS Foundation and other contributors 963 963 * Released under the MIT license. 964 * http ://jquery.org/license964 * https://jquery.org/license 965 965 */ 966 966 … … 968 968 //>>group: Core 969 969 //>>description: Get the closest ancestor element that is scrollable. 970 //>>docs: http ://api.jqueryui.com/scrollParent/970 //>>docs: https://api.jqueryui.com/scrollParent/ 971 971 972 972 $.fn.scrollParent = function( includeHidden ) { … … 990 990 // Source: tabbable.js 991 991 /*! 992 * jQuery UI Tabbable 1.13. 2993 * http ://jqueryui.com992 * jQuery UI Tabbable 1.13.3 993 * https://jqueryui.com 994 994 * 995 * Copyright jQueryFoundation and other contributors995 * Copyright OpenJS Foundation and other contributors 996 996 * Released under the MIT license. 997 * http ://jquery.org/license997 * https://jquery.org/license 998 998 */ 999 999 … … 1001 1001 //>>group: Core 1002 1002 //>>description: Selects elements which can be tabbed to. 1003 //>>docs: http ://api.jqueryui.com/tabbable-selector/1003 //>>docs: https://api.jqueryui.com/tabbable-selector/ 1004 1004 1005 1005 $.extend( $.expr.pseudos, { … … 1013 1013 // Source: unique-id.js 1014 1014 /*! 1015 * jQuery UI Unique ID 1.13. 21016 * http ://jqueryui.com1015 * jQuery UI Unique ID 1.13.3 1016 * https://jqueryui.com 1017 1017 * 1018 * Copyright jQueryFoundation and other contributors1018 * Copyright OpenJS Foundation and other contributors 1019 1019 * Released under the MIT license. 1020 * http ://jquery.org/license1020 * https://jquery.org/license 1021 1021 */ 1022 1022 … … 1024 1024 //>>group: Core 1025 1025 //>>description: Functions to generate and remove uniqueId's 1026 //>>docs: http ://api.jqueryui.com/uniqueId/1026 //>>docs: https://api.jqueryui.com/uniqueId/ 1027 1027 1028 1028 $.fn.extend( { … … 1050 1050 // Source: widget.js 1051 1051 /*! 1052 * jQuery UI Widget 1.13. 21053 * http ://jqueryui.com1052 * jQuery UI Widget 1.13.3 1053 * https://jqueryui.com 1054 1054 * 1055 * Copyright jQueryFoundation and other contributors1055 * Copyright OpenJS Foundation and other contributors 1056 1056 * Released under the MIT license. 1057 * http ://jquery.org/license1057 * https://jquery.org/license 1058 1058 */ 1059 1059 … … 1061 1061 //>>group: Core 1062 1062 //>>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/ 1065 1065 1066 1066 var widgetUuid = 0; -
trunk/src/js/_enqueues/vendor/jquery/ui/datepicker.js
r54209 r58218 1 1 /* eslint-disable max-len, camelcase */ 2 2 /*! 3 * jQuery UI Datepicker 1.13. 24 * http ://jqueryui.com3 * jQuery UI Datepicker 1.13.3 4 * https://jqueryui.com 5 5 * 6 * Copyright jQueryFoundation and other contributors6 * Copyright OpenJS Foundation and other contributors 7 7 * Released under the MIT license. 8 * http ://jquery.org/license8 * https://jquery.org/license 9 9 */ 10 10 … … 12 12 //>>group: Widgets 13 13 //>>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/ 16 16 //>>css.structure: ../../themes/base/core.css 17 17 //>>css.structure: ../../themes/base/datepicker.css … … 26 26 define( [ 27 27 "jquery", 28 "./core" 28 "../version", 29 "../keycode" 29 30 ], factory ); 30 31 } else { … … 36 37 "use strict"; 37 38 38 $.extend( $.ui, { datepicker: { version: "1.13. 2" } } );39 $.extend( $.ui, { datepicker: { version: "1.13.3" } } ); 39 40 40 41 var datepicker_instActive; … … 353 354 354 355 // 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 height356 // https://bugs.jqueryui.com/ticket/7552 - A Datepicker created on a detached div has zero height 356 357 inst.dpDiv.css( "display", "block" ); 357 358 }, … … 2233 2234 $.datepicker.initialized = false; 2234 2235 $.datepicker.uuid = new Date().getTime(); 2235 $.datepicker.version = "1.13. 2";2236 $.datepicker.version = "1.13.3"; 2236 2237 2237 2238 return $.datepicker; -
trunk/src/js/_enqueues/vendor/jquery/ui/dialog.js
r54209 r58218 1 1 /*! 2 * jQuery UI Dialog 1.13. 23 * http ://jqueryui.com2 * jQuery UI Dialog 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Widgets 12 12 //>>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/ 15 15 //>>css.structure: ../../themes/base/core.css 16 16 //>>css.structure: ../../themes/base/dialog.css … … 29 29 "./mouse", 30 30 "./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" 32 40 ], factory ); 33 41 } else { … … 40 48 41 49 $.widget( "ui.dialog", { 42 version: "1.13. 2",50 version: "1.13.3", 43 51 options: { 44 52 appendTo: "body", … … 874 882 instance._focusTabbable(); 875 883 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. 880 889 // 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." ) { 882 893 instance._delay( instance._restoreTabbableFocus ); 883 894 } -
trunk/src/js/_enqueues/vendor/jquery/ui/draggable.js
r54209 r58218 1 1 /*! 2 * jQuery UI Draggable 1.13. 23 * http ://jqueryui.com2 * jQuery UI Draggable 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Interactions 12 12 //>>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/ 15 15 //>>css.structure: ../../themes/base/draggable.css 16 16 … … 24 24 "jquery", 25 25 "./mouse", 26 "./core" 26 "../data", 27 "../plugin", 28 "../safe-active-element", 29 "../safe-blur", 30 "../scroll-parent", 31 "../version", 32 "../widget" 27 33 ], factory ); 28 34 } else { … … 35 41 36 42 $.widget( "ui.draggable", $.ui.mouse, { 37 version: "1.13. 2",43 version: "1.13.3", 38 44 widgetEventPrefix: "drag", 39 45 options: { … … 381 387 } 382 388 383 // Http://bugs.jqueryui.com/ticket/9446389 // https://bugs.jqueryui.com/ticket/9446 384 390 // a helper function can return the original element 385 391 // which wouldn't have been set to relative in _create -
trunk/src/js/_enqueues/vendor/jquery/ui/droppable.js
r54209 r58218 1 1 /*! 2 * jQuery UI Droppable 1.13. 23 * http ://jqueryui.com2 * jQuery UI Droppable 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Interactions 12 12 //>>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/ 15 15 16 16 ( function( factory ) { … … 24 24 "./draggable", 25 25 "./mouse", 26 "./core" 26 "../version", 27 "../widget" 27 28 ], factory ); 28 29 } else { … … 35 36 36 37 $.widget( "ui.droppable", { 37 version: "1.13. 2",38 version: "1.13.3", 38 39 widgetEventPrefix: "drop", 39 40 options: { -
trunk/src/js/_enqueues/vendor/jquery/ui/effect-blind.js
r54209 r58218 1 1 /*! 2 * jQuery UI Effects Blind 1.13. 23 * http ://jqueryui.com2 * jQuery UI Effects Blind 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Effects 12 12 //>>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/ 15 15 16 16 ( function( factory ) { … … 22 22 define( [ 23 23 "jquery", 24 "./effect" 24 "../version", 25 "../effect" 25 26 ], factory ); 26 27 } else { -
trunk/src/js/_enqueues/vendor/jquery/ui/effect-bounce.js
r54209 r58218 1 1 /*! 2 * jQuery UI Effects Bounce 1.13. 23 * http ://jqueryui.com2 * jQuery UI Effects Bounce 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Effects 12 12 //>>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/ 15 15 16 16 ( function( factory ) { … … 22 22 define( [ 23 23 "jquery", 24 "./effect" 24 "../version", 25 "../effect" 25 26 ], factory ); 26 27 } else { -
trunk/src/js/_enqueues/vendor/jquery/ui/effect-clip.js
r54209 r58218 1 1 /*! 2 * jQuery UI Effects Clip 1.13. 23 * http ://jqueryui.com2 * jQuery UI Effects Clip 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Effects 12 12 //>>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/ 15 15 16 16 ( function( factory ) { … … 22 22 define( [ 23 23 "jquery", 24 "./effect" 24 "../version", 25 "../effect" 25 26 ], factory ); 26 27 } else { -
trunk/src/js/_enqueues/vendor/jquery/ui/effect-drop.js
r54209 r58218 1 1 /*! 2 * jQuery UI Effects Drop 1.13. 23 * http ://jqueryui.com2 * jQuery UI Effects Drop 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Effects 12 12 //>>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/ 15 15 16 16 ( function( factory ) { … … 22 22 define( [ 23 23 "jquery", 24 "./effect" 24 "../version", 25 "../effect" 25 26 ], factory ); 26 27 } else { -
trunk/src/js/_enqueues/vendor/jquery/ui/effect-explode.js
r54209 r58218 1 1 /*! 2 * jQuery UI Effects Explode 1.13. 23 * http ://jqueryui.com2 * jQuery UI Effects Explode 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 13 13 //>>description: Explodes an element in all directions into n pieces. Implodes an element to its original wholeness. 14 14 /* 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/ 17 17 18 18 ( function( factory ) { … … 24 24 define( [ 25 25 "jquery", 26 "./effect" 26 "../version", 27 "../effect" 27 28 ], factory ); 28 29 } else { -
trunk/src/js/_enqueues/vendor/jquery/ui/effect-fade.js
r54209 r58218 1 1 /*! 2 * jQuery UI Effects Fade 1.13. 23 * http ://jqueryui.com2 * jQuery UI Effects Fade 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Effects 12 12 //>>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/ 15 15 16 16 ( function( factory ) { … … 22 22 define( [ 23 23 "jquery", 24 "./effect" 24 "../version", 25 "../effect" 25 26 ], factory ); 26 27 } else { -
trunk/src/js/_enqueues/vendor/jquery/ui/effect-fold.js
r54209 r58218 1 1 /*! 2 * jQuery UI Effects Fold 1.13. 23 * http ://jqueryui.com2 * jQuery UI Effects Fold 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Effects 12 12 //>>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/ 15 15 16 16 ( function( factory ) { … … 22 22 define( [ 23 23 "jquery", 24 "./effect" 24 "../version", 25 "../effect" 25 26 ], factory ); 26 27 } else { -
trunk/src/js/_enqueues/vendor/jquery/ui/effect-highlight.js
r54209 r58218 1 1 /*! 2 * jQuery UI Effects Highlight 1.13. 23 * http ://jqueryui.com2 * jQuery UI Effects Highlight 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Effects 12 12 //>>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/ 15 15 16 16 ( function( factory ) { … … 22 22 define( [ 23 23 "jquery", 24 "./effect" 24 "../version", 25 "../effect" 25 26 ], factory ); 26 27 } else { -
trunk/src/js/_enqueues/vendor/jquery/ui/effect-puff.js
r54209 r58218 1 1 /*! 2 * jQuery UI Effects Puff 1.13. 23 * http ://jqueryui.com2 * jQuery UI Effects Puff 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Effects 12 12 //>>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/ 15 15 16 16 ( function( factory ) { … … 22 22 define( [ 23 23 "jquery", 24 "./effect", 24 "../version", 25 "../effect", 25 26 "./effect-scale" 26 27 ], factory ); -
trunk/src/js/_enqueues/vendor/jquery/ui/effect-pulsate.js
r54209 r58218 1 1 /*! 2 * jQuery UI Effects Pulsate 1.13. 23 * http ://jqueryui.com2 * jQuery UI Effects Pulsate 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Effects 12 12 //>>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/ 15 15 16 16 ( function( factory ) { … … 22 22 define( [ 23 23 "jquery", 24 "./effect" 24 "../version", 25 "../effect" 25 26 ], factory ); 26 27 } else { -
trunk/src/js/_enqueues/vendor/jquery/ui/effect-scale.js
r54209 r58218 1 1 /*! 2 * jQuery UI Effects Scale 1.13. 23 * http ://jqueryui.com2 * jQuery UI Effects Scale 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Effects 12 12 //>>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/ 15 15 16 16 ( function( factory ) { … … 22 22 define( [ 23 23 "jquery", 24 "./effect", 24 "../version", 25 "../effect", 25 26 "./effect-size" 26 27 ], factory ); -
trunk/src/js/_enqueues/vendor/jquery/ui/effect-shake.js
r54209 r58218 1 1 /*! 2 * jQuery UI Effects Shake 1.13. 23 * http ://jqueryui.com2 * jQuery UI Effects Shake 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Effects 12 12 //>>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/ 15 15 16 16 ( function( factory ) { … … 22 22 define( [ 23 23 "jquery", 24 "./effect" 24 "../version", 25 "../effect" 25 26 ], factory ); 26 27 } else { -
trunk/src/js/_enqueues/vendor/jquery/ui/effect-size.js
r54209 r58218 1 1 /*! 2 * jQuery UI Effects Size 1.13. 23 * http ://jqueryui.com2 * jQuery UI Effects Size 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Effects 12 12 //>>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/ 15 15 16 16 ( function( factory ) { … … 22 22 define( [ 23 23 "jquery", 24 "./effect" 24 "../version", 25 "../effect" 25 26 ], factory ); 26 27 } else { -
trunk/src/js/_enqueues/vendor/jquery/ui/effect-slide.js
r54209 r58218 1 1 /*! 2 * jQuery UI Effects Slide 1.13. 23 * http ://jqueryui.com2 * jQuery UI Effects Slide 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Effects 12 12 //>>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/ 15 15 16 16 ( function( factory ) { … … 22 22 define( [ 23 23 "jquery", 24 "./effect" 24 "../version", 25 "../effect" 25 26 ], factory ); 26 27 } else { -
trunk/src/js/_enqueues/vendor/jquery/ui/effect-transfer.js
r54209 r58218 1 1 /*! 2 * jQuery UI Effects Transfer 1.13. 23 * http ://jqueryui.com2 * jQuery UI Effects Transfer 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Effects 12 12 //>>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/ 15 15 16 16 ( function( factory ) { … … 22 22 define( [ 23 23 "jquery", 24 "./effect" 24 "../version", 25 "../effect" 25 26 ], factory ); 26 27 } else { -
trunk/src/js/_enqueues/vendor/jquery/ui/effect.js
r54209 r58218 1 1 /*! 2 * jQuery UI Effects 1.13. 23 * http ://jqueryui.com2 * jQuery UI Effects 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 13 13 //>>description: Extends the internal jQuery effects. Includes morphing and easing. Required by all other effects. 14 14 /* 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/ 17 17 18 18 ( function( factory ) { … … 22 22 23 23 // 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 ); 25 30 } else { 26 31 … … 30 35 } )( function( $ ) { 31 36 "use strict"; 32 33 // Include version.js34 $.ui = $.ui || {};35 $.ui.version = "1.13.1";36 37 // Source: jquery-var-for-color.js38 // Create a local jQuery because jQuery Color relies on it and the39 // 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-vars42 var jQuery = $;43 44 45 /*!46 * jQuery Color Animations v2.2.047 * https://github.com/jquery/jquery-color48 *49 * Copyright OpenJS Foundation and other contributors50 * Released under the MIT license.51 * http://jquery.org/license52 *53 * Date: Sun May 10 09:02:36 2020 +020054 */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 -= 10065 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 string91 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 1100 ];101 }102 }, {103 104 // this regex ignores A-F because it's compared against an already lowercased string105 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 1115 ];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: 255173 },174 "percent": {175 max: 1176 },177 "degrees": {178 mod: 360,179 floor: true180 }181 },182 support = color.support = {},183 184 // element for support tests185 supportElem = jQuery( "<p>" )[ 0 ],186 187 // colors = jQuery.Color.names188 colors,189 190 // local aliases of functions called often191 each = jQuery.each;192 193 // determine rgba support immediately194 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 properties198 // for rgba and hsla spaces199 each( spaces, function( spaceName, space ) {200 space.cache = "_" + spaceName;201 space.props.alpha = {202 idx: 3,203 type: "percent",204 def: 1205 };206 } );207 208 // Populate the class2type map209 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 numbers232 value = type.floor ? ~~value : parseFloat( value );233 234 // IE will pass in empty strings as value for alpha,235 // which will hit this case236 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 values243 // get converted properly: -10 -> 350244 return ( value + type.mod ) % type.mod;245 }246 247 // for now all property types without mod have min and max248 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 twice267 // 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 matched272 return false;273 }274 } );275 276 // Found a stringParser that handled it277 if ( rgba.length ) {278 279 // if this came from a parsed string, force "transparent" when alpha is 0280 // 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 colors288 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 convert336 if ( !inst[ cache ] && space.to ) {337 338 // if the value was null, we don't need to copy it339 // if the key was alpha, we don't need to copy it either340 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 alwaysAllowEmpty348 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 1355 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 value415 if ( endValue === null ) {416 return;417 }418 419 // if null - use end420 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 ourself438 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 2474 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 exist497 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=5021509 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 a577 ];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 exist591 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 space624 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 properties664 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.style679 ) {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 including729 // jquery.color.svg-names.js.730 colors = jQuery.Color.names = {731 732 // 4.1. Basic color keywords733 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 keyword751 transparent: [ null, null, null, 0 ],752 753 _default: "#ffffff"754 };755 37 756 38 var dataSpace = "ui-effects-", … … 1121 403 1122 404 $.extend( $.effects, { 1123 version: "1.13. 2",405 version: "1.13.3", 1124 406 1125 407 define: function( name, mode, effect ) { … … 1244 526 // Lock in margins first to account for form elements, which 1245 527 // will change margin if you explicitly set height 1246 // see: http ://jsfiddle.net/JZSMt/3/ https://bugs.webkit.org/show_bug.cgi?id=107380528 // see: https://jsfiddle.net/JZSMt/3/ https://bugs.webkit.org/show_bug.cgi?id=107380 1247 529 // Support: Safari 1248 530 element.css( { … … 1638 920 ( function() { 1639 921 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) 1641 923 1642 924 var baseEasings = {}; -
trunk/src/js/_enqueues/vendor/jquery/ui/menu.js
r54209 r58218 1 1 /*! 2 * jQuery UI Menu 1.13. 23 * http ://jqueryui.com2 * jQuery UI Menu 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Widgets 12 12 //>>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/ 15 15 //>>css.structure: ../../themes/base/core.css 16 16 //>>css.structure: ../../themes/base/menu.css … … 25 25 define( [ 26 26 "jquery", 27 "./core" 27 "../keycode", 28 "../position", 29 "../safe-active-element", 30 "../unique-id", 31 "../version", 32 "../widget" 28 33 ], factory ); 29 34 } else { … … 36 41 37 42 return $.widget( "ui.menu", { 38 version: "1.13. 2",43 version: "1.13.3", 39 44 defaultElement: "<ul>", 40 45 delay: 300, -
trunk/src/js/_enqueues/vendor/jquery/ui/mouse.js
r54209 r58218 1 1 /*! 2 * jQuery UI Mouse 1.13. 23 * http ://jqueryui.com2 * jQuery UI Mouse 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Widgets 12 12 //>>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/ 14 14 15 15 ( function( factory ) { … … 21 21 define( [ 22 22 "jquery", 23 "./core" 23 "../ie", 24 "../version", 25 "../widget" 24 26 ], factory ); 25 27 } else { … … 37 39 38 40 return $.widget( "ui.mouse", { 39 version: "1.13. 2",41 version: "1.13.3", 40 42 options: { 41 43 cancel: "input, textarea, button, select, option", -
trunk/src/js/_enqueues/vendor/jquery/ui/progressbar.js
r54209 r58218 1 1 /*! 2 * jQuery UI Progressbar 1.13. 23 * http ://jqueryui.com2 * jQuery UI Progressbar 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 13 13 //>>description: Displays a status indicator for loading state, standard percentage, and other progress indicators. 14 14 /* 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/ 17 17 //>>css.structure: ../../themes/base/core.css 18 18 //>>css.structure: ../../themes/base/progressbar.css … … 27 27 define( [ 28 28 "jquery", 29 "./core" 29 "../version", 30 "../widget" 30 31 ], factory ); 31 32 } else { … … 38 39 39 40 return $.widget( "ui.progressbar", { 40 version: "1.13. 2",41 version: "1.13.3", 41 42 options: { 42 43 classes: { -
trunk/src/js/_enqueues/vendor/jquery/ui/resizable.js
r54209 r58218 1 1 /*! 2 * jQuery UI Resizable 1.13. 23 * http ://jqueryui.com2 * jQuery UI Resizable 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Interactions 12 12 //>>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/ 15 15 //>>css.structure: ../../themes/base/core.css 16 16 //>>css.structure: ../../themes/base/resizable.css … … 26 26 "jquery", 27 27 "./mouse", 28 "./core" 28 "../disable-selection", 29 "../plugin", 30 "../version", 31 "../widget" 29 32 ], factory ); 30 33 } else { … … 37 40 38 41 $.widget( "ui.resizable", $.ui.mouse, { 39 version: "1.13. 2",42 version: "1.13.3", 40 43 widgetEventPrefix: "resize", 41 44 options: { … … 531 534 props.left = this.position.left + "px"; 532 535 } 536 537 this.helper.css( props ); 538 533 539 if ( this.size.width !== this.prevSize.width ) { 534 540 props.width = this.size.width + "px"; 541 this.helper.width( props.width ); 535 542 } 536 543 if ( this.size.height !== this.prevSize.height ) { 537 544 props.height = this.size.height + "px"; 538 } 539 540 this.helper.css( props ); 545 this.helper.height( props.height ); 546 } 541 547 542 548 return props; … … 1046 1052 var el = $( this ); 1047 1053 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" ) ), 1049 1055 left: parseFloat( el.css( "left" ) ), top: parseFloat( el.css( "top" ) ) 1050 1056 } ); -
trunk/src/js/_enqueues/vendor/jquery/ui/selectable.js
r54209 r58218 1 1 /*! 2 * jQuery UI Selectable 1.13. 23 * http ://jqueryui.com2 * jQuery UI Selectable 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Interactions 12 12 //>>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/ 15 15 //>>css.structure: ../../themes/base/selectable.css 16 16 … … 24 24 "jquery", 25 25 "./mouse", 26 "./core" 26 "../version", 27 "../widget" 27 28 ], factory ); 28 29 } else { … … 35 36 36 37 return $.widget( "ui.selectable", $.ui.mouse, { 37 version: "1.13. 2",38 version: "1.13.3", 38 39 options: { 39 40 appendTo: "body", -
trunk/src/js/_enqueues/vendor/jquery/ui/selectmenu.js
r54209 r58218 1 1 /*! 2 * jQuery UI Selectmenu 1.13. 23 * http ://jqueryui.com2 * jQuery UI Selectmenu 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 13 13 //>>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. 14 14 /* 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/ 17 17 //>>css.structure: ../../themes/base/core.css 18 18 //>>css.structure: ../../themes/base/selectmenu.css, ../../themes/base/button.css … … 28 28 "jquery", 29 29 "./menu", 30 "./core" 30 "../form-reset-mixin", 31 "../keycode", 32 "../labels", 33 "../position", 34 "../unique-id", 35 "../version", 36 "../widget" 31 37 ], factory ); 32 38 } else { … … 39 45 40 46 return $.widget( "ui.selectmenu", [ $.ui.formResetMixin, { 41 version: "1.13. 2",47 version: "1.13.3", 42 48 defaultElement: "<select>", 43 49 options: { … … 349 355 this._addClass( li, null, "ui-state-disabled" ); 350 356 } 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 } 352 363 353 364 return li.append( wrapper ).appendTo( ul ); … … 653 664 data = []; 654 665 options.each( function( index, item ) { 655 if ( item.hidden ) {656 return;657 }658 659 666 data.push( that._parseOption( $( item ), index ) ); 660 667 } ); … … 670 677 value: option.val(), 671 678 label: option.text(), 679 hidden: optgroup.prop( "hidden" ) || option.prop( "hidden" ), 672 680 optgroup: optgroup.attr( "label" ) || "", 673 681 disabled: optgroup.prop( "disabled" ) || option.prop( "disabled" ) -
trunk/src/js/_enqueues/vendor/jquery/ui/slider.js
r54209 r58218 1 1 /*! 2 * jQuery UI Slider 1.13. 23 * http ://jqueryui.com2 * jQuery UI Slider 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Widgets 12 12 //>>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/ 15 15 //>>css.structure: ../../themes/base/core.css 16 16 //>>css.structure: ../../themes/base/slider.css … … 26 26 "jquery", 27 27 "./mouse", 28 "./core" 28 "../keycode", 29 "../version", 30 "../widget" 29 31 ], factory ); 30 32 } else { … … 37 39 38 40 return $.widget( "ui.slider", $.ui.mouse, { 39 version: "1.13. 2",41 version: "1.13.3", 40 42 widgetEventPrefix: "slide", 41 43 -
trunk/src/js/_enqueues/vendor/jquery/ui/sortable.js
r54209 r58218 1 1 /*! 2 * jQuery UI Sortable 1.13. 23 * http ://jqueryui.com2 * jQuery UI Sortable 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Interactions 12 12 //>>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/ 15 15 //>>css.structure: ../../themes/base/sortable.css 16 16 … … 24 24 "jquery", 25 25 "./mouse", 26 "./core" 26 "../data", 27 "../ie", 28 "../scroll-parent", 29 "../version", 30 "../widget" 27 31 ], factory ); 28 32 } else { … … 35 39 36 40 return $.widget( "ui.sortable", $.ui.mouse, { 37 version: "1.13. 2",41 version: "1.13.3", 38 42 widgetEventPrefix: "sort", 39 43 ready: false, -
trunk/src/js/_enqueues/vendor/jquery/ui/spinner.js
r54209 r58218 1 1 /*! 2 * jQuery UI Spinner 1.13. 23 * http ://jqueryui.com2 * jQuery UI Spinner 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Widgets 12 12 //>>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/ 15 15 //>>css.structure: ../../themes/base/core.css 16 16 //>>css.structure: ../../themes/base/spinner.css … … 26 26 "jquery", 27 27 "./button", 28 "./core" 28 "../version", 29 "../keycode", 30 "../safe-active-element", 31 "../widget" 29 32 ], factory ); 30 33 } else { … … 48 51 49 52 $.widget( "ui.spinner", { 50 version: "1.13. 2",53 version: "1.13.3", 51 54 defaultElement: "<input>", 52 55 widgetEventPrefix: "spin", -
trunk/src/js/_enqueues/vendor/jquery/ui/tabs.js
r54209 r58218 1 1 /*! 2 * jQuery UI Tabs 1.13. 23 * http ://jqueryui.com2 * jQuery UI Tabs 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Widgets 12 12 //>>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/ 15 15 //>>css.structure: ../../themes/base/core.css 16 16 //>>css.structure: ../../themes/base/tabs.css … … 25 25 define( [ 26 26 "jquery", 27 "./core" 27 "../keycode", 28 "../safe-active-element", 29 "../unique-id", 30 "../version", 31 "../widget" 28 32 ], factory ); 29 33 } else { … … 36 40 37 41 $.widget( "ui.tabs", { 38 version: "1.13. 2",42 version: "1.13.3", 39 43 delay: 300, 40 44 options: { … … 865 869 866 870 // support: jQuery <1.8 867 // http ://bugs.jquery.com/ticket/11778871 // https://bugs.jquery.com/ticket/11778 868 872 setTimeout( function() { 869 873 panel.html( response ); … … 876 880 877 881 // support: jQuery <1.8 878 // http ://bugs.jquery.com/ticket/11778882 // https://bugs.jquery.com/ticket/11778 879 883 setTimeout( function() { 880 884 complete( jqXHR, status ); -
trunk/src/js/_enqueues/vendor/jquery/ui/tooltip.js
r54209 r58218 1 1 /*! 2 * jQuery UI Tooltip 1.13. 23 * http ://jqueryui.com2 * jQuery UI Tooltip 1.13.3 3 * https://jqueryui.com 4 4 * 5 * Copyright jQueryFoundation and other contributors5 * Copyright OpenJS Foundation and other contributors 6 6 * Released under the MIT license. 7 * http ://jquery.org/license7 * https://jquery.org/license 8 8 */ 9 9 … … 11 11 //>>group: Widgets 12 12 //>>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/ 15 15 //>>css.structure: ../../themes/base/core.css 16 16 //>>css.structure: ../../themes/base/tooltip.css … … 25 25 define( [ 26 26 "jquery", 27 "./core" 27 "../keycode", 28 "../position", 29 "../unique-id", 30 "../version", 31 "../widget" 28 32 ], factory ); 29 33 } else { … … 36 40 37 41 $.widget( "ui.tooltip", { 38 version: "1.13. 2",42 version: "1.13.3", 39 43 options: { 40 44 classes: { -
trunk/src/wp-includes/script-loader.php
r58187 r58218 108 108 109 109 $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', 112 112 'regenerator-runtime' => '0.14.0', 113 113 'moment' => '2.29.4', … … 882 882 * A notable change is that 'jquery-ui-core' now contains 'jquery-ui-position' and 'jquery-ui-widget'. 883 883 */ 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 ); 902 902 903 903 // 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 ); 917 917 918 918 // 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 ); 921 921 922 922 // 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 ); 928 928 929 929 /* … … 931 931 * Listed here for back-compat. 932 932 */ 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 ); 935 935 936 936 // Deprecated, not used in core, most functionality is included in jQuery 1.3.
Note: See TracChangeset
for help on using the changeset viewer.