@amafil/react-native-pdf-toolkit 1.1.2 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -82,6 +82,7 @@ const float MIN_SCALE = 1.0f;
|
|
|
82
82
|
- (void)deleteAnnotation:(NSDictionary *)annotation;
|
|
83
83
|
- (void)deleteSelectedAnnotation;
|
|
84
84
|
- (void)deleteAllAnnotations;
|
|
85
|
+
- (void)refreshDisplay;
|
|
85
86
|
- (void)beginSelectionInteractionAtPoint:(CGPoint)point hit:(NSDictionary *)hit;
|
|
86
87
|
- (void)updateSelectionInteractionAtPoint:(CGPoint)point;
|
|
87
88
|
- (void)endSelectionInteraction;
|
|
@@ -1577,7 +1578,7 @@ static NSString *RNPDFGenerateAnnotationId(void)
|
|
|
1577
1578
|
[self updateActiveTextEditorFrame];
|
|
1578
1579
|
}
|
|
1579
1580
|
|
|
1580
|
-
- (
|
|
1581
|
+
- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event
|
|
1581
1582
|
{
|
|
1582
1583
|
if (_activeTextView) {
|
|
1583
1584
|
if (CGRectContainsPoint(_activeTextView.frame, point)) {
|
package/package.json
CHANGED