@olwiba/ui 0.1.7 → 0.1.8

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
@@ -3061,6 +3061,14 @@ function FlowBracket({
3061
3061
  80%{top:${anchorTop}%;left:calc(100% + ${ep});opacity:1}
3062
3062
  94%{top:${anchorTop}%;left:100%;opacity:0}
3063
3063
  100%{top:${anchorTop}%;left:100%;opacity:0}
3064
+ }
3065
+ @keyframes fb-drr{
3066
+ 0%{top:${anchorTop}%;left:100%;opacity:0}
3067
+ 6%{opacity:1}
3068
+ 20%{top:${anchorTop}%;left:calc(100% + ${ep})}
3069
+ 80%{top:${anchorBottom}%;left:calc(100% + ${ep});opacity:1}
3070
+ 94%{top:${anchorBottom}%;left:100%;opacity:0}
3071
+ 100%{top:${anchorBottom}%;left:100%;opacity:0}
3064
3072
  }` : "";
3065
3073
  const dotBase = {
3066
3074
  position: "absolute",
@@ -3125,7 +3133,7 @@ function FlowBracket({
3125
3133
  "div",
3126
3134
  {
3127
3135
  "aria-hidden": true,
3128
- style: { ...dotBase, backgroundColor: cr, animation: `fb-dr ${animateDur} ease-in-out 1.8s infinite` }
3136
+ style: { ...dotBase, backgroundColor: cr, animation: `${reverseRight ? "fb-drr" : "fb-dr"} ${animateDur} ease-in-out 1.8s infinite` }
3129
3137
  }
3130
3138
  )
3131
3139
  ] });