@types/jquery 3.3.31 → 3.3.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- jquery/JQueryStatic.d.ts +2 -2
- jquery/README.md +6 -6
- jquery/package.json +4 -4
jquery/JQueryStatic.d.ts
CHANGED
|
@@ -102,7 +102,7 @@ $( "<div/>", {
|
|
|
102
102
|
/**
|
|
103
103
|
* Accepts a string containing a CSS selector which is then used to match a set of elements.
|
|
104
104
|
* @param selector A string containing a selector expression
|
|
105
|
-
* @param context A DOM Element, Document, or jQuery to use as context
|
|
105
|
+
* @param context A DOM Element, Document, Selector or jQuery to use as context
|
|
106
106
|
* @see \`{@link https://api.jquery.com/jQuery/ }\`
|
|
107
107
|
* @since 1.0
|
|
108
108
|
* @example ````Find all p elements that are children of a div element and apply a border to them.
|
|
@@ -137,7 +137,7 @@ $( "div", xml.responseXML );
|
|
|
137
137
|
|
|
138
138
|
*/
|
|
139
139
|
// tslint:disable-next-line:no-unnecessary-generics
|
|
140
|
-
<TElement extends Element = HTMLElement>(selector: JQuery.Selector, context?: Element | Document | JQuery): JQuery<TElement>;
|
|
140
|
+
<TElement extends Element = HTMLElement>(selector: JQuery.Selector, context?: Element | Document | JQuery | JQuery.Selector): JQuery<TElement>;
|
|
141
141
|
/**
|
|
142
142
|
* Return a collection of matched elements either found in the DOM based on passed argument(s) or created by passing an HTML string.
|
|
143
143
|
* @param element A DOM element to wrap in a jQuery object.
|
jquery/README.md
CHANGED
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
This package contains type definitions for jquery (https://jquery.com).
|
|
6
6
|
|
|
7
7
|
# Details
|
|
8
|
-
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jquery
|
|
8
|
+
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jquery.
|
|
9
9
|
|
|
10
|
-
Additional Details
|
|
11
|
-
* Last updated:
|
|
12
|
-
* Dependencies: @types/sizzle
|
|
13
|
-
* Global values:
|
|
10
|
+
### Additional Details
|
|
11
|
+
* Last updated: Tue, 04 Feb 2020 19:23:17 GMT
|
|
12
|
+
* Dependencies: [@types/sizzle](https://npmjs.com/package/@types/sizzle)
|
|
13
|
+
* Global values: `$`, `Symbol`, `jQuery`
|
|
14
14
|
|
|
15
15
|
# Credits
|
|
16
|
-
These definitions were written by Leonard Thieu
|
|
16
|
+
These definitions were written by Leonard Thieu (https://github.com/leonard-thieu), Boris Yankov (https://github.com/borisyankov), Christian Hoffmeister (https://github.com/choffmeister), Steve Fenton (https://github.com/Steve-Fenton), Diullei Gomes (https://github.com/Diullei), Tass Iliopoulos (https://github.com/tasoili), Jason Swearingen (https://github.com/jasons-novaleaf), Sean Hill (https://github.com/seanski), Guus Goossens (https://github.com/Guuz), Kelly Summerlin (https://github.com/ksummerlin), Basarat Ali Syed (https://github.com/basarat), Nicholas Wolverson (https://github.com/nwolverson), Derek Cicerone (https://github.com/derekcicerone), Andrew Gaspar (https://github.com/AndrewGaspar), Seikichi Kondo (https://github.com/seikichi), Benjamin Jackman (https://github.com/benjaminjackman), Poul Sorensen (https://github.com/s093294), Josh Strobl (https://github.com/JoshStrobl), John Reilly (https://github.com/johnnyreilly), Dick van den Brink (https://github.com/DickvdBrink), Thomas Schulz (https://github.com/King2500), and Terry Mun (https://github.com/terrymun).
|
jquery/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/jquery",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.32",
|
|
4
4
|
"description": "TypeScript definitions for jquery",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
}
|
|
117
117
|
],
|
|
118
118
|
"main": "",
|
|
119
|
-
"types": "index",
|
|
119
|
+
"types": "index.d.ts",
|
|
120
120
|
"repository": {
|
|
121
121
|
"type": "git",
|
|
122
122
|
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
|
@@ -126,6 +126,6 @@
|
|
|
126
126
|
"dependencies": {
|
|
127
127
|
"@types/sizzle": "*"
|
|
128
128
|
},
|
|
129
|
-
"typesPublisherContentHash": "
|
|
130
|
-
"typeScriptVersion": "2.
|
|
129
|
+
"typesPublisherContentHash": "7fe9659987c254c276bd48b55cf75a1e8d59dcbb16b94cf9b180942dd80d4b7e",
|
|
130
|
+
"typeScriptVersion": "2.8"
|
|
131
131
|
}
|