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
warns for unscoped class, because we used it without any root scoping
creates a local class symbol because it's a simple class with -st-extends
I think it should allow the local definition first and error with Import declaration conflicts with local declaration of 'symbol name'
example:
@st-import [icon] from "./button.st.css";
@st-import OtherIcon from "./other-icon.st.css";
.icon { /* is this a local definition or an import alias? */
-st-extends: OtherIcon;
}
Currently when adding
-st-extends
to an alias it:-st-extends
I think it should allow the local definition first and error with
Import declaration conflicts with local declaration of 'symbol name'
example:
The text was updated successfully, but these errors were encountered: