@office-iss/react-native-win32 0.72.13 → 0.72.14
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.
- package/CHANGELOG.json +16 -1
- package/CHANGELOG.md +12 -4
- package/Libraries/Text/Text.d.ts +5 -0
- package/package.json +1 -1
- package/src/Libraries/Text/Text.d.ts +5 -0
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,22 @@
|
|
|
2
2
|
"name": "@office-iss/react-native-win32",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Mon, 18 Mar 2024 20:19:17 GMT",
|
|
6
|
+
"tag": "@office-iss/react-native-win32_v0.72.14",
|
|
7
|
+
"version": "0.72.14",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "30809111+acoates-ms@users.noreply.github.com",
|
|
12
|
+
"package": "@office-iss/react-native-win32",
|
|
13
|
+
"commit": "f40c11b5ba8c6ccb5b9d2a9f8cdbe4dd9748197e",
|
|
14
|
+
"comment": "Missed property when adding win32 specific text type info"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Fri, 15 Mar 2024 22:28:10 GMT",
|
|
6
21
|
"tag": "@office-iss/react-native-win32_v0.72.13",
|
|
7
22
|
"version": "0.72.13",
|
|
8
23
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,17 +1,25 @@
|
|
|
1
1
|
# Change Log - @office-iss/react-native-win32
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Mon, 18 Mar 2024 20:19:17 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## 0.72.
|
|
7
|
+
## 0.72.14
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Mon, 18 Mar 2024 20:19:17 GMT
|
|
10
10
|
|
|
11
11
|
### Patches
|
|
12
12
|
|
|
13
|
-
-
|
|
13
|
+
- Missed property when adding win32 specific text type info (30809111+acoates-ms@users.noreply.github.com)
|
|
14
14
|
|
|
15
|
+
## 0.72.13
|
|
16
|
+
|
|
17
|
+
Fri, 15 Mar 2024 22:28:10 GMT
|
|
18
|
+
|
|
19
|
+
### Patches
|
|
20
|
+
|
|
21
|
+
- TextProps from rn-win32 should include win32 properties (30809111+acoates-ms@users.noreply.github.com)
|
|
22
|
+
|
|
15
23
|
## 0.72.12
|
|
16
24
|
|
|
17
25
|
Thu, 08 Feb 2024 21:50:06 GMT
|
package/Libraries/Text/Text.d.ts
CHANGED
|
@@ -47,6 +47,11 @@ export interface TextPropsIOS {
|
|
|
47
47
|
| 'largeTitle'
|
|
48
48
|
| undefined;
|
|
49
49
|
|
|
50
|
+
/**
|
|
51
|
+
* Specifies smallest possible scale a font can reach when adjustsFontSizeToFit is enabled. (values 0.01-1.0).
|
|
52
|
+
*/
|
|
53
|
+
minimumFontScale?: number | undefined;
|
|
54
|
+
|
|
50
55
|
/**
|
|
51
56
|
* When `true`, no visual change is made when text is pressed down. By
|
|
52
57
|
* default, a gray oval highlights the text on press down.
|
package/package.json
CHANGED
|
@@ -47,6 +47,11 @@ export interface TextPropsIOS {
|
|
|
47
47
|
| 'largeTitle'
|
|
48
48
|
| undefined;
|
|
49
49
|
|
|
50
|
+
/**
|
|
51
|
+
* Specifies smallest possible scale a font can reach when adjustsFontSizeToFit is enabled. (values 0.01-1.0).
|
|
52
|
+
*/
|
|
53
|
+
minimumFontScale?: number | undefined;
|
|
54
|
+
|
|
50
55
|
/**
|
|
51
56
|
* When `true`, no visual change is made when text is pressed down. By
|
|
52
57
|
* default, a gray oval highlights the text on press down.
|