motion 10.18.0 → 11.11.13

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 (384) hide show
  1. package/.turbo/turbo-build.log +32 -0
  2. package/{LICENSE → LICENSE.md} +2 -2
  3. package/README.md +99 -7
  4. package/dist/cjs/index.js +6117 -0
  5. package/dist/cjs/react-client.js +10003 -0
  6. package/dist/cjs/react-m.js +1852 -0
  7. package/dist/es/framer-motion/dist/es/animation/GroupPlaybackControls.mjs +78 -0
  8. package/dist/es/framer-motion/dist/es/animation/animate/index.mjs +34 -0
  9. package/dist/es/framer-motion/dist/es/animation/animate/resolve-subjects.mjs +19 -0
  10. package/dist/es/framer-motion/dist/es/animation/animate/sequence.mjs +14 -0
  11. package/dist/es/framer-motion/dist/es/animation/animate/single-value.mjs +11 -0
  12. package/dist/es/framer-motion/dist/es/animation/animate/subject.mjs +52 -0
  13. package/dist/es/framer-motion/dist/es/animation/animators/AcceleratedAnimation.mjs +318 -0
  14. package/dist/es/framer-motion/dist/es/animation/animators/BaseAnimation.mjs +113 -0
  15. package/dist/es/framer-motion/dist/es/animation/animators/MainThreadAnimation.mjs +384 -0
  16. package/dist/es/framer-motion/dist/es/animation/animators/drivers/driver-frameloop.mjs +17 -0
  17. package/dist/es/framer-motion/dist/es/animation/animators/utils/accelerated-values.mjs +14 -0
  18. package/dist/es/framer-motion/dist/es/animation/animators/utils/can-animate.mjs +42 -0
  19. package/dist/es/framer-motion/dist/es/animation/animators/waapi/NativeAnimation.mjs +169 -0
  20. package/dist/es/framer-motion/dist/es/animation/animators/waapi/animate-elements.mjs +36 -0
  21. package/dist/es/framer-motion/dist/es/animation/animators/waapi/animate-style.mjs +12 -0
  22. package/dist/es/framer-motion/dist/es/animation/animators/waapi/easing.mjs +44 -0
  23. package/dist/es/framer-motion/dist/es/animation/animators/waapi/index.mjs +23 -0
  24. package/dist/es/framer-motion/dist/es/animation/animators/waapi/utils/attach-timeline.mjs +6 -0
  25. package/dist/es/framer-motion/dist/es/animation/animators/waapi/utils/get-final-keyframe.mjs +12 -0
  26. package/dist/es/framer-motion/dist/es/animation/animators/waapi/utils/linear.mjs +15 -0
  27. package/dist/es/framer-motion/dist/es/animation/animators/waapi/utils/memo-supports.mjs +9 -0
  28. package/dist/es/framer-motion/dist/es/animation/animators/waapi/utils/style.mjs +8 -0
  29. package/dist/es/framer-motion/dist/es/animation/animators/waapi/utils/supports-flags.mjs +9 -0
  30. package/dist/es/framer-motion/dist/es/animation/animators/waapi/utils/supports-linear-easing.mjs +15 -0
  31. package/dist/es/framer-motion/dist/es/animation/animators/waapi/utils/supports-partial-keyframes.mjs +13 -0
  32. package/dist/es/framer-motion/dist/es/animation/animators/waapi/utils/supports-waapi.mjs +5 -0
  33. package/dist/es/framer-motion/dist/es/animation/generators/inertia.mjs +87 -0
  34. package/dist/es/framer-motion/dist/es/animation/generators/keyframes.mjs +51 -0
  35. package/dist/es/framer-motion/dist/es/animation/generators/spring/find.mjs +89 -0
  36. package/dist/es/framer-motion/dist/es/animation/generators/spring/index.mjs +129 -0
  37. package/dist/es/framer-motion/dist/es/animation/generators/utils/calc-duration.mjs +17 -0
  38. package/dist/es/framer-motion/dist/es/animation/generators/utils/is-generator.mjs +5 -0
  39. package/dist/es/framer-motion/dist/es/animation/generators/utils/velocity.mjs +9 -0
  40. package/dist/es/framer-motion/dist/es/animation/hooks/animation-controls.mjs +80 -0
  41. package/dist/es/framer-motion/dist/es/animation/hooks/use-animate-style.mjs +17 -0
  42. package/dist/es/framer-motion/dist/es/animation/hooks/use-animate.mjs +17 -0
  43. package/dist/es/framer-motion/dist/es/animation/hooks/use-animated-state.mjs +64 -0
  44. package/dist/es/framer-motion/dist/es/animation/hooks/use-animation.mjs +41 -0
  45. package/dist/es/framer-motion/dist/es/animation/interfaces/motion-value.mjs +113 -0
  46. package/dist/es/framer-motion/dist/es/animation/interfaces/visual-element-target.mjs +75 -0
  47. package/dist/es/framer-motion/dist/es/animation/interfaces/visual-element-variant.mjs +66 -0
  48. package/dist/es/framer-motion/dist/es/animation/interfaces/visual-element.mjs +26 -0
  49. package/dist/es/framer-motion/dist/es/animation/optimized-appear/data-id.mjs +6 -0
  50. package/dist/es/framer-motion/dist/es/animation/optimized-appear/get-appear-id.mjs +7 -0
  51. package/dist/es/framer-motion/dist/es/animation/optimized-appear/handoff.mjs +40 -0
  52. package/dist/es/framer-motion/dist/es/animation/optimized-appear/start.mjs +173 -0
  53. package/dist/es/framer-motion/dist/es/animation/optimized-appear/store-id.mjs +8 -0
  54. package/dist/es/framer-motion/dist/es/animation/optimized-appear/store.mjs +4 -0
  55. package/dist/es/framer-motion/dist/es/animation/sequence/create.mjs +230 -0
  56. package/dist/es/framer-motion/dist/es/animation/sequence/utils/calc-time.mjs +21 -0
  57. package/dist/es/framer-motion/dist/es/animation/sequence/utils/edit.mjs +31 -0
  58. package/dist/es/framer-motion/dist/es/animation/sequence/utils/sort.mjs +14 -0
  59. package/dist/es/framer-motion/dist/es/animation/utils/create-visual-element.mjs +44 -0
  60. package/dist/es/framer-motion/dist/es/animation/utils/default-transitions.mjs +40 -0
  61. package/dist/es/framer-motion/dist/es/animation/utils/get-value-transition.mjs +9 -0
  62. package/dist/es/framer-motion/dist/es/animation/utils/is-animatable.mjs +30 -0
  63. package/dist/es/framer-motion/dist/es/animation/utils/is-animation-controls.mjs +7 -0
  64. package/dist/es/framer-motion/dist/es/animation/utils/is-dom-keyframes.mjs +5 -0
  65. package/dist/es/framer-motion/dist/es/animation/utils/is-keyframes-target.mjs +5 -0
  66. package/dist/es/framer-motion/dist/es/animation/utils/is-none.mjs +15 -0
  67. package/dist/es/framer-motion/dist/es/animation/utils/is-transition-defined.mjs +10 -0
  68. package/dist/es/framer-motion/dist/es/animation/utils/stagger.mjs +26 -0
  69. package/dist/es/framer-motion/dist/es/components/AnimatePresence/PopChild.mjs +77 -0
  70. package/dist/es/framer-motion/dist/es/components/AnimatePresence/PresenceChild.mjs +61 -0
  71. package/dist/es/framer-motion/dist/es/components/AnimatePresence/index.mjs +163 -0
  72. package/dist/es/framer-motion/dist/es/components/AnimatePresence/use-presence.mjs +66 -0
  73. package/dist/es/framer-motion/dist/es/components/AnimatePresence/utils.mjs +14 -0
  74. package/dist/es/framer-motion/dist/es/components/AnimateSharedLayout.mjs +15 -0
  75. package/dist/es/framer-motion/dist/es/components/LayoutGroup/index.mjs +32 -0
  76. package/dist/es/framer-motion/dist/es/components/LazyMotion/index.mjs +68 -0
  77. package/dist/es/framer-motion/dist/es/components/MotionConfig/index.mjs +48 -0
  78. package/dist/es/framer-motion/dist/es/components/Reorder/Group.mjs +53 -0
  79. package/dist/es/framer-motion/dist/es/components/Reorder/Item.mjs +34 -0
  80. package/dist/es/framer-motion/dist/es/components/Reorder/namespace.mjs +2 -0
  81. package/dist/es/framer-motion/dist/es/components/Reorder/utils/check-reorder.mjs +24 -0
  82. package/dist/es/framer-motion/dist/es/context/DeprecatedLayoutGroupContext.mjs +10 -0
  83. package/dist/es/framer-motion/dist/es/context/LayoutGroupContext.mjs +6 -0
  84. package/dist/es/framer-motion/dist/es/context/LazyContext.mjs +6 -0
  85. package/dist/es/framer-motion/dist/es/context/MotionConfigContext.mjs +13 -0
  86. package/dist/es/framer-motion/dist/es/context/MotionContext/create.mjs +13 -0
  87. package/dist/es/framer-motion/dist/es/context/MotionContext/index.mjs +6 -0
  88. package/dist/es/framer-motion/dist/es/context/MotionContext/utils.mjs +17 -0
  89. package/dist/es/framer-motion/dist/es/context/PresenceContext.mjs +9 -0
  90. package/dist/es/framer-motion/dist/es/context/ReorderContext.mjs +6 -0
  91. package/dist/es/framer-motion/dist/es/context/SwitchLayoutGroupContext.mjs +9 -0
  92. package/dist/es/framer-motion/dist/es/easing/anticipate.mjs +5 -0
  93. package/dist/es/framer-motion/dist/es/easing/back.mjs +9 -0
  94. package/dist/es/framer-motion/dist/es/easing/circ.mjs +8 -0
  95. package/dist/es/framer-motion/dist/es/easing/cubic-bezier.mjs +51 -0
  96. package/dist/es/framer-motion/dist/es/easing/ease.mjs +7 -0
  97. package/dist/es/framer-motion/dist/es/easing/modifiers/mirror.mjs +5 -0
  98. package/dist/es/framer-motion/dist/es/easing/modifiers/reverse.mjs +5 -0
  99. package/dist/es/framer-motion/dist/es/easing/steps.mjs +15 -0
  100. package/dist/es/framer-motion/dist/es/easing/utils/create-generator-easing.mjs +17 -0
  101. package/dist/es/framer-motion/dist/es/easing/utils/get-easing-for-segment.mjs +8 -0
  102. package/dist/es/framer-motion/dist/es/easing/utils/is-bezier-definition.mjs +3 -0
  103. package/dist/es/framer-motion/dist/es/easing/utils/is-easing-array.mjs +5 -0
  104. package/dist/es/framer-motion/dist/es/easing/utils/map.mjs +38 -0
  105. package/dist/es/framer-motion/dist/es/events/add-dom-event.mjs +6 -0
  106. package/dist/es/framer-motion/dist/es/events/add-pointer-event.mjs +8 -0
  107. package/dist/es/framer-motion/dist/es/events/event-info.mjs +15 -0
  108. package/dist/es/framer-motion/dist/es/events/use-dom-event.mjs +34 -0
  109. package/dist/es/framer-motion/dist/es/events/utils/is-primary-pointer.mjs +18 -0
  110. package/dist/es/framer-motion/dist/es/frameloop/batcher.mjs +74 -0
  111. package/dist/es/framer-motion/dist/es/frameloop/frame.mjs +6 -0
  112. package/dist/es/framer-motion/dist/es/frameloop/index-legacy.mjs +20 -0
  113. package/dist/es/framer-motion/dist/es/frameloop/microtask.mjs +5 -0
  114. package/dist/es/framer-motion/dist/es/frameloop/render-step.mjs +80 -0
  115. package/dist/es/framer-motion/dist/es/frameloop/sync-time.mjs +31 -0
  116. package/dist/es/framer-motion/dist/es/gestures/drag/VisualElementDragControls.mjs +487 -0
  117. package/dist/es/framer-motion/dist/es/gestures/drag/index.mjs +27 -0
  118. package/dist/es/framer-motion/dist/es/gestures/drag/use-drag-controls.mjs +88 -0
  119. package/dist/es/framer-motion/dist/es/gestures/drag/utils/constraints.mjs +129 -0
  120. package/dist/es/framer-motion/dist/es/gestures/drag/utils/lock.mjs +53 -0
  121. package/dist/es/framer-motion/dist/es/gestures/focus.mjs +41 -0
  122. package/dist/es/framer-motion/dist/es/gestures/hover.mjs +33 -0
  123. package/dist/es/framer-motion/dist/es/gestures/pan/PanSession.mjs +156 -0
  124. package/dist/es/framer-motion/dist/es/gestures/pan/index.mjs +50 -0
  125. package/dist/es/framer-motion/dist/es/gestures/press.mjs +130 -0
  126. package/dist/es/framer-motion/dist/es/gestures/utils/is-node-or-child.mjs +20 -0
  127. package/dist/es/framer-motion/dist/es/motion/features/Feature.mjs +9 -0
  128. package/dist/es/framer-motion/dist/es/motion/features/animation/exit.mjs +31 -0
  129. package/dist/es/framer-motion/dist/es/motion/features/animation/index.mjs +41 -0
  130. package/dist/es/framer-motion/dist/es/motion/features/animations.mjs +13 -0
  131. package/dist/es/framer-motion/dist/es/motion/features/definitions.mjs +28 -0
  132. package/dist/es/framer-motion/dist/es/motion/features/drag.mjs +17 -0
  133. package/dist/es/framer-motion/dist/es/motion/features/gestures.mjs +21 -0
  134. package/dist/es/framer-motion/dist/es/motion/features/layout/MeasureLayout.mjs +134 -0
  135. package/dist/es/framer-motion/dist/es/motion/features/layout.mjs +11 -0
  136. package/dist/es/framer-motion/dist/es/motion/features/load-features.mjs +12 -0
  137. package/dist/es/framer-motion/dist/es/motion/features/viewport/index.mjs +72 -0
  138. package/dist/es/framer-motion/dist/es/motion/features/viewport/observers.mjs +49 -0
  139. package/dist/es/framer-motion/dist/es/motion/index.mjs +98 -0
  140. package/dist/es/framer-motion/dist/es/motion/utils/is-forced-motion-value.mjs +11 -0
  141. package/dist/es/framer-motion/dist/es/motion/utils/is-motion-component.mjs +12 -0
  142. package/dist/es/framer-motion/dist/es/motion/utils/symbol.mjs +3 -0
  143. package/dist/es/framer-motion/dist/es/motion/utils/unwrap-motion-component.mjs +17 -0
  144. package/dist/es/framer-motion/dist/es/motion/utils/use-motion-ref.mjs +36 -0
  145. package/dist/es/framer-motion/dist/es/motion/utils/use-visual-element.mjs +134 -0
  146. package/dist/es/framer-motion/dist/es/motion/utils/use-visual-state.mjs +82 -0
  147. package/dist/es/framer-motion/dist/es/motion/utils/valid-prop.mjs +57 -0
  148. package/dist/es/framer-motion/dist/es/projection/animation/mix-values.mjs +93 -0
  149. package/dist/es/framer-motion/dist/es/projection/geometry/conversion.mjs +33 -0
  150. package/dist/es/framer-motion/dist/es/projection/geometry/copy.mjs +31 -0
  151. package/dist/es/framer-motion/dist/es/projection/geometry/delta-apply.mjs +119 -0
  152. package/dist/es/framer-motion/dist/es/projection/geometry/delta-calc.mjs +52 -0
  153. package/dist/es/framer-motion/dist/es/projection/geometry/delta-remove.mjs +54 -0
  154. package/dist/es/framer-motion/dist/es/projection/geometry/models.mjs +17 -0
  155. package/dist/es/framer-motion/dist/es/projection/geometry/utils.mjs +31 -0
  156. package/dist/es/framer-motion/dist/es/projection/node/DocumentProjectionNode.mjs +13 -0
  157. package/dist/es/framer-motion/dist/es/projection/node/HTMLProjectionNode.mjs +27 -0
  158. package/dist/es/framer-motion/dist/es/projection/node/create-projection-node.mjs +1583 -0
  159. package/dist/es/framer-motion/dist/es/projection/node/group.mjs +24 -0
  160. package/dist/es/framer-motion/dist/es/projection/node/state.mjs +19 -0
  161. package/dist/es/framer-motion/dist/es/projection/shared/stack.mjs +112 -0
  162. package/dist/es/framer-motion/dist/es/projection/styles/scale-border-radius.mjs +41 -0
  163. package/dist/es/framer-motion/dist/es/projection/styles/scale-box-shadow.mjs +35 -0
  164. package/dist/es/framer-motion/dist/es/projection/styles/scale-correction.mjs +6 -0
  165. package/dist/es/framer-motion/dist/es/projection/styles/transform.mjs +49 -0
  166. package/dist/es/framer-motion/dist/es/projection/use-instant-layout-transition.mjs +14 -0
  167. package/dist/es/framer-motion/dist/es/projection/use-reset-projection.mjs +14 -0
  168. package/dist/es/framer-motion/dist/es/projection/utils/each-axis.mjs +5 -0
  169. package/dist/es/framer-motion/dist/es/projection/utils/has-transform.mjs +26 -0
  170. package/dist/es/framer-motion/dist/es/projection/utils/measure.mjs +17 -0
  171. package/dist/es/framer-motion/dist/es/render/VisualElement.mjs +477 -0
  172. package/dist/es/framer-motion/dist/es/render/components/create-factory.mjs +23 -0
  173. package/dist/es/framer-motion/dist/es/render/components/create-proxy.mjs +38 -0
  174. package/dist/es/framer-motion/dist/es/render/components/m/create.mjs +6 -0
  175. package/dist/es/framer-motion/dist/es/render/components/m/elements.mjs +227 -0
  176. package/dist/es/framer-motion/dist/es/render/components/m/proxy.mjs +6 -0
  177. package/dist/es/framer-motion/dist/es/render/components/motion/create.mjs +15 -0
  178. package/dist/es/framer-motion/dist/es/render/components/motion/elements.mjs +194 -0
  179. package/dist/es/framer-motion/dist/es/render/components/motion/proxy.mjs +6 -0
  180. package/dist/es/framer-motion/dist/es/render/dom/DOMKeyframesResolver.mjs +130 -0
  181. package/dist/es/framer-motion/dist/es/render/dom/DOMVisualElement.mjs +28 -0
  182. package/dist/es/framer-motion/dist/es/render/dom/create-visual-element.mjs +14 -0
  183. package/dist/es/framer-motion/dist/es/render/dom/features-animation.mjs +14 -0
  184. package/dist/es/framer-motion/dist/es/render/dom/features-max.mjs +14 -0
  185. package/dist/es/framer-motion/dist/es/render/dom/features-min.mjs +12 -0
  186. package/dist/es/framer-motion/dist/es/render/dom/resize/handle-element.mjs +64 -0
  187. package/dist/es/framer-motion/dist/es/render/dom/resize/handle-window.mjs +30 -0
  188. package/dist/es/framer-motion/dist/es/render/dom/resize/index.mjs +8 -0
  189. package/dist/es/framer-motion/dist/es/render/dom/scroll/index.mjs +80 -0
  190. package/dist/es/framer-motion/dist/es/render/dom/scroll/info.mjs +56 -0
  191. package/dist/es/framer-motion/dist/es/render/dom/scroll/observe.mjs +18 -0
  192. package/dist/es/framer-motion/dist/es/render/dom/scroll/offsets/edge.mjs +45 -0
  193. package/dist/es/framer-motion/dist/es/render/dom/scroll/offsets/index.mjs +59 -0
  194. package/dist/es/framer-motion/dist/es/render/dom/scroll/offsets/inset.mjs +45 -0
  195. package/dist/es/framer-motion/dist/es/render/dom/scroll/offsets/offset.mjs +35 -0
  196. package/dist/es/framer-motion/dist/es/render/dom/scroll/offsets/presets.mjs +20 -0
  197. package/dist/es/framer-motion/dist/es/render/dom/scroll/on-scroll-handler.mjs +48 -0
  198. package/dist/es/framer-motion/dist/es/render/dom/scroll/supports.mjs +5 -0
  199. package/dist/es/framer-motion/dist/es/render/dom/scroll/track.mjs +84 -0
  200. package/dist/es/framer-motion/dist/es/render/dom/use-render.mjs +33 -0
  201. package/dist/es/framer-motion/dist/es/render/dom/utils/camel-to-dash.mjs +6 -0
  202. package/dist/es/framer-motion/dist/es/render/dom/utils/css-variables-conversion.mjs +42 -0
  203. package/dist/es/framer-motion/dist/es/render/dom/utils/filter-props.mjs +59 -0
  204. package/dist/es/framer-motion/dist/es/render/dom/utils/is-css-variable.mjs +15 -0
  205. package/dist/es/framer-motion/dist/es/render/dom/utils/is-svg-component.mjs +30 -0
  206. package/dist/es/framer-motion/dist/es/render/dom/utils/is-svg-element.mjs +5 -0
  207. package/dist/es/framer-motion/dist/es/render/dom/utils/resolve-element.mjs +28 -0
  208. package/dist/es/framer-motion/dist/es/render/dom/utils/unit-conversion.mjs +65 -0
  209. package/dist/es/framer-motion/dist/es/render/dom/value-types/animatable-none.mjs +15 -0
  210. package/dist/es/framer-motion/dist/es/render/dom/value-types/defaults.mjs +30 -0
  211. package/dist/es/framer-motion/dist/es/render/dom/value-types/dimensions.mjs +15 -0
  212. package/dist/es/framer-motion/dist/es/render/dom/value-types/find.mjs +15 -0
  213. package/dist/es/framer-motion/dist/es/render/dom/value-types/get-as-type.mjs +10 -0
  214. package/dist/es/framer-motion/dist/es/render/dom/value-types/number-browser.mjs +41 -0
  215. package/dist/es/framer-motion/dist/es/render/dom/value-types/number.mjs +18 -0
  216. package/dist/es/framer-motion/dist/es/render/dom/value-types/test.mjs +6 -0
  217. package/dist/es/framer-motion/dist/es/render/dom/value-types/transform.mjs +31 -0
  218. package/dist/es/framer-motion/dist/es/render/dom/value-types/type-auto.mjs +9 -0
  219. package/dist/es/framer-motion/dist/es/render/dom/value-types/type-int.mjs +8 -0
  220. package/dist/es/framer-motion/dist/es/render/dom/viewport/index.mjs +43 -0
  221. package/dist/es/framer-motion/dist/es/render/html/HTMLVisualElement.mjs +57 -0
  222. package/dist/es/framer-motion/dist/es/render/html/config-motion.mjs +12 -0
  223. package/dist/es/framer-motion/dist/es/render/html/use-props.mjs +57 -0
  224. package/dist/es/framer-motion/dist/es/render/html/utils/build-styles.mjs +65 -0
  225. package/dist/es/framer-motion/dist/es/render/html/utils/build-transform.mjs +62 -0
  226. package/dist/es/framer-motion/dist/es/render/html/utils/create-render-state.mjs +8 -0
  227. package/dist/es/framer-motion/dist/es/render/html/utils/make-none-animatable.mjs +30 -0
  228. package/dist/es/framer-motion/dist/es/render/html/utils/render.mjs +9 -0
  229. package/dist/es/framer-motion/dist/es/render/html/utils/scrape-motion-values.mjs +20 -0
  230. package/dist/es/framer-motion/dist/es/render/html/utils/transform.mjs +28 -0
  231. package/dist/es/framer-motion/dist/es/render/object/ObjectVisualElement.mjs +41 -0
  232. package/dist/es/framer-motion/dist/es/render/store.mjs +3 -0
  233. package/dist/es/framer-motion/dist/es/render/svg/SVGVisualElement.mjs +45 -0
  234. package/dist/es/framer-motion/dist/es/render/svg/config-motion.mjs +40 -0
  235. package/dist/es/framer-motion/dist/es/render/svg/lowercase-elements.mjs +33 -0
  236. package/dist/es/framer-motion/dist/es/render/svg/use-props.mjs +24 -0
  237. package/dist/es/framer-motion/dist/es/render/svg/utils/build-attrs.mjs +52 -0
  238. package/dist/es/framer-motion/dist/es/render/svg/utils/camel-case-attrs.mjs +30 -0
  239. package/dist/es/framer-motion/dist/es/render/svg/utils/create-render-state.mjs +8 -0
  240. package/dist/es/framer-motion/dist/es/render/svg/utils/is-svg-tag.mjs +3 -0
  241. package/dist/es/framer-motion/dist/es/render/svg/utils/path.mjs +32 -0
  242. package/dist/es/framer-motion/dist/es/render/svg/utils/render.mjs +12 -0
  243. package/dist/es/framer-motion/dist/es/render/svg/utils/scrape-motion-values.mjs +19 -0
  244. package/dist/es/framer-motion/dist/es/render/svg/utils/transform-origin.mjs +18 -0
  245. package/dist/es/framer-motion/dist/es/render/utils/KeyframesResolver.mjs +164 -0
  246. package/dist/es/framer-motion/dist/es/render/utils/animation-state.mjs +332 -0
  247. package/dist/es/framer-motion/dist/es/render/utils/compare-by-depth.mjs +3 -0
  248. package/dist/es/framer-motion/dist/es/render/utils/flat-tree.mjs +24 -0
  249. package/dist/es/framer-motion/dist/es/render/utils/get-variant-context.mjs +28 -0
  250. package/dist/es/framer-motion/dist/es/render/utils/is-controlling-variants.mjs +13 -0
  251. package/dist/es/framer-motion/dist/es/render/utils/is-variant-label.mjs +8 -0
  252. package/dist/es/framer-motion/dist/es/render/utils/motion-values.mjs +59 -0
  253. package/dist/es/framer-motion/dist/es/render/utils/resolve-dynamic-variants.mjs +8 -0
  254. package/dist/es/framer-motion/dist/es/render/utils/resolve-variants.mjs +36 -0
  255. package/dist/es/framer-motion/dist/es/render/utils/setters.mjs +27 -0
  256. package/dist/es/framer-motion/dist/es/render/utils/variant-props.mjs +12 -0
  257. package/dist/es/framer-motion/dist/es/utils/GlobalConfig.mjs +6 -0
  258. package/dist/es/framer-motion/dist/es/utils/array.mjs +21 -0
  259. package/dist/es/framer-motion/dist/es/utils/clamp.mjs +9 -0
  260. package/dist/es/framer-motion/dist/es/utils/delay.mjs +24 -0
  261. package/dist/es/framer-motion/dist/es/utils/distance.mjs +9 -0
  262. package/dist/es/framer-motion/dist/es/utils/errors.mjs +18 -0
  263. package/dist/es/framer-motion/dist/es/utils/get-context-window.mjs +6 -0
  264. package/dist/es/framer-motion/dist/es/utils/hsla-to-rgba.mjs +42 -0
  265. package/dist/es/framer-motion/dist/es/utils/interpolate.mjs +75 -0
  266. package/dist/es/framer-motion/dist/es/utils/is-browser.mjs +3 -0
  267. package/dist/es/framer-motion/dist/es/utils/is-numerical-string.mjs +6 -0
  268. package/dist/es/framer-motion/dist/es/utils/is-ref-object.mjs +7 -0
  269. package/dist/es/framer-motion/dist/es/utils/is-zero-value-string.mjs +6 -0
  270. package/dist/es/framer-motion/dist/es/utils/memo.mjs +10 -0
  271. package/dist/es/framer-motion/dist/es/utils/mix/color.mjs +47 -0
  272. package/dist/es/framer-motion/dist/es/utils/mix/complex.mjs +94 -0
  273. package/dist/es/framer-motion/dist/es/utils/mix/immediate.mjs +5 -0
  274. package/dist/es/framer-motion/dist/es/utils/mix/index.mjs +14 -0
  275. package/dist/es/framer-motion/dist/es/utils/mix/number.mjs +26 -0
  276. package/dist/es/framer-motion/dist/es/utils/mix/visibility.mjs +16 -0
  277. package/dist/es/framer-motion/dist/es/utils/noop.mjs +3 -0
  278. package/dist/es/framer-motion/dist/es/utils/offsets/default.mjs +9 -0
  279. package/dist/es/framer-motion/dist/es/utils/offsets/fill.mjs +12 -0
  280. package/dist/es/framer-motion/dist/es/utils/offsets/time.mjs +5 -0
  281. package/dist/es/framer-motion/dist/es/utils/pipe.mjs +11 -0
  282. package/dist/es/framer-motion/dist/es/utils/progress.mjs +18 -0
  283. package/dist/es/framer-motion/dist/es/utils/reduced-motion/index.mjs +19 -0
  284. package/dist/es/framer-motion/dist/es/utils/reduced-motion/state.mjs +5 -0
  285. package/dist/es/framer-motion/dist/es/utils/reduced-motion/use-reduced-motion-config.mjs +19 -0
  286. package/dist/es/framer-motion/dist/es/utils/reduced-motion/use-reduced-motion.mjs +47 -0
  287. package/dist/es/framer-motion/dist/es/utils/resolve-value.mjs +11 -0
  288. package/dist/es/framer-motion/dist/es/utils/shallow-compare.mjs +14 -0
  289. package/dist/es/framer-motion/dist/es/utils/subscription-manager.mjs +40 -0
  290. package/dist/es/framer-motion/dist/es/utils/time-conversion.mjs +10 -0
  291. package/dist/es/framer-motion/dist/es/utils/transform.mjs +21 -0
  292. package/dist/es/framer-motion/dist/es/utils/use-animation-frame.mjs +21 -0
  293. package/dist/es/framer-motion/dist/es/utils/use-constant.mjs +18 -0
  294. package/dist/es/framer-motion/dist/es/utils/use-cycle.mjs +47 -0
  295. package/dist/es/framer-motion/dist/es/utils/use-force-update.mjs +19 -0
  296. package/dist/es/framer-motion/dist/es/utils/use-in-view.mjs +23 -0
  297. package/dist/es/framer-motion/dist/es/utils/use-instant-transition-state.mjs +5 -0
  298. package/dist/es/framer-motion/dist/es/utils/use-instant-transition.mjs +41 -0
  299. package/dist/es/framer-motion/dist/es/utils/use-is-mounted.mjs +15 -0
  300. package/dist/es/framer-motion/dist/es/utils/use-isomorphic-effect.mjs +6 -0
  301. package/dist/es/framer-motion/dist/es/utils/use-motion-value-event.mjs +13 -0
  302. package/dist/es/framer-motion/dist/es/utils/use-unmount-effect.mjs +7 -0
  303. package/dist/es/framer-motion/dist/es/utils/velocity-per-second.mjs +11 -0
  304. package/dist/es/framer-motion/dist/es/utils/warn-once.mjs +11 -0
  305. package/dist/es/framer-motion/dist/es/utils/wrap.mjs +6 -0
  306. package/dist/es/framer-motion/dist/es/value/index.mjs +319 -0
  307. package/dist/es/framer-motion/dist/es/value/scroll/use-element-scroll.mjs +14 -0
  308. package/dist/es/framer-motion/dist/es/value/scroll/use-viewport-scroll.mjs +14 -0
  309. package/dist/es/framer-motion/dist/es/value/types/color/hex.mjs +40 -0
  310. package/dist/es/framer-motion/dist/es/value/types/color/hsla.mjs +22 -0
  311. package/dist/es/framer-motion/dist/es/value/types/color/index.mjs +27 -0
  312. package/dist/es/framer-motion/dist/es/value/types/color/rgba.mjs +25 -0
  313. package/dist/es/framer-motion/dist/es/value/types/color/utils.mjs +29 -0
  314. package/dist/es/framer-motion/dist/es/value/types/complex/filter.mjs +30 -0
  315. package/dist/es/framer-motion/dist/es/value/types/complex/index.mjs +92 -0
  316. package/dist/es/framer-motion/dist/es/value/types/numbers/index.mjs +17 -0
  317. package/dist/es/framer-motion/dist/es/value/types/numbers/units.mjs +17 -0
  318. package/dist/es/framer-motion/dist/es/value/types/utils/color-regex.mjs +3 -0
  319. package/dist/es/framer-motion/dist/es/value/types/utils/float-regex.mjs +3 -0
  320. package/dist/es/framer-motion/dist/es/value/types/utils/is-nullish.mjs +5 -0
  321. package/dist/es/framer-motion/dist/es/value/types/utils/sanitize.mjs +5 -0
  322. package/dist/es/framer-motion/dist/es/value/types/utils/single-color-regex.mjs +3 -0
  323. package/dist/es/framer-motion/dist/es/value/use-combine-values.mjs +37 -0
  324. package/dist/es/framer-motion/dist/es/value/use-computed.mjs +19 -0
  325. package/dist/es/framer-motion/dist/es/value/use-inverted-scale.mjs +52 -0
  326. package/dist/es/framer-motion/dist/es/value/use-motion-template.mjs +45 -0
  327. package/dist/es/framer-motion/dist/es/value/use-motion-value.mjs +38 -0
  328. package/dist/es/framer-motion/dist/es/value/use-scroll.mjs +39 -0
  329. package/dist/es/framer-motion/dist/es/value/use-spring.mjs +85 -0
  330. package/dist/es/framer-motion/dist/es/value/use-time.mjs +10 -0
  331. package/dist/es/framer-motion/dist/es/value/use-transform.mjs +29 -0
  332. package/dist/es/framer-motion/dist/es/value/use-velocity.mjs +35 -0
  333. package/dist/es/framer-motion/dist/es/value/use-will-change/WillChangeMotionValue.mjs +22 -0
  334. package/dist/es/framer-motion/dist/es/value/use-will-change/add-will-change.mjs +14 -0
  335. package/dist/es/framer-motion/dist/es/value/use-will-change/get-will-change-name.mjs +14 -0
  336. package/dist/es/framer-motion/dist/es/value/use-will-change/index.mjs +8 -0
  337. package/dist/es/framer-motion/dist/es/value/use-will-change/is.mjs +7 -0
  338. package/dist/es/framer-motion/dist/es/value/utils/is-motion-value.mjs +3 -0
  339. package/dist/es/framer-motion/dist/es/value/utils/resolve-motion-value.mjs +16 -0
  340. package/dist/es/motion/lib/index.mjs +30 -0
  341. package/dist/es/motion/lib/react-client.mjs +3 -0
  342. package/dist/es/motion/lib/react-m.mjs +3 -0
  343. package/dist/es/motion/lib/react.mjs +110 -0
  344. package/dist/index.d.ts +1 -0
  345. package/dist/motion.dev.js +6121 -0
  346. package/dist/motion.js +1 -0
  347. package/dist/react-client.d.ts +1 -0
  348. package/dist/react-m.d.ts +1 -0
  349. package/dist/react.d.ts +1 -0
  350. package/lib/index.js +1 -3
  351. package/lib/index.js.map +1 -1
  352. package/lib/react-client.js +3 -0
  353. package/lib/react-client.js.map +1 -0
  354. package/lib/react-m.js +3 -0
  355. package/lib/react-m.js.map +1 -0
  356. package/lib/react.js +3 -0
  357. package/lib/react.js.map +1 -0
  358. package/package.json +79 -29
  359. package/react/package.json +6 -0
  360. package/react-client/package.json +6 -0
  361. package/react-m/package.json +6 -0
  362. package/rollup.config.mjs +184 -0
  363. package/src/index.ts +1 -0
  364. package/src/react-client.ts +3 -0
  365. package/src/react-m.ts +3 -0
  366. package/src/react.ts +3 -0
  367. package/tsconfig.json +25 -0
  368. package/types/index.d.ts +1 -4
  369. package/types/react-client.d.ts +1 -0
  370. package/types/react-m.d.ts +1 -0
  371. package/types/react.d.ts +1 -0
  372. package/CHANGELOG.md +0 -378
  373. package/dist/animate.cjs.js +0 -22
  374. package/dist/animate.es.js +0 -19
  375. package/dist/main.cjs.js +0 -21
  376. package/dist/main.es.js +0 -3
  377. package/dist/motion.min.js +0 -1
  378. package/dist/motion.umd.js +0 -2364
  379. package/dist/size-index.js +0 -1
  380. package/lib/animate.js +0 -17
  381. package/lib/animate.js.map +0 -1
  382. package/types/animate.d.ts +0 -6
  383. package/types/animate.d.ts.map +0 -1
  384. package/types/index.d.ts.map +0 -1
@@ -0,0 +1,41 @@
1
+ import { isAnimationControls } from '../../../animation/utils/is-animation-controls.mjs';
2
+ import { createAnimationState } from '../../../render/utils/animation-state.mjs';
3
+ import { Feature } from '../Feature.mjs';
4
+
5
+ class AnimationFeature extends Feature {
6
+ /**
7
+ * We dynamically generate the AnimationState manager as it contains a reference
8
+ * to the underlying animation library. We only want to load that if we load this,
9
+ * so people can optionally code split it out using the `m` component.
10
+ */
11
+ constructor(node) {
12
+ super(node);
13
+ node.animationState || (node.animationState = createAnimationState(node));
14
+ }
15
+ updateAnimationControlsSubscription() {
16
+ const { animate } = this.node.getProps();
17
+ if (isAnimationControls(animate)) {
18
+ this.unmountControls = animate.subscribe(this.node);
19
+ }
20
+ }
21
+ /**
22
+ * Subscribe any provided AnimationControls to the component's VisualElement
23
+ */
24
+ mount() {
25
+ this.updateAnimationControlsSubscription();
26
+ }
27
+ update() {
28
+ const { animate } = this.node.getProps();
29
+ const { animate: prevAnimate } = this.node.prevProps || {};
30
+ if (animate !== prevAnimate) {
31
+ this.updateAnimationControlsSubscription();
32
+ }
33
+ }
34
+ unmount() {
35
+ var _a;
36
+ this.node.animationState.reset();
37
+ (_a = this.unmountControls) === null || _a === void 0 ? void 0 : _a.call(this);
38
+ }
39
+ }
40
+
41
+ export { AnimationFeature };
@@ -0,0 +1,13 @@
1
+ import { AnimationFeature } from './animation/index.mjs';
2
+ import { ExitAnimationFeature } from './animation/exit.mjs';
3
+
4
+ const animations = {
5
+ animation: {
6
+ Feature: AnimationFeature,
7
+ },
8
+ exit: {
9
+ Feature: ExitAnimationFeature,
10
+ },
11
+ };
12
+
13
+ export { animations };
@@ -0,0 +1,28 @@
1
+ const featureProps = {
2
+ animation: [
3
+ "animate",
4
+ "variants",
5
+ "whileHover",
6
+ "whileTap",
7
+ "exit",
8
+ "whileInView",
9
+ "whileFocus",
10
+ "whileDrag",
11
+ ],
12
+ exit: ["exit"],
13
+ drag: ["drag", "dragControls"],
14
+ focus: ["whileFocus"],
15
+ hover: ["whileHover", "onHoverStart", "onHoverEnd"],
16
+ tap: ["whileTap", "onTap", "onTapStart", "onTapCancel"],
17
+ pan: ["onPan", "onPanStart", "onPanSessionStart", "onPanEnd"],
18
+ inView: ["whileInView", "onViewportEnter", "onViewportLeave"],
19
+ layout: ["layout", "layoutId"],
20
+ };
21
+ const featureDefinitions = {};
22
+ for (const key in featureProps) {
23
+ featureDefinitions[key] = {
24
+ isEnabled: (props) => featureProps[key].some((name) => !!props[name]),
25
+ };
26
+ }
27
+
28
+ export { featureDefinitions };
@@ -0,0 +1,17 @@
1
+ import { DragGesture } from '../../gestures/drag/index.mjs';
2
+ import { PanGesture } from '../../gestures/pan/index.mjs';
3
+ import { MeasureLayout } from './layout/MeasureLayout.mjs';
4
+ import { HTMLProjectionNode } from '../../projection/node/HTMLProjectionNode.mjs';
5
+
6
+ const drag = {
7
+ pan: {
8
+ Feature: PanGesture,
9
+ },
10
+ drag: {
11
+ Feature: DragGesture,
12
+ ProjectionNode: HTMLProjectionNode,
13
+ MeasureLayout,
14
+ },
15
+ };
16
+
17
+ export { drag };
@@ -0,0 +1,21 @@
1
+ import { HoverGesture } from '../../gestures/hover.mjs';
2
+ import { FocusGesture } from '../../gestures/focus.mjs';
3
+ import { PressGesture } from '../../gestures/press.mjs';
4
+ import { InViewFeature } from './viewport/index.mjs';
5
+
6
+ const gestureAnimations = {
7
+ inView: {
8
+ Feature: InViewFeature,
9
+ },
10
+ tap: {
11
+ Feature: PressGesture,
12
+ },
13
+ focus: {
14
+ Feature: FocusGesture,
15
+ },
16
+ hover: {
17
+ Feature: HoverGesture,
18
+ },
19
+ };
20
+
21
+ export { gestureAnimations };
@@ -0,0 +1,134 @@
1
+ "use client";
2
+ import { jsx } from 'react/jsx-runtime';
3
+ import { useContext, Component } from 'react';
4
+ import { usePresence } from '../../../components/AnimatePresence/use-presence.mjs';
5
+ import { LayoutGroupContext } from '../../../context/LayoutGroupContext.mjs';
6
+ import { SwitchLayoutGroupContext } from '../../../context/SwitchLayoutGroupContext.mjs';
7
+ import { globalProjectionState } from '../../../projection/node/state.mjs';
8
+ import { correctBorderRadius } from '../../../projection/styles/scale-border-radius.mjs';
9
+ import { correctBoxShadow } from '../../../projection/styles/scale-box-shadow.mjs';
10
+ import { addScaleCorrector } from '../../../projection/styles/scale-correction.mjs';
11
+ import { microtask } from '../../../frameloop/microtask.mjs';
12
+ import { frame } from '../../../frameloop/frame.mjs';
13
+
14
+ class MeasureLayoutWithContext extends Component {
15
+ /**
16
+ * This only mounts projection nodes for components that
17
+ * need measuring, we might want to do it for all components
18
+ * in order to incorporate transforms
19
+ */
20
+ componentDidMount() {
21
+ const { visualElement, layoutGroup, switchLayoutGroup, layoutId } = this.props;
22
+ const { projection } = visualElement;
23
+ addScaleCorrector(defaultScaleCorrectors);
24
+ if (projection) {
25
+ if (layoutGroup.group)
26
+ layoutGroup.group.add(projection);
27
+ if (switchLayoutGroup && switchLayoutGroup.register && layoutId) {
28
+ switchLayoutGroup.register(projection);
29
+ }
30
+ projection.root.didUpdate();
31
+ projection.addEventListener("animationComplete", () => {
32
+ this.safeToRemove();
33
+ });
34
+ projection.setOptions({
35
+ ...projection.options,
36
+ onExitComplete: () => this.safeToRemove(),
37
+ });
38
+ }
39
+ globalProjectionState.hasEverUpdated = true;
40
+ }
41
+ getSnapshotBeforeUpdate(prevProps) {
42
+ const { layoutDependency, visualElement, drag, isPresent } = this.props;
43
+ const projection = visualElement.projection;
44
+ if (!projection)
45
+ return null;
46
+ /**
47
+ * TODO: We use this data in relegate to determine whether to
48
+ * promote a previous element. There's no guarantee its presence data
49
+ * will have updated by this point - if a bug like this arises it will
50
+ * have to be that we markForRelegation and then find a new lead some other way,
51
+ * perhaps in didUpdate
52
+ */
53
+ projection.isPresent = isPresent;
54
+ if (drag ||
55
+ prevProps.layoutDependency !== layoutDependency ||
56
+ layoutDependency === undefined) {
57
+ projection.willUpdate();
58
+ }
59
+ else {
60
+ this.safeToRemove();
61
+ }
62
+ if (prevProps.isPresent !== isPresent) {
63
+ if (isPresent) {
64
+ projection.promote();
65
+ }
66
+ else if (!projection.relegate()) {
67
+ /**
68
+ * If there's another stack member taking over from this one,
69
+ * it's in charge of the exit animation and therefore should
70
+ * be in charge of the safe to remove. Otherwise we call it here.
71
+ */
72
+ frame.postRender(() => {
73
+ const stack = projection.getStack();
74
+ if (!stack || !stack.members.length) {
75
+ this.safeToRemove();
76
+ }
77
+ });
78
+ }
79
+ }
80
+ return null;
81
+ }
82
+ componentDidUpdate() {
83
+ const { projection } = this.props.visualElement;
84
+ if (projection) {
85
+ projection.root.didUpdate();
86
+ microtask.postRender(() => {
87
+ if (!projection.currentAnimation && projection.isLead()) {
88
+ this.safeToRemove();
89
+ }
90
+ });
91
+ }
92
+ }
93
+ componentWillUnmount() {
94
+ const { visualElement, layoutGroup, switchLayoutGroup: promoteContext, } = this.props;
95
+ const { projection } = visualElement;
96
+ if (projection) {
97
+ projection.scheduleCheckAfterUnmount();
98
+ if (layoutGroup && layoutGroup.group)
99
+ layoutGroup.group.remove(projection);
100
+ if (promoteContext && promoteContext.deregister)
101
+ promoteContext.deregister(projection);
102
+ }
103
+ }
104
+ safeToRemove() {
105
+ const { safeToRemove } = this.props;
106
+ safeToRemove && safeToRemove();
107
+ }
108
+ render() {
109
+ return null;
110
+ }
111
+ }
112
+ function MeasureLayout(props) {
113
+ const [isPresent, safeToRemove] = usePresence();
114
+ const layoutGroup = useContext(LayoutGroupContext);
115
+ return (jsx(MeasureLayoutWithContext, { ...props, layoutGroup: layoutGroup, switchLayoutGroup: useContext(SwitchLayoutGroupContext), isPresent: isPresent, safeToRemove: safeToRemove }));
116
+ }
117
+ const defaultScaleCorrectors = {
118
+ borderRadius: {
119
+ ...correctBorderRadius,
120
+ applyTo: [
121
+ "borderTopLeftRadius",
122
+ "borderTopRightRadius",
123
+ "borderBottomLeftRadius",
124
+ "borderBottomRightRadius",
125
+ ],
126
+ },
127
+ borderTopLeftRadius: correctBorderRadius,
128
+ borderTopRightRadius: correctBorderRadius,
129
+ borderBottomLeftRadius: correctBorderRadius,
130
+ borderBottomRightRadius: correctBorderRadius,
131
+ boxShadow: correctBoxShadow,
132
+ };
133
+
134
+ export { MeasureLayout };
@@ -0,0 +1,11 @@
1
+ import { HTMLProjectionNode } from '../../projection/node/HTMLProjectionNode.mjs';
2
+ import { MeasureLayout } from './layout/MeasureLayout.mjs';
3
+
4
+ const layout = {
5
+ layout: {
6
+ ProjectionNode: HTMLProjectionNode,
7
+ MeasureLayout,
8
+ },
9
+ };
10
+
11
+ export { layout };
@@ -0,0 +1,12 @@
1
+ import { featureDefinitions } from './definitions.mjs';
2
+
3
+ function loadFeatures(features) {
4
+ for (const key in features) {
5
+ featureDefinitions[key] = {
6
+ ...featureDefinitions[key],
7
+ ...features[key],
8
+ };
9
+ }
10
+ }
11
+
12
+ export { loadFeatures };
@@ -0,0 +1,72 @@
1
+ import { Feature } from '../Feature.mjs';
2
+ import { observeIntersection } from './observers.mjs';
3
+
4
+ const thresholdNames = {
5
+ some: 0,
6
+ all: 1,
7
+ };
8
+ class InViewFeature extends Feature {
9
+ constructor() {
10
+ super(...arguments);
11
+ this.hasEnteredView = false;
12
+ this.isInView = false;
13
+ }
14
+ startObserver() {
15
+ this.unmount();
16
+ const { viewport = {} } = this.node.getProps();
17
+ const { root, margin: rootMargin, amount = "some", once } = viewport;
18
+ const options = {
19
+ root: root ? root.current : undefined,
20
+ rootMargin,
21
+ threshold: typeof amount === "number" ? amount : thresholdNames[amount],
22
+ };
23
+ const onIntersectionUpdate = (entry) => {
24
+ const { isIntersecting } = entry;
25
+ /**
26
+ * If there's been no change in the viewport state, early return.
27
+ */
28
+ if (this.isInView === isIntersecting)
29
+ return;
30
+ this.isInView = isIntersecting;
31
+ /**
32
+ * Handle hasEnteredView. If this is only meant to run once, and
33
+ * element isn't visible, early return. Otherwise set hasEnteredView to true.
34
+ */
35
+ if (once && !isIntersecting && this.hasEnteredView) {
36
+ return;
37
+ }
38
+ else if (isIntersecting) {
39
+ this.hasEnteredView = true;
40
+ }
41
+ if (this.node.animationState) {
42
+ this.node.animationState.setActive("whileInView", isIntersecting);
43
+ }
44
+ /**
45
+ * Use the latest committed props rather than the ones in scope
46
+ * when this observer is created
47
+ */
48
+ const { onViewportEnter, onViewportLeave } = this.node.getProps();
49
+ const callback = isIntersecting ? onViewportEnter : onViewportLeave;
50
+ callback && callback(entry);
51
+ };
52
+ return observeIntersection(this.node.current, options, onIntersectionUpdate);
53
+ }
54
+ mount() {
55
+ this.startObserver();
56
+ }
57
+ update() {
58
+ if (typeof IntersectionObserver === "undefined")
59
+ return;
60
+ const { props, prevProps } = this.node;
61
+ const hasOptionsChanged = ["amount", "margin", "root"].some(hasViewportOptionChanged(props, prevProps));
62
+ if (hasOptionsChanged) {
63
+ this.startObserver();
64
+ }
65
+ }
66
+ unmount() { }
67
+ }
68
+ function hasViewportOptionChanged({ viewport = {} }, { viewport: prevViewport = {} } = {}) {
69
+ return (name) => viewport[name] !== prevViewport[name];
70
+ }
71
+
72
+ export { InViewFeature };
@@ -0,0 +1,49 @@
1
+ /**
2
+ * Map an IntersectionHandler callback to an element. We only ever make one handler for one
3
+ * element, so even though these handlers might all be triggered by different
4
+ * observers, we can keep them in the same map.
5
+ */
6
+ const observerCallbacks = new WeakMap();
7
+ /**
8
+ * Multiple observers can be created for multiple element/document roots. Each with
9
+ * different settings. So here we store dictionaries of observers to each root,
10
+ * using serialised settings (threshold/margin) as lookup keys.
11
+ */
12
+ const observers = new WeakMap();
13
+ const fireObserverCallback = (entry) => {
14
+ const callback = observerCallbacks.get(entry.target);
15
+ callback && callback(entry);
16
+ };
17
+ const fireAllObserverCallbacks = (entries) => {
18
+ entries.forEach(fireObserverCallback);
19
+ };
20
+ function initIntersectionObserver({ root, ...options }) {
21
+ const lookupRoot = root || document;
22
+ /**
23
+ * If we don't have an observer lookup map for this root, create one.
24
+ */
25
+ if (!observers.has(lookupRoot)) {
26
+ observers.set(lookupRoot, {});
27
+ }
28
+ const rootObservers = observers.get(lookupRoot);
29
+ const key = JSON.stringify(options);
30
+ /**
31
+ * If we don't have an observer for this combination of root and settings,
32
+ * create one.
33
+ */
34
+ if (!rootObservers[key]) {
35
+ rootObservers[key] = new IntersectionObserver(fireAllObserverCallbacks, { root, ...options });
36
+ }
37
+ return rootObservers[key];
38
+ }
39
+ function observeIntersection(element, options, callback) {
40
+ const rootInteresectionObserver = initIntersectionObserver(options);
41
+ observerCallbacks.set(element, callback);
42
+ rootInteresectionObserver.observe(element);
43
+ return () => {
44
+ observerCallbacks.delete(element);
45
+ rootInteresectionObserver.unobserve(element);
46
+ };
47
+ }
48
+
49
+ export { observeIntersection };
@@ -0,0 +1,98 @@
1
+ "use client";
2
+ import { jsxs, jsx } from 'react/jsx-runtime';
3
+ import { forwardRef, useContext } from 'react';
4
+ import { MotionConfigContext } from '../context/MotionConfigContext.mjs';
5
+ import { MotionContext } from '../context/MotionContext/index.mjs';
6
+ import { useVisualElement } from './utils/use-visual-element.mjs';
7
+ import { useMotionRef } from './utils/use-motion-ref.mjs';
8
+ import { useCreateMotionContext } from '../context/MotionContext/create.mjs';
9
+ import { loadFeatures } from './features/load-features.mjs';
10
+ import { isBrowser } from '../utils/is-browser.mjs';
11
+ import { LayoutGroupContext } from '../context/LayoutGroupContext.mjs';
12
+ import { LazyContext } from '../context/LazyContext.mjs';
13
+ import { motionComponentSymbol } from './utils/symbol.mjs';
14
+ import { warning, invariant } from '../utils/errors.mjs';
15
+ import { featureDefinitions } from './features/definitions.mjs';
16
+
17
+ /**
18
+ * Create a `motion` component.
19
+ *
20
+ * This function accepts a Component argument, which can be either a string (ie "div"
21
+ * for `motion.div`), or an actual React component.
22
+ *
23
+ * Alongside this is a config option which provides a way of rendering the provided
24
+ * component "offline", or outside the React render cycle.
25
+ */
26
+ function createRendererMotionComponent({ preloadedFeatures, createVisualElement, useRender, useVisualState, Component, }) {
27
+ preloadedFeatures && loadFeatures(preloadedFeatures);
28
+ function MotionComponent(props, externalRef) {
29
+ /**
30
+ * If we need to measure the element we load this functionality in a
31
+ * separate class component in order to gain access to getSnapshotBeforeUpdate.
32
+ */
33
+ let MeasureLayout;
34
+ const configAndProps = {
35
+ ...useContext(MotionConfigContext),
36
+ ...props,
37
+ layoutId: useLayoutId(props),
38
+ };
39
+ const { isStatic } = configAndProps;
40
+ const context = useCreateMotionContext(props);
41
+ const visualState = useVisualState(props, isStatic);
42
+ if (!isStatic && isBrowser) {
43
+ useStrictMode(configAndProps, preloadedFeatures);
44
+ const layoutProjection = getProjectionFunctionality(configAndProps);
45
+ MeasureLayout = layoutProjection.MeasureLayout;
46
+ /**
47
+ * Create a VisualElement for this component. A VisualElement provides a common
48
+ * interface to renderer-specific APIs (ie DOM/Three.js etc) as well as
49
+ * providing a way of rendering to these APIs outside of the React render loop
50
+ * for more performant animations and interactions
51
+ */
52
+ context.visualElement = useVisualElement(Component, visualState, configAndProps, createVisualElement, layoutProjection.ProjectionNode);
53
+ }
54
+ /**
55
+ * The mount order and hierarchy is specific to ensure our element ref
56
+ * is hydrated by the time features fire their effects.
57
+ */
58
+ return (jsxs(MotionContext.Provider, { value: context, children: [MeasureLayout && context.visualElement ? (jsx(MeasureLayout, { visualElement: context.visualElement, ...configAndProps })) : null, useRender(Component, props, useMotionRef(visualState, context.visualElement, externalRef), visualState, isStatic, context.visualElement)] }));
59
+ }
60
+ const ForwardRefMotionComponent = forwardRef(MotionComponent);
61
+ ForwardRefMotionComponent[motionComponentSymbol] = Component;
62
+ return ForwardRefMotionComponent;
63
+ }
64
+ function useLayoutId({ layoutId }) {
65
+ const layoutGroupId = useContext(LayoutGroupContext).id;
66
+ return layoutGroupId && layoutId !== undefined
67
+ ? layoutGroupId + "-" + layoutId
68
+ : layoutId;
69
+ }
70
+ function useStrictMode(configAndProps, preloadedFeatures) {
71
+ const isStrict = useContext(LazyContext).strict;
72
+ /**
73
+ * If we're in development mode, check to make sure we're not rendering a motion component
74
+ * as a child of LazyMotion, as this will break the file-size benefits of using it.
75
+ */
76
+ if (process.env.NODE_ENV !== "production" &&
77
+ preloadedFeatures &&
78
+ isStrict) {
79
+ const strictMessage = "You have rendered a `motion` component within a `LazyMotion` component. This will break tree shaking. Import and render a `m` component instead.";
80
+ configAndProps.ignoreStrict
81
+ ? warning(false, strictMessage)
82
+ : invariant(false, strictMessage);
83
+ }
84
+ }
85
+ function getProjectionFunctionality(props) {
86
+ const { drag, layout } = featureDefinitions;
87
+ if (!drag && !layout)
88
+ return {};
89
+ const combined = { ...drag, ...layout };
90
+ return {
91
+ MeasureLayout: (drag === null || drag === void 0 ? void 0 : drag.isEnabled(props)) || (layout === null || layout === void 0 ? void 0 : layout.isEnabled(props))
92
+ ? combined.MeasureLayout
93
+ : undefined,
94
+ ProjectionNode: combined.ProjectionNode,
95
+ };
96
+ }
97
+
98
+ export { createRendererMotionComponent };
@@ -0,0 +1,11 @@
1
+ import { scaleCorrectors } from '../../projection/styles/scale-correction.mjs';
2
+ import { transformProps } from '../../render/html/utils/transform.mjs';
3
+
4
+ function isForcedMotionValue(key, { layout, layoutId }) {
5
+ return (transformProps.has(key) ||
6
+ key.startsWith("origin") ||
7
+ ((layout || layoutId !== undefined) &&
8
+ (!!scaleCorrectors[key] || key === "opacity")));
9
+ }
10
+
11
+ export { isForcedMotionValue };
@@ -0,0 +1,12 @@
1
+ import { motionComponentSymbol } from './symbol.mjs';
2
+
3
+ /**
4
+ * Checks if a component is a `motion` component.
5
+ */
6
+ function isMotionComponent(component) {
7
+ return (component !== null &&
8
+ typeof component === "object" &&
9
+ motionComponentSymbol in component);
10
+ }
11
+
12
+ export { isMotionComponent };
@@ -0,0 +1,3 @@
1
+ const motionComponentSymbol = Symbol.for("motionComponentSymbol");
2
+
3
+ export { motionComponentSymbol };
@@ -0,0 +1,17 @@
1
+ import { isMotionComponent } from './is-motion-component.mjs';
2
+ import { motionComponentSymbol } from './symbol.mjs';
3
+
4
+ /**
5
+ * Unwraps a `motion` component and returns either a string for `motion.div` or
6
+ * the React component for `motion(Component)`.
7
+ *
8
+ * If the component is not a `motion` component it returns undefined.
9
+ */
10
+ function unwrapMotionComponent(component) {
11
+ if (isMotionComponent(component)) {
12
+ return component[motionComponentSymbol];
13
+ }
14
+ return undefined;
15
+ }
16
+
17
+ export { unwrapMotionComponent };
@@ -0,0 +1,36 @@
1
+ import { useCallback } from 'react';
2
+ import { isRefObject } from '../../utils/is-ref-object.mjs';
3
+
4
+ /**
5
+ * Creates a ref function that, when called, hydrates the provided
6
+ * external ref and VisualElement.
7
+ */
8
+ function useMotionRef(visualState, visualElement, externalRef) {
9
+ return useCallback((instance) => {
10
+ instance && visualState.mount && visualState.mount(instance);
11
+ if (visualElement) {
12
+ if (instance) {
13
+ visualElement.mount(instance);
14
+ }
15
+ else {
16
+ visualElement.unmount();
17
+ }
18
+ }
19
+ if (externalRef) {
20
+ if (typeof externalRef === "function") {
21
+ externalRef(instance);
22
+ }
23
+ else if (isRefObject(externalRef)) {
24
+ externalRef.current = instance;
25
+ }
26
+ }
27
+ },
28
+ /**
29
+ * Only pass a new ref callback to React if we've received a visual element
30
+ * factory. Otherwise we'll be mounting/remounting every time externalRef
31
+ * or other dependencies change.
32
+ */
33
+ [visualElement]);
34
+ }
35
+
36
+ export { useMotionRef };