allaw-ui 2.5.0 → 2.5.1
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.
|
@@ -132,7 +132,9 @@ var VerificationCodeInput = function (_a) {
|
|
|
132
132
|
? "[0-9]*"
|
|
133
133
|
: allowedChars === "alphabetic"
|
|
134
134
|
? "[a-zA-Z]*"
|
|
135
|
-
: "[a-zA-Z0-9]*", ref: function (input) { return (inputRefs.current[index] = input); }, autoFocus: index === 0 && autoFocus, tabIndex: index === 0 ? 0 : undefined
|
|
135
|
+
: "[a-zA-Z0-9]*", ref: function (input) { return (inputRefs.current[index] = input); }, autoFocus: index === 0 && autoFocus, tabIndex: index === 0 ? 0 : undefined, "data-lpignore": "true" // Empêche Dashlane d'intervenir
|
|
136
|
+
, "data-form-type": "other" // Indique que ce n'est pas un champ de mot de passe
|
|
137
|
+
})); });
|
|
136
138
|
};
|
|
137
139
|
return (React.createElement("div", { className: styles.container },
|
|
138
140
|
React.createElement("div", { className: styles.inputsContainer }, renderInputs()),
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import "./TinyInfo.css";
|
|
3
3
|
export interface TinyInfoProps {
|
|
4
|
-
variant: "bold14" | "medium14" | "semiBold12" | "medium12";
|
|
4
|
+
variant: "bold14" | "medium14" | "semiBold14" | "semiBold12" | "medium12";
|
|
5
5
|
color?: "bleu-allaw" | "mid-grey" | "dark-grey" | "noir" | "pure-white" | "actions-error" | "actions-valid";
|
|
6
6
|
text: string;
|
|
7
7
|
href?: string;
|