@noodleseed/one 0.32.1 → 0.33.0

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 (700) hide show
  1. package/dist/deploy.js +1 -1
  2. package/dist/deploy.js.map +1 -1
  3. package/dist/index.d.ts +1 -0
  4. package/dist/index.d.ts.map +1 -1
  5. package/dist/index.js.map +1 -1
  6. package/dist/project-scaffold-templates.d.ts +9 -6
  7. package/dist/project-scaffold-templates.d.ts.map +1 -1
  8. package/dist/project-scaffold-templates.js +3 -198
  9. package/dist/project-scaffold-templates.js.map +1 -1
  10. package/dist/project.d.ts.map +1 -1
  11. package/dist/project.js +2 -1
  12. package/dist/project.js.map +1 -1
  13. package/dist/react-widget-build.js +10 -0
  14. package/dist/react-widget-build.js.map +1 -1
  15. package/dist/react.d.ts +2 -2
  16. package/dist/react.d.ts.map +1 -1
  17. package/dist/react.js +2 -1
  18. package/dist/react.js.map +1 -1
  19. package/dist/widget-scaffold-template.d.ts +4 -0
  20. package/dist/widget-scaffold-template.d.ts.map +1 -0
  21. package/dist/widget-scaffold-template.js +140 -0
  22. package/dist/widget-scaffold-template.js.map +1 -0
  23. package/dist/widget-showcase-template.d.ts +5 -0
  24. package/dist/widget-showcase-template.d.ts.map +1 -0
  25. package/dist/widget-showcase-template.js +478 -0
  26. package/dist/widget-showcase-template.js.map +1 -0
  27. package/node_modules/@floating-ui/core/LICENSE +20 -0
  28. package/node_modules/@floating-ui/core/README.md +4 -0
  29. package/node_modules/@floating-ui/core/dist/floating-ui.core.browser.min.mjs +1 -0
  30. package/node_modules/@floating-ui/core/dist/floating-ui.core.browser.mjs +1184 -0
  31. package/node_modules/@floating-ui/core/dist/floating-ui.core.d.mts +531 -0
  32. package/node_modules/@floating-ui/core/dist/floating-ui.core.d.ts +531 -0
  33. package/node_modules/@floating-ui/core/dist/floating-ui.core.esm.js +1058 -0
  34. package/node_modules/@floating-ui/core/dist/floating-ui.core.mjs +1058 -0
  35. package/node_modules/@floating-ui/core/dist/floating-ui.core.umd.js +1203 -0
  36. package/node_modules/@floating-ui/core/dist/floating-ui.core.umd.min.js +1 -0
  37. package/node_modules/@floating-ui/core/package.json +63 -0
  38. package/node_modules/@floating-ui/dom/LICENSE +20 -0
  39. package/node_modules/@floating-ui/dom/README.md +4 -0
  40. package/node_modules/@floating-ui/dom/dist/floating-ui.dom.browser.min.mjs +1 -0
  41. package/node_modules/@floating-ui/dom/dist/floating-ui.dom.browser.mjs +956 -0
  42. package/node_modules/@floating-ui/dom/dist/floating-ui.dom.d.mts +358 -0
  43. package/node_modules/@floating-ui/dom/dist/floating-ui.dom.d.ts +358 -0
  44. package/node_modules/@floating-ui/dom/dist/floating-ui.dom.esm.js +781 -0
  45. package/node_modules/@floating-ui/dom/dist/floating-ui.dom.mjs +781 -0
  46. package/node_modules/@floating-ui/dom/dist/floating-ui.dom.umd.js +975 -0
  47. package/node_modules/@floating-ui/dom/dist/floating-ui.dom.umd.min.js +1 -0
  48. package/node_modules/@floating-ui/dom/package.json +70 -0
  49. package/node_modules/@floating-ui/react-dom/LICENSE +20 -0
  50. package/node_modules/@floating-ui/react-dom/README.md +3 -0
  51. package/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.d.mts +307 -0
  52. package/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.d.ts +307 -0
  53. package/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.esm.js +406 -0
  54. package/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.mjs +406 -0
  55. package/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.umd.js +457 -0
  56. package/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.umd.min.js +1 -0
  57. package/node_modules/@floating-ui/react-dom/package.json +75 -0
  58. package/node_modules/@floating-ui/utils/LICENSE +20 -0
  59. package/node_modules/@floating-ui/utils/README.md +4 -0
  60. package/node_modules/@floating-ui/utils/dist/floating-ui.utils.d.mts +103 -0
  61. package/node_modules/@floating-ui/utils/dist/floating-ui.utils.d.ts +103 -0
  62. package/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.d.mts +47 -0
  63. package/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.d.ts +47 -0
  64. package/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.esm.js +165 -0
  65. package/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.mjs +165 -0
  66. package/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.umd.js +192 -0
  67. package/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.umd.min.js +1 -0
  68. package/node_modules/@floating-ui/utils/dist/floating-ui.utils.esm.js +136 -0
  69. package/node_modules/@floating-ui/utils/dist/floating-ui.utils.mjs +136 -0
  70. package/node_modules/@floating-ui/utils/dist/floating-ui.utils.umd.js +167 -0
  71. package/node_modules/@floating-ui/utils/dist/floating-ui.utils.umd.min.js +1 -0
  72. package/node_modules/@floating-ui/utils/dom/floating-ui.utils.dom.d.ts +47 -0
  73. package/node_modules/@floating-ui/utils/dom/floating-ui.utils.dom.esm.js +165 -0
  74. package/node_modules/@floating-ui/utils/dom/floating-ui.utils.dom.umd.js +192 -0
  75. package/node_modules/@floating-ui/utils/dom/package.json +6 -0
  76. package/node_modules/@floating-ui/utils/package.json +70 -0
  77. package/node_modules/@noodle-borg/agent-kit/dist/index.d.ts.map +1 -1
  78. package/node_modules/@noodle-borg/agent-kit/dist/index.js +4 -0
  79. package/node_modules/@noodle-borg/agent-kit/dist/index.js.map +1 -1
  80. package/node_modules/@noodle-borg/agent-kit/dist/skill-authoring-refs.d.ts.map +1 -1
  81. package/node_modules/@noodle-borg/agent-kit/dist/skill-authoring-refs.js +4 -0
  82. package/node_modules/@noodle-borg/agent-kit/dist/skill-authoring-refs.js.map +1 -1
  83. package/node_modules/@noodle-borg/agent-kit/package.json +1 -1
  84. package/node_modules/@noodle-borg/authoring/dist/index.d.ts +0 -2
  85. package/node_modules/@noodle-borg/authoring/dist/index.d.ts.map +1 -1
  86. package/node_modules/@noodle-borg/authoring/dist/index.js +0 -1
  87. package/node_modules/@noodle-borg/authoring/dist/index.js.map +1 -1
  88. package/node_modules/@noodle-borg/authoring/dist/react/bridge.d.ts +22 -2
  89. package/node_modules/@noodle-borg/authoring/dist/react/bridge.d.ts.map +1 -1
  90. package/node_modules/@noodle-borg/authoring/dist/react/bridge.js +15 -6
  91. package/node_modules/@noodle-borg/authoring/dist/react/bridge.js.map +1 -1
  92. package/node_modules/@noodle-borg/authoring/dist/react/components.d.ts +399 -665
  93. package/node_modules/@noodle-borg/authoring/dist/react/components.d.ts.map +1 -1
  94. package/node_modules/@noodle-borg/authoring/dist/react/components.js +113 -22
  95. package/node_modules/@noodle-borg/authoring/dist/react/components.js.map +1 -1
  96. package/node_modules/@noodle-borg/authoring/dist/react/display-components.d.ts +39 -0
  97. package/node_modules/@noodle-borg/authoring/dist/react/display-components.d.ts.map +1 -0
  98. package/node_modules/@noodle-borg/authoring/dist/react/display-components.js +55 -0
  99. package/node_modules/@noodle-borg/authoring/dist/react/display-components.js.map +1 -0
  100. package/node_modules/@noodle-borg/authoring/dist/react/field-context.d.ts +28 -0
  101. package/node_modules/@noodle-borg/authoring/dist/react/field-context.d.ts.map +1 -0
  102. package/node_modules/@noodle-borg/authoring/dist/react/field-context.js +20 -0
  103. package/node_modules/@noodle-borg/authoring/dist/react/field-context.js.map +1 -0
  104. package/node_modules/@noodle-borg/authoring/dist/react/form-components.d.ts +114 -0
  105. package/node_modules/@noodle-borg/authoring/dist/react/form-components.d.ts.map +1 -0
  106. package/node_modules/@noodle-borg/authoring/dist/react/form-components.js +147 -0
  107. package/node_modules/@noodle-borg/authoring/dist/react/form-components.js.map +1 -0
  108. package/node_modules/@noodle-borg/authoring/dist/react/hooks.d.ts +2 -2
  109. package/node_modules/@noodle-borg/authoring/dist/react/hooks.d.ts.map +1 -1
  110. package/node_modules/@noodle-borg/authoring/dist/react/hooks.js.map +1 -1
  111. package/node_modules/@noodle-borg/authoring/dist/react/index.d.ts +4 -1
  112. package/node_modules/@noodle-borg/authoring/dist/react/index.d.ts.map +1 -1
  113. package/node_modules/@noodle-borg/authoring/dist/react/index.js +3 -0
  114. package/node_modules/@noodle-borg/authoring/dist/react/index.js.map +1 -1
  115. package/node_modules/@noodle-borg/authoring/dist/react/native-components.d.ts +76 -76
  116. package/node_modules/@noodle-borg/authoring/dist/react/overlay-components.d.ts +67 -0
  117. package/node_modules/@noodle-borg/authoring/dist/react/overlay-components.d.ts.map +1 -0
  118. package/node_modules/@noodle-borg/authoring/dist/react/overlay-components.js +86 -0
  119. package/node_modules/@noodle-borg/authoring/dist/react/overlay-components.js.map +1 -0
  120. package/node_modules/@noodle-borg/authoring/dist/react/semantic-components.d.ts +971 -386
  121. package/node_modules/@noodle-borg/authoring/dist/react/semantic-components.d.ts.map +1 -1
  122. package/node_modules/@noodle-borg/authoring/dist/react/semantic-components.js +57 -10
  123. package/node_modules/@noodle-borg/authoring/dist/react/semantic-components.js.map +1 -1
  124. package/node_modules/@noodle-borg/authoring/dist/react.d.ts +2 -2
  125. package/node_modules/@noodle-borg/authoring/dist/react.d.ts.map +1 -1
  126. package/node_modules/@noodle-borg/authoring/dist/react.js +2 -1
  127. package/node_modules/@noodle-borg/authoring/dist/react.js.map +1 -1
  128. package/node_modules/@noodle-borg/authoring/dist/server.d.ts.map +1 -1
  129. package/node_modules/@noodle-borg/authoring/dist/server.js +20 -4
  130. package/node_modules/@noodle-borg/authoring/dist/server.js.map +1 -1
  131. package/node_modules/@noodle-borg/authoring/package.json +7 -1
  132. package/node_modules/@noodle-borg/connector-defs/dist/index.d.ts +1 -1
  133. package/node_modules/@noodle-borg/connector-defs/dist/index.d.ts.map +1 -1
  134. package/node_modules/@noodle-borg/connector-defs/dist/index.js.map +1 -1
  135. package/node_modules/@noodle-borg/protocol/dist/widget/react-bridge-bootstrap.d.ts +1 -1
  136. package/node_modules/@noodle-borg/protocol/dist/widget/react-bridge-bootstrap.d.ts.map +1 -1
  137. package/node_modules/@noodle-borg/protocol/dist/widget/react-bridge-bootstrap.js +26 -2
  138. package/node_modules/@noodle-borg/protocol/dist/widget/react-bridge-bootstrap.js.map +1 -1
  139. package/node_modules/@noodle-borg/service/dist/connector-normalize.d.ts +6 -0
  140. package/node_modules/@noodle-borg/service/dist/connector-normalize.d.ts.map +1 -0
  141. package/node_modules/@noodle-borg/service/dist/connector-normalize.js +80 -0
  142. package/node_modules/@noodle-borg/service/dist/connector-normalize.js.map +1 -0
  143. package/node_modules/@noodle-borg/service/dist/registry.d.ts.map +1 -1
  144. package/node_modules/@noodle-borg/service/dist/registry.js +10 -4
  145. package/node_modules/@noodle-borg/service/dist/registry.js.map +1 -1
  146. package/node_modules/@radix-ui/primitive/LICENSE +21 -0
  147. package/node_modules/@radix-ui/primitive/README.md +3 -0
  148. package/node_modules/@radix-ui/primitive/dist/index.d.mts +20 -0
  149. package/node_modules/@radix-ui/primitive/dist/index.d.ts +20 -0
  150. package/node_modules/@radix-ui/primitive/dist/index.js +76 -0
  151. package/node_modules/@radix-ui/primitive/dist/index.js.map +7 -0
  152. package/node_modules/@radix-ui/primitive/dist/index.mjs +53 -0
  153. package/node_modules/@radix-ui/primitive/dist/index.mjs.map +7 -0
  154. package/node_modules/@radix-ui/primitive/package.json +47 -0
  155. package/node_modules/@radix-ui/react-arrow/LICENSE +21 -0
  156. package/node_modules/@radix-ui/react-arrow/README.md +3 -0
  157. package/node_modules/@radix-ui/react-arrow/dist/index.d.mts +10 -0
  158. package/node_modules/@radix-ui/react-arrow/dist/index.d.ts +10 -0
  159. package/node_modules/@radix-ui/react-arrow/dist/index.js +60 -0
  160. package/node_modules/@radix-ui/react-arrow/dist/index.js.map +7 -0
  161. package/node_modules/@radix-ui/react-arrow/dist/index.mjs +27 -0
  162. package/node_modules/@radix-ui/react-arrow/dist/index.mjs.map +7 -0
  163. package/node_modules/@radix-ui/react-arrow/package.json +68 -0
  164. package/node_modules/@radix-ui/react-collection/LICENSE +21 -0
  165. package/node_modules/@radix-ui/react-collection/README.md +3 -0
  166. package/node_modules/@radix-ui/react-collection/dist/index.d.mts +98 -0
  167. package/node_modules/@radix-ui/react-collection/dist/index.d.ts +98 -0
  168. package/node_modules/@radix-ui/react-collection/dist/index.js +577 -0
  169. package/node_modules/@radix-ui/react-collection/dist/index.js.map +7 -0
  170. package/node_modules/@radix-ui/react-collection/dist/index.mjs +545 -0
  171. package/node_modules/@radix-ui/react-collection/dist/index.mjs.map +7 -0
  172. package/node_modules/@radix-ui/react-collection/package.json +71 -0
  173. package/node_modules/@radix-ui/react-compose-refs/LICENSE +21 -0
  174. package/node_modules/@radix-ui/react-compose-refs/README.md +3 -0
  175. package/node_modules/@radix-ui/react-compose-refs/dist/index.d.mts +15 -0
  176. package/node_modules/@radix-ui/react-compose-refs/dist/index.d.ts +15 -0
  177. package/node_modules/@radix-ui/react-compose-refs/dist/index.js +74 -0
  178. package/node_modules/@radix-ui/react-compose-refs/dist/index.js.map +7 -0
  179. package/node_modules/@radix-ui/react-compose-refs/dist/index.mjs +41 -0
  180. package/node_modules/@radix-ui/react-compose-refs/dist/index.mjs.map +7 -0
  181. package/node_modules/@radix-ui/react-compose-refs/package.json +60 -0
  182. package/node_modules/@radix-ui/react-context/LICENSE +21 -0
  183. package/node_modules/@radix-ui/react-context/README.md +3 -0
  184. package/node_modules/@radix-ui/react-context/dist/index.d.mts +21 -0
  185. package/node_modules/@radix-ui/react-context/dist/index.d.ts +21 -0
  186. package/node_modules/@radix-ui/react-context/dist/index.js +116 -0
  187. package/node_modules/@radix-ui/react-context/dist/index.js.map +7 -0
  188. package/node_modules/@radix-ui/react-context/dist/index.mjs +83 -0
  189. package/node_modules/@radix-ui/react-context/dist/index.mjs.map +7 -0
  190. package/node_modules/@radix-ui/react-context/package.json +60 -0
  191. package/node_modules/@radix-ui/react-dialog/LICENSE +21 -0
  192. package/node_modules/@radix-ui/react-dialog/README.md +3 -0
  193. package/node_modules/@radix-ui/react-dialog/dist/index.d.mts +99 -0
  194. package/node_modules/@radix-ui/react-dialog/dist/index.d.ts +99 -0
  195. package/node_modules/@radix-ui/react-dialog/dist/index.js +330 -0
  196. package/node_modules/@radix-ui/react-dialog/dist/index.js.map +7 -0
  197. package/node_modules/@radix-ui/react-dialog/dist/index.mjs +298 -0
  198. package/node_modules/@radix-ui/react-dialog/dist/index.mjs.map +7 -0
  199. package/node_modules/@radix-ui/react-dialog/package.json +81 -0
  200. package/node_modules/@radix-ui/react-direction/LICENSE +21 -0
  201. package/node_modules/@radix-ui/react-direction/README.md +3 -0
  202. package/node_modules/@radix-ui/react-direction/dist/index.d.mts +12 -0
  203. package/node_modules/@radix-ui/react-direction/dist/index.d.ts +12 -0
  204. package/node_modules/@radix-ui/react-direction/dist/index.js +53 -0
  205. package/node_modules/@radix-ui/react-direction/dist/index.js.map +7 -0
  206. package/node_modules/@radix-ui/react-direction/dist/index.mjs +21 -0
  207. package/node_modules/@radix-ui/react-direction/dist/index.mjs.map +7 -0
  208. package/node_modules/@radix-ui/react-direction/package.json +60 -0
  209. package/node_modules/@radix-ui/react-dismissable-layer/LICENSE +21 -0
  210. package/node_modules/@radix-ui/react-dismissable-layer/README.md +3 -0
  211. package/node_modules/@radix-ui/react-dismissable-layer/dist/index.d.mts +62 -0
  212. package/node_modules/@radix-ui/react-dismissable-layer/dist/index.d.ts +62 -0
  213. package/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +364 -0
  214. package/node_modules/@radix-ui/react-dismissable-layer/dist/index.js.map +7 -0
  215. package/node_modules/@radix-ui/react-dismissable-layer/dist/index.mjs +332 -0
  216. package/node_modules/@radix-ui/react-dismissable-layer/dist/index.mjs.map +7 -0
  217. package/node_modules/@radix-ui/react-dismissable-layer/package.json +73 -0
  218. package/node_modules/@radix-ui/react-dropdown-menu/LICENSE +21 -0
  219. package/node_modules/@radix-ui/react-dropdown-menu/README.md +3 -0
  220. package/node_modules/@radix-ui/react-dropdown-menu/dist/index.d.mts +97 -0
  221. package/node_modules/@radix-ui/react-dropdown-menu/dist/index.d.ts +97 -0
  222. package/node_modules/@radix-ui/react-dropdown-menu/dist/index.js +338 -0
  223. package/node_modules/@radix-ui/react-dropdown-menu/dist/index.js.map +7 -0
  224. package/node_modules/@radix-ui/react-dropdown-menu/dist/index.mjs +306 -0
  225. package/node_modules/@radix-ui/react-dropdown-menu/dist/index.mjs.map +7 -0
  226. package/node_modules/@radix-ui/react-dropdown-menu/package.json +76 -0
  227. package/node_modules/@radix-ui/react-focus-guards/LICENSE +21 -0
  228. package/node_modules/@radix-ui/react-focus-guards/README.md +3 -0
  229. package/node_modules/@radix-ui/react-focus-guards/dist/index.d.mts +13 -0
  230. package/node_modules/@radix-ui/react-focus-guards/dist/index.d.ts +13 -0
  231. package/node_modules/@radix-ui/react-focus-guards/dist/index.js +81 -0
  232. package/node_modules/@radix-ui/react-focus-guards/dist/index.js.map +7 -0
  233. package/node_modules/@radix-ui/react-focus-guards/dist/index.mjs +49 -0
  234. package/node_modules/@radix-ui/react-focus-guards/dist/index.mjs.map +7 -0
  235. package/node_modules/@radix-ui/react-focus-guards/package.json +60 -0
  236. package/node_modules/@radix-ui/react-focus-scope/LICENSE +21 -0
  237. package/node_modules/@radix-ui/react-focus-scope/README.md +3 -0
  238. package/node_modules/@radix-ui/react-focus-scope/dist/index.d.mts +32 -0
  239. package/node_modules/@radix-ui/react-focus-scope/dist/index.d.ts +32 -0
  240. package/node_modules/@radix-ui/react-focus-scope/dist/index.js +246 -0
  241. package/node_modules/@radix-ui/react-focus-scope/dist/index.js.map +7 -0
  242. package/node_modules/@radix-ui/react-focus-scope/dist/index.mjs +214 -0
  243. package/node_modules/@radix-ui/react-focus-scope/dist/index.mjs.map +7 -0
  244. package/node_modules/@radix-ui/react-focus-scope/package.json +70 -0
  245. package/node_modules/@radix-ui/react-id/LICENSE +21 -0
  246. package/node_modules/@radix-ui/react-id/README.md +3 -0
  247. package/node_modules/@radix-ui/react-id/dist/index.d.mts +3 -0
  248. package/node_modules/@radix-ui/react-id/dist/index.d.ts +3 -0
  249. package/node_modules/@radix-ui/react-id/dist/index.js +49 -0
  250. package/node_modules/@radix-ui/react-id/dist/index.js.map +7 -0
  251. package/node_modules/@radix-ui/react-id/dist/index.mjs +16 -0
  252. package/node_modules/@radix-ui/react-id/dist/index.mjs.map +7 -0
  253. package/node_modules/@radix-ui/react-id/package.json +63 -0
  254. package/node_modules/@radix-ui/react-menu/LICENSE +21 -0
  255. package/node_modules/@radix-ui/react-menu/README.md +3 -0
  256. package/node_modules/@radix-ui/react-menu/dist/index.d.mts +175 -0
  257. package/node_modules/@radix-ui/react-menu/dist/index.d.ts +175 -0
  258. package/node_modules/@radix-ui/react-menu/dist/index.js +913 -0
  259. package/node_modules/@radix-ui/react-menu/dist/index.js.map +7 -0
  260. package/node_modules/@radix-ui/react-menu/dist/index.mjs +881 -0
  261. package/node_modules/@radix-ui/react-menu/dist/index.mjs.map +7 -0
  262. package/node_modules/@radix-ui/react-menu/package.json +86 -0
  263. package/node_modules/@radix-ui/react-popover/LICENSE +21 -0
  264. package/node_modules/@radix-ui/react-popover/README.md +3 -0
  265. package/node_modules/@radix-ui/react-popover/dist/index.d.mts +85 -0
  266. package/node_modules/@radix-ui/react-popover/dist/index.d.ts +85 -0
  267. package/node_modules/@radix-ui/react-popover/dist/index.js +353 -0
  268. package/node_modules/@radix-ui/react-popover/dist/index.js.map +7 -0
  269. package/node_modules/@radix-ui/react-popover/dist/index.mjs +321 -0
  270. package/node_modules/@radix-ui/react-popover/dist/index.mjs.map +7 -0
  271. package/node_modules/@radix-ui/react-popover/package.json +82 -0
  272. package/node_modules/@radix-ui/react-popper/LICENSE +21 -0
  273. package/node_modules/@radix-ui/react-popper/README.md +3 -0
  274. package/node_modules/@radix-ui/react-popper/dist/index.d.mts +46 -0
  275. package/node_modules/@radix-ui/react-popper/dist/index.d.ts +46 -0
  276. package/node_modules/@radix-ui/react-popper/dist/index.js +384 -0
  277. package/node_modules/@radix-ui/react-popper/dist/index.js.map +7 -0
  278. package/node_modules/@radix-ui/react-popper/dist/index.mjs +362 -0
  279. package/node_modules/@radix-ui/react-popper/dist/index.mjs.map +7 -0
  280. package/node_modules/@radix-ui/react-popper/package.json +78 -0
  281. package/node_modules/@radix-ui/react-portal/LICENSE +21 -0
  282. package/node_modules/@radix-ui/react-portal/README.md +3 -0
  283. package/node_modules/@radix-ui/react-portal/dist/index.d.mts +14 -0
  284. package/node_modules/@radix-ui/react-portal/dist/index.d.ts +14 -0
  285. package/node_modules/@radix-ui/react-portal/dist/index.js +55 -0
  286. package/node_modules/@radix-ui/react-portal/dist/index.js.map +7 -0
  287. package/node_modules/@radix-ui/react-portal/dist/index.mjs +23 -0
  288. package/node_modules/@radix-ui/react-portal/dist/index.mjs.map +7 -0
  289. package/node_modules/@radix-ui/react-portal/package.json +69 -0
  290. package/node_modules/@radix-ui/react-presence/LICENSE +21 -0
  291. package/node_modules/@radix-ui/react-presence/README.md +3 -0
  292. package/node_modules/@radix-ui/react-presence/dist/index.d.mts +12 -0
  293. package/node_modules/@radix-ui/react-presence/dist/index.d.ts +12 -0
  294. package/node_modules/@radix-ui/react-presence/dist/index.js +204 -0
  295. package/node_modules/@radix-ui/react-presence/dist/index.js.map +7 -0
  296. package/node_modules/@radix-ui/react-presence/dist/index.mjs +172 -0
  297. package/node_modules/@radix-ui/react-presence/dist/index.mjs.map +7 -0
  298. package/node_modules/@radix-ui/react-presence/package.json +68 -0
  299. package/node_modules/@radix-ui/react-primitive/LICENSE +21 -0
  300. package/node_modules/@radix-ui/react-primitive/README.md +3 -0
  301. package/node_modules/@radix-ui/react-primitive/dist/index.d.mts +57 -0
  302. package/node_modules/@radix-ui/react-primitive/dist/index.d.ts +57 -0
  303. package/node_modules/@radix-ui/react-primitive/dist/index.js +80 -0
  304. package/node_modules/@radix-ui/react-primitive/dist/index.js.map +7 -0
  305. package/node_modules/@radix-ui/react-primitive/dist/index.mjs +47 -0
  306. package/node_modules/@radix-ui/react-primitive/dist/index.mjs.map +7 -0
  307. package/node_modules/@radix-ui/react-primitive/package.json +68 -0
  308. package/node_modules/@radix-ui/react-roving-focus/LICENSE +21 -0
  309. package/node_modules/@radix-ui/react-roving-focus/README.md +3 -0
  310. package/node_modules/@radix-ui/react-roving-focus/dist/index.d.mts +49 -0
  311. package/node_modules/@radix-ui/react-roving-focus/dist/index.d.ts +49 -0
  312. package/node_modules/@radix-ui/react-roving-focus/dist/index.js +263 -0
  313. package/node_modules/@radix-ui/react-roving-focus/dist/index.js.map +7 -0
  314. package/node_modules/@radix-ui/react-roving-focus/dist/index.mjs +231 -0
  315. package/node_modules/@radix-ui/react-roving-focus/dist/index.mjs.map +7 -0
  316. package/node_modules/@radix-ui/react-roving-focus/package.json +76 -0
  317. package/node_modules/@radix-ui/react-slot/LICENSE +21 -0
  318. package/node_modules/@radix-ui/react-slot/README.md +3 -0
  319. package/node_modules/@radix-ui/react-slot/dist/index.d.mts +29 -0
  320. package/node_modules/@radix-ui/react-slot/dist/index.d.ts +29 -0
  321. package/node_modules/@radix-ui/react-slot/dist/index.js +170 -0
  322. package/node_modules/@radix-ui/react-slot/dist/index.js.map +7 -0
  323. package/node_modules/@radix-ui/react-slot/dist/index.mjs +137 -0
  324. package/node_modules/@radix-ui/react-slot/dist/index.mjs.map +7 -0
  325. package/node_modules/@radix-ui/react-slot/package.json +63 -0
  326. package/node_modules/@radix-ui/react-tooltip/LICENSE +21 -0
  327. package/node_modules/@radix-ui/react-tooltip/README.md +3 -0
  328. package/node_modules/@radix-ui/react-tooltip/dist/index.d.mts +101 -0
  329. package/node_modules/@radix-ui/react-tooltip/dist/index.d.ts +101 -0
  330. package/node_modules/@radix-ui/react-tooltip/dist/index.js +543 -0
  331. package/node_modules/@radix-ui/react-tooltip/dist/index.js.map +7 -0
  332. package/node_modules/@radix-ui/react-tooltip/dist/index.mjs +511 -0
  333. package/node_modules/@radix-ui/react-tooltip/dist/index.mjs.map +7 -0
  334. package/node_modules/@radix-ui/react-tooltip/package.json +79 -0
  335. package/node_modules/@radix-ui/react-use-callback-ref/LICENSE +21 -0
  336. package/node_modules/@radix-ui/react-use-callback-ref/README.md +3 -0
  337. package/node_modules/@radix-ui/react-use-callback-ref/dist/index.d.mts +7 -0
  338. package/node_modules/@radix-ui/react-use-callback-ref/dist/index.d.ts +7 -0
  339. package/node_modules/@radix-ui/react-use-callback-ref/dist/index.js +46 -0
  340. package/node_modules/@radix-ui/react-use-callback-ref/dist/index.js.map +7 -0
  341. package/node_modules/@radix-ui/react-use-callback-ref/dist/index.mjs +13 -0
  342. package/node_modules/@radix-ui/react-use-callback-ref/dist/index.mjs.map +7 -0
  343. package/node_modules/@radix-ui/react-use-callback-ref/package.json +60 -0
  344. package/node_modules/@radix-ui/react-use-controllable-state/LICENSE +21 -0
  345. package/node_modules/@radix-ui/react-use-controllable-state/README.md +3 -0
  346. package/node_modules/@radix-ui/react-use-controllable-state/dist/index.d.mts +40 -0
  347. package/node_modules/@radix-ui/react-use-controllable-state/dist/index.d.ts +40 -0
  348. package/node_modules/@radix-ui/react-use-controllable-state/dist/index.js +169 -0
  349. package/node_modules/@radix-ui/react-use-controllable-state/dist/index.js.map +7 -0
  350. package/node_modules/@radix-ui/react-use-controllable-state/dist/index.mjs +136 -0
  351. package/node_modules/@radix-ui/react-use-controllable-state/dist/index.mjs.map +7 -0
  352. package/node_modules/@radix-ui/react-use-controllable-state/package.json +64 -0
  353. package/node_modules/@radix-ui/react-use-effect-event/LICENSE +21 -0
  354. package/node_modules/@radix-ui/react-use-effect-event/README.md +5 -0
  355. package/node_modules/@radix-ui/react-use-effect-event/dist/index.d.mts +8 -0
  356. package/node_modules/@radix-ui/react-use-effect-event/dist/index.d.ts +8 -0
  357. package/node_modules/@radix-ui/react-use-effect-event/dist/index.js +60 -0
  358. package/node_modules/@radix-ui/react-use-effect-event/dist/index.js.map +7 -0
  359. package/node_modules/@radix-ui/react-use-effect-event/dist/index.mjs +27 -0
  360. package/node_modules/@radix-ui/react-use-effect-event/dist/index.mjs.map +7 -0
  361. package/node_modules/@radix-ui/react-use-effect-event/package.json +65 -0
  362. package/node_modules/@radix-ui/react-use-effect-event/src/index.ts +1 -0
  363. package/node_modules/@radix-ui/react-use-effect-event/src/use-effect-event.tsx +36 -0
  364. package/node_modules/@radix-ui/react-use-escape-keydown/LICENSE +21 -0
  365. package/node_modules/@radix-ui/react-use-escape-keydown/README.md +3 -0
  366. package/node_modules/@radix-ui/react-use-escape-keydown/dist/index.d.mts +6 -0
  367. package/node_modules/@radix-ui/react-use-escape-keydown/dist/index.d.ts +6 -0
  368. package/node_modules/@radix-ui/react-use-escape-keydown/dist/index.js +52 -0
  369. package/node_modules/@radix-ui/react-use-escape-keydown/dist/index.js.map +7 -0
  370. package/node_modules/@radix-ui/react-use-escape-keydown/dist/index.mjs +19 -0
  371. package/node_modules/@radix-ui/react-use-escape-keydown/dist/index.mjs.map +7 -0
  372. package/node_modules/@radix-ui/react-use-escape-keydown/package.json +63 -0
  373. package/node_modules/@radix-ui/react-use-layout-effect/LICENSE +21 -0
  374. package/node_modules/@radix-ui/react-use-layout-effect/README.md +3 -0
  375. package/node_modules/@radix-ui/react-use-layout-effect/dist/index.d.mts +12 -0
  376. package/node_modules/@radix-ui/react-use-layout-effect/dist/index.d.ts +12 -0
  377. package/node_modules/@radix-ui/react-use-layout-effect/dist/index.js +41 -0
  378. package/node_modules/@radix-ui/react-use-layout-effect/dist/index.js.map +7 -0
  379. package/node_modules/@radix-ui/react-use-layout-effect/dist/index.mjs +8 -0
  380. package/node_modules/@radix-ui/react-use-layout-effect/dist/index.mjs.map +7 -0
  381. package/node_modules/@radix-ui/react-use-layout-effect/package.json +60 -0
  382. package/node_modules/@radix-ui/react-use-rect/LICENSE +21 -0
  383. package/node_modules/@radix-ui/react-use-rect/README.md +3 -0
  384. package/node_modules/@radix-ui/react-use-rect/dist/index.d.mts +9 -0
  385. package/node_modules/@radix-ui/react-use-rect/dist/index.d.ts +9 -0
  386. package/node_modules/@radix-ui/react-use-rect/dist/index.js +54 -0
  387. package/node_modules/@radix-ui/react-use-rect/dist/index.js.map +7 -0
  388. package/node_modules/@radix-ui/react-use-rect/dist/index.mjs +21 -0
  389. package/node_modules/@radix-ui/react-use-rect/dist/index.mjs.map +7 -0
  390. package/node_modules/@radix-ui/react-use-rect/package.json +63 -0
  391. package/node_modules/@radix-ui/react-use-size/LICENSE +21 -0
  392. package/node_modules/@radix-ui/react-use-size/README.md +3 -0
  393. package/node_modules/@radix-ui/react-use-size/dist/index.d.mts +6 -0
  394. package/node_modules/@radix-ui/react-use-size/dist/index.d.ts +6 -0
  395. package/node_modules/@radix-ui/react-use-size/dist/index.js +74 -0
  396. package/node_modules/@radix-ui/react-use-size/dist/index.js.map +7 -0
  397. package/node_modules/@radix-ui/react-use-size/dist/index.mjs +41 -0
  398. package/node_modules/@radix-ui/react-use-size/dist/index.mjs.map +7 -0
  399. package/node_modules/@radix-ui/react-use-size/package.json +63 -0
  400. package/node_modules/@radix-ui/react-visually-hidden/LICENSE +21 -0
  401. package/node_modules/@radix-ui/react-visually-hidden/README.md +3 -0
  402. package/node_modules/@radix-ui/react-visually-hidden/dist/index.d.mts +22 -0
  403. package/node_modules/@radix-ui/react-visually-hidden/dist/index.d.ts +22 -0
  404. package/node_modules/@radix-ui/react-visually-hidden/dist/index.js +71 -0
  405. package/node_modules/@radix-ui/react-visually-hidden/dist/index.js.map +7 -0
  406. package/node_modules/@radix-ui/react-visually-hidden/dist/index.mjs +38 -0
  407. package/node_modules/@radix-ui/react-visually-hidden/dist/index.mjs.map +7 -0
  408. package/node_modules/@radix-ui/react-visually-hidden/package.json +68 -0
  409. package/node_modules/@radix-ui/rect/LICENSE +21 -0
  410. package/node_modules/@radix-ui/rect/README.md +3 -0
  411. package/node_modules/@radix-ui/rect/dist/index.d.mts +16 -0
  412. package/node_modules/@radix-ui/rect/dist/index.d.ts +16 -0
  413. package/node_modules/@radix-ui/rect/dist/index.js +73 -0
  414. package/node_modules/@radix-ui/rect/dist/index.js.map +7 -0
  415. package/node_modules/@radix-ui/rect/dist/index.mjs +50 -0
  416. package/node_modules/@radix-ui/rect/dist/index.mjs.map +7 -0
  417. package/node_modules/@radix-ui/rect/package.json +47 -0
  418. package/node_modules/aria-hidden/LICENSE +21 -0
  419. package/node_modules/aria-hidden/README.md +99 -0
  420. package/node_modules/aria-hidden/dist/es2015/index.d.ts +29 -0
  421. package/node_modules/aria-hidden/dist/es2015/index.js +167 -0
  422. package/node_modules/aria-hidden/dist/es2019/index.d.ts +29 -0
  423. package/node_modules/aria-hidden/dist/es2019/index.js +156 -0
  424. package/node_modules/aria-hidden/dist/es5/index.d.ts +29 -0
  425. package/node_modules/aria-hidden/dist/es5/index.js +174 -0
  426. package/node_modules/aria-hidden/package.json +71 -0
  427. package/node_modules/detect-node-es/LICENSE +21 -0
  428. package/node_modules/detect-node-es/Readme.md +39 -0
  429. package/node_modules/detect-node-es/es5/browser.js +2 -0
  430. package/node_modules/detect-node-es/es5/node.d.ts +4 -0
  431. package/node_modules/detect-node-es/es5/node.js +2 -0
  432. package/node_modules/detect-node-es/esm/browser.js +2 -0
  433. package/node_modules/detect-node-es/esm/node.js +2 -0
  434. package/node_modules/detect-node-es/package.json +29 -0
  435. package/node_modules/get-nonce/LICENSE +21 -0
  436. package/node_modules/get-nonce/README.md +54 -0
  437. package/node_modules/get-nonce/dist/es2015/index.d.ts +2 -0
  438. package/node_modules/get-nonce/dist/es2015/index.js +13 -0
  439. package/node_modules/get-nonce/dist/es5/index.d.ts +2 -0
  440. package/node_modules/get-nonce/dist/es5/index.js +15 -0
  441. package/node_modules/get-nonce/package.json +68 -0
  442. package/node_modules/react-remove-scroll/LICENSE +21 -0
  443. package/node_modules/react-remove-scroll/README.md +153 -0
  444. package/node_modules/react-remove-scroll/UI/UI.d.ts +1 -0
  445. package/node_modules/react-remove-scroll/UI/package.json +8 -0
  446. package/node_modules/react-remove-scroll/dist/es2015/Combination.d.ts +3 -0
  447. package/node_modules/react-remove-scroll/dist/es2015/Combination.js +7 -0
  448. package/node_modules/react-remove-scroll/dist/es2015/SideEffect.d.ts +5 -0
  449. package/node_modules/react-remove-scroll/dist/es2015/SideEffect.js +164 -0
  450. package/node_modules/react-remove-scroll/dist/es2015/UI.d.ts +7 -0
  451. package/node_modules/react-remove-scroll/dist/es2015/UI.js +36 -0
  452. package/node_modules/react-remove-scroll/dist/es2015/aggresiveCapture.d.ts +3 -0
  453. package/node_modules/react-remove-scroll/dist/es2015/aggresiveCapture.js +19 -0
  454. package/node_modules/react-remove-scroll/dist/es2015/handleScroll.d.ts +3 -0
  455. package/node_modules/react-remove-scroll/dist/es2015/handleScroll.js +108 -0
  456. package/node_modules/react-remove-scroll/dist/es2015/index.d.ts +2 -0
  457. package/node_modules/react-remove-scroll/dist/es2015/index.js +2 -0
  458. package/node_modules/react-remove-scroll/dist/es2015/medium.d.ts +2 -0
  459. package/node_modules/react-remove-scroll/dist/es2015/medium.js +2 -0
  460. package/node_modules/react-remove-scroll/dist/es2015/pinchAndZoom.d.ts +8 -0
  461. package/node_modules/react-remove-scroll/dist/es2015/pinchAndZoom.js +33 -0
  462. package/node_modules/react-remove-scroll/dist/es2015/sidecar.d.ts +2 -0
  463. package/node_modules/react-remove-scroll/dist/es2015/sidecar.js +4 -0
  464. package/node_modules/react-remove-scroll/dist/es2015/types.d.ts +104 -0
  465. package/node_modules/react-remove-scroll/dist/es2015/types.js +1 -0
  466. package/node_modules/react-remove-scroll/dist/es2019/Combination.d.ts +3 -0
  467. package/node_modules/react-remove-scroll/dist/es2019/Combination.js +6 -0
  468. package/node_modules/react-remove-scroll/dist/es2019/SideEffect.d.ts +5 -0
  469. package/node_modules/react-remove-scroll/dist/es2019/SideEffect.js +162 -0
  470. package/node_modules/react-remove-scroll/dist/es2019/UI.d.ts +7 -0
  471. package/node_modules/react-remove-scroll/dist/es2019/UI.js +41 -0
  472. package/node_modules/react-remove-scroll/dist/es2019/aggresiveCapture.d.ts +3 -0
  473. package/node_modules/react-remove-scroll/dist/es2019/aggresiveCapture.js +19 -0
  474. package/node_modules/react-remove-scroll/dist/es2019/handleScroll.d.ts +3 -0
  475. package/node_modules/react-remove-scroll/dist/es2019/handleScroll.js +96 -0
  476. package/node_modules/react-remove-scroll/dist/es2019/index.d.ts +2 -0
  477. package/node_modules/react-remove-scroll/dist/es2019/index.js +2 -0
  478. package/node_modules/react-remove-scroll/dist/es2019/medium.d.ts +2 -0
  479. package/node_modules/react-remove-scroll/dist/es2019/medium.js +2 -0
  480. package/node_modules/react-remove-scroll/dist/es2019/pinchAndZoom.d.ts +8 -0
  481. package/node_modules/react-remove-scroll/dist/es2019/pinchAndZoom.js +33 -0
  482. package/node_modules/react-remove-scroll/dist/es2019/sidecar.d.ts +2 -0
  483. package/node_modules/react-remove-scroll/dist/es2019/sidecar.js +4 -0
  484. package/node_modules/react-remove-scroll/dist/es2019/types.d.ts +104 -0
  485. package/node_modules/react-remove-scroll/dist/es2019/types.js +1 -0
  486. package/node_modules/react-remove-scroll/dist/es5/Combination.d.ts +3 -0
  487. package/node_modules/react-remove-scroll/dist/es5/Combination.js +9 -0
  488. package/node_modules/react-remove-scroll/dist/es5/SideEffect.d.ts +5 -0
  489. package/node_modules/react-remove-scroll/dist/es5/SideEffect.js +170 -0
  490. package/node_modules/react-remove-scroll/dist/es5/UI.d.ts +7 -0
  491. package/node_modules/react-remove-scroll/dist/es5/UI.js +39 -0
  492. package/node_modules/react-remove-scroll/dist/es5/aggresiveCapture.d.ts +3 -0
  493. package/node_modules/react-remove-scroll/dist/es5/aggresiveCapture.js +22 -0
  494. package/node_modules/react-remove-scroll/dist/es5/handleScroll.d.ts +3 -0
  495. package/node_modules/react-remove-scroll/dist/es5/handleScroll.js +113 -0
  496. package/node_modules/react-remove-scroll/dist/es5/index.d.ts +2 -0
  497. package/node_modules/react-remove-scroll/dist/es5/index.js +6 -0
  498. package/node_modules/react-remove-scroll/dist/es5/medium.d.ts +2 -0
  499. package/node_modules/react-remove-scroll/dist/es5/medium.js +5 -0
  500. package/node_modules/react-remove-scroll/dist/es5/pinchAndZoom.d.ts +8 -0
  501. package/node_modules/react-remove-scroll/dist/es5/pinchAndZoom.js +37 -0
  502. package/node_modules/react-remove-scroll/dist/es5/sidecar.d.ts +2 -0
  503. package/node_modules/react-remove-scroll/dist/es5/sidecar.js +6 -0
  504. package/node_modules/react-remove-scroll/dist/es5/types.d.ts +104 -0
  505. package/node_modules/react-remove-scroll/dist/es5/types.js +2 -0
  506. package/node_modules/react-remove-scroll/package.json +98 -0
  507. package/node_modules/react-remove-scroll/sidecar/package.json +7 -0
  508. package/node_modules/react-remove-scroll/sidecar/sidecar.d.ts +5 -0
  509. package/node_modules/react-remove-scroll-bar/README.md +52 -0
  510. package/node_modules/react-remove-scroll-bar/constants/package.json +8 -0
  511. package/node_modules/react-remove-scroll-bar/dist/es2015/component.d.ts +13 -0
  512. package/node_modules/react-remove-scroll-bar/dist/es2015/component.js +53 -0
  513. package/node_modules/react-remove-scroll-bar/dist/es2015/constants.d.ts +8 -0
  514. package/node_modules/react-remove-scroll-bar/dist/es2015/constants.js +8 -0
  515. package/node_modules/react-remove-scroll-bar/dist/es2015/index.d.ts +4 -0
  516. package/node_modules/react-remove-scroll-bar/dist/es2015/index.js +4 -0
  517. package/node_modules/react-remove-scroll-bar/dist/es2015/utils.d.ts +14 -0
  518. package/node_modules/react-remove-scroll-bar/dist/es2015/utils.js +29 -0
  519. package/node_modules/react-remove-scroll-bar/dist/es2019/component.d.ts +13 -0
  520. package/node_modules/react-remove-scroll-bar/dist/es2019/component.js +85 -0
  521. package/node_modules/react-remove-scroll-bar/dist/es2019/constants.d.ts +8 -0
  522. package/node_modules/react-remove-scroll-bar/dist/es2019/constants.js +8 -0
  523. package/node_modules/react-remove-scroll-bar/dist/es2019/index.d.ts +4 -0
  524. package/node_modules/react-remove-scroll-bar/dist/es2019/index.js +4 -0
  525. package/node_modules/react-remove-scroll-bar/dist/es2019/utils.d.ts +14 -0
  526. package/node_modules/react-remove-scroll-bar/dist/es2019/utils.js +28 -0
  527. package/node_modules/react-remove-scroll-bar/dist/es5/component.d.ts +13 -0
  528. package/node_modules/react-remove-scroll-bar/dist/es5/component.js +59 -0
  529. package/node_modules/react-remove-scroll-bar/dist/es5/constants.d.ts +8 -0
  530. package/node_modules/react-remove-scroll-bar/dist/es5/constants.js +11 -0
  531. package/node_modules/react-remove-scroll-bar/dist/es5/index.d.ts +4 -0
  532. package/node_modules/react-remove-scroll-bar/dist/es5/index.js +12 -0
  533. package/node_modules/react-remove-scroll-bar/dist/es5/utils.d.ts +14 -0
  534. package/node_modules/react-remove-scroll-bar/dist/es5/utils.js +33 -0
  535. package/node_modules/react-remove-scroll-bar/package.json +85 -0
  536. package/node_modules/react-style-singleton/LICENSE +21 -0
  537. package/node_modules/react-style-singleton/README.md +45 -0
  538. package/node_modules/react-style-singleton/dist/es2015/component.d.ts +21 -0
  539. package/node_modules/react-style-singleton/dist/es2015/component.js +16 -0
  540. package/node_modules/react-style-singleton/dist/es2015/hook.d.ts +23 -0
  541. package/node_modules/react-style-singleton/dist/es2015/hook.js +22 -0
  542. package/node_modules/react-style-singleton/dist/es2015/index.d.ts +3 -0
  543. package/node_modules/react-style-singleton/dist/es2015/index.js +3 -0
  544. package/node_modules/react-style-singleton/dist/es2015/singleton.d.ts +4 -0
  545. package/node_modules/react-style-singleton/dist/es2015/singleton.js +48 -0
  546. package/node_modules/react-style-singleton/dist/es2019/component.d.ts +21 -0
  547. package/node_modules/react-style-singleton/dist/es2019/component.js +15 -0
  548. package/node_modules/react-style-singleton/dist/es2019/hook.d.ts +23 -0
  549. package/node_modules/react-style-singleton/dist/es2019/hook.js +22 -0
  550. package/node_modules/react-style-singleton/dist/es2019/index.d.ts +3 -0
  551. package/node_modules/react-style-singleton/dist/es2019/index.js +3 -0
  552. package/node_modules/react-style-singleton/dist/es2019/singleton.d.ts +4 -0
  553. package/node_modules/react-style-singleton/dist/es2019/singleton.js +48 -0
  554. package/node_modules/react-style-singleton/dist/es5/component.d.ts +21 -0
  555. package/node_modules/react-style-singleton/dist/es5/component.js +20 -0
  556. package/node_modules/react-style-singleton/dist/es5/hook.d.ts +23 -0
  557. package/node_modules/react-style-singleton/dist/es5/hook.js +27 -0
  558. package/node_modules/react-style-singleton/dist/es5/index.d.ts +3 -0
  559. package/node_modules/react-style-singleton/dist/es5/index.js +9 -0
  560. package/node_modules/react-style-singleton/dist/es5/singleton.d.ts +4 -0
  561. package/node_modules/react-style-singleton/dist/es5/singleton.js +52 -0
  562. package/node_modules/react-style-singleton/dist/index.js +1 -0
  563. package/node_modules/react-style-singleton/package.json +90 -0
  564. package/node_modules/tslib/CopyrightNotice.txt +15 -0
  565. package/node_modules/tslib/LICENSE.txt +12 -0
  566. package/node_modules/tslib/README.md +164 -0
  567. package/node_modules/tslib/SECURITY.md +41 -0
  568. package/node_modules/tslib/modules/index.d.ts +38 -0
  569. package/node_modules/tslib/modules/index.js +70 -0
  570. package/node_modules/tslib/modules/package.json +3 -0
  571. package/node_modules/tslib/package.json +47 -0
  572. package/node_modules/tslib/tslib.d.ts +460 -0
  573. package/node_modules/tslib/tslib.es6.html +1 -0
  574. package/node_modules/tslib/tslib.es6.js +402 -0
  575. package/node_modules/tslib/tslib.es6.mjs +401 -0
  576. package/node_modules/tslib/tslib.html +1 -0
  577. package/node_modules/tslib/tslib.js +484 -0
  578. package/node_modules/use-callback-ref/LICENSE +21 -0
  579. package/node_modules/use-callback-ref/README.md +170 -0
  580. package/node_modules/use-callback-ref/dist/es2015/assignRef.d.ts +15 -0
  581. package/node_modules/use-callback-ref/dist/es2015/assignRef.js +22 -0
  582. package/node_modules/use-callback-ref/dist/es2015/createRef.d.ts +10 -0
  583. package/node_modules/use-callback-ref/dist/es2015/createRef.js +23 -0
  584. package/node_modules/use-callback-ref/dist/es2015/index.d.ts +8 -0
  585. package/node_modules/use-callback-ref/dist/es2015/index.js +12 -0
  586. package/node_modules/use-callback-ref/dist/es2015/mergeRef.d.ts +16 -0
  587. package/node_modules/use-callback-ref/dist/es2015/mergeRef.js +18 -0
  588. package/node_modules/use-callback-ref/dist/es2015/refToCallback.d.ts +24 -0
  589. package/node_modules/use-callback-ref/dist/es2015/refToCallback.js +48 -0
  590. package/node_modules/use-callback-ref/dist/es2015/transformRef.d.ts +11 -0
  591. package/node_modules/use-callback-ref/dist/es2015/transformRef.js +14 -0
  592. package/node_modules/use-callback-ref/dist/es2015/types.d.ts +5 -0
  593. package/node_modules/use-callback-ref/dist/es2015/types.js +1 -0
  594. package/node_modules/use-callback-ref/dist/es2015/useMergeRef.d.ts +17 -0
  595. package/node_modules/use-callback-ref/dist/es2015/useMergeRef.js +45 -0
  596. package/node_modules/use-callback-ref/dist/es2015/useRef.d.ts +16 -0
  597. package/node_modules/use-callback-ref/dist/es2015/useRef.js +39 -0
  598. package/node_modules/use-callback-ref/dist/es2015/useTransformRef.d.ts +15 -0
  599. package/node_modules/use-callback-ref/dist/es2015/useTransformRef.js +18 -0
  600. package/node_modules/use-callback-ref/dist/es2019/assignRef.d.ts +15 -0
  601. package/node_modules/use-callback-ref/dist/es2019/assignRef.js +22 -0
  602. package/node_modules/use-callback-ref/dist/es2019/createRef.d.ts +10 -0
  603. package/node_modules/use-callback-ref/dist/es2019/createRef.js +23 -0
  604. package/node_modules/use-callback-ref/dist/es2019/index.d.ts +8 -0
  605. package/node_modules/use-callback-ref/dist/es2019/index.js +12 -0
  606. package/node_modules/use-callback-ref/dist/es2019/mergeRef.d.ts +16 -0
  607. package/node_modules/use-callback-ref/dist/es2019/mergeRef.js +18 -0
  608. package/node_modules/use-callback-ref/dist/es2019/refToCallback.d.ts +24 -0
  609. package/node_modules/use-callback-ref/dist/es2019/refToCallback.js +48 -0
  610. package/node_modules/use-callback-ref/dist/es2019/transformRef.d.ts +11 -0
  611. package/node_modules/use-callback-ref/dist/es2019/transformRef.js +14 -0
  612. package/node_modules/use-callback-ref/dist/es2019/types.d.ts +5 -0
  613. package/node_modules/use-callback-ref/dist/es2019/types.js +1 -0
  614. package/node_modules/use-callback-ref/dist/es2019/useMergeRef.d.ts +17 -0
  615. package/node_modules/use-callback-ref/dist/es2019/useMergeRef.js +43 -0
  616. package/node_modules/use-callback-ref/dist/es2019/useRef.d.ts +16 -0
  617. package/node_modules/use-callback-ref/dist/es2019/useRef.js +39 -0
  618. package/node_modules/use-callback-ref/dist/es2019/useTransformRef.d.ts +15 -0
  619. package/node_modules/use-callback-ref/dist/es2019/useTransformRef.js +18 -0
  620. package/node_modules/use-callback-ref/dist/es5/assignRef.d.ts +15 -0
  621. package/node_modules/use-callback-ref/dist/es5/assignRef.js +26 -0
  622. package/node_modules/use-callback-ref/dist/es5/createRef.d.ts +10 -0
  623. package/node_modules/use-callback-ref/dist/es5/createRef.js +27 -0
  624. package/node_modules/use-callback-ref/dist/es5/index.d.ts +8 -0
  625. package/node_modules/use-callback-ref/dist/es5/index.js +24 -0
  626. package/node_modules/use-callback-ref/dist/es5/mergeRef.d.ts +16 -0
  627. package/node_modules/use-callback-ref/dist/es5/mergeRef.js +22 -0
  628. package/node_modules/use-callback-ref/dist/es5/refToCallback.d.ts +24 -0
  629. package/node_modules/use-callback-ref/dist/es5/refToCallback.js +53 -0
  630. package/node_modules/use-callback-ref/dist/es5/transformRef.d.ts +11 -0
  631. package/node_modules/use-callback-ref/dist/es5/transformRef.js +18 -0
  632. package/node_modules/use-callback-ref/dist/es5/types.d.ts +5 -0
  633. package/node_modules/use-callback-ref/dist/es5/types.js +2 -0
  634. package/node_modules/use-callback-ref/dist/es5/useMergeRef.d.ts +17 -0
  635. package/node_modules/use-callback-ref/dist/es5/useMergeRef.js +50 -0
  636. package/node_modules/use-callback-ref/dist/es5/useRef.d.ts +16 -0
  637. package/node_modules/use-callback-ref/dist/es5/useRef.js +43 -0
  638. package/node_modules/use-callback-ref/dist/es5/useTransformRef.d.ts +15 -0
  639. package/node_modules/use-callback-ref/dist/es5/useTransformRef.js +22 -0
  640. package/node_modules/use-callback-ref/package.json +85 -0
  641. package/node_modules/use-sidecar/LICENSE +21 -0
  642. package/node_modules/use-sidecar/README.md +349 -0
  643. package/node_modules/use-sidecar/dist/es2015/config.d.ts +5 -0
  644. package/node_modules/use-sidecar/dist/es2015/config.js +6 -0
  645. package/node_modules/use-sidecar/dist/es2015/env.d.ts +4 -0
  646. package/node_modules/use-sidecar/dist/es2015/env.js +5 -0
  647. package/node_modules/use-sidecar/dist/es2015/exports.d.ts +3 -0
  648. package/node_modules/use-sidecar/dist/es2015/exports.js +18 -0
  649. package/node_modules/use-sidecar/dist/es2015/hoc.d.ts +3 -0
  650. package/node_modules/use-sidecar/dist/es2015/hoc.js +15 -0
  651. package/node_modules/use-sidecar/dist/es2015/hook.d.ts +2 -0
  652. package/node_modules/use-sidecar/dist/es2015/hook.js +41 -0
  653. package/node_modules/use-sidecar/dist/es2015/index.d.ts +7 -0
  654. package/node_modules/use-sidecar/dist/es2015/index.js +6 -0
  655. package/node_modules/use-sidecar/dist/es2015/medium.d.ts +3 -0
  656. package/node_modules/use-sidecar/dist/es2015/medium.js +78 -0
  657. package/node_modules/use-sidecar/dist/es2015/renderProp.d.ts +9 -0
  658. package/node_modules/use-sidecar/dist/es2015/renderProp.js +35 -0
  659. package/node_modules/use-sidecar/dist/es2015/types.d.ts +47 -0
  660. package/node_modules/use-sidecar/dist/es2015/types.js +1 -0
  661. package/node_modules/use-sidecar/dist/es2019/config.d.ts +5 -0
  662. package/node_modules/use-sidecar/dist/es2019/config.js +6 -0
  663. package/node_modules/use-sidecar/dist/es2019/env.d.ts +4 -0
  664. package/node_modules/use-sidecar/dist/es2019/env.js +5 -0
  665. package/node_modules/use-sidecar/dist/es2019/exports.d.ts +3 -0
  666. package/node_modules/use-sidecar/dist/es2019/exports.js +16 -0
  667. package/node_modules/use-sidecar/dist/es2019/hoc.d.ts +3 -0
  668. package/node_modules/use-sidecar/dist/es2019/hoc.js +14 -0
  669. package/node_modules/use-sidecar/dist/es2019/hook.d.ts +2 -0
  670. package/node_modules/use-sidecar/dist/es2019/hook.js +41 -0
  671. package/node_modules/use-sidecar/dist/es2019/index.d.ts +7 -0
  672. package/node_modules/use-sidecar/dist/es2019/index.js +6 -0
  673. package/node_modules/use-sidecar/dist/es2019/medium.d.ts +3 -0
  674. package/node_modules/use-sidecar/dist/es2019/medium.js +78 -0
  675. package/node_modules/use-sidecar/dist/es2019/renderProp.d.ts +9 -0
  676. package/node_modules/use-sidecar/dist/es2019/renderProp.js +28 -0
  677. package/node_modules/use-sidecar/dist/es2019/types.d.ts +47 -0
  678. package/node_modules/use-sidecar/dist/es2019/types.js +1 -0
  679. package/node_modules/use-sidecar/dist/es5/config.d.ts +5 -0
  680. package/node_modules/use-sidecar/dist/es5/config.js +10 -0
  681. package/node_modules/use-sidecar/dist/es5/env.d.ts +4 -0
  682. package/node_modules/use-sidecar/dist/es5/env.js +8 -0
  683. package/node_modules/use-sidecar/dist/es5/exports.d.ts +3 -0
  684. package/node_modules/use-sidecar/dist/es5/exports.js +22 -0
  685. package/node_modules/use-sidecar/dist/es5/hoc.d.ts +3 -0
  686. package/node_modules/use-sidecar/dist/es5/hoc.js +19 -0
  687. package/node_modules/use-sidecar/dist/es5/hook.d.ts +2 -0
  688. package/node_modules/use-sidecar/dist/es5/hook.js +45 -0
  689. package/node_modules/use-sidecar/dist/es5/index.d.ts +7 -0
  690. package/node_modules/use-sidecar/dist/es5/index.js +16 -0
  691. package/node_modules/use-sidecar/dist/es5/medium.d.ts +3 -0
  692. package/node_modules/use-sidecar/dist/es5/medium.js +83 -0
  693. package/node_modules/use-sidecar/dist/es5/renderProp.d.ts +9 -0
  694. package/node_modules/use-sidecar/dist/es5/renderProp.js +39 -0
  695. package/node_modules/use-sidecar/dist/es5/types.d.ts +47 -0
  696. package/node_modules/use-sidecar/dist/es5/types.js +2 -0
  697. package/node_modules/use-sidecar/package.json +93 -0
  698. package/package.json +45 -2
  699. package/react/styles.css +568 -18
  700. package/react/styles.source.css +568 -18
@@ -0,0 +1,1203 @@
1
+ (function (global, factory) {
2
+ typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
3
+ typeof define === 'function' && define.amd ? define(['exports'], factory) :
4
+ (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.FloatingUICore = {}));
5
+ })(this, (function (exports) { 'use strict';
6
+
7
+ /**
8
+ * Custom positioning reference element.
9
+ * @see https://floating-ui.com/docs/virtual-elements
10
+ */
11
+
12
+ const sides = ['top', 'right', 'bottom', 'left'];
13
+ const alignments = ['start', 'end'];
14
+ const placements = /*#__PURE__*/sides.reduce((acc, side) => acc.concat(side, side + "-" + alignments[0], side + "-" + alignments[1]), []);
15
+ const min = Math.min;
16
+ const max = Math.max;
17
+ const oppositeSideMap = {
18
+ left: 'right',
19
+ right: 'left',
20
+ bottom: 'top',
21
+ top: 'bottom'
22
+ };
23
+ function clamp(start, value, end) {
24
+ return max(start, min(value, end));
25
+ }
26
+ function evaluate(value, param) {
27
+ return typeof value === 'function' ? value(param) : value;
28
+ }
29
+ function getSide(placement) {
30
+ return placement.split('-')[0];
31
+ }
32
+ function getAlignment(placement) {
33
+ return placement.split('-')[1];
34
+ }
35
+ function getOppositeAxis(axis) {
36
+ return axis === 'x' ? 'y' : 'x';
37
+ }
38
+ function getAxisLength(axis) {
39
+ return axis === 'y' ? 'height' : 'width';
40
+ }
41
+ function getSideAxis(placement) {
42
+ const firstChar = placement[0];
43
+ return firstChar === 't' || firstChar === 'b' ? 'y' : 'x';
44
+ }
45
+ function getAlignmentAxis(placement) {
46
+ return getOppositeAxis(getSideAxis(placement));
47
+ }
48
+ function getAlignmentSides(placement, rects, rtl) {
49
+ if (rtl === void 0) {
50
+ rtl = false;
51
+ }
52
+ const alignment = getAlignment(placement);
53
+ const alignmentAxis = getAlignmentAxis(placement);
54
+ const length = getAxisLength(alignmentAxis);
55
+ let mainAlignmentSide = alignmentAxis === 'x' ? alignment === (rtl ? 'end' : 'start') ? 'right' : 'left' : alignment === 'start' ? 'bottom' : 'top';
56
+ if (rects.reference[length] > rects.floating[length]) {
57
+ mainAlignmentSide = getOppositePlacement(mainAlignmentSide);
58
+ }
59
+ return [mainAlignmentSide, getOppositePlacement(mainAlignmentSide)];
60
+ }
61
+ function getExpandedPlacements(placement) {
62
+ const oppositePlacement = getOppositePlacement(placement);
63
+ return [getOppositeAlignmentPlacement(placement), oppositePlacement, getOppositeAlignmentPlacement(oppositePlacement)];
64
+ }
65
+ function getOppositeAlignmentPlacement(placement) {
66
+ return placement.includes('start') ? placement.replace('start', 'end') : placement.replace('end', 'start');
67
+ }
68
+ const lrPlacement = ['left', 'right'];
69
+ const rlPlacement = ['right', 'left'];
70
+ const tbPlacement = ['top', 'bottom'];
71
+ const btPlacement = ['bottom', 'top'];
72
+ function getSideList(side, isStart, rtl) {
73
+ switch (side) {
74
+ case 'top':
75
+ case 'bottom':
76
+ if (rtl) return isStart ? rlPlacement : lrPlacement;
77
+ return isStart ? lrPlacement : rlPlacement;
78
+ case 'left':
79
+ case 'right':
80
+ return isStart ? tbPlacement : btPlacement;
81
+ default:
82
+ return [];
83
+ }
84
+ }
85
+ function getOppositeAxisPlacements(placement, flipAlignment, direction, rtl) {
86
+ const alignment = getAlignment(placement);
87
+ let list = getSideList(getSide(placement), direction === 'start', rtl);
88
+ if (alignment) {
89
+ list = list.map(side => side + "-" + alignment);
90
+ if (flipAlignment) {
91
+ list = list.concat(list.map(getOppositeAlignmentPlacement));
92
+ }
93
+ }
94
+ return list;
95
+ }
96
+ function getOppositePlacement(placement) {
97
+ const side = getSide(placement);
98
+ return oppositeSideMap[side] + placement.slice(side.length);
99
+ }
100
+ function expandPaddingObject(padding) {
101
+ return {
102
+ top: 0,
103
+ right: 0,
104
+ bottom: 0,
105
+ left: 0,
106
+ ...padding
107
+ };
108
+ }
109
+ function getPaddingObject(padding) {
110
+ return typeof padding !== 'number' ? expandPaddingObject(padding) : {
111
+ top: padding,
112
+ right: padding,
113
+ bottom: padding,
114
+ left: padding
115
+ };
116
+ }
117
+ function rectToClientRect(rect) {
118
+ const {
119
+ x,
120
+ y,
121
+ width,
122
+ height
123
+ } = rect;
124
+ return {
125
+ width,
126
+ height,
127
+ top: y,
128
+ left: x,
129
+ right: x + width,
130
+ bottom: y + height,
131
+ x,
132
+ y
133
+ };
134
+ }
135
+
136
+ function computeCoordsFromPlacement(_ref, placement, rtl) {
137
+ let {
138
+ reference,
139
+ floating
140
+ } = _ref;
141
+ const sideAxis = getSideAxis(placement);
142
+ const alignmentAxis = getAlignmentAxis(placement);
143
+ const alignLength = getAxisLength(alignmentAxis);
144
+ const side = getSide(placement);
145
+ const isVertical = sideAxis === 'y';
146
+ const commonX = reference.x + reference.width / 2 - floating.width / 2;
147
+ const commonY = reference.y + reference.height / 2 - floating.height / 2;
148
+ const commonAlign = reference[alignLength] / 2 - floating[alignLength] / 2;
149
+ let coords;
150
+ switch (side) {
151
+ case 'top':
152
+ coords = {
153
+ x: commonX,
154
+ y: reference.y - floating.height
155
+ };
156
+ break;
157
+ case 'bottom':
158
+ coords = {
159
+ x: commonX,
160
+ y: reference.y + reference.height
161
+ };
162
+ break;
163
+ case 'right':
164
+ coords = {
165
+ x: reference.x + reference.width,
166
+ y: commonY
167
+ };
168
+ break;
169
+ case 'left':
170
+ coords = {
171
+ x: reference.x - floating.width,
172
+ y: commonY
173
+ };
174
+ break;
175
+ default:
176
+ coords = {
177
+ x: reference.x,
178
+ y: reference.y
179
+ };
180
+ }
181
+ switch (getAlignment(placement)) {
182
+ case 'start':
183
+ coords[alignmentAxis] -= commonAlign * (rtl && isVertical ? -1 : 1);
184
+ break;
185
+ case 'end':
186
+ coords[alignmentAxis] += commonAlign * (rtl && isVertical ? -1 : 1);
187
+ break;
188
+ }
189
+ return coords;
190
+ }
191
+
192
+ /**
193
+ * Resolves with an object of overflow side offsets that determine how much the
194
+ * element is overflowing a given clipping boundary on each side.
195
+ * - positive = overflowing the boundary by that number of pixels
196
+ * - negative = how many pixels left before it will overflow
197
+ * - 0 = lies flush with the boundary
198
+ * @see https://floating-ui.com/docs/detectOverflow
199
+ */
200
+ async function detectOverflow(state, options) {
201
+ var _await$platform$isEle;
202
+ if (options === void 0) {
203
+ options = {};
204
+ }
205
+ const {
206
+ x,
207
+ y,
208
+ platform,
209
+ rects,
210
+ elements,
211
+ strategy
212
+ } = state;
213
+ const {
214
+ boundary = 'clippingAncestors',
215
+ rootBoundary = 'viewport',
216
+ elementContext = 'floating',
217
+ altBoundary = false,
218
+ padding = 0
219
+ } = evaluate(options, state);
220
+ const paddingObject = getPaddingObject(padding);
221
+ const altContext = elementContext === 'floating' ? 'reference' : 'floating';
222
+ const element = elements[altBoundary ? altContext : elementContext];
223
+ const clippingClientRect = rectToClientRect(await platform.getClippingRect({
224
+ element: ((_await$platform$isEle = await (platform.isElement == null ? void 0 : platform.isElement(element))) != null ? _await$platform$isEle : true) ? element : element.contextElement || (await (platform.getDocumentElement == null ? void 0 : platform.getDocumentElement(elements.floating))),
225
+ boundary,
226
+ rootBoundary,
227
+ strategy
228
+ }));
229
+ const rect = elementContext === 'floating' ? {
230
+ x,
231
+ y,
232
+ width: rects.floating.width,
233
+ height: rects.floating.height
234
+ } : rects.reference;
235
+ const offsetParent = await (platform.getOffsetParent == null ? void 0 : platform.getOffsetParent(elements.floating));
236
+ const offsetScale = (await (platform.isElement == null ? void 0 : platform.isElement(offsetParent))) ? (await (platform.getScale == null ? void 0 : platform.getScale(offsetParent))) || {
237
+ x: 1,
238
+ y: 1
239
+ } : {
240
+ x: 1,
241
+ y: 1
242
+ };
243
+ const elementClientRect = rectToClientRect(platform.convertOffsetParentRelativeRectToViewportRelativeRect ? await platform.convertOffsetParentRelativeRectToViewportRelativeRect({
244
+ elements,
245
+ rect,
246
+ offsetParent,
247
+ strategy
248
+ }) : rect);
249
+ return {
250
+ top: (clippingClientRect.top - elementClientRect.top + paddingObject.top) / offsetScale.y,
251
+ bottom: (elementClientRect.bottom - clippingClientRect.bottom + paddingObject.bottom) / offsetScale.y,
252
+ left: (clippingClientRect.left - elementClientRect.left + paddingObject.left) / offsetScale.x,
253
+ right: (elementClientRect.right - clippingClientRect.right + paddingObject.right) / offsetScale.x
254
+ };
255
+ }
256
+
257
+ // Maximum number of resets that can occur before bailing to avoid infinite reset loops.
258
+ const MAX_RESET_COUNT = 50;
259
+
260
+ /**
261
+ * Computes the `x` and `y` coordinates that will place the floating element
262
+ * next to a given reference element.
263
+ *
264
+ * This export does not have any `platform` interface logic. You will need to
265
+ * write one for the platform you are using Floating UI with.
266
+ */
267
+ const computePosition = async (reference, floating, config) => {
268
+ const {
269
+ placement = 'bottom',
270
+ strategy = 'absolute',
271
+ middleware = [],
272
+ platform
273
+ } = config;
274
+ const platformWithDetectOverflow = platform.detectOverflow ? platform : {
275
+ ...platform,
276
+ detectOverflow
277
+ };
278
+ const rtl = await (platform.isRTL == null ? void 0 : platform.isRTL(floating));
279
+ let rects = await platform.getElementRects({
280
+ reference,
281
+ floating,
282
+ strategy
283
+ });
284
+ let {
285
+ x,
286
+ y
287
+ } = computeCoordsFromPlacement(rects, placement, rtl);
288
+ let statefulPlacement = placement;
289
+ let resetCount = 0;
290
+ const middlewareData = {};
291
+ for (let i = 0; i < middleware.length; i++) {
292
+ const currentMiddleware = middleware[i];
293
+ if (!currentMiddleware) {
294
+ continue;
295
+ }
296
+ const {
297
+ name,
298
+ fn
299
+ } = currentMiddleware;
300
+ const {
301
+ x: nextX,
302
+ y: nextY,
303
+ data,
304
+ reset
305
+ } = await fn({
306
+ x,
307
+ y,
308
+ initialPlacement: placement,
309
+ placement: statefulPlacement,
310
+ strategy,
311
+ middlewareData,
312
+ rects,
313
+ platform: platformWithDetectOverflow,
314
+ elements: {
315
+ reference,
316
+ floating
317
+ }
318
+ });
319
+ x = nextX != null ? nextX : x;
320
+ y = nextY != null ? nextY : y;
321
+ middlewareData[name] = {
322
+ ...middlewareData[name],
323
+ ...data
324
+ };
325
+ if (reset && resetCount < MAX_RESET_COUNT) {
326
+ resetCount++;
327
+ if (typeof reset === 'object') {
328
+ if (reset.placement) {
329
+ statefulPlacement = reset.placement;
330
+ }
331
+ if (reset.rects) {
332
+ rects = reset.rects === true ? await platform.getElementRects({
333
+ reference,
334
+ floating,
335
+ strategy
336
+ }) : reset.rects;
337
+ }
338
+ ({
339
+ x,
340
+ y
341
+ } = computeCoordsFromPlacement(rects, statefulPlacement, rtl));
342
+ }
343
+ i = -1;
344
+ }
345
+ }
346
+ return {
347
+ x,
348
+ y,
349
+ placement: statefulPlacement,
350
+ strategy,
351
+ middlewareData
352
+ };
353
+ };
354
+
355
+ /**
356
+ * Provides data to position an inner element of the floating element so that it
357
+ * appears centered to the reference element.
358
+ * @see https://floating-ui.com/docs/arrow
359
+ */
360
+ const arrow = options => ({
361
+ name: 'arrow',
362
+ options,
363
+ async fn(state) {
364
+ const {
365
+ x,
366
+ y,
367
+ placement,
368
+ rects,
369
+ platform,
370
+ elements,
371
+ middlewareData
372
+ } = state;
373
+ // Since `element` is required, we don't Partial<> the type.
374
+ const {
375
+ element,
376
+ padding = 0
377
+ } = evaluate(options, state) || {};
378
+ if (element == null) {
379
+ return {};
380
+ }
381
+ const paddingObject = getPaddingObject(padding);
382
+ const coords = {
383
+ x,
384
+ y
385
+ };
386
+ const axis = getAlignmentAxis(placement);
387
+ const length = getAxisLength(axis);
388
+ const arrowDimensions = await platform.getDimensions(element);
389
+ const isYAxis = axis === 'y';
390
+ const minProp = isYAxis ? 'top' : 'left';
391
+ const maxProp = isYAxis ? 'bottom' : 'right';
392
+ const clientProp = isYAxis ? 'clientHeight' : 'clientWidth';
393
+ const endDiff = rects.reference[length] + rects.reference[axis] - coords[axis] - rects.floating[length];
394
+ const startDiff = coords[axis] - rects.reference[axis];
395
+ const arrowOffsetParent = await (platform.getOffsetParent == null ? void 0 : platform.getOffsetParent(element));
396
+ let clientSize = arrowOffsetParent ? arrowOffsetParent[clientProp] : 0;
397
+
398
+ // DOM platform can return `window` as the `offsetParent`.
399
+ if (!clientSize || !(await (platform.isElement == null ? void 0 : platform.isElement(arrowOffsetParent)))) {
400
+ clientSize = elements.floating[clientProp] || rects.floating[length];
401
+ }
402
+ const centerToReference = endDiff / 2 - startDiff / 2;
403
+
404
+ // If the padding is large enough that it causes the arrow to no longer be
405
+ // centered, modify the padding so that it is centered.
406
+ const largestPossiblePadding = clientSize / 2 - arrowDimensions[length] / 2 - 1;
407
+ const minPadding = min(paddingObject[minProp], largestPossiblePadding);
408
+ const maxPadding = min(paddingObject[maxProp], largestPossiblePadding);
409
+
410
+ // Make sure the arrow doesn't overflow the floating element if the center
411
+ // point is outside the floating element's bounds.
412
+ const min$1 = minPadding;
413
+ const max = clientSize - arrowDimensions[length] - maxPadding;
414
+ const center = clientSize / 2 - arrowDimensions[length] / 2 + centerToReference;
415
+ const offset = clamp(min$1, center, max);
416
+
417
+ // If the reference is small enough that the arrow's padding causes it to
418
+ // to point to nothing for an aligned placement, adjust the offset of the
419
+ // floating element itself. To ensure `shift()` continues to take action,
420
+ // a single reset is performed when this is true.
421
+ const shouldAddOffset = !middlewareData.arrow && getAlignment(placement) != null && center !== offset && rects.reference[length] / 2 - (center < min$1 ? minPadding : maxPadding) - arrowDimensions[length] / 2 < 0;
422
+ const alignmentOffset = shouldAddOffset ? center < min$1 ? center - min$1 : center - max : 0;
423
+ return {
424
+ [axis]: coords[axis] + alignmentOffset,
425
+ data: {
426
+ [axis]: offset,
427
+ centerOffset: center - offset - alignmentOffset,
428
+ ...(shouldAddOffset && {
429
+ alignmentOffset
430
+ })
431
+ },
432
+ reset: shouldAddOffset
433
+ };
434
+ }
435
+ });
436
+
437
+ function getPlacementList(alignment, autoAlignment, allowedPlacements) {
438
+ const allowedPlacementsSortedByAlignment = alignment ? [...allowedPlacements.filter(placement => getAlignment(placement) === alignment), ...allowedPlacements.filter(placement => getAlignment(placement) !== alignment)] : allowedPlacements.filter(placement => getSide(placement) === placement);
439
+ return allowedPlacementsSortedByAlignment.filter(placement => {
440
+ if (alignment) {
441
+ return getAlignment(placement) === alignment || (autoAlignment ? getOppositeAlignmentPlacement(placement) !== placement : false);
442
+ }
443
+ return true;
444
+ });
445
+ }
446
+ /**
447
+ * Optimizes the visibility of the floating element by choosing the placement
448
+ * that has the most space available automatically, without needing to specify a
449
+ * preferred placement. Alternative to `flip`.
450
+ * @see https://floating-ui.com/docs/autoPlacement
451
+ */
452
+ const autoPlacement = function (options) {
453
+ if (options === void 0) {
454
+ options = {};
455
+ }
456
+ return {
457
+ name: 'autoPlacement',
458
+ options,
459
+ async fn(state) {
460
+ var _middlewareData$autoP, _middlewareData$autoP2, _placementsThatFitOnE;
461
+ const {
462
+ rects,
463
+ middlewareData,
464
+ placement,
465
+ platform,
466
+ elements
467
+ } = state;
468
+ const {
469
+ crossAxis = false,
470
+ alignment,
471
+ allowedPlacements = placements,
472
+ autoAlignment = true,
473
+ ...detectOverflowOptions
474
+ } = evaluate(options, state);
475
+ const placements$1 = alignment !== undefined || allowedPlacements === placements ? getPlacementList(alignment || null, autoAlignment, allowedPlacements) : allowedPlacements;
476
+ const overflow = await platform.detectOverflow(state, detectOverflowOptions);
477
+ const currentIndex = ((_middlewareData$autoP = middlewareData.autoPlacement) == null ? void 0 : _middlewareData$autoP.index) || 0;
478
+ const currentPlacement = placements$1[currentIndex];
479
+ if (currentPlacement == null) {
480
+ return {};
481
+ }
482
+ const alignmentSides = getAlignmentSides(currentPlacement, rects, await (platform.isRTL == null ? void 0 : platform.isRTL(elements.floating)));
483
+
484
+ // Make `computeCoords` start from the right place.
485
+ if (placement !== currentPlacement) {
486
+ return {
487
+ reset: {
488
+ placement: placements$1[0]
489
+ }
490
+ };
491
+ }
492
+ const currentOverflows = [overflow[getSide(currentPlacement)], overflow[alignmentSides[0]], overflow[alignmentSides[1]]];
493
+ const allOverflows = [...(((_middlewareData$autoP2 = middlewareData.autoPlacement) == null ? void 0 : _middlewareData$autoP2.overflows) || []), {
494
+ placement: currentPlacement,
495
+ overflows: currentOverflows
496
+ }];
497
+ const nextPlacement = placements$1[currentIndex + 1];
498
+
499
+ // There are more placements to check.
500
+ if (nextPlacement) {
501
+ return {
502
+ data: {
503
+ index: currentIndex + 1,
504
+ overflows: allOverflows
505
+ },
506
+ reset: {
507
+ placement: nextPlacement
508
+ }
509
+ };
510
+ }
511
+ const placementsSortedByMostSpace = allOverflows.map(d => {
512
+ const alignment = getAlignment(d.placement);
513
+ return [d.placement, alignment && crossAxis ?
514
+ // Check along the mainAxis and main crossAxis side.
515
+ d.overflows.slice(0, 2).reduce((acc, v) => acc + v, 0) :
516
+ // Check only the mainAxis.
517
+ d.overflows[0], d.overflows];
518
+ }).sort((a, b) => a[1] - b[1]);
519
+ const placementsThatFitOnEachSide = placementsSortedByMostSpace.filter(d => d[2].slice(0,
520
+ // Aligned placements should not check their opposite crossAxis
521
+ // side.
522
+ getAlignment(d[0]) ? 2 : 3).every(v => v <= 0));
523
+ const resetPlacement = ((_placementsThatFitOnE = placementsThatFitOnEachSide[0]) == null ? void 0 : _placementsThatFitOnE[0]) || placementsSortedByMostSpace[0][0];
524
+ if (resetPlacement !== placement) {
525
+ return {
526
+ data: {
527
+ index: currentIndex + 1,
528
+ overflows: allOverflows
529
+ },
530
+ reset: {
531
+ placement: resetPlacement
532
+ }
533
+ };
534
+ }
535
+ return {};
536
+ }
537
+ };
538
+ };
539
+
540
+ /**
541
+ * Optimizes the visibility of the floating element by flipping the `placement`
542
+ * in order to keep it in view when the preferred placement(s) will overflow the
543
+ * clipping boundary. Alternative to `autoPlacement`.
544
+ * @see https://floating-ui.com/docs/flip
545
+ */
546
+ const flip = function (options) {
547
+ if (options === void 0) {
548
+ options = {};
549
+ }
550
+ return {
551
+ name: 'flip',
552
+ options,
553
+ async fn(state) {
554
+ var _middlewareData$arrow, _middlewareData$flip;
555
+ const {
556
+ placement,
557
+ middlewareData,
558
+ rects,
559
+ initialPlacement,
560
+ platform,
561
+ elements
562
+ } = state;
563
+ const {
564
+ mainAxis: checkMainAxis = true,
565
+ crossAxis: checkCrossAxis = true,
566
+ fallbackPlacements: specifiedFallbackPlacements,
567
+ fallbackStrategy = 'bestFit',
568
+ fallbackAxisSideDirection = 'none',
569
+ flipAlignment = true,
570
+ ...detectOverflowOptions
571
+ } = evaluate(options, state);
572
+
573
+ // If a reset by the arrow was caused due to an alignment offset being
574
+ // added, we should skip any logic now since `flip()` has already done its
575
+ // work.
576
+ // https://github.com/floating-ui/floating-ui/issues/2549#issuecomment-1719601643
577
+ if ((_middlewareData$arrow = middlewareData.arrow) != null && _middlewareData$arrow.alignmentOffset) {
578
+ return {};
579
+ }
580
+ const side = getSide(placement);
581
+ const initialSideAxis = getSideAxis(initialPlacement);
582
+ const isBasePlacement = getSide(initialPlacement) === initialPlacement;
583
+ const rtl = await (platform.isRTL == null ? void 0 : platform.isRTL(elements.floating));
584
+ const fallbackPlacements = specifiedFallbackPlacements || (isBasePlacement || !flipAlignment ? [getOppositePlacement(initialPlacement)] : getExpandedPlacements(initialPlacement));
585
+ const hasFallbackAxisSideDirection = fallbackAxisSideDirection !== 'none';
586
+ if (!specifiedFallbackPlacements && hasFallbackAxisSideDirection) {
587
+ fallbackPlacements.push(...getOppositeAxisPlacements(initialPlacement, flipAlignment, fallbackAxisSideDirection, rtl));
588
+ }
589
+ const placements = [initialPlacement, ...fallbackPlacements];
590
+ const overflow = await platform.detectOverflow(state, detectOverflowOptions);
591
+ const overflows = [];
592
+ let overflowsData = ((_middlewareData$flip = middlewareData.flip) == null ? void 0 : _middlewareData$flip.overflows) || [];
593
+ if (checkMainAxis) {
594
+ overflows.push(overflow[side]);
595
+ }
596
+ if (checkCrossAxis) {
597
+ const sides = getAlignmentSides(placement, rects, rtl);
598
+ overflows.push(overflow[sides[0]], overflow[sides[1]]);
599
+ }
600
+ overflowsData = [...overflowsData, {
601
+ placement,
602
+ overflows
603
+ }];
604
+
605
+ // One or more sides is overflowing.
606
+ if (!overflows.every(side => side <= 0)) {
607
+ var _middlewareData$flip2, _overflowsData$filter;
608
+ const nextIndex = (((_middlewareData$flip2 = middlewareData.flip) == null ? void 0 : _middlewareData$flip2.index) || 0) + 1;
609
+ const nextPlacement = placements[nextIndex];
610
+ if (nextPlacement) {
611
+ const ignoreCrossAxisOverflow = checkCrossAxis === 'alignment' ? initialSideAxis !== getSideAxis(nextPlacement) : false;
612
+ if (!ignoreCrossAxisOverflow ||
613
+ // We leave the current main axis only if every placement on that axis
614
+ // overflows the main axis.
615
+ overflowsData.every(d => getSideAxis(d.placement) === initialSideAxis ? d.overflows[0] > 0 : true)) {
616
+ // Try next placement and re-run the lifecycle.
617
+ return {
618
+ data: {
619
+ index: nextIndex,
620
+ overflows: overflowsData
621
+ },
622
+ reset: {
623
+ placement: nextPlacement
624
+ }
625
+ };
626
+ }
627
+ }
628
+
629
+ // First, find the candidates that fit on the mainAxis side of overflow,
630
+ // then find the placement that fits the best on the main crossAxis side.
631
+ let resetPlacement = (_overflowsData$filter = overflowsData.filter(d => d.overflows[0] <= 0).sort((a, b) => a.overflows[1] - b.overflows[1])[0]) == null ? void 0 : _overflowsData$filter.placement;
632
+
633
+ // Otherwise fallback.
634
+ if (!resetPlacement) {
635
+ switch (fallbackStrategy) {
636
+ case 'bestFit':
637
+ {
638
+ var _overflowsData$filter2;
639
+ const placement = (_overflowsData$filter2 = overflowsData.filter(d => {
640
+ if (hasFallbackAxisSideDirection) {
641
+ const currentSideAxis = getSideAxis(d.placement);
642
+ return currentSideAxis === initialSideAxis ||
643
+ // Create a bias to the `y` side axis due to horizontal
644
+ // reading directions favoring greater width.
645
+ currentSideAxis === 'y';
646
+ }
647
+ return true;
648
+ }).map(d => [d.placement, d.overflows.filter(overflow => overflow > 0).reduce((acc, overflow) => acc + overflow, 0)]).sort((a, b) => a[1] - b[1])[0]) == null ? void 0 : _overflowsData$filter2[0];
649
+ if (placement) {
650
+ resetPlacement = placement;
651
+ }
652
+ break;
653
+ }
654
+ case 'initialPlacement':
655
+ resetPlacement = initialPlacement;
656
+ break;
657
+ }
658
+ }
659
+ if (placement !== resetPlacement) {
660
+ return {
661
+ reset: {
662
+ placement: resetPlacement
663
+ }
664
+ };
665
+ }
666
+ }
667
+ return {};
668
+ }
669
+ };
670
+ };
671
+
672
+ function getSideOffsets(overflow, rect) {
673
+ return {
674
+ top: overflow.top - rect.height,
675
+ right: overflow.right - rect.width,
676
+ bottom: overflow.bottom - rect.height,
677
+ left: overflow.left - rect.width
678
+ };
679
+ }
680
+ function isAnySideFullyClipped(overflow) {
681
+ return sides.some(side => overflow[side] >= 0);
682
+ }
683
+ /**
684
+ * Provides data to hide the floating element in applicable situations, such as
685
+ * when it is not in the same clipping context as the reference element.
686
+ * @see https://floating-ui.com/docs/hide
687
+ */
688
+ const hide = function (options) {
689
+ if (options === void 0) {
690
+ options = {};
691
+ }
692
+ return {
693
+ name: 'hide',
694
+ options,
695
+ async fn(state) {
696
+ const {
697
+ rects,
698
+ platform
699
+ } = state;
700
+ const {
701
+ strategy = 'referenceHidden',
702
+ ...detectOverflowOptions
703
+ } = evaluate(options, state);
704
+ switch (strategy) {
705
+ case 'referenceHidden':
706
+ {
707
+ const overflow = await platform.detectOverflow(state, {
708
+ ...detectOverflowOptions,
709
+ elementContext: 'reference'
710
+ });
711
+ const offsets = getSideOffsets(overflow, rects.reference);
712
+ return {
713
+ data: {
714
+ referenceHiddenOffsets: offsets,
715
+ referenceHidden: isAnySideFullyClipped(offsets)
716
+ }
717
+ };
718
+ }
719
+ case 'escaped':
720
+ {
721
+ const overflow = await platform.detectOverflow(state, {
722
+ ...detectOverflowOptions,
723
+ altBoundary: true
724
+ });
725
+ const offsets = getSideOffsets(overflow, rects.floating);
726
+ return {
727
+ data: {
728
+ escapedOffsets: offsets,
729
+ escaped: isAnySideFullyClipped(offsets)
730
+ }
731
+ };
732
+ }
733
+ default:
734
+ {
735
+ return {};
736
+ }
737
+ }
738
+ }
739
+ };
740
+ };
741
+
742
+ function getBoundingRect(rects) {
743
+ const minX = min(...rects.map(rect => rect.left));
744
+ const minY = min(...rects.map(rect => rect.top));
745
+ const maxX = max(...rects.map(rect => rect.right));
746
+ const maxY = max(...rects.map(rect => rect.bottom));
747
+ return {
748
+ x: minX,
749
+ y: minY,
750
+ width: maxX - minX,
751
+ height: maxY - minY
752
+ };
753
+ }
754
+ function getRectsByLine(rects) {
755
+ const sortedRects = rects.slice().sort((a, b) => a.y - b.y);
756
+ const groups = [];
757
+ let prevRect = null;
758
+ for (let i = 0; i < sortedRects.length; i++) {
759
+ const rect = sortedRects[i];
760
+ if (!prevRect || rect.y - prevRect.y > prevRect.height / 2) {
761
+ groups.push([rect]);
762
+ } else {
763
+ groups[groups.length - 1].push(rect);
764
+ }
765
+ prevRect = rect;
766
+ }
767
+ return groups.map(rect => rectToClientRect(getBoundingRect(rect)));
768
+ }
769
+ /**
770
+ * Provides improved positioning for inline reference elements that can span
771
+ * over multiple lines, such as hyperlinks or range selections.
772
+ * @see https://floating-ui.com/docs/inline
773
+ */
774
+ const inline = function (options) {
775
+ if (options === void 0) {
776
+ options = {};
777
+ }
778
+ return {
779
+ name: 'inline',
780
+ options,
781
+ async fn(state) {
782
+ const {
783
+ placement,
784
+ elements,
785
+ rects,
786
+ platform,
787
+ strategy
788
+ } = state;
789
+ // A MouseEvent's client{X,Y} coords can be up to 2 pixels off a
790
+ // ClientRect's bounds, despite the event listener being triggered. A
791
+ // padding of 2 seems to handle this issue.
792
+ const {
793
+ padding = 2,
794
+ x,
795
+ y
796
+ } = evaluate(options, state);
797
+ const nativeClientRects = Array.from((await (platform.getClientRects == null ? void 0 : platform.getClientRects(elements.reference))) || []);
798
+ const clientRects = getRectsByLine(nativeClientRects);
799
+ const fallback = rectToClientRect(getBoundingRect(nativeClientRects));
800
+ const paddingObject = getPaddingObject(padding);
801
+ function getBoundingClientRect() {
802
+ // There are two rects and they are disjoined.
803
+ if (clientRects.length === 2 && clientRects[0].left > clientRects[1].right && x != null && y != null) {
804
+ // Find the first rect in which the point is fully inside.
805
+ return clientRects.find(rect => x > rect.left - paddingObject.left && x < rect.right + paddingObject.right && y > rect.top - paddingObject.top && y < rect.bottom + paddingObject.bottom) || fallback;
806
+ }
807
+
808
+ // There are 2 or more connected rects.
809
+ if (clientRects.length >= 2) {
810
+ if (getSideAxis(placement) === 'y') {
811
+ const firstRect = clientRects[0];
812
+ const lastRect = clientRects[clientRects.length - 1];
813
+ const isTop = getSide(placement) === 'top';
814
+ const top = firstRect.top;
815
+ const bottom = lastRect.bottom;
816
+ const left = isTop ? firstRect.left : lastRect.left;
817
+ const right = isTop ? firstRect.right : lastRect.right;
818
+ const width = right - left;
819
+ const height = bottom - top;
820
+ return {
821
+ top,
822
+ bottom,
823
+ left,
824
+ right,
825
+ width,
826
+ height,
827
+ x: left,
828
+ y: top
829
+ };
830
+ }
831
+ const isLeftSide = getSide(placement) === 'left';
832
+ const maxRight = max(...clientRects.map(rect => rect.right));
833
+ const minLeft = min(...clientRects.map(rect => rect.left));
834
+ const measureRects = clientRects.filter(rect => isLeftSide ? rect.left === minLeft : rect.right === maxRight);
835
+ const top = measureRects[0].top;
836
+ const bottom = measureRects[measureRects.length - 1].bottom;
837
+ const left = minLeft;
838
+ const right = maxRight;
839
+ const width = right - left;
840
+ const height = bottom - top;
841
+ return {
842
+ top,
843
+ bottom,
844
+ left,
845
+ right,
846
+ width,
847
+ height,
848
+ x: left,
849
+ y: top
850
+ };
851
+ }
852
+ return fallback;
853
+ }
854
+ const resetRects = await platform.getElementRects({
855
+ reference: {
856
+ getBoundingClientRect
857
+ },
858
+ floating: elements.floating,
859
+ strategy
860
+ });
861
+ if (rects.reference.x !== resetRects.reference.x || rects.reference.y !== resetRects.reference.y || rects.reference.width !== resetRects.reference.width || rects.reference.height !== resetRects.reference.height) {
862
+ return {
863
+ reset: {
864
+ rects: resetRects
865
+ }
866
+ };
867
+ }
868
+ return {};
869
+ }
870
+ };
871
+ };
872
+
873
+ const originSides = /*#__PURE__*/new Set(['left', 'top']);
874
+
875
+ // For type backwards-compatibility, the `OffsetOptions` type was also
876
+ // Derivable.
877
+
878
+ async function convertValueToCoords(state, options) {
879
+ const {
880
+ placement,
881
+ platform,
882
+ elements
883
+ } = state;
884
+ const rtl = await (platform.isRTL == null ? void 0 : platform.isRTL(elements.floating));
885
+ const side = getSide(placement);
886
+ const alignment = getAlignment(placement);
887
+ const isVertical = getSideAxis(placement) === 'y';
888
+ const mainAxisMulti = originSides.has(side) ? -1 : 1;
889
+ const crossAxisMulti = rtl && isVertical ? -1 : 1;
890
+ const rawValue = evaluate(options, state);
891
+
892
+ // eslint-disable-next-line prefer-const
893
+ let {
894
+ mainAxis,
895
+ crossAxis,
896
+ alignmentAxis
897
+ } = typeof rawValue === 'number' ? {
898
+ mainAxis: rawValue,
899
+ crossAxis: 0,
900
+ alignmentAxis: null
901
+ } : {
902
+ mainAxis: rawValue.mainAxis || 0,
903
+ crossAxis: rawValue.crossAxis || 0,
904
+ alignmentAxis: rawValue.alignmentAxis
905
+ };
906
+ if (alignment && typeof alignmentAxis === 'number') {
907
+ crossAxis = alignment === 'end' ? alignmentAxis * -1 : alignmentAxis;
908
+ }
909
+ return isVertical ? {
910
+ x: crossAxis * crossAxisMulti,
911
+ y: mainAxis * mainAxisMulti
912
+ } : {
913
+ x: mainAxis * mainAxisMulti,
914
+ y: crossAxis * crossAxisMulti
915
+ };
916
+ }
917
+
918
+ /**
919
+ * Modifies the placement by translating the floating element along the
920
+ * specified axes.
921
+ * A number (shorthand for `mainAxis` or distance), or an axes configuration
922
+ * object may be passed.
923
+ * @see https://floating-ui.com/docs/offset
924
+ */
925
+ const offset = function (options) {
926
+ if (options === void 0) {
927
+ options = 0;
928
+ }
929
+ return {
930
+ name: 'offset',
931
+ options,
932
+ async fn(state) {
933
+ var _middlewareData$offse, _middlewareData$arrow;
934
+ const {
935
+ x,
936
+ y,
937
+ placement,
938
+ middlewareData
939
+ } = state;
940
+ const diffCoords = await convertValueToCoords(state, options);
941
+
942
+ // If the placement is the same and the arrow caused an alignment offset
943
+ // then we don't need to change the positioning coordinates.
944
+ if (placement === ((_middlewareData$offse = middlewareData.offset) == null ? void 0 : _middlewareData$offse.placement) && (_middlewareData$arrow = middlewareData.arrow) != null && _middlewareData$arrow.alignmentOffset) {
945
+ return {};
946
+ }
947
+ return {
948
+ x: x + diffCoords.x,
949
+ y: y + diffCoords.y,
950
+ data: {
951
+ ...diffCoords,
952
+ placement
953
+ }
954
+ };
955
+ }
956
+ };
957
+ };
958
+
959
+ /**
960
+ * Optimizes the visibility of the floating element by shifting it in order to
961
+ * keep it in view when it will overflow the clipping boundary.
962
+ * @see https://floating-ui.com/docs/shift
963
+ */
964
+ const shift = function (options) {
965
+ if (options === void 0) {
966
+ options = {};
967
+ }
968
+ return {
969
+ name: 'shift',
970
+ options,
971
+ async fn(state) {
972
+ const {
973
+ x,
974
+ y,
975
+ placement,
976
+ platform
977
+ } = state;
978
+ const {
979
+ mainAxis: checkMainAxis = true,
980
+ crossAxis: checkCrossAxis = false,
981
+ limiter = {
982
+ fn: _ref => {
983
+ let {
984
+ x,
985
+ y
986
+ } = _ref;
987
+ return {
988
+ x,
989
+ y
990
+ };
991
+ }
992
+ },
993
+ ...detectOverflowOptions
994
+ } = evaluate(options, state);
995
+ const coords = {
996
+ x,
997
+ y
998
+ };
999
+ const overflow = await platform.detectOverflow(state, detectOverflowOptions);
1000
+ const crossAxis = getSideAxis(getSide(placement));
1001
+ const mainAxis = getOppositeAxis(crossAxis);
1002
+ let mainAxisCoord = coords[mainAxis];
1003
+ let crossAxisCoord = coords[crossAxis];
1004
+ if (checkMainAxis) {
1005
+ const minSide = mainAxis === 'y' ? 'top' : 'left';
1006
+ const maxSide = mainAxis === 'y' ? 'bottom' : 'right';
1007
+ const min = mainAxisCoord + overflow[minSide];
1008
+ const max = mainAxisCoord - overflow[maxSide];
1009
+ mainAxisCoord = clamp(min, mainAxisCoord, max);
1010
+ }
1011
+ if (checkCrossAxis) {
1012
+ const minSide = crossAxis === 'y' ? 'top' : 'left';
1013
+ const maxSide = crossAxis === 'y' ? 'bottom' : 'right';
1014
+ const min = crossAxisCoord + overflow[minSide];
1015
+ const max = crossAxisCoord - overflow[maxSide];
1016
+ crossAxisCoord = clamp(min, crossAxisCoord, max);
1017
+ }
1018
+ const limitedCoords = limiter.fn({
1019
+ ...state,
1020
+ [mainAxis]: mainAxisCoord,
1021
+ [crossAxis]: crossAxisCoord
1022
+ });
1023
+ return {
1024
+ ...limitedCoords,
1025
+ data: {
1026
+ x: limitedCoords.x - x,
1027
+ y: limitedCoords.y - y,
1028
+ enabled: {
1029
+ [mainAxis]: checkMainAxis,
1030
+ [crossAxis]: checkCrossAxis
1031
+ }
1032
+ }
1033
+ };
1034
+ }
1035
+ };
1036
+ };
1037
+ /**
1038
+ * Built-in `limiter` that will stop `shift()` at a certain point.
1039
+ */
1040
+ const limitShift = function (options) {
1041
+ if (options === void 0) {
1042
+ options = {};
1043
+ }
1044
+ return {
1045
+ options,
1046
+ fn(state) {
1047
+ const {
1048
+ x,
1049
+ y,
1050
+ placement,
1051
+ rects,
1052
+ middlewareData
1053
+ } = state;
1054
+ const {
1055
+ offset = 0,
1056
+ mainAxis: checkMainAxis = true,
1057
+ crossAxis: checkCrossAxis = true
1058
+ } = evaluate(options, state);
1059
+ const coords = {
1060
+ x,
1061
+ y
1062
+ };
1063
+ const crossAxis = getSideAxis(placement);
1064
+ const mainAxis = getOppositeAxis(crossAxis);
1065
+ let mainAxisCoord = coords[mainAxis];
1066
+ let crossAxisCoord = coords[crossAxis];
1067
+ const rawOffset = evaluate(offset, state);
1068
+ const computedOffset = typeof rawOffset === 'number' ? {
1069
+ mainAxis: rawOffset,
1070
+ crossAxis: 0
1071
+ } : {
1072
+ mainAxis: 0,
1073
+ crossAxis: 0,
1074
+ ...rawOffset
1075
+ };
1076
+ if (checkMainAxis) {
1077
+ const len = mainAxis === 'y' ? 'height' : 'width';
1078
+ const limitMin = rects.reference[mainAxis] - rects.floating[len] + computedOffset.mainAxis;
1079
+ const limitMax = rects.reference[mainAxis] + rects.reference[len] - computedOffset.mainAxis;
1080
+ if (mainAxisCoord < limitMin) {
1081
+ mainAxisCoord = limitMin;
1082
+ } else if (mainAxisCoord > limitMax) {
1083
+ mainAxisCoord = limitMax;
1084
+ }
1085
+ }
1086
+ if (checkCrossAxis) {
1087
+ var _middlewareData$offse, _middlewareData$offse2;
1088
+ const len = mainAxis === 'y' ? 'width' : 'height';
1089
+ const isOriginSide = originSides.has(getSide(placement));
1090
+ const limitMin = rects.reference[crossAxis] - rects.floating[len] + (isOriginSide ? ((_middlewareData$offse = middlewareData.offset) == null ? void 0 : _middlewareData$offse[crossAxis]) || 0 : 0) + (isOriginSide ? 0 : computedOffset.crossAxis);
1091
+ const limitMax = rects.reference[crossAxis] + rects.reference[len] + (isOriginSide ? 0 : ((_middlewareData$offse2 = middlewareData.offset) == null ? void 0 : _middlewareData$offse2[crossAxis]) || 0) - (isOriginSide ? computedOffset.crossAxis : 0);
1092
+ if (crossAxisCoord < limitMin) {
1093
+ crossAxisCoord = limitMin;
1094
+ } else if (crossAxisCoord > limitMax) {
1095
+ crossAxisCoord = limitMax;
1096
+ }
1097
+ }
1098
+ return {
1099
+ [mainAxis]: mainAxisCoord,
1100
+ [crossAxis]: crossAxisCoord
1101
+ };
1102
+ }
1103
+ };
1104
+ };
1105
+
1106
+ /**
1107
+ * Provides data that allows you to change the size of the floating element —
1108
+ * for instance, prevent it from overflowing the clipping boundary or match the
1109
+ * width of the reference element.
1110
+ * @see https://floating-ui.com/docs/size
1111
+ */
1112
+ const size = function (options) {
1113
+ if (options === void 0) {
1114
+ options = {};
1115
+ }
1116
+ return {
1117
+ name: 'size',
1118
+ options,
1119
+ async fn(state) {
1120
+ var _state$middlewareData, _state$middlewareData2;
1121
+ const {
1122
+ placement,
1123
+ rects,
1124
+ platform,
1125
+ elements
1126
+ } = state;
1127
+ const {
1128
+ apply = () => {},
1129
+ ...detectOverflowOptions
1130
+ } = evaluate(options, state);
1131
+ const overflow = await platform.detectOverflow(state, detectOverflowOptions);
1132
+ const side = getSide(placement);
1133
+ const alignment = getAlignment(placement);
1134
+ const isYAxis = getSideAxis(placement) === 'y';
1135
+ const {
1136
+ width,
1137
+ height
1138
+ } = rects.floating;
1139
+ let heightSide;
1140
+ let widthSide;
1141
+ if (side === 'top' || side === 'bottom') {
1142
+ heightSide = side;
1143
+ widthSide = alignment === ((await (platform.isRTL == null ? void 0 : platform.isRTL(elements.floating))) ? 'start' : 'end') ? 'left' : 'right';
1144
+ } else {
1145
+ widthSide = side;
1146
+ heightSide = alignment === 'end' ? 'top' : 'bottom';
1147
+ }
1148
+ const maximumClippingHeight = height - overflow.top - overflow.bottom;
1149
+ const maximumClippingWidth = width - overflow.left - overflow.right;
1150
+ const overflowAvailableHeight = min(height - overflow[heightSide], maximumClippingHeight);
1151
+ const overflowAvailableWidth = min(width - overflow[widthSide], maximumClippingWidth);
1152
+ const noShift = !state.middlewareData.shift;
1153
+ let availableHeight = overflowAvailableHeight;
1154
+ let availableWidth = overflowAvailableWidth;
1155
+ if ((_state$middlewareData = state.middlewareData.shift) != null && _state$middlewareData.enabled.x) {
1156
+ availableWidth = maximumClippingWidth;
1157
+ }
1158
+ if ((_state$middlewareData2 = state.middlewareData.shift) != null && _state$middlewareData2.enabled.y) {
1159
+ availableHeight = maximumClippingHeight;
1160
+ }
1161
+ if (noShift && !alignment) {
1162
+ const xMin = max(overflow.left, 0);
1163
+ const xMax = max(overflow.right, 0);
1164
+ const yMin = max(overflow.top, 0);
1165
+ const yMax = max(overflow.bottom, 0);
1166
+ if (isYAxis) {
1167
+ availableWidth = width - 2 * (xMin !== 0 || xMax !== 0 ? xMin + xMax : max(overflow.left, overflow.right));
1168
+ } else {
1169
+ availableHeight = height - 2 * (yMin !== 0 || yMax !== 0 ? yMin + yMax : max(overflow.top, overflow.bottom));
1170
+ }
1171
+ }
1172
+ await apply({
1173
+ ...state,
1174
+ availableWidth,
1175
+ availableHeight
1176
+ });
1177
+ const nextDimensions = await platform.getDimensions(elements.floating);
1178
+ if (width !== nextDimensions.width || height !== nextDimensions.height) {
1179
+ return {
1180
+ reset: {
1181
+ rects: true
1182
+ }
1183
+ };
1184
+ }
1185
+ return {};
1186
+ }
1187
+ };
1188
+ };
1189
+
1190
+ exports.arrow = arrow;
1191
+ exports.autoPlacement = autoPlacement;
1192
+ exports.computePosition = computePosition;
1193
+ exports.detectOverflow = detectOverflow;
1194
+ exports.flip = flip;
1195
+ exports.hide = hide;
1196
+ exports.inline = inline;
1197
+ exports.limitShift = limitShift;
1198
+ exports.offset = offset;
1199
+ exports.rectToClientRect = rectToClientRect;
1200
+ exports.shift = shift;
1201
+ exports.size = size;
1202
+
1203
+ }));