|
@@ -1,5 +1,5 @@
|
|
|
|
|
|
- * jQuery JavaScript Library v3.6.3
|
|
|
+ * jQuery JavaScript Library v3.6.4
|
|
|
* https:
|
|
|
*
|
|
|
* Includes Sizzle.js
|
|
@@ -9,7 +9,7 @@
|
|
|
* Released under the MIT license
|
|
|
* https:
|
|
|
*
|
|
|
- * Date: 2022-12-20T21:28Z
|
|
|
+ * Date: 2023-03-08T15:28Z
|
|
|
*/
|
|
|
( function( global, factory ) {
|
|
|
|
|
@@ -151,7 +151,7 @@ function toType( obj ) {
|
|
|
|
|
|
|
|
|
var
|
|
|
- version = "3.6.3",
|
|
|
+ version = "3.6.4",
|
|
|
|
|
|
|
|
|
jQuery = function( selector, context ) {
|
|
@@ -522,14 +522,14 @@ function isArrayLike( obj ) {
|
|
|
}
|
|
|
var Sizzle =
|
|
|
|
|
|
- * Sizzle CSS Selector Engine v2.3.9
|
|
|
+ * Sizzle CSS Selector Engine v2.3.10
|
|
|
* https:
|
|
|
*
|
|
|
* Copyright JS Foundation and other contributors
|
|
|
* Released under the MIT license
|
|
|
* https:
|
|
|
*
|
|
|
- * Date: 2022-12-19
|
|
|
+ * Date: 2023-02-14
|
|
|
*/
|
|
|
( function( window ) {
|
|
|
var i,
|
|
@@ -633,7 +633,7 @@ var i,
|
|
|
whitespace + "+$", "g" ),
|
|
|
|
|
|
rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
|
|
|
- rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace +
|
|
|
+ rleadingCombinator = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace +
|
|
|
"*" ),
|
|
|
rdescend = new RegExp( whitespace + "|>" ),
|
|
|
|
|
@@ -850,7 +850,7 @@ function Sizzle( selector, context, results, seed ) {
|
|
|
|
|
|
|
|
|
if ( nodeType === 1 &&
|
|
|
- ( rdescend.test( selector ) || rcombinators.test( selector ) ) ) {
|
|
|
+ ( rdescend.test( selector ) || rleadingCombinator.test( selector ) ) ) {
|
|
|
|
|
|
|
|
|
newContext = rsibling.test( selector ) && testContext( context.parentNode ) ||
|
|
@@ -879,27 +879,6 @@ function Sizzle( selector, context, results, seed ) {
|
|
|
}
|
|
|
|
|
|
try {
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- if ( support.cssSupportsSelector &&
|
|
|
-
|
|
|
-
|
|
|
- !CSS.supports( "selector(:is(" + newSelector + "))" ) ) {
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- throw new Error();
|
|
|
- }
|
|
|
-
|
|
|
push.apply( results,
|
|
|
newContext.querySelectorAll( newSelector )
|
|
|
);
|
|
@@ -1195,29 +1174,22 @@ setDocument = Sizzle.setDocument = function( node ) {
|
|
|
!el.querySelectorAll( ":scope fieldset div" ).length;
|
|
|
} );
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- support.cssSupportsSelector = assert( function() {
|
|
|
-
|
|
|
-
|
|
|
- return CSS.supports( "selector(*)" ) &&
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- document.querySelectorAll( ":is(:jqfake)" ) &&
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- !CSS.supports( "selector(:is(*,:jqfake))" );
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ support.cssHas = assert( function() {
|
|
|
+ try {
|
|
|
+ document.querySelector( ":has(*,:jqfake)" );
|
|
|
+ return false;
|
|
|
+ } catch ( e ) {
|
|
|
+ return true;
|
|
|
+ }
|
|
|
} );
|
|
|
|
|
|
|
|
@@ -1486,14 +1458,14 @@ setDocument = Sizzle.setDocument = function( node ) {
|
|
|
} );
|
|
|
}
|
|
|
|
|
|
- if ( !support.cssSupportsSelector ) {
|
|
|
+ if ( !support.cssHas ) {
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
rbuggyQSA.push( ":has" );
|
|
|
}
|
|
|
|
|
@@ -2406,7 +2378,7 @@ tokenize = Sizzle.tokenize = function( selector, parseOnly ) {
|
|
|
matched = false;
|
|
|
|
|
|
|
|
|
- if ( ( match = rcombinators.exec( soFar ) ) ) {
|
|
|
+ if ( ( match = rleadingCombinator.exec( soFar ) ) ) {
|
|
|
matched = match.shift();
|
|
|
tokens.push( {
|
|
|
value: matched,
|