@office-iss/react-native-win32 0.71.5 → 0.71.7
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 +31 -1
- package/CHANGELOG.md +20 -4
- package/Libraries/platform-types.d.ts +9 -3
- package/package.json +1 -1
- package/src/Libraries/platform-types.d.ts +9 -3
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,37 @@
|
|
|
2
2
|
"name": "@office-iss/react-native-win32",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Tue, 06 Jun 2023 23:29:35 GMT",
|
|
6
|
+
"tag": "@office-iss/react-native-win32_v0.71.7",
|
|
7
|
+
"version": "0.71.7",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "30809111+acoates-ms@users.noreply.github.com",
|
|
12
|
+
"package": "@office-iss/react-native-win32",
|
|
13
|
+
"commit": "6cecb24f618b6af4149f453ec89618b4ac97a146",
|
|
14
|
+
"comment": "Export ITouchableWin32State"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Wed, 10 May 2023 01:38:11 GMT",
|
|
21
|
+
"tag": "@office-iss/react-native-win32_v0.71.6",
|
|
22
|
+
"version": "0.71.6",
|
|
23
|
+
"comments": {
|
|
24
|
+
"patch": [
|
|
25
|
+
{
|
|
26
|
+
"author": "30809111+acoates-ms@users.noreply.github.com",
|
|
27
|
+
"package": "@office-iss/react-native-win32",
|
|
28
|
+
"commit": "d66bc7775a5c5064379bb46ae86f9a308dc5f994",
|
|
29
|
+
"comment": "Export additional TS types for back compat"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"date": "Thu, 27 Apr 2023 19:11:54 GMT",
|
|
6
36
|
"tag": "@office-iss/react-native-win32_v0.71.5",
|
|
7
37
|
"version": "0.71.5",
|
|
8
38
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,17 +1,33 @@
|
|
|
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 Tue, 06 Jun 2023 23:29:35 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## 0.71.
|
|
7
|
+
## 0.71.7
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Tue, 06 Jun 2023 23:29:35 GMT
|
|
10
10
|
|
|
11
11
|
### Patches
|
|
12
12
|
|
|
13
|
-
-
|
|
13
|
+
- Export ITouchableWin32State (30809111+acoates-ms@users.noreply.github.com)
|
|
14
14
|
|
|
15
|
+
## 0.71.6
|
|
16
|
+
|
|
17
|
+
Wed, 10 May 2023 01:38:11 GMT
|
|
18
|
+
|
|
19
|
+
### Patches
|
|
20
|
+
|
|
21
|
+
- Export additional TS types for back compat (30809111+acoates-ms@users.noreply.github.com)
|
|
22
|
+
|
|
23
|
+
## 0.71.5
|
|
24
|
+
|
|
25
|
+
Thu, 27 Apr 2023 19:11:54 GMT
|
|
26
|
+
|
|
27
|
+
### Patches
|
|
28
|
+
|
|
29
|
+
- Fix ref's on ViewWin32 (enables ViewWin32.focus() calls to work again) (30809111+acoates-ms@users.noreply.github.com)
|
|
30
|
+
|
|
15
31
|
## 0.71.4
|
|
16
32
|
|
|
17
33
|
Thu, 13 Apr 2023 20:50:33 GMT
|
|
@@ -5,14 +5,20 @@
|
|
|
5
5
|
* need to also be added to index.win32.js
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
+
import {IViewWin32Props as IViewWin32PropsOnly} from './Components/View/ViewPropTypes.win32';
|
|
9
|
+
import { AccessibilityPropsWin32 } from '@office-iss/react-native-win32/Libraries/Components/View/ViewAccessibility.win32';
|
|
10
|
+
export { AccessibilityPropsWin32 } from '@office-iss/react-native-win32/Libraries/Components/View/ViewAccessibility.win32';
|
|
11
|
+
export type IViewWin32Props = IViewWin32PropsOnly & AccessibilityPropsWin32;
|
|
8
12
|
export {ViewWin32} from './Components/View/ViewWin32';
|
|
9
|
-
export {
|
|
10
|
-
|
|
13
|
+
export {IKeyboardEvent, IHandledKeyboardEvent} from './Components/View/ViewPropTypes.win32';
|
|
14
|
+
import {ITextWin32Props as ITextWin32PropsOnly} from './Components/Text/TextWin32.Props';
|
|
15
|
+
export type ITextWin32Props = ITextWin32PropsOnly & AccessibilityPropsWin32;
|
|
16
|
+
export {TextWin32TextStyle } from './Components/Text/TextWin32.Props';
|
|
11
17
|
export {TextWin32} from './Components/Text/TextWin32';
|
|
12
18
|
export {IButtonWin32Props, IButtonWin32Style} from './Components/Button/ButtonWin32.Props';
|
|
13
19
|
export {ButtonWin32} from './Components/Button/ButtonWin32';
|
|
14
20
|
export {GradientColorStop, GradientColorValueWin32, ColorGradientWin32} from './StyleSheet/PlatformColorValueTypesWin32';
|
|
15
|
-
export {ITouchableWin32Props} from './Components/Touchable/TouchableWin32.Props';
|
|
21
|
+
export {ITouchableWin32Props, ITouchableWin32State} from './Components/Touchable/TouchableWin32.Props';
|
|
16
22
|
export * from './Components/Touchable/TouchableWin32.Types';
|
|
17
23
|
export * from './Components/Touchable/TouchableWin32';
|
|
18
24
|
export * from './PersonaCoin/PersonaCoin';
|
package/package.json
CHANGED
|
@@ -5,14 +5,20 @@
|
|
|
5
5
|
* need to also be added to index.win32.js
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
+
import {IViewWin32Props as IViewWin32PropsOnly} from './Components/View/ViewPropTypes.win32';
|
|
9
|
+
import { AccessibilityPropsWin32 } from '@office-iss/react-native-win32/Libraries/Components/View/ViewAccessibility.win32';
|
|
10
|
+
export { AccessibilityPropsWin32 } from '@office-iss/react-native-win32/Libraries/Components/View/ViewAccessibility.win32';
|
|
11
|
+
export type IViewWin32Props = IViewWin32PropsOnly & AccessibilityPropsWin32;
|
|
8
12
|
export {ViewWin32} from './Components/View/ViewWin32';
|
|
9
|
-
export {
|
|
10
|
-
|
|
13
|
+
export {IKeyboardEvent, IHandledKeyboardEvent} from './Components/View/ViewPropTypes.win32';
|
|
14
|
+
import {ITextWin32Props as ITextWin32PropsOnly} from './Components/Text/TextWin32.Props';
|
|
15
|
+
export type ITextWin32Props = ITextWin32PropsOnly & AccessibilityPropsWin32;
|
|
16
|
+
export {TextWin32TextStyle } from './Components/Text/TextWin32.Props';
|
|
11
17
|
export {TextWin32} from './Components/Text/TextWin32';
|
|
12
18
|
export {IButtonWin32Props, IButtonWin32Style} from './Components/Button/ButtonWin32.Props';
|
|
13
19
|
export {ButtonWin32} from './Components/Button/ButtonWin32';
|
|
14
20
|
export {GradientColorStop, GradientColorValueWin32, ColorGradientWin32} from './StyleSheet/PlatformColorValueTypesWin32';
|
|
15
|
-
export {ITouchableWin32Props} from './Components/Touchable/TouchableWin32.Props';
|
|
21
|
+
export {ITouchableWin32Props, ITouchableWin32State} from './Components/Touchable/TouchableWin32.Props';
|
|
16
22
|
export * from './Components/Touchable/TouchableWin32.Types';
|
|
17
23
|
export * from './Components/Touchable/TouchableWin32';
|
|
18
24
|
export * from './PersonaCoin/PersonaCoin';
|