react-ux-password-field icon indicating copy to clipboard operation
react-ux-password-field copied to clipboard

I am unable to get react-ux-password-field to update strength language

Open aaronmagi opened this issue 9 years ago • 0 comments

I set it up as the demo but when I type a password that passes the requirements the language remains at weak. The status bar updates but not the wording. I tested on IE and Chrome.

http://postimg.org/image/ory7mi58b/

const React = require('react');
const ReactDOM = require('react-dom');
const InputPassword = require('react-ux-password-field');

class Dialog extends React.Component {

  constructor(props) {
    super(props);
  }

  render() {
    return (
      <InputPassword
        />
    )
  }
}

Package.json

"dependencies": {
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"rest": "^1.3.2",
"sockjs-client": "^1.0.3",
"stompjs": "^2.3.3",
"webpack": "^1.13.0",
"when": "^3.7.7",
"react-bootstrap": "^0.29.3",
"jquery":  "^2.2.3",
"react-ux-password-field":  "^0.9.12"
}

aaronmagi avatar May 31 '16 16:05 aaronmagi