[CORL-445] Change Password (#2426)

* fix: reversed `new-password` autocomplete option

* feat: initial implementation

* fix: localization and testing

* fix: updated snapshot
This commit is contained in:
Wyatt Johnson
2019-08-01 22:08:14 +00:00
committed by GitHub
parent 290ceee8e9
commit 836a2267bf
48 changed files with 1122 additions and 197 deletions
@@ -29,6 +29,12 @@
color: var(--palette-text-primary);
}
.colorSuccess {
background-color: var(--palette-success-lightest);
border-color: var(--palette-success-light);
color: var(--palette-text-primary);
}
.fullWidth {
display: flex;
width: 100%;
@@ -22,7 +22,7 @@ export interface CallOutProps {
/**
* Color of the CallOut
*/
color?: "regular" | "primary" | "error";
color?: "regular" | "primary" | "error" | "success";
/*
* If set renders a full width CallOut
*/
@@ -38,6 +38,7 @@ const CallOut: FunctionComponent<CallOutProps> = props => {
[classes.colorRegular]: color === "regular",
[classes.colorError]: color === "error",
[classes.colorPrimary]: color === "primary",
[classes.colorSuccess]: color === "success",
[classes.fullWidth]: fullWidth,
},
className