ywana-core8 0.0.330 → 0.0.333

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ywana-core8",
3
- "version": "0.0.330",
3
+ "version": "0.0.333",
4
4
  "description": "ywana-core8",
5
5
  "author": "Ernesto Roldan Garcia",
6
6
  "license": "MIT",
@@ -43,8 +43,8 @@ export const ResetPasswordBox = ({ logo, title, children, onOK, onClose }) => {
43
43
  </header>
44
44
  <main>
45
45
  <Text use="headline6">Change Password</Text>
46
- <TextField label={tx(userLabel)} value={user} onChange={changeUser} onEnter={ok} outlined />
47
- <TextField id="password1" outlined icon="lock" type="password" label="New Password" lapse={100} onChange={changeField} onEnter={ok}/>
46
+ <TextField id="user" outlined icon="person" label="User" lapse={100} onChange={changeField} onEnter={ok}/>
47
+ <TextField id="password1" outlined icon="lock" type="password" label="New Password" lapse={100} onChange={changeField} onEnter={ok}/>
48
48
  <TextField id="password2" outlined icon="lock" type="password" label="Confirm New Password" lapse={100} onChange={changeField} onEnter={ok}/>
49
49
  { error ? <div className="error">{error}</div> : null}
50
50
  </main>