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