@fluentui/react-positioning 0.0.0-nightly-20230316-0427.1 → 0.0.0-nightly-20230317-1454.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.
- package/.swcrc +39 -0
- package/CHANGELOG.json +24 -9
- package/CHANGELOG.md +16 -7
- package/lib/constants.js +4 -4
- package/lib/constants.js.map +1 -1
- package/lib/createArrowStyles.js +19 -19
- package/lib/createArrowStyles.js.map +1 -1
- package/lib/createPositionManager.js +13 -13
- package/lib/createPositionManager.js.map +1 -1
- package/lib/createVirtualElementFromClick.js +1 -2
- package/lib/createVirtualElementFromClick.js.map +1 -1
- package/lib/index.js +5 -5
- package/lib/index.js.map +1 -1
- package/lib/middleware/coverTarget.js +6 -6
- package/lib/middleware/coverTarget.js.map +1 -1
- package/lib/middleware/flip.js +4 -4
- package/lib/middleware/flip.js.map +1 -1
- package/lib/middleware/index.js +6 -6
- package/lib/middleware/index.js.map +1 -1
- package/lib/middleware/intersecting.js +2 -2
- package/lib/middleware/intersecting.js.map +1 -1
- package/lib/middleware/maxSize.js +8 -8
- package/lib/middleware/maxSize.js.map +1 -1
- package/lib/middleware/offset.js +2 -2
- package/lib/middleware/offset.js.map +1 -1
- package/lib/middleware/shift.js +5 -5
- package/lib/middleware/shift.js.map +1 -1
- package/lib/types.js +1 -1
- package/lib/types.js.map +1 -1
- package/lib/usePositioning.js +20 -26
- package/lib/usePositioning.js.map +1 -1
- package/lib/usePositioningMouseTarget.js +4 -4
- package/lib/usePositioningMouseTarget.js.map +1 -1
- package/lib/utils/debounce.js +1 -2
- package/lib/utils/debounce.js.map +1 -1
- package/lib/utils/fromFloatingUIPlacement.js +10 -10
- package/lib/utils/fromFloatingUIPlacement.js.map +1 -1
- package/lib/utils/getBoundary.js +8 -8
- package/lib/utils/getBoundary.js.map +1 -1
- package/lib/utils/getFloatingUIOffset.js +2 -2
- package/lib/utils/getFloatingUIOffset.js.map +1 -1
- package/lib/utils/getReactFiberFromNode.js +3 -2
- package/lib/utils/getReactFiberFromNode.js.map +1 -1
- package/lib/utils/getScrollParent.js +7 -10
- package/lib/utils/getScrollParent.js.map +1 -1
- package/lib/utils/hasAutoFocusFilter.js +3 -4
- package/lib/utils/hasAutoFocusFilter.js.map +1 -1
- package/lib/utils/index.js +15 -15
- package/lib/utils/index.js.map +1 -1
- package/lib/utils/mergeArrowOffset.js +6 -8
- package/lib/utils/mergeArrowOffset.js.map +1 -1
- package/lib/utils/parseFloatingUIPlacement.js +2 -3
- package/lib/utils/parseFloatingUIPlacement.js.map +1 -1
- package/lib/utils/resolvePositioningShorthand.js +33 -33
- package/lib/utils/resolvePositioningShorthand.js.map +1 -1
- package/lib/utils/toFloatingUIPadding.js +3 -3
- package/lib/utils/toFloatingUIPadding.js.map +1 -1
- package/lib/utils/toFloatingUIPlacement.js +11 -11
- package/lib/utils/toFloatingUIPlacement.js.map +1 -1
- package/lib/utils/toggleScrollListener.js +4 -4
- package/lib/utils/toggleScrollListener.js.map +1 -1
- package/lib/utils/useCallbackRef.js +2 -2
- package/lib/utils/useCallbackRef.js.map +1 -1
- package/lib/utils/writeArrowUpdates.js +1 -2
- package/lib/utils/writeArrowUpdates.js.map +1 -1
- package/lib/utils/writeContainerupdates.js +7 -8
- package/lib/utils/writeContainerupdates.js.map +1 -1
- package/lib-commonjs/constants.js +18 -7
- package/lib-commonjs/constants.js.map +1 -1
- package/lib-commonjs/createArrowStyles.js +60 -88
- package/lib-commonjs/createArrowStyles.js.map +1 -1
- package/lib-commonjs/createPositionManager.js +103 -117
- package/lib-commonjs/createPositionManager.js.map +1 -1
- package/lib-commonjs/createVirtualElementFromClick.js +27 -26
- package/lib-commonjs/createVirtualElementFromClick.js.map +1 -1
- package/lib-commonjs/index.js +24 -51
- package/lib-commonjs/index.js.map +1 -1
- package/lib-commonjs/middleware/coverTarget.js +34 -37
- package/lib-commonjs/middleware/coverTarget.js.map +1 -1
- package/lib-commonjs/middleware/flip.js +31 -38
- package/lib-commonjs/middleware/flip.js.map +1 -1
- package/lib-commonjs/middleware/index.js +10 -9
- package/lib-commonjs/middleware/index.js.map +1 -1
- package/lib-commonjs/middleware/intersecting.js +24 -22
- package/lib-commonjs/middleware/intersecting.js.map +1 -1
- package/lib-commonjs/middleware/maxSize.js +34 -40
- package/lib-commonjs/middleware/maxSize.js.map +1 -1
- package/lib-commonjs/middleware/offset.js +11 -12
- package/lib-commonjs/middleware/offset.js.map +1 -1
- package/lib-commonjs/middleware/shift.js +29 -37
- package/lib-commonjs/middleware/shift.js.map +1 -1
- package/lib-commonjs/types.js +5 -2
- package/lib-commonjs/types.js.map +1 -1
- package/lib-commonjs/usePositioning.js +192 -164
- package/lib-commonjs/usePositioning.js.map +1 -1
- package/lib-commonjs/usePositioningMouseTarget.js +34 -37
- package/lib-commonjs/usePositioningMouseTarget.js.map +1 -1
- package/lib-commonjs/utils/debounce.js +22 -21
- package/lib-commonjs/utils/debounce.js.map +1 -1
- package/lib-commonjs/utils/fromFloatingUIPlacement.js +30 -35
- package/lib-commonjs/utils/fromFloatingUIPlacement.js.map +1 -1
- package/lib-commonjs/utils/getBoundary.js +21 -22
- package/lib-commonjs/utils/getBoundary.js.map +1 -1
- package/lib-commonjs/utils/getFloatingUIOffset.js +23 -35
- package/lib-commonjs/utils/getFloatingUIOffset.js.map +1 -1
- package/lib-commonjs/utils/getReactFiberFromNode.js +45 -41
- package/lib-commonjs/utils/getReactFiberFromNode.js.map +1 -1
- package/lib-commonjs/utils/getScrollParent.js +50 -56
- package/lib-commonjs/utils/getScrollParent.js.map +1 -1
- package/lib-commonjs/utils/hasAutoFocusFilter.js +17 -17
- package/lib-commonjs/utils/hasAutoFocusFilter.js.map +1 -1
- package/lib-commonjs/utils/index.js +19 -18
- package/lib-commonjs/utils/index.js.map +1 -1
- package/lib-commonjs/utils/mergeArrowOffset.js +32 -32
- package/lib-commonjs/utils/mergeArrowOffset.js.map +1 -1
- package/lib-commonjs/utils/parseFloatingUIPlacement.js +15 -14
- package/lib-commonjs/utils/parseFloatingUIPlacement.js.map +1 -1
- package/lib-commonjs/utils/resolvePositioningShorthand.js +63 -61
- package/lib-commonjs/utils/resolvePositioningShorthand.js.map +1 -1
- package/lib-commonjs/utils/toFloatingUIPadding.js +23 -25
- package/lib-commonjs/utils/toFloatingUIPadding.js.map +1 -1
- package/lib-commonjs/utils/toFloatingUIPlacement.js +31 -33
- package/lib-commonjs/utils/toFloatingUIPlacement.js.map +1 -1
- package/lib-commonjs/utils/toggleScrollListener.js +20 -24
- package/lib-commonjs/utils/toggleScrollListener.js.map +1 -1
- package/lib-commonjs/utils/useCallbackRef.js +39 -53
- package/lib-commonjs/utils/useCallbackRef.js.map +1 -1
- package/lib-commonjs/utils/writeArrowUpdates.js +19 -24
- package/lib-commonjs/utils/writeArrowUpdates.js.map +1 -1
- package/lib-commonjs/utils/writeContainerupdates.js +36 -45
- package/lib-commonjs/utils/writeContainerupdates.js.map +1 -1
- package/package.json +6 -6
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import { DATA_POSITIONING_ESCAPED, DATA_POSITIONING_HIDDEN, DATA_POSITIONING_INTERSECTING, DATA_POSITIONING_PLACEMENT } from
|
|
1
|
+
import { DATA_POSITIONING_ESCAPED, DATA_POSITIONING_HIDDEN, DATA_POSITIONING_INTERSECTING, DATA_POSITIONING_PLACEMENT } from "../constants";
|
|
2
2
|
/**
|
|
3
3
|
* Writes all container element position updates after the position is computed
|
|
4
4
|
*/
|
|
5
5
|
export function writeContainerUpdates(options) {
|
|
6
|
-
var _a, _b, _c;
|
|
7
6
|
const {
|
|
8
7
|
container,
|
|
9
8
|
placement,
|
|
@@ -18,21 +17,21 @@ export function writeContainerUpdates(options) {
|
|
|
18
17
|
container.setAttribute(DATA_POSITIONING_PLACEMENT, placement);
|
|
19
18
|
container.removeAttribute(DATA_POSITIONING_INTERSECTING);
|
|
20
19
|
if (middlewareData.intersectionObserver.intersecting) {
|
|
21
|
-
container.setAttribute(DATA_POSITIONING_INTERSECTING,
|
|
20
|
+
container.setAttribute(DATA_POSITIONING_INTERSECTING, "");
|
|
22
21
|
}
|
|
23
22
|
container.removeAttribute(DATA_POSITIONING_ESCAPED);
|
|
24
|
-
if (
|
|
25
|
-
container.setAttribute(DATA_POSITIONING_ESCAPED,
|
|
23
|
+
if (middlewareData.hide?.escaped) {
|
|
24
|
+
container.setAttribute(DATA_POSITIONING_ESCAPED, "");
|
|
26
25
|
}
|
|
27
26
|
container.removeAttribute(DATA_POSITIONING_HIDDEN);
|
|
28
|
-
if (
|
|
29
|
-
container.setAttribute(DATA_POSITIONING_HIDDEN,
|
|
27
|
+
if (middlewareData.hide?.referenceHidden) {
|
|
28
|
+
container.setAttribute(DATA_POSITIONING_HIDDEN, "");
|
|
30
29
|
}
|
|
31
30
|
// Round so that the coordinates land on device pixels.
|
|
32
31
|
// This prevents blurriness in cases where the browser doesn't apply pixel snapping, such as when other effects like
|
|
33
32
|
// `backdrop-filter: blur()` are applied to the container, and the browser is zoomed in.
|
|
34
33
|
// See https://github.com/microsoft/fluentui/issues/26764 for more info.
|
|
35
|
-
const devicePixelRatio =
|
|
34
|
+
const devicePixelRatio = container.ownerDocument.defaultView?.devicePixelRatio || 1;
|
|
36
35
|
const x = Math.round(coordinates.x * devicePixelRatio) / devicePixelRatio;
|
|
37
36
|
const y = Math.round(coordinates.y * devicePixelRatio) / devicePixelRatio;
|
|
38
37
|
Object.assign(container.style, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["DATA_POSITIONING_ESCAPED","DATA_POSITIONING_HIDDEN","DATA_POSITIONING_INTERSECTING","DATA_POSITIONING_PLACEMENT","writeContainerUpdates","options","container","placement","middlewareData","strategy","lowPPI","coordinates","setAttribute","removeAttribute","intersectionObserver","intersecting","
|
|
1
|
+
{"version":3,"names":["DATA_POSITIONING_ESCAPED","DATA_POSITIONING_HIDDEN","DATA_POSITIONING_INTERSECTING","DATA_POSITIONING_PLACEMENT","writeContainerUpdates","options","container","placement","middlewareData","strategy","lowPPI","coordinates","setAttribute","removeAttribute","intersectionObserver","intersecting","hide","escaped","referenceHidden","devicePixelRatio","ownerDocument","defaultView","x","Math","round","y","Object","assign","style","transform","position"],"sources":["../../src/utils/writeContainerupdates.ts"],"sourcesContent":["import type { Placement, MiddlewareData, Strategy, Coords } from '@floating-ui/dom';\nimport {\n DATA_POSITIONING_ESCAPED,\n DATA_POSITIONING_HIDDEN,\n DATA_POSITIONING_INTERSECTING,\n DATA_POSITIONING_PLACEMENT,\n} from '../constants';\n\n/**\n * Writes all container element position updates after the position is computed\n */\nexport function writeContainerUpdates(options: {\n container: HTMLElement | null;\n placement: Placement;\n middlewareData: MiddlewareData;\n /**\n * Layer acceleration can disable subpixel rendering which causes slightly\n * blurry text on low PPI displays, so we want to use 2D transforms\n * instead\n */\n lowPPI: boolean;\n strategy: Strategy;\n coordinates: Coords;\n}) {\n const { container, placement, middlewareData, strategy, lowPPI, coordinates } = options;\n if (!container) {\n return;\n }\n container.setAttribute(DATA_POSITIONING_PLACEMENT, placement);\n container.removeAttribute(DATA_POSITIONING_INTERSECTING);\n if (middlewareData.intersectionObserver.intersecting) {\n container.setAttribute(DATA_POSITIONING_INTERSECTING, '');\n }\n\n container.removeAttribute(DATA_POSITIONING_ESCAPED);\n if (middlewareData.hide?.escaped) {\n container.setAttribute(DATA_POSITIONING_ESCAPED, '');\n }\n\n container.removeAttribute(DATA_POSITIONING_HIDDEN);\n if (middlewareData.hide?.referenceHidden) {\n container.setAttribute(DATA_POSITIONING_HIDDEN, '');\n }\n\n // Round so that the coordinates land on device pixels.\n // This prevents blurriness in cases where the browser doesn't apply pixel snapping, such as when other effects like\n // `backdrop-filter: blur()` are applied to the container, and the browser is zoomed in.\n // See https://github.com/microsoft/fluentui/issues/26764 for more info.\n const devicePixelRatio = container.ownerDocument.defaultView?.devicePixelRatio || 1;\n const x = Math.round(coordinates.x * devicePixelRatio) / devicePixelRatio;\n const y = Math.round(coordinates.y * devicePixelRatio) / devicePixelRatio;\n\n Object.assign(container.style, {\n transform: lowPPI ? `translate(${x}px, ${y}px)` : `translate3d(${x}px, ${y}px, 0)`,\n position: strategy,\n });\n}\n"],"mappings":"AACA,SACEA,wBAAwB,EACxBC,uBAAuB,EACvBC,6BAA6B,EAC7BC,0BAA0B,QACrB;AAEP;;;AAGA,OAAO,SAASC,sBAAsBC,OAYrC,EAAE;EACD,MAAM;IAAEC,SAAA;IAAWC,SAAA;IAAWC,cAAA;IAAgBC,QAAA;IAAUC,MAAA;IAAQC;EAAW,CAAE,GAAGN,OAAA;EAChF,IAAI,CAACC,SAAA,EAAW;IACd;EACF;EACAA,SAAA,CAAUM,YAAY,CAACT,0BAAA,EAA4BI,SAAA;EACnDD,SAAA,CAAUO,eAAe,CAACX,6BAAA;EAC1B,IAAIM,cAAA,CAAeM,oBAAoB,CAACC,YAAY,EAAE;IACpDT,SAAA,CAAUM,YAAY,CAACV,6BAAA,EAA+B;EACxD;EAEAI,SAAA,CAAUO,eAAe,CAACb,wBAAA;EAC1B,IAAIQ,cAAA,CAAeQ,IAAI,EAAEC,OAAA,EAAS;IAChCX,SAAA,CAAUM,YAAY,CAACZ,wBAAA,EAA0B;EACnD;EAEAM,SAAA,CAAUO,eAAe,CAACZ,uBAAA;EAC1B,IAAIO,cAAA,CAAeQ,IAAI,EAAEE,eAAA,EAAiB;IACxCZ,SAAA,CAAUM,YAAY,CAACX,uBAAA,EAAyB;EAClD;EAEA;EACA;EACA;EACA;EACA,MAAMkB,gBAAA,GAAmBb,SAAA,CAAUc,aAAa,CAACC,WAAW,EAAEF,gBAAA,IAAoB;EAClF,MAAMG,CAAA,GAAIC,IAAA,CAAKC,KAAK,CAACb,WAAA,CAAYW,CAAC,GAAGH,gBAAA,IAAoBA,gBAAA;EACzD,MAAMM,CAAA,GAAIF,IAAA,CAAKC,KAAK,CAACb,WAAA,CAAYc,CAAC,GAAGN,gBAAA,IAAoBA,gBAAA;EAEzDO,MAAA,CAAOC,MAAM,CAACrB,SAAA,CAAUsB,KAAK,EAAE;IAC7BC,SAAA,EAAWnB,MAAA,GAAU,aAAYY,CAAE,OAAMG,CAAE,KAAI,GAAI,eAAcH,CAAE,OAAMG,CAAE,QAAO;IAClFK,QAAA,EAAUrB;EACZ;AACF"}
|
|
@@ -1,11 +1,22 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
2
|
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: all[name]
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
DATA_POSITIONING_INTERSECTING: ()=>DATA_POSITIONING_INTERSECTING,
|
|
13
|
+
DATA_POSITIONING_ESCAPED: ()=>DATA_POSITIONING_ESCAPED,
|
|
14
|
+
DATA_POSITIONING_HIDDEN: ()=>DATA_POSITIONING_HIDDEN,
|
|
15
|
+
DATA_POSITIONING_PLACEMENT: ()=>DATA_POSITIONING_PLACEMENT
|
|
5
16
|
});
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
17
|
+
const DATA_POSITIONING_INTERSECTING = "data-popper-is-intersecting";
|
|
18
|
+
const DATA_POSITIONING_ESCAPED = "data-popper-escaped";
|
|
19
|
+
const DATA_POSITIONING_HIDDEN = "data-popper-reference-hidden";
|
|
20
|
+
const DATA_POSITIONING_PLACEMENT = "data-popper-placement"; //# sourceMappingURL=constants.js.map
|
|
21
|
+
|
|
11
22
|
//# sourceMappingURL=constants.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"sources":["../lib/constants.js"],"sourcesContent":["export const DATA_POSITIONING_INTERSECTING = \"data-popper-is-intersecting\";\nexport const DATA_POSITIONING_ESCAPED = \"data-popper-escaped\";\nexport const DATA_POSITIONING_HIDDEN = \"data-popper-reference-hidden\";\nexport const DATA_POSITIONING_PLACEMENT = \"data-popper-placement\";\n//# sourceMappingURL=constants.js.map"],"names":["DATA_POSITIONING_INTERSECTING","DATA_POSITIONING_ESCAPED","DATA_POSITIONING_HIDDEN","DATA_POSITIONING_PLACEMENT"],"mappings":";;;;;;;;;;;IAAaA,6BAA6B,MAA7BA;IACAC,wBAAwB,MAAxBA;IACAC,uBAAuB,MAAvBA;IACAC,0BAA0B,MAA1BA;;AAHN,MAAMH,gCAAgC;AACtC,MAAMC,2BAA2B;AACjC,MAAMC,0BAA0B;AAChC,MAAMC,6BAA6B,yBAC1C,qCAAqC"}
|
|
@@ -1,95 +1,67 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
2
|
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: all[name]
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
createArrowStyles: ()=>createArrowStyles,
|
|
13
|
+
createArrowHeightStyles: ()=>createArrowHeightStyles
|
|
5
14
|
});
|
|
6
|
-
|
|
7
|
-
const
|
|
8
|
-
const react_theme_1 = /*#__PURE__*/require("@fluentui/react-theme");
|
|
9
|
-
/**
|
|
10
|
-
* @internal
|
|
11
|
-
* Helper that creates a makeStyles rule for an arrow element.
|
|
12
|
-
* For runtime arrow size toggling simply create extra classnames to apply to the arrow element
|
|
13
|
-
*
|
|
14
|
-
* ```ts
|
|
15
|
-
* makeStyles({
|
|
16
|
-
* arrowWithSize: createArrowStyles({ arrowHeight: 6 }),
|
|
17
|
-
*
|
|
18
|
-
* arrowWithoutSize: createArrowStyles({ arrowHeight: undefined }),
|
|
19
|
-
* mediumArrow: createArrowHeightStyles(4),
|
|
20
|
-
* smallArrow: createArrowHeightStyles(2),
|
|
21
|
-
* })
|
|
22
|
-
* ...
|
|
23
|
-
*
|
|
24
|
-
* state.arrowWithSize.className = styles.arrowWithSize;
|
|
25
|
-
* state.arrowWithoutSize.className = mergeClasses(
|
|
26
|
-
* styles.arrowWithoutSize,
|
|
27
|
-
* state.smallArrow && styles.smallArrow,
|
|
28
|
-
* state.mediumArrow && styles.mediumArrow,
|
|
29
|
-
* )
|
|
30
|
-
* ```
|
|
31
|
-
*/
|
|
15
|
+
const _react = require("@griffel/react");
|
|
16
|
+
const _reactTheme = require("@fluentui/react-theme");
|
|
32
17
|
function createArrowStyles(options) {
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
}
|
|
71
|
-
':global([data-popper-placement^="left"])': {
|
|
72
|
-
right: `-${borderWidth} /* @noflip */`,
|
|
73
|
-
'--angle': '270deg'
|
|
74
|
-
}
|
|
75
|
-
};
|
|
18
|
+
const { arrowHeight , borderWidth ="1px" , borderStyle ="solid" , borderColor =_reactTheme.tokens.colorTransparentStroke } = options;
|
|
19
|
+
return {
|
|
20
|
+
position: "absolute",
|
|
21
|
+
backgroundColor: "inherit",
|
|
22
|
+
visibility: "hidden",
|
|
23
|
+
zIndex: -1,
|
|
24
|
+
...arrowHeight && createArrowHeightStyles(arrowHeight),
|
|
25
|
+
"::before": {
|
|
26
|
+
content: '""',
|
|
27
|
+
visibility: "visible",
|
|
28
|
+
position: "absolute",
|
|
29
|
+
boxSizing: "border-box",
|
|
30
|
+
width: "inherit",
|
|
31
|
+
height: "inherit",
|
|
32
|
+
backgroundColor: "inherit",
|
|
33
|
+
..._react.shorthands.borderRight(`${borderWidth} /* @noflip */`, `${borderStyle} /* @noflip */`, `${borderColor} /* @noflip */`),
|
|
34
|
+
..._react.shorthands.borderBottom(borderWidth, borderStyle, borderColor),
|
|
35
|
+
borderBottomRightRadius: _reactTheme.tokens.borderRadiusSmall,
|
|
36
|
+
transform: "rotate(var(--angle)) translate(0, 50%) rotate(45deg)"
|
|
37
|
+
},
|
|
38
|
+
// Popper sets data-popper-placement on the root element, which is used to align the arrow
|
|
39
|
+
':global([data-popper-placement^="top"])': {
|
|
40
|
+
bottom: `-${borderWidth}`,
|
|
41
|
+
"--angle": "0"
|
|
42
|
+
},
|
|
43
|
+
':global([data-popper-placement^="right"])': {
|
|
44
|
+
left: `-${borderWidth} /* @noflip */`,
|
|
45
|
+
"--angle": "90deg"
|
|
46
|
+
},
|
|
47
|
+
':global([data-popper-placement^="bottom"])': {
|
|
48
|
+
top: `-${borderWidth}`,
|
|
49
|
+
"--angle": "180deg"
|
|
50
|
+
},
|
|
51
|
+
':global([data-popper-placement^="left"])': {
|
|
52
|
+
right: `-${borderWidth} /* @noflip */`,
|
|
53
|
+
"--angle": "270deg"
|
|
54
|
+
}
|
|
55
|
+
};
|
|
76
56
|
}
|
|
77
|
-
exports.createArrowStyles = createArrowStyles;
|
|
78
|
-
/**
|
|
79
|
-
* @internal
|
|
80
|
-
* Creates CSS styles to size the arrow created by createArrowStyles to the given height.
|
|
81
|
-
*
|
|
82
|
-
* Use this when you need to create classes for several different arrow sizes. If you only need a
|
|
83
|
-
* constant arrow size, you can pass the `arrowHeight` param to createArrowStyles instead.
|
|
84
|
-
*/
|
|
85
57
|
function createArrowHeightStyles(arrowHeight) {
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
}
|
|
94
|
-
|
|
58
|
+
// The arrow is a square rotated 45 degrees to have its bottom and right edges form a right triangle.
|
|
59
|
+
// Multiply the triangle's height by sqrt(2) to get length of its edges.
|
|
60
|
+
const edgeLength = `${1.414 * arrowHeight}px`;
|
|
61
|
+
return {
|
|
62
|
+
width: edgeLength,
|
|
63
|
+
height: edgeLength
|
|
64
|
+
};
|
|
65
|
+
} //# sourceMappingURL=createArrowStyles.js.map
|
|
66
|
+
|
|
95
67
|
//# sourceMappingURL=createArrowStyles.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"sources":["../lib/createArrowStyles.js"],"sourcesContent":["import { shorthands } from \"@griffel/react\";\nimport { tokens } from \"@fluentui/react-theme\";\n/**\n * @internal\n * Helper that creates a makeStyles rule for an arrow element.\n * For runtime arrow size toggling simply create extra classnames to apply to the arrow element\n *\n * ```ts\n * makeStyles({\n * arrowWithSize: createArrowStyles({ arrowHeight: 6 }),\n *\n * arrowWithoutSize: createArrowStyles({ arrowHeight: undefined }),\n * mediumArrow: createArrowHeightStyles(4),\n * smallArrow: createArrowHeightStyles(2),\n * })\n * ...\n *\n * state.arrowWithSize.className = styles.arrowWithSize;\n * state.arrowWithoutSize.className = mergeClasses(\n * styles.arrowWithoutSize,\n * state.smallArrow && styles.smallArrow,\n * state.mediumArrow && styles.mediumArrow,\n * )\n * ```\n */\nexport function createArrowStyles(options) {\n const {\n arrowHeight,\n borderWidth = \"1px\",\n borderStyle = \"solid\",\n borderColor = tokens.colorTransparentStroke\n } = options;\n return {\n position: \"absolute\",\n backgroundColor: \"inherit\",\n visibility: \"hidden\",\n zIndex: -1,\n ...(arrowHeight && createArrowHeightStyles(arrowHeight)),\n \"::before\": {\n content: '\"\"',\n visibility: \"visible\",\n position: \"absolute\",\n boxSizing: \"border-box\",\n width: \"inherit\",\n height: \"inherit\",\n backgroundColor: \"inherit\",\n ...shorthands.borderRight(`${borderWidth} /* @noflip */`, `${borderStyle} /* @noflip */`, `${borderColor} /* @noflip */`),\n ...shorthands.borderBottom(borderWidth, borderStyle, borderColor),\n borderBottomRightRadius: tokens.borderRadiusSmall,\n transform: \"rotate(var(--angle)) translate(0, 50%) rotate(45deg)\"\n },\n // Popper sets data-popper-placement on the root element, which is used to align the arrow\n ':global([data-popper-placement^=\"top\"])': {\n bottom: `-${borderWidth}`,\n \"--angle\": \"0\"\n },\n ':global([data-popper-placement^=\"right\"])': {\n left: `-${borderWidth} /* @noflip */`,\n \"--angle\": \"90deg\"\n },\n ':global([data-popper-placement^=\"bottom\"])': {\n top: `-${borderWidth}`,\n \"--angle\": \"180deg\"\n },\n ':global([data-popper-placement^=\"left\"])': {\n right: `-${borderWidth} /* @noflip */`,\n \"--angle\": \"270deg\"\n }\n };\n}\n/**\n * @internal\n * Creates CSS styles to size the arrow created by createArrowStyles to the given height.\n *\n * Use this when you need to create classes for several different arrow sizes. If you only need a\n * constant arrow size, you can pass the `arrowHeight` param to createArrowStyles instead.\n */\nexport function createArrowHeightStyles(arrowHeight) {\n // The arrow is a square rotated 45 degrees to have its bottom and right edges form a right triangle.\n // Multiply the triangle's height by sqrt(2) to get length of its edges.\n const edgeLength = `${1.414 * arrowHeight}px`;\n return {\n width: edgeLength,\n height: edgeLength\n };\n}\n//# sourceMappingURL=createArrowStyles.js.map"],"names":["createArrowStyles","createArrowHeightStyles","options","arrowHeight","borderWidth","borderStyle","borderColor","tokens","colorTransparentStroke","position","backgroundColor","visibility","zIndex","content","boxSizing","width","height","shorthands","borderRight","borderBottom","borderBottomRightRadius","borderRadiusSmall","transform","bottom","left","top","right","edgeLength"],"mappings":";;;;;;;;;;;IAyBgBA,iBAAiB,MAAjBA;IAoDAC,uBAAuB,MAAvBA;;uBA7EW;4BACJ;AAwBhB,SAASD,kBAAkBE,OAAO,EAAE;IACzC,MAAM,EACJC,YAAW,EACXC,aAAc,MAAK,EACnBC,aAAc,QAAO,EACrBC,aAAcC,kBAAM,CAACC,sBAAsB,CAAA,EAC5C,GAAGN;IACJ,OAAO;QACLO,UAAU;QACVC,iBAAiB;QACjBC,YAAY;QACZC,QAAQ,CAAC;QACT,GAAIT,eAAeF,wBAAwBE,YAAY;QACvD,YAAY;YACVU,SAAS;YACTF,YAAY;YACZF,UAAU;YACVK,WAAW;YACXC,OAAO;YACPC,QAAQ;YACRN,iBAAiB;YACjB,GAAGO,iBAAU,CAACC,WAAW,CAAC,CAAC,EAAEd,YAAY,cAAc,CAAC,EAAE,CAAC,EAAEC,YAAY,cAAc,CAAC,EAAE,CAAC,EAAEC,YAAY,cAAc,CAAC,CAAC;YACzH,GAAGW,iBAAU,CAACE,YAAY,CAACf,aAAaC,aAAaC,YAAY;YACjEc,yBAAyBb,kBAAM,CAACc,iBAAiB;YACjDC,WAAW;QACb;QACA,0FAA0F;QAC1F,2CAA2C;YACzCC,QAAQ,CAAC,CAAC,EAAEnB,YAAY,CAAC;YACzB,WAAW;QACb;QACA,6CAA6C;YAC3CoB,MAAM,CAAC,CAAC,EAAEpB,YAAY,cAAc,CAAC;YACrC,WAAW;QACb;QACA,8CAA8C;YAC5CqB,KAAK,CAAC,CAAC,EAAErB,YAAY,CAAC;YACtB,WAAW;QACb;QACA,4CAA4C;YAC1CsB,OAAO,CAAC,CAAC,EAAEtB,YAAY,cAAc,CAAC;YACtC,WAAW;QACb;IACF;AACF;AAQO,SAASH,wBAAwBE,WAAW,EAAE;IACnD,qGAAqG;IACrG,wEAAwE;IACxE,MAAMwB,aAAa,CAAC,EAAE,QAAQxB,YAAY,EAAE,CAAC;IAC7C,OAAO;QACLY,OAAOY;QACPX,QAAQW;IACV;AACF,EACA,6CAA6C"}
|
|
@@ -1,127 +1,113 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
2
|
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "createPositionManager", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: ()=>createPositionManager
|
|
5
8
|
});
|
|
6
|
-
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const react_utilities_1 = /*#__PURE__*/require("@fluentui/react-utilities");
|
|
10
|
-
/**
|
|
11
|
-
* @internal
|
|
12
|
-
* @returns manager that handles positioning out of the react lifecycle
|
|
13
|
-
*/
|
|
9
|
+
const _dom = require("@floating-ui/dom");
|
|
10
|
+
const _utils = require("./utils");
|
|
11
|
+
const _reactUtilities = require("@fluentui/react-utilities");
|
|
14
12
|
function createPositionManager(options) {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
target
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
} = options;
|
|
23
|
-
let isDestroyed = false;
|
|
24
|
-
if (!target || !container) {
|
|
25
|
-
return {
|
|
26
|
-
updatePosition: () => undefined,
|
|
27
|
-
dispose: () => undefined
|
|
28
|
-
};
|
|
29
|
-
}
|
|
30
|
-
let isFirstUpdate = true;
|
|
31
|
-
const scrollParents = new Set();
|
|
32
|
-
const targetWindow = container.ownerDocument.defaultView;
|
|
33
|
-
// When the container is first resolved, set position `fixed` to avoid scroll jumps.
|
|
34
|
-
// Without this scroll jumps can occur when the element is rendered initially and receives focus
|
|
35
|
-
Object.assign(container.style, {
|
|
36
|
-
position: 'fixed',
|
|
37
|
-
left: 0,
|
|
38
|
-
top: 0,
|
|
39
|
-
margin: 0
|
|
40
|
-
});
|
|
41
|
-
const forceUpdate = () => {
|
|
42
|
-
// debounced update can still occur afterwards
|
|
43
|
-
// early return to avoid memory leaks
|
|
44
|
-
if (isDestroyed) {
|
|
45
|
-
return;
|
|
46
|
-
}
|
|
47
|
-
if (isFirstUpdate) {
|
|
48
|
-
scrollParents.add(utils_1.getScrollParent(container));
|
|
49
|
-
if (react_utilities_1.isHTMLElement(target)) {
|
|
50
|
-
scrollParents.add(utils_1.getScrollParent(target));
|
|
51
|
-
}
|
|
52
|
-
scrollParents.forEach(scrollParent => {
|
|
53
|
-
scrollParent.addEventListener('scroll', updatePosition);
|
|
54
|
-
});
|
|
55
|
-
isFirstUpdate = false;
|
|
13
|
+
const { container , target , arrow , strategy , middleware , placement } = options;
|
|
14
|
+
let isDestroyed = false;
|
|
15
|
+
if (!target || !container) {
|
|
16
|
+
return {
|
|
17
|
+
updatePosition: ()=>undefined,
|
|
18
|
+
dispose: ()=>undefined
|
|
19
|
+
};
|
|
56
20
|
}
|
|
21
|
+
let isFirstUpdate = true;
|
|
22
|
+
const scrollParents = new Set();
|
|
23
|
+
const targetWindow = container.ownerDocument.defaultView;
|
|
24
|
+
// When the container is first resolved, set position `fixed` to avoid scroll jumps.
|
|
25
|
+
// Without this scroll jumps can occur when the element is rendered initially and receives focus
|
|
57
26
|
Object.assign(container.style, {
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
middleware,
|
|
63
|
-
strategy
|
|
64
|
-
}).then(({
|
|
65
|
-
x,
|
|
66
|
-
y,
|
|
67
|
-
middlewareData,
|
|
68
|
-
placement: computedPlacement
|
|
69
|
-
}) => {
|
|
70
|
-
// Promise can still resolve after destruction
|
|
71
|
-
// early return to avoid applying outdated position
|
|
72
|
-
if (isDestroyed) {
|
|
73
|
-
return;
|
|
74
|
-
}
|
|
75
|
-
utils_1.writeArrowUpdates({
|
|
76
|
-
arrow,
|
|
77
|
-
middlewareData
|
|
78
|
-
});
|
|
79
|
-
utils_1.writeContainerUpdates({
|
|
80
|
-
container,
|
|
81
|
-
middlewareData,
|
|
82
|
-
placement: computedPlacement,
|
|
83
|
-
coordinates: {
|
|
84
|
-
x,
|
|
85
|
-
y
|
|
86
|
-
},
|
|
87
|
-
lowPPI: ((targetWindow === null || targetWindow === void 0 ? void 0 : targetWindow.devicePixelRatio) || 1) <= 1,
|
|
88
|
-
strategy
|
|
89
|
-
});
|
|
90
|
-
}).catch(err => {
|
|
91
|
-
// https://github.com/floating-ui/floating-ui/issues/1845
|
|
92
|
-
// FIXME for node > 14
|
|
93
|
-
// node 15 introduces promise rejection which means that any components
|
|
94
|
-
// tests need to be `it('', async () => {})` otherwise there can be race conditions with
|
|
95
|
-
// JSDOM being torn down before this promise is resolved so globals like `window` and `document` don't exist
|
|
96
|
-
// Unless all tests that ever use `usePositioning` are turned into async tests, any logging during testing
|
|
97
|
-
// will actually be counter productive
|
|
98
|
-
if (process.env.NODE_ENV === 'development') {
|
|
99
|
-
// eslint-disable-next-line no-console
|
|
100
|
-
console.error('[usePositioning]: Failed to calculate position', err);
|
|
101
|
-
}
|
|
27
|
+
position: "fixed",
|
|
28
|
+
left: 0,
|
|
29
|
+
top: 0,
|
|
30
|
+
margin: 0
|
|
102
31
|
});
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
32
|
+
const forceUpdate = ()=>{
|
|
33
|
+
// debounced update can still occur afterwards
|
|
34
|
+
// early return to avoid memory leaks
|
|
35
|
+
if (isDestroyed) {
|
|
36
|
+
return;
|
|
37
|
+
}
|
|
38
|
+
if (isFirstUpdate) {
|
|
39
|
+
scrollParents.add((0, _utils.getScrollParent)(container));
|
|
40
|
+
if ((0, _reactUtilities.isHTMLElement)(target)) {
|
|
41
|
+
scrollParents.add((0, _utils.getScrollParent)(target));
|
|
42
|
+
}
|
|
43
|
+
scrollParents.forEach((scrollParent)=>{
|
|
44
|
+
scrollParent.addEventListener("scroll", updatePosition);
|
|
45
|
+
});
|
|
46
|
+
isFirstUpdate = false;
|
|
47
|
+
}
|
|
48
|
+
Object.assign(container.style, {
|
|
49
|
+
position: strategy
|
|
50
|
+
});
|
|
51
|
+
(0, _dom.computePosition)(target, container, {
|
|
52
|
+
placement,
|
|
53
|
+
middleware,
|
|
54
|
+
strategy
|
|
55
|
+
}).then(({ x , y , middlewareData , placement: computedPlacement })=>{
|
|
56
|
+
// Promise can still resolve after destruction
|
|
57
|
+
// early return to avoid applying outdated position
|
|
58
|
+
if (isDestroyed) {
|
|
59
|
+
return;
|
|
60
|
+
}
|
|
61
|
+
(0, _utils.writeArrowUpdates)({
|
|
62
|
+
arrow,
|
|
63
|
+
middlewareData
|
|
64
|
+
});
|
|
65
|
+
(0, _utils.writeContainerUpdates)({
|
|
66
|
+
container,
|
|
67
|
+
middlewareData,
|
|
68
|
+
placement: computedPlacement,
|
|
69
|
+
coordinates: {
|
|
70
|
+
x,
|
|
71
|
+
y
|
|
72
|
+
},
|
|
73
|
+
lowPPI: (targetWindow?.devicePixelRatio || 1) <= 1,
|
|
74
|
+
strategy
|
|
75
|
+
});
|
|
76
|
+
}).catch((err)=>{
|
|
77
|
+
// https://github.com/floating-ui/floating-ui/issues/1845
|
|
78
|
+
// FIXME for node > 14
|
|
79
|
+
// node 15 introduces promise rejection which means that any components
|
|
80
|
+
// tests need to be `it('', async () => {})` otherwise there can be race conditions with
|
|
81
|
+
// JSDOM being torn down before this promise is resolved so globals like `window` and `document` don't exist
|
|
82
|
+
// Unless all tests that ever use `usePositioning` are turned into async tests, any logging during testing
|
|
83
|
+
// will actually be counter productive
|
|
84
|
+
if (process.env.NODE_ENV === "development") {
|
|
85
|
+
// eslint-disable-next-line no-console
|
|
86
|
+
console.error("[usePositioning]: Failed to calculate position", err);
|
|
87
|
+
}
|
|
88
|
+
});
|
|
89
|
+
};
|
|
90
|
+
const updatePosition = (0, _utils.debounce)(()=>forceUpdate());
|
|
91
|
+
const dispose = ()=>{
|
|
92
|
+
isDestroyed = true;
|
|
93
|
+
if (targetWindow) {
|
|
94
|
+
targetWindow.removeEventListener("scroll", updatePosition);
|
|
95
|
+
targetWindow.removeEventListener("resize", updatePosition);
|
|
96
|
+
}
|
|
97
|
+
scrollParents.forEach((scrollParent)=>{
|
|
98
|
+
scrollParent.removeEventListener("scroll", updatePosition);
|
|
99
|
+
});
|
|
100
|
+
};
|
|
107
101
|
if (targetWindow) {
|
|
108
|
-
|
|
109
|
-
|
|
102
|
+
targetWindow.addEventListener("scroll", updatePosition);
|
|
103
|
+
targetWindow.addEventListener("resize", updatePosition);
|
|
110
104
|
}
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
// Update the position on initialization
|
|
120
|
-
updatePosition();
|
|
121
|
-
return {
|
|
122
|
-
updatePosition,
|
|
123
|
-
dispose
|
|
124
|
-
};
|
|
125
|
-
}
|
|
126
|
-
exports.createPositionManager = createPositionManager;
|
|
105
|
+
// Update the position on initialization
|
|
106
|
+
updatePosition();
|
|
107
|
+
return {
|
|
108
|
+
updatePosition,
|
|
109
|
+
dispose
|
|
110
|
+
};
|
|
111
|
+
} //# sourceMappingURL=createPositionManager.js.map
|
|
112
|
+
|
|
127
113
|
//# sourceMappingURL=createPositionManager.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"sources":["../lib/createPositionManager.js"],"sourcesContent":["import { computePosition } from \"@floating-ui/dom\";\nimport { debounce, writeArrowUpdates, writeContainerUpdates, getScrollParent } from \"./utils\";\nimport { isHTMLElement } from \"@fluentui/react-utilities\";\n/**\n * @internal\n * @returns manager that handles positioning out of the react lifecycle\n */\nexport function createPositionManager(options) {\n const {\n container,\n target,\n arrow,\n strategy,\n middleware,\n placement\n } = options;\n let isDestroyed = false;\n if (!target || !container) {\n return {\n updatePosition: () => undefined,\n dispose: () => undefined\n };\n }\n let isFirstUpdate = true;\n const scrollParents = new Set();\n const targetWindow = container.ownerDocument.defaultView;\n // When the container is first resolved, set position `fixed` to avoid scroll jumps.\n // Without this scroll jumps can occur when the element is rendered initially and receives focus\n Object.assign(container.style, {\n position: \"fixed\",\n left: 0,\n top: 0,\n margin: 0\n });\n const forceUpdate = () => {\n // debounced update can still occur afterwards\n // early return to avoid memory leaks\n if (isDestroyed) {\n return;\n }\n if (isFirstUpdate) {\n scrollParents.add(getScrollParent(container));\n if (isHTMLElement(target)) {\n scrollParents.add(getScrollParent(target));\n }\n scrollParents.forEach(scrollParent => {\n scrollParent.addEventListener(\"scroll\", updatePosition);\n });\n isFirstUpdate = false;\n }\n Object.assign(container.style, {\n position: strategy\n });\n computePosition(target, container, {\n placement,\n middleware,\n strategy\n }).then(({\n x,\n y,\n middlewareData,\n placement: computedPlacement\n }) => {\n // Promise can still resolve after destruction\n // early return to avoid applying outdated position\n if (isDestroyed) {\n return;\n }\n writeArrowUpdates({\n arrow,\n middlewareData\n });\n writeContainerUpdates({\n container,\n middlewareData,\n placement: computedPlacement,\n coordinates: {\n x,\n y\n },\n lowPPI: (targetWindow?.devicePixelRatio || 1) <= 1,\n strategy\n });\n }).catch(err => {\n // https://github.com/floating-ui/floating-ui/issues/1845\n // FIXME for node > 14\n // node 15 introduces promise rejection which means that any components\n // tests need to be `it('', async () => {})` otherwise there can be race conditions with\n // JSDOM being torn down before this promise is resolved so globals like `window` and `document` don't exist\n // Unless all tests that ever use `usePositioning` are turned into async tests, any logging during testing\n // will actually be counter productive\n if (process.env.NODE_ENV === \"development\") {\n // eslint-disable-next-line no-console\n console.error(\"[usePositioning]: Failed to calculate position\", err);\n }\n });\n };\n const updatePosition = debounce(() => forceUpdate());\n const dispose = () => {\n isDestroyed = true;\n if (targetWindow) {\n targetWindow.removeEventListener(\"scroll\", updatePosition);\n targetWindow.removeEventListener(\"resize\", updatePosition);\n }\n scrollParents.forEach(scrollParent => {\n scrollParent.removeEventListener(\"scroll\", updatePosition);\n });\n };\n if (targetWindow) {\n targetWindow.addEventListener(\"scroll\", updatePosition);\n targetWindow.addEventListener(\"resize\", updatePosition);\n }\n // Update the position on initialization\n updatePosition();\n return {\n updatePosition,\n dispose\n };\n}\n//# sourceMappingURL=createPositionManager.js.map"],"names":["createPositionManager","options","container","target","arrow","strategy","middleware","placement","isDestroyed","updatePosition","undefined","dispose","isFirstUpdate","scrollParents","Set","targetWindow","ownerDocument","defaultView","Object","assign","style","position","left","top","margin","forceUpdate","add","getScrollParent","isHTMLElement","forEach","scrollParent","addEventListener","computePosition","then","x","y","middlewareData","computedPlacement","writeArrowUpdates","writeContainerUpdates","coordinates","lowPPI","devicePixelRatio","catch","err","process","env","NODE_ENV","console","error","debounce","removeEventListener"],"mappings":";;;;+BAOgBA;;aAAAA;;qBAPgB;uBACoD;gCACtD;AAKvB,SAASA,sBAAsBC,OAAO,EAAE;IAC7C,MAAM,EACJC,UAAS,EACTC,OAAM,EACNC,MAAK,EACLC,SAAQ,EACRC,WAAU,EACVC,UAAS,EACV,GAAGN;IACJ,IAAIO,cAAc,KAAK;IACvB,IAAI,CAACL,UAAU,CAACD,WAAW;QACzB,OAAO;YACLO,gBAAgB,IAAMC;YACtBC,SAAS,IAAMD;QACjB;IACF,CAAC;IACD,IAAIE,gBAAgB,IAAI;IACxB,MAAMC,gBAAgB,IAAIC;IAC1B,MAAMC,eAAeb,UAAUc,aAAa,CAACC,WAAW;IACxD,oFAAoF;IACpF,gGAAgG;IAChGC,OAAOC,MAAM,CAACjB,UAAUkB,KAAK,EAAE;QAC7BC,UAAU;QACVC,MAAM;QACNC,KAAK;QACLC,QAAQ;IACV;IACA,MAAMC,cAAc,IAAM;QACxB,8CAA8C;QAC9C,qCAAqC;QACrC,IAAIjB,aAAa;YACf;QACF,CAAC;QACD,IAAII,eAAe;YACjBC,cAAca,GAAG,CAACC,IAAAA,sBAAe,EAACzB;YAClC,IAAI0B,IAAAA,6BAAa,EAACzB,SAAS;gBACzBU,cAAca,GAAG,CAACC,IAAAA,sBAAe,EAACxB;YACpC,CAAC;YACDU,cAAcgB,OAAO,CAACC,CAAAA,eAAgB;gBACpCA,aAAaC,gBAAgB,CAAC,UAAUtB;YAC1C;YACAG,gBAAgB,KAAK;QACvB,CAAC;QACDM,OAAOC,MAAM,CAACjB,UAAUkB,KAAK,EAAE;YAC7BC,UAAUhB;QACZ;QACA2B,IAAAA,oBAAe,EAAC7B,QAAQD,WAAW;YACjCK;YACAD;YACAD;QACF,GAAG4B,IAAI,CAAC,CAAC,EACPC,EAAC,EACDC,EAAC,EACDC,eAAc,EACd7B,WAAW8B,kBAAiB,EAC7B,GAAK;YACJ,8CAA8C;YAC9C,mDAAmD;YACnD,IAAI7B,aAAa;gBACf;YACF,CAAC;YACD8B,IAAAA,wBAAiB,EAAC;gBAChBlC;gBACAgC;YACF;YACAG,IAAAA,4BAAqB,EAAC;gBACpBrC;gBACAkC;gBACA7B,WAAW8B;gBACXG,aAAa;oBACXN;oBACAC;gBACF;gBACAM,QAAQ,AAAC1B,CAAAA,cAAc2B,oBAAoB,CAAA,KAAM;gBACjDrC;YACF;QACF,GAAGsC,KAAK,CAACC,CAAAA,MAAO;YACd,yDAAyD;YACzD,sBAAsB;YACtB,uEAAuE;YACvE,wFAAwF;YACxF,4GAA4G;YAC5G,0GAA0G;YAC1G,sCAAsC;YACtC,IAAIC,QAAQC,GAAG,CAACC,QAAQ,KAAK,eAAe;gBAC1C,sCAAsC;gBACtCC,QAAQC,KAAK,CAAC,kDAAkDL;YAClE,CAAC;QACH;IACF;IACA,MAAMnC,iBAAiByC,IAAAA,eAAQ,EAAC,IAAMzB;IACtC,MAAMd,UAAU,IAAM;QACpBH,cAAc,IAAI;QAClB,IAAIO,cAAc;YAChBA,aAAaoC,mBAAmB,CAAC,UAAU1C;YAC3CM,aAAaoC,mBAAmB,CAAC,UAAU1C;QAC7C,CAAC;QACDI,cAAcgB,OAAO,CAACC,CAAAA,eAAgB;YACpCA,aAAaqB,mBAAmB,CAAC,UAAU1C;QAC7C;IACF;IACA,IAAIM,cAAc;QAChBA,aAAagB,gBAAgB,CAAC,UAAUtB;QACxCM,aAAagB,gBAAgB,CAAC,UAAUtB;IAC1C,CAAC;IACD,wCAAwC;IACxCA;IACA,OAAO;QACLA;QACAE;IACF;AACF,EACA,iDAAiD"}
|