@colisweb/rescript-toolkit 5.42.0 → 5.42.2
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/.secure_files/{ci-functions-v17.12.0-feat-add-mysql-service-1.0.2beta → ci-functions-v20.2.3} +492 -97
- package/.secure_files/{ci-functions-v17.12.0-feat-add-mysql-service-1.0.3beta → ci-functions-v20.2.4} +492 -97
- package/package.json +1 -1
- package/src/ui/Toolkit__Ui_PortalDropdown.res +1 -1
- package/src/vendors/Here.res +5 -1
package/package.json
CHANGED
|
@@ -100,7 +100,7 @@ let make = (
|
|
|
100
100
|
})}
|
|
101
101
|
className={cx([
|
|
102
102
|
"dropdown",
|
|
103
|
-
"absolute z-
|
|
103
|
+
"absolute z-50 bg-white p-2 transform shadow rounded text-base font-normal text-neutral-700 opacity-0",
|
|
104
104
|
dropdownClassName,
|
|
105
105
|
])}
|
|
106
106
|
style={adjustmentStyle->Option.getWithDefault(ReactDOM.Style.make())}>
|
package/src/vendors/Here.res
CHANGED
|
@@ -69,7 +69,7 @@ module Platform = {
|
|
|
69
69
|
@new
|
|
70
70
|
external make: options => t = "H.service.Platform"
|
|
71
71
|
|
|
72
|
-
type layersOptions = {pois: bool}
|
|
72
|
+
type layersOptions = {pois: bool, engineType?: string}
|
|
73
73
|
|
|
74
74
|
module Router = {
|
|
75
75
|
type t
|
|
@@ -125,11 +125,15 @@ module Map = {
|
|
|
125
125
|
zoom: int,
|
|
126
126
|
center: coordinates,
|
|
127
127
|
padding?: padding,
|
|
128
|
+
engineType?: string,
|
|
128
129
|
}
|
|
129
130
|
|
|
130
131
|
@new
|
|
131
132
|
external make: (Dom.element, Layers.map, options) => instance = "H.Map"
|
|
132
133
|
|
|
134
|
+
@val
|
|
135
|
+
external engineType: Js.Dict.t<string> = "H.Map.EngineType"
|
|
136
|
+
|
|
133
137
|
module Icon = {
|
|
134
138
|
type t
|
|
135
139
|
|