@recogito/text-annotator 3.0.0-rc.49 → 3.0.0-rc.50

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,11 +1,12 @@
1
1
  export * from './cancelSingleClickEvents';
2
+ export * from './cloneEvents';
2
3
  export * from './device';
3
4
  export * from './programmaticallyFocusable';
4
5
  export * from './debounce';
5
- export * from './getAnnotatableFragment';
6
6
  export * from './getQuoteContext';
7
- export * from './isWhitespaceOrEmpty';
7
+ export * from './isNotAnnotatable';
8
8
  export * from './isRevived';
9
+ export * from './isWhitespaceOrEmpty';
9
10
  export * from './mergeClientRects';
10
11
  export * from './rangeToSelector';
11
12
  export * from './reviveAnnotation';
@@ -13,4 +14,3 @@ export * from './reviveSelector';
13
14
  export * from './reviveTarget';
14
15
  export * from './splitAnnotatableRanges';
15
16
  export * from './trimRangeToContainer';
16
- export * from './cloneEvents';
@@ -0,0 +1,4 @@
1
+ export declare const NOT_ANNOTATABLE_CLASS = "not-annotatable";
2
+ export declare const NOT_ANNOTATABLE_SELECTOR = ".not-annotatable";
3
+ export declare const isNotAnnotatable: (node: Node) => boolean;
4
+ export declare const isRangeAnnotatable: (range: Range) => boolean;
@@ -1,5 +1,3 @@
1
- export declare const NOT_ANNOTATABLE_CLASS = "not-annotatable";
2
- export declare const NOT_ANNOTATABLE_SELECTOR = ".not-annotatable";
3
1
  /**
4
2
  * Splits a DOM Range into one or more ranges that span annotatable content only.
5
3
  */