@@ -252,15 +252,15 @@ class Popover extends PopoverPositionMixin(
252252 } ,
253253
254254 /**
255- * Set the height of the overlay .
255+ * Set the height of the popover .
256256 * If a unitless number is provided, pixels are assumed.
257257 */
258258 height : {
259259 type : String ,
260260 } ,
261261
262262 /**
263- * Set the width of the overlay .
263+ * Set the width of the popover .
264264 * If a unitless number is provided, pixels are assumed.
265265 */
266266 width : {
@@ -305,7 +305,7 @@ class Popover extends PopoverPositionMixin(
305305 } ,
306306
307307 /**
308- * True if the popover overlay is opened, false otherwise .
308+ * True if the popover is visible and available for interaction .
309309 */
310310 opened : {
311311 type : Boolean ,
@@ -325,7 +325,7 @@ class Popover extends PopoverPositionMixin(
325325 } ,
326326
327327 /**
328- * The `role` attribute value to be set on the overlay .
328+ * The `role` attribute value to be set on the popover .
329329 *
330330 * @attr {string} overlay-role
331331 * @deprecated Use standard `role` attribute on the popover instead
@@ -335,11 +335,11 @@ class Popover extends PopoverPositionMixin(
335335 } ,
336336
337337 /**
338- * Custom function for rendering the content of the overlay .
338+ * Custom function for rendering the content of the popover .
339339 * Receives two arguments:
340340 *
341341 * - `root` The root container DOM element. Append your content to it.
342- * - `popover` The reference to the `vaadin-popover` element (overlay host) .
342+ * - `popover` The reference to the `vaadin-popover` element.
343343 *
344344 * @deprecated Use the content in the `vaadin-popover` via default slot
345345 */
@@ -350,15 +350,15 @@ class Popover extends PopoverPositionMixin(
350350 /**
351351 * When true, the popover prevents interacting with background elements
352352 * by setting `pointer-events` style on the document body to `none`.
353- * This also enables trapping focus inside the overlay .
353+ * This also enables trapping focus inside the popover .
354354 */
355355 modal : {
356356 type : Boolean ,
357357 value : false ,
358358 } ,
359359
360360 /**
361- * Set to true to disable closing popover overlay on outside click.
361+ * Set to true to disable closing popover on outside click.
362362 *
363363 * @attr {boolean} no-close-on-outside-click
364364 */
@@ -368,10 +368,7 @@ class Popover extends PopoverPositionMixin(
368368 } ,
369369
370370 /**
371- * Set to true to disable closing popover overlay on Escape press.
372- * When the popover is modal, pressing Escape anywhere in the
373- * document closes the overlay. Otherwise, only Escape press
374- * from the popover itself or its target closes the overlay.
371+ * Set to true to disable closing popover on Escape press.
375372 *
376373 * @attr {boolean} no-close-on-esc
377374 */
@@ -381,15 +378,15 @@ class Popover extends PopoverPositionMixin(
381378 } ,
382379
383380 /**
384- * Popover trigger mode, used to configure how the overlay is opened or closed.
381+ * Popover trigger mode, used to configure how the popover is opened or closed.
385382 * Could be set to multiple by providing an array, e.g. `trigger = ['hover', 'focus']`.
386383 *
387384 * Supported values:
388385 * - `click` (default) - opens and closes on target click.
389386 * - `hover` - opens on target mouseenter, closes on target mouseleave. Moving mouse
390- * to the popover overlay content keeps the overlay opened.
387+ * to the popover content keeps the popover opened.
391388 * - `focus` - opens on target focus, closes on target blur. Moving focus to the
392- * popover overlay content keeps the overlay opened.
389+ * popover content keeps the popover opened.
393390 *
394391 * In addition to the behavior specified by `trigger`, the popover can be closed by:
395392 * - pressing Escape key (unless `noCloseOnEsc` property is true)
@@ -405,7 +402,7 @@ class Popover extends PopoverPositionMixin(
405402 } ,
406403
407404 /**
408- * When true, the overlay has a backdrop (modality curtain) on top of the
405+ * When true, the popover has a backdrop (modality curtain) on top of the
409406 * underlying page content, covering the whole viewport.
410407 *
411408 * @attr {boolean} with-backdrop
0 commit comments