How to use the @material/ripple.util.supportsCssVariables function in @material/ripple

To help you get started, we’ve selected a few @material/ripple examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github trimox / angular-mdc-web / src / lib / ripple / ripple.orchestration.ts View on Github external
    browserSupportsCssVars: () => (typeof window !== 'undefined') ? util.supportsCssVariables(window) : false,
    isUnbounded: () => this.isUnbounded(),
github jamesmfriedman / rmwc / src / ripple / foundation.tsx View on Github external
        browserSupportsCssVars: () => util.supportsCssVariables(window),
        isUnbounded: () => !!getProps().unbounded,
github secondstreet / ember-material-components-web / addon / utils / mdc-ripple-adapter.js View on Github external
      browserSupportsCssVars: () => util.supportsCssVariables(window),
      isUnbounded: () => false,
github jamesmfriedman / rmwc / src / ripple / index.tsx View on Github external
      browserSupportsCssVars: () => util.supportsCssVariables(window),
      isUnbounded: () => !!this.props.unbounded,