@types/react 19.0.11 → 19.0.12
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.
- react/README.md +1 -1
- react/index.d.ts +10 -0
- react/package.json +2 -2
- react/ts5.0/index.d.ts +10 -0
react/README.md
CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for react (https://react.dev/).
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react.
|
9
9
|
|
10
10
|
### Additional Details
|
11
|
-
* Last updated:
|
11
|
+
* Last updated: Wed, 19 Mar 2025 15:02:26 GMT
|
12
12
|
* Dependencies: [csstype](https://npmjs.com/package/csstype)
|
13
13
|
|
14
14
|
# Credits
|
react/index.d.ts
CHANGED
@@ -2334,6 +2334,8 @@ declare namespace React {
|
|
2334
2334
|
// UI Events
|
2335
2335
|
onScroll?: UIEventHandler<T> | undefined;
|
2336
2336
|
onScrollCapture?: UIEventHandler<T> | undefined;
|
2337
|
+
onScrollEnd?: UIEventHandler<T> | undefined;
|
2338
|
+
onScrollEndCapture?: UIEventHandler<T> | undefined;
|
2337
2339
|
|
2338
2340
|
// Wheel Events
|
2339
2341
|
onWheel?: WheelEventHandler<T> | undefined;
|
@@ -2750,6 +2752,14 @@ declare namespace React {
|
|
2750
2752
|
* @see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}
|
2751
2753
|
*/
|
2752
2754
|
is?: string | undefined;
|
2755
|
+
/**
|
2756
|
+
* @see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/exportparts}
|
2757
|
+
*/
|
2758
|
+
exportparts?: string | undefined;
|
2759
|
+
/**
|
2760
|
+
* @see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/part}
|
2761
|
+
*/
|
2762
|
+
part?: string | undefined;
|
2753
2763
|
}
|
2754
2764
|
|
2755
2765
|
/**
|
react/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@types/react",
|
3
|
-
"version": "19.0.
|
3
|
+
"version": "19.0.12",
|
4
4
|
"description": "TypeScript definitions for react",
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react",
|
6
6
|
"license": "MIT",
|
@@ -205,6 +205,6 @@
|
|
205
205
|
"csstype": "^3.0.2"
|
206
206
|
},
|
207
207
|
"peerDependencies": {},
|
208
|
-
"typesPublisherContentHash": "
|
208
|
+
"typesPublisherContentHash": "d6d39c1d98bf77944b5e2f9ed07ca37b70c29b96a108614db9e4b4d5ca8a106d",
|
209
209
|
"typeScriptVersion": "5.0"
|
210
210
|
}
|
react/ts5.0/index.d.ts
CHANGED
@@ -2333,6 +2333,8 @@ declare namespace React {
|
|
2333
2333
|
// UI Events
|
2334
2334
|
onScroll?: UIEventHandler<T> | undefined;
|
2335
2335
|
onScrollCapture?: UIEventHandler<T> | undefined;
|
2336
|
+
onScrollEnd?: UIEventHandler<T> | undefined;
|
2337
|
+
onScrollEndCapture?: UIEventHandler<T> | undefined;
|
2336
2338
|
|
2337
2339
|
// Wheel Events
|
2338
2340
|
onWheel?: WheelEventHandler<T> | undefined;
|
@@ -2749,6 +2751,14 @@ declare namespace React {
|
|
2749
2751
|
* @see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}
|
2750
2752
|
*/
|
2751
2753
|
is?: string | undefined;
|
2754
|
+
/**
|
2755
|
+
* @see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/exportparts}
|
2756
|
+
*/
|
2757
|
+
exportparts?: string | undefined;
|
2758
|
+
/**
|
2759
|
+
* @see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/part}
|
2760
|
+
*/
|
2761
|
+
part?: string | undefined;
|
2752
2762
|
}
|
2753
2763
|
|
2754
2764
|
/**
|