@colisweb/rescript-toolkit 5.15.2 → 5.15.4
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 +1 -1
- package/src/form/ReSchema.res +1 -1
- package/src/vendors/Here.res +1 -1
package/package.json
CHANGED
package/src/form/ReSchema.res
CHANGED
|
@@ -252,7 +252,7 @@ module Make = (Lenses: Lenses) => {
|
|
|
252
252
|
(
|
|
253
253
|
Field(fields.field),
|
|
254
254
|
switch (value, fields.login->Option.map(fn => fn(values))) {
|
|
255
|
-
| ("", _) =>
|
|
255
|
+
| ("", _) => Valid
|
|
256
256
|
| (password, _)
|
|
257
257
|
if !Js.Re.test_(%re("/(?=.*[a-z])(?=.*[A-Z])(?=.*\d).{10,}/"), password) =>
|
|
258
258
|
Error(fields.error->Option.getWithDefault(i18n.passwordTooShort))
|
package/src/vendors/Here.res
CHANGED
|
@@ -293,7 +293,7 @@ module Map = {
|
|
|
293
293
|
external setZoom: (instance, int) => unit = "setZoom"
|
|
294
294
|
|
|
295
295
|
@send
|
|
296
|
-
external getObjects: (instance, unit) => array<
|
|
296
|
+
external getObjects: (instance, unit) => array<object> = "getObjects"
|
|
297
297
|
@send
|
|
298
298
|
external getViewPort: (instance, unit) => Viewport.t = "getViewPort"
|
|
299
299
|
@send
|