Skip to content

Commit

Permalink
Update jQuery UI library to version 1.13.3
Browse files Browse the repository at this point in the history
  • Loading branch information
itzmekhokan committed May 3, 2024
1 parent 5207502 commit e1e1a81
Show file tree
Hide file tree
Showing 37 changed files with 447 additions and 1,081 deletions.
19 changes: 11 additions & 8 deletions src/js/_enqueues/vendor/jquery/ui/accordion.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
/*!
* jQuery UI Accordion 1.13.2
* http://jqueryui.com
* jQuery UI Accordion 1.13.3
* https://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
* https://jquery.org/license
*/

//>>label: Accordion
//>>group: Widgets
/* eslint-disable max-len */
//>>description: Displays collapsible content panels for presenting information in a limited amount of space.
/* eslint-enable max-len */
//>>docs: http://api.jqueryui.com/accordion/
//>>demos: http://jqueryui.com/accordion/
//>>docs: https://api.jqueryui.com/accordion/
//>>demos: https://jqueryui.com/accordion/
//>>css.structure: ../../themes/base/core.css
//>>css.structure: ../../themes/base/accordion.css
//>>css.theme: ../../themes/base/theme.css
Expand All @@ -26,7 +26,10 @@
// AMD. Register as an anonymous module.
define( [
"jquery",
"./core"
"../version",
"../keycode",
"../unique-id",
"../widget"
], factory );
} else {

Expand All @@ -37,7 +40,7 @@
"use strict";

return $.widget( "ui.accordion", {
version: "1.13.2",
version: "1.13.3",
options: {
active: 0,
animate: {},
Expand Down
20 changes: 12 additions & 8 deletions src/js/_enqueues/vendor/jquery/ui/autocomplete.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
/*!
* jQuery UI Autocomplete 1.13.2
* http://jqueryui.com
* jQuery UI Autocomplete 1.13.3
* https://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
* https://jquery.org/license
*/

//>>label: Autocomplete
//>>group: Widgets
//>>description: Lists suggested words as the user is typing.
//>>docs: http://api.jqueryui.com/autocomplete/
//>>demos: http://jqueryui.com/autocomplete/
//>>docs: https://api.jqueryui.com/autocomplete/
//>>demos: https://jqueryui.com/autocomplete/
//>>css.structure: ../../themes/base/core.css
//>>css.structure: ../../themes/base/autocomplete.css
//>>css.theme: ../../themes/base/theme.css
Expand All @@ -25,7 +25,11 @@
define( [
"jquery",
"./menu",
"./core"
"../keycode",
"../position",
"../safe-active-element",
"../version",
"../widget"
], factory );
} else {

Expand All @@ -36,7 +40,7 @@
"use strict";

$.widget( "ui.autocomplete", {
version: "1.13.2",
version: "1.13.3",
defaultElement: "<input>",
options: {
appendTo: null,
Expand Down
17 changes: 9 additions & 8 deletions src/js/_enqueues/vendor/jquery/ui/button.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
/*!
* jQuery UI Button 1.13.2
* http://jqueryui.com
* jQuery UI Button 1.13.3
* https://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
* https://jquery.org/license
*/

//>>label: Button
//>>group: Widgets
//>>description: Enhances a form with themeable buttons.
//>>docs: http://api.jqueryui.com/button/
//>>demos: http://jqueryui.com/button/
//>>docs: https://api.jqueryui.com/button/
//>>demos: https://jqueryui.com/button/
//>>css.structure: ../../themes/base/core.css
//>>css.structure: ../../themes/base/button.css
//>>css.theme: ../../themes/base/theme.css
Expand All @@ -30,7 +30,8 @@
"./controlgroup",
"./checkboxradio",

"./core"
"../keycode",
"../widget"
], factory );
} else {

Expand All @@ -41,7 +42,7 @@
"use strict";

$.widget( "ui.button", {
version: "1.13.2",
version: "1.13.3",
defaultElement: "<button>",
options: {
classes: {
Expand Down
18 changes: 10 additions & 8 deletions src/js/_enqueues/vendor/jquery/ui/checkboxradio.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
/*!
* jQuery UI Checkboxradio 1.13.2
* http://jqueryui.com
* jQuery UI Checkboxradio 1.13.3
* https://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
* https://jquery.org/license
*/

//>>label: Checkboxradio
//>>group: Widgets
//>>description: Enhances a form with multiple themeable checkboxes or radio buttons.
//>>docs: http://api.jqueryui.com/checkboxradio/
//>>demos: http://jqueryui.com/checkboxradio/
//>>docs: https://api.jqueryui.com/checkboxradio/
//>>demos: https://jqueryui.com/checkboxradio/
//>>css.structure: ../../themes/base/core.css
//>>css.structure: ../../themes/base/button.css
//>>css.structure: ../../themes/base/checkboxradio.css
Expand All @@ -25,7 +25,9 @@
// AMD. Register as an anonymous module.
define( [
"jquery",
"./core"
"../form-reset-mixin",
"../labels",
"../widget"
], factory );
} else {

Expand All @@ -36,7 +38,7 @@
"use strict";

$.widget( "ui.checkboxradio", [ $.ui.formResetMixin, {
version: "1.13.2",
version: "1.13.3",
options: {
disabled: null,
label: null,
Expand Down
18 changes: 9 additions & 9 deletions src/js/_enqueues/vendor/jquery/ui/controlgroup.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
/*!
* jQuery UI Controlgroup 1.13.2
* http://jqueryui.com
* jQuery UI Controlgroup 1.13.3
* https://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
* https://jquery.org/license
*/

//>>label: Controlgroup
//>>group: Widgets
//>>description: Visually groups form control widgets
//>>docs: http://api.jqueryui.com/controlgroup/
//>>demos: http://jqueryui.com/controlgroup/
//>>docs: https://api.jqueryui.com/controlgroup/
//>>demos: https://jqueryui.com/controlgroup/
//>>css.structure: ../../themes/base/core.css
//>>css.structure: ../../themes/base/controlgroup.css
//>>css.theme: ../../themes/base/theme.css
Expand All @@ -24,7 +24,7 @@
// AMD. Register as an anonymous module.
define( [
"jquery",
"./core"
"../widget"
], factory );
} else {

Expand All @@ -36,8 +36,8 @@

var controlgroupCornerRegex = /ui-corner-([a-z]){2,6}/g;

$.widget( "ui.controlgroup", {
version: "1.13.2",
return $.widget( "ui.controlgroup", {
version: "1.13.3",
defaultElement: "<div>",
options: {
direction: "horizontal",
Expand Down
Loading

0 comments on commit e1e1a81

Please sign in to comment.