@omnic/widget-locations 1.1.0 → 1.1.2-develop.0
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/README.md +3 -3
- package/dist/lib/style.css +1516 -1
- package/dist/lib/widget.cjs.js +59169 -32
- package/dist/lib/widget.cjs.js.map +1 -0
- package/dist/lib/widget.esm.js +54947 -12900
- package/dist/lib/widget.esm.js.map +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -147,7 +147,7 @@ Then `OMNIC_WIDGET_LOCATIONS_CONFIG` has the following structure:
|
|
|
147
147
|
| map.initialZoom | number | Initial zoom level of the map. Example: `10` |
|
|
148
148
|
| hideLogo | boolean | Whether to hide the logo |
|
|
149
149
|
| startScreen | string | Start screen of the widget. Currently supported: `map`, `selector` |
|
|
150
|
-
|
|
|
150
|
+
| disableDelivery | boolean | Whether to disable delivery option |
|
|
151
151
|
| inputs | WidgetInputs | Control over widget inputs |
|
|
152
152
|
| handlers | WidgetHandlers | Handlers config object |
|
|
153
153
|
| hideMapUI | boolean | Whether to hide map UI elements, like trademarks, terms of use and etc. |
|
|
@@ -185,11 +185,11 @@ interface WidgetInputs {
|
|
|
185
185
|
*/
|
|
186
186
|
city: InputConfig;
|
|
187
187
|
/**
|
|
188
|
-
*
|
|
188
|
+
* Delivery apartment input
|
|
189
189
|
*/
|
|
190
190
|
apartment: InputConfig;
|
|
191
191
|
/**
|
|
192
|
-
*
|
|
192
|
+
* Delivery comment input
|
|
193
193
|
*/
|
|
194
194
|
comment: InputConfig;
|
|
195
195
|
}
|