mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-14 16:47:25 +00:00
feat(StatusPasswordStrengthIndicator): Add new Strength type None
Add new Strength type None and its corresponding state.
This commit is contained in:
parent
387a103742
commit
6b7a332d61
@ -15,16 +15,21 @@ StatusProgressBar {
|
||||
property string labelGreat: "Great"
|
||||
|
||||
enum Strength {
|
||||
VeryWeak, // 0
|
||||
Weak, // 1
|
||||
SoSo, // 2
|
||||
Good, // 3
|
||||
Great // 4
|
||||
None, // 0
|
||||
VeryWeak, // 1
|
||||
Weak, // 2
|
||||
SoSo, // 3
|
||||
Good, // 4
|
||||
Great // 5
|
||||
}
|
||||
|
||||
// Behavior:
|
||||
states: [
|
||||
// Strength states definition:
|
||||
State {
|
||||
when: control.strength === StatusPasswordStrengthIndicator.Strength.None
|
||||
PropertyChanges { target: control; text: ""}
|
||||
},
|
||||
State {
|
||||
when: control.strength === StatusPasswordStrengthIndicator.Strength.VeryWeak
|
||||
PropertyChanges { target: control; fillColor : Theme.palette.dangerColor1}
|
||||
|
Loading…
x
Reference in New Issue
Block a user