react-ui-animate 5.0.0-rc.13 → 5.0.0-rc.2

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 (49) hide show
  1. package/README.md +6 -6
  2. package/dist/animation/{Config.d.ts → AnimationConfig.d.ts} +9 -9
  3. package/dist/animation/Value.d.ts +12 -0
  4. package/dist/animation/controllers.d.ts +41 -0
  5. package/dist/animation/hooks/index.d.ts +3 -2
  6. package/dist/animation/hooks/useAnimatedList.d.ts +24 -0
  7. package/dist/animation/hooks/useMount.d.ts +10 -14
  8. package/dist/animation/hooks/useValue.d.ts +13 -7
  9. package/dist/animation/index.d.ts +4 -5
  10. package/dist/animation/interpolation/colors.d.ts +25 -0
  11. package/dist/animation/interpolation/index.d.ts +1 -0
  12. package/dist/animation/interpolation/interpolateNumbers.d.ts +8 -0
  13. package/dist/animation/types.d.ts +26 -41
  14. package/dist/gestures/controllers/DragGesture.d.ts +15 -45
  15. package/dist/gestures/controllers/Gesture.d.ts +19 -12
  16. package/dist/gestures/controllers/MouseMoveGesture.d.ts +13 -0
  17. package/dist/gestures/controllers/ScrollGesture.d.ts +12 -27
  18. package/dist/gestures/controllers/WheelGesture.d.ts +13 -26
  19. package/dist/gestures/controllers/index.d.ts +4 -0
  20. package/dist/gestures/helpers/eventAttacher.d.ts +11 -0
  21. package/dist/gestures/helpers/index.d.ts +1 -0
  22. package/dist/gestures/helpers/math.d.ts +34 -0
  23. package/dist/gestures/helpers/withDefault.d.ts +4 -0
  24. package/dist/gestures/hooks/index.d.ts +5 -4
  25. package/dist/gestures/hooks/useDrag.d.ts +4 -5
  26. package/dist/gestures/hooks/useGesture.d.ts +9 -0
  27. package/dist/gestures/hooks/useMouseMove.d.ts +4 -0
  28. package/dist/gestures/hooks/useRecognizer.d.ts +9 -12
  29. package/dist/gestures/hooks/useScroll.d.ts +4 -8
  30. package/dist/gestures/hooks/useWheel.d.ts +4 -8
  31. package/dist/gestures/types/index.d.ts +51 -0
  32. package/dist/hooks/index.d.ts +3 -1
  33. package/dist/hooks/useMeasure.d.ts +14 -0
  34. package/dist/hooks/useOutsideClick.d.ts +1 -1
  35. package/dist/hooks/useWindowDimension.d.ts +9 -0
  36. package/dist/index.d.ts +5 -5
  37. package/dist/index.js +1 -1
  38. package/dist/index.js.map +1 -1
  39. package/package.json +5 -14
  40. package/dist/animation/descriptors.d.ts +0 -7
  41. package/dist/animation/drivers.d.ts +0 -4
  42. package/dist/animation/helpers.d.ts +0 -3
  43. package/dist/animation/modules/Mount.d.ts +0 -17
  44. package/dist/animation/modules/index.d.ts +0 -1
  45. package/dist/animation/to.d.ts +0 -9
  46. package/dist/gestures/controllers/MoveGesture.d.ts +0 -30
  47. package/dist/gestures/hooks/useMove.d.ts +0 -8
  48. package/dist/gestures/index.d.ts +0 -1
  49. package/dist/utils/index.d.ts +0 -4
@@ -1,13 +1,10 @@
1
- import { RefObject } from 'react';
2
- interface GestureInstance<E> {
3
- onChange(handler: (event: E) => void): this;
4
- onEnd(handler: (event: E) => void): this;
5
- attach(target: Window | HTMLElement): () => void;
6
- }
7
- interface GestureConstructor<C, E> {
8
- new (config?: C): GestureInstance<E>;
9
- }
10
- export declare function useRecognizer<T extends HTMLElement, C, E>(GestureClass: GestureConstructor<C, E>, refs: Window | RefObject<T> | Array<RefObject<T>>, onEvent: (e: E & {
11
- index: number;
12
- }) => void, config?: C): void;
1
+ type UseRecognizerHandlerType = Array<[
2
+ key: 'drag' | 'wheel' | 'move' | 'scroll',
3
+ gesture: any,
4
+ callback: any,
5
+ config?: any
6
+ ]>;
7
+ export declare const useRecognizer: (handlers: UseRecognizerHandlerType) => (index?: number) => {
8
+ ref: any;
9
+ };
13
10
  export {};
@@ -1,8 +1,4 @@
1
- import { RefObject } from 'react';
2
- import { type ScrollEvent } from '../controllers/ScrollGesture';
3
- export declare function useScroll(refs: Window, onScroll: (e: ScrollEvent & {
4
- index: 0;
5
- }) => void): void;
6
- export declare function useScroll<T extends HTMLElement>(refs: RefObject<T> | Array<RefObject<T>>, onScroll: (e: ScrollEvent & {
7
- index: number;
8
- }) => void): void;
1
+ import { ScrollEventType } from '../types';
2
+ export declare function useScroll(callback: (event: ScrollEventType) => void): (index?: number) => {
3
+ ref: any;
4
+ };
@@ -1,8 +1,4 @@
1
- import { RefObject } from 'react';
2
- import { type WheelEvent } from '../controllers/WheelGesture';
3
- export declare function useWheel(refs: Window, onWheel: (e: WheelEvent & {
4
- index: 0;
5
- }) => void): void;
6
- export declare function useWheel<T extends HTMLElement>(refs: RefObject<T> | Array<RefObject<T>>, onWheel: (e: WheelEvent & {
7
- index: number;
8
- }) => void): void;
1
+ import { WheelEventType } from '../types';
2
+ export declare function useWheel(callback: (event: WheelEventType) => void): (index?: number) => {
3
+ ref: any;
4
+ };
@@ -0,0 +1,51 @@
1
+ type GenericEventType = {
2
+ velocityX: number;
3
+ velocityY: number;
4
+ directionX: number;
5
+ directionY: number;
6
+ };
7
+ export type DragEventType = {
8
+ args: Array<number | undefined>;
9
+ down: boolean;
10
+ movementX: number;
11
+ movementY: number;
12
+ offsetX: number;
13
+ offsetY: number;
14
+ distanceX: number;
15
+ distanceY: number;
16
+ cancel: () => void;
17
+ } & GenericEventType;
18
+ export type MouseMoveEventType = {
19
+ args: Array<number | undefined>;
20
+ event: MouseEvent;
21
+ target: EventTarget | undefined | null;
22
+ isMoving: boolean;
23
+ mouseX: number;
24
+ mouseY: number;
25
+ } & GenericEventType;
26
+ export type ScrollEventType = {
27
+ isScrolling: boolean;
28
+ scrollX: number;
29
+ scrollY: number;
30
+ } & GenericEventType;
31
+ export type WheelEventType = {
32
+ target: HTMLElement | undefined | null;
33
+ isWheeling: boolean;
34
+ movementX: number;
35
+ movementY: number;
36
+ offsetX: number;
37
+ offsetY: number;
38
+ deltaX: number;
39
+ deltaY: number;
40
+ } & GenericEventType;
41
+ export type UseDragConfig = {
42
+ initial?: () => {
43
+ movementX: number;
44
+ movementY: number;
45
+ };
46
+ };
47
+ export type Vector2 = {
48
+ x: number;
49
+ y: number;
50
+ };
51
+ export {};
@@ -1 +1,3 @@
1
- export { useOutsideClick } from './useOutsideClick';
1
+ export * from "./useOutsideClick";
2
+ export * from "./useMeasure";
3
+ export * from "./useWindowDimension";
@@ -0,0 +1,14 @@
1
+ import { DependencyList } from 'react';
2
+ type MeasurementValue = number | Array<number>;
3
+ type MeasurementType = {
4
+ left: MeasurementValue;
5
+ top: MeasurementValue;
6
+ width: MeasurementValue;
7
+ height: MeasurementValue;
8
+ vLeft: MeasurementValue;
9
+ vTop: MeasurementValue;
10
+ };
11
+ export declare function useMeasure(callback: (event: MeasurementType) => void, deps?: DependencyList): (index?: number) => {
12
+ ref: import("react").MutableRefObject<null>;
13
+ };
14
+ export {};
@@ -1,2 +1,2 @@
1
1
  import { RefObject, DependencyList } from 'react';
2
- export declare function useOutsideClick(ref: RefObject<HTMLElement>, callback: (event: MouseEvent | TouchEvent) => void, deps?: DependencyList): void;
2
+ export declare function useOutsideClick(elementRef: RefObject<HTMLElement>, callback: (event: MouseEvent) => void, deps?: DependencyList): void;
@@ -0,0 +1,9 @@
1
+ import { DependencyList } from 'react';
2
+ type WindowDimensionType = {
3
+ width: number;
4
+ height: number;
5
+ innerWidth: number;
6
+ innerHeight: number;
7
+ };
8
+ export declare function useWindowDimension(callback: (event: WindowDimensionType) => void, deps?: DependencyList): void;
9
+ export {};
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- export { combine, Easing, makeMotion as makeAnimated, motion as animate, } from '@raidipesh78/re-motion';
2
- export * from './animation';
3
- export * from './hooks';
4
- export * from './gestures';
5
- export * from './utils';
1
+ export { Easing, makeMotion as makeAnimated, motion as animate, combine, } from '@raidipesh78/re-motion';
2
+ export { withSpring, withTiming, withSequence, withDelay, withDecay, withLoop, withEase, useValue, useMount, useAnimatedList, AnimationConfig, interpolateNumbers, } from './animation';
3
+ export { useMeasure, useOutsideClick, useWindowDimension } from './hooks';
4
+ export { useDrag, useGesture, useMouseMove, useScroll, useWheel, } from './gestures/hooks';
5
+ export { bin, clamp, mix, rubberClamp, move, snapTo } from './gestures/helpers';
package/dist/index.js CHANGED
@@ -1,2 +1,2 @@
1
- var e=require("@raidipesh78/re-motion"),t=require("react"),n=require("react/jsx-runtime"),o=function(e,t){return o=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},o(e,t)};function i(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function n(){this.constructor=e}o(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}var r=function(){return r=Object.assign||function(e){for(var t,n=1,o=arguments.length;n<o;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},r.apply(this,arguments)};function f(e,t){var n={};for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&t.indexOf(o)<0&&(n[o]=e[o]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(o=Object.getOwnPropertySymbols(e);i<o.length;i++)t.indexOf(o[i])<0&&Object.prototype.propertyIsEnumerable.call(e,o[i])&&(n[o[i]]=e[o[i]])}return n}function a(e,t){var n="function"==typeof Symbol&&e[Symbol.iterator];if(!n)return e;var o,i,r=n.call(e),f=[];try{for(;(void 0===t||t-- >0)&&!(o=r.next()).done;)f.push(o.value)}catch(e){i={error:e}}finally{try{o&&!o.done&&(n=r.return)&&n.call(r)}finally{if(i)throw i.error}}return f}function s(e,t,n){if(n||2===arguments.length)for(var o,i=0,r=t.length;i<r;i++)!o&&i in t||(o||(o=Array.prototype.slice.call(t,0,i)),o[i]=t[i]);return e.concat(o||Array.prototype.slice.call(t))}function l(e,t){return void 0===e&&(e={}),t?e:(e.onStart,e.onChange,e.onComplete,f(e,["onStart","onChange","onComplete"]))}function u(e){return"object"==typeof e&&null!==e&&"type"in e&&"string"==typeof e.type}function c(t,n){var o,i,r=n.type,f=n.to,a=n.options,s=void 0===a?{}:a;switch(r){case"spring":return e.spring(t,f,s);case"timing":return e.timing(t,f,s);case"decay":return e.decay(t,null!==(o=s.velocity)&&void 0!==o?o:0,s);case"delay":return e.delay(null!==(i=s.delay)&&void 0!==i?i:0);default:return console.warn("Unsupported animation type: ".concat(r)),{start:function(){},pause:function(){},resume:function(){},cancel:function(){},reset:function(){}}}}function d(t,n){var o=Object.entries(t).filter((function(e){var t=a(e,1)[0];return"decay"===n.type||"delay"===n.type||void 0!==n.to[t]})).map((function(e,t){var o=a(e,2),i=o[0];return c(o[1],{type:n.type,to:"decay"===n.type||"delay"===n.type?n.to:n.to[i],options:l(n.options,0===t)})}));return e.parallel(o)}function p(n){var o=t.useRef(null),i=t.useMemo((function(){return Array.isArray(n)?n.map((function(t){return new e.MotionValue(t)})):"object"==typeof n?Object.fromEntries(Object.entries(n).map((function(t){var n=a(t,2),o=n[0],i=n[1];return[o,new e.MotionValue(i)]}))):new e.MotionValue(n)}),[]);return[i,function(t){var f=null;f=Array.isArray(n)?function(t,n){var o,i;if(!u(n))return n.forEach((function(e,n){var o;null===(o=t[n])||void 0===o||o.set(e)})),null;var f=n,a=Object.fromEntries(t.map((function(e,t){return[t.toString(),e]})));switch(f.type){case"sequence":var s=f.options.animations.map((function(t){var n,o;return"delay"===t.type?e.delay(null!==(o=null===(n=t.options)||void 0===n?void 0:n.delay)&&void 0!==o?o:0):d(a,r(r({},t),{to:Array.isArray(t.to)?Object.fromEntries(t.to.map((function(e,t){return[t.toString(),e]}))):t.to}))}));return e.sequence(s,f.options);case"loop":var c=f.options.animation;if("sequence"===c.type){var p=c.options.animations.map((function(e){return d(a,r(r({},e),{to:Array.isArray(e.to)?Object.fromEntries(e.to.map((function(e,t){return[t.toString(),e]}))):e.to}))})),v=e.sequence(p,l(c.options,!0));return e.loop(v,null!==(o=f.options.iterations)&&void 0!==o?o:0,l(f.options,!0))}var h=d(a,c);return e.loop(h,null!==(i=f.options.iterations)&&void 0!==i?i:0,l(f.options,!0));default:return d(a,f)}}(i,t):"object"==typeof n?function(t,n){var o,i;if(u(n))switch(n.type){case"sequence":var r=n.options.animations.map((function(n){var o;return"delay"===n.type?e.delay(null!==(o=n.options.delay)&&void 0!==o?o:0):d(t,n)}));return e.sequence(r,n.options);case"loop":var f=n.options.animation;if("sequence"===f.type){r=f.options.animations.map((function(e){return d(t,e)}));return e.loop(e.sequence(r,l(f.options,!0)),null!==(o=n.options.iterations)&&void 0!==o?o:0,l(n.options,!0))}return e.loop(d(t,f),null!==(i=n.options.iterations)&&void 0!==i?i:0,l(n.options,!0));default:return d(t,n)}return Object.entries(n).forEach((function(e){var n,o=a(e,2),i=o[0],r=o[1];null===(n=t[i])||void 0===n||n.set(r)})),null}(i,t):function(t,n){var o,i,r,f,a,s,l,u,d;if("number"==typeof n||"string"==typeof n)return t.set(n),null;if("sequence"===n.type){var p=(null!==(i=null===(o=n.options)||void 0===o?void 0:o.animations)&&void 0!==i?i:[]).map((function(e){return c(t,e)}));return e.sequence(p,n.options)}if("loop"===n.type){var v=null===(r=n.options)||void 0===r?void 0:r.animation;if(!v)return null;if("sequence"===v.type){p=(null!==(a=null===(f=v.options)||void 0===f?void 0:f.animations)&&void 0!==a?a:[]).map((function(e){return c(t,e)}));return e.loop(e.sequence(p),null!==(l=null===(s=n.options)||void 0===s?void 0:s.iterations)&&void 0!==l?l:0,n.options)}return e.loop(c(t,v),null!==(d=null===(u=n.options)||void 0===u?void 0:u.iterations)&&void 0!==d?d:0,n.options)}return c(t,n)}(i,t),o.current=f,f&&f.start()},{start:function(){var e;return null===(e=o.current)||void 0===e?void 0:e.start()},pause:function(){var e;return null===(e=o.current)||void 0===e?void 0:e.pause()},resume:function(){var e;return null===(e=o.current)||void 0===e?void 0:e.resume()},cancel:function(){var e;return null===(e=o.current)||void 0===e?void 0:e.cancel()},reset:function(){var e;return null===(e=o.current)||void 0===e?void 0:e.reset()}}]}"function"==typeof SuppressedError&&SuppressedError;var v={Timing:{BOUNCE:{duration:500,easing:e.Easing.bounce},EASE_IN:{duration:500,easing:e.Easing.in(e.Easing.ease)},EASE_OUT:{duration:500,easing:e.Easing.out(e.Easing.ease)},EASE_IN_OUT:{duration:500,easing:e.Easing.inOut(e.Easing.ease)},POWER1:{duration:500,easing:e.Easing.bezier(.17,.42,.51,.97)},POWER2:{duration:500,easing:e.Easing.bezier(.07,.11,.13,1)},POWER3:{duration:500,easing:e.Easing.bezier(.09,.7,.16,1.04)},POWER4:{duration:500,easing:e.Easing.bezier(.05,.54,0,1.03)},LINEAR:{duration:500,easing:e.Easing.linear}},Spring:{ELASTIC:{mass:1,damping:18,stiffness:250},EASE:{mass:1,damping:20,stiffness:158},STIFF:{mass:1,damping:18,stiffness:350},WOBBLE:{mass:1,damping:8,stiffness:250}}},h=function(e,t){var n,o,i;return{type:"spring",to:e,options:{stiffness:null!==(n=null==t?void 0:t.stiffness)&&void 0!==n?n:v.Spring.EASE.stiffness,damping:null!==(o=null==t?void 0:t.damping)&&void 0!==o?o:v.Spring.EASE.damping,mass:null!==(i=null==t?void 0:t.mass)&&void 0!==i?i:v.Spring.EASE.mass,onStart:null==t?void 0:t.onStart,onChange:null==t?void 0:t.onChange,onComplete:null==t?void 0:t.onComplete}}};function m(e,n){var o,i,f;void 0===n&&(n={});var s=a(t.useState(e),2),l=s[0],c=s[1],d=null!==(o=n.from)&&void 0!==o?o:0,v=null!==(i=n.enter)&&void 0!==i?i:1,m=null!==(f=n.exit)&&void 0!==f?f:0,y=a(p(d),2),g=y[0],b=y[1];return t.useLayoutEffect((function(){e?(c(!0),queueMicrotask((function(){b(u(v)?v:h(v))}))):queueMicrotask((function(){b(u(m)?r(r({},m),{options:r(r({},m.options),{onComplete:function(){var e,t;null===(t=null===(e=m.options)||void 0===e?void 0:e.onComplete)||void 0===t||t.call(e),c(!1)}})}):h(m,{onComplete:function(){c(!1)}}))}))}),[e,JSON.stringify(v),JSON.stringify(m)]),function(e){return e(g,l)}}var y={transparent:"#00000000",aliceblue:"#f0f8ffff",antiquewhite:"#faebd7ff",aqua:"#00ffffff",aquamarine:"#7fffd4ff",azure:"#f0ffffff",beige:"#f5f5dcff",bisque:"#ffe4c4ff",black:"#000000ff",blanchedalmond:"#ffebcdff",blue:"#0000ffff",blueviolet:"#8a2be2ff",brown:"#a52a2aff",burlywood:"#deb887ff",burntsienna:"#ea7e5dff",cadetblue:"#5f9ea0ff",chartreuse:"#7fff00ff",chocolate:"#d2691eff",coral:"#ff7f50ff",cornflowerblue:"#6495edff",cornsilk:"#fff8dcff",crimson:"#dc143cff",cyan:"#00ffffff",darkblue:"#00008bff",darkcyan:"#008b8bff",darkgoldenrod:"#b8860bff",darkgray:"#a9a9a9ff",darkgreen:"#006400ff",darkgrey:"#a9a9a9ff",darkkhaki:"#bdb76bff",darkmagenta:"#8b008bff",darkolivegreen:"#556b2fff",darkorange:"#ff8c00ff",darkorchid:"#9932ccff",darkred:"#8b0000ff",darksalmon:"#e9967aff",darkseagreen:"#8fbc8fff",darkslateblue:"#483d8bff",darkslategray:"#2f4f4fff",darkslategrey:"#2f4f4fff",darkturquoise:"#00ced1ff",darkviolet:"#9400d3ff",deeppink:"#ff1493ff",deepskyblue:"#00bfffff",dimgray:"#696969ff",dimgrey:"#696969ff",dodgerblue:"#1e90ffff",firebrick:"#b22222ff",floralwhite:"#fffaf0ff",forestgreen:"#228b22ff",fuchsia:"#ff00ffff",gainsboro:"#dcdcdcff",ghostwhite:"#f8f8ffff",gold:"#ffd700ff",goldenrod:"#daa520ff",gray:"#808080ff",green:"#008000ff",greenyellow:"#adff2fff",grey:"#808080ff",honeydew:"#f0fff0ff",hotpink:"#ff69b4ff",indianred:"#cd5c5cff",indigo:"#4b0082ff",ivory:"#fffff0ff",khaki:"#f0e68cff",lavender:"#e6e6faff",lavenderblush:"#fff0f5ff",lawngreen:"#7cfc00ff",lemonchiffon:"#fffacdff",lightblue:"#add8e6ff",lightcoral:"#f08080ff",lightcyan:"#e0ffffff",lightgoldenrodyellow:"#fafad2ff",lightgray:"#d3d3d3ff",lightgreen:"#90ee90ff",lightgrey:"#d3d3d3ff",lightpink:"#ffb6c1ff",lightsalmon:"#ffa07aff",lightseagreen:"#20b2aaff",lightskyblue:"#87cefaff",lightslategray:"#778899ff",lightslategrey:"#778899ff",lightsteelblue:"#b0c4deff",lightyellow:"#ffffe0ff",lime:"#00ff00ff",limegreen:"#32cd32ff",linen:"#faf0e6ff",magenta:"#ff00ffff",maroon:"#800000ff",mediumaquamarine:"#66cdaaff",mediumblue:"#0000cdff",mediumorchid:"#ba55d3ff",mediumpurple:"#9370dbff",mediumseagreen:"#3cb371ff",mediumslateblue:"#7b68eeff",mediumspringgreen:"#00fa9aff",mediumturquoise:"#48d1ccff",mediumvioletred:"#c71585ff",midnightblue:"#191970ff",mintcream:"#f5fffaff",mistyrose:"#ffe4e1ff",moccasin:"#ffe4b5ff",navajowhite:"#ffdeadff",navy:"#000080ff",oldlace:"#fdf5e6ff",olive:"#808000ff",olivedrab:"#6b8e23ff",orange:"#ffa500ff",orangered:"#ff4500ff",orchid:"#da70d6ff",palegoldenrod:"#eee8aaff",palegreen:"#98fb98ff",paleturquoise:"#afeeeeff",palevioletred:"#db7093ff",papayawhip:"#ffefd5ff",peachpuff:"#ffdab9ff",peru:"#cd853fff",pink:"#ffc0cbff",plum:"#dda0ddff",powderblue:"#b0e0e6ff",purple:"#800080ff",rebeccapurple:"#663399ff",red:"#ff0000ff",rosybrown:"#bc8f8fff",royalblue:"#4169e1ff",saddlebrown:"#8b4513ff",salmon:"#fa8072ff",sandybrown:"#f4a460ff",seagreen:"#2e8b57ff",seashell:"#fff5eeff",sienna:"#a0522dff",silver:"#c0c0c0ff",skyblue:"#87ceebff",slateblue:"#6a5acdff",slategray:"#708090ff",slategrey:"#708090ff",snow:"#fffafaff",springgreen:"#00ff7fff",steelblue:"#4682b4ff",tan:"#d2b48cff",teal:"#008080ff",thistle:"#d8bfd8ff",tomato:"#ff6347ff",turquoise:"#40e0d0ff",violet:"#ee82eeff",wheat:"#f5deb3ff",white:"#ffffffff",whitesmoke:"#f5f5f5ff",yellow:"#ffff00ff",yellowgreen:"#9acd32ff"},g=/-?\d+(\.\d+)?/g,b=/^#(?:[0-9a-f]{3}|[0-9a-f]{4}|[0-9a-f]{6}|[0-9a-f]{8})$/i,E=/^rgba?\(\s*-?\d+(\.\d+)?%?(?:\s*,\s*-?\d+(\.\d+)?%?){2}(?:\s*,\s*(0|1|0?\.\d+))?\s*\)$/i,w=/^hsla?\(\s*\d+(\.\d+)?(?:\s*,\s*\d+(\.\d+)?%){2}(?:\s*,\s*(0|1|0?\.\d+))?\s*\)$/i;function x(e){var t=e.trim().toLowerCase();return b.test(t)||E.test(t)||w.test(t)||void 0!==y[t]}function T(e){var t,n,o,i,r,f,l=e.trim().toLowerCase();if(y[l]&&(l=y[l]),b.test(l)){var u=l.slice(1);3===u.length?u=u[0]+u[0]+u[1]+u[1]+u[2]+u[2]:4===u.length&&(u=u[0]+u[0]+u[1]+u[1]+u[2]+u[2]+u[3]+u[3]);var c=8===u.length,d=parseInt(u,16);return[h=d>>(c?24:16)&255,m=d>>(c?16:8)&255,x=d>>(c?8:0)&255,M=c?(255&d)/255:1]}if(E.test(l)){var p=s([],a(l.matchAll(g)),!1).map((function(e){return+e[0]})),v=a(p,4),h=v[0],m=v[1],x=v[2],T=v[3];return[h,m,x,M=void 0===T?1:T]}if(w.test(l)){p=s([],a(l.matchAll(g)),!1).map((function(e){return+e[0]}));var L=a(p,4),I=L[0],C=L[1],S=L[2],O=L[3],M=void 0===O?1:O;C/=100,S/=100;var k=(1-Math.abs(2*S-1))*C,P=k*(1-Math.abs(I/60%2-1)),A=S-k/2,Y=a([0,0,0],3),_=Y[0],q=Y[1],j=Y[2];return I<60?(_=(t=a([k,P,0],3))[0],q=t[1],j=t[2]):I<120?(_=(n=a([P,k,0],3))[0],q=n[1],j=n[2]):I<180?(_=(o=a([0,k,P],3))[0],q=o[1],j=o[2]):I<240?(_=(i=a([0,P,k],3))[0],q=i[1],j=i[2]):I<300?(_=(r=a([P,0,k],3))[0],q=r[1],j=r[2]):(_=(f=a([k,0,P],3))[0],q=f[1],j=f[2]),[Math.round(255*(_+A)),Math.round(255*(q+A)),Math.round(255*(j+A)),M]}throw new Error("Unrecognized CSS color: ".concat(e))}function L(e,t,n){var o=/^([a-zA-Z$_][\w$]*)\((-?\d*\.?\d+)([a-zA-Z%]*)\)$/,i=e.match(o),r=t.match(o);if(i&&r&&i[1]===r[1]&&i[3]===r[3]){var f=i[1],s=parseFloat(i[2]),l=parseFloat(r[2]),u=i[3],c=s+(l-s)*n;return"".concat(f,"(").concat(c.toFixed(3)).concat(u,")")}if(x(e)&&x(t)){var d=T(e),p=T(t),v=a(d,4),h=v[0],m=v[1],y=v[2],g=v[3],b=a(p,4),E=b[0],w=b[1],I=b[2],C=b[3],S=Math.round(h+(E-h)*n),O=Math.round(m+(w-m)*n),M=Math.round(y+(I-y)*n),k=g+(C-g)*n;return k<1?"rgba(".concat(S,",").concat(O,",").concat(M,",").concat(k.toFixed(3),")"):"rgb(".concat(S,",").concat(O,",").concat(M,")")}var P=e.split(/(\s+)/),A=t.split(/(\s+)/);if(P.length!==A.length)throw new Error('interpolate: template mismatch:\n "'.concat(e,'"\n vs "').concat(t,'"'));var Y=/^(-?\d+(\.\d+)?)([a-zA-Z%]*)$/;return P.map((function(e,t){var o=A[t];if(e===o&&/\s+/.test(e))return function(){return e};var i=e.match(Y),r=o.match(Y);if(i&&r&&i[3]===r[3]){var f=parseFloat(i[1]),a=parseFloat(r[1]),s=i[3];return function(){return"".concat((f+(a-f)*n).toFixed(3)).concat(s)}}if(x(e)&&x(o))return function(){return L(e,o,n)};if(e===o)return function(){return e};throw new Error('interpolate: cannot interpolate tokens "'.concat(e,'" vs "').concat(o,'"'))})).map((function(e){return e()})).join("")}function I(e,t,n){return Math.min(Math.max(e,t),n)}function C(e,t,n){return 0===t||Math.abs(t)===1/0?function(e,t){return Math.pow(e,5*t)}(e,n):e*t*n/(t+n*e)}var S=function(){function e(){this.changeListeners=new Set,this.endListeners=new Set}return e.prototype.onChange=function(e){return this.changeListeners.add(e),this},e.prototype.onEnd=function(e){return this.endListeners.add(e),this},e.prototype.emitChange=function(e){this.changeListeners.forEach((function(t){return t(e)}))},e.prototype.emitEnd=function(e){this.endListeners.forEach((function(t){return t(e)}))},e.VELOCITY_LIMIT=20,e}(),O=function(e){function t(t){void 0===t&&(t={});var n=e.call(this)||this;return n.prev={x:0,y:0},n.lastTime=0,n.movement={x:0,y:0},n.velocity={x:0,y:0},n.start={x:0,y:0},n.offset={x:0,y:0},n.pointerCaptured=!1,n.activePointerId=null,n.attachedEls=new Set,n.activeEl=null,n.pointerDownPos={x:0,y:0},n.thresholdPassed=!1,n.config=t,n}return i(t,e),t.prototype.attach=function(e){var t=this;if(e===window)return function(){};var n=Array.isArray(e)?e:[e],o=this.onDown.bind(this),i=this.onMove.bind(this),r=this.onUp.bind(this);return n.forEach((function(e){t.attachedEls.add(e),e.addEventListener("pointerdown",o,{passive:!1})})),window.addEventListener("pointermove",i,{passive:!1}),window.addEventListener("pointerup",r),window.addEventListener("pointercancel",r),function(){n.forEach((function(e){e.removeEventListener("pointerdown",o),t.attachedEls.delete(e)})),window.removeEventListener("pointermove",i),window.removeEventListener("pointerup",r),window.removeEventListener("pointercancel",r)}},t.prototype.onDown=function(e){var t,n,o;if(0===e.button){var i=e.currentTarget;this.attachedEls.has(i)&&(this.activeEl=i,this.activePointerId=e.pointerId,this.pointerCaptured=!1,this.start=!1===this.thresholdPassed&&0===this.start.x&&0===this.start.y?null!==(o=null===(n=(t=this.config).initial)||void 0===n?void 0:n.call(t))&&void 0!==o?o:{x:0,y:0}:r({},this.offset),this.offset=r({},this.start),this.pointerDownPos={x:e.clientX,y:e.clientY},this.thresholdPassed=!1,this.prev={x:e.clientX,y:e.clientY},this.lastTime=e.timeStamp,this.emitChange({down:!0,movement:{x:0,y:0},offset:r({},this.offset),velocity:{x:0,y:0},event:e,cancel:this.cancel.bind(this)}))}},t.prototype.onMove=function(e){var t;if(this.activePointerId===e.pointerId&&this.activeEl){var n=null!==(t=this.config.threshold)&&void 0!==t?t:0;if(!this.thresholdPassed){var o=e.clientX-this.pointerDownPos.x,i=e.clientY-this.pointerDownPos.y;if(Math.hypot(o,i)<n)return;this.thresholdPassed=!0,this.activeEl.setPointerCapture(e.pointerId),this.pointerCaptured=!0}this.pointerCaptured&&e.preventDefault();var f=Math.max((e.timeStamp-this.lastTime)/1e3,1e-6);this.lastTime=e.timeStamp;var a=(e.clientX-this.prev.x)/f/1e3,s=(e.clientY-this.prev.y)/f/1e3;this.velocity={x:I(a,-S.VELOCITY_LIMIT,S.VELOCITY_LIMIT),y:I(s,-S.VELOCITY_LIMIT,S.VELOCITY_LIMIT)};var l={x:e.clientX-this.pointerDownPos.x,y:e.clientY-this.pointerDownPos.y};this.movement={x:"y"===this.config.axis?0:l.x,y:"x"===this.config.axis?0:l.y},this.offset={x:this.start.x+this.movement.x,y:this.start.y+this.movement.y},this.prev={x:e.clientX,y:e.clientY},this.emitChange({down:!0,movement:r({},this.movement),offset:r({},this.offset),velocity:r({},this.velocity),event:e,cancel:this.cancel.bind(this)})}},t.prototype.onUp=function(e){this.activePointerId===e.pointerId&&this.activeEl&&(this.activeEl.releasePointerCapture(e.pointerId),this.emitEnd({down:!1,movement:r({},this.movement),offset:r({},this.offset),velocity:r({},this.velocity),event:e,cancel:this.cancel.bind(this)}),this.activePointerId=null,this.pointerCaptured=!1)},t.prototype.cancel=function(){this.activeEl&&null!==this.activePointerId&&(this.activeEl.releasePointerCapture(this.activePointerId),this.activePointerId=null,this.activeEl=null)},t}(S);function M(e,n,o,i){var f=k(o),a=k(i);if(n!==window){var s=Array.isArray(n)?n:[n],l=t.useRef([]);l.current.length!==s.length&&(l.current=s.map((function(t,n){var o=new e(a.current),i=function(e){return f.current(r(r({},e),{index:n}))};return o.onChange(i).onEnd(i),o}))),t.useEffect((function(){var e=s.map((function(e,t){var n=e.current;return n?l.current[t].attach(n):null})).filter((function(e){return!!e}));return function(){return e.forEach((function(e){return e()}))}}),[s.map((function(e){return e.current}))])}else{var u=t.useRef();if(!u.current){var c=new e(a.current),d=function(e){return f.current(r(r({},e),{index:0}))};c.onChange(d).onEnd(d),u.current=c}t.useEffect((function(){var e=u.current.attach(window);return function(){e()}}),[n])}}function k(e){var n=t.useRef(e);return t.useEffect((function(){n.current=e}),[e]),n}var P=function(e){function t(){var t=e.apply(this,s([],a(arguments),!1))||this;return t.attachedEls=new Set,t.prev={x:0,y:0},t.lastTime=0,t.movement={x:0,y:0},t.offset={x:0,y:0},t.velocity={x:0,y:0},t.startPos=null,t}return i(t,e),t.prototype.attach=function(e){var t=this,n=Array.isArray(e)?e:[e],o=this.onMove.bind(this),i=this.onLeave.bind(this);return n.forEach((function(e){t.attachedEls.add(e),e.addEventListener("pointermove",o,{passive:!1}),e.addEventListener("pointerleave",i)})),function(){n.forEach((function(e){e.removeEventListener("pointermove",o),e.removeEventListener("pointerleave",i),t.attachedEls.delete(e)}))}},t.prototype.cancel=function(){},t.prototype.onMove=function(e){var t=this,n=e.timeStamp;null===this.startPos&&(this.startPos={x:e.clientX,y:e.clientY},this.prev={x:e.clientX,y:e.clientY},this.lastTime=n);var o=Math.max((n-this.lastTime)/1e3,1e-6);this.lastTime=n;var i=e.clientX-this.prev.x,f=e.clientY-this.prev.y;this.prev={x:e.clientX,y:e.clientY},this.movement={x:e.clientX-this.startPos.x,y:e.clientY-this.startPos.y};var a=e.currentTarget,s=a instanceof HTMLElement?a.getBoundingClientRect():{left:0,top:0};this.offset={x:e.clientX-s.left,y:e.clientY-s.top};var l=i/o/1e3,u=f/o/1e3;this.velocity={x:I(l,-S.VELOCITY_LIMIT,S.VELOCITY_LIMIT),y:I(u,-S.VELOCITY_LIMIT,S.VELOCITY_LIMIT)},this.emitChange({movement:r({},this.movement),offset:r({},this.offset),velocity:r({},this.velocity),event:e,cancel:function(){return t.onLeave(e)}})},t.prototype.onLeave=function(e){this.emitEnd({movement:r({},this.movement),offset:r({},this.offset),velocity:r({},this.velocity),event:e,cancel:function(){}})},t}(S);var A=function(e){function t(){var t=e.apply(this,s([],a(arguments),!1))||this;return t.attachedEls=new Set,t.movement={x:0,y:0},t.offset={x:0,y:0},t.velocity={x:0,y:0},t.prevScroll={x:0,y:0},t.lastTime=0,t}return i(t,e),t.prototype.attach=function(e){var t=this,n=Array.isArray(e)?e:[e],o=this.onScroll.bind(this);return n.forEach((function(e){t.attachedEls.add(e),e.addEventListener("scroll",o,{passive:!0})})),function(){n.forEach((function(e){e.removeEventListener("scroll",o),t.attachedEls.delete(e)})),null!=t.endTimeout&&(clearTimeout(t.endTimeout),t.endTimeout=void 0)}},t.prototype.cancel=function(){},t.prototype.onScroll=function(e){var t=this,n=Date.now(),o=Math.max((n-this.lastTime)/1e3,1e-6);this.lastTime=n;var i=e.currentTarget,f=i instanceof HTMLElement?i.scrollLeft:window.scrollX,a=i instanceof HTMLElement?i.scrollTop:window.scrollY,s=f-this.prevScroll.x,l=a-this.prevScroll.y;this.prevScroll={x:f,y:a},this.movement={x:s,y:l},this.offset={x:f,y:a};var u=s/o/1e3,c=l/o/1e3;this.velocity={x:I(u,-S.VELOCITY_LIMIT,S.VELOCITY_LIMIT),y:I(c,-S.VELOCITY_LIMIT,S.VELOCITY_LIMIT)},this.emitChange({movement:r({},this.movement),offset:r({},this.offset),velocity:r({},this.velocity),event:e,cancel:function(){null!=t.endTimeout&&clearTimeout(t.endTimeout)}}),null!=this.endTimeout&&clearTimeout(this.endTimeout),this.endTimeout=window.setTimeout((function(){t.emitEnd({movement:r({},t.movement),offset:r({},t.offset),velocity:r({},t.velocity),event:e,cancel:function(){}})}),150)},t}(S);var Y=function(e){function t(){var t=e.apply(this,s([],a(arguments),!1))||this;return t.attachedEls=new Set,t.movement={x:0,y:0},t.offset={x:0,y:0},t.velocity={x:0,y:0},t.lastTime=0,t}return i(t,e),t.prototype.attach=function(e){var t=this,n=Array.isArray(e)?e:[e],o=this.onWheel.bind(this);return n.forEach((function(e){t.attachedEls.add(e),e.addEventListener("wheel",o,{passive:!1})})),function(){n.forEach((function(e){e.removeEventListener("wheel",o),t.attachedEls.delete(e)})),null!=t.endTimeout&&(clearTimeout(t.endTimeout),t.endTimeout=void 0)}},t.prototype.cancel=function(){},t.prototype.onWheel=function(e){var t=this;e.preventDefault();var n=e.timeStamp,o=Math.max((n-this.lastTime)/1e3,1e-6);this.lastTime=n;var i=e.deltaX,f=e.deltaY;this.movement={x:i,y:f},this.offset.x+=i,this.offset.y+=f;var a=i/o/1e3,s=f/o/1e3;this.velocity={x:I(a,-S.VELOCITY_LIMIT,S.VELOCITY_LIMIT),y:I(s,-S.VELOCITY_LIMIT,S.VELOCITY_LIMIT)},this.emitChange({movement:r({},this.movement),offset:r({},this.offset),velocity:r({},this.velocity),event:e,cancel:function(){null!=t.endTimeout&&clearTimeout(t.endTimeout)}}),null!=this.endTimeout&&clearTimeout(this.endTimeout),this.endTimeout=window.setTimeout((function(){t.emitEnd({movement:r({},t.movement),offset:r({},t.offset),velocity:r({},t.velocity),event:e,cancel:function(){}})}),150)},t}(S);Object.defineProperty(exports,"Easing",{enumerable:!0,get:function(){return e.Easing}}),Object.defineProperty(exports,"animate",{enumerable:!0,get:function(){return e.motion}}),Object.defineProperty(exports,"combine",{enumerable:!0,get:function(){return e.combine}}),Object.defineProperty(exports,"makeAnimated",{enumerable:!0,get:function(){return e.makeMotion}}),exports.Config=v,exports.Mount=function(e){var t=e.state,o=e.children,i=m(t,f(e,["state","children"]));return n.jsx(n.Fragment,{children:i((function(e,t){return t&&o(e)}))})},exports.clamp=I,exports.move=function(e,t,n){var o=e[t],i=e.length,r=t-n;if(r>0)return s(s(s(s([],a(e.slice(0,n)),!1),[o],!1),a(e.slice(n,t)),!1),a(e.slice(t+1,i)),!1);if(r<0){var f=n+1;return s(s(s(s([],a(e.slice(0,t)),!1),a(e.slice(t+1,f)),!1),[o],!1),a(e.slice(f,i)),!1)}return e},exports.rubberClamp=function(e,t,n,o){return void 0===o&&(o=.15),0===o?I(e,t,n):e<t?-C(t-e,n-t,o)+t:e>n?+C(e-n,n-t,o)+n:e},exports.snapTo=function(e,t,n){var o=e+.2*t,i=function(e){return Math.abs(e-o)},r=n.map(i),f=Math.min.apply(Math,s([],a(r),!1));return n.reduce((function(e,t){return i(t)===f?t:e}))},exports.to=function(e,t,n,o){var i,r,f,a,s=t.length;if(s<2||n.length!==s)throw new Error("interpolate: inRange and outRange must be arrays of the same length >= 2");var l=null!==(r=null!==(i=null==o?void 0:o.extrapolateLeft)&&void 0!==i?i:null==o?void 0:o.extrapolate)&&void 0!==r?r:"extend",u=null!==(a=null!==(f=null==o?void 0:o.extrapolateRight)&&void 0!==f?f:null==o?void 0:o.extrapolate)&&void 0!==a?a:"extend";return function(e){var i=e;e<t[0]&&"clamp"===l?i=t[0]:e>t[s-1]&&"clamp"===u&&(i=t[s-1]);var r=0;if(i<=t[0])r=0;else if(i>=t[s-1])r=s-2;else for(var f=0;f<s-1;f++)if(i>=t[f]&&i<=t[f+1]){r=f;break}var a=t[r],c=(i-a)/(t[r+1]-a);(null==o?void 0:o.easing)&&(c=o.easing(c));var d=n[r],p=n[r+1];return"number"==typeof d&&"number"==typeof p?d+(p-d)*c:L(String(d),String(p),c)}(e)},exports.useDrag=function(e,t,n){return M(O,e,t,n)},exports.useMount=m,exports.useMove=function(e,t){return M(P,e,t)},exports.useOutsideClick=function(e,n,o){void 0===o&&(o=[]);var i=t.useRef(n);t.useEffect((function(){i.current=n}),s([n],a(o),!1)),t.useEffect((function(){function t(t){var n=e.current,o=t.target;n&&o&&o.isConnected&&(n.contains(o)||i.current(t))}return document.addEventListener("mousedown",t),document.addEventListener("touchstart",t),function(){document.removeEventListener("mousedown",t),document.removeEventListener("touchstart",t)}}),[e])},exports.useScroll=function(e,t){return M(A,e,t)},exports.useValue=p,exports.useWheel=function(e,t){return M(Y,e,t)},exports.withDecay=function(e,t){return{type:"decay",options:{velocity:e,clamp:null==t?void 0:t.clamp,onStart:null==t?void 0:t.onStart,onChange:null==t?void 0:t.onChange,onComplete:null==t?void 0:t.onComplete}}},exports.withDelay=function(e){return{type:"delay",options:{delay:e}}},exports.withLoop=function(e,t,n){return void 0===t&&(t=1/0),{type:"loop",options:{animation:e,iterations:t,onStart:null==n?void 0:n.onStart,onComplete:null==n?void 0:n.onComplete}}},exports.withSequence=function(e,t){return{type:"sequence",options:{animations:e,onStart:null==t?void 0:t.onStart,onComplete:null==t?void 0:t.onComplete}}},exports.withSpring=h,exports.withTiming=function(e,t){return{type:"timing",to:e,options:{duration:null==t?void 0:t.duration,easing:null==t?void 0:t.easing,onStart:null==t?void 0:t.onStart,onChange:null==t?void 0:t.onChange,onComplete:null==t?void 0:t.onComplete}}};
1
+ var e=require("@raidipesh78/re-motion"),t=require("react");function n(e){var t=Object.create(null);return e&&Object.keys(e).forEach((function(n){if("default"!==n){var i=Object.getOwnPropertyDescriptor(e,n);Object.defineProperty(t,n,i.get?i:{enumerable:!0,get:function(){return e[n]}})}})),t.default=e,Object.freeze(t)}var i=n(t),r=function(e,t){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},r(e,t)};function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function n(){this.constructor=e}r(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}var a=function(){return a=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},a.apply(this,arguments)};function f(e){var t="function"==typeof Symbol&&Symbol.iterator,n=t&&e[t],i=0;if(n)return n.call(e);if(e&&"number"==typeof e.length)return{next:function(){return e&&i>=e.length&&(e=void 0),{value:e&&e[i++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}function s(e,t){var n="function"==typeof Symbol&&e[Symbol.iterator];if(!n)return e;var i,r,o=n.call(e),a=[];try{for(;(void 0===t||t-- >0)&&!(i=o.next()).done;)a.push(i.value)}catch(e){r={error:e}}finally{try{i&&!i.done&&(n=o.return)&&n.call(o)}finally{if(r)throw r.error}}return a}function l(e,t,n){if(n||2===arguments.length)for(var i,r=0,o=t.length;r<o;r++)!i&&r in t||(i||(i=Array.prototype.slice.call(t,0,r)),i[r]=t[r]);return e.concat(i||Array.prototype.slice.call(t))}"function"==typeof SuppressedError&&SuppressedError;var u=function(){function t(t){this.animation=new e.MotionValue(t)}return t.prototype.set=function(t){var n,i,r,o,a,f,s=this;if(!(t instanceof e.MotionValue))if(null===(n=this.unsubscribe)||void 0===n||n.call(this),this.unsubscribe=void 0,"object"==typeof t&&null!==t){var l=t.type,u=t.to,c=t.options;if((null==c?void 0:c.onChange)&&(this.unsubscribe=this.animation.subscribe(c.onChange)),"sequence"===l){var h=(null!==(i=null==c?void 0:c.steps)&&void 0!==i?i:[]).map((function(e){return s.buildDriver(e)})),v=e.sequence(h);return(null==c?void 0:c.onComplete)&&(null===(r=v.setOnComplete)||void 0===r||r.call(v,null==c?void 0:c.onComplete)),void v.start()}if("loop"===l){var d=this.buildDriver(c.controller);v=e.loop(d,null==c?void 0:c.iterations);return(null==c?void 0:c.onComplete)&&(null===(o=v.setOnComplete)||void 0===o||o.call(v,null==c?void 0:c.onComplete)),void v.start()}null===(f=(a=this.buildDriver({type:l,to:u,options:c})).start)||void 0===f||f.call(a)}else this.animation.set(t)},t.prototype.buildDriver=function(t){var n,i,r=this.animation;switch(t.type){case"spring":return e.spring(r,t.to,t.options);case"timing":return e.timing(r,t.to,t.options);case"decay":return e.decay(r,null===(n=t.options)||void 0===n?void 0:n.velocity,t.options);case"delay":return e.delay(null===(i=t.options)||void 0===i?void 0:i.delay);case"sequence":return e.sequence(t.options.steps.map(this.buildDriver.bind(this)));default:throw new Error('Unsupported driver type "'.concat(t.type,'"'))}},Object.defineProperty(t.prototype,"value",{get:function(){return this.animation},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"current",{get:function(){return this.animation.current},enumerable:!1,configurable:!0}),t.prototype.destroy=function(){var e;null===(e=this.unsubscribe)||void 0===e||e.call(this),this.unsubscribe=void 0},t}();function c(e){var n,i,r=t.useRef(null);if(null===r.current){var o=[];if(Array.isArray(e))e.forEach((function(e,t){o.push([String(t),new u(e)])}));else if("object"==typeof e)try{for(var a=f(Object.entries(e)),l=a.next();!l.done;l=a.next()){var c=s(l.value,2),h=c[0],v=c[1];o.push([h,new u(v)])}}catch(e){n={error:e}}finally{try{l&&!l.done&&(i=a.return)&&i.call(a)}finally{if(n)throw n.error}}else o.push(["__0",new u(e)]);r.current=o}t.useEffect((function(){return function(){r.current.forEach((function(e){return s(e,2)[1].destroy()})),r.current=null}}),[]);var d=function(){var t,n,i=r.current;if(Array.isArray(e))return i.map((function(e){return s(e,2)[1].value}));if("object"==typeof e){var o={};try{for(var a=f(i),l=a.next();!l.done;l=a.next()){var u=s(l.value,2),c=u[0],h=u[1];o[c]=h.value}}catch(e){t={error:e}}finally{try{l&&!l.done&&(n=a.return)&&n.call(a)}finally{if(t)throw t.error}}return o}return i[0][1].value}();return[d,function(t){var n,i,o=r.current;if(Array.isArray(e)){var a=t;Object.entries(a).forEach((function(e){var t,n=s(e,2),i=n[0],r=n[1],a=Number(i);isNaN(a)||void 0===r||null===(t=o[a])||void 0===t||t[1].set(r)}))}else if("object"==typeof e&&null!==e){a=t;var l=function(e,t){var n=o.find((function(t){return s(t,1)[0]===e}));n&&void 0!==t&&n[1].set(t)};try{for(var u=f(Object.entries(a)),c=u.next();!c.done;c=u.next()){var h=s(c.value,2);l(h[0],h[1])}}catch(e){n={error:e}}finally{try{c&&!c.done&&(i=u.return)&&i.call(u)}finally{if(n)throw n.error}}}else o[0][1].set(t)}]}var h={Timing:{BOUNCE:{duration:500,easing:e.Easing.bounce},EASE_IN:{duration:500,easing:e.Easing.in(e.Easing.ease)},EASE_OUT:{duration:500,easing:e.Easing.out(e.Easing.ease)},EASE_IN_OUT:{duration:500,easing:e.Easing.inOut(e.Easing.ease)},POWER1:{duration:500,easing:e.Easing.bezier(.17,.42,.51,.97)},POWER2:{duration:500,easing:e.Easing.bezier(.07,.11,.13,1)},POWER3:{duration:500,easing:e.Easing.bezier(.09,.7,.16,1.04)},POWER4:{duration:500,easing:e.Easing.bezier(.05,.54,0,1.03)},LINEAR:{duration:500,easing:e.Easing.linear}},Spring:{ELASTIC:{mass:1,friction:18,tension:250},EASE:{mass:1,friction:26,tension:170},STIFF:{mass:1,friction:18,tension:350},WOBBLE:{mass:1,friction:8,tension:250}}},v=function(e,t){var n,i,r;return{type:"spring",to:e,options:{stiffness:null!==(n=null==t?void 0:t.tension)&&void 0!==n?n:h.Spring.ELASTIC.tension,damping:null!==(i=null==t?void 0:t.friction)&&void 0!==i?i:h.Spring.ELASTIC.friction,mass:null!==(r=null==t?void 0:t.mass)&&void 0!==r?r:h.Spring.ELASTIC.mass,onStart:null==t?void 0:t.onStart,onChange:null==t?void 0:t.onChange,onComplete:null==t?void 0:t.onRest}}};var d=/[+-]?\d+(\.\d+)?|[\s]?\.\d+|#([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})/gi,m=/#[a-f\d]{3,}|transparent|aliceblue|antiquewhite|aqua|aquamarine|azure|beige|bisque|black|blanchedalmond|blue|blueviolet|brown|burlywood|burntsienna|cadetblue|chartreuse|chocolate|coral|cornflowerblue|cornsilk|crimson|cyan|darkblue|darkcyan|darkgoldenrod|darkgray|darkgreen|darkgrey|darkkhaki|darkmagenta|darkolivegreen|darkorange|darkorchid|darkred|darksalmon|darkseagreen|darkslateblue|darkslategray|darkslategrey|darkturquoise|darkviolet|deeppink|deepskyblue|dimgray|dimgrey|dodgerblue|firebrick|floralwhite|forestgreen|fuchsia|gainsboro|ghostwhite|gold|goldenrod|gray|green|greenyellow|grey|honeydew|hotpink|indianred|indigo|ivory|khaki|lavender|lavenderblush|lawngreen|lemonchiffon|lightblue|lightcoral|lightcyan|lightgoldenrodyellow|lightgray|lightgreen|lightgrey|lightpink|lightsalmon|lightseagreen|lightskyblue|lightslategray|lightslategrey|lightsteelblue|lightyellow|lime|limegreen|linen|magenta|maroon|mediumaquamarine|mediumblue|mediumorchid|mediumpurple|mediumseagreen|mediumslateblue|mediumspringgreen|mediumturquoise|mediumvioletred|midnightblue|mintcream|mistyrose|moccasin|navajowhite|navy|oldlace|olive|olivedrab|orange|orangered|orchid|palegoldenrod|palegreen|paleturquoise|palevioletred|papayawhip|peachpuff|peru|pink|plum|powderblue|purple|rebeccapurple|red|rosybrown|royalblue|saddlebrown|salmon|sandybrown|seagreen|seashell|sienna|silver|skyblue|slateblue|slategray|slategrey|snow|springgreen|steelblue|tan|teal|thistle|tomato|turquoise|violet|wheat|white|whitesmoke|yellow|yellowgreen/gi,p={transparent:"#00000000",aliceblue:"#f0f8ffff",antiquewhite:"#faebd7ff",aqua:"#00ffffff",aquamarine:"#7fffd4ff",azure:"#f0ffffff",beige:"#f5f5dcff",bisque:"#ffe4c4ff",black:"#000000ff",blanchedalmond:"#ffebcdff",blue:"#0000ffff",blueviolet:"#8a2be2ff",brown:"#a52a2aff",burlywood:"#deb887ff",burntsienna:"#ea7e5dff",cadetblue:"#5f9ea0ff",chartreuse:"#7fff00ff",chocolate:"#d2691eff",coral:"#ff7f50ff",cornflowerblue:"#6495edff",cornsilk:"#fff8dcff",crimson:"#dc143cff",cyan:"#00ffffff",darkblue:"#00008bff",darkcyan:"#008b8bff",darkgoldenrod:"#b8860bff",darkgray:"#a9a9a9ff",darkgreen:"#006400ff",darkgrey:"#a9a9a9ff",darkkhaki:"#bdb76bff",darkmagenta:"#8b008bff",darkolivegreen:"#556b2fff",darkorange:"#ff8c00ff",darkorchid:"#9932ccff",darkred:"#8b0000ff",darksalmon:"#e9967aff",darkseagreen:"#8fbc8fff",darkslateblue:"#483d8bff",darkslategray:"#2f4f4fff",darkslategrey:"#2f4f4fff",darkturquoise:"#00ced1ff",darkviolet:"#9400d3ff",deeppink:"#ff1493ff",deepskyblue:"#00bfffff",dimgray:"#696969ff",dimgrey:"#696969ff",dodgerblue:"#1e90ffff",firebrick:"#b22222ff",floralwhite:"#fffaf0ff",forestgreen:"#228b22ff",fuchsia:"#ff00ffff",gainsboro:"#dcdcdcff",ghostwhite:"#f8f8ffff",gold:"#ffd700ff",goldenrod:"#daa520ff",gray:"#808080ff",green:"#008000ff",greenyellow:"#adff2fff",grey:"#808080ff",honeydew:"#f0fff0ff",hotpink:"#ff69b4ff",indianred:"#cd5c5cff",indigo:"#4b0082ff",ivory:"#fffff0ff",khaki:"#f0e68cff",lavender:"#e6e6faff",lavenderblush:"#fff0f5ff",lawngreen:"#7cfc00ff",lemonchiffon:"#fffacdff",lightblue:"#add8e6ff",lightcoral:"#f08080ff",lightcyan:"#e0ffffff",lightgoldenrodyellow:"#fafad2ff",lightgray:"#d3d3d3ff",lightgreen:"#90ee90ff",lightgrey:"#d3d3d3ff",lightpink:"#ffb6c1ff",lightsalmon:"#ffa07aff",lightseagreen:"#20b2aaff",lightskyblue:"#87cefaff",lightslategray:"#778899ff",lightslategrey:"#778899ff",lightsteelblue:"#b0c4deff",lightyellow:"#ffffe0ff",lime:"#00ff00ff",limegreen:"#32cd32ff",linen:"#faf0e6ff",magenta:"#ff00ffff",maroon:"#800000ff",mediumaquamarine:"#66cdaaff",mediumblue:"#0000cdff",mediumorchid:"#ba55d3ff",mediumpurple:"#9370dbff",mediumseagreen:"#3cb371ff",mediumslateblue:"#7b68eeff",mediumspringgreen:"#00fa9aff",mediumturquoise:"#48d1ccff",mediumvioletred:"#c71585ff",midnightblue:"#191970ff",mintcream:"#f5fffaff",mistyrose:"#ffe4e1ff",moccasin:"#ffe4b5ff",navajowhite:"#ffdeadff",navy:"#000080ff",oldlace:"#fdf5e6ff",olive:"#808000ff",olivedrab:"#6b8e23ff",orange:"#ffa500ff",orangered:"#ff4500ff",orchid:"#da70d6ff",palegoldenrod:"#eee8aaff",palegreen:"#98fb98ff",paleturquoise:"#afeeeeff",palevioletred:"#db7093ff",papayawhip:"#ffefd5ff",peachpuff:"#ffdab9ff",peru:"#cd853fff",pink:"#ffc0cbff",plum:"#dda0ddff",powderblue:"#b0e0e6ff",purple:"#800080ff",rebeccapurple:"#663399ff",red:"#ff0000ff",rosybrown:"#bc8f8fff",royalblue:"#4169e1ff",saddlebrown:"#8b4513ff",salmon:"#fa8072ff",sandybrown:"#f4a460ff",seagreen:"#2e8b57ff",seashell:"#fff5eeff",sienna:"#a0522dff",silver:"#c0c0c0ff",skyblue:"#87ceebff",slateblue:"#6a5acdff",slategray:"#708090ff",slategrey:"#708090ff",snow:"#fffafaff",springgreen:"#00ff7fff",steelblue:"#4682b4ff",tan:"#d2b48cff",teal:"#008080ff",thistle:"#d8bfd8ff",tomato:"#ff6347ff",turquoise:"#40e0d0ff",violet:"#ee82eeff",wheat:"#f5deb3ff",white:"#ffffffff",whitesmoke:"#f5f5f5ff",yellow:"#ffff00ff",yellowgreen:"#9acd32ff"};function y(e){var t=function(e){return e.replace(/^#?([a-f\d])([a-f\d])([a-f\d])$/i,(function(e,t,n,i){return"#"+t+t+n+n+i+i}))}(e),n=function(e){return 7===e.length?e+"FF":e}(t),i=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(n);return{r:parseInt(i[1],16),g:parseInt(i[2],16),b:parseInt(i[3],16),a:parseInt(i[4],16)/255}}function g(e){var t=e.r,n=e.g,i=e.b,r=e.a;return"#"+(256|t).toString(16).slice(1)+(256|n).toString(16).slice(1)+(256|i).toString(16).slice(1)+(255*r|256).toString(16).slice(1)}var b=function(e,t,n,i){var r=s(t,4),o=r[0],a=r[1],f=r[2],l=r[3],u=e;if(u<o){if("identity"===n)return u;"clamp"===n&&(u=o)}if(u>a){if("identity"===i)return u;"clamp"===i&&(u=a)}return f===l?f:o===a?e<=o?f:l:(o===-1/0?u=-u:a===1/0?u-=o:u=(u-o)/(a-o),f===-1/0?u=-u:l===1/0?u+=f:u=u*(l-f)+f,u)},x=function(e,t,n,i){var r=s(t,4),o=r[0],a=r[1],f=r[2],l=r[3];if(f.length===l.length)return f.map((function(t,r){return"string"==typeof t?function(e,t){var n=s(t,4),i=n[0],r=n[1],o=n[2],a=n[3],f=y(o),l=y(a);return g({r:b(e,[i,r,f.r,l.r],"clamp","clamp"),g:b(e,[i,r,f.g,l.g],"clamp","clamp"),b:b(e,[i,r,f.b,l.b],"clamp","clamp"),a:b(e,[i,r,f.a,l.a],"clamp","clamp")})}(e,[o,a,t,l[r]]):b(e,[o,a,t,l[r]],n,i)}));throw new Error("Array length doesn't match")},w=function(e){return e.replace(d,"$")},E=function(e){return e.match(d).map((function(e){return-1!==e.indexOf("#")?e:Number(e)}))},k=function(e){return e.replace(m,(function(e){if(-1!==e.indexOf("#"))return g(y(e));if(Object.prototype.hasOwnProperty.call(p,e))return p[e];throw new Error("String cannot be parsed!")}))};function M(e,t){var n=new Map;return t.forEach((function(t){var i=s(t,3),r=i[0],o=i[1],a=i[2],f=void 0!==a&&a;n.set(r,function(e,t,n,i){return void 0===i&&(i=!1),e.forEach((function(e){e.addEventListener(t,n,i)})),function(){e.forEach((function(e){e.removeEventListener(t,n,i)}))}}(e,r,o,f))})),function(e){var t,i;try{for(var r=f(n.entries()),o=r.next();!o.done;o=r.next()){var a=s(o.value,2),l=a[0],u=a[1];if(!e)return void u();-1!==e.indexOf(l)&&u()}}catch(e){t={error:e}}finally{try{o&&!o.done&&(i=r.return)&&i.call(r)}finally{if(t)throw t.error}}}}function _(e,t,n){return Math.min(Math.max(e,t),n)}function O(e,t,n){return 0===t||Math.abs(t)===1/0?function(e,t){return Math.pow(e,5*t)}(e,n):e*t*n/(t+n*e)}var I=function(e,t){return{x:e,y:t}},S=function(){function e(){this.lastTimeStamp=Date.now(),this.isActive=!1,this.targetElements=[]}return e.prototype._initEvents=function(){},e.prototype._cancelEvents=function(){this._subscribe&&this._subscribe()},e.prototype.applyCallback=function(e){this.callback=e},e.prototype.applyGesture=function(e){var t=this,n=e.targetElement,i=e.targetElements,r=e.callback,o=e.config;return this.targetElement=n,this.targetElements=i.map((function(e){return e.current})),this.callback=r,this.config=o,this._initEvents(),function(){return t._subscribe&&t._subscribe()}},e._VELOCITY_LIMIT=20,e}(),C=function(e){function t(){var t=e.apply(this,l([],s(arguments),!1))||this;return t.movementStart=I(0,0),t.initialMovement=I(0,0),t.movement=I(0,0),t.previousMovement=I(0,0),t.translation=I(0,0),t.offset=I(0,0),t.velocity=I(0,0),t}return o(t,e),t.prototype._initEvents=function(){(this.targetElement||this.targetElements.length>0)&&(this._subscribe=M([window],[["mousedown",this.pointerDown.bind(this)],["mousemove",this.pointerMove.bind(this)],["mouseup",this.pointerUp.bind(this)],["touchstart",this.pointerDown.bind(this),{passive:!1}],["touchmove",this.pointerMove.bind(this),{passive:!1}],["touchend",this.pointerUp.bind(this)]]))},t.prototype._cancelEvents=function(){this._subscribe&&this._subscribe(["mousedown","mousemove","touchstart","touchmove"])},t.prototype._handleCallback=function(){var e=this;this.callback&&this.callback({args:[this.currentIndex],down:this.isActive,movementX:this.movement.x,movementY:this.movement.y,offsetX:this.translation.x,offsetY:this.translation.y,velocityX:this.velocity.x,velocityY:this.velocity.y,distanceX:Math.abs(this.movement.x),distanceY:Math.abs(this.movement.y),directionX:Math.sign(this.movement.x),directionY:Math.sign(this.movement.y),cancel:function(){e._cancelEvents()}})},t.prototype.pointerDown=function(e){var t;"touchstart"===e.type?this.movementStart={x:e.touches[0].clientX,y:e.touches[0].clientY}:this.movementStart={x:e.clientX,y:e.clientY},this.movement={x:0,y:0},this.offset={x:this.translation.x,y:this.translation.y},this.previousMovement={x:0,y:0},this.velocity={x:0,y:0};var n=this.targetElements.find((function(t){return t===e.target}));if(e.target===this.targetElement||n){this.isActive=!0,e.preventDefault(),n&&(this.currentIndex=this.targetElements.indexOf(n));var i=(null===(t=this.config)||void 0===t?void 0:t.initial)&&this.config.initial(),r=null==i?void 0:i.movementX,o=null==i?void 0:i.movementY;this.initialMovement={x:null!=r?r:0,y:null!=o?o:0},this.movement={x:this.initialMovement.x,y:this.initialMovement.y},this.previousMovement={x:this.initialMovement.x,y:this.initialMovement.y},this._handleCallback()}},t.prototype.pointerMove=function(e){if(this.isActive){e.preventDefault();var t=Date.now(),n=_(t-this.lastTimeStamp,.1,64);this.lastTimeStamp=t;var i=n/1e3;"touchmove"===e.type?this.movement={x:this.initialMovement.x+(e.touches[0].clientX-this.movementStart.x),y:this.initialMovement.y+(e.touches[0].clientY-this.movementStart.y)}:this.movement={x:this.initialMovement.x+(e.clientX-this.movementStart.x),y:this.initialMovement.y+(e.clientY-this.movementStart.y)},this.translation={x:this.offset.x+this.movement.x,y:this.offset.y+this.movement.y},this.velocity={x:_((this.movement.x-this.previousMovement.x)/i/1e3,-1*S._VELOCITY_LIMIT,S._VELOCITY_LIMIT),y:_((this.movement.y-this.previousMovement.y)/i/1e3,-1*S._VELOCITY_LIMIT,S._VELOCITY_LIMIT)},this.previousMovement={x:this.movement.x,y:this.movement.y},this._handleCallback()}},t.prototype.pointerUp=function(){this.isActive&&(this.isActive=!1,this._handleCallback(),this._cancelEvents(),this._initEvents())},t}(S),T=function(e){function t(){var t=e.apply(this,l([],s(arguments),!1))||this;return t.movement=I(0,0),t.previousMovement=I(0,0),t.velocity=I(0,0),t.direction=I(0,0),t}return o(t,e),t.prototype._initEvents=function(){this.targetElement?this._subscribe=M([this.targetElement],[["mousemove",this.onMouseMove.bind(this)]]):this.targetElements.length>0?this._subscribe=M(this.targetElements,[["mousemove",this.onMouseMove.bind(this)]]):this._subscribe=M([window],[["mousemove",this.onMouseMove.bind(this)]])},t.prototype._handleCallback=function(){var e;this.callback&&this.callback({args:[this.currentIndex],event:this.event,isMoving:this.isActive,target:null===(e=this.event)||void 0===e?void 0:e.target,mouseX:this.movement.x,mouseY:this.movement.y,velocityX:this.velocity.x,velocityY:this.velocity.y,directionX:this.direction.x,directionY:this.direction.y})},t.prototype.onMouseMove=function(e){var t=this,n=this.targetElements.find((function(t){return t===e.target}));n&&(this.currentIndex=this.targetElements.indexOf(n)),this.event=e;var i=Date.now(),r=Math.min(i-this.lastTimeStamp,64);this.lastTimeStamp=i;var o=r/1e3,a=e.clientX,f=e.clientY;this.movement={x:a,y:f},-1!==this.isActiveID&&(this.isActive=!0,clearTimeout(this.isActiveID)),this.isActiveID=setTimeout((function(){t.isActive=!1,t.direction={x:0,y:0},t.velocity={x:0,y:0},t._handleCallback()}),250);var s=this.movement.x-this.previousMovement.x,l=this.movement.y-this.previousMovement.y;this.direction={x:Math.sign(s),y:Math.sign(l)},this.velocity={x:_(s/o/1e3,-1*S._VELOCITY_LIMIT,S._VELOCITY_LIMIT),y:_(l/o/1e3,-1*S._VELOCITY_LIMIT,S._VELOCITY_LIMIT)},this.previousMovement={x:this.movement.x,y:this.movement.y},this._handleCallback()},t}(S),L=function(e){function t(){var t=e.apply(this,l([],s(arguments),!1))||this;return t.movement=I(0,0),t.previousMovement=I(0,0),t.direction=I(0,0),t.velocity=I(0,0),t}return o(t,e),t.prototype._initEvents=function(){this.targetElement?this._subscribe=M([this.targetElement],[["scroll",this.scrollElementListener.bind(this)]]):this._subscribe=M([window],[["scroll",this.scrollListener.bind(this)]])},t.prototype._handleCallback=function(){this.callback&&this.callback({isScrolling:this.isActive,scrollX:this.movement.x,scrollY:this.movement.y,velocityX:this.velocity.x,velocityY:this.velocity.y,directionX:this.direction.x,directionY:this.direction.y})},t.prototype.onScroll=function(e){var t=this,n=e.x,i=e.y,r=Date.now(),o=Math.min(r-this.lastTimeStamp,64);this.lastTimeStamp=r;var a=o/1e3;this.movement={x:n,y:i},-1!==this.isActiveID&&(this.isActive=!0,clearTimeout(this.isActiveID)),this.isActiveID=setTimeout((function(){t.isActive=!1,t.direction={x:0,y:0},t.velocity={x:0,y:0},t._handleCallback()}),250);var f=this.movement.x-this.previousMovement.x,s=this.movement.y-this.previousMovement.y;this.direction={x:Math.sign(f),y:Math.sign(s)},this.velocity={x:_(f/a/1e3,-1*S._VELOCITY_LIMIT,S._VELOCITY_LIMIT),y:_(s/a/1e3,-1*S._VELOCITY_LIMIT,S._VELOCITY_LIMIT)},this.previousMovement={x:this.movement.x,y:this.movement.y},this._handleCallback()},t.prototype.scrollListener=function(){var e=window.pageYOffset,t=window.pageXOffset;this.onScroll({x:t,y:e})},t.prototype.scrollElementListener=function(){var e,t,n=(null===(e=this.targetElement)||void 0===e?void 0:e.scrollLeft)||0,i=(null===(t=this.targetElement)||void 0===t?void 0:t.scrollTop)||0;this.onScroll({x:n,y:i})},t}(S),A=function(e){function t(){var t=e.apply(this,l([],s(arguments),!1))||this;return t.movement=I(0,0),t.previousMovement=I(0,0),t.direction=I(0,0),t.velocity=I(0,0),t.delta=I(0,0),t.offset=I(0,0),t.translation=I(0,0),t}return o(t,e),t.prototype._initEvents=function(){this.targetElement&&(this._subscribe=M([this.targetElement],[["wheel",this.onWheel.bind(this)]]))},t.prototype._handleCallback=function(){this.callback&&this.callback({target:this.targetElement,isWheeling:this.isActive,deltaX:this.delta.x,deltaY:this.delta.y,directionX:this.direction.x,directionY:this.direction.y,movementX:this.movement.x,movementY:this.movement.y,offsetX:this.offset.x,offsetY:this.offset.y,velocityX:this.velocity.x,velocityY:this.velocity.y})},t.prototype.onWheel=function(e){var t=this,n=e.deltaX,i=e.deltaY,r=e.deltaMode,o=Date.now(),a=Math.min(o-this.lastTimeStamp,64);this.lastTimeStamp=o;var f=a/1e3;this.isActive=!0,-1!==this.isActiveID&&(this.isActive=!0,clearTimeout(this.isActiveID)),this.isActiveID=setTimeout((function(){t.isActive=!1,t.translation={x:t.offset.x,y:t.offset.y},t._handleCallback(),t.velocity={x:0,y:0},t.movement={x:0,y:0}}),200),1===r?(n*=40,i*=40):2===r&&(n*=800,i*=800),this.delta={x:n,y:i},this.movement={x:this.movement.x+n,y:this.movement.y+i},this.offset={x:this.translation.x+this.movement.x,y:this.translation.y+this.movement.y};var s=this.movement.x-this.previousMovement.x,l=this.movement.y-this.previousMovement.y;this.direction={x:Math.sign(s),y:Math.sign(l)},this.velocity={x:_(s/f/1e3,-1*S._VELOCITY_LIMIT,S._VELOCITY_LIMIT),y:_(l/f/1e3,-1*S._VELOCITY_LIMIT,S._VELOCITY_LIMIT)},this.previousMovement={x:this.movement.x,y:this.movement.y},this._handleCallback()},t}(S),Y=function(e){var t=i.useRef(),n=i.useRef([]),r=i.useRef(new Map).current;return i.useEffect((function(){var t,n;try{for(var i=f(r.entries()),o=i.next();!o.done;o=i.next()){var a=s(o.value,2)[1],l=a.keyIndex,u=a.gesture,c=s(e[l],3)[2];u.applyCallback(c)}}catch(e){t={error:e}}finally{try{o&&!o.done&&(n=i.return)&&n.call(i)}finally{if(t)throw t.error}}}),[e]),i.useEffect((function(){return e.forEach((function(e,i){var o=s(e,4),a=o[0],f=o[1],l=o[2],u=o[3];queueMicrotask((function(){return r.set(a,{keyIndex:i,gesture:f,unsubscribe:f.applyGesture({targetElement:t.current,targetElements:n.current,callback:l,config:u})})}))})),function(){var e,t;try{for(var n=f(r.entries()),i=n.next();!i.done;i=n.next()){var o=s(i.value,2)[1].unsubscribe;o&&o()}}catch(t){e={error:t}}finally{try{i&&!i.done&&(t=n.return)&&t.call(n)}finally{if(e)throw e.error}}}})),function(e){return null==e?{ref:t}:(n.current[e]=n.current[e]||i.createRef(),{ref:n.current[e]})}};Object.defineProperty(exports,"Easing",{enumerable:!0,get:function(){return e.Easing}}),Object.defineProperty(exports,"animate",{enumerable:!0,get:function(){return e.motion}}),Object.defineProperty(exports,"combine",{enumerable:!0,get:function(){return e.combine}}),Object.defineProperty(exports,"makeAnimated",{enumerable:!0,get:function(){return e.makeMotion}}),exports.AnimationConfig=h,exports.bin=function(e){return e?1:0},exports.clamp=_,exports.interpolateNumbers=function(e,t,n,i){var r,o,a=null==i?void 0:i.extrapolate,l=null==i?void 0:i.extrapolateLeft,u=null==i?void 0:i.extrapolateRight,c=function(e,t,n){var i=t.length,r=[];e<t[0]?r=[t[0],t[1],n[0],n[1]]:e>t[i-1]&&(r=[t[i-2],t[i-1],n[i-2],n[i-1]]);for(var o=1;o<i;++o)if(e<=t[o]){r=[t[o-1],t[o],n[o-1],n[o]];break}return r}(e,t,n),h="extend";void 0!==l?h=l:void 0!==a&&(h=a);var v,d="extend";if(void 0!==u?d=u:void 0!==a&&(d=a),n.length){if("number"==typeof n[0])return b(e,c,h,d);if(Array.isArray(n[0]))return x(e,c,h,d);var m=s(c,4),p=m[0],y=m[1],g=m[2],M=m[3],_=k(g),O=k(M),I=w(_);if(v=O,w(_).trim().replace(/\s/g,"")===w(v).trim().replace(/\s/g,"")){var S=E(_),C=E(O),T=x(e,[p,y,S,C],h,d);try{for(var L=f(T),A=L.next();!A.done;A=L.next()){var Y=A.value;I=I.replace("$",Y)}}catch(e){r={error:e}}finally{try{A&&!A.done&&(o=L.return)&&o.call(L)}finally{if(r)throw r.error}}return I}throw new Error("Output range doesn't match string format!")}throw new Error("Output range cannot be Empty")},exports.mix=function(e,t,n){return t*(1-e)+n*e},exports.move=function(e,t,n){var i=e[t],r=e.length,o=t-n;if(o>0)return l(l(l(l([],s(e.slice(0,n)),!1),[i],!1),s(e.slice(n,t)),!1),s(e.slice(t+1,r)),!1);if(o<0){var a=n+1;return l(l(l(l([],s(e.slice(0,t)),!1),s(e.slice(t+1,a)),!1),[i],!1),s(e.slice(a,r)),!1)}return e},exports.rubberClamp=function(e,t,n,i){return void 0===i&&(i=.15),0===i?_(e,t,n):e<t?-O(t-e,n-t,i)+t:e>n?+O(e-n,n-t,i)+n:e},exports.snapTo=function(e,t,n){var i=e+.2*t,r=function(e){return Math.abs(e-i)},o=n.map(r),a=Math.min.apply(Math,l([],s(o),!1));return n.reduce((function(e,t){return r(t)===a?t:e}))},exports.useAnimatedList=function(e,n,i){var r;void 0===i&&(i={});var o="object"==typeof i.from&&null!==i.from,l=o?i.from:{value:null!==(r=i.from)&&void 0!==r?r:0},c={},h={};Object.keys(l).forEach((function(e){var t,n,r=o?null===(t=i.enter)||void 0===t?void 0:t[e]:i.enter;c[e]="number"==typeof r?v(r):r||v(1);var a=o?null===(n=i.exit)||void 0===n?void 0:n[e]:i.exit;h[e]="number"==typeof a?v(a):a||v(0)}));var d=t.useRef(new Map),m=t.useRef(new Set),p=s(t.useState(0),2)[1];return t.useLayoutEffect((function(){var t,i,r=new Set(e.map(n)),o=function(e){var t=n(e);if(d.current.has(t))d.current.get(t).item=e;else{var i={};Object.entries(l).forEach((function(e){var t=s(e,2),n=t[0],r=t[1],o=new u(r);o.set(c[n]),i[n]=o})),d.current.set(t,{values:i,item:e}),p((function(e){return e+1}))}};try{for(var v=f(e),y=v.next();!y.done;y=v.next()){o(y.value)}}catch(e){t={error:e}}finally{try{y&&!y.done&&(i=v.return)&&i.call(v)}finally{if(t)throw t.error}}d.current.forEach((function(e,t){var n=e.values;if(!r.has(t)&&!m.current.has(t)){m.current.add(t);var i=Object.keys(n);i.forEach((function(e,r){var o=h[e];n[e].set(a(a({},o),{options:a(a({},o.options),{onComplete:function(){var a,f;r===i.length-1&&(d.current.delete(t),m.current.delete(t),p((function(e){return e+1})),null===(f=null===(a=o.options)||void 0===a?void 0:a.onComplete)||void 0===f||f.call(a),n[e].destroy())}})}))}))}}))}),[e,n,JSON.stringify(l),JSON.stringify(c),JSON.stringify(h)]),Array.from(d.current.entries()).map((function(e){var t=s(e,2),n=t[0],i=t[1],r=i.values,a=i.item;if(!o)return{key:n,item:a,animation:r.value.value};var f={};return Object.entries(r).forEach((function(e){var t=s(e,2),n=t[0],i=t[1];f[n]=i.value})),{key:n,item:a,animation:f}}))},exports.useDrag=function(e,t){var n=i.useRef(new C).current;return Y([["drag",n,e,t]])},exports.useGesture=function(e){var t=e.onDrag,n=e.onWheel,r=e.onScroll,o=e.onMouseMove,a=i.useRef(new C).current,f=i.useRef(new A).current,s=i.useRef(new L).current,l=i.useRef(new T).current;return Y([["drag",a,t],["wheel",f,n],["scroll",s,r],["move",l,o]])},exports.useMeasure=function(e,n){var i=t.useRef(null),r=t.useRef([]),o=t.useRef(e);return t.useEffect((function(){return o.current=e,function(){o.current=function(){return!1}}}),n),t.useEffect((function(){var e=i.current||document.documentElement,t=r.current,n=new ResizeObserver((function(t){var n=s(t,1)[0].target.getBoundingClientRect(),i=n.left,r=n.top,a=n.width,f=n.height,l=window.pageXOffset,u=window.pageYOffset;if(o){if(e===document.documentElement)return;o.current({left:i+l,top:r+u,width:a,height:f,vLeft:i,vTop:r})}})),a=new ResizeObserver((function(e){var t=[],n=[],i=[],r=[],a=[],f=[];e.forEach((function(e){var o=e.target.getBoundingClientRect(),s=o.left,l=o.top,u=o.width,c=o.height,h=s+window.pageXOffset,v=l+window.pageYOffset;t.push(h),n.push(v),i.push(u),r.push(c),a.push(s),f.push(l)})),o&&o.current({left:t,top:n,width:i,height:r,vLeft:a,vTop:f})}));return e&&(e===document.documentElement&&t.length>0?t.forEach((function(e){a.observe(e.current)})):n.observe(e)),function(){e&&(e===document.documentElement&&t.length>0?t.forEach((function(e){a.unobserve(e.current)})):n.unobserve(e))}}),[]),function(e){return null==e?{ref:i}:(r.current[e]=r.current[e]||t.createRef(),{ref:r.current[e]})}},exports.useMount=function(e,n){var i;void 0===n&&(n={});var r=s(t.useState(e),2),o=r[0],f=r[1],l="object"==typeof n.from&&null!==n.from,u=l?n.from:{value:null!==(i=n.from)&&void 0!==i?i:0},h={},d={};Object.keys(u).forEach((function(e){var t,i;h[e]=l?null===(t=n.enter)||void 0===t?void 0:t[e]:n.enter,null==h[e]&&(h[e]=1),d[e]=l?null===(i=n.exit)||void 0===i?void 0:i[e]:n.exit,null==d[e]&&(d[e]=0)}));var m=s(c(u),2),p=m[0],y=m[1];if(t.useLayoutEffect((function(){var t=Object.keys(u);e?(f(!0),queueMicrotask((function(){var e={};t.forEach((function(t){var n=h[t];e[t]="object"==typeof n&&"type"in n?n:v(n)})),y(e)}))):queueMicrotask((function(){var e={};t.forEach((function(n,i){var r=d[n],o="object"==typeof r&&"type"in r?r:v(r);e[n]=a(a({},o),{options:a(a({},o.options),{onComplete:function(){var e,n;i===t.length-1&&(f(!1),null===(n=null===(e=o.options)||void 0===e?void 0:e.onComplete)||void 0===n||n.call(e))}})})})),y(e)}))}),[e,JSON.stringify(h),JSON.stringify(d)]),!l){var g=p.value;return function(e){return e(g,o)}}return function(e){return e(p,o)}},exports.useMouseMove=function(e){var t=i.useRef(new T).current;return Y([["move",t,e]])},exports.useOutsideClick=function(e,n,i){var r=t.useRef();r.current||(r.current=n),t.useEffect((function(){return r.current=n,function(){r.current=function(){return!1}}}),i),t.useEffect((function(){var t=M([document],[["mousedown",function(t){var n=t.target;n&&n.isConnected&&(e.current&&!e.current.contains(n)&&r.current&&r.current(t))}]]);return function(){return t&&t()}}),[])},exports.useScroll=function(e){var t=i.useRef(new L).current;return Y([["scroll",t,e]])},exports.useValue=c,exports.useWheel=function(e){var t=i.useRef(new A).current;return Y([["wheel",t,e]])},exports.useWindowDimension=function(e,n){var i=t.useRef({width:0,height:0,innerWidth:0,innerHeight:0}),r=t.useRef(e);t.useEffect((function(){return r.current=e,function(){r.current=function(){return!1}}}),n),t.useEffect((function(){var e=new ResizeObserver((function(e){var t=s(e,1)[0].target,n=t.clientWidth,o=t.clientHeight,f=window.innerWidth,l=window.innerHeight;i.current={width:n,height:o,innerWidth:f,innerHeight:l},r&&r.current(a({},i.current))}));return e.observe(document.documentElement),function(){return e.unobserve(document.documentElement)}}),[])},exports.withDecay=function(e){return{type:"decay",options:{velocity:e.velocity,onStart:null==e?void 0:e.onStart,onChange:null==e?void 0:e.onChange,onComplete:null==e?void 0:e.onRest,clamp:null==e?void 0:e.clamp}}},exports.withDelay=function(e){return{type:"delay",options:{delay:e}}},exports.withEase=function(e,t){return v(e,a(a({},t),h.Spring.EASE))},exports.withLoop=function(e,t,n){return{type:"loop",options:{controller:e,iterations:t,onStart:null==n?void 0:n.onStart,onChange:null==n?void 0:n.onChange,onComplete:null==n?void 0:n.onRest}}},exports.withSequence=function(e,t){return{type:"sequence",options:{steps:e,onStart:null==t?void 0:t.onStart,onChange:null==t?void 0:t.onChange,onComplete:null==t?void 0:t.onRest}}},exports.withSpring=v,exports.withTiming=function(e,t){var n;return{type:"timing",to:e,options:{duration:null!==(n=null==t?void 0:t.duration)&&void 0!==n?n:300,easing:null==t?void 0:t.easing,onStart:null==t?void 0:t.onStart,onChange:null==t?void 0:t.onChange,onComplete:null==t?void 0:t.onRest}}};
2
2
  //# sourceMappingURL=index.js.map