@prefecthq/prefab-ui 0.18.4 → 0.18.5

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.
@@ -9520,7 +9520,7 @@ class _IndexPath(NamedTuple):
9520
9520
  _Node = _BinOp | _UnaryOp | _Ternary | _Pipe | _DotPath | _IndexPath
9521
9521
 
9522
9522
  # Ops where RHS needs strict wrapping (parens at same precedence)
9523
- _STRICT_RHS_OPS = frozenset({"-", "/", "&&", "||"})
9523
+ _STRICT_RHS_OPS = frozenset({"-", "/", "%", "&&", "||"})
9524
9524
 
9525
9525
 
9526
9526
  @runtime_checkable