@types/react 16.14.65 → 16.14.67
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 v16.14/README.md +1 -1
- react v16.14/index.d.ts +17 -2
- react v16.14/package.json +3 -3
react v16.14/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/v16.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Mon, 06 Oct 2025 21:02:40 GMT
|
|
12
12
|
* Dependencies: [@types/prop-types](https://npmjs.com/package/@types/prop-types), [@types/scheduler](https://npmjs.com/package/@types/scheduler), [csstype](https://npmjs.com/package/csstype)
|
|
13
13
|
|
|
14
14
|
# Credits
|
react v16.14/index.d.ts
CHANGED
|
@@ -2141,6 +2141,7 @@ declare namespace React {
|
|
|
2141
2141
|
}
|
|
2142
2142
|
|
|
2143
2143
|
interface DialogHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
2144
|
+
closedby?: "any" | "closerequest" | "none" | undefined;
|
|
2144
2145
|
onCancel?: ReactEventHandler<T> | undefined;
|
|
2145
2146
|
onClose?: ReactEventHandler<T> | undefined;
|
|
2146
2147
|
open?: boolean | undefined;
|
|
@@ -2601,7 +2602,21 @@ declare namespace React {
|
|
|
2601
2602
|
direction?: number | string | undefined;
|
|
2602
2603
|
display?: number | string | undefined;
|
|
2603
2604
|
divisor?: number | string | undefined;
|
|
2604
|
-
dominantBaseline?:
|
|
2605
|
+
dominantBaseline?:
|
|
2606
|
+
| "auto"
|
|
2607
|
+
| "use-script"
|
|
2608
|
+
| "no-change"
|
|
2609
|
+
| "reset-size"
|
|
2610
|
+
| "ideographic"
|
|
2611
|
+
| "alphabetic"
|
|
2612
|
+
| "hanging"
|
|
2613
|
+
| "mathematical"
|
|
2614
|
+
| "central"
|
|
2615
|
+
| "middle"
|
|
2616
|
+
| "text-after-edge"
|
|
2617
|
+
| "text-before-edge"
|
|
2618
|
+
| "inherit"
|
|
2619
|
+
| undefined;
|
|
2605
2620
|
dur?: number | string | undefined;
|
|
2606
2621
|
dx?: number | string | undefined;
|
|
2607
2622
|
dy?: number | string | undefined;
|
|
@@ -2748,7 +2763,7 @@ declare namespace React {
|
|
|
2748
2763
|
tableValues?: number | string | undefined;
|
|
2749
2764
|
targetX?: number | string | undefined;
|
|
2750
2765
|
targetY?: number | string | undefined;
|
|
2751
|
-
textAnchor?:
|
|
2766
|
+
textAnchor?: "start" | "middle" | "end" | "inherit" | undefined;
|
|
2752
2767
|
textDecoration?: number | string | undefined;
|
|
2753
2768
|
textLength?: number | string | undefined;
|
|
2754
2769
|
textRendering?: number | string | undefined;
|
react v16.14/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/react",
|
|
3
|
-
"version": "16.14.
|
|
3
|
+
"version": "16.14.67",
|
|
4
4
|
"description": "TypeScript definitions for react",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react",
|
|
6
6
|
"license": "MIT",
|
|
@@ -165,6 +165,6 @@
|
|
|
165
165
|
"csstype": "^3.0.2"
|
|
166
166
|
},
|
|
167
167
|
"peerDependencies": {},
|
|
168
|
-
"typesPublisherContentHash": "
|
|
169
|
-
"typeScriptVersion": "5.
|
|
168
|
+
"typesPublisherContentHash": "1a79e912baa10a793c88459d02f3a5748911a2f84accbf9498e495e1e6f49071",
|
|
169
|
+
"typeScriptVersion": "5.2"
|
|
170
170
|
}
|