@soomo/react-text-annotator 3.0.0-staging.19 → 3.0.0-staging.20
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.
- package/dist/react-text-annotator.es10.js +6 -1
- package/dist/react-text-annotator.es10.js.map +1 -1
- package/dist/react-text-annotator.es11.js +212 -547
- package/dist/react-text-annotator.es11.js.map +1 -1
- package/dist/react-text-annotator.es12.js +535 -444
- package/dist/react-text-annotator.es12.js.map +1 -1
- package/dist/react-text-annotator.es13.js +488 -2
- package/dist/react-text-annotator.es13.js.map +1 -1
- package/dist/react-text-annotator.es14.js +2 -35
- package/dist/react-text-annotator.es14.js.map +1 -1
- package/dist/react-text-annotator.es15.js +24 -888
- package/dist/react-text-annotator.es15.js.map +1 -1
- package/dist/react-text-annotator.es16.js +891 -220
- package/dist/react-text-annotator.es16.js.map +1 -1
- package/dist/react-text-annotator.es18.js +2 -114
- package/dist/react-text-annotator.es18.js.map +1 -1
- package/dist/react-text-annotator.es19.js +2 -309
- package/dist/react-text-annotator.es19.js.map +1 -1
- package/dist/react-text-annotator.es2.js +1 -1
- package/dist/react-text-annotator.es20.js +109 -53
- package/dist/react-text-annotator.es20.js.map +1 -1
- package/dist/react-text-annotator.es21.js +306 -17
- package/dist/react-text-annotator.es21.js.map +1 -1
- package/dist/react-text-annotator.es22.js +58 -2
- package/dist/react-text-annotator.es22.js.map +1 -1
- package/dist/react-text-annotator.es23.js +20 -2
- package/dist/react-text-annotator.es23.js.map +1 -1
- package/dist/react-text-annotator.es25.js +1 -1
- package/dist/react-text-annotator.es25.js.map +1 -1
- package/dist/react-text-annotator.es5.js +2 -1
- package/dist/react-text-annotator.es5.js.map +1 -1
- package/dist/react-text-annotator.es6.js +60 -60
- package/dist/react-text-annotator.es6.js.map +1 -1
- package/dist/react-text-annotator.es7.js +3 -3
- package/package.json +8 -8
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import { useLayoutEffect, useEffect } from "react";
|
|
3
|
-
import { useFloating as useFloating$1 } from "./react-text-annotator.
|
|
3
|
+
import { useFloating as useFloating$1 } from "./react-text-annotator.es11.js";
|
|
4
|
+
import { autoPlacement, inline, offset, shift } from "./react-text-annotator.es11.js";
|
|
4
5
|
import { isElement } from "./react-text-annotator.es17.js";
|
|
5
6
|
import { getOverflowAncestors } from "./react-text-annotator.es17.js";
|
|
6
7
|
import "react-dom";
|
|
@@ -220,7 +221,11 @@ function useFloating(options) {
|
|
|
220
221
|
}), [position, refs, elements, context]);
|
|
221
222
|
}
|
|
222
223
|
export {
|
|
224
|
+
autoPlacement,
|
|
223
225
|
getOverflowAncestors,
|
|
226
|
+
inline,
|
|
227
|
+
offset,
|
|
228
|
+
shift,
|
|
224
229
|
useFloating,
|
|
225
230
|
useFloatingParentNodeId,
|
|
226
231
|
useFloatingRootContext,
|