webc-miam 8.0.5 → 8.0.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.
@@ -261,4 +261,10 @@ export interface MiamInterface {
261
261
  * @param url of the new icon
262
262
  */
263
263
  overrideIcon: (icon, url: string) => void;
264
+
265
+ /**
266
+ * Pass a callback that returns the default scroll container of the page so mealz modal can block the scroll when opened
267
+ * Default callback returns document.body
268
+ */
269
+ setDefaultScrollElementGetter: (callback: () => HTMLElement) => void;
264
270
  }