allaw-ui 2.5.6 → 2.5.7
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.
|
@@ -82,6 +82,12 @@
|
|
|
82
82
|
gap: 11px;
|
|
83
83
|
}
|
|
84
84
|
|
|
85
|
+
.Input-variation .Input-wrapper {
|
|
86
|
+
width: 100%;
|
|
87
|
+
display: flex;
|
|
88
|
+
flex-direction: column;
|
|
89
|
+
}
|
|
90
|
+
|
|
85
91
|
.Input-variation .Input-container {
|
|
86
92
|
display: flex;
|
|
87
93
|
width: 100%;
|
|
@@ -152,6 +158,12 @@
|
|
|
152
158
|
gap: 11px;
|
|
153
159
|
}
|
|
154
160
|
|
|
161
|
+
.Input-password .Input-wrapper {
|
|
162
|
+
width: 100%;
|
|
163
|
+
display: flex;
|
|
164
|
+
flex-direction: column;
|
|
165
|
+
}
|
|
166
|
+
|
|
155
167
|
.Input-password .Input-container {
|
|
156
168
|
display: flex;
|
|
157
169
|
width: 100%;
|
|
@@ -204,5 +216,6 @@
|
|
|
204
216
|
|
|
205
217
|
.error-message {
|
|
206
218
|
padding-top: 4px;
|
|
207
|
-
padding-left:
|
|
219
|
+
padding-left: 4px;
|
|
220
|
+
width: 100%;
|
|
208
221
|
}
|
|
@@ -79,13 +79,14 @@ var Input = forwardRef(function (_a, ref) {
|
|
|
79
79
|
isRequired && title && (React.createElement("span", { className: "Input-required" },
|
|
80
80
|
"\u00A0",
|
|
81
81
|
"*"))),
|
|
82
|
-
React.createElement("div", { className: "Input-
|
|
83
|
-
React.createElement("div", { className: "Input-
|
|
84
|
-
React.createElement("
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
82
|
+
React.createElement("div", { className: "Input-wrapper" },
|
|
83
|
+
React.createElement("div", { className: "Input-container" },
|
|
84
|
+
React.createElement("div", { className: "Input-input" },
|
|
85
|
+
React.createElement("input", { ref: inputRef, type: style === "password" && !isPasswordVisible ? "password" : type, placeholder: placeholder, className: "Input-placeholder", value: value, onChange: function (e) {
|
|
86
|
+
handleChange(e);
|
|
87
|
+
rowChange && rowChange(e);
|
|
88
|
+
}, onBlur: handleBlur })),
|
|
89
|
+
renderEndIcon()),
|
|
89
90
|
error && isTouched && (React.createElement("div", { className: "error-message" },
|
|
90
91
|
React.createElement(TinyInfo, { variant: "medium12", color: "actions-error", text: error }))))));
|
|
91
92
|
});
|
|
@@ -99,3 +99,12 @@ WithValidation.args = {
|
|
|
99
99
|
isRequired: true,
|
|
100
100
|
validate: "email",
|
|
101
101
|
};
|
|
102
|
+
export var PasswordWithError = Template.bind({});
|
|
103
|
+
PasswordWithError.args = {
|
|
104
|
+
name: "passwordInputError",
|
|
105
|
+
title: "Mot de passe",
|
|
106
|
+
placeholder: "Entrez votre mot de passe",
|
|
107
|
+
style: "password",
|
|
108
|
+
isRequired: true,
|
|
109
|
+
error: "Le mot de passe doit contenir au moins 8 caractères",
|
|
110
|
+
};
|