indicator-ui 0.0.43 → 0.0.44

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.
package/dist/index.js CHANGED
@@ -10136,7 +10136,7 @@ function SlideTransition({ children, animation, additionStyles, animationOptions
10136
10136
  const animateConfig = getConfig('exit-down');
10137
10137
  animateDropWrapperRef.current.animate([
10138
10138
  { transform: 'scaleY(1)', transformOrigin: 'bottom' },
10139
- { transform: 'scaleY(0)', transformOrigin: 'bottom' },
10139
+ { transform: 'scaleY(0)', transformOrigin: 'bottom', display: 'none' },
10140
10140
  ], animateConfig);
10141
10141
  mainRef.current.animate([
10142
10142
  { transform: 'translateY(0)' },
@@ -10148,7 +10148,7 @@ function SlideTransition({ children, animation, additionStyles, animationOptions
10148
10148
  const animateConfig = getConfig('exit-up');
10149
10149
  animateDropWrapperRef.current.animate([
10150
10150
  { height: `${mainHeight}px` },
10151
- { height: `0` },
10151
+ { height: `0`, display: 'none' },
10152
10152
  ], animateConfig);
10153
10153
  mainRef.current.animate([
10154
10154
  { transform: 'translateY(0)' },
@@ -10158,7 +10158,7 @@ function SlideTransition({ children, animation, additionStyles, animationOptions
10158
10158
  const animateEnterDown = () => {
10159
10159
  const animateConfig = getConfig('exit-down');
10160
10160
  animateDropWrapperRef.current.animate([
10161
- { transform: 'scaleY(0)', transformOrigin: 'bottom' },
10161
+ { transform: 'scaleY(0)', transformOrigin: 'bottom', display: 'block' },
10162
10162
  { transform: 'scaleY(1)', transformOrigin: 'bottom' },
10163
10163
  ], animateConfig);
10164
10164
  mainRef.current.animate([
@@ -10170,7 +10170,7 @@ function SlideTransition({ children, animation, additionStyles, animationOptions
10170
10170
  const mainHeight = mainRef.current.clientHeight;
10171
10171
  const animateConfig = getConfig('exit-up');
10172
10172
  animateDropWrapperRef.current.animate([
10173
- { height: `0` },
10173
+ { height: `0`, display: 'block' },
10174
10174
  { height: `${mainHeight}px` },
10175
10175
  ], animateConfig);
10176
10176
  mainRef.current.animate([