@office-iss/react-native-win32 0.71.5 → 0.71.6
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/platform-types.d.ts +8 -2
- package/package.json +1 -1
- package/src/Libraries/platform-types.d.ts +8 -2
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": "Wed, 10 May 2023 01:37:40 GMT",
|
|
6
|
+
"tag": "@office-iss/react-native-win32_v0.71.6",
|
|
7
|
+
"version": "0.71.6",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "30809111+acoates-ms@users.noreply.github.com",
|
|
12
|
+
"package": "@office-iss/react-native-win32",
|
|
13
|
+
"commit": "d66bc7775a5c5064379bb46ae86f9a308dc5f994",
|
|
14
|
+
"comment": "Export additional TS types for back compat"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Thu, 27 Apr 2023 19:11:54 GMT",
|
|
6
21
|
"tag": "@office-iss/react-native-win32_v0.71.5",
|
|
7
22
|
"version": "0.71.5",
|
|
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 Wed, 10 May 2023 01:37:40 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## 0.71.
|
|
7
|
+
## 0.71.6
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Wed, 10 May 2023 01:37:40 GMT
|
|
10
10
|
|
|
11
11
|
### Patches
|
|
12
12
|
|
|
13
|
-
-
|
|
13
|
+
- Export additional TS types for back compat (30809111+acoates-ms@users.noreply.github.com)
|
|
14
14
|
|
|
15
|
+
## 0.71.5
|
|
16
|
+
|
|
17
|
+
Thu, 27 Apr 2023 19:11:54 GMT
|
|
18
|
+
|
|
19
|
+
### Patches
|
|
20
|
+
|
|
21
|
+
- Fix ref's on ViewWin32 (enables ViewWin32.focus() calls to work again) (30809111+acoates-ms@users.noreply.github.com)
|
|
22
|
+
|
|
15
23
|
## 0.71.4
|
|
16
24
|
|
|
17
25
|
Thu, 13 Apr 2023 20:50:33 GMT
|
|
@@ -5,9 +5,15 @@
|
|
|
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';
|
package/package.json
CHANGED
|
@@ -5,9 +5,15 @@
|
|
|
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';
|