@base-ui-components/react
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
8 lines (7 loc) • 315 B
TypeScript
/**
* Detect if Element: computedStyleMap() is supported as a more performant
* alternative to getComputedStyles()
* Only Firefox does not have support as of Nov 2024.
* https://developer.mozilla.org/en-US/docs/Web/API/Element/computedStyleMap
*/
export declare function hasComputedStyleMapSupport(): boolean;