react-native-a11y-order 0.2.1 → 0.2.2
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.
|
@@ -12,16 +12,4 @@ import com.facebook.react.views.view.ReactViewGroup;
|
|
|
12
12
|
import com.facebook.react.views.view.ReactViewManager;
|
|
13
13
|
|
|
14
14
|
public abstract class A11yIndexViewManagerSpec<T extends ReactViewGroup> extends ReactViewManager implements A11yIndexViewManagerInterface<T> {
|
|
15
|
-
//
|
|
16
|
-
// private final ViewManagerDelegate<T> mDelegate;
|
|
17
|
-
//
|
|
18
|
-
// public A11yIndexViewManagerSpec() {
|
|
19
|
-
// mDelegate = new A11yIndexViewManagerDelegate(this);
|
|
20
|
-
// }
|
|
21
|
-
//
|
|
22
|
-
// @Nullable
|
|
23
|
-
// @Override
|
|
24
|
-
// protected ViewManagerDelegate<T> getDelegate() {
|
|
25
|
-
// return mDelegate;
|
|
26
|
-
// }
|
|
27
15
|
}
|
|
@@ -11,15 +11,4 @@ import com.facebook.react.viewmanagers.A11yOrderViewManagerInterface;
|
|
|
11
11
|
import com.facebook.react.views.view.ReactViewManager;
|
|
12
12
|
|
|
13
13
|
public abstract class A11yOrderViewManagerSpec<T extends ViewGroup> extends ReactViewManager implements A11yOrderViewManagerInterface<T> {
|
|
14
|
-
// private final ViewManagerDelegate<T> mDelegate;
|
|
15
|
-
//
|
|
16
|
-
// public A11yOrderViewManagerSpec() {
|
|
17
|
-
// mDelegate = new A11yOrderViewManagerDelegate(this);
|
|
18
|
-
// }
|
|
19
|
-
//
|
|
20
|
-
// @Nullable
|
|
21
|
-
// @Override
|
|
22
|
-
// protected ViewManagerDelegate<T> getDelegate() {
|
|
23
|
-
// return mDelegate;
|
|
24
|
-
// }
|
|
25
14
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-a11y-order",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.2.2",
|
|
4
|
+
"description": "ReactNative library for managing screen reader focus ordering",
|
|
5
5
|
"main": "lib/commonjs/index",
|
|
6
6
|
"module": "lib/module/index",
|
|
7
7
|
"types": "lib/typescript/index.d.ts",
|
|
@@ -39,8 +39,15 @@
|
|
|
39
39
|
},
|
|
40
40
|
"keywords": [
|
|
41
41
|
"react-native",
|
|
42
|
+
"accessibility",
|
|
43
|
+
"screen reader",
|
|
44
|
+
"focus order",
|
|
45
|
+
"VoiceOver",
|
|
46
|
+
"TalkBack",
|
|
42
47
|
"ios",
|
|
43
|
-
"android"
|
|
48
|
+
"android",
|
|
49
|
+
"WCAG",
|
|
50
|
+
"a11y"
|
|
44
51
|
],
|
|
45
52
|
"repository": "https://github.com/ArturKalach/react-native-a11y-order",
|
|
46
53
|
"author": "Artur Kalach <artur.kalach.andreevich@gmail.com> (https://github.com/ArturKalach)",
|