@fluentui/react-positioning 0.0.0-nightly-20230223-0420.1 → 0.0.0-nightly-20230223-2115.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.
Files changed (114) hide show
  1. package/.swcrc +33 -0
  2. package/CHANGELOG.json +9 -9
  3. package/CHANGELOG.md +7 -7
  4. package/lib/constants.js.map +1 -1
  5. package/lib/createArrowStyles.js.map +1 -1
  6. package/lib/createPositionManager.js +7 -6
  7. package/lib/createPositionManager.js.map +1 -1
  8. package/lib/createVirtualElementFromClick.js +1 -2
  9. package/lib/createVirtualElementFromClick.js.map +1 -1
  10. package/lib/index.js.map +1 -1
  11. package/lib/middleware/coverTarget.js.map +1 -1
  12. package/lib/middleware/flip.js.map +1 -1
  13. package/lib/middleware/index.js.map +1 -1
  14. package/lib/middleware/intersecting.js.map +1 -1
  15. package/lib/middleware/maxSize.js +7 -6
  16. package/lib/middleware/maxSize.js.map +1 -1
  17. package/lib/middleware/offset.js.map +1 -1
  18. package/lib/middleware/shift.js.map +1 -1
  19. package/lib/types.js +1 -1
  20. package/lib/types.js.map +1 -1
  21. package/lib/usePositioning.js +21 -21
  22. package/lib/usePositioning.js.map +1 -1
  23. package/lib/usePositioningMouseTarget.js.map +1 -1
  24. package/lib/utils/debounce.js +1 -2
  25. package/lib/utils/debounce.js.map +1 -1
  26. package/lib/utils/fromFloatingUIPlacement.js.map +1 -1
  27. package/lib/utils/getBoundary.js.map +1 -1
  28. package/lib/utils/getFloatingUIOffset.js +8 -7
  29. package/lib/utils/getFloatingUIOffset.js.map +1 -1
  30. package/lib/utils/getReactFiberFromNode.js +1 -0
  31. package/lib/utils/getReactFiberFromNode.js.map +1 -1
  32. package/lib/utils/getScrollParent.js +5 -6
  33. package/lib/utils/getScrollParent.js.map +1 -1
  34. package/lib/utils/hasAutoFocusFilter.js +2 -2
  35. package/lib/utils/hasAutoFocusFilter.js.map +1 -1
  36. package/lib/utils/index.js.map +1 -1
  37. package/lib/utils/mergeArrowOffset.js +2 -4
  38. package/lib/utils/mergeArrowOffset.js.map +1 -1
  39. package/lib/utils/parseFloatingUIPlacement.js +1 -2
  40. package/lib/utils/parseFloatingUIPlacement.js.map +1 -1
  41. package/lib/utils/resolvePositioningShorthand.js.map +1 -1
  42. package/lib/utils/toFloatingUIPadding.js.map +1 -1
  43. package/lib/utils/toFloatingUIPlacement.js.map +1 -1
  44. package/lib/utils/toggleScrollListener.js.map +1 -1
  45. package/lib/utils/useCallbackRef.js.map +1 -1
  46. package/lib/utils/writeArrowUpdates.js +1 -2
  47. package/lib/utils/writeArrowUpdates.js.map +1 -1
  48. package/lib/utils/writeContainerupdates.js +4 -4
  49. package/lib/utils/writeContainerupdates.js.map +1 -1
  50. package/lib-commonjs/constants.js +18 -7
  51. package/lib-commonjs/constants.js.map +1 -1
  52. package/lib-commonjs/createArrowStyles.js +60 -88
  53. package/lib-commonjs/createArrowStyles.js.map +1 -1
  54. package/lib-commonjs/createPositionManager.js +103 -116
  55. package/lib-commonjs/createPositionManager.js.map +1 -1
  56. package/lib-commonjs/createVirtualElementFromClick.js +27 -26
  57. package/lib-commonjs/createVirtualElementFromClick.js.map +1 -1
  58. package/lib-commonjs/index.js +24 -51
  59. package/lib-commonjs/index.js.map +1 -1
  60. package/lib-commonjs/middleware/coverTarget.js +34 -37
  61. package/lib-commonjs/middleware/coverTarget.js.map +1 -1
  62. package/lib-commonjs/middleware/flip.js +20 -22
  63. package/lib-commonjs/middleware/flip.js.map +1 -1
  64. package/lib-commonjs/middleware/index.js +10 -9
  65. package/lib-commonjs/middleware/index.js.map +1 -1
  66. package/lib-commonjs/middleware/intersecting.js +24 -22
  67. package/lib-commonjs/middleware/intersecting.js.map +1 -1
  68. package/lib-commonjs/middleware/maxSize.js +35 -40
  69. package/lib-commonjs/middleware/maxSize.js.map +1 -1
  70. package/lib-commonjs/middleware/offset.js +11 -12
  71. package/lib-commonjs/middleware/offset.js.map +1 -1
  72. package/lib-commonjs/middleware/shift.js +29 -37
  73. package/lib-commonjs/middleware/shift.js.map +1 -1
  74. package/lib-commonjs/types.js +5 -2
  75. package/lib-commonjs/types.js.map +1 -1
  76. package/lib-commonjs/usePositioning.js +195 -161
  77. package/lib-commonjs/usePositioning.js.map +1 -1
  78. package/lib-commonjs/usePositioningMouseTarget.js +34 -37
  79. package/lib-commonjs/usePositioningMouseTarget.js.map +1 -1
  80. package/lib-commonjs/utils/debounce.js +22 -21
  81. package/lib-commonjs/utils/debounce.js.map +1 -1
  82. package/lib-commonjs/utils/fromFloatingUIPlacement.js +30 -35
  83. package/lib-commonjs/utils/fromFloatingUIPlacement.js.map +1 -1
  84. package/lib-commonjs/utils/getBoundary.js +21 -22
  85. package/lib-commonjs/utils/getBoundary.js.map +1 -1
  86. package/lib-commonjs/utils/getFloatingUIOffset.js +24 -35
  87. package/lib-commonjs/utils/getFloatingUIOffset.js.map +1 -1
  88. package/lib-commonjs/utils/getReactFiberFromNode.js +45 -41
  89. package/lib-commonjs/utils/getReactFiberFromNode.js.map +1 -1
  90. package/lib-commonjs/utils/getScrollParent.js +52 -56
  91. package/lib-commonjs/utils/getScrollParent.js.map +1 -1
  92. package/lib-commonjs/utils/hasAutoFocusFilter.js +18 -17
  93. package/lib-commonjs/utils/hasAutoFocusFilter.js.map +1 -1
  94. package/lib-commonjs/utils/index.js +19 -18
  95. package/lib-commonjs/utils/index.js.map +1 -1
  96. package/lib-commonjs/utils/mergeArrowOffset.js +32 -32
  97. package/lib-commonjs/utils/mergeArrowOffset.js.map +1 -1
  98. package/lib-commonjs/utils/parseFloatingUIPlacement.js +15 -14
  99. package/lib-commonjs/utils/parseFloatingUIPlacement.js.map +1 -1
  100. package/lib-commonjs/utils/resolvePositioningShorthand.js +63 -61
  101. package/lib-commonjs/utils/resolvePositioningShorthand.js.map +1 -1
  102. package/lib-commonjs/utils/toFloatingUIPadding.js +23 -25
  103. package/lib-commonjs/utils/toFloatingUIPadding.js.map +1 -1
  104. package/lib-commonjs/utils/toFloatingUIPlacement.js +31 -33
  105. package/lib-commonjs/utils/toFloatingUIPlacement.js.map +1 -1
  106. package/lib-commonjs/utils/toggleScrollListener.js +19 -23
  107. package/lib-commonjs/utils/toggleScrollListener.js.map +1 -1
  108. package/lib-commonjs/utils/useCallbackRef.js +39 -53
  109. package/lib-commonjs/utils/useCallbackRef.js.map +1 -1
  110. package/lib-commonjs/utils/writeArrowUpdates.js +19 -24
  111. package/lib-commonjs/utils/writeArrowUpdates.js.map +1 -1
  112. package/lib-commonjs/utils/writeContainerupdates.js +37 -45
  113. package/lib-commonjs/utils/writeContainerupdates.js.map +1 -1
  114. package/package.json +6 -6
@@ -1 +1 @@
1
- {"version":3,"mappings":";;;;;;AAAAA;AACAA;AACAA;AACAA;AACAA;AACAA;AACAA;AACAA;AACAA;AACAA;AACAA;AACAA;AACAA;AACAA;AACAA","names":["tslib_1"],"sourceRoot":"","sources":["../../../../../../../../packages/react-components/react-positioning/src/utils/index.ts"],"sourcesContent":["export * from './parseFloatingUIPlacement';\nexport * from './getBoundary';\nexport * from './getReactFiberFromNode';\nexport * from './getScrollParent';\nexport * from './mergeArrowOffset';\nexport * from './toFloatingUIPadding';\nexport * from './toFloatingUIPlacement';\nexport * from './fromFloatingUIPlacement';\nexport * from './resolvePositioningShorthand';\nexport * from './useCallbackRef';\nexport * from './debounce';\nexport * from './toggleScrollListener';\nexport * from './hasAutoFocusFilter';\nexport * from './writeArrowUpdates';\nexport * from './writeContainerupdates';\n"]}
1
+ {"version":3,"sources":["../../lib/utils/index.js"],"sourcesContent":["export * from './parseFloatingUIPlacement';\nexport * from './getBoundary';\nexport * from './getReactFiberFromNode';\nexport * from './getScrollParent';\nexport * from './mergeArrowOffset';\nexport * from './toFloatingUIPadding';\nexport * from './toFloatingUIPlacement';\nexport * from './fromFloatingUIPlacement';\nexport * from './resolvePositioningShorthand';\nexport * from './useCallbackRef';\nexport * from './debounce';\nexport * from './toggleScrollListener';\nexport * from './hasAutoFocusFilter';\nexport * from './writeArrowUpdates';\nexport * from './writeContainerupdates';\n//# sourceMappingURL=index.js.map"],"names":[],"mappings":";;;;;oBAAc;oBACA;oBACA;oBACA;oBACA;oBACA;oBACA;oBACA;oBACA;oBACA;oBACA;oBACA;oBACA;oBACA;oBACA;CACd,iCAAiC"}
@@ -1,9 +1,3 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.mergeArrowOffset = void 0;
7
1
  /**
8
2
  * Generally when adding an arrow to popper, it's necessary to offset the position of the popper by the
9
3
  * height of the arrow. A simple utility to merge a provided offset with an arrow height to return the final offset
@@ -12,35 +6,41 @@ exports.mergeArrowOffset = void 0;
12
6
  * @param userOffset - The offset provided by the user
13
7
  * @param arrowHeight - The height of the arrow in px
14
8
  * @returns User offset augmented with arrow height
15
- */
9
+ */ "use strict";
10
+ Object.defineProperty(exports, "__esModule", {
11
+ value: true
12
+ });
13
+ Object.defineProperty(exports, "mergeArrowOffset", {
14
+ enumerable: true,
15
+ get: ()=>mergeArrowOffset
16
+ });
16
17
  function mergeArrowOffset(userOffset, arrowHeight) {
17
- if (typeof userOffset === 'number') {
18
- return addArrowOffset(userOffset, arrowHeight);
19
- }
20
- if (typeof userOffset === 'object' && userOffset !== null) {
21
- return addArrowOffset(userOffset, arrowHeight);
22
- }
23
- if (typeof userOffset === 'function') {
24
- return offsetParams => {
25
- const offset = userOffset(offsetParams);
26
- return addArrowOffset(offset, arrowHeight);
18
+ if (typeof userOffset === 'number') {
19
+ return addArrowOffset(userOffset, arrowHeight);
20
+ }
21
+ if (typeof userOffset === 'object' && userOffset !== null) {
22
+ return addArrowOffset(userOffset, arrowHeight);
23
+ }
24
+ if (typeof userOffset === 'function') {
25
+ return (offsetParams)=>{
26
+ const offset = userOffset(offsetParams);
27
+ return addArrowOffset(offset, arrowHeight);
28
+ };
29
+ }
30
+ return {
31
+ mainAxis: arrowHeight
27
32
  };
28
- }
29
- return {
30
- mainAxis: arrowHeight
31
- };
32
33
  }
33
- exports.mergeArrowOffset = mergeArrowOffset;
34
- const addArrowOffset = (offset, arrowHeight) => {
35
- var _a;
36
- if (typeof offset === 'number') {
34
+ const addArrowOffset = (offset, arrowHeight)=>{
35
+ if (typeof offset === 'number') {
36
+ return {
37
+ mainAxis: offset + arrowHeight
38
+ };
39
+ }
37
40
  return {
38
- mainAxis: offset + arrowHeight
41
+ ...offset,
42
+ mainAxis: (offset.mainAxis ?? 0) + arrowHeight
39
43
  };
40
- }
41
- return {
42
- ...offset,
43
- mainAxis: ((_a = offset.mainAxis) !== null && _a !== void 0 ? _a : 0) + arrowHeight
44
- };
45
- };
44
+ }; //# sourceMappingURL=mergeArrowOffset.js.map
45
+
46
46
  //# sourceMappingURL=mergeArrowOffset.js.map
@@ -1 +1 @@
1
- {"version":3,"mappings":";;;;;;AAEA;;;;;;;;;AASA,SAAgBA,gBAAgB,CAACC,UAAqC,EAAEC,WAAmB;EACzF,IAAI,OAAOD,UAAU,KAAK,QAAQ,EAAE;IAClC,OAAOE,cAAc,CAACF,UAAU,EAAEC,WAAW,CAAC;;EAGhD,IAAI,OAAOD,UAAU,KAAK,QAAQ,IAAIA,UAAU,KAAK,IAAI,EAAE;IACzD,OAAOE,cAAc,CAACF,UAAU,EAAEC,WAAW,CAAC;;EAGhD,IAAI,OAAOD,UAAU,KAAK,UAAU,EAAE;IACpC,OAAOG,YAAY,IAAG;MACpB,MAAMC,MAAM,GAAGJ,UAAU,CAACG,YAAY,CAAC;MACvC,OAAOD,cAAc,CAACE,MAAM,EAAEH,WAAW,CAAC;IAC5C,CAAC;;EAGH,OAAO;IAAEI,QAAQ,EAAEJ;EAAW,CAAE;AAClC;AAjBAK;AAmBA,MAAMJ,cAAc,GAAG,CAACE,MAA6B,EAAEH,WAAmB,KAAkB;;EAC1F,IAAI,OAAOG,MAAM,KAAK,QAAQ,EAAE;IAC9B,OAAO;MAAEC,QAAQ,EAAED,MAAM,GAAGH;IAAW,CAAE;;EAG3C,OAAO;IAAE,GAAGG,MAAM;IAAEC,QAAQ,EAAE,CAAC,YAAM,CAACA,QAAQ,mCAAI,CAAC,IAAIJ;EAAW,CAAE;AACtE,CAAC","names":["mergeArrowOffset","userOffset","arrowHeight","addArrowOffset","offsetParams","offset","mainAxis","exports"],"sourceRoot":"","sources":["../../../../../../../../packages/react-components/react-positioning/src/utils/mergeArrowOffset.ts"],"sourcesContent":["import type { Offset, OffsetObject } from '../types';\n\n/**\n * Generally when adding an arrow to popper, it's necessary to offset the position of the popper by the\n * height of the arrow. A simple utility to merge a provided offset with an arrow height to return the final offset\n *\n * @internal\n * @param userOffset - The offset provided by the user\n * @param arrowHeight - The height of the arrow in px\n * @returns User offset augmented with arrow height\n */\nexport function mergeArrowOffset(userOffset: Offset | undefined | null, arrowHeight: number): Offset {\n if (typeof userOffset === 'number') {\n return addArrowOffset(userOffset, arrowHeight);\n }\n\n if (typeof userOffset === 'object' && userOffset !== null) {\n return addArrowOffset(userOffset, arrowHeight);\n }\n\n if (typeof userOffset === 'function') {\n return offsetParams => {\n const offset = userOffset(offsetParams);\n return addArrowOffset(offset, arrowHeight);\n };\n }\n\n return { mainAxis: arrowHeight };\n}\n\nconst addArrowOffset = (offset: OffsetObject | number, arrowHeight: number): OffsetObject => {\n if (typeof offset === 'number') {\n return { mainAxis: offset + arrowHeight };\n }\n\n return { ...offset, mainAxis: (offset.mainAxis ?? 0) + arrowHeight };\n};\n"]}
1
+ {"version":3,"sources":["../../lib/utils/mergeArrowOffset.js"],"sourcesContent":["/**\n * Generally when adding an arrow to popper, it's necessary to offset the position of the popper by the\n * height of the arrow. A simple utility to merge a provided offset with an arrow height to return the final offset\n *\n * @internal\n * @param userOffset - The offset provided by the user\n * @param arrowHeight - The height of the arrow in px\n * @returns User offset augmented with arrow height\n */export function mergeArrowOffset(userOffset, arrowHeight) {\n if (typeof userOffset === 'number') {\n return addArrowOffset(userOffset, arrowHeight);\n }\n if (typeof userOffset === 'object' && userOffset !== null) {\n return addArrowOffset(userOffset, arrowHeight);\n }\n if (typeof userOffset === 'function') {\n return offsetParams => {\n const offset = userOffset(offsetParams);\n return addArrowOffset(offset, arrowHeight);\n };\n }\n return {\n mainAxis: arrowHeight\n };\n}\nconst addArrowOffset = (offset, arrowHeight) => {\n if (typeof offset === 'number') {\n return {\n mainAxis: offset + arrowHeight\n };\n }\n return {\n ...offset,\n mainAxis: (offset.mainAxis ?? 0) + arrowHeight\n };\n};\n//# sourceMappingURL=mergeArrowOffset.js.map"],"names":["mergeArrowOffset","userOffset","arrowHeight","addArrowOffset","offsetParams","offset","mainAxis"],"mappings":"AAAA;;;;;;;;CAQC;;;;+BAAkBA;;aAAAA;;AAAT,SAASA,iBAAiBC,UAAU,EAAEC,WAAW,EAAE;IAC3D,IAAI,OAAOD,eAAe,UAAU;QAClC,OAAOE,eAAeF,YAAYC;IACpC,CAAC;IACD,IAAI,OAAOD,eAAe,YAAYA,eAAe,IAAI,EAAE;QACzD,OAAOE,eAAeF,YAAYC;IACpC,CAAC;IACD,IAAI,OAAOD,eAAe,YAAY;QACpC,OAAOG,CAAAA,eAAgB;YACrB,MAAMC,SAASJ,WAAWG;YAC1B,OAAOD,eAAeE,QAAQH;QAChC;IACF,CAAC;IACD,OAAO;QACLI,UAAUJ;IACZ;AACF;AACA,MAAMC,iBAAiB,CAACE,QAAQH,cAAgB;IAC9C,IAAI,OAAOG,WAAW,UAAU;QAC9B,OAAO;YACLC,UAAUD,SAASH;QACrB;IACF,CAAC;IACD,OAAO;QACL,GAAGG,MAAM;QACTC,UAAU,AAACD,CAAAA,OAAOC,QAAQ,IAAI,CAAA,IAAKJ;IACrC;AACF,GACA,4CAA4C"}
@@ -1,21 +1,22 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.parseFloatingUIPlacement = void 0;
7
1
  /**
8
2
  * Parses Floating UI placement and returns the different components
9
3
  * @param placement - the floating ui placement (i.e. bottom-start)
10
4
  *
11
5
  * @returns side and alignment components of the placement
12
- */
6
+ */ "use strict";
7
+ Object.defineProperty(exports, "__esModule", {
8
+ value: true
9
+ });
10
+ Object.defineProperty(exports, "parseFloatingUIPlacement", {
11
+ enumerable: true,
12
+ get: ()=>parseFloatingUIPlacement
13
+ });
13
14
  function parseFloatingUIPlacement(placement) {
14
- const tokens = placement.split('-');
15
- return {
16
- side: tokens[0],
17
- alignment: tokens[1]
18
- };
19
- }
20
- exports.parseFloatingUIPlacement = parseFloatingUIPlacement;
15
+ const tokens = placement.split('-');
16
+ return {
17
+ side: tokens[0],
18
+ alignment: tokens[1]
19
+ };
20
+ } //# sourceMappingURL=parseFloatingUIPlacement.js.map
21
+
21
22
  //# sourceMappingURL=parseFloatingUIPlacement.js.map
@@ -1 +1 @@
1
- {"version":3,"mappings":";;;;;;AAEA;;;;;;AAMA,SAAgBA,wBAAwB,CAACC,SAAoB;EAC3D,MAAMC,MAAM,GAAGD,SAAS,CAACE,KAAK,CAAC,GAAG,CAAC;EACnC,OAAO;IACLC,IAAI,EAAEF,MAAM,CAAC,CAAC,CAAS;IACvBG,SAAS,EAAEH,MAAM,CAAC,CAAC;GACpB;AACH;AANAI","names":["parseFloatingUIPlacement","placement","tokens","split","side","alignment","exports"],"sourceRoot":"","sources":["../../../../../../../../packages/react-components/react-positioning/src/utils/parseFloatingUIPlacement.ts"],"sourcesContent":["import type { Side, Placement, Alignment } from '@floating-ui/dom';\n\n/**\n * Parses Floating UI placement and returns the different components\n * @param placement - the floating ui placement (i.e. bottom-start)\n *\n * @returns side and alignment components of the placement\n */\nexport function parseFloatingUIPlacement(placement: Placement): { side: Side; alignment: Alignment } {\n const tokens = placement.split('-');\n return {\n side: tokens[0] as Side,\n alignment: tokens[1] as Alignment,\n };\n}\n"]}
1
+ {"version":3,"sources":["../../lib/utils/parseFloatingUIPlacement.js"],"sourcesContent":["/**\n * Parses Floating UI placement and returns the different components\n * @param placement - the floating ui placement (i.e. bottom-start)\n *\n * @returns side and alignment components of the placement\n */export function parseFloatingUIPlacement(placement) {\n const tokens = placement.split('-');\n return {\n side: tokens[0],\n alignment: tokens[1]\n };\n}\n//# sourceMappingURL=parseFloatingUIPlacement.js.map"],"names":["parseFloatingUIPlacement","placement","tokens","split","side","alignment"],"mappings":"AAAA;;;;;CAKC;;;;+BAAkBA;;aAAAA;;AAAT,SAASA,yBAAyBC,SAAS,EAAE;IACrD,MAAMC,SAASD,UAAUE,KAAK,CAAC;IAC/B,OAAO;QACLC,MAAMF,MAAM,CAAC,EAAE;QACfG,WAAWH,MAAM,CAAC,EAAE;IACtB;AACF,EACA,oDAAoD"}
@@ -1,68 +1,70 @@
1
+ // Look up table for shorthand to avoid parsing strings
1
2
  "use strict";
2
-
3
3
  Object.defineProperty(exports, "__esModule", {
4
- value: true
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "resolvePositioningShorthand", {
7
+ enumerable: true,
8
+ get: ()=>resolvePositioningShorthand
5
9
  });
6
- exports.resolvePositioningShorthand = void 0;
7
- // Look up table for shorthand to avoid parsing strings
8
10
  const shorthandLookup = {
9
- above: {
10
- position: 'above',
11
- align: 'center'
12
- },
13
- 'above-start': {
14
- position: 'above',
15
- align: 'start'
16
- },
17
- 'above-end': {
18
- position: 'above',
19
- align: 'end'
20
- },
21
- below: {
22
- position: 'below',
23
- align: 'center'
24
- },
25
- 'below-start': {
26
- position: 'below',
27
- align: 'start'
28
- },
29
- 'below-end': {
30
- position: 'below',
31
- align: 'end'
32
- },
33
- before: {
34
- position: 'before',
35
- align: 'center'
36
- },
37
- 'before-top': {
38
- position: 'before',
39
- align: 'top'
40
- },
41
- 'before-bottom': {
42
- position: 'before',
43
- align: 'bottom'
44
- },
45
- after: {
46
- position: 'after',
47
- align: 'center'
48
- },
49
- 'after-top': {
50
- position: 'after',
51
- align: 'top'
52
- },
53
- 'after-bottom': {
54
- position: 'after',
55
- align: 'bottom'
56
- }
11
+ above: {
12
+ position: 'above',
13
+ align: 'center'
14
+ },
15
+ 'above-start': {
16
+ position: 'above',
17
+ align: 'start'
18
+ },
19
+ 'above-end': {
20
+ position: 'above',
21
+ align: 'end'
22
+ },
23
+ below: {
24
+ position: 'below',
25
+ align: 'center'
26
+ },
27
+ 'below-start': {
28
+ position: 'below',
29
+ align: 'start'
30
+ },
31
+ 'below-end': {
32
+ position: 'below',
33
+ align: 'end'
34
+ },
35
+ before: {
36
+ position: 'before',
37
+ align: 'center'
38
+ },
39
+ 'before-top': {
40
+ position: 'before',
41
+ align: 'top'
42
+ },
43
+ 'before-bottom': {
44
+ position: 'before',
45
+ align: 'bottom'
46
+ },
47
+ after: {
48
+ position: 'after',
49
+ align: 'center'
50
+ },
51
+ 'after-top': {
52
+ position: 'after',
53
+ align: 'top'
54
+ },
55
+ 'after-bottom': {
56
+ position: 'after',
57
+ align: 'bottom'
58
+ }
57
59
  };
58
60
  function resolvePositioningShorthand(shorthand) {
59
- if (shorthand === undefined || shorthand === null) {
60
- return {};
61
- }
62
- if (typeof shorthand === 'string') {
63
- return shorthandLookup[shorthand];
64
- }
65
- return shorthand;
66
- }
67
- exports.resolvePositioningShorthand = resolvePositioningShorthand;
61
+ if (shorthand === undefined || shorthand === null) {
62
+ return {};
63
+ }
64
+ if (typeof shorthand === 'string') {
65
+ return shorthandLookup[shorthand];
66
+ }
67
+ return shorthand;
68
+ } //# sourceMappingURL=resolvePositioningShorthand.js.map
69
+
68
70
  //# sourceMappingURL=resolvePositioningShorthand.js.map
@@ -1 +1 @@
1
- {"version":3,"mappings":";;;;;;AAEA;AACA,MAAMA,eAAe,GAAoF;EACvGC,KAAK,EAAE;IAAEC,QAAQ,EAAE,OAAO;IAAEC,KAAK,EAAE;EAAQ,CAAE;EAC7C,aAAa,EAAE;IAAED,QAAQ,EAAE,OAAO;IAAEC,KAAK,EAAE;EAAO,CAAE;EACpD,WAAW,EAAE;IAAED,QAAQ,EAAE,OAAO;IAAEC,KAAK,EAAE;EAAK,CAAE;EAChDC,KAAK,EAAE;IAAEF,QAAQ,EAAE,OAAO;IAAEC,KAAK,EAAE;EAAQ,CAAE;EAC7C,aAAa,EAAE;IAAED,QAAQ,EAAE,OAAO;IAAEC,KAAK,EAAE;EAAO,CAAE;EACpD,WAAW,EAAE;IAAED,QAAQ,EAAE,OAAO;IAAEC,KAAK,EAAE;EAAK,CAAE;EAChDE,MAAM,EAAE;IAAEH,QAAQ,EAAE,QAAQ;IAAEC,KAAK,EAAE;EAAQ,CAAE;EAC/C,YAAY,EAAE;IAAED,QAAQ,EAAE,QAAQ;IAAEC,KAAK,EAAE;EAAK,CAAE;EAClD,eAAe,EAAE;IAAED,QAAQ,EAAE,QAAQ;IAAEC,KAAK,EAAE;EAAQ,CAAE;EACxDG,KAAK,EAAE;IAAEJ,QAAQ,EAAE,OAAO;IAAEC,KAAK,EAAE;EAAQ,CAAE;EAC7C,WAAW,EAAE;IAAED,QAAQ,EAAE,OAAO;IAAEC,KAAK,EAAE;EAAK,CAAE;EAChD,cAAc,EAAE;IAAED,QAAQ,EAAE,OAAO;IAAEC,KAAK,EAAE;EAAQ;CACrD;AAED,SAAgBI,2BAA2B,CACzCC,SAAkD;EAElD,IAAIA,SAAS,KAAKC,SAAS,IAAID,SAAS,KAAK,IAAI,EAAE;IACjD,OAAO,EAAE;;EAGX,IAAI,OAAOA,SAAS,KAAK,QAAQ,EAAE;IACjC,OAAOR,eAAe,CAACQ,SAAS,CAAC;;EAGnC,OAAOA,SAAuC;AAChD;AAZAE","names":["shorthandLookup","above","position","align","below","before","after","resolvePositioningShorthand","shorthand","undefined","exports"],"sourceRoot":"","sources":["../../../../../../../../packages/react-components/react-positioning/src/utils/resolvePositioningShorthand.ts"],"sourcesContent":["import type { PositioningShorthand, PositioningShorthandValue, PositioningProps } from '../types';\n\n// Look up table for shorthand to avoid parsing strings\nconst shorthandLookup: Record<PositioningShorthandValue, Pick<PositioningProps, 'position' | 'align'>> = {\n above: { position: 'above', align: 'center' },\n 'above-start': { position: 'above', align: 'start' },\n 'above-end': { position: 'above', align: 'end' },\n below: { position: 'below', align: 'center' },\n 'below-start': { position: 'below', align: 'start' },\n 'below-end': { position: 'below', align: 'end' },\n before: { position: 'before', align: 'center' },\n 'before-top': { position: 'before', align: 'top' },\n 'before-bottom': { position: 'before', align: 'bottom' },\n after: { position: 'after', align: 'center' },\n 'after-top': { position: 'after', align: 'top' },\n 'after-bottom': { position: 'after', align: 'bottom' },\n};\n\nexport function resolvePositioningShorthand(\n shorthand: PositioningShorthand | undefined | null,\n): Readonly<PositioningProps> {\n if (shorthand === undefined || shorthand === null) {\n return {};\n }\n\n if (typeof shorthand === 'string') {\n return shorthandLookup[shorthand];\n }\n\n return shorthand as Readonly<PositioningProps>;\n}\n"]}
1
+ {"version":3,"sources":["../../lib/utils/resolvePositioningShorthand.js"],"sourcesContent":["// Look up table for shorthand to avoid parsing strings\nconst shorthandLookup = {\n above: {\n position: 'above',\n align: 'center'\n },\n 'above-start': {\n position: 'above',\n align: 'start'\n },\n 'above-end': {\n position: 'above',\n align: 'end'\n },\n below: {\n position: 'below',\n align: 'center'\n },\n 'below-start': {\n position: 'below',\n align: 'start'\n },\n 'below-end': {\n position: 'below',\n align: 'end'\n },\n before: {\n position: 'before',\n align: 'center'\n },\n 'before-top': {\n position: 'before',\n align: 'top'\n },\n 'before-bottom': {\n position: 'before',\n align: 'bottom'\n },\n after: {\n position: 'after',\n align: 'center'\n },\n 'after-top': {\n position: 'after',\n align: 'top'\n },\n 'after-bottom': {\n position: 'after',\n align: 'bottom'\n }\n};\nexport function resolvePositioningShorthand(shorthand) {\n if (shorthand === undefined || shorthand === null) {\n return {};\n }\n if (typeof shorthand === 'string') {\n return shorthandLookup[shorthand];\n }\n return shorthand;\n}\n//# sourceMappingURL=resolvePositioningShorthand.js.map"],"names":["resolvePositioningShorthand","shorthandLookup","above","position","align","below","before","after","shorthand","undefined"],"mappings":"AAAA,uDAAuD;;;;;+BAmDvCA;;aAAAA;;AAlDhB,MAAMC,kBAAkB;IACtBC,OAAO;QACLC,UAAU;QACVC,OAAO;IACT;IACA,eAAe;QACbD,UAAU;QACVC,OAAO;IACT;IACA,aAAa;QACXD,UAAU;QACVC,OAAO;IACT;IACAC,OAAO;QACLF,UAAU;QACVC,OAAO;IACT;IACA,eAAe;QACbD,UAAU;QACVC,OAAO;IACT;IACA,aAAa;QACXD,UAAU;QACVC,OAAO;IACT;IACAE,QAAQ;QACNH,UAAU;QACVC,OAAO;IACT;IACA,cAAc;QACZD,UAAU;QACVC,OAAO;IACT;IACA,iBAAiB;QACfD,UAAU;QACVC,OAAO;IACT;IACAG,OAAO;QACLJ,UAAU;QACVC,OAAO;IACT;IACA,aAAa;QACXD,UAAU;QACVC,OAAO;IACT;IACA,gBAAgB;QACdD,UAAU;QACVC,OAAO;IACT;AACF;AACO,SAASJ,4BAA4BQ,SAAS,EAAE;IACrD,IAAIA,cAAcC,aAAaD,cAAc,IAAI,EAAE;QACjD,OAAO,CAAC;IACV,CAAC;IACD,IAAI,OAAOA,cAAc,UAAU;QACjC,OAAOP,eAAe,CAACO,UAAU;IACnC,CAAC;IACD,OAAOA;AACT,EACA,uDAAuD"}
@@ -1,30 +1,28 @@
1
1
  "use strict";
2
-
3
2
  Object.defineProperty(exports, "__esModule", {
4
- value: true
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "toFloatingUIPadding", {
6
+ enumerable: true,
7
+ get: ()=>toFloatingUIPadding
5
8
  });
6
- exports.toFloatingUIPadding = void 0;
7
9
  function toFloatingUIPadding(padding, isRtl) {
8
- if (typeof padding === 'number') {
9
- return padding;
10
- }
11
- const {
12
- start,
13
- end,
14
- ...verticalPadding
15
- } = padding;
16
- const paddingObject = verticalPadding;
17
- const left = isRtl ? 'end' : 'start';
18
- const right = isRtl ? 'start' : 'end';
19
- // assign properties explicitly since undefined values are actually handled by floating UI
20
- // TODO create floating UI issue
21
- if (padding[left]) {
22
- paddingObject.left = padding[left];
23
- }
24
- if (padding[right]) {
25
- paddingObject.right = padding[right];
26
- }
27
- return paddingObject;
28
- }
29
- exports.toFloatingUIPadding = toFloatingUIPadding;
10
+ if (typeof padding === 'number') {
11
+ return padding;
12
+ }
13
+ const { start , end , ...verticalPadding } = padding;
14
+ const paddingObject = verticalPadding;
15
+ const left = isRtl ? 'end' : 'start';
16
+ const right = isRtl ? 'start' : 'end';
17
+ // assign properties explicitly since undefined values are actually handled by floating UI
18
+ // TODO create floating UI issue
19
+ if (padding[left]) {
20
+ paddingObject.left = padding[left];
21
+ }
22
+ if (padding[right]) {
23
+ paddingObject.right = padding[right];
24
+ }
25
+ return paddingObject;
26
+ } //# sourceMappingURL=toFloatingUIPadding.js.map
27
+
30
28
  //# sourceMappingURL=toFloatingUIPadding.js.map
@@ -1 +1 @@
1
- {"version":3,"mappings":";;;;;;AAGA,SAAgBA,mBAAmB,CACjCC,OAAmE,EACnEC,KAAc;EAEd,IAAI,OAAOD,OAAO,KAAK,QAAQ,EAAE;IAC/B,OAAOA,OAAO;;EAGhB,MAAM;IAAEE,KAAK;IAAEC,GAAG;IAAE,GAAGC;EAAe,CAAE,GAAGJ,OAAO;EAElD,MAAMK,aAAa,GAAwBD,eAAe;EAE1D,MAAME,IAAI,GAAGL,KAAK,GAAG,KAAK,GAAG,OAAO;EACpC,MAAMM,KAAK,GAAGN,KAAK,GAAG,OAAO,GAAG,KAAK;EAErC;EACA;EACA,IAAID,OAAO,CAACM,IAAI,CAAC,EAAE;IACjBD,aAAa,CAACC,IAAI,GAAGN,OAAO,CAACM,IAAI,CAAC;;EAGpC,IAAIN,OAAO,CAACO,KAAK,CAAC,EAAE;IAClBF,aAAa,CAACE,KAAK,GAAGP,OAAO,CAACO,KAAK,CAAC;;EAGtC,OAAOF,aAAa;AACtB;AA1BAG","names":["toFloatingUIPadding","padding","isRtl","start","end","verticalPadding","paddingObject","left","right","exports"],"sourceRoot":"","sources":["../../../../../../../../packages/react-components/react-positioning/src/utils/toFloatingUIPadding.ts"],"sourcesContent":["import type { SideObject } from '@floating-ui/dom';\nimport { PositioningOptions } from '../types';\n\nexport function toFloatingUIPadding(\n padding: NonNullable<PositioningOptions['overflowBoundaryPadding']>,\n isRtl: boolean,\n): number | Partial<SideObject> {\n if (typeof padding === 'number') {\n return padding;\n }\n\n const { start, end, ...verticalPadding } = padding;\n\n const paddingObject: Partial<SideObject> = verticalPadding;\n\n const left = isRtl ? 'end' : 'start';\n const right = isRtl ? 'start' : 'end';\n\n // assign properties explicitly since undefined values are actually handled by floating UI\n // TODO create floating UI issue\n if (padding[left]) {\n paddingObject.left = padding[left];\n }\n\n if (padding[right]) {\n paddingObject.right = padding[right];\n }\n\n return paddingObject;\n}\n"]}
1
+ {"version":3,"sources":["../../lib/utils/toFloatingUIPadding.js"],"sourcesContent":["export function toFloatingUIPadding(padding, isRtl) {\n if (typeof padding === 'number') {\n return padding;\n }\n const {\n start,\n end,\n ...verticalPadding\n } = padding;\n const paddingObject = verticalPadding;\n const left = isRtl ? 'end' : 'start';\n const right = isRtl ? 'start' : 'end';\n // assign properties explicitly since undefined values are actually handled by floating UI\n // TODO create floating UI issue\n if (padding[left]) {\n paddingObject.left = padding[left];\n }\n if (padding[right]) {\n paddingObject.right = padding[right];\n }\n return paddingObject;\n}\n//# sourceMappingURL=toFloatingUIPadding.js.map"],"names":["toFloatingUIPadding","padding","isRtl","start","end","verticalPadding","paddingObject","left","right"],"mappings":";;;;+BAAgBA;;aAAAA;;AAAT,SAASA,oBAAoBC,OAAO,EAAEC,KAAK,EAAE;IAClD,IAAI,OAAOD,YAAY,UAAU;QAC/B,OAAOA;IACT,CAAC;IACD,MAAM,EACJE,MAAK,EACLC,IAAG,EACH,GAAGC,iBACJ,GAAGJ;IACJ,MAAMK,gBAAgBD;IACtB,MAAME,OAAOL,QAAQ,QAAQ,OAAO;IACpC,MAAMM,QAAQN,QAAQ,UAAU,KAAK;IACrC,0FAA0F;IAC1F,gCAAgC;IAChC,IAAID,OAAO,CAACM,KAAK,EAAE;QACjBD,cAAcC,IAAI,GAAGN,OAAO,CAACM,KAAK;IACpC,CAAC;IACD,IAAIN,OAAO,CAACO,MAAM,EAAE;QAClBF,cAAcE,KAAK,GAAGP,OAAO,CAACO,MAAM;IACtC,CAAC;IACD,OAAOF;AACT,EACA,+CAA+C"}
@@ -1,41 +1,39 @@
1
1
  "use strict";
2
-
3
2
  Object.defineProperty(exports, "__esModule", {
4
- value: true
3
+ value: true
5
4
  });
6
- exports.toFloatingUIPlacement = void 0;
7
- const getPositionMap = rtl => ({
8
- above: 'top',
9
- below: 'bottom',
10
- before: rtl ? 'right' : 'left',
11
- after: rtl ? 'left' : 'right'
5
+ Object.defineProperty(exports, "toFloatingUIPlacement", {
6
+ enumerable: true,
7
+ get: ()=>toFloatingUIPlacement
12
8
  });
9
+ const getPositionMap = (rtl)=>({
10
+ above: 'top',
11
+ below: 'bottom',
12
+ before: rtl ? 'right' : 'left',
13
+ after: rtl ? 'left' : 'right'
14
+ });
13
15
  // Floating UI automatically flips alignment
14
16
  // https://github.com/floating-ui/floating-ui/issues/1563
15
- const getAlignmentMap = () => ({
16
- start: 'start',
17
- end: 'end',
18
- top: 'start',
19
- bottom: 'end',
20
- center: undefined
21
- });
22
- const shouldAlignToCenter = (p, a) => {
23
- const positionedVertically = p === 'above' || p === 'below';
24
- const alignedVertically = a === 'top' || a === 'bottom';
25
- return positionedVertically && alignedVertically || !positionedVertically && !alignedVertically;
17
+ const getAlignmentMap = ()=>({
18
+ start: 'start',
19
+ end: 'end',
20
+ top: 'start',
21
+ bottom: 'end',
22
+ center: undefined
23
+ });
24
+ const shouldAlignToCenter = (p, a)=>{
25
+ const positionedVertically = p === 'above' || p === 'below';
26
+ const alignedVertically = a === 'top' || a === 'bottom';
27
+ return positionedVertically && alignedVertically || !positionedVertically && !alignedVertically;
26
28
  };
27
- /**
28
- * Maps internal positioning values to Floating UI placement
29
- * @see positioningHelper.test.ts for expected placement values
30
- */
31
- const toFloatingUIPlacement = (align, position, rtl) => {
32
- const alignment = shouldAlignToCenter(position, align) ? 'center' : align;
33
- const computedPosition = position && getPositionMap(rtl)[position];
34
- const computedAlignment = alignment && getAlignmentMap()[alignment];
35
- if (computedPosition && computedAlignment) {
36
- return `${computedPosition}-${computedAlignment}`;
37
- }
38
- return computedPosition;
39
- };
40
- exports.toFloatingUIPlacement = toFloatingUIPlacement;
29
+ const toFloatingUIPlacement = (align, position, rtl)=>{
30
+ const alignment = shouldAlignToCenter(position, align) ? 'center' : align;
31
+ const computedPosition = position && getPositionMap(rtl)[position];
32
+ const computedAlignment = alignment && getAlignmentMap()[alignment];
33
+ if (computedPosition && computedAlignment) {
34
+ return `${computedPosition}-${computedAlignment}`;
35
+ }
36
+ return computedPosition;
37
+ }; //# sourceMappingURL=toFloatingUIPlacement.js.map
38
+
41
39
  //# sourceMappingURL=toFloatingUIPlacement.js.map
@@ -1 +1 @@
1
- {"version":3,"mappings":";;;;;;AAMA,MAAMA,cAAc,GAAIC,GAAa,KAA2C;EAC9EC,KAAK,EAAE,KAAK;EACZC,KAAK,EAAE,QAAQ;EACfC,MAAM,EAAEH,GAAG,GAAG,OAAO,GAAG,MAAM;EAC9BI,KAAK,EAAEJ,GAAG,GAAG,MAAM,GAAG;CACvB,CAAC;AAEF;AACA;AACA,MAAMK,eAAe,GAAG,OAAsD;EAC5EC,KAAK,EAAE,OAAO;EACdC,GAAG,EAAE,KAAK;EACVC,GAAG,EAAE,OAAO;EACZC,MAAM,EAAE,KAAK;EACbC,MAAM,EAAEC;CACT,CAAC;AAEF,MAAMC,mBAAmB,GAAG,CAACC,CAAY,EAAEC,CAAa,KAAa;EACnE,MAAMC,oBAAoB,GAAGF,CAAC,KAAK,OAAO,IAAIA,CAAC,KAAK,OAAO;EAC3D,MAAMG,iBAAiB,GAAGF,CAAC,KAAK,KAAK,IAAIA,CAAC,KAAK,QAAQ;EAEvD,OAAQC,oBAAoB,IAAIC,iBAAiB,IAAM,CAACD,oBAAoB,IAAI,CAACC,iBAAkB;AACrG,CAAC;AAED;;;;AAIO,MAAMC,qBAAqB,GAAG,CAACC,KAAiB,EAAEC,QAAmB,EAAEnB,GAAa,KAA2B;EACpH,MAAMoB,SAAS,GAAGR,mBAAmB,CAACO,QAAQ,EAAED,KAAK,CAAC,GAAG,QAAQ,GAAGA,KAAK;EAEzE,MAAMG,gBAAgB,GAAGF,QAAQ,IAAIpB,cAAc,CAACC,GAAG,CAAC,CAACmB,QAAQ,CAAC;EAClE,MAAMG,iBAAiB,GAAGF,SAAS,IAAIf,eAAe,EAAE,CAACe,SAAS,CAAC;EAEnE,IAAIC,gBAAgB,IAAIC,iBAAiB,EAAE;IACzC,OAAO,GAAGD,gBAAgB,IAAIC,iBAAiB,EAAe;;EAGhE,OAAOD,gBAAgB;AACzB,CAAC;AAXYE,6BAAqB","names":["getPositionMap","rtl","above","below","before","after","getAlignmentMap","start","end","top","bottom","center","undefined","shouldAlignToCenter","p","a","positionedVertically","alignedVertically","toFloatingUIPlacement","align","position","alignment","computedPosition","computedAlignment","exports"],"sourceRoot":"","sources":["../../../../../../../../packages/react-components/react-positioning/src/utils/toFloatingUIPlacement.ts"],"sourcesContent":["import type { Placement, Side, Alignment as FloatingUIAlignment } from '@floating-ui/dom';\nimport type { Alignment, Position } from '../types';\n\ntype PlacementPosition = Side;\ntype PlacementAlign = FloatingUIAlignment;\n\nconst getPositionMap = (rtl?: boolean): Record<Position, PlacementPosition> => ({\n above: 'top',\n below: 'bottom',\n before: rtl ? 'right' : 'left',\n after: rtl ? 'left' : 'right',\n});\n\n// Floating UI automatically flips alignment\n// https://github.com/floating-ui/floating-ui/issues/1563\nconst getAlignmentMap = (): Record<Alignment, PlacementAlign | undefined> => ({\n start: 'start',\n end: 'end',\n top: 'start',\n bottom: 'end',\n center: undefined,\n});\n\nconst shouldAlignToCenter = (p?: Position, a?: Alignment): boolean => {\n const positionedVertically = p === 'above' || p === 'below';\n const alignedVertically = a === 'top' || a === 'bottom';\n\n return (positionedVertically && alignedVertically) || (!positionedVertically && !alignedVertically);\n};\n\n/**\n * Maps internal positioning values to Floating UI placement\n * @see positioningHelper.test.ts for expected placement values\n */\nexport const toFloatingUIPlacement = (align?: Alignment, position?: Position, rtl?: boolean): Placement | undefined => {\n const alignment = shouldAlignToCenter(position, align) ? 'center' : align;\n\n const computedPosition = position && getPositionMap(rtl)[position];\n const computedAlignment = alignment && getAlignmentMap()[alignment];\n\n if (computedPosition && computedAlignment) {\n return `${computedPosition}-${computedAlignment}` as Placement;\n }\n\n return computedPosition;\n};\n"]}
1
+ {"version":3,"sources":["../../lib/utils/toFloatingUIPlacement.js"],"sourcesContent":["const getPositionMap = rtl => ({\n above: 'top',\n below: 'bottom',\n before: rtl ? 'right' : 'left',\n after: rtl ? 'left' : 'right'\n});\n// Floating UI automatically flips alignment\n// https://github.com/floating-ui/floating-ui/issues/1563\nconst getAlignmentMap = () => ({\n start: 'start',\n end: 'end',\n top: 'start',\n bottom: 'end',\n center: undefined\n});\nconst shouldAlignToCenter = (p, a) => {\n const positionedVertically = p === 'above' || p === 'below';\n const alignedVertically = a === 'top' || a === 'bottom';\n return positionedVertically && alignedVertically || !positionedVertically && !alignedVertically;\n};\n/**\n * Maps internal positioning values to Floating UI placement\n * @see positioningHelper.test.ts for expected placement values\n */\nexport const toFloatingUIPlacement = (align, position, rtl) => {\n const alignment = shouldAlignToCenter(position, align) ? 'center' : align;\n const computedPosition = position && getPositionMap(rtl)[position];\n const computedAlignment = alignment && getAlignmentMap()[alignment];\n if (computedPosition && computedAlignment) {\n return `${computedPosition}-${computedAlignment}`;\n }\n return computedPosition;\n};\n//# sourceMappingURL=toFloatingUIPlacement.js.map"],"names":["toFloatingUIPlacement","getPositionMap","rtl","above","below","before","after","getAlignmentMap","start","end","top","bottom","center","undefined","shouldAlignToCenter","p","a","positionedVertically","alignedVertically","align","position","alignment","computedPosition","computedAlignment"],"mappings":";;;;+BAwBaA;;aAAAA;;AAxBb,MAAMC,iBAAiBC,CAAAA,MAAQ,CAAA;QAC7BC,OAAO;QACPC,OAAO;QACPC,QAAQH,MAAM,UAAU,MAAM;QAC9BI,OAAOJ,MAAM,SAAS,OAAO;IAC/B,CAAA;AACA,4CAA4C;AAC5C,yDAAyD;AACzD,MAAMK,kBAAkB,IAAO,CAAA;QAC7BC,OAAO;QACPC,KAAK;QACLC,KAAK;QACLC,QAAQ;QACRC,QAAQC;IACV,CAAA;AACA,MAAMC,sBAAsB,CAACC,GAAGC,IAAM;IACpC,MAAMC,uBAAuBF,MAAM,WAAWA,MAAM;IACpD,MAAMG,oBAAoBF,MAAM,SAASA,MAAM;IAC/C,OAAOC,wBAAwBC,qBAAqB,CAACD,wBAAwB,CAACC;AAChF;AAKO,MAAMlB,wBAAwB,CAACmB,OAAOC,UAAUlB,MAAQ;IAC7D,MAAMmB,YAAYP,oBAAoBM,UAAUD,SAAS,WAAWA,KAAK;IACzE,MAAMG,mBAAmBF,YAAYnB,eAAeC,IAAI,CAACkB,SAAS;IAClE,MAAMG,oBAAoBF,aAAad,iBAAiB,CAACc,UAAU;IACnE,IAAIC,oBAAoBC,mBAAmB;QACzC,OAAO,CAAC,EAAED,iBAAiB,CAAC,EAAEC,kBAAkB,CAAC;IACnD,CAAC;IACD,OAAOD;AACT,GACA,iDAAiD"}
@@ -1,28 +1,24 @@
1
1
  "use strict";
2
-
3
2
  Object.defineProperty(exports, "__esModule", {
4
- value: true
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "toggleScrollListener", {
6
+ enumerable: true,
7
+ get: ()=>toggleScrollListener
5
8
  });
6
- exports.toggleScrollListener = void 0;
7
- const getScrollParent_1 = /*#__PURE__*/require("./getScrollParent");
8
- /**
9
- * Toggles event listeners for scroll parent.
10
- * Cleans up the event listeners for the previous element and adds them for the new scroll parent.
11
- * @param next Next element
12
- * @param prev Previous element
13
- */
9
+ const _getScrollParent = require("./getScrollParent");
14
10
  function toggleScrollListener(next, prev, handler) {
15
- if (next === prev) {
16
- return;
17
- }
18
- if (prev instanceof HTMLElement) {
19
- const prevScrollParent = getScrollParent_1.getScrollParent(prev);
20
- prevScrollParent.removeEventListener('scroll', handler);
21
- }
22
- if (next instanceof HTMLElement) {
23
- const scrollParent = getScrollParent_1.getScrollParent(next);
24
- scrollParent.addEventListener('scroll', handler);
25
- }
26
- }
27
- exports.toggleScrollListener = toggleScrollListener;
11
+ if (next === prev) {
12
+ return;
13
+ }
14
+ if (prev instanceof HTMLElement) {
15
+ const prevScrollParent = (0, _getScrollParent.getScrollParent)(prev);
16
+ prevScrollParent.removeEventListener('scroll', handler);
17
+ }
18
+ if (next instanceof HTMLElement) {
19
+ const scrollParent = (0, _getScrollParent.getScrollParent)(next);
20
+ scrollParent.addEventListener('scroll', handler);
21
+ }
22
+ } //# sourceMappingURL=toggleScrollListener.js.map
23
+
28
24
  //# sourceMappingURL=toggleScrollListener.js.map
@@ -1 +1 @@
1
- {"version":3,"mappings":";;;;;;AACA;AAEA;;;;;;AAMA,SAAgBA,oBAAoB,CAClCC,IAAoD,EACpDC,IAAoD,EACpDC,OAAsB;EAEtB,IAAIF,IAAI,KAAKC,IAAI,EAAE;IACjB;;EAGF,IAAIA,IAAI,YAAYE,WAAW,EAAE;IAC/B,MAAMC,gBAAgB,GAAGC,iCAAe,CAACJ,IAAI,CAAC;IAC9CG,gBAAgB,CAACE,mBAAmB,CAAC,QAAQ,EAAEJ,OAAO,CAAC;;EAEzD,IAAIF,IAAI,YAAYG,WAAW,EAAE;IAC/B,MAAMI,YAAY,GAAGF,iCAAe,CAACL,IAAI,CAAC;IAC1CO,YAAY,CAACC,gBAAgB,CAAC,QAAQ,EAAEN,OAAO,CAAC;;AAEpD;AAjBAO","names":["toggleScrollListener","next","prev","handler","HTMLElement","prevScrollParent","getScrollParent_1","removeEventListener","scrollParent","addEventListener","exports"],"sourceRoot":"","sources":["../../../../../../../../packages/react-components/react-positioning/src/utils/toggleScrollListener.ts"],"sourcesContent":["import type { PositioningVirtualElement } from '../types';\nimport { getScrollParent } from './getScrollParent';\n\n/**\n * Toggles event listeners for scroll parent.\n * Cleans up the event listeners for the previous element and adds them for the new scroll parent.\n * @param next Next element\n * @param prev Previous element\n */\nexport function toggleScrollListener(\n next: HTMLElement | PositioningVirtualElement | null,\n prev: HTMLElement | PositioningVirtualElement | null,\n handler: EventListener,\n) {\n if (next === prev) {\n return;\n }\n\n if (prev instanceof HTMLElement) {\n const prevScrollParent = getScrollParent(prev);\n prevScrollParent.removeEventListener('scroll', handler);\n }\n if (next instanceof HTMLElement) {\n const scrollParent = getScrollParent(next);\n scrollParent.addEventListener('scroll', handler);\n }\n}\n"]}
1
+ {"version":3,"sources":["../../lib/utils/toggleScrollListener.js"],"sourcesContent":["import { getScrollParent } from './getScrollParent';\n/**\n * Toggles event listeners for scroll parent.\n * Cleans up the event listeners for the previous element and adds them for the new scroll parent.\n * @param next Next element\n * @param prev Previous element\n */\nexport function toggleScrollListener(next, prev, handler) {\n if (next === prev) {\n return;\n }\n if (prev instanceof HTMLElement) {\n const prevScrollParent = getScrollParent(prev);\n prevScrollParent.removeEventListener('scroll', handler);\n }\n if (next instanceof HTMLElement) {\n const scrollParent = getScrollParent(next);\n scrollParent.addEventListener('scroll', handler);\n }\n}\n//# sourceMappingURL=toggleScrollListener.js.map"],"names":["toggleScrollListener","next","prev","handler","HTMLElement","prevScrollParent","getScrollParent","removeEventListener","scrollParent","addEventListener"],"mappings":";;;;+BAOgBA;;aAAAA;;iCAPgB;AAOzB,SAASA,qBAAqBC,IAAI,EAAEC,IAAI,EAAEC,OAAO,EAAE;IACxD,IAAIF,SAASC,MAAM;QACjB;IACF,CAAC;IACD,IAAIA,gBAAgBE,aAAa;QAC/B,MAAMC,mBAAmBC,IAAAA,gCAAe,EAACJ;QACzCG,iBAAiBE,mBAAmB,CAAC,UAAUJ;IACjD,CAAC;IACD,IAAIF,gBAAgBG,aAAa;QAC/B,MAAMI,eAAeF,IAAAA,gCAAe,EAACL;QACrCO,aAAaC,gBAAgB,CAAC,UAAUN;IAC1C,CAAC;AACH,EACA,gDAAgD"}
@@ -1,58 +1,44 @@
1
1
  "use strict";
2
-
3
2
  Object.defineProperty(exports, "__esModule", {
4
- value: true
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "useCallbackRef", {
6
+ enumerable: true,
7
+ get: ()=>useCallbackRef
5
8
  });
6
- exports.useCallbackRef = void 0;
7
- const React = /*#__PURE__*/require("react");
8
- const react_utilities_1 = /*#__PURE__*/require("@fluentui/react-utilities");
9
- /**
10
- * Creates a MutableRef with ref change callback. Is useful as React.useRef() doesn't notify you when its content
11
- * changes and mutating the .current property doesn't cause a re-render. An opt-out will be use a callback ref via
12
- * React.useState(), but it will cause re-renders always.
13
- *
14
- * https://reactjs.org/docs/hooks-reference.html#useref
15
- * https://github.com/theKashey/use-callback-ref#usecallbackref---to-replace-reactuseref
16
- *
17
- * @param initialValue - initial ref value
18
- * @param callback - a callback to run when value changes
19
- * @param skipInitialResolve - a flag to skip an initial ref report
20
- *
21
- * @example
22
- * const ref = useCallbackRef(0, (newValue, oldValue) => console.log(oldValue, '->', newValue);
23
- * ref.current = 1;
24
- * // prints 0 -> 1
25
- */
9
+ const _interopRequireWildcard = require("@swc/helpers/lib/_interop_require_wildcard.js").default;
10
+ const _react = /*#__PURE__*/ _interopRequireWildcard(require("react"));
11
+ const _reactUtilities = require("@fluentui/react-utilities");
26
12
  function useCallbackRef(initialValue, callback, skipInitialResolve) {
27
- const isFirst = React.useRef(true);
28
- const [ref] = React.useState(() => ({
29
- // value
30
- value: initialValue,
31
- // last callback
32
- callback,
33
- // "memoized" public interface
34
- facade: {
35
- get current() {
36
- return ref.value;
37
- },
38
- set current(value) {
39
- const last = ref.value;
40
- if (last !== value) {
41
- ref.value = value;
42
- if (skipInitialResolve && isFirst.current) {
43
- return;
44
- }
45
- ref.callback(value, last);
46
- }
47
- }
48
- }
49
- }));
50
- react_utilities_1.useIsomorphicLayoutEffect(() => {
51
- isFirst.current = false;
52
- }, []);
53
- // update callback
54
- ref.callback = callback;
55
- return ref.facade;
56
- }
57
- exports.useCallbackRef = useCallbackRef;
13
+ const isFirst = _react.useRef(true);
14
+ const [ref] = _react.useState(()=>({
15
+ // value
16
+ value: initialValue,
17
+ // last callback
18
+ callback,
19
+ // "memoized" public interface
20
+ facade: {
21
+ get current () {
22
+ return ref.value;
23
+ },
24
+ set current (value){
25
+ const last = ref.value;
26
+ if (last !== value) {
27
+ ref.value = value;
28
+ if (skipInitialResolve && isFirst.current) {
29
+ return;
30
+ }
31
+ ref.callback(value, last);
32
+ }
33
+ }
34
+ }
35
+ }));
36
+ (0, _reactUtilities.useIsomorphicLayoutEffect)(()=>{
37
+ isFirst.current = false;
38
+ }, []);
39
+ // update callback
40
+ ref.callback = callback;
41
+ return ref.facade;
42
+ } //# sourceMappingURL=useCallbackRef.js.map
43
+
58
44
  //# sourceMappingURL=useCallbackRef.js.map
@@ -1 +1 @@
1
- {"version":3,"mappings":";;;;;;AAAA;AACA;AAEA;;;;;;;;;;;;;;;;;AAiBA,SAAgBA,cAAc,CAC5BC,YAAsB,EACtBC,QAA2D,EAC3DC,kBAA4B;EAE5B,MAAMC,OAAO,GAAGC,KAAK,CAACC,MAAM,CAAC,IAAI,CAAC;EAClC,MAAM,CAACC,GAAG,CAAC,GAAGF,KAAK,CAACG,QAAQ,CAAC,OAAO;IAClC;IACAC,KAAK,EAAER,YAAY;IACnB;IACAC,QAAQ;IACR;IACAQ,MAAM,EAAE;MACN,IAAIC,OAAO;QACT,OAAOJ,GAAG,CAACE,KAAK;MAClB,CAAC;MACD,IAAIE,OAAO,CAACF,KAAK;QACf,MAAMG,IAAI,GAAGL,GAAG,CAACE,KAAK;QAEtB,IAAIG,IAAI,KAAKH,KAAK,EAAE;UAClBF,GAAG,CAACE,KAAK,GAAGA,KAAK;UAEjB,IAAIN,kBAAkB,IAAIC,OAAO,CAACO,OAAO,EAAE;YACzC;;UAGFJ,GAAG,CAACL,QAAQ,CAACO,KAAK,EAAEG,IAAI,CAAC;;MAE7B;;GAEH,CAAC,CAAC;EAEHC,2CAAyB,CAAC,MAAK;IAC7BT,OAAO,CAACO,OAAO,GAAG,KAAK;EACzB,CAAC,EAAE,EAAE,CAAC;EAEN;EACAJ,GAAG,CAACL,QAAQ,GAAGA,QAAQ;EAEvB,OAAOK,GAAG,CAACG,MAAM;AACnB;AAxCAI","names":["useCallbackRef","initialValue","callback","skipInitialResolve","isFirst","React","useRef","ref","useState","value","facade","current","last","react_utilities_1","exports"],"sourceRoot":"","sources":["../../../../../../../../packages/react-components/react-positioning/src/utils/useCallbackRef.ts"],"sourcesContent":["import * as React from 'react';\nimport { useIsomorphicLayoutEffect } from '@fluentui/react-utilities';\n\n/**\n * Creates a MutableRef with ref change callback. Is useful as React.useRef() doesn't notify you when its content\n * changes and mutating the .current property doesn't cause a re-render. An opt-out will be use a callback ref via\n * React.useState(), but it will cause re-renders always.\n *\n * https://reactjs.org/docs/hooks-reference.html#useref\n * https://github.com/theKashey/use-callback-ref#usecallbackref---to-replace-reactuseref\n *\n * @param initialValue - initial ref value\n * @param callback - a callback to run when value changes\n * @param skipInitialResolve - a flag to skip an initial ref report\n *\n * @example\n * const ref = useCallbackRef(0, (newValue, oldValue) => console.log(oldValue, '->', newValue);\n * ref.current = 1;\n * // prints 0 -> 1\n */\nexport function useCallbackRef<T>(\n initialValue: T | null,\n callback: (newValue: T | null, lastValue: T | null) => void,\n skipInitialResolve?: boolean,\n): React.MutableRefObject<T | null> {\n const isFirst = React.useRef(true);\n const [ref] = React.useState(() => ({\n // value\n value: initialValue,\n // last callback\n callback,\n // \"memoized\" public interface\n facade: {\n get current() {\n return ref.value;\n },\n set current(value) {\n const last = ref.value;\n\n if (last !== value) {\n ref.value = value;\n\n if (skipInitialResolve && isFirst.current) {\n return;\n }\n\n ref.callback(value, last);\n }\n },\n },\n }));\n\n useIsomorphicLayoutEffect(() => {\n isFirst.current = false;\n }, []);\n\n // update callback\n ref.callback = callback;\n\n return ref.facade;\n}\n"]}
1
+ {"version":3,"sources":["../../lib/utils/useCallbackRef.js"],"sourcesContent":["import * as React from 'react';\nimport { useIsomorphicLayoutEffect } from '@fluentui/react-utilities';\n/**\n * Creates a MutableRef with ref change callback. Is useful as React.useRef() doesn't notify you when its content\n * changes and mutating the .current property doesn't cause a re-render. An opt-out will be use a callback ref via\n * React.useState(), but it will cause re-renders always.\n *\n * https://reactjs.org/docs/hooks-reference.html#useref\n * https://github.com/theKashey/use-callback-ref#usecallbackref---to-replace-reactuseref\n *\n * @param initialValue - initial ref value\n * @param callback - a callback to run when value changes\n * @param skipInitialResolve - a flag to skip an initial ref report\n *\n * @example\n * const ref = useCallbackRef(0, (newValue, oldValue) => console.log(oldValue, '->', newValue);\n * ref.current = 1;\n * // prints 0 -> 1\n */\nexport function useCallbackRef(initialValue, callback, skipInitialResolve) {\n const isFirst = React.useRef(true);\n const [ref] = React.useState(() => ({\n // value\n value: initialValue,\n // last callback\n callback,\n // \"memoized\" public interface\n facade: {\n get current() {\n return ref.value;\n },\n set current(value) {\n const last = ref.value;\n if (last !== value) {\n ref.value = value;\n if (skipInitialResolve && isFirst.current) {\n return;\n }\n ref.callback(value, last);\n }\n }\n }\n }));\n useIsomorphicLayoutEffect(() => {\n isFirst.current = false;\n }, []);\n // update callback\n ref.callback = callback;\n return ref.facade;\n}\n//# sourceMappingURL=useCallbackRef.js.map"],"names":["useCallbackRef","initialValue","callback","skipInitialResolve","isFirst","React","useRef","ref","useState","value","facade","current","last","useIsomorphicLayoutEffect"],"mappings":";;;;+BAmBgBA;;aAAAA;;;6DAnBO;gCACmB;AAkBnC,SAASA,eAAeC,YAAY,EAAEC,QAAQ,EAAEC,kBAAkB,EAAE;IACzE,MAAMC,UAAUC,OAAMC,MAAM,CAAC,IAAI;IACjC,MAAM,CAACC,IAAI,GAAGF,OAAMG,QAAQ,CAAC,IAAO,CAAA;YAClC,QAAQ;YACRC,OAAOR;YACP,gBAAgB;YAChBC;YACA,8BAA8B;YAC9BQ,QAAQ;gBACN,IAAIC,WAAU;oBACZ,OAAOJ,IAAIE,KAAK;gBAClB;gBACA,IAAIE,SAAQF,MAAO;oBACjB,MAAMG,OAAOL,IAAIE,KAAK;oBACtB,IAAIG,SAASH,OAAO;wBAClBF,IAAIE,KAAK,GAAGA;wBACZ,IAAIN,sBAAsBC,QAAQO,OAAO,EAAE;4BACzC;wBACF,CAAC;wBACDJ,IAAIL,QAAQ,CAACO,OAAOG;oBACtB,CAAC;gBACH;YACF;QACF,CAAA;IACAC,IAAAA,yCAAyB,EAAC,IAAM;QAC9BT,QAAQO,OAAO,GAAG,KAAK;IACzB,GAAG,EAAE;IACL,kBAAkB;IAClBJ,IAAIL,QAAQ,GAAGA;IACf,OAAOK,IAAIG,MAAM;AACnB,EACA,0CAA0C"}