react-native-a11y-order 0.7.2 → 0.8.1-rc
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.
Potentially problematic release.
This version of react-native-a11y-order might be problematic. Click here for more details.
- package/android/src/main/java/com/a11yorder/A11yOrderPackage.java +1 -0
- package/android/src/main/java/com/a11yorder/events/ScreenReaderFocusedEvent.java +2 -0
- package/lib/module/components/A11yGroup/A11yGroup.android.js +7 -4
- package/lib/module/components/A11yGroup/A11yGroup.android.js.map +1 -1
- package/lib/module/components/A11yGroup/A11yGroup.ios.js +9 -4
- package/lib/module/components/A11yGroup/A11yGroup.ios.js.map +1 -1
- package/lib/module/components/A11yGroup/A11yGroup.js +2 -0
- package/lib/module/components/A11yGroup/A11yGroup.js.map +1 -1
- package/lib/module/components/A11yIndex/A11yIndex.js +16 -11
- package/lib/module/components/A11yIndex/A11yIndex.js.map +1 -1
- package/lib/module/components/A11yIndex/A11yIndex.web.js +6 -3
- package/lib/module/components/A11yIndex/A11yIndex.web.js.map +1 -1
- package/lib/module/components/A11yLock/A11yBaseLock/A11yBaseLock.android.js +6 -3
- package/lib/module/components/A11yLock/A11yBaseLock/A11yBaseLock.android.js.map +1 -1
- package/lib/module/components/A11yLock/A11yBaseLock/A11yBaseLock.js +2 -0
- package/lib/module/components/A11yLock/A11yBaseLock/A11yBaseLock.js.map +1 -1
- package/lib/module/components/A11yLock/A11yFocusFrame/A11yFocusFrame.android.js +11 -6
- package/lib/module/components/A11yLock/A11yFocusFrame/A11yFocusFrame.android.js.map +1 -1
- package/lib/module/components/A11yLock/A11yFocusFrame/A11yFocusFrame.js +9 -2
- package/lib/module/components/A11yLock/A11yFocusFrame/A11yFocusFrame.js.map +1 -1
- package/lib/module/components/A11yLock/A11yFocusTrap/A11yFocusTrap.android.js +11 -6
- package/lib/module/components/A11yLock/A11yFocusTrap/A11yFocusTrap.android.js.map +1 -1
- package/lib/module/components/A11yLock/A11yFocusTrap/A11yFocusTrap.js +11 -6
- package/lib/module/components/A11yLock/A11yFocusTrap/A11yFocusTrap.js.map +1 -1
- package/lib/module/components/A11yLock/A11yFocusTrap/A11yFocusTrapMountWrapper.js +3 -1
- package/lib/module/components/A11yLock/A11yFocusTrap/A11yFocusTrapMountWrapper.js.map +1 -1
- package/lib/module/components/A11yPaneTitle/A11yPaneTitle.js +5 -2
- package/lib/module/components/A11yPaneTitle/A11yPaneTitle.js.map +1 -1
- package/lib/module/components/A11ySequence/A11ySequence.js +11 -7
- package/lib/module/components/A11ySequence/A11ySequence.js.map +1 -1
- package/lib/module/components/A11yUIContainer/A11yUIContainer.ios.js +8 -5
- package/lib/module/components/A11yUIContainer/A11yUIContainer.ios.js.map +1 -1
- package/lib/module/components/A11yUIContainer/A11yUIContainer.js +2 -0
- package/lib/module/components/A11yUIContainer/A11yUIContainer.js.map +1 -1
- package/lib/module/components/A11yView/A11yView.js +9 -6
- package/lib/module/components/A11yView/A11yView.js.map +1 -1
- package/lib/module/context/A11yFocusFrameProviderContext.js +7 -3
- package/lib/module/context/A11yFocusFrameProviderContext.js.map +1 -1
- package/lib/module/context/A11ySequenceOrderContext.js +2 -0
- package/lib/module/context/A11ySequenceOrderContext.js.map +1 -1
- package/lib/module/index.js +5 -3
- package/lib/module/index.js.map +1 -1
- package/lib/module/index.web.js +2 -0
- package/lib/module/index.web.js.map +1 -1
- package/lib/module/modules/A11yAnnounceModule.android.js +2 -0
- package/lib/module/modules/A11yAnnounceModule.android.js.map +1 -1
- package/lib/module/modules/A11yAnnounceModule.js +2 -0
- package/lib/module/modules/A11yAnnounceModule.js.map +1 -1
- package/lib/module/nativeSpecs/A11yGroupNativeComponent.ts +9 -0
- package/lib/module/nativeSpecs/A11yIndexNativeComponent.ts +39 -0
- package/lib/module/nativeSpecs/A11yLockNativeComponent.ts +12 -0
- package/lib/module/nativeSpecs/A11yOrderNativeComponent.ts +11 -0
- package/lib/module/nativeSpecs/A11yPaneTitleNativeComponent.ts +13 -0
- package/lib/module/nativeSpecs/A11yUIContainerNativeComponent.ts +12 -0
- package/lib/module/nativeSpecs/A11yViewNativeComponent.ts +36 -0
- package/lib/module/nativeSpecs/NativeA11yAnnounceModule.js +2 -0
- package/lib/module/nativeSpecs/NativeA11yAnnounceModule.js.map +1 -1
- package/lib/module/package.json +1 -0
- package/lib/module/types/A11yGroup.types.js +2 -0
- package/lib/module/types/A11yGroup.types.js.map +1 -1
- package/lib/module/types/A11yIndex.types.js +2 -0
- package/lib/module/types/A11yIndex.types.js.map +1 -1
- package/lib/module/types/A11yLock.types.js +2 -0
- package/lib/module/types/A11yLock.types.js.map +1 -1
- package/lib/module/types/A11yModule.types.js +2 -0
- package/lib/module/types/A11yModule.types.js.map +1 -1
- package/lib/module/types/A11yUIContainerView.types.js +2 -0
- package/lib/module/types/A11yUIContainerView.types.js.map +1 -1
- package/lib/module/types/A11yView.types.js +2 -0
- package/lib/module/types/A11yView.types.js.map +1 -1
- package/lib/typescript/package.json +1 -0
- package/lib/typescript/src/components/A11yIndex/A11yIndex.d.ts +124 -1
- package/lib/typescript/src/components/A11yIndex/A11yIndex.d.ts.map +1 -1
- package/lib/typescript/src/components/A11yIndex/A11yIndex.web.d.ts +124 -1
- package/lib/typescript/src/components/A11yIndex/A11yIndex.web.d.ts.map +1 -1
- package/lib/typescript/src/components/A11ySequence/A11ySequence.d.ts +124 -2
- package/lib/typescript/src/components/A11ySequence/A11ySequence.d.ts.map +1 -1
- package/lib/typescript/src/components/A11yView/A11yView.d.ts +129 -3
- package/lib/typescript/src/components/A11yView/A11yView.d.ts.map +1 -1
- package/lib/typescript/src/index.d.ts +377 -4
- package/lib/typescript/src/index.d.ts.map +1 -1
- package/lib/typescript/src/index.web.d.ts +164 -10
- package/lib/typescript/src/index.web.d.ts.map +1 -1
- package/lib/typescript/src/nativeSpecs/A11yGroupNativeComponent.d.ts +3 -1
- package/lib/typescript/src/nativeSpecs/A11yGroupNativeComponent.d.ts.map +1 -1
- package/lib/typescript/src/nativeSpecs/A11yIndexNativeComponent.d.ts +3 -1
- package/lib/typescript/src/nativeSpecs/A11yIndexNativeComponent.d.ts.map +1 -1
- package/lib/typescript/src/nativeSpecs/A11yLockNativeComponent.d.ts +3 -1
- package/lib/typescript/src/nativeSpecs/A11yLockNativeComponent.d.ts.map +1 -1
- package/lib/typescript/src/nativeSpecs/A11yOrderNativeComponent.d.ts +3 -1
- package/lib/typescript/src/nativeSpecs/A11yOrderNativeComponent.d.ts.map +1 -1
- package/lib/typescript/src/nativeSpecs/A11yPaneTitleNativeComponent.d.ts +3 -1
- package/lib/typescript/src/nativeSpecs/A11yPaneTitleNativeComponent.d.ts.map +1 -1
- package/lib/typescript/src/nativeSpecs/A11yUIContainerNativeComponent.d.ts +3 -1
- package/lib/typescript/src/nativeSpecs/A11yUIContainerNativeComponent.d.ts.map +1 -1
- package/lib/typescript/src/nativeSpecs/A11yViewNativeComponent.d.ts +3 -1
- package/lib/typescript/src/nativeSpecs/A11yViewNativeComponent.d.ts.map +1 -1
- package/lib/typescript/src/nativeSpecs/NativeA11yAnnounceModule.d.ts +1 -1
- package/package.json +86 -97
- package/react-native-a11y-order.podspec +1 -23
- package/src/components/A11yIndex/A11yIndex.tsx +2 -1
- package/src/components/A11yIndex/A11yIndex.web.tsx +1 -1
- package/src/components/A11yView/A11yView.tsx +1 -1
- package/src/nativeSpecs/A11yGroupNativeComponent.ts +1 -0
- package/src/nativeSpecs/A11yIndexNativeComponent.ts +3 -0
- package/src/nativeSpecs/A11yLockNativeComponent.ts +1 -0
- package/src/nativeSpecs/A11yOrderNativeComponent.ts +1 -0
- package/src/nativeSpecs/A11yPaneTitleNativeComponent.ts +1 -0
- package/src/nativeSpecs/A11yUIContainerNativeComponent.ts +1 -0
- package/src/nativeSpecs/A11yViewNativeComponent.ts +3 -0
- package/lib/commonjs/components/A11yGroup/A11yGroup.android.js +0 -17
- package/lib/commonjs/components/A11yGroup/A11yGroup.android.js.map +0 -1
- package/lib/commonjs/components/A11yGroup/A11yGroup.ios.js +0 -21
- package/lib/commonjs/components/A11yGroup/A11yGroup.ios.js.map +0 -1
- package/lib/commonjs/components/A11yGroup/A11yGroup.js +0 -9
- package/lib/commonjs/components/A11yGroup/A11yGroup.js.map +0 -1
- package/lib/commonjs/components/A11yIndex/A11yIndex.js +0 -55
- package/lib/commonjs/components/A11yIndex/A11yIndex.js.map +0 -1
- package/lib/commonjs/components/A11yIndex/A11yIndex.web.js +0 -25
- package/lib/commonjs/components/A11yIndex/A11yIndex.web.js.map +0 -1
- package/lib/commonjs/components/A11yLock/A11yBaseLock/A11yBaseLock.android.js +0 -22
- package/lib/commonjs/components/A11yLock/A11yBaseLock/A11yBaseLock.android.js.map +0 -1
- package/lib/commonjs/components/A11yLock/A11yBaseLock/A11yBaseLock.js +0 -9
- package/lib/commonjs/components/A11yLock/A11yBaseLock/A11yBaseLock.js.map +0 -1
- package/lib/commonjs/components/A11yLock/A11yFocusFrame/A11yFocusFrame.android.js +0 -21
- package/lib/commonjs/components/A11yLock/A11yFocusFrame/A11yFocusFrame.android.js.map +0 -1
- package/lib/commonjs/components/A11yLock/A11yFocusFrame/A11yFocusFrame.js +0 -13
- package/lib/commonjs/components/A11yLock/A11yFocusFrame/A11yFocusFrame.js.map +0 -1
- package/lib/commonjs/components/A11yLock/A11yFocusTrap/A11yFocusTrap.android.js +0 -19
- package/lib/commonjs/components/A11yLock/A11yFocusTrap/A11yFocusTrap.android.js.map +0 -1
- package/lib/commonjs/components/A11yLock/A11yFocusTrap/A11yFocusTrap.js +0 -17
- package/lib/commonjs/components/A11yLock/A11yFocusTrap/A11yFocusTrap.js.map +0 -1
- package/lib/commonjs/components/A11yLock/A11yFocusTrap/A11yFocusTrapMountWrapper.js +0 -46
- package/lib/commonjs/components/A11yLock/A11yFocusTrap/A11yFocusTrapMountWrapper.js.map +0 -1
- package/lib/commonjs/components/A11yPaneTitle/A11yPaneTitle.js +0 -41
- package/lib/commonjs/components/A11yPaneTitle/A11yPaneTitle.js.map +0 -1
- package/lib/commonjs/components/A11ySequence/A11ySequence.js +0 -20
- package/lib/commonjs/components/A11ySequence/A11ySequence.js.map +0 -1
- package/lib/commonjs/components/A11yUIContainer/A11yUIContainer.ios.js +0 -21
- package/lib/commonjs/components/A11yUIContainer/A11yUIContainer.ios.js.map +0 -1
- package/lib/commonjs/components/A11yUIContainer/A11yUIContainer.js +0 -9
- package/lib/commonjs/components/A11yUIContainer/A11yUIContainer.js.map +0 -1
- package/lib/commonjs/components/A11yView/A11yView.js +0 -37
- package/lib/commonjs/components/A11yView/A11yView.js.map +0 -1
- package/lib/commonjs/context/A11yFocusFrameProviderContext.js +0 -28
- package/lib/commonjs/context/A11yFocusFrameProviderContext.js.map +0 -1
- package/lib/commonjs/context/A11ySequenceOrderContext.js +0 -10
- package/lib/commonjs/context/A11ySequenceOrderContext.js.map +0 -1
- package/lib/commonjs/index.js +0 -33
- package/lib/commonjs/index.js.map +0 -1
- package/lib/commonjs/index.web.js +0 -27
- package/lib/commonjs/index.web.js.map +0 -1
- package/lib/commonjs/modules/A11yAnnounceModule.android.js +0 -11
- package/lib/commonjs/modules/A11yAnnounceModule.android.js.map +0 -1
- package/lib/commonjs/modules/A11yAnnounceModule.js +0 -28
- package/lib/commonjs/modules/A11yAnnounceModule.js.map +0 -1
- package/lib/commonjs/nativeSpecs/A11yGroupNativeComponent.js +0 -10
- package/lib/commonjs/nativeSpecs/A11yGroupNativeComponent.js.map +0 -1
- package/lib/commonjs/nativeSpecs/A11yIndexNativeComponent.js +0 -14
- package/lib/commonjs/nativeSpecs/A11yIndexNativeComponent.js.map +0 -1
- package/lib/commonjs/nativeSpecs/A11yLockNativeComponent.js +0 -10
- package/lib/commonjs/nativeSpecs/A11yLockNativeComponent.js.map +0 -1
- package/lib/commonjs/nativeSpecs/A11yOrderNativeComponent.js +0 -10
- package/lib/commonjs/nativeSpecs/A11yOrderNativeComponent.js.map +0 -1
- package/lib/commonjs/nativeSpecs/A11yPaneTitleNativeComponent.js +0 -10
- package/lib/commonjs/nativeSpecs/A11yPaneTitleNativeComponent.js.map +0 -1
- package/lib/commonjs/nativeSpecs/A11yUIContainerNativeComponent.js +0 -10
- package/lib/commonjs/nativeSpecs/A11yUIContainerNativeComponent.js.map +0 -1
- package/lib/commonjs/nativeSpecs/A11yViewNativeComponent.js +0 -14
- package/lib/commonjs/nativeSpecs/A11yViewNativeComponent.js.map +0 -1
- package/lib/commonjs/nativeSpecs/NativeA11yAnnounceModule.js +0 -9
- package/lib/commonjs/nativeSpecs/NativeA11yAnnounceModule.js.map +0 -1
- package/lib/commonjs/types/A11yGroup.types.js +0 -6
- package/lib/commonjs/types/A11yGroup.types.js.map +0 -1
- package/lib/commonjs/types/A11yIndex.types.js +0 -13
- package/lib/commonjs/types/A11yIndex.types.js.map +0 -1
- package/lib/commonjs/types/A11yLock.types.js +0 -6
- package/lib/commonjs/types/A11yLock.types.js.map +0 -1
- package/lib/commonjs/types/A11yModule.types.js +0 -6
- package/lib/commonjs/types/A11yModule.types.js.map +0 -1
- package/lib/commonjs/types/A11yUIContainerView.types.js +0 -15
- package/lib/commonjs/types/A11yUIContainerView.types.js.map +0 -1
- package/lib/commonjs/types/A11yView.types.js +0 -6
- package/lib/commonjs/types/A11yView.types.js.map +0 -1
- package/lib/module/nativeSpecs/A11yGroupNativeComponent.js +0 -3
- package/lib/module/nativeSpecs/A11yGroupNativeComponent.js.map +0 -1
- package/lib/module/nativeSpecs/A11yIndexNativeComponent.js +0 -7
- package/lib/module/nativeSpecs/A11yIndexNativeComponent.js.map +0 -1
- package/lib/module/nativeSpecs/A11yLockNativeComponent.js +0 -3
- package/lib/module/nativeSpecs/A11yLockNativeComponent.js.map +0 -1
- package/lib/module/nativeSpecs/A11yOrderNativeComponent.js +0 -3
- package/lib/module/nativeSpecs/A11yOrderNativeComponent.js.map +0 -1
- package/lib/module/nativeSpecs/A11yPaneTitleNativeComponent.js +0 -3
- package/lib/module/nativeSpecs/A11yPaneTitleNativeComponent.js.map +0 -1
- package/lib/module/nativeSpecs/A11yUIContainerNativeComponent.js +0 -3
- package/lib/module/nativeSpecs/A11yUIContainerNativeComponent.js.map +0 -1
- package/lib/module/nativeSpecs/A11yViewNativeComponent.js +0 -7
- package/lib/module/nativeSpecs/A11yViewNativeComponent.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["React","A11ySequenceOrderContext","createContext","undefined"],"sourceRoot":"../../../src","sources":["context/A11ySequenceOrderContext.ts"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,OAAO,MAAMC,wBAAwB,gBAAGD,KAAK,CAACE,aAAa,CACzDC,SACF,CAAC","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["React","A11ySequenceOrderContext","createContext","undefined"],"sourceRoot":"../../../src","sources":["context/A11ySequenceOrderContext.ts"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AAEzB,OAAO,MAAMC,wBAAwB,gBAAGD,KAAK,CAACE,aAAa,CACzDC,SACF,CAAC","ignoreList":[]}
|
package/lib/module/index.js
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
1
3
|
import { A11yIndex } from './components/A11yIndex/A11yIndex';
|
|
2
|
-
import { A11yIndexSequence } from
|
|
4
|
+
import { A11yIndexSequence } from "./components/A11ySequence/A11ySequence.js";
|
|
3
5
|
import { A11yGroup } from './components/A11yGroup/A11yGroup';
|
|
4
6
|
import { A11yUIContainer } from './components/A11yUIContainer/A11yUIContainer';
|
|
5
|
-
import { A11yPaneTitle, A11yScreenChange } from
|
|
6
|
-
import { A11yView } from
|
|
7
|
+
import { A11yPaneTitle, A11yScreenChange } from "./components/A11yPaneTitle/A11yPaneTitle.js";
|
|
8
|
+
import { A11yView } from "./components/A11yView/A11yView.js";
|
|
7
9
|
import { A11yFocusFrame } from './components/A11yLock/A11yFocusFrame/A11yFocusFrame';
|
|
8
10
|
import { A11yFocusTrap } from './components/A11yLock/A11yFocusTrap/A11yFocusTrap';
|
|
9
11
|
export const A11y = {
|
package/lib/module/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["A11yIndex","A11yIndexSequence","A11yGroup","A11yUIContainer","A11yPaneTitle","A11yScreenChange","A11yView","A11yFocusFrame","A11yFocusTrap","A11y","Order","Index","Group","Container","PaneTitle","ScreenChange","View","FocusFrame","FocusTrap","A11yModule"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":"AAAA,SAASA,SAAS,QAAQ,kCAAkC;AAC5D,SAASC,iBAAiB,QAAQ,
|
|
1
|
+
{"version":3,"names":["A11yIndex","A11yIndexSequence","A11yGroup","A11yUIContainer","A11yPaneTitle","A11yScreenChange","A11yView","A11yFocusFrame","A11yFocusTrap","A11y","Order","Index","Group","Container","PaneTitle","ScreenChange","View","FocusFrame","FocusTrap","A11yModule"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":";;AAAA,SAASA,SAAS,QAAQ,kCAAkC;AAC5D,SAASC,iBAAiB,QAAQ,2CAAwC;AAC1E,SAASC,SAAS,QAAQ,kCAAkC;AAC5D,SAASC,eAAe,QAAQ,8CAA8C;AAC9E,SACEC,aAAa,EACbC,gBAAgB,QACX,6CAA0C;AACjD,SAASC,QAAQ,QAAQ,mCAAgC;AACzD,SAASC,cAAc,QAAQ,qDAAqD;AACpF,SAASC,aAAa,QAAQ,mDAAmD;AAmBjF,OAAO,MAAMC,IAAI,GAAG;EAClBC,KAAK,EAAET,iBAAiB;EACxBU,KAAK,EAAEX,SAAS;EAChBY,KAAK,EAAEV,SAAS;EAChBW,SAAS,EAAEV,eAAe;EAC1BW,SAAS,EAAEV,aAAa;EACxBW,YAAY,EAAEV,gBAAgB;EAC9BW,IAAI,EAAEV,QAAQ;EACdW,UAAU,EAAEV,cAAc;EAC1BW,SAAS,EAAEV;AACb,CAAC;AAED,SAASW,UAAU,QAAQ,8BAA8B","ignoreList":[]}
|
package/lib/module/index.web.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["A11yIndex","View","A11y","Order","Group","Index","Container","PaneTitle","ScreenChange","FocusFrame","FocusTrap","A11yModule"],"sourceRoot":"../../src","sources":["index.web.ts"],"mappings":"AAAA,SAASA,SAAS,QAAQ,kCAAkC;AAC5D,SAASC,IAAI,QAAQ,cAAc;AAmBnC,OAAO,MAAMC,IAAI,GAAG;EAClBC,KAAK,EAAEF,IAAI;EACXG,KAAK,EAAEH,IAAI;EACXI,KAAK,EAAEL,SAAS;EAChBM,SAAS,EAAEL,IAAI;EACfM,SAAS,EAAEN,IAAI;EACfO,YAAY,EAAEP,IAAI;EAClBA,IAAI,EAAEA,IAAI;EACVQ,UAAU,EAAER,IAAI;EAChBS,SAAS,EAAET;AACb,CAAC;AAED,SAASU,UAAU,QAAQ,8BAA8B","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["A11yIndex","View","A11y","Order","Group","Index","Container","PaneTitle","ScreenChange","FocusFrame","FocusTrap","A11yModule"],"sourceRoot":"../../src","sources":["index.web.ts"],"mappings":";;AAAA,SAASA,SAAS,QAAQ,kCAAkC;AAC5D,SAASC,IAAI,QAAQ,cAAc;AAmBnC,OAAO,MAAMC,IAAI,GAAG;EAClBC,KAAK,EAAEF,IAAI;EACXG,KAAK,EAAEH,IAAI;EACXI,KAAK,EAAEL,SAAS;EAChBM,SAAS,EAAEL,IAAI;EACfM,SAAS,EAAEN,IAAI;EACfO,YAAY,EAAEP,IAAI;EAClBA,IAAI,EAAEA,IAAI;EACVQ,UAAU,EAAER,IAAI;EAChBS,SAAS,EAAET;AACb,CAAC;AAED,SAASU,UAAU,QAAQ,8BAA8B","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["AccessibilityInfo","A11yModule","announce","announceForAccessibility"],"sourceRoot":"../../../src","sources":["modules/A11yAnnounceModule.android.ts"],"mappings":"AAAA,SAASA,iBAAiB,QAAQ,cAAc;AAEhD,OAAO,MAAMC,UAAU,GAAG;EACxBC,QAAQ,EAAEF,iBAAiB,CAACG;AAC9B,CAAC","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["AccessibilityInfo","A11yModule","announce","announceForAccessibility"],"sourceRoot":"../../../src","sources":["modules/A11yAnnounceModule.android.ts"],"mappings":";;AAAA,SAASA,iBAAiB,QAAQ,cAAc;AAEhD,OAAO,MAAMC,UAAU,GAAG;EACxBC,QAAQ,EAAEF,iBAAiB,CAACG;AAC9B,CAAC","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["NativeModules","Platform","LINKING_ERROR","select","ios","default","isTurboModuleEnabled","global","__turboModuleProxy","A11yAnnounceModule","require","A11yAnnounce","Proxy","get","Error","announce","message","A11yModule"],"sourceRoot":"../../../src","sources":["modules/A11yAnnounceModule.ts"],"mappings":"AAAA,SAASA,aAAa,EAAEC,QAAQ,QAAQ,cAAc;AAEtD,MAAMC,aAAa,GACjB,0FAA0FD,QAAQ,CAACE,MAAM,CACvG;EAAEC,GAAG,EAAE,gCAAgC;EAAEC,OAAO,EAAE;AAAG,CACvD,CAAC,sDAAsD,GACvD,+BAA+B;;AAEjC;AACA,MAAMC,oBAAoB,GAAGC,MAAM,CAACC,kBAAkB,IAAI,IAAI;AAC9D,MAAMC,kBAAkB,GAAGH,oBAAoB,GAC3CI,OAAO,CAAC,yCAAyC,CAAC,CAACL,OAAO,GAC1DL,aAAa,CAACS,kBAAkB;AAEpC,OAAO,MAAME,YAAY,GACvBF,kBAAkB,IAClB,IAAIG,KAAK,CACP,CAAC,CAAC,EACF;EACEC,GAAGA,CAAA,EAAG;IACJ,MAAM,IAAIC,KAAK,CAACZ,aAAa,CAAC;EAChC;AACF,CACF,CAAC;AAEH,OAAO,SAASa,QAAQA,CAACC,OAAe,EAAE;EACxCL,YAAY,CAACI,QAAQ,CAACC,OAAO,CAAC;AAChC;AAEA,OAAO,MAAMC,UAAU,GAAG;EACxBF;AACF,CAAC","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["NativeModules","Platform","LINKING_ERROR","select","ios","default","isTurboModuleEnabled","global","__turboModuleProxy","A11yAnnounceModule","require","A11yAnnounce","Proxy","get","Error","announce","message","A11yModule"],"sourceRoot":"../../../src","sources":["modules/A11yAnnounceModule.ts"],"mappings":";;AAAA,SAASA,aAAa,EAAEC,QAAQ,QAAQ,cAAc;AAEtD,MAAMC,aAAa,GACjB,0FAA0FD,QAAQ,CAACE,MAAM,CACvG;EAAEC,GAAG,EAAE,gCAAgC;EAAEC,OAAO,EAAE;AAAG,CACvD,CAAC,sDAAsD,GACvD,+BAA+B;;AAEjC;AACA,MAAMC,oBAAoB,GAAGC,MAAM,CAACC,kBAAkB,IAAI,IAAI;AAC9D,MAAMC,kBAAkB,GAAGH,oBAAoB,GAC3CI,OAAO,CAAC,yCAAyC,CAAC,CAACL,OAAO,GAC1DL,aAAa,CAACS,kBAAkB;AAEpC,OAAO,MAAME,YAAY,GACvBF,kBAAkB,IAClB,IAAIG,KAAK,CACP,CAAC,CAAC,EACF;EACEC,GAAGA,CAAA,EAAG;IACJ,MAAM,IAAIC,KAAK,CAACZ,aAAa,CAAC;EAChC;AACF,CACF,CAAC;AAEH,OAAO,SAASa,QAAQA,CAACC,OAAe,EAAE;EACxCL,YAAY,CAACI,QAAQ,CAACC,OAAO,CAAC;AAChC;AAEA,OAAO,MAAMC,UAAU,GAAG;EACxBF;AACF,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { ViewProps } from 'react-native';
|
|
2
|
+
// eslint-disable-next-line @react-native/no-deep-imports
|
|
3
|
+
import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
|
|
4
|
+
|
|
5
|
+
export interface A11yGroupNativeComponentProps extends ViewProps {}
|
|
6
|
+
|
|
7
|
+
export default codegenNativeComponent<A11yGroupNativeComponentProps>(
|
|
8
|
+
'A11yGroupView'
|
|
9
|
+
);
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import type { ComponentType } from 'react';
|
|
2
|
+
import type { ViewProps } from 'react-native';
|
|
3
|
+
import type {
|
|
4
|
+
DirectEventHandler,
|
|
5
|
+
Int32,
|
|
6
|
+
} from 'react-native/Libraries/Types/CodegenTypes';
|
|
7
|
+
// eslint-disable-next-line @react-native/no-deep-imports
|
|
8
|
+
import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
|
|
9
|
+
// eslint-disable-next-line @react-native/no-deep-imports
|
|
10
|
+
import codegenNativeCommands from 'react-native/Libraries/Utilities/codegenNativeCommands';
|
|
11
|
+
|
|
12
|
+
export type ScreenReaderFocusChange = Readonly<{
|
|
13
|
+
isFocused: boolean;
|
|
14
|
+
}>;
|
|
15
|
+
|
|
16
|
+
export type ScreenReaderDescendantFocusChanged = Readonly<{
|
|
17
|
+
status: string;
|
|
18
|
+
}>;
|
|
19
|
+
|
|
20
|
+
export interface A11yIndexNativeComponentProps extends ViewProps {
|
|
21
|
+
orderIndex: Int32;
|
|
22
|
+
orderKey: string;
|
|
23
|
+
orderFocusType: Int32;
|
|
24
|
+
|
|
25
|
+
onScreenReaderFocusChange?: DirectEventHandler<ScreenReaderFocusChange>;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export interface NativeCommands {
|
|
29
|
+
// @ts-ignore
|
|
30
|
+
focus: (viewRef: React.ElementRef<ComponentType>) => void;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export const Commands: NativeCommands = codegenNativeCommands<NativeCommands>({
|
|
34
|
+
supportedCommands: ['focus'],
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
export default codegenNativeComponent<A11yIndexNativeComponentProps>(
|
|
38
|
+
'A11yIndexView'
|
|
39
|
+
);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { ViewProps } from 'react-native';
|
|
2
|
+
import type { Int32 } from 'react-native/Libraries/Types/CodegenTypes';
|
|
3
|
+
// eslint-disable-next-line @react-native/no-deep-imports
|
|
4
|
+
import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
|
|
5
|
+
|
|
6
|
+
export interface A11yLockNativeComponentProps extends ViewProps {
|
|
7
|
+
componentType: Int32;
|
|
8
|
+
containerKey?: string;
|
|
9
|
+
lockDisabled?: boolean;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export default codegenNativeComponent<A11yLockNativeComponentProps>('A11yLock');
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { ViewProps } from 'react-native';
|
|
2
|
+
// eslint-disable-next-line @react-native/no-deep-imports
|
|
3
|
+
import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
|
|
4
|
+
|
|
5
|
+
export interface A11yOrderNativeComponentProps extends ViewProps {
|
|
6
|
+
orderKey: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export default codegenNativeComponent<A11yOrderNativeComponentProps>(
|
|
10
|
+
'A11yOrderView'
|
|
11
|
+
);
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { ViewProps } from 'react-native';
|
|
2
|
+
import type { Int32 } from 'react-native/Libraries/Types/CodegenTypes';
|
|
3
|
+
// eslint-disable-next-line @react-native/no-deep-imports
|
|
4
|
+
import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
|
|
5
|
+
|
|
6
|
+
export interface A11yPaneTitleProps extends ViewProps {
|
|
7
|
+
title?: string;
|
|
8
|
+
detachMessage?: string;
|
|
9
|
+
type: Int32;
|
|
10
|
+
withFocusRestore?: boolean;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export default codegenNativeComponent<A11yPaneTitleProps>('A11yPaneTitle');
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { ViewProps } from 'react-native';
|
|
2
|
+
import type { Int32 } from 'react-native/Libraries/Types/CodegenTypes';
|
|
3
|
+
// eslint-disable-next-line @react-native/no-deep-imports
|
|
4
|
+
import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
|
|
5
|
+
|
|
6
|
+
export interface A11yUIContainerNativeComponentProps extends ViewProps {
|
|
7
|
+
containerType?: Int32;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export default codegenNativeComponent<A11yUIContainerNativeComponentProps>(
|
|
11
|
+
'A11yUIContainer'
|
|
12
|
+
);
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import type { ComponentType } from 'react';
|
|
2
|
+
import type { ViewProps } from 'react-native';
|
|
3
|
+
import type { DirectEventHandler } from 'react-native/Libraries/Types/CodegenTypes';
|
|
4
|
+
// eslint-disable-next-line @react-native/no-deep-imports
|
|
5
|
+
import codegenNativeCommands from 'react-native/Libraries/Utilities/codegenNativeCommands';
|
|
6
|
+
// eslint-disable-next-line @react-native/no-deep-imports
|
|
7
|
+
import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
|
|
8
|
+
|
|
9
|
+
export type ScreenReaderFocusChange = Readonly<{
|
|
10
|
+
isFocused: boolean;
|
|
11
|
+
}>;
|
|
12
|
+
|
|
13
|
+
export type ScreenReaderDescendantFocusChanged = Readonly<{
|
|
14
|
+
status: string;
|
|
15
|
+
nativeId?: string;
|
|
16
|
+
}>;
|
|
17
|
+
|
|
18
|
+
export interface A11yViewProps extends ViewProps {
|
|
19
|
+
autoFocus?: boolean;
|
|
20
|
+
descendantFocusChangedEnabled?: boolean;
|
|
21
|
+
|
|
22
|
+
onScreenReaderFocused?: DirectEventHandler<{}>;
|
|
23
|
+
onScreenReaderDescendantFocusChanged?: DirectEventHandler<ScreenReaderDescendantFocusChanged>;
|
|
24
|
+
onScreenReaderFocusChange?: DirectEventHandler<ScreenReaderFocusChange>;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export interface NativeCommands {
|
|
28
|
+
// @ts-ignore
|
|
29
|
+
focus: (viewRef: React.ElementRef<ComponentType>) => void;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export const Commands: NativeCommands = codegenNativeCommands<NativeCommands>({
|
|
33
|
+
supportedCommands: ['focus'],
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
export default codegenNativeComponent<A11yViewProps>('A11yView');
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["TurboModuleRegistry","get"],"sourceRoot":"../../../src","sources":["nativeSpecs/NativeA11yAnnounceModule.ts"],"mappings":"AACA,SAASA,mBAAmB,QAAQ,cAAc;AAMlD,eAAeA,mBAAmB,CAACC,GAAG,CAAO,oBAAoB,CAAC","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["TurboModuleRegistry","get"],"sourceRoot":"../../../src","sources":["nativeSpecs/NativeA11yAnnounceModule.ts"],"mappings":";;AACA,SAASA,mBAAmB,QAAQ,cAAc;AAMlD,eAAeA,mBAAmB,CAACC,GAAG,CAAO,oBAAoB,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"type":"module"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["types/A11yGroup.types.ts"],"mappings":"","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["types/A11yGroup.types.ts"],"mappings":"","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["A11yOrderTypeEnum"],"sourceRoot":"../../../src","sources":["types/A11yIndex.types.ts"],"mappings":"AAIA,WAAYA,iBAAiB,0BAAjBA,iBAAiB;EAAjBA,iBAAiB,CAAjBA,iBAAiB;EAAjBA,iBAAiB,CAAjBA,iBAAiB;EAAjBA,iBAAiB,CAAjBA,iBAAiB;EAAA,OAAjBA,iBAAiB;AAAA","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["A11yOrderTypeEnum"],"sourceRoot":"../../../src","sources":["types/A11yIndex.types.ts"],"mappings":";;AAIA,WAAYA,iBAAiB,0BAAjBA,iBAAiB;EAAjBA,iBAAiB,CAAjBA,iBAAiB;EAAjBA,iBAAiB,CAAjBA,iBAAiB;EAAjBA,iBAAiB,CAAjBA,iBAAiB;EAAA,OAAjBA,iBAAiB;AAAA","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["types/A11yLock.types.ts"],"mappings":"","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["types/A11yLock.types.ts"],"mappings":"","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["types/A11yModule.types.ts"],"mappings":"","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["types/A11yModule.types.ts"],"mappings":"","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["A11yContainerTypeEnum"],"sourceRoot":"../../../src","sources":["types/A11yUIContainerView.types.ts"],"mappings":"AAEA,WAAYA,qBAAqB,0BAArBA,qBAAqB;EAArBA,qBAAqB,CAArBA,qBAAqB;EAArBA,qBAAqB,CAArBA,qBAAqB;EAArBA,qBAAqB,CAArBA,qBAAqB;EAArBA,qBAAqB,CAArBA,qBAAqB;EAArBA,qBAAqB,CAArBA,qBAAqB;EAAA,OAArBA,qBAAqB;AAAA","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["A11yContainerTypeEnum"],"sourceRoot":"../../../src","sources":["types/A11yUIContainerView.types.ts"],"mappings":";;AAEA,WAAYA,qBAAqB,0BAArBA,qBAAqB;EAArBA,qBAAqB,CAArBA,qBAAqB;EAArBA,qBAAqB,CAArBA,qBAAqB;EAArBA,qBAAqB,CAArBA,qBAAqB;EAArBA,qBAAqB,CAArBA,qBAAqB;EAArBA,qBAAqB,CAArBA,qBAAqB;EAAA,OAArBA,qBAAqB;AAAA","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["types/A11yView.types.ts"],"mappings":"","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["types/A11yView.types.ts"],"mappings":"","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"type":"module"}
|
|
@@ -7,5 +7,128 @@ export declare const A11yIndex: React.MemoExoticComponent<React.ForwardRefExotic
|
|
|
7
7
|
onScreenReaderSubViewFocusChange?: (isFocused: boolean) => void;
|
|
8
8
|
onScreenReaderSubViewFocused?: () => void;
|
|
9
9
|
onScreenReaderSubViewBlurred?: () => void;
|
|
10
|
-
} &
|
|
10
|
+
} & Readonly<Omit<Readonly<{
|
|
11
|
+
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
|
|
12
|
+
onAccessibilityTap?: (() => unknown) | undefined;
|
|
13
|
+
onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
|
|
14
|
+
onMagicTap?: (() => unknown) | undefined;
|
|
15
|
+
onAccessibilityEscape?: (() => unknown) | undefined;
|
|
16
|
+
}>, "onMoveShouldSetResponder" | "onMoveShouldSetResponderCapture" | "onResponderGrant" | "onResponderMove" | "onResponderReject" | "onResponderRelease" | "onResponderStart" | "onResponderEnd" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onStartShouldSetResponderCapture" | "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
|
|
17
|
+
onMoveShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
|
|
18
|
+
onMoveShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
|
|
19
|
+
onResponderGrant?: ((e: import("react-native").GestureResponderEvent) => void | boolean) | undefined;
|
|
20
|
+
onResponderMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
21
|
+
onResponderReject?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
22
|
+
onResponderRelease?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
23
|
+
onResponderStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
24
|
+
onResponderEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
25
|
+
onResponderTerminate?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
26
|
+
onResponderTerminationRequest?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
|
|
27
|
+
onStartShouldSetResponder?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
|
|
28
|
+
onStartShouldSetResponderCapture?: ((e: import("react-native").GestureResponderEvent) => boolean) | undefined;
|
|
29
|
+
}>, "onMouseEnter" | "onMouseLeave" | "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
|
|
30
|
+
onMouseEnter?: ((event: import("react-native").MouseEvent) => void) | undefined;
|
|
31
|
+
onMouseLeave?: ((event: import("react-native").MouseEvent) => void) | undefined;
|
|
32
|
+
}>, "onClick" | "onClickCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
|
|
33
|
+
onClick?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
34
|
+
onClickCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
35
|
+
onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
36
|
+
onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
37
|
+
onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
38
|
+
onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
39
|
+
onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
40
|
+
onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
41
|
+
onPointerCancel?: ((e: import("react-native").PointerEvent) => void) | undefined;
|
|
42
|
+
onPointerCancelCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
|
|
43
|
+
onPointerDown?: ((e: import("react-native").PointerEvent) => void) | undefined;
|
|
44
|
+
onPointerDownCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
|
|
45
|
+
onPointerUp?: ((e: import("react-native").PointerEvent) => void) | undefined;
|
|
46
|
+
onPointerUpCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
|
|
47
|
+
onPointerOver?: ((e: import("react-native").PointerEvent) => void) | undefined;
|
|
48
|
+
onPointerOverCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
|
|
49
|
+
onPointerOut?: ((e: import("react-native").PointerEvent) => void) | undefined;
|
|
50
|
+
onPointerOutCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
|
|
51
|
+
onGotPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
|
|
52
|
+
onGotPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
|
|
53
|
+
onLostPointerCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
|
|
54
|
+
onLostPointerCaptureCapture?: ((e: import("react-native").PointerEvent) => void) | undefined;
|
|
55
|
+
}>, "onClick" | "onBlur" | "onBlurCapture" | "onFocus" | "onFocusCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
|
|
56
|
+
onBlur?: ((event: import("react-native").BlurEvent) => void) | undefined;
|
|
57
|
+
onBlurCapture?: ((event: import("react-native").BlurEvent) => void) | undefined;
|
|
58
|
+
onFocus?: ((event: import("react-native").FocusEvent) => void) | undefined;
|
|
59
|
+
onFocusCapture?: ((event: import("react-native").FocusEvent) => void) | undefined;
|
|
60
|
+
}>, "onClick" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
|
|
61
|
+
onTouchCancel?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
62
|
+
onTouchCancelCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
63
|
+
onTouchEnd?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
64
|
+
onTouchEndCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
65
|
+
onTouchMove?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
66
|
+
onTouchMoveCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
67
|
+
onTouchStart?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
68
|
+
onTouchStartCapture?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
69
|
+
}>, "onClick" | "nativeBackgroundAndroid" | "nativeForegroundAndroid" | "renderToHardwareTextureAndroid" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
|
|
70
|
+
nativeBackgroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
|
|
71
|
+
nativeForegroundAndroid?: import("react-native/types_generated/Libraries/Components/View/ViewPropTypes").AndroidDrawable | undefined;
|
|
72
|
+
renderToHardwareTextureAndroid?: boolean | undefined;
|
|
73
|
+
hasTVPreferredFocus?: boolean | undefined;
|
|
74
|
+
nextFocusDown?: number | undefined;
|
|
75
|
+
nextFocusForward?: number | undefined;
|
|
76
|
+
nextFocusLeft?: number | undefined;
|
|
77
|
+
nextFocusRight?: number | undefined;
|
|
78
|
+
nextFocusUp?: number | undefined;
|
|
79
|
+
focusable?: boolean | undefined;
|
|
80
|
+
tabIndex?: 0 | -1;
|
|
81
|
+
onClick?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
82
|
+
}>, "shouldRasterizeIOS" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
|
|
83
|
+
shouldRasterizeIOS?: boolean | undefined;
|
|
84
|
+
}>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable" | "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<Omit<Readonly<{
|
|
85
|
+
accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
|
|
86
|
+
"aria-labelledby"?: string | undefined;
|
|
87
|
+
accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
|
|
88
|
+
"aria-live"?: ("polite" | "assertive" | "off") | undefined;
|
|
89
|
+
importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
|
|
90
|
+
screenReaderFocusable?: boolean;
|
|
91
|
+
}>, "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
|
|
92
|
+
accessibilityIgnoresInvertColors?: boolean | undefined;
|
|
93
|
+
accessibilityViewIsModal?: boolean | undefined;
|
|
94
|
+
accessibilityShowsLargeContentViewer?: boolean | undefined;
|
|
95
|
+
accessibilityLargeContentTitle?: string | undefined;
|
|
96
|
+
"aria-modal"?: boolean | undefined;
|
|
97
|
+
accessibilityElementsHidden?: boolean | undefined;
|
|
98
|
+
accessibilityLanguage?: string | undefined;
|
|
99
|
+
accessibilityRespondsToUserInteraction?: boolean | undefined;
|
|
100
|
+
}>, "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "role" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
|
|
101
|
+
accessible?: boolean | undefined;
|
|
102
|
+
accessibilityLabel?: string | undefined;
|
|
103
|
+
accessibilityHint?: string | undefined;
|
|
104
|
+
"aria-label"?: string | undefined;
|
|
105
|
+
accessibilityRole?: import("react-native").AccessibilityRole | undefined;
|
|
106
|
+
role?: import("react-native").Role | undefined;
|
|
107
|
+
accessibilityState?: import("react-native").AccessibilityState | undefined;
|
|
108
|
+
accessibilityValue?: import("react-native").AccessibilityValue | undefined;
|
|
109
|
+
"aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
|
|
110
|
+
"aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
|
|
111
|
+
"aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
|
|
112
|
+
"aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
|
|
113
|
+
accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
|
|
114
|
+
"aria-busy"?: boolean | undefined;
|
|
115
|
+
"aria-checked"?: (boolean | undefined) | "mixed";
|
|
116
|
+
"aria-disabled"?: boolean | undefined;
|
|
117
|
+
"aria-expanded"?: boolean | undefined;
|
|
118
|
+
"aria-selected"?: boolean | undefined;
|
|
119
|
+
"aria-hidden"?: boolean | undefined;
|
|
120
|
+
}>, "children" | "style" | "collapsable" | "collapsableChildren" | "id" | "testID" | "nativeID" | "needsOffscreenAlphaCompositing" | "hitSlop" | "pointerEvents" | "removeClippedSubviews" | "experimental_accessibilityOrder"> & Omit<Readonly<{
|
|
121
|
+
children?: React.ReactNode;
|
|
122
|
+
style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
|
|
123
|
+
collapsable?: boolean | undefined;
|
|
124
|
+
collapsableChildren?: boolean | undefined;
|
|
125
|
+
id?: string;
|
|
126
|
+
testID?: string | undefined;
|
|
127
|
+
nativeID?: string | undefined;
|
|
128
|
+
needsOffscreenAlphaCompositing?: boolean | undefined;
|
|
129
|
+
hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
|
|
130
|
+
pointerEvents?: ("auto" | "box-none" | "box-only" | "none") | undefined;
|
|
131
|
+
removeClippedSubviews?: boolean | undefined;
|
|
132
|
+
experimental_accessibilityOrder?: Array<string> | undefined;
|
|
133
|
+
}>, never>> & React.RefAttributes<IndexCommands>>>;
|
|
11
134
|
//# sourceMappingURL=A11yIndex.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"A11yIndex.d.ts","sourceRoot":"","sources":["../../../../../src/components/A11yIndex/A11yIndex.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAK3D,OAAO,EAGL,KAAK,aAAa,EACnB,MAAM,6BAA6B,CAAC;AAErC,eAAO,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"A11yIndex.d.ts","sourceRoot":"","sources":["../../../../../src/components/A11yIndex/A11yIndex.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAK3D,OAAO,EAGL,KAAK,aAAa,EACnB,MAAM,6BAA6B,CAAC;AAErC,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kDA8ErB,CAAC"}
|