homeflowjs 1.0.98 → 1.0.100
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
|
@@ -663,7 +663,8 @@ export default class DraggableMap {
|
|
|
663
663
|
|
|
664
664
|
const params = [];
|
|
665
665
|
|
|
666
|
-
if ((search.type) && (search.type !== "")) { params.push("tag-" + search.type); }
|
|
666
|
+
if ((search.type) && (search.type !== "")) { params.push("tag-" + search.type); }
|
|
667
|
+
if (search.tags && search.tags.length) { params.push("tag-" + search.tags.join(',')); }
|
|
667
668
|
if (search.minBeds) { params.push("from-" + search.minBeds + "-bed"); }
|
|
668
669
|
if (search.maxBeds) { params.push("up-to-" + search.maxBeds + "-bed"); }
|
|
669
670
|
|
|
@@ -10,6 +10,8 @@ const ChangePasswordForm = ({
|
|
|
10
10
|
classNames,
|
|
11
11
|
onSuccessCallback,
|
|
12
12
|
onErrorCallback,
|
|
13
|
+
pattern,
|
|
14
|
+
patternText,
|
|
13
15
|
submitText,
|
|
14
16
|
submitTextSubmitting,
|
|
15
17
|
Loader,
|
|
@@ -212,6 +214,8 @@ const ChangePasswordForm = ({
|
|
|
212
214
|
{...(formData.loading && {
|
|
213
215
|
disabled: true,
|
|
214
216
|
})}
|
|
217
|
+
{...(patternText && { title: patternText })}
|
|
218
|
+
{...(pattern && { pattern: pattern })}
|
|
215
219
|
/>
|
|
216
220
|
<label
|
|
217
221
|
htmlFor="user-input-current_password"
|
|
@@ -231,6 +235,8 @@ const ChangePasswordForm = ({
|
|
|
231
235
|
{...(formData.loading && {
|
|
232
236
|
disabled: true,
|
|
233
237
|
})}
|
|
238
|
+
{...(patternText && { title: patternText })}
|
|
239
|
+
{...(pattern && { pattern: pattern })}
|
|
234
240
|
/>
|
|
235
241
|
<label
|
|
236
242
|
htmlFor="user-input-new_password"
|
|
@@ -250,6 +256,8 @@ const ChangePasswordForm = ({
|
|
|
250
256
|
{...(formData.loading && {
|
|
251
257
|
disabled: true,
|
|
252
258
|
})}
|
|
259
|
+
{...(patternText && { title: patternText })}
|
|
260
|
+
{...(pattern && { pattern: pattern })}
|
|
253
261
|
/>
|
|
254
262
|
<label
|
|
255
263
|
htmlFor="user-input-new_password_confirmation"
|
|
@@ -295,6 +303,8 @@ const ChangePasswordForm = ({
|
|
|
295
303
|
{...(formData.loading && {
|
|
296
304
|
disabled: true,
|
|
297
305
|
})}
|
|
306
|
+
{...(patternText && { title: patternText })}
|
|
307
|
+
{...(pattern && { pattern: pattern })}
|
|
298
308
|
/>
|
|
299
309
|
<input
|
|
300
310
|
type="password"
|
|
@@ -307,6 +317,8 @@ const ChangePasswordForm = ({
|
|
|
307
317
|
{...(formData.loading && {
|
|
308
318
|
disabled: true,
|
|
309
319
|
})}
|
|
320
|
+
{...(patternText && { title: patternText })}
|
|
321
|
+
{...(pattern && { pattern: pattern })}
|
|
310
322
|
/>
|
|
311
323
|
<input
|
|
312
324
|
type="password"
|
|
@@ -319,6 +331,8 @@ const ChangePasswordForm = ({
|
|
|
319
331
|
{...(formData.loading && {
|
|
320
332
|
disabled: true,
|
|
321
333
|
})}
|
|
334
|
+
{...(patternText && { title: patternText })}
|
|
335
|
+
{...(pattern && { pattern: pattern })}
|
|
322
336
|
/>
|
|
323
337
|
<button
|
|
324
338
|
className={`${changePasswordClassNames.buttonClassName} ${loadingClassName}`}
|