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
StyleStreams is currently a whitelist of values that combineStyleStreams can transform into CSS rules. Thus, even though combineStyleStreams will pass through streams of standard CSS rules, TypeScript will reject them:
pointerEvents$ does not exist in type "Partial<StyleStreams>"
Fixing this probably involves falling back to csstype, and either removing the $ suffices from stream arguments, or writing a script that generates rule$: Observable<typeof rule> for every rule in csstype.