react-native-a11y-order 0.7.0 → 0.7.1
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.
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
//
|
|
2
|
-
//
|
|
2
|
+
// RNAOA11yAnnounceModule.h
|
|
3
3
|
// Pods
|
|
4
4
|
//
|
|
5
5
|
// Created by Artur Kalach on 06/12/2025.
|
|
6
6
|
//
|
|
7
7
|
|
|
8
|
-
#ifndef
|
|
9
|
-
#define
|
|
8
|
+
#ifndef RNAOA11yAnnounceModule_h
|
|
9
|
+
#define RNAOA11yAnnounceModule_h
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
#import <Foundation/Foundation.h>
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
#ifdef RCT_NEW_ARCH_ENABLED
|
|
15
15
|
#import <RNA11yOrderSpec/RNA11yOrderSpec.h>
|
|
16
16
|
|
|
17
|
-
@interface
|
|
17
|
+
@interface RNAOA11yAnnounceModule : NSObject <NativeA11yAnnounceModuleSpec>
|
|
18
18
|
|
|
19
19
|
@end
|
|
20
20
|
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
#import <React/RCTBridgeModule.h>
|
|
24
24
|
|
|
25
25
|
|
|
26
|
-
@interface
|
|
26
|
+
@interface RNAOA11yAnnounceModule : NSObject <RCTBridgeModule>
|
|
27
27
|
|
|
28
28
|
- (void)announce:(NSString *)message;
|
|
29
29
|
|
|
@@ -31,4 +31,4 @@
|
|
|
31
31
|
|
|
32
32
|
#endif
|
|
33
33
|
|
|
34
|
-
#endif /*
|
|
34
|
+
#endif /* RNAOA11yAnnounceModule_h */
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
//
|
|
2
|
-
//
|
|
2
|
+
// RNAOA11yAnnounceModule.m
|
|
3
3
|
// react-native-a11y-order
|
|
4
4
|
//
|
|
5
5
|
// Created by Artur Kalach on 06/12/2025.
|
|
@@ -15,7 +15,7 @@ using namespace facebook::react;
|
|
|
15
15
|
|
|
16
16
|
#endif
|
|
17
17
|
|
|
18
|
-
@implementation
|
|
18
|
+
@implementation RNAOA11yAnnounceModule
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
+ (BOOL)requiresMainQueueSetup
|