@types/react 15.7.30 → 15.7.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.
- react v15.7/README.md +1 -1
- react v15.7/index.d.ts +24 -2
- react v15.7/package.json +4 -3
react v15.7/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/v15.
|
9
9
|
|
10
10
|
### Additional Details
|
11
|
-
* Last updated:
|
11
|
+
* Last updated: Fri, 22 Aug 2025 16:02:28 GMT
|
12
12
|
* Dependencies: none
|
13
13
|
|
14
14
|
# Credits
|
react v15.7/index.d.ts
CHANGED
@@ -2729,6 +2729,14 @@ declare namespace React {
|
|
2729
2729
|
* @see https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is
|
2730
2730
|
*/
|
2731
2731
|
is?: string | undefined;
|
2732
|
+
/**
|
2733
|
+
* @see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/exportparts}
|
2734
|
+
*/
|
2735
|
+
exportparts?: string | undefined;
|
2736
|
+
/**
|
2737
|
+
* @see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/part}
|
2738
|
+
*/
|
2739
|
+
part?: string | undefined;
|
2732
2740
|
}
|
2733
2741
|
|
2734
2742
|
interface AllHTMLAttributes<T> extends HTMLAttributes<T> {
|
@@ -3303,7 +3311,21 @@ declare namespace React {
|
|
3303
3311
|
direction?: number | string | undefined;
|
3304
3312
|
display?: number | string | undefined;
|
3305
3313
|
divisor?: number | string | undefined;
|
3306
|
-
dominantBaseline?:
|
3314
|
+
dominantBaseline?:
|
3315
|
+
| "auto"
|
3316
|
+
| "use-script"
|
3317
|
+
| "no-change"
|
3318
|
+
| "reset-size"
|
3319
|
+
| "ideographic"
|
3320
|
+
| "alphabetic"
|
3321
|
+
| "hanging"
|
3322
|
+
| "mathematical"
|
3323
|
+
| "central"
|
3324
|
+
| "middle"
|
3325
|
+
| "text-after-edge"
|
3326
|
+
| "text-before-edge"
|
3327
|
+
| "inherit"
|
3328
|
+
| undefined;
|
3307
3329
|
dur?: number | string | undefined;
|
3308
3330
|
dx?: number | string | undefined;
|
3309
3331
|
dy?: number | string | undefined;
|
@@ -3449,7 +3471,7 @@ declare namespace React {
|
|
3449
3471
|
tableValues?: number | string | undefined;
|
3450
3472
|
targetX?: number | string | undefined;
|
3451
3473
|
targetY?: number | string | undefined;
|
3452
|
-
textAnchor?:
|
3474
|
+
textAnchor?: "start" | "middle" | "end" | "inherit" | undefined;
|
3453
3475
|
textDecoration?: number | string | undefined;
|
3454
3476
|
textLength?: number | string | undefined;
|
3455
3477
|
textRendering?: number | string | undefined;
|
react v15.7/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@types/react",
|
3
|
-
"version": "15.7.
|
3
|
+
"version": "15.7.32",
|
4
4
|
"description": "TypeScript definitions for react",
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react",
|
6
6
|
"license": "MIT",
|
@@ -80,6 +80,7 @@
|
|
80
80
|
},
|
81
81
|
"scripts": {},
|
82
82
|
"dependencies": {},
|
83
|
-
"
|
84
|
-
"
|
83
|
+
"peerDependencies": {},
|
84
|
+
"typesPublisherContentHash": "0f7fb095f73228e045d222460a06c300ceadeee98b5ec2ec344b852c3f5093f7",
|
85
|
+
"typeScriptVersion": "5.2"
|
85
86
|
}
|