@office-iss/react-native-win32 0.72.0-preview.4 → 0.72.0-preview.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 +49 -1
- package/CHANGELOG.md +23 -4
- package/Libraries/Components/Button/ButtonWin32.js.map +1 -1
- package/Libraries/Components/Text/TextWin32.Props.d.ts +1 -1
- package/Libraries/Components/Text/TextWin32.Props.js.map +1 -1
- package/Libraries/Components/TextInput/AndroidTextInputNativeComponent.js +0 -1
- package/Libraries/Components/TextInput/TextInput.d.ts +121 -86
- package/Libraries/Components/TextInput/TextInput.flow.js +121 -135
- package/Libraries/Components/TextInput/TextInput.js +126 -155
- package/Libraries/Components/TextInput/TextInput.win32.js +121 -135
- package/Libraries/Components/Touchable/Tests/TouchableWin32Test.js.map +1 -1
- package/Libraries/Components/Touchable/TouchableNativeFeedback.d.ts +5 -0
- package/Libraries/Components/Touchable/TouchableWin32.Props.d.ts +1 -1
- package/Libraries/Components/Touchable/TouchableWin32.Props.js.map +1 -1
- package/Libraries/Components/Touchable/TouchableWin32.js.map +1 -1
- package/Libraries/Components/View/ViewAccessibility.d.ts +158 -4
- package/Libraries/Components/View/ViewPropTypes.d.ts +146 -6
- package/Libraries/Components/View/ViewWin32.d.ts +1 -1
- package/Libraries/Core/ReactNativeVersion.js +1 -1
- package/Libraries/PermissionsAndroid/PermissionsAndroid.js +0 -2
- package/Libraries/StyleSheet/StyleSheetTypes.d.ts +1 -13
- package/Libraries/Text/TextNativeComponent.win32.js +31 -5
- package/Libraries/platform-types.d.ts +5 -5
- package/overrides.json +5 -13
- package/package.json +16 -16
- package/src/Libraries/Components/Button/ButtonWin32.tsx +1 -1
- package/src/Libraries/Components/Text/TextWin32.Props.ts +1 -1
- package/src/Libraries/Components/Touchable/Tests/TouchableWin32Test.tsx +1 -1
- package/src/Libraries/Components/Touchable/TouchableWin32.Props.tsx +1 -1
- package/src/Libraries/Components/Touchable/TouchableWin32.tsx +1 -1
- package/{Libraries/Components/View/ViewPropTypes.win32.d.ts → src/Libraries/Components/View/ViewPropTypes.d.ts} +14 -1
- package/src/Libraries/Components/View/ViewWin32.d.ts +1 -1
- package/src/Libraries/platform-types.d.ts +5 -5
- package/types/experimental.d.ts +101 -0
- package/Libraries/Components/Text/Tests/TextWin32Test.d.ts +0 -8
- package/Libraries/Components/Text/Tests/TextWin32Test.js +0 -120
- package/Libraries/Components/Text/Tests/TextWin32Test.js.map +0 -1
- package/Libraries/Components/View/Tests/ViewWin32Test.d.ts +0 -8
- package/Libraries/Components/View/Tests/ViewWin32Test.js +0 -233
- package/Libraries/Components/View/Tests/ViewWin32Test.js.map +0 -1
- package/src/Libraries/Components/Text/Tests/TextWin32Test.tsx +0 -164
- package/src/Libraries/Components/Touchable/TouchableNativeFeedback.win32.d.ts +0 -119
- package/src/Libraries/Components/View/Tests/ViewWin32Test.tsx +0 -333
- package/src/Libraries/Components/View/ViewAccessibility.win32.d.ts +0 -527
- package/src/Libraries/Components/View/ViewPropTypes.win32.d.ts +0 -372
- /package/{Libraries/Components/Touchable/TouchableNativeFeedback.win32.d.ts → src/Libraries/Components/Touchable/TouchableNativeFeedback.d.ts} +0 -0
- /package/{Libraries/Components/View/ViewAccessibility.win32.d.ts → src/Libraries/Components/View/ViewAccessibility.d.ts} +0 -0
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the MIT license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*
|
|
7
|
+
* @format
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* These are types for things that are present for New Architecture enabled apps
|
|
12
|
+
* which is currently considered experimental.
|
|
13
|
+
*
|
|
14
|
+
* To load the types declared here in an actual project, there are three ways.
|
|
15
|
+
*
|
|
16
|
+
* 1. If your `tsconfig.json` already has a `"types"` array in the `"compilerOptions"` section,
|
|
17
|
+
* is to add `"react-native/types/experimental"` to the `"types"` array.
|
|
18
|
+
*
|
|
19
|
+
* 2. Alternatively, a specific import syntax can to be used from a typescript file.
|
|
20
|
+
* This module does not exist in reality, which is why the {} is important:
|
|
21
|
+
*
|
|
22
|
+
* ```ts
|
|
23
|
+
* import {} from 'react-native/types/experimental'
|
|
24
|
+
* ```
|
|
25
|
+
*
|
|
26
|
+
* 3. It is also possible to include it through a triple-slash reference:
|
|
27
|
+
*
|
|
28
|
+
* ```ts
|
|
29
|
+
* /// <reference types="react-native/types/experimental" />
|
|
30
|
+
* ```
|
|
31
|
+
*
|
|
32
|
+
* Either the import or the reference only needs to appear once, anywhere in the project.
|
|
33
|
+
*/
|
|
34
|
+
|
|
35
|
+
import {DimensionValue} from 'react-native/Libraries/StyleSheet/StyleSheetTypes';
|
|
36
|
+
|
|
37
|
+
export {};
|
|
38
|
+
|
|
39
|
+
declare module '.' {
|
|
40
|
+
export interface FlexStyle {
|
|
41
|
+
/**
|
|
42
|
+
* Equivalent to `marginVertical`
|
|
43
|
+
*/
|
|
44
|
+
marginBlock?: DimensionValue | undefined;
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Equivalent to `marginBottom`
|
|
48
|
+
*/
|
|
49
|
+
marginBlockEnd?: DimensionValue | undefined;
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Equivalent to `marginTop`
|
|
53
|
+
*/
|
|
54
|
+
marginBlockStart?: DimensionValue | undefined;
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Equivalent to `marginHorizontal`
|
|
58
|
+
*/
|
|
59
|
+
marginInline?: DimensionValue | undefined;
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* Equivalent to `marginEnd`
|
|
63
|
+
*/
|
|
64
|
+
marginInlineEnd?: DimensionValue | undefined;
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* Equivalent to `marginStart`
|
|
68
|
+
*/
|
|
69
|
+
marginInlineStart?: DimensionValue | undefined;
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* Equivalent to `paddingVertical`
|
|
73
|
+
*/
|
|
74
|
+
paddingBlock?: DimensionValue | undefined;
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* Equivalent to `paddingBottom`
|
|
78
|
+
*/
|
|
79
|
+
paddingBlockEnd?: DimensionValue | undefined;
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* Equivalent to `paddingTop`
|
|
83
|
+
*/
|
|
84
|
+
paddingBlockStart?: DimensionValue | undefined;
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* Equivalent to `paddingHorizontal`
|
|
88
|
+
*/
|
|
89
|
+
paddingInline?: DimensionValue | undefined;
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* Equivalent to `paddingEnd`
|
|
93
|
+
*/
|
|
94
|
+
paddingInlineEnd?: DimensionValue | undefined;
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* Equivalent to `paddingStart`
|
|
98
|
+
*/
|
|
99
|
+
paddingInlineStart?: DimensionValue | undefined;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export declare const title = "TextWin32";
|
|
2
|
-
export declare const displayName = "TextWin32";
|
|
3
|
-
export declare const description = "TextWin32 Examples and Tests";
|
|
4
|
-
export declare const examples: {
|
|
5
|
-
title: string;
|
|
6
|
-
description: string;
|
|
7
|
-
render(): JSX.Element;
|
|
8
|
-
}[];
|
|
@@ -1,120 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.examples = exports.description = exports.displayName = exports.title = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const react_native_1 = require("react-native");
|
|
9
|
-
const TextWin32_1 = require("../../Text/TextWin32");
|
|
10
|
-
const ViewWin32_1 = require("../../View/ViewWin32");
|
|
11
|
-
// Disabling no-jsx-lambda so functional components are more convenient to use
|
|
12
|
-
const TextRunsTest = () => {
|
|
13
|
-
return (react_1.default.createElement(react_native_1.View, { focusable: true },
|
|
14
|
-
react_1.default.createElement(TextWin32_1.TextWin32, null,
|
|
15
|
-
react_1.default.createElement(TextWin32_1.TextWin32, null, "Text With "),
|
|
16
|
-
react_1.default.createElement(TextWin32_1.TextWin32, null, "Multiple Text "),
|
|
17
|
-
react_1.default.createElement(TextWin32_1.TextWin32, null, "Children [Runs]"))));
|
|
18
|
-
};
|
|
19
|
-
const FocusableTextTest = () => {
|
|
20
|
-
return (react_1.default.createElement(ViewWin32_1.ViewWin32, null,
|
|
21
|
-
react_1.default.createElement(TextWin32_1.TextWin32, { focusable: true }, "This TextWin32 demonstrates focusable")));
|
|
22
|
-
};
|
|
23
|
-
const SelectableTextTest = () => {
|
|
24
|
-
return (react_1.default.createElement(ViewWin32_1.ViewWin32, null,
|
|
25
|
-
react_1.default.createElement(TextWin32_1.TextWin32, { selectable: true }, "This TextWin32 demonstrates selectable")));
|
|
26
|
-
};
|
|
27
|
-
const TextStyleTest = () => {
|
|
28
|
-
return (react_1.default.createElement(ViewWin32_1.ViewWin32, null,
|
|
29
|
-
react_1.default.createElement(TextWin32_1.TextWin32, { textStyle: 'MediumBold' }, "Normal Text Display")));
|
|
30
|
-
};
|
|
31
|
-
const TooltipTextTest = () => {
|
|
32
|
-
return (react_1.default.createElement(ViewWin32_1.ViewWin32, null,
|
|
33
|
-
react_1.default.createElement(TextWin32_1.TextWin32, { tooltip: "Example Tooltip" }, "This TextWin32 demonstrates a tooltip")));
|
|
34
|
-
};
|
|
35
|
-
const TextPromotionTest = () => {
|
|
36
|
-
let FocusabilityState;
|
|
37
|
-
(function (FocusabilityState) {
|
|
38
|
-
FocusabilityState[FocusabilityState["NoFocus"] = 0] = "NoFocus";
|
|
39
|
-
FocusabilityState[FocusabilityState["Focusable"] = 1] = "Focusable";
|
|
40
|
-
FocusabilityState[FocusabilityState["Selectable"] = 2] = "Selectable";
|
|
41
|
-
})(FocusabilityState || (FocusabilityState = {}));
|
|
42
|
-
const [focusabilityState, setFocusabilityState] = react_1.default.useState(FocusabilityState.NoFocus);
|
|
43
|
-
return (react_1.default.createElement(ViewWin32_1.ViewWin32, null,
|
|
44
|
-
react_1.default.createElement(react_native_1.Button, { title: "Click to Promote Focusability", onPress: () => {
|
|
45
|
-
if (focusabilityState === FocusabilityState.NoFocus) {
|
|
46
|
-
setFocusabilityState(FocusabilityState.Focusable);
|
|
47
|
-
}
|
|
48
|
-
else if (focusabilityState === FocusabilityState.Focusable) {
|
|
49
|
-
setFocusabilityState(FocusabilityState.Selectable);
|
|
50
|
-
}
|
|
51
|
-
} }),
|
|
52
|
-
react_1.default.createElement(TextWin32_1.TextWin32, { focusable: focusabilityState === FocusabilityState.Focusable, selectable: focusabilityState === FocusabilityState.Selectable }, "This text is currently..."),
|
|
53
|
-
react_1.default.createElement(TextWin32_1.TextWin32, null, (focusabilityState === FocusabilityState.NoFocus) ? 'No Focusability' :
|
|
54
|
-
(focusabilityState === FocusabilityState.Focusable) ? 'Focusable' :
|
|
55
|
-
'Selectable')));
|
|
56
|
-
};
|
|
57
|
-
const BlurringAndFocusingTextTest = () => {
|
|
58
|
-
const [isFocusableFocused, setIsFocusableFocused] = react_1.default.useState(false);
|
|
59
|
-
const [isSelectableFocused, setIsSelectableFocused] = react_1.default.useState(false);
|
|
60
|
-
return (react_1.default.createElement(react_native_1.View, null,
|
|
61
|
-
react_1.default.createElement(TextWin32_1.TextWin32, { focusable: true, onBlur: () => setIsFocusableFocused(false), onFocus: () => setIsFocusableFocused(true) }, "Focusable text is focused:"),
|
|
62
|
-
react_1.default.createElement(TextWin32_1.TextWin32, { textStyle: isFocusableFocused ? 'MediumBold' : 'MediumStandard' }, isFocusableFocused ? 'true' : 'false'),
|
|
63
|
-
react_1.default.createElement(TextWin32_1.TextWin32, { selectable: true, onBlur: () => setIsSelectableFocused(false), onFocus: () => setIsSelectableFocused(true) }, "Selectable text is focused:"),
|
|
64
|
-
react_1.default.createElement(TextWin32_1.TextWin32, { textStyle: isSelectableFocused ? 'MediumBold' : 'MediumStandard' }, isSelectableFocused ? 'true' : 'false')));
|
|
65
|
-
};
|
|
66
|
-
exports.title = 'TextWin32';
|
|
67
|
-
exports.displayName = 'TextWin32';
|
|
68
|
-
exports.description = 'TextWin32 Examples and Tests';
|
|
69
|
-
exports.examples = [
|
|
70
|
-
{
|
|
71
|
-
title: 'Text Runs Example',
|
|
72
|
-
description: 'text runs in action',
|
|
73
|
-
render() {
|
|
74
|
-
return (react_1.default.createElement(TextRunsTest, null));
|
|
75
|
-
},
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
title: 'Focusable Example',
|
|
79
|
-
description: 'focusable in action',
|
|
80
|
-
render() {
|
|
81
|
-
return (react_1.default.createElement(FocusableTextTest, null));
|
|
82
|
-
},
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
title: 'Selectable Example',
|
|
86
|
-
description: 'selectable in action',
|
|
87
|
-
render() {
|
|
88
|
-
return (react_1.default.createElement(SelectableTextTest, null));
|
|
89
|
-
},
|
|
90
|
-
},
|
|
91
|
-
{
|
|
92
|
-
title: 'TextStyle Example',
|
|
93
|
-
description: 'TextStyles in action',
|
|
94
|
-
render() {
|
|
95
|
-
return (react_1.default.createElement(TextStyleTest, null));
|
|
96
|
-
},
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
title: 'Tooltip Example',
|
|
100
|
-
description: 'tooltips in action',
|
|
101
|
-
render() {
|
|
102
|
-
return (react_1.default.createElement(TooltipTextTest, null));
|
|
103
|
-
},
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
title: 'TextPromotion Example',
|
|
107
|
-
description: 'dynamic increases in focusability in action',
|
|
108
|
-
render() {
|
|
109
|
-
return (react_1.default.createElement(TextPromotionTest, null));
|
|
110
|
-
},
|
|
111
|
-
},
|
|
112
|
-
{
|
|
113
|
-
title: 'Focus and Blur Example',
|
|
114
|
-
description: 'onFocus/onBlur in action',
|
|
115
|
-
render() {
|
|
116
|
-
return (react_1.default.createElement(BlurringAndFocusingTextTest, null));
|
|
117
|
-
},
|
|
118
|
-
},
|
|
119
|
-
];
|
|
120
|
-
//# sourceMappingURL=TextWin32Test.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"TextWin32Test.js","sourceRoot":"","sources":["../../../../src/Libraries/Components/Text/Tests/TextWin32Test.tsx"],"names":[],"mappings":"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","sourcesContent":["'use strict';\nimport React from 'react'\nimport { Button, View } from 'react-native';\nimport { TextWin32 } from '../../Text/TextWin32';\nimport { ViewWin32 } from '../../View/ViewWin32';\n\n// Disabling no-jsx-lambda so functional components are more convenient to use\n\nconst TextRunsTest: React.FC<{}> = () => {\n return (\n <View focusable>\n <TextWin32>\n <TextWin32>Text With </TextWin32>\n <TextWin32>Multiple Text </TextWin32>\n <TextWin32>Children [Runs]</TextWin32>\n </TextWin32>\n </View>\n );\n};\n\nconst FocusableTextTest: React.FC<{}> = () => {\n return (\n <ViewWin32>\n <TextWin32 focusable>This TextWin32 demonstrates focusable</TextWin32>\n </ViewWin32>\n );\n};\n\nconst SelectableTextTest: React.FC<{}> = () => {\n return (\n <ViewWin32>\n <TextWin32 selectable>This TextWin32 demonstrates selectable</TextWin32>\n </ViewWin32>\n );\n};\n\nconst TextStyleTest: React.FC<{}> = () => {\n return (\n <ViewWin32>\n <TextWin32 textStyle={'MediumBold'}>Normal Text Display</TextWin32>\n </ViewWin32>\n );\n};\n\nconst TooltipTextTest: React.FC<{}> = () => {\n return (\n <ViewWin32>\n <TextWin32 tooltip=\"Example Tooltip\">This TextWin32 demonstrates a tooltip</TextWin32>\n </ViewWin32>\n );\n};\n\nconst TextPromotionTest: React.FC<{}> = () => {\n enum FocusabilityState {\n NoFocus,\n Focusable,\n Selectable,\n }\n const [focusabilityState, setFocusabilityState] = React.useState(FocusabilityState.NoFocus);\n return (\n <ViewWin32>\n <Button\n title=\"Click to Promote Focusability\"\n onPress={() => \n {\n if (focusabilityState === FocusabilityState.NoFocus)\n {\n setFocusabilityState(FocusabilityState.Focusable);\n }\n else if (focusabilityState === FocusabilityState.Focusable)\n {\n setFocusabilityState(FocusabilityState.Selectable);\n }\n }} />\n <TextWin32\n focusable={focusabilityState === FocusabilityState.Focusable}\n selectable={focusabilityState === FocusabilityState.Selectable}\n >\n This text is currently...\n </TextWin32>\n <TextWin32>\n {(focusabilityState === FocusabilityState.NoFocus) ? 'No Focusability' : \n (focusabilityState === FocusabilityState.Focusable) ? 'Focusable' :\n 'Selectable'}\n </TextWin32>\n </ViewWin32>\n );\n};\n\nconst BlurringAndFocusingTextTest: React.FC<{}> = () => {\n const [isFocusableFocused, setIsFocusableFocused] = React.useState(false);\n const [isSelectableFocused, setIsSelectableFocused] = React.useState(false);\n return (\n <View>\n <TextWin32\n focusable\n onBlur={() => setIsFocusableFocused(false)}\n onFocus={() => setIsFocusableFocused(true)}>Focusable text is focused:</TextWin32>\n <TextWin32\n textStyle={isFocusableFocused ? 'MediumBold' : 'MediumStandard'}>{isFocusableFocused ? 'true' : 'false'}</TextWin32>\n <TextWin32\n selectable\n onBlur={() => setIsSelectableFocused(false)}\n onFocus={() => setIsSelectableFocused(true)}>Selectable text is focused:</TextWin32>\n <TextWin32\n textStyle={isSelectableFocused ? 'MediumBold' : 'MediumStandard'}>{isSelectableFocused ? 'true' : 'false'}</TextWin32>\n </View>\n );\n};\n\nexport const title = 'TextWin32';\nexport const displayName = 'TextWin32';\nexport const description = 'TextWin32 Examples and Tests';\nexport const examples = [\n {\n title: 'Text Runs Example',\n description: 'text runs in action',\n render(): JSX.Element {\n return (<TextRunsTest />);\n },\n },\n {\n title: 'Focusable Example',\n description: 'focusable in action',\n render(): JSX.Element {\n return (<FocusableTextTest />);\n },\n },\n {\n title: 'Selectable Example',\n description: 'selectable in action',\n render(): JSX.Element {\n return (<SelectableTextTest />);\n },\n },\n {\n title: 'TextStyle Example',\n description: 'TextStyles in action',\n render(): JSX.Element {\n return (<TextStyleTest />);\n },\n },\n {\n title: 'Tooltip Example',\n description: 'tooltips in action',\n render(): JSX.Element {\n return (<TooltipTextTest />);\n },\n },\n {\n title: 'TextPromotion Example',\n description: 'dynamic increases in focusability in action',\n render(): JSX.Element {\n return (<TextPromotionTest />);\n },\n },\n {\n title: 'Focus and Blur Example',\n description: 'onFocus/onBlur in action',\n render(): JSX.Element {\n return (<BlurringAndFocusingTextTest />);\n },\n },\n ];"]}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export declare const title = "ViewWin32";
|
|
2
|
-
export declare const displayName = "ViewWin32 Example";
|
|
3
|
-
export declare const description = "All the stock View props plus Win32 specific ones";
|
|
4
|
-
export declare const examples: {
|
|
5
|
-
title: string;
|
|
6
|
-
description: string;
|
|
7
|
-
render(): JSX.Element;
|
|
8
|
-
}[];
|
|
@@ -1,233 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.examples = exports.description = exports.displayName = exports.title = void 0;
|
|
7
|
-
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const react_native_1 = require("react-native");
|
|
9
|
-
const react_native_win32_1 = require("@office-iss/react-native-win32");
|
|
10
|
-
const styles = react_native_1.StyleSheet.create({
|
|
11
|
-
border: {
|
|
12
|
-
borderStyle: 'dotted',
|
|
13
|
-
borderColor: 'black',
|
|
14
|
-
},
|
|
15
|
-
keyComponentRoot: {
|
|
16
|
-
borderWidth: 2,
|
|
17
|
-
flexDirection: 'row',
|
|
18
|
-
marginVertical: 5,
|
|
19
|
-
backgroundColor: 'whitesmoke',
|
|
20
|
-
justifyContent: 'space-around',
|
|
21
|
-
},
|
|
22
|
-
keyEnterVisualizer: {
|
|
23
|
-
margin: 5,
|
|
24
|
-
alignItems: 'center',
|
|
25
|
-
minWidth: 100,
|
|
26
|
-
minHeight: 30,
|
|
27
|
-
},
|
|
28
|
-
blackbox: { height: 30, width: 30, borderColor: 'black', borderWidth: 3 },
|
|
29
|
-
});
|
|
30
|
-
function FocusMoverTestComponent() {
|
|
31
|
-
const [hasFocus, setHasFocus] = react_1.default.useState(false);
|
|
32
|
-
const labelId = react_1.default.useId();
|
|
33
|
-
const ref = react_1.default.useRef(null);
|
|
34
|
-
const onBtnPress = () => {
|
|
35
|
-
if (ref.current) {
|
|
36
|
-
ref.current.focus();
|
|
37
|
-
}
|
|
38
|
-
};
|
|
39
|
-
return (react_1.default.createElement(react_native_win32_1.ViewWin32, null,
|
|
40
|
-
react_1.default.createElement(react_native_win32_1.ViewWin32, { nativeID: labelId, accessibilityLabel: "separate label for test", accessibilityItemType: "Comment" }),
|
|
41
|
-
react_1.default.createElement(react_native_win32_1.ViewWin32, { style: { flexDirection: 'row', alignItems: 'center', justifyContent: 'space-around', marginVertical: 5 } },
|
|
42
|
-
react_1.default.createElement(react_native_1.TouchableHighlight, { onPress: onBtnPress },
|
|
43
|
-
react_1.default.createElement(react_native_win32_1.ViewWin32, { accessibilityLabelledBy: labelId, style: styles.blackbox })),
|
|
44
|
-
react_1.default.createElement(react_native_win32_1.ViewWin32, { ref: ref, focusable: true, style: hasFocus ? { backgroundColor: '#aee8fcff' } : { backgroundColor: '#00000000' }, onFocus: () => setHasFocus(true), onBlur: () => setHasFocus(false), enableFocusRing: false },
|
|
45
|
-
react_1.default.createElement(react_native_1.Text, null, hasFocus ? 'Focus: Yes' : 'Focus: No')))));
|
|
46
|
-
}
|
|
47
|
-
const handledNativeKeyboardEvents = [
|
|
48
|
-
{ key: 'ArrowDown' },
|
|
49
|
-
{ key: 'ArrowUp' },
|
|
50
|
-
{ key: 'ArrowLeft' },
|
|
51
|
-
{ key: 'ArrowRight' },
|
|
52
|
-
{ key: 'Tab' },
|
|
53
|
-
];
|
|
54
|
-
class KeyboardTestComponent extends react_1.default.Component {
|
|
55
|
-
constructor(props) {
|
|
56
|
-
super(props);
|
|
57
|
-
this._onFocus = () => {
|
|
58
|
-
this.setState({
|
|
59
|
-
hasFocus: true,
|
|
60
|
-
});
|
|
61
|
-
};
|
|
62
|
-
this._onBlur = () => {
|
|
63
|
-
this.setState({
|
|
64
|
-
hasFocus: false,
|
|
65
|
-
});
|
|
66
|
-
};
|
|
67
|
-
this._onKeyUp = (ev) => {
|
|
68
|
-
this.setState({ lastKeyUp: ev.nativeEvent.key, lastKeyDown: null });
|
|
69
|
-
};
|
|
70
|
-
this._onKeyDown = (ev) => {
|
|
71
|
-
this.setState({ lastKeyDown: ev.nativeEvent.key, lastKeyUp: null });
|
|
72
|
-
};
|
|
73
|
-
this.state = {
|
|
74
|
-
hasFocus: false,
|
|
75
|
-
lastKeyDown: null,
|
|
76
|
-
lastKeyUp: null,
|
|
77
|
-
};
|
|
78
|
-
}
|
|
79
|
-
render() {
|
|
80
|
-
return (react_1.default.createElement(react_native_win32_1.ViewWin32, { keyDownEvents: handledNativeKeyboardEvents, keyUpEvents: handledNativeKeyboardEvents },
|
|
81
|
-
react_1.default.createElement(react_native_win32_1.ViewWin32, { style: this.state.hasFocus ? [styles.keyComponentRoot, styles.border] : styles.keyComponentRoot, focusable: true, onKeyUp: this._onKeyUp, onKeyDown: this._onKeyDown, onFocus: this._onFocus, onBlur: this._onBlur, enableFocusRing: false },
|
|
82
|
-
react_1.default.createElement(react_native_win32_1.ViewWin32, { style: styles.keyEnterVisualizer },
|
|
83
|
-
react_1.default.createElement(react_native_1.Text, null, "OnKeyDown"),
|
|
84
|
-
react_1.default.createElement(react_native_1.Text, null, "----"),
|
|
85
|
-
react_1.default.createElement(react_native_1.Text, null, this.state.lastKeyDown !== null ? this.state.lastKeyDown : ' ')),
|
|
86
|
-
react_1.default.createElement(react_native_win32_1.ViewWin32, { style: styles.keyEnterVisualizer },
|
|
87
|
-
react_1.default.createElement(react_native_1.Text, null, "OnKeyUp"),
|
|
88
|
-
react_1.default.createElement(react_native_1.Text, null, "----"),
|
|
89
|
-
react_1.default.createElement(react_native_1.Text, null, this.state.lastKeyUp !== null ? this.state.lastKeyUp : ' ')))));
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
class HoverTestComponent extends react_1.default.Component {
|
|
93
|
-
constructor(props) {
|
|
94
|
-
super(props);
|
|
95
|
-
this._onMouseLeave = () => {
|
|
96
|
-
this.setState({ hasFocus: false });
|
|
97
|
-
};
|
|
98
|
-
this._onMouseEnter = () => {
|
|
99
|
-
this.setState({ hasFocus: true });
|
|
100
|
-
};
|
|
101
|
-
this.state = {
|
|
102
|
-
hasFocus: false,
|
|
103
|
-
};
|
|
104
|
-
}
|
|
105
|
-
render() {
|
|
106
|
-
return (react_1.default.createElement(react_native_win32_1.ViewWin32, { onMouseEnter: this._onMouseEnter, onMouseLeave: this._onMouseLeave, style: this.state.hasFocus ? [styles.blackbox, { backgroundColor: this.props.color }] : styles.blackbox }));
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
class HoverExample extends react_1.default.Component {
|
|
110
|
-
render() {
|
|
111
|
-
return (react_1.default.createElement(react_native_win32_1.ViewWin32, { style: { flexDirection: 'row', marginHorizontal: 75, justifyContent: 'space-around' } },
|
|
112
|
-
react_1.default.createElement(HoverTestComponent, { color: "red" }),
|
|
113
|
-
react_1.default.createElement(HoverTestComponent, { color: "orange" }),
|
|
114
|
-
react_1.default.createElement(HoverTestComponent, { color: "yellow" }),
|
|
115
|
-
react_1.default.createElement(HoverTestComponent, { color: "green" }),
|
|
116
|
-
react_1.default.createElement(HoverTestComponent, { color: "blue" }),
|
|
117
|
-
react_1.default.createElement(HoverTestComponent, { color: "indigo" }),
|
|
118
|
-
react_1.default.createElement(HoverTestComponent, { color: "violet" })));
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
const ToolTipExample = () => {
|
|
122
|
-
return (react_1.default.createElement(react_native_win32_1.ViewWin32, { style: {
|
|
123
|
-
backgroundColor: 'red',
|
|
124
|
-
height: 100,
|
|
125
|
-
width: 100,
|
|
126
|
-
}, tooltip: "Example tooltip", cursor: "pointer" }));
|
|
127
|
-
};
|
|
128
|
-
const CursorTestComponent = (props) => {
|
|
129
|
-
return (react_1.default.createElement(react_native_win32_1.ViewWin32, { style: { flexDirection: 'column' } },
|
|
130
|
-
react_1.default.createElement(react_native_1.Text, null, props.cursor),
|
|
131
|
-
react_1.default.createElement(react_native_win32_1.ViewWin32, { cursor: props.cursor, style: styles.blackbox })));
|
|
132
|
-
};
|
|
133
|
-
const CursorExample = () => {
|
|
134
|
-
return (react_1.default.createElement(react_native_win32_1.ViewWin32, { style: { flexDirection: 'row', justifyContent: 'space-around' } },
|
|
135
|
-
react_1.default.createElement(CursorTestComponent, { cursor: 'auto' }),
|
|
136
|
-
react_1.default.createElement(CursorTestComponent, { cursor: 'default' }),
|
|
137
|
-
react_1.default.createElement(CursorTestComponent, { cursor: 'help' }),
|
|
138
|
-
react_1.default.createElement(CursorTestComponent, { cursor: 'nesw-resize' }),
|
|
139
|
-
react_1.default.createElement(CursorTestComponent, { cursor: 'not-allowed' }),
|
|
140
|
-
react_1.default.createElement(CursorTestComponent, { cursor: 'ns-resize' }),
|
|
141
|
-
react_1.default.createElement(CursorTestComponent, { cursor: 'nwse-resize' }),
|
|
142
|
-
react_1.default.createElement(CursorTestComponent, { cursor: 'pointer' }),
|
|
143
|
-
react_1.default.createElement(CursorTestComponent, { cursor: 'wait' }),
|
|
144
|
-
react_1.default.createElement(CursorTestComponent, { cursor: 'move' }),
|
|
145
|
-
react_1.default.createElement(CursorTestComponent, { cursor: 'text' }),
|
|
146
|
-
react_1.default.createElement(CursorTestComponent, { cursor: 'we-resize' })));
|
|
147
|
-
};
|
|
148
|
-
class EnableFocusRingExample extends react_1.default.Component {
|
|
149
|
-
constructor(props) {
|
|
150
|
-
super(props);
|
|
151
|
-
this._onFocus = () => {
|
|
152
|
-
this.setState({
|
|
153
|
-
hasFocus: true,
|
|
154
|
-
});
|
|
155
|
-
};
|
|
156
|
-
this._onBlur = () => {
|
|
157
|
-
this.setState({
|
|
158
|
-
hasFocus: false,
|
|
159
|
-
});
|
|
160
|
-
};
|
|
161
|
-
this.state = {
|
|
162
|
-
hasFocus: false,
|
|
163
|
-
};
|
|
164
|
-
}
|
|
165
|
-
render() {
|
|
166
|
-
return (react_1.default.createElement(react_native_win32_1.ViewWin32, { style: { flexDirection: 'row', alignItems: 'center', justifyContent: 'space-around', marginVertical: 5 } },
|
|
167
|
-
react_1.default.createElement(react_native_win32_1.ViewWin32, { style: {
|
|
168
|
-
backgroundColor: 'pink',
|
|
169
|
-
height: 100,
|
|
170
|
-
width: 100,
|
|
171
|
-
}, enableFocusRing: true, focusable: true },
|
|
172
|
-
react_1.default.createElement(react_native_1.Text, null, "enableFocusRing set to true")),
|
|
173
|
-
react_1.default.createElement(react_native_win32_1.ViewWin32, { style: {
|
|
174
|
-
backgroundColor: 'pink',
|
|
175
|
-
height: 100,
|
|
176
|
-
width: 100,
|
|
177
|
-
}, enableFocusRing: false, focusable: true, onFocus: this._onFocus, onBlur: this._onBlur },
|
|
178
|
-
react_1.default.createElement(react_1.default.Fragment, null,
|
|
179
|
-
react_1.default.createElement(react_native_1.Text, null, "enableFocusRing set to false"),
|
|
180
|
-
react_1.default.createElement(react_native_1.Text, null, this.state.hasFocus ? 'Focus: Yes' : 'Focus: No')))));
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
exports.title = 'ViewWin32';
|
|
184
|
-
exports.displayName = 'ViewWin32 Example';
|
|
185
|
-
exports.description = 'All the stock View props plus Win32 specific ones';
|
|
186
|
-
exports.examples = [
|
|
187
|
-
{
|
|
188
|
-
title: 'focus() method example',
|
|
189
|
-
description: 'Each of these black boxes moves focus to the ViewWin32 on the right',
|
|
190
|
-
render() {
|
|
191
|
-
return (react_1.default.createElement(react_native_win32_1.ViewWin32, null,
|
|
192
|
-
react_1.default.createElement(FocusMoverTestComponent, null),
|
|
193
|
-
react_1.default.createElement(FocusMoverTestComponent, null),
|
|
194
|
-
react_1.default.createElement(FocusMoverTestComponent, null)));
|
|
195
|
-
},
|
|
196
|
-
},
|
|
197
|
-
{
|
|
198
|
-
title: 'KeyboardEvents example',
|
|
199
|
-
description: 'Native keyboarding has been prevented',
|
|
200
|
-
render() {
|
|
201
|
-
return react_1.default.createElement(KeyboardTestComponent, null);
|
|
202
|
-
},
|
|
203
|
-
},
|
|
204
|
-
{
|
|
205
|
-
title: 'Hover example',
|
|
206
|
-
description: 'Hover a rainbow',
|
|
207
|
-
render() {
|
|
208
|
-
return react_1.default.createElement(HoverExample, null);
|
|
209
|
-
},
|
|
210
|
-
},
|
|
211
|
-
{
|
|
212
|
-
title: 'Tooltip example',
|
|
213
|
-
description: 'Displays a tooltip on hover',
|
|
214
|
-
render() {
|
|
215
|
-
return react_1.default.createElement(ToolTipExample, null);
|
|
216
|
-
},
|
|
217
|
-
},
|
|
218
|
-
{
|
|
219
|
-
title: 'Cursor example',
|
|
220
|
-
description: 'Each of these boxes should display a different cursor',
|
|
221
|
-
render() {
|
|
222
|
-
return react_1.default.createElement(CursorExample, null);
|
|
223
|
-
},
|
|
224
|
-
},
|
|
225
|
-
{
|
|
226
|
-
title: 'EnableFocusRing example',
|
|
227
|
-
description: 'Displays focus visuals that are driven by native',
|
|
228
|
-
render() {
|
|
229
|
-
return react_1.default.createElement(EnableFocusRingExample, null);
|
|
230
|
-
},
|
|
231
|
-
},
|
|
232
|
-
];
|
|
233
|
-
//# sourceMappingURL=ViewWin32Test.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ViewWin32Test.js","sourceRoot":"","sources":["../../../../src/Libraries/Components/View/Tests/ViewWin32Test.tsx"],"names":[],"mappings":"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","sourcesContent":["'use strict';\nimport React from 'react'\nimport { StyleSheet, Text, TouchableHighlight } from 'react-native';\nimport { Cursor, IKeyboardEvent, IHandledKeyboardEvent, ViewWin32 } from '@office-iss/react-native-win32';\n\nconst styles = StyleSheet.create({\n border: {\n borderStyle: 'dotted',\n borderColor: 'black',\n },\n keyComponentRoot: {\n borderWidth: 2,\n flexDirection: 'row',\n marginVertical: 5,\n backgroundColor: 'whitesmoke',\n justifyContent: 'space-around',\n },\n keyEnterVisualizer: {\n margin: 5,\n alignItems: 'center',\n minWidth: 100,\n minHeight: 30,\n },\n blackbox: { height: 30, width: 30, borderColor: 'black', borderWidth: 3 },\n});\n\ninterface IFocusableComponentState {\n hasFocus: boolean;\n}\n\nfunction FocusMoverTestComponent() {\n const [hasFocus, setHasFocus] = React.useState<boolean>(false);\n\n const labelId = React.useId();\n\n const ref = React.useRef<ViewWin32>(null);\n const onBtnPress = () => {\n if (ref.current) {\n ref.current.focus();\n }\n };\n\n return (\n <ViewWin32>\n <ViewWin32 nativeID={labelId} accessibilityLabel=\"separate label for test\" accessibilityItemType=\"Comment\" />\n <ViewWin32 style={{ flexDirection: 'row', alignItems: 'center', justifyContent: 'space-around', marginVertical: 5 }}>\n <TouchableHighlight onPress={onBtnPress}>\n <ViewWin32 accessibilityLabelledBy={labelId} style={styles.blackbox} />\n </TouchableHighlight>\n <ViewWin32\n ref={ref}\n focusable\n style={hasFocus ? { backgroundColor: '#aee8fcff' } : { backgroundColor: '#00000000' }}\n onFocus={() => setHasFocus(true)}\n onBlur={() => setHasFocus(false)}\n enableFocusRing={false}\n >\n <Text>{hasFocus ? 'Focus: Yes' : 'Focus: No'}</Text>\n </ViewWin32>\n </ViewWin32>\n </ViewWin32>\n );\n}\n\ninterface IKeyboardableComponentState {\n lastKeyDown: string;\n lastKeyUp: string;\n}\n\nconst handledNativeKeyboardEvents: IHandledKeyboardEvent[] = [\n { key: 'ArrowDown' },\n { key: 'ArrowUp' },\n { key: 'ArrowLeft' },\n { key: 'ArrowRight' },\n { key: 'Tab' },\n];\n\nclass KeyboardTestComponent extends React.Component<{}, IFocusableComponentState & IKeyboardableComponentState> {\n public constructor(props) {\n super(props);\n this.state = {\n hasFocus: false,\n lastKeyDown: null,\n lastKeyUp: null,\n };\n }\n\n public render() {\n return (\n <ViewWin32 keyDownEvents={handledNativeKeyboardEvents} keyUpEvents={handledNativeKeyboardEvents}>\n <ViewWin32\n style={this.state.hasFocus ? [styles.keyComponentRoot, styles.border] : styles.keyComponentRoot}\n focusable\n onKeyUp={this._onKeyUp}\n onKeyDown={this._onKeyDown}\n onFocus={this._onFocus}\n onBlur={this._onBlur}\n enableFocusRing={false}\n >\n <ViewWin32 style={styles.keyEnterVisualizer}>\n <Text>OnKeyDown</Text>\n <Text>----</Text>\n <Text>{this.state.lastKeyDown !== null ? this.state.lastKeyDown : ' '}</Text>\n </ViewWin32>\n <ViewWin32 style={styles.keyEnterVisualizer}>\n <Text>OnKeyUp</Text>\n <Text>----</Text>\n <Text>{this.state.lastKeyUp !== null ? this.state.lastKeyUp : ' '}</Text>\n </ViewWin32>\n </ViewWin32>\n </ViewWin32>\n );\n }\n\n private readonly _onFocus = () => {\n this.setState({\n hasFocus: true,\n });\n };\n\n private readonly _onBlur = () => {\n this.setState({\n hasFocus: false,\n });\n };\n\n private readonly _onKeyUp = (ev: IKeyboardEvent) => {\n this.setState({ lastKeyUp: ev.nativeEvent.key, lastKeyDown: null });\n };\n\n private readonly _onKeyDown = (ev: IKeyboardEvent) => {\n this.setState({ lastKeyDown: ev.nativeEvent.key, lastKeyUp: null });\n };\n}\n\ninterface IHoverComponentProps {\n color: string;\n}\nclass HoverTestComponent extends React.Component<IHoverComponentProps, IFocusableComponentState> {\n public constructor(props) {\n super(props);\n this.state = {\n hasFocus: false,\n };\n }\n\n public render() {\n return (\n <ViewWin32\n onMouseEnter={this._onMouseEnter}\n onMouseLeave={this._onMouseLeave}\n style={this.state.hasFocus ? [styles.blackbox, { backgroundColor: this.props.color }] : styles.blackbox}\n />\n );\n }\n private readonly _onMouseLeave = () => {\n this.setState({ hasFocus: false });\n };\n private readonly _onMouseEnter = () => {\n this.setState({ hasFocus: true });\n };\n}\n\nclass HoverExample extends React.Component {\n public render() {\n return (\n <ViewWin32 style={{ flexDirection: 'row', marginHorizontal: 75, justifyContent: 'space-around' }}>\n <HoverTestComponent color=\"red\" />\n <HoverTestComponent color=\"orange\" />\n <HoverTestComponent color=\"yellow\" />\n <HoverTestComponent color=\"green\" />\n <HoverTestComponent color=\"blue\" />\n <HoverTestComponent color=\"indigo\" />\n <HoverTestComponent color=\"violet\" />\n </ViewWin32>\n );\n }\n}\n\nconst ToolTipExample: React.FunctionComponent<{}> = () => {\n return (\n <ViewWin32\n style={{\n backgroundColor: 'red',\n height: 100,\n width: 100,\n }}\n tooltip=\"Example tooltip\"\n cursor=\"pointer\"\n />\n );\n};\n\ninterface ICursorTestComponentProps {\n cursor: Cursor\n}\n\nconst CursorTestComponent: React.FunctionComponent<ICursorTestComponentProps> = (props) => {\n return (\n <ViewWin32 style={{flexDirection: 'column'}}>\n <Text>{props.cursor}</Text>\n <ViewWin32 cursor={props.cursor} style={styles.blackbox} />\n </ViewWin32>\n )\n}\n\nconst CursorExample: React.FunctionComponent = () => {\n return (\n <ViewWin32 style={{ flexDirection: 'row', justifyContent: 'space-around' }}>\n <CursorTestComponent cursor='auto' />\n <CursorTestComponent cursor='default' />\n <CursorTestComponent cursor='help' />\n <CursorTestComponent cursor='nesw-resize' />\n <CursorTestComponent cursor='not-allowed' />\n <CursorTestComponent cursor='ns-resize' />\n <CursorTestComponent cursor='nwse-resize' />\n <CursorTestComponent cursor='pointer' />\n <CursorTestComponent cursor='wait' />\n <CursorTestComponent cursor='move' />\n <CursorTestComponent cursor='text' />\n <CursorTestComponent cursor='we-resize' />\n </ViewWin32>\n );\n}\nclass EnableFocusRingExample extends React.Component<{}, IFocusableComponentState> {\n public constructor(props) {\n super(props);\n this.state = {\n hasFocus: false,\n };\n }\n \n public render() {\n return (\n <ViewWin32 style={{ flexDirection: 'row', alignItems: 'center', justifyContent: 'space-around', marginVertical: 5 }}>\n <ViewWin32\n style={{\n backgroundColor: 'pink',\n height: 100,\n width: 100,\n }}\n enableFocusRing={true}\n focusable\n >\n <Text>enableFocusRing set to true</Text>\n </ViewWin32>\n <ViewWin32\n style={{\n backgroundColor: 'pink',\n height: 100,\n width: 100,\n }}\n enableFocusRing={false}\n focusable\n onFocus={this._onFocus}\n onBlur={this._onBlur}\n >\n <>\n <Text>enableFocusRing set to false</Text>\n <Text>{this.state.hasFocus ? 'Focus: Yes' : 'Focus: No'}</Text>\n </>\n </ViewWin32>\n </ViewWin32>\n );\n }\n\n private readonly _onFocus = () => {\n this.setState({\n hasFocus: true,\n });\n };\n\n private readonly _onBlur = () => {\n this.setState({\n hasFocus: false,\n });\n };\n}\n\n\nexport const title = 'ViewWin32';\nexport const displayName = 'ViewWin32 Example';\nexport const description = 'All the stock View props plus Win32 specific ones';\nexport const examples = [\n {\n title: 'focus() method example',\n description: 'Each of these black boxes moves focus to the ViewWin32 on the right',\n render(): JSX.Element {\n return (\n <ViewWin32>\n <FocusMoverTestComponent />\n <FocusMoverTestComponent />\n <FocusMoverTestComponent />\n </ViewWin32>\n );\n },\n },\n {\n title: 'KeyboardEvents example',\n description: 'Native keyboarding has been prevented',\n render(): JSX.Element {\n return <KeyboardTestComponent />;\n },\n },\n {\n title: 'Hover example',\n description: 'Hover a rainbow',\n render(): JSX.Element {\n return <HoverExample />;\n },\n },\n {\n title: 'Tooltip example',\n description: 'Displays a tooltip on hover',\n render(): JSX.Element {\n return <ToolTipExample />;\n },\n },\n {\n title: 'Cursor example',\n description: 'Each of these boxes should display a different cursor',\n render(): JSX.Element {\n return <CursorExample />;\n },\n },\n {\n title: 'EnableFocusRing example',\n description: 'Displays focus visuals that are driven by native',\n render(): JSX.Element {\n return <EnableFocusRingExample />;\n },\n },\n];\n"]}
|