@office-iss/react-native-win32 0.72.0-preview.2 → 0.72.0-preview.3
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 +13 -5
- 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": "Mon, 15 May 2023 15:17:55 GMT",
|
|
6
|
+
"tag": "@office-iss/react-native-win32_v0.72.0-preview.3",
|
|
7
|
+
"version": "0.72.0-preview.3",
|
|
8
|
+
"comments": {
|
|
9
|
+
"prerelease": [
|
|
10
|
+
{
|
|
11
|
+
"author": "30809111+acoates-ms@users.noreply.github.com",
|
|
12
|
+
"package": "@office-iss/react-native-win32",
|
|
13
|
+
"commit": "f2076401425338dec2db2d115b886988ac70e57b",
|
|
14
|
+
"comment": "Export additional TS types for back compat"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Thu, 04 May 2023 20:58:53 GMT",
|
|
6
21
|
"tag": "@office-iss/react-native-win32_v0.72.0-preview.2",
|
|
7
22
|
"version": "0.72.0-preview.2",
|
|
8
23
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,18 +1,26 @@
|
|
|
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, 15 May 2023 15:17:55 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## 0.72.0-preview.
|
|
7
|
+
## 0.72.0-preview.3
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Mon, 15 May 2023 15:17:55 GMT
|
|
10
10
|
|
|
11
11
|
### Changes
|
|
12
12
|
|
|
13
|
-
-
|
|
14
|
-
- Fix ref's on ViewWin32 (enables ViewWin32.focus() calls to work again) (30809111+acoates-ms@users.noreply.github.com)
|
|
13
|
+
- Export additional TS types for back compat (30809111+acoates-ms@users.noreply.github.com)
|
|
15
14
|
|
|
15
|
+
## 0.72.0-preview.2
|
|
16
|
+
|
|
17
|
+
Thu, 04 May 2023 20:58:53 GMT
|
|
18
|
+
|
|
19
|
+
### Changes
|
|
20
|
+
|
|
21
|
+
- Backport Node 16 (34109996+chiaramooney@users.noreply.github.com)
|
|
22
|
+
- Fix ref's on ViewWin32 (enables ViewWin32.focus() calls to work again) (30809111+acoates-ms@users.noreply.github.com)
|
|
23
|
+
|
|
16
24
|
## 0.72.0-preview.1
|
|
17
25
|
|
|
18
26
|
Mon, 01 May 2023 16:43:57 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';
|