@vaadin/dialog 25.1.0-alpha9 → 25.1.0-beta2
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/custom-elements.json +148 -647
- package/package.json +11 -11
- package/src/styles/vaadin-dialog-overlay-base-styles.js +4 -1
- package/src/vaadin-dialog-base-mixin.d.ts +10 -0
- package/src/vaadin-dialog-base-mixin.js +14 -5
- package/src/vaadin-dialog-draggable-mixin.d.ts +0 -8
- package/src/vaadin-dialog-draggable-mixin.js +7 -23
- package/src/vaadin-dialog-overlay-mixin.d.ts +5 -0
- package/src/vaadin-dialog-overlay-mixin.js +73 -0
- package/src/vaadin-dialog-resizable-mixin.js +0 -1
- package/src/vaadin-dialog.js +1 -0
- package/web-types.json +51 -19
- package/web-types.lit.json +2 -2
package/custom-elements.json
CHANGED
|
@@ -26,6 +26,16 @@
|
|
|
26
26
|
"description": "",
|
|
27
27
|
"name": "DialogBaseMixin",
|
|
28
28
|
"members": [
|
|
29
|
+
{
|
|
30
|
+
"kind": "field",
|
|
31
|
+
"name": "keepInViewport",
|
|
32
|
+
"privacy": "public",
|
|
33
|
+
"type": {
|
|
34
|
+
"text": "boolean"
|
|
35
|
+
},
|
|
36
|
+
"description": "Set to true to prevent the dialog from moving outside the viewport bounds.\nWhen enabled, all four edges of the dialog will remain visible, for example\nwhen dragging the dialog or when the viewport is resized. Note that the\ndialog will also adjust any programmatically configured size and position\nso that it stays within the viewport.",
|
|
37
|
+
"attribute": "keep-in-viewport"
|
|
38
|
+
},
|
|
29
39
|
{
|
|
30
40
|
"kind": "field",
|
|
31
41
|
"name": "left",
|
|
@@ -117,590 +127,168 @@
|
|
|
117
127
|
}
|
|
118
128
|
],
|
|
119
129
|
"attributes": [
|
|
120
|
-
{
|
|
121
|
-
"name": "left",
|
|
122
|
-
"type": {
|
|
123
|
-
"text": "string"
|
|
124
|
-
},
|
|
125
|
-
"description": "Set the distance of the dialog from the left of the viewport.\nIf a unitless number is provided, pixels are assumed.\n\nNote that the dialog uses an internal container that has some\nadditional spacing, which can be overridden by the theme.",
|
|
126
|
-
"fieldName": "left"
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
"name": "modeless",
|
|
130
|
-
"type": {
|
|
131
|
-
"text": "boolean"
|
|
132
|
-
},
|
|
133
|
-
"description": "Set to true to remove backdrop and allow click events on background elements.",
|
|
134
|
-
"fieldName": "modeless"
|
|
135
|
-
},
|
|
136
|
-
{
|
|
137
|
-
"name": "no-close-on-esc",
|
|
138
|
-
"type": {
|
|
139
|
-
"text": "boolean"
|
|
140
|
-
},
|
|
141
|
-
"description": "Set to true to disable closing dialog on Escape press",
|
|
142
|
-
"fieldName": "noCloseOnEsc"
|
|
143
|
-
},
|
|
144
|
-
{
|
|
145
|
-
"name": "no-close-on-outside-click",
|
|
146
|
-
"type": {
|
|
147
|
-
"text": "boolean"
|
|
148
|
-
},
|
|
149
|
-
"description": "Set to true to disable closing dialog on outside click",
|
|
150
|
-
"fieldName": "noCloseOnOutsideClick"
|
|
151
|
-
},
|
|
152
|
-
{
|
|
153
|
-
"name": "no-focus-trap",
|
|
154
|
-
"type": {
|
|
155
|
-
"text": "boolean"
|
|
156
|
-
},
|
|
157
|
-
"description": "Set to true to disable focus trapping.",
|
|
158
|
-
"fieldName": "noFocusTrap"
|
|
159
|
-
},
|
|
160
|
-
{
|
|
161
|
-
"name": "opened",
|
|
162
|
-
"type": {
|
|
163
|
-
"text": "boolean"
|
|
164
|
-
},
|
|
165
|
-
"description": "True if the dialog is visible and available for interaction.",
|
|
166
|
-
"fieldName": "opened"
|
|
167
|
-
},
|
|
168
|
-
{
|
|
169
|
-
"name": "overlay-role",
|
|
170
|
-
"type": {
|
|
171
|
-
"text": "string"
|
|
172
|
-
},
|
|
173
|
-
"description": "The `role` attribute value to be set on the dialog. Defaults to \"dialog\".",
|
|
174
|
-
"deprecated": "Use standard `role` attribute on the dialog instead",
|
|
175
|
-
"fieldName": "overlayRole"
|
|
176
|
-
},
|
|
177
|
-
{
|
|
178
|
-
"name": "top",
|
|
179
|
-
"type": {
|
|
180
|
-
"text": "string"
|
|
181
|
-
},
|
|
182
|
-
"description": "Set the distance of the dialog from the top of the viewport.\nIf a unitless number is provided, pixels are assumed.\n\nNote that the dialog uses an internal container that has some\nadditional spacing, which can be overridden by the theme.",
|
|
183
|
-
"fieldName": "top"
|
|
184
|
-
}
|
|
185
|
-
],
|
|
186
|
-
"parameters": [
|
|
187
|
-
{
|
|
188
|
-
"name": "superClass"
|
|
189
|
-
}
|
|
190
|
-
]
|
|
191
|
-
}
|
|
192
|
-
],
|
|
193
|
-
"exports": [
|
|
194
|
-
{
|
|
195
|
-
"kind": "js",
|
|
196
|
-
"name": "DialogBaseMixin",
|
|
197
|
-
"declaration": {
|
|
198
|
-
"name": "DialogBaseMixin",
|
|
199
|
-
"module": "src/vaadin-dialog-base-mixin.js"
|
|
200
|
-
}
|
|
201
|
-
}
|
|
202
|
-
]
|
|
203
|
-
},
|
|
204
|
-
{
|
|
205
|
-
"kind": "javascript-module",
|
|
206
|
-
"path": "src/vaadin-dialog-draggable-mixin.js",
|
|
207
|
-
"declarations": [
|
|
208
|
-
{
|
|
209
|
-
"kind": "mixin",
|
|
210
|
-
"description": "",
|
|
211
|
-
"name": "DialogDraggableMixin",
|
|
212
|
-
"members": [
|
|
213
|
-
{
|
|
214
|
-
"kind": "field",
|
|
215
|
-
"name": "draggable",
|
|
216
|
-
"privacy": "public",
|
|
217
|
-
"type": {
|
|
218
|
-
"text": "boolean"
|
|
219
|
-
},
|
|
220
|
-
"description": "Set to true to enable repositioning the dialog by clicking and dragging.\n\nBy default, only the overlay area can be used to drag the element. But,\na child element can be marked as a draggable area by adding a\n\"`draggable`\" class to it, this will by default make all of its children draggable also.\nIf you want a child element to be draggable\nbut still have its children non-draggable (by default), mark it with\n\"`draggable-leaf-only`\" class name.",
|
|
221
|
-
"attribute": "draggable"
|
|
222
|
-
},
|
|
223
|
-
{
|
|
224
|
-
"kind": "field",
|
|
225
|
-
"name": "keepInViewport",
|
|
226
|
-
"privacy": "public",
|
|
227
|
-
"type": {
|
|
228
|
-
"text": "boolean"
|
|
229
|
-
},
|
|
230
|
-
"description": "Set to true to prevent dragging the dialog outside the viewport bounds.\nWhen enabled, all four edges of the dialog will remain visible during dragging.\nThe dialog may still become partially hidden when the viewport is resized.",
|
|
231
|
-
"attribute": "keep-in-viewport"
|
|
232
|
-
}
|
|
233
|
-
],
|
|
234
|
-
"events": [
|
|
235
|
-
{
|
|
236
|
-
"name": "drag-start",
|
|
237
|
-
"type": {
|
|
238
|
-
"text": "CustomEvent"
|
|
239
|
-
}
|
|
240
|
-
},
|
|
241
|
-
{
|
|
242
|
-
"name": "dragged",
|
|
243
|
-
"type": {
|
|
244
|
-
"text": "CustomEvent"
|
|
245
|
-
}
|
|
246
|
-
}
|
|
247
|
-
],
|
|
248
|
-
"attributes": [
|
|
249
|
-
{
|
|
250
|
-
"name": "draggable",
|
|
251
|
-
"type": {
|
|
252
|
-
"text": "boolean"
|
|
253
|
-
},
|
|
254
|
-
"description": "Set to true to enable repositioning the dialog by clicking and dragging.\n\nBy default, only the overlay area can be used to drag the element. But,\na child element can be marked as a draggable area by adding a\n\"`draggable`\" class to it, this will by default make all of its children draggable also.\nIf you want a child element to be draggable\nbut still have its children non-draggable (by default), mark it with\n\"`draggable-leaf-only`\" class name.",
|
|
255
|
-
"fieldName": "draggable"
|
|
256
|
-
},
|
|
257
130
|
{
|
|
258
131
|
"name": "keep-in-viewport",
|
|
259
132
|
"type": {
|
|
260
133
|
"text": "boolean"
|
|
261
134
|
},
|
|
262
|
-
"description": "Set to true to prevent
|
|
135
|
+
"description": "Set to true to prevent the dialog from moving outside the viewport bounds.\nWhen enabled, all four edges of the dialog will remain visible, for example\nwhen dragging the dialog or when the viewport is resized. Note that the\ndialog will also adjust any programmatically configured size and position\nso that it stays within the viewport.",
|
|
263
136
|
"fieldName": "keepInViewport"
|
|
264
|
-
}
|
|
265
|
-
],
|
|
266
|
-
"parameters": [
|
|
267
|
-
{
|
|
268
|
-
"name": "superClass"
|
|
269
|
-
}
|
|
270
|
-
]
|
|
271
|
-
}
|
|
272
|
-
],
|
|
273
|
-
"exports": [
|
|
274
|
-
{
|
|
275
|
-
"kind": "js",
|
|
276
|
-
"name": "DialogDraggableMixin",
|
|
277
|
-
"declaration": {
|
|
278
|
-
"name": "DialogDraggableMixin",
|
|
279
|
-
"module": "src/vaadin-dialog-draggable-mixin.js"
|
|
280
|
-
}
|
|
281
|
-
}
|
|
282
|
-
]
|
|
283
|
-
},
|
|
284
|
-
{
|
|
285
|
-
"kind": "javascript-module",
|
|
286
|
-
"path": "src/vaadin-dialog-overlay-mixin.js",
|
|
287
|
-
"declarations": [
|
|
288
|
-
{
|
|
289
|
-
"kind": "mixin",
|
|
290
|
-
"description": "",
|
|
291
|
-
"name": "DialogOverlayMixin",
|
|
292
|
-
"members": [
|
|
293
|
-
{
|
|
294
|
-
"kind": "method",
|
|
295
|
-
"name": "bringToFront",
|
|
296
|
-
"description": "Brings the overlay as visually the frontmost one.",
|
|
297
|
-
"inheritedFrom": {
|
|
298
|
-
"name": "OverlayStackMixin",
|
|
299
|
-
"package": "@vaadin/overlay/src/vaadin-overlay-stack-mixin.js"
|
|
300
|
-
}
|
|
301
|
-
},
|
|
302
|
-
{
|
|
303
|
-
"kind": "method",
|
|
304
|
-
"name": "close",
|
|
305
|
-
"parameters": [
|
|
306
|
-
{
|
|
307
|
-
"name": "sourceEvent",
|
|
308
|
-
"type": {
|
|
309
|
-
"text": "Event="
|
|
310
|
-
}
|
|
311
|
-
}
|
|
312
|
-
],
|
|
313
|
-
"inheritedFrom": {
|
|
314
|
-
"name": "OverlayMixin",
|
|
315
|
-
"package": "@vaadin/overlay/src/vaadin-overlay-mixin.js"
|
|
316
|
-
}
|
|
317
|
-
},
|
|
318
|
-
{
|
|
319
|
-
"kind": "field",
|
|
320
|
-
"name": "focusTrap",
|
|
321
|
-
"privacy": "public",
|
|
322
|
-
"type": {
|
|
323
|
-
"text": "boolean"
|
|
324
|
-
},
|
|
325
|
-
"description": "When true, opening the overlay moves focus to the first focusable child,\nor to the overlay part with tabindex if there are no focusable children.",
|
|
326
|
-
"attribute": "focus-trap",
|
|
327
|
-
"inheritedFrom": {
|
|
328
|
-
"name": "OverlayFocusMixin",
|
|
329
|
-
"package": "@vaadin/overlay/src/vaadin-overlay-focus-mixin.js"
|
|
330
|
-
}
|
|
331
137
|
},
|
|
332
138
|
{
|
|
333
|
-
"
|
|
334
|
-
"name": "footerRenderer",
|
|
335
|
-
"privacy": "public",
|
|
336
|
-
"type": {
|
|
337
|
-
"text": "object"
|
|
338
|
-
},
|
|
339
|
-
"description": "Custom function for rendering the dialog footer.",
|
|
340
|
-
"attribute": "footer-renderer"
|
|
341
|
-
},
|
|
342
|
-
{
|
|
343
|
-
"kind": "method",
|
|
344
|
-
"name": "getBounds",
|
|
345
|
-
"description": "Retrieves the coordinates of the overlay.",
|
|
346
|
-
"return": {
|
|
347
|
-
"type": {
|
|
348
|
-
"text": "!DialogOverlayBounds"
|
|
349
|
-
}
|
|
350
|
-
}
|
|
351
|
-
},
|
|
352
|
-
{
|
|
353
|
-
"kind": "field",
|
|
354
|
-
"name": "headerRenderer",
|
|
355
|
-
"privacy": "public",
|
|
356
|
-
"type": {
|
|
357
|
-
"text": "object"
|
|
358
|
-
},
|
|
359
|
-
"description": "Custom function for rendering the dialog header.",
|
|
360
|
-
"attribute": "header-renderer"
|
|
361
|
-
},
|
|
362
|
-
{
|
|
363
|
-
"kind": "field",
|
|
364
|
-
"name": "headerTitle",
|
|
365
|
-
"privacy": "public",
|
|
366
|
-
"type": {
|
|
367
|
-
"text": "string"
|
|
368
|
-
},
|
|
369
|
-
"description": "String used for rendering a dialog title.",
|
|
370
|
-
"attribute": "header-title"
|
|
371
|
-
},
|
|
372
|
-
{
|
|
373
|
-
"kind": "field",
|
|
374
|
-
"name": "hidden",
|
|
375
|
-
"privacy": "public",
|
|
376
|
-
"type": {
|
|
377
|
-
"text": "boolean"
|
|
378
|
-
},
|
|
379
|
-
"description": "When set to true, the overlay is hidden. This also closes the overlay\nimmediately in case there is a closing animation in progress.",
|
|
380
|
-
"attribute": "hidden",
|
|
381
|
-
"inheritedFrom": {
|
|
382
|
-
"name": "OverlayMixin",
|
|
383
|
-
"package": "@vaadin/overlay/src/vaadin-overlay-mixin.js"
|
|
384
|
-
}
|
|
385
|
-
},
|
|
386
|
-
{
|
|
387
|
-
"kind": "field",
|
|
388
|
-
"name": "model",
|
|
389
|
-
"privacy": "public",
|
|
390
|
-
"type": {
|
|
391
|
-
"text": "object"
|
|
392
|
-
},
|
|
393
|
-
"description": "Object with properties that is passed to `renderer` function",
|
|
394
|
-
"attribute": "model",
|
|
395
|
-
"inheritedFrom": {
|
|
396
|
-
"name": "OverlayMixin",
|
|
397
|
-
"package": "@vaadin/overlay/src/vaadin-overlay-mixin.js"
|
|
398
|
-
}
|
|
399
|
-
},
|
|
400
|
-
{
|
|
401
|
-
"kind": "field",
|
|
402
|
-
"name": "modeless",
|
|
403
|
-
"privacy": "public",
|
|
404
|
-
"type": {
|
|
405
|
-
"text": "boolean"
|
|
406
|
-
},
|
|
407
|
-
"description": "When true the overlay won't disable the main content, showing\nit doesn't change the functionality of the user interface.",
|
|
408
|
-
"attribute": "modeless",
|
|
409
|
-
"inheritedFrom": {
|
|
410
|
-
"name": "OverlayMixin",
|
|
411
|
-
"package": "@vaadin/overlay/src/vaadin-overlay-mixin.js"
|
|
412
|
-
}
|
|
413
|
-
},
|
|
414
|
-
{
|
|
415
|
-
"kind": "field",
|
|
416
|
-
"name": "opened",
|
|
417
|
-
"privacy": "public",
|
|
418
|
-
"type": {
|
|
419
|
-
"text": "boolean"
|
|
420
|
-
},
|
|
421
|
-
"description": "When true, the overlay is visible and attached to body.",
|
|
422
|
-
"attribute": "opened",
|
|
423
|
-
"inheritedFrom": {
|
|
424
|
-
"name": "OverlayMixin",
|
|
425
|
-
"package": "@vaadin/overlay/src/vaadin-overlay-mixin.js"
|
|
426
|
-
}
|
|
427
|
-
},
|
|
428
|
-
{
|
|
429
|
-
"kind": "field",
|
|
430
|
-
"name": "owner",
|
|
431
|
-
"privacy": "public",
|
|
432
|
-
"type": {
|
|
433
|
-
"text": "HTMLElement"
|
|
434
|
-
},
|
|
435
|
-
"description": "Owner element passed with renderer function",
|
|
436
|
-
"attribute": "owner",
|
|
437
|
-
"inheritedFrom": {
|
|
438
|
-
"name": "OverlayMixin",
|
|
439
|
-
"package": "@vaadin/overlay/src/vaadin-overlay-mixin.js"
|
|
440
|
-
}
|
|
441
|
-
},
|
|
442
|
-
{
|
|
443
|
-
"kind": "field",
|
|
444
|
-
"name": "renderer",
|
|
445
|
-
"privacy": "public",
|
|
446
|
-
"type": {
|
|
447
|
-
"text": "OverlayRenderer | null | undefined"
|
|
448
|
-
},
|
|
449
|
-
"description": "Custom function for rendering the content of the overlay.\nReceives three arguments:\n\n- `root` The root container DOM element. Append your content to it.\n- `owner` The host element of the renderer function.\n- `model` The object with the properties related with rendering.",
|
|
450
|
-
"attribute": "renderer",
|
|
451
|
-
"inheritedFrom": {
|
|
452
|
-
"name": "OverlayMixin",
|
|
453
|
-
"package": "@vaadin/overlay/src/vaadin-overlay-mixin.js"
|
|
454
|
-
}
|
|
455
|
-
},
|
|
456
|
-
{
|
|
457
|
-
"kind": "method",
|
|
458
|
-
"name": "requestContentUpdate",
|
|
459
|
-
"description": "Requests an update for the content of the overlay.\nWhile performing the update, it invokes the renderer passed in the `renderer` property.\n\nIt is not guaranteed that the update happens immediately (synchronously) after it is requested.",
|
|
460
|
-
"inheritedFrom": {
|
|
461
|
-
"name": "OverlayMixin",
|
|
462
|
-
"package": "@vaadin/overlay/src/vaadin-overlay-mixin.js"
|
|
463
|
-
}
|
|
464
|
-
},
|
|
465
|
-
{
|
|
466
|
-
"kind": "field",
|
|
467
|
-
"name": "restoreFocusNode",
|
|
468
|
-
"privacy": "public",
|
|
469
|
-
"type": {
|
|
470
|
-
"text": "HTMLElement"
|
|
471
|
-
},
|
|
472
|
-
"description": "Set to specify the element which should be focused on overlay close,\nif `restoreFocusOnClose` is set to true.",
|
|
473
|
-
"attribute": "restore-focus-node",
|
|
474
|
-
"inheritedFrom": {
|
|
475
|
-
"name": "OverlayFocusMixin",
|
|
476
|
-
"package": "@vaadin/overlay/src/vaadin-overlay-focus-mixin.js"
|
|
477
|
-
}
|
|
478
|
-
},
|
|
479
|
-
{
|
|
480
|
-
"kind": "field",
|
|
481
|
-
"name": "restoreFocusOnClose",
|
|
482
|
-
"privacy": "public",
|
|
483
|
-
"type": {
|
|
484
|
-
"text": "boolean"
|
|
485
|
-
},
|
|
486
|
-
"description": "Set to true to enable restoring of focus when overlay is closed.",
|
|
487
|
-
"attribute": "restore-focus-on-close",
|
|
488
|
-
"inheritedFrom": {
|
|
489
|
-
"name": "OverlayFocusMixin",
|
|
490
|
-
"package": "@vaadin/overlay/src/vaadin-overlay-focus-mixin.js"
|
|
491
|
-
}
|
|
492
|
-
},
|
|
493
|
-
{
|
|
494
|
-
"kind": "method",
|
|
495
|
-
"name": "setBounds",
|
|
496
|
-
"parameters": [
|
|
497
|
-
{
|
|
498
|
-
"name": "bounds",
|
|
499
|
-
"type": {
|
|
500
|
-
"text": "!OverlayBoundsParam"
|
|
501
|
-
}
|
|
502
|
-
},
|
|
503
|
-
{
|
|
504
|
-
"name": "absolute",
|
|
505
|
-
"default": "true",
|
|
506
|
-
"type": {
|
|
507
|
-
"text": "boolean"
|
|
508
|
-
}
|
|
509
|
-
}
|
|
510
|
-
],
|
|
511
|
-
"description": "Updates the coordinates of the overlay.",
|
|
512
|
-
"inheritedFrom": {
|
|
513
|
-
"name": "OverlayMixin",
|
|
514
|
-
"package": "@vaadin/overlay/src/vaadin-overlay-mixin.js"
|
|
515
|
-
}
|
|
516
|
-
},
|
|
517
|
-
{
|
|
518
|
-
"kind": "field",
|
|
519
|
-
"name": "withBackdrop",
|
|
520
|
-
"privacy": "public",
|
|
521
|
-
"type": {
|
|
522
|
-
"text": "boolean"
|
|
523
|
-
},
|
|
524
|
-
"description": "When true the overlay has backdrop on top of content when opened.",
|
|
525
|
-
"attribute": "with-backdrop",
|
|
526
|
-
"inheritedFrom": {
|
|
527
|
-
"name": "OverlayMixin",
|
|
528
|
-
"package": "@vaadin/overlay/src/vaadin-overlay-mixin.js"
|
|
529
|
-
}
|
|
530
|
-
}
|
|
531
|
-
],
|
|
532
|
-
"attributes": [
|
|
533
|
-
{
|
|
534
|
-
"name": "focus-trap",
|
|
535
|
-
"type": {
|
|
536
|
-
"text": "boolean"
|
|
537
|
-
},
|
|
538
|
-
"description": "When true, opening the overlay moves focus to the first focusable child,\nor to the overlay part with tabindex if there are no focusable children.",
|
|
539
|
-
"fieldName": "focusTrap",
|
|
540
|
-
"inheritedFrom": {
|
|
541
|
-
"name": "OverlayFocusMixin",
|
|
542
|
-
"package": "@vaadin/overlay/src/vaadin-overlay-focus-mixin.js"
|
|
543
|
-
}
|
|
544
|
-
},
|
|
545
|
-
{
|
|
546
|
-
"name": "header-title",
|
|
139
|
+
"name": "left",
|
|
547
140
|
"type": {
|
|
548
141
|
"text": "string"
|
|
549
142
|
},
|
|
550
|
-
"description": "
|
|
551
|
-
"fieldName": "
|
|
552
|
-
},
|
|
553
|
-
{
|
|
554
|
-
"name": "hidden",
|
|
555
|
-
"type": {
|
|
556
|
-
"text": "boolean"
|
|
557
|
-
},
|
|
558
|
-
"description": "When set to true, the overlay is hidden. This also closes the overlay\nimmediately in case there is a closing animation in progress.",
|
|
559
|
-
"fieldName": "hidden",
|
|
560
|
-
"inheritedFrom": {
|
|
561
|
-
"name": "OverlayMixin",
|
|
562
|
-
"package": "@vaadin/overlay/src/vaadin-overlay-mixin.js"
|
|
563
|
-
}
|
|
143
|
+
"description": "Set the distance of the dialog from the left of the viewport.\nIf a unitless number is provided, pixels are assumed.\n\nNote that the dialog uses an internal container that has some\nadditional spacing, which can be overridden by the theme.",
|
|
144
|
+
"fieldName": "left"
|
|
564
145
|
},
|
|
565
146
|
{
|
|
566
147
|
"name": "modeless",
|
|
567
148
|
"type": {
|
|
568
149
|
"text": "boolean"
|
|
569
150
|
},
|
|
570
|
-
"description": "
|
|
571
|
-
"fieldName": "modeless"
|
|
572
|
-
"inheritedFrom": {
|
|
573
|
-
"name": "OverlayMixin",
|
|
574
|
-
"package": "@vaadin/overlay/src/vaadin-overlay-mixin.js"
|
|
575
|
-
}
|
|
576
|
-
},
|
|
577
|
-
{
|
|
578
|
-
"name": "opened",
|
|
579
|
-
"type": {
|
|
580
|
-
"text": "boolean"
|
|
581
|
-
},
|
|
582
|
-
"description": "When true, the overlay is visible and attached to body.",
|
|
583
|
-
"fieldName": "opened",
|
|
584
|
-
"inheritedFrom": {
|
|
585
|
-
"name": "OverlayMixin",
|
|
586
|
-
"package": "@vaadin/overlay/src/vaadin-overlay-mixin.js"
|
|
587
|
-
}
|
|
588
|
-
},
|
|
589
|
-
{
|
|
590
|
-
"name": "owner",
|
|
591
|
-
"type": {
|
|
592
|
-
"text": "HTMLElement"
|
|
593
|
-
},
|
|
594
|
-
"description": "Owner element passed with renderer function",
|
|
595
|
-
"fieldName": "owner",
|
|
596
|
-
"inheritedFrom": {
|
|
597
|
-
"name": "OverlayMixin",
|
|
598
|
-
"package": "@vaadin/overlay/src/vaadin-overlay-mixin.js"
|
|
599
|
-
}
|
|
151
|
+
"description": "Set to true to remove backdrop and allow click events on background elements.",
|
|
152
|
+
"fieldName": "modeless"
|
|
600
153
|
},
|
|
601
154
|
{
|
|
602
|
-
"name": "
|
|
155
|
+
"name": "no-close-on-esc",
|
|
603
156
|
"type": {
|
|
604
|
-
"text": "
|
|
157
|
+
"text": "boolean"
|
|
605
158
|
},
|
|
606
|
-
"description": "
|
|
607
|
-
"fieldName": "
|
|
608
|
-
"inheritedFrom": {
|
|
609
|
-
"name": "OverlayMixin",
|
|
610
|
-
"package": "@vaadin/overlay/src/vaadin-overlay-mixin.js"
|
|
611
|
-
}
|
|
159
|
+
"description": "Set to true to disable closing dialog on Escape press",
|
|
160
|
+
"fieldName": "noCloseOnEsc"
|
|
612
161
|
},
|
|
613
162
|
{
|
|
614
|
-
"name": "
|
|
163
|
+
"name": "no-close-on-outside-click",
|
|
615
164
|
"type": {
|
|
616
|
-
"text": "
|
|
165
|
+
"text": "boolean"
|
|
617
166
|
},
|
|
618
|
-
"description": "Set to
|
|
619
|
-
"fieldName": "
|
|
620
|
-
"inheritedFrom": {
|
|
621
|
-
"name": "OverlayFocusMixin",
|
|
622
|
-
"package": "@vaadin/overlay/src/vaadin-overlay-focus-mixin.js"
|
|
623
|
-
}
|
|
167
|
+
"description": "Set to true to disable closing dialog on outside click",
|
|
168
|
+
"fieldName": "noCloseOnOutsideClick"
|
|
624
169
|
},
|
|
625
170
|
{
|
|
626
|
-
"name": "
|
|
171
|
+
"name": "no-focus-trap",
|
|
627
172
|
"type": {
|
|
628
173
|
"text": "boolean"
|
|
629
174
|
},
|
|
630
|
-
"description": "Set to true to
|
|
631
|
-
"fieldName": "
|
|
632
|
-
"inheritedFrom": {
|
|
633
|
-
"name": "OverlayFocusMixin",
|
|
634
|
-
"package": "@vaadin/overlay/src/vaadin-overlay-focus-mixin.js"
|
|
635
|
-
}
|
|
175
|
+
"description": "Set to true to disable focus trapping.",
|
|
176
|
+
"fieldName": "noFocusTrap"
|
|
636
177
|
},
|
|
637
178
|
{
|
|
638
|
-
"name": "
|
|
179
|
+
"name": "opened",
|
|
639
180
|
"type": {
|
|
640
181
|
"text": "boolean"
|
|
641
182
|
},
|
|
642
|
-
"description": "
|
|
643
|
-
"fieldName": "
|
|
644
|
-
|
|
645
|
-
"name": "OverlayMixin",
|
|
646
|
-
"package": "@vaadin/overlay/src/vaadin-overlay-mixin.js"
|
|
647
|
-
}
|
|
648
|
-
}
|
|
649
|
-
],
|
|
650
|
-
"mixins": [
|
|
183
|
+
"description": "True if the dialog is visible and available for interaction.",
|
|
184
|
+
"fieldName": "opened"
|
|
185
|
+
},
|
|
651
186
|
{
|
|
652
|
-
"name": "
|
|
653
|
-
"
|
|
187
|
+
"name": "overlay-role",
|
|
188
|
+
"type": {
|
|
189
|
+
"text": "string"
|
|
190
|
+
},
|
|
191
|
+
"description": "The `role` attribute value to be set on the dialog. Defaults to \"dialog\".",
|
|
192
|
+
"deprecated": "Use standard `role` attribute on the dialog instead",
|
|
193
|
+
"fieldName": "overlayRole"
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"name": "top",
|
|
197
|
+
"type": {
|
|
198
|
+
"text": "string"
|
|
199
|
+
},
|
|
200
|
+
"description": "Set the distance of the dialog from the top of the viewport.\nIf a unitless number is provided, pixels are assumed.\n\nNote that the dialog uses an internal container that has some\nadditional spacing, which can be overridden by the theme.",
|
|
201
|
+
"fieldName": "top"
|
|
654
202
|
}
|
|
655
203
|
],
|
|
656
204
|
"parameters": [
|
|
657
205
|
{
|
|
658
206
|
"name": "superClass"
|
|
659
207
|
}
|
|
208
|
+
]
|
|
209
|
+
}
|
|
210
|
+
],
|
|
211
|
+
"exports": [
|
|
212
|
+
{
|
|
213
|
+
"kind": "js",
|
|
214
|
+
"name": "DialogBaseMixin",
|
|
215
|
+
"declaration": {
|
|
216
|
+
"name": "DialogBaseMixin",
|
|
217
|
+
"module": "src/vaadin-dialog-base-mixin.js"
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
]
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"kind": "javascript-module",
|
|
224
|
+
"path": "src/vaadin-dialog-draggable-mixin.js",
|
|
225
|
+
"declarations": [
|
|
226
|
+
{
|
|
227
|
+
"kind": "mixin",
|
|
228
|
+
"description": "",
|
|
229
|
+
"name": "DialogDraggableMixin",
|
|
230
|
+
"members": [
|
|
231
|
+
{
|
|
232
|
+
"kind": "field",
|
|
233
|
+
"name": "draggable",
|
|
234
|
+
"privacy": "public",
|
|
235
|
+
"type": {
|
|
236
|
+
"text": "boolean"
|
|
237
|
+
},
|
|
238
|
+
"description": "Set to true to enable repositioning the dialog by clicking and dragging.\n\nBy default, only the overlay area can be used to drag the element. But,\na child element can be marked as a draggable area by adding a\n\"`draggable`\" class to it, this will by default make all of its children draggable also.\nIf you want a child element to be draggable\nbut still have its children non-draggable (by default), mark it with\n\"`draggable-leaf-only`\" class name.",
|
|
239
|
+
"attribute": "draggable"
|
|
240
|
+
}
|
|
660
241
|
],
|
|
661
242
|
"events": [
|
|
662
243
|
{
|
|
663
|
-
"name": "
|
|
244
|
+
"name": "drag-start",
|
|
664
245
|
"type": {
|
|
665
246
|
"text": "CustomEvent"
|
|
666
|
-
},
|
|
667
|
-
"inheritedFrom": {
|
|
668
|
-
"name": "OverlayMixin",
|
|
669
|
-
"package": "@vaadin/overlay/src/vaadin-overlay-mixin.js"
|
|
670
247
|
}
|
|
671
248
|
},
|
|
672
249
|
{
|
|
673
|
-
"name": "
|
|
250
|
+
"name": "dragged",
|
|
674
251
|
"type": {
|
|
675
252
|
"text": "CustomEvent"
|
|
676
|
-
},
|
|
677
|
-
"inheritedFrom": {
|
|
678
|
-
"name": "OverlayMixin",
|
|
679
|
-
"package": "@vaadin/overlay/src/vaadin-overlay-mixin.js"
|
|
680
253
|
}
|
|
681
254
|
}
|
|
255
|
+
],
|
|
256
|
+
"attributes": [
|
|
257
|
+
{
|
|
258
|
+
"name": "draggable",
|
|
259
|
+
"type": {
|
|
260
|
+
"text": "boolean"
|
|
261
|
+
},
|
|
262
|
+
"description": "Set to true to enable repositioning the dialog by clicking and dragging.\n\nBy default, only the overlay area can be used to drag the element. But,\na child element can be marked as a draggable area by adding a\n\"`draggable`\" class to it, this will by default make all of its children draggable also.\nIf you want a child element to be draggable\nbut still have its children non-draggable (by default), mark it with\n\"`draggable-leaf-only`\" class name.",
|
|
263
|
+
"fieldName": "draggable"
|
|
264
|
+
}
|
|
265
|
+
],
|
|
266
|
+
"parameters": [
|
|
267
|
+
{
|
|
268
|
+
"name": "superClass"
|
|
269
|
+
}
|
|
682
270
|
]
|
|
683
271
|
}
|
|
684
272
|
],
|
|
685
273
|
"exports": [
|
|
686
274
|
{
|
|
687
275
|
"kind": "js",
|
|
688
|
-
"name": "
|
|
276
|
+
"name": "DialogDraggableMixin",
|
|
689
277
|
"declaration": {
|
|
690
|
-
"name": "
|
|
691
|
-
"module": "src/vaadin-dialog-
|
|
278
|
+
"name": "DialogDraggableMixin",
|
|
279
|
+
"module": "src/vaadin-dialog-draggable-mixin.js"
|
|
692
280
|
}
|
|
693
281
|
}
|
|
694
282
|
]
|
|
695
283
|
},
|
|
696
284
|
{
|
|
697
285
|
"kind": "javascript-module",
|
|
698
|
-
"path": "src/vaadin-dialog-overlay.js",
|
|
286
|
+
"path": "src/vaadin-dialog-overlay-mixin.js",
|
|
699
287
|
"declarations": [
|
|
700
288
|
{
|
|
701
|
-
"kind": "
|
|
702
|
-
"description": "
|
|
703
|
-
"name": "
|
|
289
|
+
"kind": "mixin",
|
|
290
|
+
"description": "",
|
|
291
|
+
"name": "DialogOverlayMixin",
|
|
704
292
|
"members": [
|
|
705
293
|
{
|
|
706
294
|
"kind": "method",
|
|
@@ -749,11 +337,7 @@
|
|
|
749
337
|
"text": "object"
|
|
750
338
|
},
|
|
751
339
|
"description": "Custom function for rendering the dialog footer.",
|
|
752
|
-
"attribute": "footer-renderer"
|
|
753
|
-
"inheritedFrom": {
|
|
754
|
-
"name": "DialogOverlayMixin",
|
|
755
|
-
"module": "src/vaadin-dialog-overlay-mixin.js"
|
|
756
|
-
}
|
|
340
|
+
"attribute": "footer-renderer"
|
|
757
341
|
},
|
|
758
342
|
{
|
|
759
343
|
"kind": "method",
|
|
@@ -763,10 +347,6 @@
|
|
|
763
347
|
"type": {
|
|
764
348
|
"text": "!DialogOverlayBounds"
|
|
765
349
|
}
|
|
766
|
-
},
|
|
767
|
-
"inheritedFrom": {
|
|
768
|
-
"name": "DialogOverlayMixin",
|
|
769
|
-
"module": "src/vaadin-dialog-overlay-mixin.js"
|
|
770
350
|
}
|
|
771
351
|
},
|
|
772
352
|
{
|
|
@@ -777,11 +357,7 @@
|
|
|
777
357
|
"text": "object"
|
|
778
358
|
},
|
|
779
359
|
"description": "Custom function for rendering the dialog header.",
|
|
780
|
-
"attribute": "header-renderer"
|
|
781
|
-
"inheritedFrom": {
|
|
782
|
-
"name": "DialogOverlayMixin",
|
|
783
|
-
"module": "src/vaadin-dialog-overlay-mixin.js"
|
|
784
|
-
}
|
|
360
|
+
"attribute": "header-renderer"
|
|
785
361
|
},
|
|
786
362
|
{
|
|
787
363
|
"kind": "field",
|
|
@@ -791,11 +367,7 @@
|
|
|
791
367
|
"text": "string"
|
|
792
368
|
},
|
|
793
369
|
"description": "String used for rendering a dialog title.",
|
|
794
|
-
"attribute": "header-title"
|
|
795
|
-
"inheritedFrom": {
|
|
796
|
-
"name": "DialogOverlayMixin",
|
|
797
|
-
"module": "src/vaadin-dialog-overlay-mixin.js"
|
|
798
|
-
}
|
|
370
|
+
"attribute": "header-title"
|
|
799
371
|
},
|
|
800
372
|
{
|
|
801
373
|
"kind": "field",
|
|
@@ -811,6 +383,16 @@
|
|
|
811
383
|
"package": "@vaadin/overlay/src/vaadin-overlay-mixin.js"
|
|
812
384
|
}
|
|
813
385
|
},
|
|
386
|
+
{
|
|
387
|
+
"kind": "field",
|
|
388
|
+
"name": "keepInViewport",
|
|
389
|
+
"privacy": "public",
|
|
390
|
+
"type": {
|
|
391
|
+
"text": "boolean"
|
|
392
|
+
},
|
|
393
|
+
"description": "Whether to keep the overlay within the viewport.",
|
|
394
|
+
"attribute": "keep-in-viewport"
|
|
395
|
+
},
|
|
814
396
|
{
|
|
815
397
|
"kind": "field",
|
|
816
398
|
"name": "model",
|
|
@@ -923,20 +505,14 @@
|
|
|
923
505
|
"name": "setBounds",
|
|
924
506
|
"parameters": [
|
|
925
507
|
{
|
|
926
|
-
"name": "bounds"
|
|
927
|
-
"type": {
|
|
928
|
-
"text": "!OverlayBoundsParam"
|
|
929
|
-
}
|
|
508
|
+
"name": "bounds"
|
|
930
509
|
},
|
|
931
510
|
{
|
|
932
511
|
"name": "absolute",
|
|
933
|
-
"default": "true"
|
|
934
|
-
"type": {
|
|
935
|
-
"text": "boolean"
|
|
936
|
-
}
|
|
512
|
+
"default": "true"
|
|
937
513
|
}
|
|
938
514
|
],
|
|
939
|
-
"description": "
|
|
515
|
+
"description": "Override method from OverlayMixin to adjust the position of the overlay if `keepInViewport` is true.",
|
|
940
516
|
"inheritedFrom": {
|
|
941
517
|
"name": "OverlayMixin",
|
|
942
518
|
"package": "@vaadin/overlay/src/vaadin-overlay-mixin.js"
|
|
@@ -957,34 +533,6 @@
|
|
|
957
533
|
}
|
|
958
534
|
}
|
|
959
535
|
],
|
|
960
|
-
"mixins": [
|
|
961
|
-
{
|
|
962
|
-
"name": "DialogOverlayMixin",
|
|
963
|
-
"module": "src/vaadin-dialog-overlay-mixin.js"
|
|
964
|
-
},
|
|
965
|
-
{
|
|
966
|
-
"name": "DirMixin",
|
|
967
|
-
"package": "@vaadin/component-base/src/dir-mixin.js"
|
|
968
|
-
},
|
|
969
|
-
{
|
|
970
|
-
"name": "ThemableMixin",
|
|
971
|
-
"package": "@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js"
|
|
972
|
-
},
|
|
973
|
-
{
|
|
974
|
-
"name": "PolylitMixin",
|
|
975
|
-
"package": "@vaadin/component-base/src/polylit-mixin.js"
|
|
976
|
-
},
|
|
977
|
-
{
|
|
978
|
-
"name": "LumoInjectionMixin",
|
|
979
|
-
"package": "@vaadin/vaadin-themable-mixin/lumo-injection-mixin.js"
|
|
980
|
-
}
|
|
981
|
-
],
|
|
982
|
-
"superclass": {
|
|
983
|
-
"name": "LitElement",
|
|
984
|
-
"package": "lit"
|
|
985
|
-
},
|
|
986
|
-
"tagName": "vaadin-dialog-overlay",
|
|
987
|
-
"customElement": true,
|
|
988
536
|
"attributes": [
|
|
989
537
|
{
|
|
990
538
|
"name": "focus-trap",
|
|
@@ -1004,11 +552,7 @@
|
|
|
1004
552
|
"text": "string"
|
|
1005
553
|
},
|
|
1006
554
|
"description": "String used for rendering a dialog title.",
|
|
1007
|
-
"fieldName": "headerTitle"
|
|
1008
|
-
"inheritedFrom": {
|
|
1009
|
-
"name": "DialogOverlayMixin",
|
|
1010
|
-
"module": "src/vaadin-dialog-overlay-mixin.js"
|
|
1011
|
-
}
|
|
555
|
+
"fieldName": "headerTitle"
|
|
1012
556
|
},
|
|
1013
557
|
{
|
|
1014
558
|
"name": "hidden",
|
|
@@ -1022,6 +566,14 @@
|
|
|
1022
566
|
"package": "@vaadin/overlay/src/vaadin-overlay-mixin.js"
|
|
1023
567
|
}
|
|
1024
568
|
},
|
|
569
|
+
{
|
|
570
|
+
"name": "keep-in-viewport",
|
|
571
|
+
"type": {
|
|
572
|
+
"text": "boolean"
|
|
573
|
+
},
|
|
574
|
+
"description": "Whether to keep the overlay within the viewport.",
|
|
575
|
+
"fieldName": "keepInViewport"
|
|
576
|
+
},
|
|
1025
577
|
{
|
|
1026
578
|
"name": "modeless",
|
|
1027
579
|
"type": {
|
|
@@ -1107,6 +659,17 @@
|
|
|
1107
659
|
}
|
|
1108
660
|
}
|
|
1109
661
|
],
|
|
662
|
+
"mixins": [
|
|
663
|
+
{
|
|
664
|
+
"name": "OverlayMixin",
|
|
665
|
+
"package": "@vaadin/overlay/src/vaadin-overlay-mixin.js"
|
|
666
|
+
}
|
|
667
|
+
],
|
|
668
|
+
"parameters": [
|
|
669
|
+
{
|
|
670
|
+
"name": "superClass"
|
|
671
|
+
}
|
|
672
|
+
],
|
|
1110
673
|
"events": [
|
|
1111
674
|
{
|
|
1112
675
|
"name": "vaadin-overlay-closed",
|
|
@@ -1134,10 +697,10 @@
|
|
|
1134
697
|
"exports": [
|
|
1135
698
|
{
|
|
1136
699
|
"kind": "js",
|
|
1137
|
-
"name": "
|
|
700
|
+
"name": "DialogOverlayMixin",
|
|
1138
701
|
"declaration": {
|
|
1139
|
-
"name": "
|
|
1140
|
-
"module": "src/vaadin-dialog-overlay.js"
|
|
702
|
+
"name": "DialogOverlayMixin",
|
|
703
|
+
"module": "src/vaadin-dialog-overlay-mixin.js"
|
|
1141
704
|
}
|
|
1142
705
|
}
|
|
1143
706
|
]
|
|
@@ -1371,68 +934,6 @@
|
|
|
1371
934
|
}
|
|
1372
935
|
]
|
|
1373
936
|
},
|
|
1374
|
-
{
|
|
1375
|
-
"kind": "javascript-module",
|
|
1376
|
-
"path": "src/vaadin-dialog-utils.js",
|
|
1377
|
-
"declarations": [
|
|
1378
|
-
{
|
|
1379
|
-
"kind": "function",
|
|
1380
|
-
"name": "getMouseOrFirstTouchEvent",
|
|
1381
|
-
"parameters": [
|
|
1382
|
-
{
|
|
1383
|
-
"name": "e",
|
|
1384
|
-
"type": {
|
|
1385
|
-
"text": "!MouseEvent | !TouchEvent"
|
|
1386
|
-
}
|
|
1387
|
-
}
|
|
1388
|
-
],
|
|
1389
|
-
"description": "Checks if the argument is a touch event and if so, returns a first touch.\nOtherwise, if the mouse event was passed, returns it as is.",
|
|
1390
|
-
"return": {
|
|
1391
|
-
"type": {
|
|
1392
|
-
"text": "!MouseEvent | !Touch"
|
|
1393
|
-
}
|
|
1394
|
-
},
|
|
1395
|
-
"privacy": "protected"
|
|
1396
|
-
},
|
|
1397
|
-
{
|
|
1398
|
-
"kind": "function",
|
|
1399
|
-
"name": "eventInWindow",
|
|
1400
|
-
"parameters": [
|
|
1401
|
-
{
|
|
1402
|
-
"name": "e",
|
|
1403
|
-
"type": {
|
|
1404
|
-
"text": "!MouseEvent | !TouchEvent"
|
|
1405
|
-
}
|
|
1406
|
-
}
|
|
1407
|
-
],
|
|
1408
|
-
"description": "Checks whether a mouse or touch event is in window.",
|
|
1409
|
-
"return": {
|
|
1410
|
-
"type": {
|
|
1411
|
-
"text": "boolean"
|
|
1412
|
-
}
|
|
1413
|
-
},
|
|
1414
|
-
"privacy": "protected"
|
|
1415
|
-
}
|
|
1416
|
-
],
|
|
1417
|
-
"exports": [
|
|
1418
|
-
{
|
|
1419
|
-
"kind": "js",
|
|
1420
|
-
"name": "getMouseOrFirstTouchEvent",
|
|
1421
|
-
"declaration": {
|
|
1422
|
-
"name": "getMouseOrFirstTouchEvent",
|
|
1423
|
-
"module": "src/vaadin-dialog-utils.js"
|
|
1424
|
-
}
|
|
1425
|
-
},
|
|
1426
|
-
{
|
|
1427
|
-
"kind": "js",
|
|
1428
|
-
"name": "eventInWindow",
|
|
1429
|
-
"declaration": {
|
|
1430
|
-
"name": "eventInWindow",
|
|
1431
|
-
"module": "src/vaadin-dialog-utils.js"
|
|
1432
|
-
}
|
|
1433
|
-
}
|
|
1434
|
-
]
|
|
1435
|
-
},
|
|
1436
937
|
{
|
|
1437
938
|
"kind": "javascript-module",
|
|
1438
939
|
"path": "src/vaadin-dialog.js",
|
|
@@ -1516,11 +1017,11 @@
|
|
|
1516
1017
|
"type": {
|
|
1517
1018
|
"text": "boolean"
|
|
1518
1019
|
},
|
|
1519
|
-
"description": "Set to true to prevent
|
|
1020
|
+
"description": "Set to true to prevent the dialog from moving outside the viewport bounds.\nWhen enabled, all four edges of the dialog will remain visible, for example\nwhen dragging the dialog or when the viewport is resized. Note that the\ndialog will also adjust any programmatically configured size and position\nso that it stays within the viewport.",
|
|
1520
1021
|
"attribute": "keep-in-viewport",
|
|
1521
1022
|
"inheritedFrom": {
|
|
1522
|
-
"name": "
|
|
1523
|
-
"module": "src/vaadin-dialog-
|
|
1023
|
+
"name": "DialogBaseMixin",
|
|
1024
|
+
"module": "src/vaadin-dialog-base-mixin.js"
|
|
1524
1025
|
}
|
|
1525
1026
|
},
|
|
1526
1027
|
{
|
|
@@ -1855,11 +1356,11 @@
|
|
|
1855
1356
|
"type": {
|
|
1856
1357
|
"text": "boolean"
|
|
1857
1358
|
},
|
|
1858
|
-
"description": "Set to true to prevent
|
|
1359
|
+
"description": "Set to true to prevent the dialog from moving outside the viewport bounds.\nWhen enabled, all four edges of the dialog will remain visible, for example\nwhen dragging the dialog or when the viewport is resized. Note that the\ndialog will also adjust any programmatically configured size and position\nso that it stays within the viewport.",
|
|
1859
1360
|
"fieldName": "keepInViewport",
|
|
1860
1361
|
"inheritedFrom": {
|
|
1861
|
-
"name": "
|
|
1862
|
-
"module": "src/vaadin-dialog-
|
|
1362
|
+
"name": "DialogBaseMixin",
|
|
1363
|
+
"module": "src/vaadin-dialog-base-mixin.js"
|
|
1863
1364
|
}
|
|
1864
1365
|
},
|
|
1865
1366
|
{
|