kCssInteractionProperties top-level constant

Set<String> const kCssInteractionProperties

The CSS properties CssInteractionHtmlExtension renders.

flutter_html 3.0.0 parses none of these: they are dropped silently on the way in, which is why this package exists. The set is stable public API. The sibling utility-class packages (flutter_html_bootstrap, flutter_html_vuetify) suppress CSS that nothing can render, and their companion tables pin this exact set against CssInteractionHtmlExtension. Changing it is a breaking change for them. No published release of those packages carries that entry yet. Check the entry against the version you depend on, not against their repositories.

Implementation

const Set<String> kCssInteractionProperties = {
  'cursor',
  'pointer-events',
  'user-select',
};