You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git clone https://github.com/azu/panda-css-physical-properties-bug
cd panda-css-physical-properties-bug
pnpm install
pnpm run lint
./src/app/Heading.tsx
51:7 Error: Use logical property of `left` instead. Prefer `insetInlineStart` @pandacss/no-physical-properties
60:7 Error: Use logical property of `right` instead. Prefer `insetInlineEnd` @pandacss/no-physical-properties
Actual
@pandacss/no-physical-properties report an error.
51:7 Error: Use logical property of left instead. Prefer insetInlineStart @pandacss/no-physical-properties
60:7 Error: Use logical property of right instead. Prefer insetInlineEnd @pandacss/no-physical-properties
Expected
No Error
This left and right of cva's variants are not CSS physical property.
Perhaps it is a false positive because the names are the same.
The text was updated successfully, but these errors were encountered:
When I write the following
cva
variants,@pandacss/no-physical-properties
reports an error.Reported Error by
@pandacss/no-physical-properties
Reproduce Repository
Actual
@pandacss/no-physical-properties
report an error.Expected
No Error
This
left
andright
of cva's variants are not CSS physical property.Perhaps it is a false positive because the names are the same.
The text was updated successfully, but these errors were encountered: