@oxyhq/bloom 0.29.0 → 0.29.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 (43) hide show
  1. package/lib/commonjs/animated-check/AnimatedCheck.js +2 -2
  2. package/lib/commonjs/animated-check/AnimatedCheck.js.map +1 -1
  3. package/lib/commonjs/bottom-sheet/index.js +2 -2
  4. package/lib/commonjs/bottom-sheet/index.js.map +1 -1
  5. package/lib/commonjs/connection-dots/ConnectionDots.js +2 -2
  6. package/lib/commonjs/connection-dots/ConnectionDots.js.map +1 -1
  7. package/lib/commonjs/content-panel/index.web.js +6 -18
  8. package/lib/commonjs/content-panel/index.web.js.map +1 -1
  9. package/lib/commonjs/dialog/Dialog.js +1 -1
  10. package/lib/commonjs/dialog/Dialog.js.map +1 -1
  11. package/lib/commonjs/loading/Loading.js +2 -2
  12. package/lib/commonjs/loading/Loading.js.map +1 -1
  13. package/lib/commonjs/loading/SpinnerIcon.js +1 -1
  14. package/lib/commonjs/loading/SpinnerIcon.js.map +1 -1
  15. package/lib/commonjs/pressable-scale/PressableScale.js +1 -1
  16. package/lib/commonjs/pressable-scale/PressableScale.js.map +1 -1
  17. package/lib/module/animated-check/AnimatedCheck.js +2 -2
  18. package/lib/module/animated-check/AnimatedCheck.js.map +1 -1
  19. package/lib/module/bottom-sheet/index.js +2 -2
  20. package/lib/module/bottom-sheet/index.js.map +1 -1
  21. package/lib/module/connection-dots/ConnectionDots.js +2 -2
  22. package/lib/module/connection-dots/ConnectionDots.js.map +1 -1
  23. package/lib/module/content-panel/index.web.js +6 -18
  24. package/lib/module/content-panel/index.web.js.map +1 -1
  25. package/lib/module/dialog/Dialog.js +1 -1
  26. package/lib/module/dialog/Dialog.js.map +1 -1
  27. package/lib/module/loading/Loading.js +2 -2
  28. package/lib/module/loading/Loading.js.map +1 -1
  29. package/lib/module/loading/SpinnerIcon.js +1 -1
  30. package/lib/module/loading/SpinnerIcon.js.map +1 -1
  31. package/lib/module/pressable-scale/PressableScale.js +1 -1
  32. package/lib/module/pressable-scale/PressableScale.js.map +1 -1
  33. package/lib/typescript/commonjs/content-panel/index.web.d.ts.map +1 -1
  34. package/lib/typescript/module/content-panel/index.web.d.ts.map +1 -1
  35. package/package.json +1 -1
  36. package/src/animated-check/AnimatedCheck.tsx +2 -2
  37. package/src/bottom-sheet/index.tsx +2 -2
  38. package/src/connection-dots/ConnectionDots.tsx +2 -2
  39. package/src/content-panel/index.web.tsx +26 -37
  40. package/src/dialog/Dialog.tsx +1 -1
  41. package/src/loading/Loading.tsx +2 -2
  42. package/src/loading/SpinnerIcon.tsx +1 -1
  43. package/src/pressable-scale/PressableScale.tsx +1 -1
@@ -398,7 +398,7 @@ function SideSheet({
398
398
 
399
399
  const backdropAnimatedStyle = useAnimatedStyle(() => ({
400
400
  opacity: progress.value * SHEET_BACKDROP_OPACITY,
401
- }));
401
+ }), []);
402
402
 
403
403
  const hiddenSign = side === 'left' ? -1 : 1;
404
404
  const panelAnimatedStyle = useAnimatedStyle(() => {
@@ -92,12 +92,12 @@ const TopLoading: React.FC<TopLoadingProps> = ({
92
92
 
93
93
  const containerAnimated = useAnimatedStyle(() => ({
94
94
  height: height.value,
95
- }));
95
+ }), []);
96
96
 
97
97
  const innerAnimated = useAnimatedStyle(() => ({
98
98
  opacity: opacity.value,
99
99
  transform: [{ translateY: translateY.value }],
100
- }));
100
+ }), []);
101
101
 
102
102
  return (
103
103
  <Animated.View style={[styles.topContainer, containerAnimated]} testID={testID}>
@@ -60,7 +60,7 @@ const AnimatedSpinner: React.FC<AnimatedSpinnerProps> = ({
60
60
 
61
61
  const animatedStyle = useAnimatedStyle(() => ({
62
62
  transform: [{ rotate: `${rotation.value}deg` }],
63
- }));
63
+ }), []);
64
64
 
65
65
  return (
66
66
  <Animated.View
@@ -65,7 +65,7 @@ export const PressableScale = forwardRef<View, PressableScaleProps>(
65
65
 
66
66
  const animatedStyle = useAnimatedStyle(() => ({
67
67
  transform: [{ scale: scale.value }],
68
- }));
68
+ }), []);
69
69
 
70
70
  return (
71
71
  <AnimatedPressable