@m3e/web 2.5.12 → 2.5.13
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/dist/all.js +20442 -16034
- package/dist/all.js.map +1 -1
- package/dist/all.min.js +174 -62
- package/dist/all.min.js.map +1 -1
- package/dist/calendar.js +45 -9
- package/dist/calendar.js.map +1 -1
- package/dist/calendar.min.js +5 -5
- package/dist/calendar.min.js.map +1 -1
- package/dist/core-anchoring.js +19 -16
- package/dist/core-anchoring.js.map +1 -1
- package/dist/core-anchoring.min.js +1 -1
- package/dist/core-anchoring.min.js.map +1 -1
- package/dist/core.js +95 -82
- package/dist/core.js.map +1 -1
- package/dist/core.min.js +1 -1
- package/dist/core.min.js.map +1 -1
- package/dist/css-custom-data.json +50 -50
- package/dist/custom-elements.json +1209 -583
- package/dist/datepicker.js +53 -27
- package/dist/datepicker.js.map +1 -1
- package/dist/datepicker.min.js +1 -1
- package/dist/datepicker.min.js.map +1 -1
- package/dist/fab-menu.js +115 -113
- package/dist/fab-menu.js.map +1 -1
- package/dist/fab-menu.min.js +1 -1
- package/dist/fab-menu.min.js.map +1 -1
- package/dist/form-field.js +9 -6
- package/dist/form-field.js.map +1 -1
- package/dist/form-field.min.js +1 -1
- package/dist/form-field.min.js.map +1 -1
- package/dist/html-custom-data.json +29 -14
- package/dist/icon.js +1 -1
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +1 -1
- package/dist/icon.min.js.map +1 -1
- package/dist/menu.js +26 -19
- package/dist/menu.js.map +1 -1
- package/dist/menu.min.js +1 -1
- package/dist/menu.min.js.map +1 -1
- package/dist/src/calendar/CalendarElement.d.ts +2 -0
- package/dist/src/calendar/CalendarElement.d.ts.map +1 -1
- package/dist/src/calendar/CalendarViewElementBase.d.ts +2 -0
- package/dist/src/calendar/CalendarViewElementBase.d.ts.map +1 -1
- package/dist/src/calendar/MonthViewElement.d.ts +1 -0
- package/dist/src/calendar/MonthViewElement.d.ts.map +1 -1
- package/dist/src/calendar/MultiYearViewElement.d.ts.map +1 -1
- package/dist/src/calendar/YearViewElement.d.ts.map +1 -1
- package/dist/src/core/anchoring/FloatingPanelElement.d.ts.map +1 -1
- package/dist/src/core/shared/controllers/ClickOutsideController.d.ts +24 -0
- package/dist/src/core/shared/controllers/ClickOutsideController.d.ts.map +1 -0
- package/dist/src/core/shared/controllers/FocusController.d.ts +5 -11
- package/dist/src/core/shared/controllers/FocusController.d.ts.map +1 -1
- package/dist/src/core/shared/controllers/HoverController.d.ts +2 -8
- package/dist/src/core/shared/controllers/HoverController.d.ts.map +1 -1
- package/dist/src/core/shared/controllers/IntersectionController.d.ts +2 -8
- package/dist/src/core/shared/controllers/IntersectionController.d.ts.map +1 -1
- package/dist/src/core/shared/controllers/LongPressController.d.ts +2 -8
- package/dist/src/core/shared/controllers/LongPressController.d.ts.map +1 -1
- package/dist/src/core/shared/controllers/MonitorControllerBase.d.ts +4 -0
- package/dist/src/core/shared/controllers/MonitorControllerBase.d.ts.map +1 -1
- package/dist/src/core/shared/controllers/PressedController.d.ts +6 -8
- package/dist/src/core/shared/controllers/PressedController.d.ts.map +1 -1
- package/dist/src/core/shared/controllers/ResizeController.d.ts +2 -8
- package/dist/src/core/shared/controllers/ResizeController.d.ts.map +1 -1
- package/dist/src/core/shared/controllers/index.d.ts +1 -0
- package/dist/src/core/shared/controllers/index.d.ts.map +1 -1
- package/dist/src/datepicker/DatepickerElement.d.ts +1 -2
- package/dist/src/datepicker/DatepickerElement.d.ts.map +1 -1
- package/dist/src/fab-menu/FabMenuElement.d.ts.map +1 -1
- package/dist/src/form-field/FormFieldElement.d.ts +1 -0
- package/dist/src/form-field/FormFieldElement.d.ts.map +1 -1
- package/dist/src/menu/MenuElement.d.ts.map +1 -1
- package/dist/src/tooltip/RichTooltipElement.d.ts +0 -2
- package/dist/src/tooltip/RichTooltipElement.d.ts.map +1 -1
- package/dist/tooltip.js +24 -25
- package/dist/tooltip.js.map +1 -1
- package/dist/tooltip.min.js +1 -1
- package/dist/tooltip.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -126,6 +126,15 @@
|
|
|
126
126
|
"description": "The targets being observed.",
|
|
127
127
|
"readonly": true
|
|
128
128
|
},
|
|
129
|
+
{
|
|
130
|
+
"kind": "field",
|
|
131
|
+
"name": "hasTargets",
|
|
132
|
+
"type": {
|
|
133
|
+
"text": "boolean"
|
|
134
|
+
},
|
|
135
|
+
"description": "Whether one or more targets are being monitored.",
|
|
136
|
+
"readonly": true
|
|
137
|
+
},
|
|
129
138
|
{
|
|
130
139
|
"kind": "method",
|
|
131
140
|
"name": "hostConnected",
|
|
@@ -219,6 +228,16 @@
|
|
|
219
228
|
],
|
|
220
229
|
"description": "Stops observing the specified element."
|
|
221
230
|
},
|
|
231
|
+
{
|
|
232
|
+
"kind": "method",
|
|
233
|
+
"name": "unobserveAll",
|
|
234
|
+
"return": {
|
|
235
|
+
"type": {
|
|
236
|
+
"text": "void"
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
"description": "Stops observing all targets."
|
|
240
|
+
},
|
|
222
241
|
{
|
|
223
242
|
"kind": "method",
|
|
224
243
|
"name": "_observe",
|
|
@@ -273,6 +292,325 @@
|
|
|
273
292
|
}
|
|
274
293
|
]
|
|
275
294
|
},
|
|
295
|
+
{
|
|
296
|
+
"kind": "javascript-module",
|
|
297
|
+
"path": "src/core/shared/controllers/ClickOutsideController.ts",
|
|
298
|
+
"declarations": [
|
|
299
|
+
{
|
|
300
|
+
"kind": "class",
|
|
301
|
+
"description": "A `ReactiveController` used to monitor whether the user clicks outside all observed elements.",
|
|
302
|
+
"name": "ClickOutsideController",
|
|
303
|
+
"members": [
|
|
304
|
+
{
|
|
305
|
+
"kind": "field",
|
|
306
|
+
"name": "#callback",
|
|
307
|
+
"privacy": "private",
|
|
308
|
+
"type": {
|
|
309
|
+
"text": "ClickOutsideControllerCallback"
|
|
310
|
+
},
|
|
311
|
+
"readonly": true,
|
|
312
|
+
"parsedType": {
|
|
313
|
+
"text": "{ }"
|
|
314
|
+
}
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"kind": "field",
|
|
318
|
+
"name": "#documentClickHandler",
|
|
319
|
+
"privacy": "private",
|
|
320
|
+
"readonly": true
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"kind": "field",
|
|
324
|
+
"name": "#listening",
|
|
325
|
+
"privacy": "private",
|
|
326
|
+
"type": {
|
|
327
|
+
"text": "boolean"
|
|
328
|
+
},
|
|
329
|
+
"default": "false"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"kind": "method",
|
|
333
|
+
"name": "_observe",
|
|
334
|
+
"privacy": "protected",
|
|
335
|
+
"return": {
|
|
336
|
+
"type": {
|
|
337
|
+
"text": "void"
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
"parameters": [
|
|
341
|
+
{
|
|
342
|
+
"name": "target",
|
|
343
|
+
"type": {
|
|
344
|
+
"text": "HTMLElement"
|
|
345
|
+
},
|
|
346
|
+
"description": "The element to start observing."
|
|
347
|
+
}
|
|
348
|
+
],
|
|
349
|
+
"description": "When implemented by a derived class, starts observing the specified element.",
|
|
350
|
+
"inheritedFrom": {
|
|
351
|
+
"name": "MonitorControllerBase",
|
|
352
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"kind": "method",
|
|
357
|
+
"name": "_unobserve",
|
|
358
|
+
"privacy": "protected",
|
|
359
|
+
"return": {
|
|
360
|
+
"type": {
|
|
361
|
+
"text": "void"
|
|
362
|
+
}
|
|
363
|
+
},
|
|
364
|
+
"parameters": [
|
|
365
|
+
{
|
|
366
|
+
"name": "target",
|
|
367
|
+
"type": {
|
|
368
|
+
"text": "HTMLElement"
|
|
369
|
+
},
|
|
370
|
+
"description": "The element to stop observing."
|
|
371
|
+
}
|
|
372
|
+
],
|
|
373
|
+
"description": "When implemented by a derived class, stops observing the specified element.",
|
|
374
|
+
"inheritedFrom": {
|
|
375
|
+
"name": "MonitorControllerBase",
|
|
376
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
377
|
+
}
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"kind": "method",
|
|
381
|
+
"name": "#handleDocumentClick",
|
|
382
|
+
"privacy": "private",
|
|
383
|
+
"return": {
|
|
384
|
+
"type": {
|
|
385
|
+
"text": "void"
|
|
386
|
+
}
|
|
387
|
+
},
|
|
388
|
+
"parameters": [
|
|
389
|
+
{
|
|
390
|
+
"name": "e",
|
|
391
|
+
"type": {
|
|
392
|
+
"text": "MouseEvent"
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
]
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"kind": "field",
|
|
399
|
+
"name": "#host",
|
|
400
|
+
"privacy": "private",
|
|
401
|
+
"type": {
|
|
402
|
+
"text": "ReactiveControllerHost & HTMLElement"
|
|
403
|
+
},
|
|
404
|
+
"readonly": true,
|
|
405
|
+
"default": "host",
|
|
406
|
+
"inheritedFrom": {
|
|
407
|
+
"name": "MonitorControllerBase",
|
|
408
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
409
|
+
}
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"kind": "field",
|
|
413
|
+
"name": "#target",
|
|
414
|
+
"privacy": "private",
|
|
415
|
+
"type": {
|
|
416
|
+
"text": "HTMLElement | null | undefined"
|
|
417
|
+
},
|
|
418
|
+
"readonly": true,
|
|
419
|
+
"inheritedFrom": {
|
|
420
|
+
"name": "MonitorControllerBase",
|
|
421
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
422
|
+
}
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"kind": "field",
|
|
426
|
+
"name": "#targets",
|
|
427
|
+
"privacy": "private",
|
|
428
|
+
"readonly": true,
|
|
429
|
+
"default": "new Set<HTMLElement>()",
|
|
430
|
+
"inheritedFrom": {
|
|
431
|
+
"name": "MonitorControllerBase",
|
|
432
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
433
|
+
}
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"kind": "field",
|
|
437
|
+
"name": "targets",
|
|
438
|
+
"type": {
|
|
439
|
+
"text": "Iterable<HTMLElement>"
|
|
440
|
+
},
|
|
441
|
+
"description": "The targets being observed.",
|
|
442
|
+
"readonly": true,
|
|
443
|
+
"inheritedFrom": {
|
|
444
|
+
"name": "MonitorControllerBase",
|
|
445
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
446
|
+
}
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"kind": "field",
|
|
450
|
+
"name": "hasTargets",
|
|
451
|
+
"type": {
|
|
452
|
+
"text": "boolean"
|
|
453
|
+
},
|
|
454
|
+
"description": "Whether one or more targets are being monitored.",
|
|
455
|
+
"readonly": true,
|
|
456
|
+
"inheritedFrom": {
|
|
457
|
+
"name": "MonitorControllerBase",
|
|
458
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
459
|
+
}
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"kind": "method",
|
|
463
|
+
"name": "hostConnected",
|
|
464
|
+
"return": {
|
|
465
|
+
"type": {
|
|
466
|
+
"text": "void"
|
|
467
|
+
}
|
|
468
|
+
},
|
|
469
|
+
"inheritedFrom": {
|
|
470
|
+
"name": "MonitorControllerBase",
|
|
471
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
472
|
+
}
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
"kind": "method",
|
|
476
|
+
"name": "hostDisconnected",
|
|
477
|
+
"return": {
|
|
478
|
+
"type": {
|
|
479
|
+
"text": "void"
|
|
480
|
+
}
|
|
481
|
+
},
|
|
482
|
+
"inheritedFrom": {
|
|
483
|
+
"name": "MonitorControllerBase",
|
|
484
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
485
|
+
}
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"kind": "method",
|
|
489
|
+
"name": "hostUpdate",
|
|
490
|
+
"return": {
|
|
491
|
+
"type": {
|
|
492
|
+
"text": "void"
|
|
493
|
+
}
|
|
494
|
+
},
|
|
495
|
+
"inheritedFrom": {
|
|
496
|
+
"name": "MonitorControllerBase",
|
|
497
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
498
|
+
}
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"kind": "method",
|
|
502
|
+
"name": "hostUpdated",
|
|
503
|
+
"return": {
|
|
504
|
+
"type": {
|
|
505
|
+
"text": "void"
|
|
506
|
+
}
|
|
507
|
+
},
|
|
508
|
+
"inheritedFrom": {
|
|
509
|
+
"name": "MonitorControllerBase",
|
|
510
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
511
|
+
}
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
"kind": "method",
|
|
515
|
+
"name": "observe",
|
|
516
|
+
"return": {
|
|
517
|
+
"type": {
|
|
518
|
+
"text": "void"
|
|
519
|
+
}
|
|
520
|
+
},
|
|
521
|
+
"parameters": [
|
|
522
|
+
{
|
|
523
|
+
"name": "target",
|
|
524
|
+
"type": {
|
|
525
|
+
"text": "HTMLElement"
|
|
526
|
+
},
|
|
527
|
+
"description": "The element to start observing."
|
|
528
|
+
}
|
|
529
|
+
],
|
|
530
|
+
"description": "Starts observing the specified element.",
|
|
531
|
+
"inheritedFrom": {
|
|
532
|
+
"name": "MonitorControllerBase",
|
|
533
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
534
|
+
}
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"kind": "method",
|
|
538
|
+
"name": "isObserving",
|
|
539
|
+
"return": {
|
|
540
|
+
"type": {
|
|
541
|
+
"text": "boolean"
|
|
542
|
+
}
|
|
543
|
+
},
|
|
544
|
+
"parameters": [
|
|
545
|
+
{
|
|
546
|
+
"name": "target",
|
|
547
|
+
"type": {
|
|
548
|
+
"text": "HTMLElement"
|
|
549
|
+
},
|
|
550
|
+
"description": "The element to test."
|
|
551
|
+
}
|
|
552
|
+
],
|
|
553
|
+
"description": "Determines whether the specified element is being observed.",
|
|
554
|
+
"inheritedFrom": {
|
|
555
|
+
"name": "MonitorControllerBase",
|
|
556
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
557
|
+
}
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"kind": "method",
|
|
561
|
+
"name": "unobserve",
|
|
562
|
+
"return": {
|
|
563
|
+
"type": {
|
|
564
|
+
"text": "void"
|
|
565
|
+
}
|
|
566
|
+
},
|
|
567
|
+
"parameters": [
|
|
568
|
+
{
|
|
569
|
+
"name": "target",
|
|
570
|
+
"type": {
|
|
571
|
+
"text": "HTMLElement"
|
|
572
|
+
},
|
|
573
|
+
"description": "The element to stop observing."
|
|
574
|
+
}
|
|
575
|
+
],
|
|
576
|
+
"description": "Stops observing the specified element.",
|
|
577
|
+
"inheritedFrom": {
|
|
578
|
+
"name": "MonitorControllerBase",
|
|
579
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
580
|
+
}
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"kind": "method",
|
|
584
|
+
"name": "unobserveAll",
|
|
585
|
+
"return": {
|
|
586
|
+
"type": {
|
|
587
|
+
"text": "void"
|
|
588
|
+
}
|
|
589
|
+
},
|
|
590
|
+
"description": "Stops observing all targets.",
|
|
591
|
+
"inheritedFrom": {
|
|
592
|
+
"name": "MonitorControllerBase",
|
|
593
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
594
|
+
}
|
|
595
|
+
}
|
|
596
|
+
],
|
|
597
|
+
"superclass": {
|
|
598
|
+
"name": "MonitorControllerBase",
|
|
599
|
+
"module": "/src/core/shared/controllers/MonitorControllerBase"
|
|
600
|
+
}
|
|
601
|
+
}
|
|
602
|
+
],
|
|
603
|
+
"exports": [
|
|
604
|
+
{
|
|
605
|
+
"kind": "js",
|
|
606
|
+
"name": "ClickOutsideController",
|
|
607
|
+
"declaration": {
|
|
608
|
+
"name": "ClickOutsideController",
|
|
609
|
+
"module": "src/core/shared/controllers/ClickOutsideController.ts"
|
|
610
|
+
}
|
|
611
|
+
}
|
|
612
|
+
]
|
|
613
|
+
},
|
|
276
614
|
{
|
|
277
615
|
"kind": "javascript-module",
|
|
278
616
|
"path": "src/core/shared/utils/computeCssSize.ts",
|
|
@@ -1136,6 +1474,18 @@
|
|
|
1136
1474
|
"text": "{ }"
|
|
1137
1475
|
}
|
|
1138
1476
|
},
|
|
1477
|
+
{
|
|
1478
|
+
"kind": "field",
|
|
1479
|
+
"name": "#filter",
|
|
1480
|
+
"privacy": "private",
|
|
1481
|
+
"type": {
|
|
1482
|
+
"text": "FocusControllerFilterCallback | undefined"
|
|
1483
|
+
},
|
|
1484
|
+
"readonly": true,
|
|
1485
|
+
"parsedType": {
|
|
1486
|
+
"text": "{ } | undefined"
|
|
1487
|
+
}
|
|
1488
|
+
},
|
|
1139
1489
|
{
|
|
1140
1490
|
"kind": "field",
|
|
1141
1491
|
"name": "#keyDownHandler",
|
|
@@ -1173,46 +1523,9 @@
|
|
|
1173
1523
|
"type": {
|
|
1174
1524
|
"text": "boolean"
|
|
1175
1525
|
},
|
|
1526
|
+
"static": true,
|
|
1176
1527
|
"default": "false"
|
|
1177
1528
|
},
|
|
1178
|
-
{
|
|
1179
|
-
"kind": "field",
|
|
1180
|
-
"name": "#windowKeyDownHandler",
|
|
1181
|
-
"privacy": "private",
|
|
1182
|
-
"readonly": true
|
|
1183
|
-
},
|
|
1184
|
-
{
|
|
1185
|
-
"kind": "field",
|
|
1186
|
-
"name": "#windowPointerDownHandler",
|
|
1187
|
-
"privacy": "private",
|
|
1188
|
-
"readonly": true
|
|
1189
|
-
},
|
|
1190
|
-
{
|
|
1191
|
-
"kind": "method",
|
|
1192
|
-
"name": "hostConnected",
|
|
1193
|
-
"return": {
|
|
1194
|
-
"type": {
|
|
1195
|
-
"text": "void"
|
|
1196
|
-
}
|
|
1197
|
-
},
|
|
1198
|
-
"inheritedFrom": {
|
|
1199
|
-
"name": "MonitorControllerBase",
|
|
1200
|
-
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
1201
|
-
}
|
|
1202
|
-
},
|
|
1203
|
-
{
|
|
1204
|
-
"kind": "method",
|
|
1205
|
-
"name": "hostDisconnected",
|
|
1206
|
-
"return": {
|
|
1207
|
-
"type": {
|
|
1208
|
-
"text": "void"
|
|
1209
|
-
}
|
|
1210
|
-
},
|
|
1211
|
-
"inheritedFrom": {
|
|
1212
|
-
"name": "MonitorControllerBase",
|
|
1213
|
-
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
1214
|
-
}
|
|
1215
|
-
},
|
|
1216
1529
|
{
|
|
1217
1530
|
"kind": "method",
|
|
1218
1531
|
"name": "_observe",
|
|
@@ -1227,11 +1540,10 @@
|
|
|
1227
1540
|
"name": "target",
|
|
1228
1541
|
"type": {
|
|
1229
1542
|
"text": "HTMLElement"
|
|
1230
|
-
}
|
|
1231
|
-
"description": "The element to start observing."
|
|
1543
|
+
}
|
|
1232
1544
|
}
|
|
1233
1545
|
],
|
|
1234
|
-
"description": "
|
|
1546
|
+
"description": "When implemented by a derived class, starts observing the specified element.",
|
|
1235
1547
|
"inheritedFrom": {
|
|
1236
1548
|
"name": "MonitorControllerBase",
|
|
1237
1549
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
@@ -1251,11 +1563,10 @@
|
|
|
1251
1563
|
"name": "target",
|
|
1252
1564
|
"type": {
|
|
1253
1565
|
"text": "HTMLElement"
|
|
1254
|
-
}
|
|
1255
|
-
"description": "The element to stop observing."
|
|
1566
|
+
}
|
|
1256
1567
|
}
|
|
1257
1568
|
],
|
|
1258
|
-
"description": "
|
|
1569
|
+
"description": "When implemented by a derived class, stops observing the specified element.",
|
|
1259
1570
|
"inheritedFrom": {
|
|
1260
1571
|
"name": "MonitorControllerBase",
|
|
1261
1572
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
@@ -1366,6 +1677,45 @@
|
|
|
1366
1677
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
1367
1678
|
}
|
|
1368
1679
|
},
|
|
1680
|
+
{
|
|
1681
|
+
"kind": "field",
|
|
1682
|
+
"name": "hasTargets",
|
|
1683
|
+
"type": {
|
|
1684
|
+
"text": "boolean"
|
|
1685
|
+
},
|
|
1686
|
+
"description": "Whether one or more targets are being monitored.",
|
|
1687
|
+
"readonly": true,
|
|
1688
|
+
"inheritedFrom": {
|
|
1689
|
+
"name": "MonitorControllerBase",
|
|
1690
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
1691
|
+
}
|
|
1692
|
+
},
|
|
1693
|
+
{
|
|
1694
|
+
"kind": "method",
|
|
1695
|
+
"name": "hostConnected",
|
|
1696
|
+
"return": {
|
|
1697
|
+
"type": {
|
|
1698
|
+
"text": "void"
|
|
1699
|
+
}
|
|
1700
|
+
},
|
|
1701
|
+
"inheritedFrom": {
|
|
1702
|
+
"name": "MonitorControllerBase",
|
|
1703
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
1704
|
+
}
|
|
1705
|
+
},
|
|
1706
|
+
{
|
|
1707
|
+
"kind": "method",
|
|
1708
|
+
"name": "hostDisconnected",
|
|
1709
|
+
"return": {
|
|
1710
|
+
"type": {
|
|
1711
|
+
"text": "void"
|
|
1712
|
+
}
|
|
1713
|
+
},
|
|
1714
|
+
"inheritedFrom": {
|
|
1715
|
+
"name": "MonitorControllerBase",
|
|
1716
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
1717
|
+
}
|
|
1718
|
+
},
|
|
1369
1719
|
{
|
|
1370
1720
|
"kind": "method",
|
|
1371
1721
|
"name": "hostUpdate",
|
|
@@ -1460,6 +1810,20 @@
|
|
|
1460
1810
|
"name": "MonitorControllerBase",
|
|
1461
1811
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
1462
1812
|
}
|
|
1813
|
+
},
|
|
1814
|
+
{
|
|
1815
|
+
"kind": "method",
|
|
1816
|
+
"name": "unobserveAll",
|
|
1817
|
+
"return": {
|
|
1818
|
+
"type": {
|
|
1819
|
+
"text": "void"
|
|
1820
|
+
}
|
|
1821
|
+
},
|
|
1822
|
+
"description": "Stops observing all targets.",
|
|
1823
|
+
"inheritedFrom": {
|
|
1824
|
+
"name": "MonitorControllerBase",
|
|
1825
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
1826
|
+
}
|
|
1463
1827
|
}
|
|
1464
1828
|
],
|
|
1465
1829
|
"superclass": {
|
|
@@ -1566,11 +1930,10 @@
|
|
|
1566
1930
|
"name": "target",
|
|
1567
1931
|
"type": {
|
|
1568
1932
|
"text": "HTMLElement"
|
|
1569
|
-
}
|
|
1570
|
-
"description": "The element to start observing."
|
|
1933
|
+
}
|
|
1571
1934
|
}
|
|
1572
1935
|
],
|
|
1573
|
-
"description": "
|
|
1936
|
+
"description": "When implemented by a derived class, starts observing the specified element.",
|
|
1574
1937
|
"inheritedFrom": {
|
|
1575
1938
|
"name": "MonitorControllerBase",
|
|
1576
1939
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
@@ -1590,11 +1953,10 @@
|
|
|
1590
1953
|
"name": "target",
|
|
1591
1954
|
"type": {
|
|
1592
1955
|
"text": "HTMLElement"
|
|
1593
|
-
}
|
|
1594
|
-
"description": "The element to stop observing."
|
|
1956
|
+
}
|
|
1595
1957
|
}
|
|
1596
1958
|
],
|
|
1597
|
-
"description": "
|
|
1959
|
+
"description": "When implemented by a derived class, stops observing the specified element.",
|
|
1598
1960
|
"inheritedFrom": {
|
|
1599
1961
|
"name": "MonitorControllerBase",
|
|
1600
1962
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
@@ -1741,6 +2103,19 @@
|
|
|
1741
2103
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
1742
2104
|
}
|
|
1743
2105
|
},
|
|
2106
|
+
{
|
|
2107
|
+
"kind": "field",
|
|
2108
|
+
"name": "hasTargets",
|
|
2109
|
+
"type": {
|
|
2110
|
+
"text": "boolean"
|
|
2111
|
+
},
|
|
2112
|
+
"description": "Whether one or more targets are being monitored.",
|
|
2113
|
+
"readonly": true,
|
|
2114
|
+
"inheritedFrom": {
|
|
2115
|
+
"name": "MonitorControllerBase",
|
|
2116
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
2117
|
+
}
|
|
2118
|
+
},
|
|
1744
2119
|
{
|
|
1745
2120
|
"kind": "method",
|
|
1746
2121
|
"name": "hostConnected",
|
|
@@ -1861,6 +2236,20 @@
|
|
|
1861
2236
|
"name": "MonitorControllerBase",
|
|
1862
2237
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
1863
2238
|
}
|
|
2239
|
+
},
|
|
2240
|
+
{
|
|
2241
|
+
"kind": "method",
|
|
2242
|
+
"name": "unobserveAll",
|
|
2243
|
+
"return": {
|
|
2244
|
+
"type": {
|
|
2245
|
+
"text": "void"
|
|
2246
|
+
}
|
|
2247
|
+
},
|
|
2248
|
+
"description": "Stops observing all targets.",
|
|
2249
|
+
"inheritedFrom": {
|
|
2250
|
+
"name": "MonitorControllerBase",
|
|
2251
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
2252
|
+
}
|
|
1864
2253
|
}
|
|
1865
2254
|
],
|
|
1866
2255
|
"superclass": {
|
|
@@ -2008,11 +2397,10 @@
|
|
|
2008
2397
|
"name": "target",
|
|
2009
2398
|
"type": {
|
|
2010
2399
|
"text": "HTMLElement"
|
|
2011
|
-
}
|
|
2012
|
-
"description": "The element to start observing."
|
|
2400
|
+
}
|
|
2013
2401
|
}
|
|
2014
2402
|
],
|
|
2015
|
-
"description": "
|
|
2403
|
+
"description": "When implemented by a derived class, starts observing the specified element.",
|
|
2016
2404
|
"inheritedFrom": {
|
|
2017
2405
|
"name": "MonitorControllerBase",
|
|
2018
2406
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
@@ -2032,11 +2420,10 @@
|
|
|
2032
2420
|
"name": "target",
|
|
2033
2421
|
"type": {
|
|
2034
2422
|
"text": "HTMLElement"
|
|
2035
|
-
}
|
|
2036
|
-
"description": "The element to stop observing."
|
|
2423
|
+
}
|
|
2037
2424
|
}
|
|
2038
2425
|
],
|
|
2039
|
-
"description": "
|
|
2426
|
+
"description": "When implemented by a derived class, stops observing the specified element.",
|
|
2040
2427
|
"inheritedFrom": {
|
|
2041
2428
|
"name": "MonitorControllerBase",
|
|
2042
2429
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
@@ -2093,6 +2480,19 @@
|
|
|
2093
2480
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
2094
2481
|
}
|
|
2095
2482
|
},
|
|
2483
|
+
{
|
|
2484
|
+
"kind": "field",
|
|
2485
|
+
"name": "hasTargets",
|
|
2486
|
+
"type": {
|
|
2487
|
+
"text": "boolean"
|
|
2488
|
+
},
|
|
2489
|
+
"description": "Whether one or more targets are being monitored.",
|
|
2490
|
+
"readonly": true,
|
|
2491
|
+
"inheritedFrom": {
|
|
2492
|
+
"name": "MonitorControllerBase",
|
|
2493
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
2494
|
+
}
|
|
2495
|
+
},
|
|
2096
2496
|
{
|
|
2097
2497
|
"kind": "method",
|
|
2098
2498
|
"name": "hostConnected",
|
|
@@ -2200,6 +2600,20 @@
|
|
|
2200
2600
|
"name": "MonitorControllerBase",
|
|
2201
2601
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
2202
2602
|
}
|
|
2603
|
+
},
|
|
2604
|
+
{
|
|
2605
|
+
"kind": "method",
|
|
2606
|
+
"name": "unobserveAll",
|
|
2607
|
+
"return": {
|
|
2608
|
+
"type": {
|
|
2609
|
+
"text": "void"
|
|
2610
|
+
}
|
|
2611
|
+
},
|
|
2612
|
+
"description": "Stops observing all targets.",
|
|
2613
|
+
"inheritedFrom": {
|
|
2614
|
+
"name": "MonitorControllerBase",
|
|
2615
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
2616
|
+
}
|
|
2203
2617
|
}
|
|
2204
2618
|
],
|
|
2205
2619
|
"superclass": {
|
|
@@ -2289,11 +2703,10 @@
|
|
|
2289
2703
|
"name": "target",
|
|
2290
2704
|
"type": {
|
|
2291
2705
|
"text": "HTMLElement"
|
|
2292
|
-
}
|
|
2293
|
-
"description": "The element to start observing."
|
|
2706
|
+
}
|
|
2294
2707
|
}
|
|
2295
2708
|
],
|
|
2296
|
-
"description": "
|
|
2709
|
+
"description": "When implemented by a derived class, starts observing the specified element.",
|
|
2297
2710
|
"inheritedFrom": {
|
|
2298
2711
|
"name": "MonitorControllerBase",
|
|
2299
2712
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
@@ -2313,11 +2726,10 @@
|
|
|
2313
2726
|
"name": "target",
|
|
2314
2727
|
"type": {
|
|
2315
2728
|
"text": "HTMLElement"
|
|
2316
|
-
}
|
|
2317
|
-
"description": "The element to stop observing."
|
|
2729
|
+
}
|
|
2318
2730
|
}
|
|
2319
2731
|
],
|
|
2320
|
-
"description": "
|
|
2732
|
+
"description": "When implemented by a derived class, stops observing the specified element.",
|
|
2321
2733
|
"inheritedFrom": {
|
|
2322
2734
|
"name": "MonitorControllerBase",
|
|
2323
2735
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
@@ -2410,6 +2822,19 @@
|
|
|
2410
2822
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
2411
2823
|
}
|
|
2412
2824
|
},
|
|
2825
|
+
{
|
|
2826
|
+
"kind": "field",
|
|
2827
|
+
"name": "hasTargets",
|
|
2828
|
+
"type": {
|
|
2829
|
+
"text": "boolean"
|
|
2830
|
+
},
|
|
2831
|
+
"description": "Whether one or more targets are being monitored.",
|
|
2832
|
+
"readonly": true,
|
|
2833
|
+
"inheritedFrom": {
|
|
2834
|
+
"name": "MonitorControllerBase",
|
|
2835
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
2836
|
+
}
|
|
2837
|
+
},
|
|
2413
2838
|
{
|
|
2414
2839
|
"kind": "method",
|
|
2415
2840
|
"name": "hostConnected",
|
|
@@ -2530,6 +2955,20 @@
|
|
|
2530
2955
|
"name": "MonitorControllerBase",
|
|
2531
2956
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
2532
2957
|
}
|
|
2958
|
+
},
|
|
2959
|
+
{
|
|
2960
|
+
"kind": "method",
|
|
2961
|
+
"name": "unobserveAll",
|
|
2962
|
+
"return": {
|
|
2963
|
+
"type": {
|
|
2964
|
+
"text": "void"
|
|
2965
|
+
}
|
|
2966
|
+
},
|
|
2967
|
+
"description": "Stops observing all targets.",
|
|
2968
|
+
"inheritedFrom": {
|
|
2969
|
+
"name": "MonitorControllerBase",
|
|
2970
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
2971
|
+
}
|
|
2533
2972
|
}
|
|
2534
2973
|
],
|
|
2535
2974
|
"superclass": {
|
|
@@ -2725,6 +3164,19 @@
|
|
|
2725
3164
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
2726
3165
|
}
|
|
2727
3166
|
},
|
|
3167
|
+
{
|
|
3168
|
+
"kind": "field",
|
|
3169
|
+
"name": "hasTargets",
|
|
3170
|
+
"type": {
|
|
3171
|
+
"text": "boolean"
|
|
3172
|
+
},
|
|
3173
|
+
"description": "Whether one or more targets are being monitored.",
|
|
3174
|
+
"readonly": true,
|
|
3175
|
+
"inheritedFrom": {
|
|
3176
|
+
"name": "MonitorControllerBase",
|
|
3177
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
3178
|
+
}
|
|
3179
|
+
},
|
|
2728
3180
|
{
|
|
2729
3181
|
"kind": "method",
|
|
2730
3182
|
"name": "hostConnected",
|
|
@@ -2819,6 +3271,20 @@
|
|
|
2819
3271
|
"name": "MonitorControllerBase",
|
|
2820
3272
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
2821
3273
|
}
|
|
3274
|
+
},
|
|
3275
|
+
{
|
|
3276
|
+
"kind": "method",
|
|
3277
|
+
"name": "unobserveAll",
|
|
3278
|
+
"return": {
|
|
3279
|
+
"type": {
|
|
3280
|
+
"text": "void"
|
|
3281
|
+
}
|
|
3282
|
+
},
|
|
3283
|
+
"description": "Stops observing all targets.",
|
|
3284
|
+
"inheritedFrom": {
|
|
3285
|
+
"name": "MonitorControllerBase",
|
|
3286
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
3287
|
+
}
|
|
2822
3288
|
}
|
|
2823
3289
|
],
|
|
2824
3290
|
"superclass": {
|
|
@@ -2868,6 +3334,18 @@
|
|
|
2868
3334
|
"text": "{ }"
|
|
2869
3335
|
}
|
|
2870
3336
|
},
|
|
3337
|
+
{
|
|
3338
|
+
"kind": "field",
|
|
3339
|
+
"name": "#filter",
|
|
3340
|
+
"privacy": "private",
|
|
3341
|
+
"type": {
|
|
3342
|
+
"text": "PressedControllerFilterCallback | undefined"
|
|
3343
|
+
},
|
|
3344
|
+
"readonly": true,
|
|
3345
|
+
"parsedType": {
|
|
3346
|
+
"text": "{ } | undefined"
|
|
3347
|
+
}
|
|
3348
|
+
},
|
|
2871
3349
|
{
|
|
2872
3350
|
"kind": "field",
|
|
2873
3351
|
"name": "#isPressedKey",
|
|
@@ -2963,11 +3441,10 @@
|
|
|
2963
3441
|
"name": "target",
|
|
2964
3442
|
"type": {
|
|
2965
3443
|
"text": "HTMLElement"
|
|
2966
|
-
}
|
|
2967
|
-
"description": "The element to start observing."
|
|
3444
|
+
}
|
|
2968
3445
|
}
|
|
2969
3446
|
],
|
|
2970
|
-
"description": "
|
|
3447
|
+
"description": "When implemented by a derived class, starts observing the specified element.",
|
|
2971
3448
|
"inheritedFrom": {
|
|
2972
3449
|
"name": "MonitorControllerBase",
|
|
2973
3450
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
@@ -2987,11 +3464,10 @@
|
|
|
2987
3464
|
"name": "target",
|
|
2988
3465
|
"type": {
|
|
2989
3466
|
"text": "HTMLElement"
|
|
2990
|
-
}
|
|
2991
|
-
"description": "The element to stop observing."
|
|
3467
|
+
}
|
|
2992
3468
|
}
|
|
2993
3469
|
],
|
|
2994
|
-
"description": "
|
|
3470
|
+
"description": "When implemented by a derived class, stops observing the specified element.",
|
|
2995
3471
|
"inheritedFrom": {
|
|
2996
3472
|
"name": "MonitorControllerBase",
|
|
2997
3473
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
@@ -3162,6 +3638,19 @@
|
|
|
3162
3638
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
3163
3639
|
}
|
|
3164
3640
|
},
|
|
3641
|
+
{
|
|
3642
|
+
"kind": "field",
|
|
3643
|
+
"name": "hasTargets",
|
|
3644
|
+
"type": {
|
|
3645
|
+
"text": "boolean"
|
|
3646
|
+
},
|
|
3647
|
+
"description": "Whether one or more targets are being monitored.",
|
|
3648
|
+
"readonly": true,
|
|
3649
|
+
"inheritedFrom": {
|
|
3650
|
+
"name": "MonitorControllerBase",
|
|
3651
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
3652
|
+
}
|
|
3653
|
+
},
|
|
3165
3654
|
{
|
|
3166
3655
|
"kind": "method",
|
|
3167
3656
|
"name": "hostUpdate",
|
|
@@ -3256,6 +3745,20 @@
|
|
|
3256
3745
|
"name": "MonitorControllerBase",
|
|
3257
3746
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
3258
3747
|
}
|
|
3748
|
+
},
|
|
3749
|
+
{
|
|
3750
|
+
"kind": "method",
|
|
3751
|
+
"name": "unobserveAll",
|
|
3752
|
+
"return": {
|
|
3753
|
+
"type": {
|
|
3754
|
+
"text": "void"
|
|
3755
|
+
}
|
|
3756
|
+
},
|
|
3757
|
+
"description": "Stops observing all targets.",
|
|
3758
|
+
"inheritedFrom": {
|
|
3759
|
+
"name": "MonitorControllerBase",
|
|
3760
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
3761
|
+
}
|
|
3259
3762
|
}
|
|
3260
3763
|
],
|
|
3261
3764
|
"superclass": {
|
|
@@ -3360,11 +3863,10 @@
|
|
|
3360
3863
|
"name": "target",
|
|
3361
3864
|
"type": {
|
|
3362
3865
|
"text": "HTMLElement"
|
|
3363
|
-
}
|
|
3364
|
-
"description": "The element to start observing."
|
|
3866
|
+
}
|
|
3365
3867
|
}
|
|
3366
3868
|
],
|
|
3367
|
-
"description": "
|
|
3869
|
+
"description": "When implemented by a derived class, starts observing the specified element.",
|
|
3368
3870
|
"inheritedFrom": {
|
|
3369
3871
|
"name": "MonitorControllerBase",
|
|
3370
3872
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
@@ -3384,11 +3886,10 @@
|
|
|
3384
3886
|
"name": "target",
|
|
3385
3887
|
"type": {
|
|
3386
3888
|
"text": "HTMLElement"
|
|
3387
|
-
}
|
|
3388
|
-
"description": "The element to stop observing."
|
|
3889
|
+
}
|
|
3389
3890
|
}
|
|
3390
3891
|
],
|
|
3391
|
-
"description": "
|
|
3892
|
+
"description": "When implemented by a derived class, stops observing the specified element.",
|
|
3392
3893
|
"inheritedFrom": {
|
|
3393
3894
|
"name": "MonitorControllerBase",
|
|
3394
3895
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
@@ -3445,6 +3946,19 @@
|
|
|
3445
3946
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
3446
3947
|
}
|
|
3447
3948
|
},
|
|
3949
|
+
{
|
|
3950
|
+
"kind": "field",
|
|
3951
|
+
"name": "hasTargets",
|
|
3952
|
+
"type": {
|
|
3953
|
+
"text": "boolean"
|
|
3954
|
+
},
|
|
3955
|
+
"description": "Whether one or more targets are being monitored.",
|
|
3956
|
+
"readonly": true,
|
|
3957
|
+
"inheritedFrom": {
|
|
3958
|
+
"name": "MonitorControllerBase",
|
|
3959
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
3960
|
+
}
|
|
3961
|
+
},
|
|
3448
3962
|
{
|
|
3449
3963
|
"kind": "method",
|
|
3450
3964
|
"name": "hostConnected",
|
|
@@ -3552,6 +4066,20 @@
|
|
|
3552
4066
|
"name": "MonitorControllerBase",
|
|
3553
4067
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
3554
4068
|
}
|
|
4069
|
+
},
|
|
4070
|
+
{
|
|
4071
|
+
"kind": "method",
|
|
4072
|
+
"name": "unobserveAll",
|
|
4073
|
+
"return": {
|
|
4074
|
+
"type": {
|
|
4075
|
+
"text": "void"
|
|
4076
|
+
}
|
|
4077
|
+
},
|
|
4078
|
+
"description": "Stops observing all targets.",
|
|
4079
|
+
"inheritedFrom": {
|
|
4080
|
+
"name": "MonitorControllerBase",
|
|
4081
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
4082
|
+
}
|
|
3555
4083
|
}
|
|
3556
4084
|
],
|
|
3557
4085
|
"superclass": {
|
|
@@ -3921,6 +4449,19 @@
|
|
|
3921
4449
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
3922
4450
|
}
|
|
3923
4451
|
},
|
|
4452
|
+
{
|
|
4453
|
+
"kind": "field",
|
|
4454
|
+
"name": "hasTargets",
|
|
4455
|
+
"type": {
|
|
4456
|
+
"text": "boolean"
|
|
4457
|
+
},
|
|
4458
|
+
"description": "Whether one or more targets are being monitored.",
|
|
4459
|
+
"readonly": true,
|
|
4460
|
+
"inheritedFrom": {
|
|
4461
|
+
"name": "MonitorControllerBase",
|
|
4462
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
4463
|
+
}
|
|
4464
|
+
},
|
|
3924
4465
|
{
|
|
3925
4466
|
"kind": "method",
|
|
3926
4467
|
"name": "hostConnected",
|
|
@@ -4041,6 +4582,20 @@
|
|
|
4041
4582
|
"name": "MonitorControllerBase",
|
|
4042
4583
|
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
4043
4584
|
}
|
|
4585
|
+
},
|
|
4586
|
+
{
|
|
4587
|
+
"kind": "method",
|
|
4588
|
+
"name": "unobserveAll",
|
|
4589
|
+
"return": {
|
|
4590
|
+
"type": {
|
|
4591
|
+
"text": "void"
|
|
4592
|
+
}
|
|
4593
|
+
},
|
|
4594
|
+
"description": "Stops observing all targets.",
|
|
4595
|
+
"inheritedFrom": {
|
|
4596
|
+
"name": "MonitorControllerBase",
|
|
4597
|
+
"module": "src/core/shared/controllers/MonitorControllerBase.ts"
|
|
4598
|
+
}
|
|
4044
4599
|
}
|
|
4045
4600
|
],
|
|
4046
4601
|
"superclass": {
|
|
@@ -4161,6 +4716,14 @@
|
|
|
4161
4716
|
"module": "src/core/shared/controllers/AnimationLoopController"
|
|
4162
4717
|
}
|
|
4163
4718
|
},
|
|
4719
|
+
{
|
|
4720
|
+
"kind": "js",
|
|
4721
|
+
"name": "*",
|
|
4722
|
+
"declaration": {
|
|
4723
|
+
"name": "*",
|
|
4724
|
+
"module": "src/core/shared/controllers/ClickOutsideController"
|
|
4725
|
+
}
|
|
4726
|
+
},
|
|
4164
4727
|
{
|
|
4165
4728
|
"kind": "js",
|
|
4166
4729
|
"name": "*",
|
|
@@ -16769,9 +17332,10 @@
|
|
|
16769
17332
|
},
|
|
16770
17333
|
{
|
|
16771
17334
|
"kind": "field",
|
|
16772
|
-
"name": "#
|
|
17335
|
+
"name": "#clickOutsideController",
|
|
16773
17336
|
"privacy": "private",
|
|
16774
|
-
"readonly": true
|
|
17337
|
+
"readonly": true,
|
|
17338
|
+
"default": "new ClickOutsideController(this, { target: null, callback: () => this.hide(), })"
|
|
16775
17339
|
},
|
|
16776
17340
|
{
|
|
16777
17341
|
"kind": "field",
|
|
@@ -16916,24 +17480,6 @@
|
|
|
16916
17480
|
],
|
|
16917
17481
|
"description": "Toggles the panel."
|
|
16918
17482
|
},
|
|
16919
|
-
{
|
|
16920
|
-
"kind": "method",
|
|
16921
|
-
"name": "#handleDocumentClick",
|
|
16922
|
-
"privacy": "private",
|
|
16923
|
-
"return": {
|
|
16924
|
-
"type": {
|
|
16925
|
-
"text": "void"
|
|
16926
|
-
}
|
|
16927
|
-
},
|
|
16928
|
-
"parameters": [
|
|
16929
|
-
{
|
|
16930
|
-
"name": "e",
|
|
16931
|
-
"type": {
|
|
16932
|
-
"text": "MouseEvent"
|
|
16933
|
-
}
|
|
16934
|
-
}
|
|
16935
|
-
]
|
|
16936
|
-
},
|
|
16937
17483
|
{
|
|
16938
17484
|
"kind": "field",
|
|
16939
17485
|
"name": "formAssociated",
|
|
@@ -17384,9 +17930,10 @@
|
|
|
17384
17930
|
},
|
|
17385
17931
|
{
|
|
17386
17932
|
"kind": "field",
|
|
17387
|
-
"name": "#
|
|
17933
|
+
"name": "#clickOutsideController",
|
|
17388
17934
|
"privacy": "private",
|
|
17389
17935
|
"readonly": true,
|
|
17936
|
+
"default": "new ClickOutsideController(this, { target: null, callback: () => this.hide(), })",
|
|
17390
17937
|
"inheritedFrom": {
|
|
17391
17938
|
"name": "M3eFloatingPanelElement",
|
|
17392
17939
|
"module": "src/core/anchoring/FloatingPanelElement.ts"
|
|
@@ -17578,28 +18125,6 @@
|
|
|
17578
18125
|
"name": "M3eFloatingPanelElement",
|
|
17579
18126
|
"module": "src/core/anchoring/FloatingPanelElement.ts"
|
|
17580
18127
|
}
|
|
17581
|
-
},
|
|
17582
|
-
{
|
|
17583
|
-
"kind": "method",
|
|
17584
|
-
"name": "#handleDocumentClick",
|
|
17585
|
-
"privacy": "private",
|
|
17586
|
-
"return": {
|
|
17587
|
-
"type": {
|
|
17588
|
-
"text": "void"
|
|
17589
|
-
}
|
|
17590
|
-
},
|
|
17591
|
-
"parameters": [
|
|
17592
|
-
{
|
|
17593
|
-
"name": "e",
|
|
17594
|
-
"type": {
|
|
17595
|
-
"text": "MouseEvent"
|
|
17596
|
-
}
|
|
17597
|
-
}
|
|
17598
|
-
],
|
|
17599
|
-
"inheritedFrom": {
|
|
17600
|
-
"name": "M3eFloatingPanelElement",
|
|
17601
|
-
"module": "src/core/anchoring/FloatingPanelElement.ts"
|
|
17602
|
-
}
|
|
17603
18128
|
}
|
|
17604
18129
|
],
|
|
17605
18130
|
"events": [
|
|
@@ -18025,7 +18550,7 @@
|
|
|
18025
18550
|
"name": "#focusController",
|
|
18026
18551
|
"privacy": "private",
|
|
18027
18552
|
"readonly": true,
|
|
18028
|
-
"default": "new FocusController(this, { target: null, callback: (focused) => { focused = focused && !(this.#control?.disabled ?? true); setCustomState(this, \"--no-animate\", false); this.#focused = focused; if (focused) { setCustomState(this, \"--float-label\", true); } else { this._invalid = !(this.#control?.checkValidity?.() ?? true); this.notifyControlStateChange(); } }, })"
|
|
18553
|
+
"default": "new FocusController(this, { target: null, filter: (e) => this.#ignoreEvent(e), callback: (focused) => { focused = focused && !(this.#control?.disabled ?? true); setCustomState(this, \"--no-animate\", false); this.#focused = focused; if (focused) { setCustomState(this, \"--float-label\", true); } else { this._invalid = !(this.#control?.checkValidity?.() ?? true); this.notifyControlStateChange(); } }, })"
|
|
18029
18554
|
},
|
|
18030
18555
|
{
|
|
18031
18556
|
"kind": "field",
|
|
@@ -18045,6 +18570,15 @@
|
|
|
18045
18570
|
"privacy": "private",
|
|
18046
18571
|
"readonly": true
|
|
18047
18572
|
},
|
|
18573
|
+
{
|
|
18574
|
+
"kind": "field",
|
|
18575
|
+
"name": "_suffix",
|
|
18576
|
+
"type": {
|
|
18577
|
+
"text": "HTMLElement"
|
|
18578
|
+
},
|
|
18579
|
+
"privacy": "private",
|
|
18580
|
+
"readonly": true
|
|
18581
|
+
},
|
|
18048
18582
|
{
|
|
18049
18583
|
"kind": "field",
|
|
18050
18584
|
"name": "_error",
|
|
@@ -18082,7 +18616,7 @@
|
|
|
18082
18616
|
"name": "#pressedController",
|
|
18083
18617
|
"privacy": "private",
|
|
18084
18618
|
"readonly": true,
|
|
18085
|
-
"default": "new PressedController(this, { target: null, callback: (pressed) => setCustomState(this, \"--pressed\", pressed && !(this.#control?.disabled ?? true)), })"
|
|
18619
|
+
"default": "new PressedController(this, { target: null, filter: (e) => this.#ignoreEvent(e), callback: (pressed) => setCustomState(this, \"--pressed\", pressed && !(this.#control?.disabled ?? true)), })"
|
|
18086
18620
|
},
|
|
18087
18621
|
{
|
|
18088
18622
|
"kind": "field",
|
|
@@ -18265,24 +18799,6 @@
|
|
|
18265
18799
|
}
|
|
18266
18800
|
}
|
|
18267
18801
|
},
|
|
18268
|
-
{
|
|
18269
|
-
"kind": "method",
|
|
18270
|
-
"name": "#stopPropagation",
|
|
18271
|
-
"privacy": "private",
|
|
18272
|
-
"return": {
|
|
18273
|
-
"type": {
|
|
18274
|
-
"text": "void"
|
|
18275
|
-
}
|
|
18276
|
-
},
|
|
18277
|
-
"parameters": [
|
|
18278
|
-
{
|
|
18279
|
-
"name": "e",
|
|
18280
|
-
"type": {
|
|
18281
|
-
"text": "Event"
|
|
18282
|
-
}
|
|
18283
|
-
}
|
|
18284
|
-
]
|
|
18285
|
-
},
|
|
18286
18802
|
{
|
|
18287
18803
|
"kind": "method",
|
|
18288
18804
|
"name": "#handleLabelSlotChange",
|
|
@@ -18413,6 +18929,24 @@
|
|
|
18413
18929
|
}
|
|
18414
18930
|
}
|
|
18415
18931
|
},
|
|
18932
|
+
{
|
|
18933
|
+
"kind": "method",
|
|
18934
|
+
"name": "#ignoreEvent",
|
|
18935
|
+
"privacy": "private",
|
|
18936
|
+
"return": {
|
|
18937
|
+
"type": {
|
|
18938
|
+
"text": "boolean"
|
|
18939
|
+
}
|
|
18940
|
+
},
|
|
18941
|
+
"parameters": [
|
|
18942
|
+
{
|
|
18943
|
+
"name": "e",
|
|
18944
|
+
"type": {
|
|
18945
|
+
"text": "Event"
|
|
18946
|
+
}
|
|
18947
|
+
}
|
|
18948
|
+
]
|
|
18949
|
+
},
|
|
18416
18950
|
{
|
|
18417
18951
|
"kind": "method",
|
|
18418
18952
|
"name": "#changeControl",
|
|
@@ -28314,9 +28848,10 @@
|
|
|
28314
28848
|
},
|
|
28315
28849
|
{
|
|
28316
28850
|
"kind": "field",
|
|
28317
|
-
"name": "#
|
|
28851
|
+
"name": "#clickOutsideController",
|
|
28318
28852
|
"privacy": "private",
|
|
28319
|
-
"readonly": true
|
|
28853
|
+
"readonly": true,
|
|
28854
|
+
"default": "new ClickOutsideController(this, { target: null, callback: () => this.hide(), })"
|
|
28320
28855
|
},
|
|
28321
28856
|
{
|
|
28322
28857
|
"kind": "field",
|
|
@@ -28349,20 +28884,6 @@
|
|
|
28349
28884
|
"text": "'top' | 'right' | 'bottom' | 'left' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end'"
|
|
28350
28885
|
}
|
|
28351
28886
|
},
|
|
28352
|
-
{
|
|
28353
|
-
"kind": "method",
|
|
28354
|
-
"name": "show",
|
|
28355
|
-
"return": {
|
|
28356
|
-
"type": {
|
|
28357
|
-
"text": "Promise<void>"
|
|
28358
|
-
}
|
|
28359
|
-
},
|
|
28360
|
-
"description": "Manually shows the tooltip.",
|
|
28361
|
-
"inheritedFrom": {
|
|
28362
|
-
"name": "TooltipElementBase",
|
|
28363
|
-
"module": "src/tooltip/TooltipElementBase.ts"
|
|
28364
|
-
}
|
|
28365
|
-
},
|
|
28366
28887
|
{
|
|
28367
28888
|
"kind": "method",
|
|
28368
28889
|
"name": "hide",
|
|
@@ -28473,24 +28994,6 @@
|
|
|
28473
28994
|
}
|
|
28474
28995
|
]
|
|
28475
28996
|
},
|
|
28476
|
-
{
|
|
28477
|
-
"kind": "method",
|
|
28478
|
-
"name": "#handleDocumentClick",
|
|
28479
|
-
"privacy": "private",
|
|
28480
|
-
"return": {
|
|
28481
|
-
"type": {
|
|
28482
|
-
"text": "void"
|
|
28483
|
-
}
|
|
28484
|
-
},
|
|
28485
|
-
"parameters": [
|
|
28486
|
-
{
|
|
28487
|
-
"name": "e",
|
|
28488
|
-
"type": {
|
|
28489
|
-
"text": "MouseEvent"
|
|
28490
|
-
}
|
|
28491
|
-
}
|
|
28492
|
-
]
|
|
28493
|
-
},
|
|
28494
28997
|
{
|
|
28495
28998
|
"kind": "method",
|
|
28496
28999
|
"name": "#handleKeyDown",
|
|
@@ -28859,6 +29362,20 @@
|
|
|
28859
29362
|
"module": "src/tooltip/TooltipElementBase.ts"
|
|
28860
29363
|
}
|
|
28861
29364
|
},
|
|
29365
|
+
{
|
|
29366
|
+
"kind": "method",
|
|
29367
|
+
"name": "show",
|
|
29368
|
+
"return": {
|
|
29369
|
+
"type": {
|
|
29370
|
+
"text": "Promise<void>"
|
|
29371
|
+
}
|
|
29372
|
+
},
|
|
29373
|
+
"description": "Manually shows the tooltip.",
|
|
29374
|
+
"inheritedFrom": {
|
|
29375
|
+
"name": "TooltipElementBase",
|
|
29376
|
+
"module": "src/tooltip/TooltipElementBase.ts"
|
|
29377
|
+
}
|
|
29378
|
+
},
|
|
28862
29379
|
{
|
|
28863
29380
|
"kind": "method",
|
|
28864
29381
|
"name": "#handleControlClick",
|
|
@@ -28885,12 +29402,18 @@
|
|
|
28885
29402
|
],
|
|
28886
29403
|
"events": [
|
|
28887
29404
|
{
|
|
28888
|
-
"
|
|
28889
|
-
"
|
|
29405
|
+
"name": "beforetoggle",
|
|
29406
|
+
"type": {
|
|
29407
|
+
"text": "ToggleEvent"
|
|
29408
|
+
},
|
|
29409
|
+
"description": "Dispatched before the toggle state changes."
|
|
28890
29410
|
},
|
|
28891
29411
|
{
|
|
28892
|
-
"
|
|
28893
|
-
"
|
|
29412
|
+
"name": "toggle",
|
|
29413
|
+
"type": {
|
|
29414
|
+
"text": "ToggleEvent"
|
|
29415
|
+
},
|
|
29416
|
+
"description": "Dispatched after the toggle state has changed."
|
|
28894
29417
|
}
|
|
28895
29418
|
],
|
|
28896
29419
|
"attributes": [
|
|
@@ -29905,6 +30428,20 @@
|
|
|
29905
30428
|
"module": "src/calendar/CalendarViewElementBase.ts"
|
|
29906
30429
|
}
|
|
29907
30430
|
},
|
|
30431
|
+
{
|
|
30432
|
+
"kind": "field",
|
|
30433
|
+
"name": "active",
|
|
30434
|
+
"type": {
|
|
30435
|
+
"text": "boolean"
|
|
30436
|
+
},
|
|
30437
|
+
"default": "false",
|
|
30438
|
+
"description": "Whether the view is active.",
|
|
30439
|
+
"attribute": "active",
|
|
30440
|
+
"inheritedFrom": {
|
|
30441
|
+
"name": "CalendarViewElementBase",
|
|
30442
|
+
"module": "src/calendar/CalendarViewElementBase.ts"
|
|
30443
|
+
}
|
|
30444
|
+
},
|
|
29908
30445
|
{
|
|
29909
30446
|
"kind": "field",
|
|
29910
30447
|
"name": "today",
|
|
@@ -30027,6 +30564,19 @@
|
|
|
30027
30564
|
"description": "End of a date range.",
|
|
30028
30565
|
"fieldName": "rangeEnd"
|
|
30029
30566
|
},
|
|
30567
|
+
{
|
|
30568
|
+
"name": "active",
|
|
30569
|
+
"type": {
|
|
30570
|
+
"text": "boolean"
|
|
30571
|
+
},
|
|
30572
|
+
"default": "false",
|
|
30573
|
+
"description": "Whether the view is active.",
|
|
30574
|
+
"fieldName": "active",
|
|
30575
|
+
"inheritedFrom": {
|
|
30576
|
+
"name": "CalendarViewElementBase",
|
|
30577
|
+
"module": "src/calendar/CalendarViewElementBase.ts"
|
|
30578
|
+
}
|
|
30579
|
+
},
|
|
30030
30580
|
{
|
|
30031
30581
|
"name": "today",
|
|
30032
30582
|
"type": {
|
|
@@ -30188,6 +30738,20 @@
|
|
|
30188
30738
|
"module": "src/calendar/CalendarViewElementBase.ts"
|
|
30189
30739
|
}
|
|
30190
30740
|
},
|
|
30741
|
+
{
|
|
30742
|
+
"kind": "field",
|
|
30743
|
+
"name": "active",
|
|
30744
|
+
"type": {
|
|
30745
|
+
"text": "boolean"
|
|
30746
|
+
},
|
|
30747
|
+
"default": "false",
|
|
30748
|
+
"description": "Whether the view is active.",
|
|
30749
|
+
"attribute": "active",
|
|
30750
|
+
"inheritedFrom": {
|
|
30751
|
+
"name": "CalendarViewElementBase",
|
|
30752
|
+
"module": "src/calendar/CalendarViewElementBase.ts"
|
|
30753
|
+
}
|
|
30754
|
+
},
|
|
30191
30755
|
{
|
|
30192
30756
|
"kind": "field",
|
|
30193
30757
|
"name": "today",
|
|
@@ -30298,6 +30862,19 @@
|
|
|
30298
30862
|
"tagName": "m3e-multi-year-view",
|
|
30299
30863
|
"customElement": true,
|
|
30300
30864
|
"attributes": [
|
|
30865
|
+
{
|
|
30866
|
+
"name": "active",
|
|
30867
|
+
"type": {
|
|
30868
|
+
"text": "boolean"
|
|
30869
|
+
},
|
|
30870
|
+
"default": "false",
|
|
30871
|
+
"description": "Whether the view is active.",
|
|
30872
|
+
"fieldName": "active",
|
|
30873
|
+
"inheritedFrom": {
|
|
30874
|
+
"name": "CalendarViewElementBase",
|
|
30875
|
+
"module": "src/calendar/CalendarViewElementBase.ts"
|
|
30876
|
+
}
|
|
30877
|
+
},
|
|
30301
30878
|
{
|
|
30302
30879
|
"name": "today",
|
|
30303
30880
|
"type": {
|
|
@@ -30453,6 +31030,20 @@
|
|
|
30453
31030
|
"module": "src/calendar/CalendarViewElementBase.ts"
|
|
30454
31031
|
}
|
|
30455
31032
|
},
|
|
31033
|
+
{
|
|
31034
|
+
"kind": "field",
|
|
31035
|
+
"name": "active",
|
|
31036
|
+
"type": {
|
|
31037
|
+
"text": "boolean"
|
|
31038
|
+
},
|
|
31039
|
+
"default": "false",
|
|
31040
|
+
"description": "Whether the view is active.",
|
|
31041
|
+
"attribute": "active",
|
|
31042
|
+
"inheritedFrom": {
|
|
31043
|
+
"name": "CalendarViewElementBase",
|
|
31044
|
+
"module": "src/calendar/CalendarViewElementBase.ts"
|
|
31045
|
+
}
|
|
31046
|
+
},
|
|
30456
31047
|
{
|
|
30457
31048
|
"kind": "field",
|
|
30458
31049
|
"name": "today",
|
|
@@ -30563,6 +31154,19 @@
|
|
|
30563
31154
|
"tagName": "m3e-year-view",
|
|
30564
31155
|
"customElement": true,
|
|
30565
31156
|
"attributes": [
|
|
31157
|
+
{
|
|
31158
|
+
"name": "active",
|
|
31159
|
+
"type": {
|
|
31160
|
+
"text": "boolean"
|
|
31161
|
+
},
|
|
31162
|
+
"default": "false",
|
|
31163
|
+
"description": "Whether the view is active.",
|
|
31164
|
+
"fieldName": "active",
|
|
31165
|
+
"inheritedFrom": {
|
|
31166
|
+
"name": "CalendarViewElementBase",
|
|
31167
|
+
"module": "src/calendar/CalendarViewElementBase.ts"
|
|
31168
|
+
}
|
|
31169
|
+
},
|
|
30566
31170
|
{
|
|
30567
31171
|
"name": "today",
|
|
30568
31172
|
"type": {
|
|
@@ -31054,6 +31658,16 @@
|
|
|
31054
31658
|
},
|
|
31055
31659
|
"description": "Updates today's date."
|
|
31056
31660
|
},
|
|
31661
|
+
{
|
|
31662
|
+
"kind": "method",
|
|
31663
|
+
"name": "resetActiveView",
|
|
31664
|
+
"return": {
|
|
31665
|
+
"type": {
|
|
31666
|
+
"text": "void"
|
|
31667
|
+
}
|
|
31668
|
+
},
|
|
31669
|
+
"description": "Resets the active view."
|
|
31670
|
+
},
|
|
31057
31671
|
{
|
|
31058
31672
|
"kind": "method",
|
|
31059
31673
|
"name": "movePreviousPeriod",
|
|
@@ -39378,6 +39992,24 @@
|
|
|
39378
39992
|
}
|
|
39379
39993
|
],
|
|
39380
39994
|
"members": [
|
|
39995
|
+
{
|
|
39996
|
+
"kind": "field",
|
|
39997
|
+
"name": "#closeTimeout",
|
|
39998
|
+
"privacy": "private",
|
|
39999
|
+
"type": {
|
|
40000
|
+
"text": "number"
|
|
40001
|
+
},
|
|
40002
|
+
"default": "-1"
|
|
40003
|
+
},
|
|
40004
|
+
{
|
|
40005
|
+
"kind": "field",
|
|
40006
|
+
"name": "_open",
|
|
40007
|
+
"type": {
|
|
40008
|
+
"text": "boolean"
|
|
40009
|
+
},
|
|
40010
|
+
"privacy": "private",
|
|
40011
|
+
"default": "false"
|
|
40012
|
+
},
|
|
39381
40013
|
{
|
|
39382
40014
|
"kind": "field",
|
|
39383
40015
|
"name": "_date",
|
|
@@ -39820,6 +40452,26 @@
|
|
|
39820
40452
|
}
|
|
39821
40453
|
}
|
|
39822
40454
|
},
|
|
40455
|
+
{
|
|
40456
|
+
"kind": "method",
|
|
40457
|
+
"name": "#renderCalendar",
|
|
40458
|
+
"privacy": "private",
|
|
40459
|
+
"return": {
|
|
40460
|
+
"type": {
|
|
40461
|
+
"text": "unknown"
|
|
40462
|
+
}
|
|
40463
|
+
}
|
|
40464
|
+
},
|
|
40465
|
+
{
|
|
40466
|
+
"kind": "method",
|
|
40467
|
+
"name": "#renderActions",
|
|
40468
|
+
"privacy": "private",
|
|
40469
|
+
"return": {
|
|
40470
|
+
"type": {
|
|
40471
|
+
"text": "unknown"
|
|
40472
|
+
}
|
|
40473
|
+
}
|
|
40474
|
+
},
|
|
39823
40475
|
{
|
|
39824
40476
|
"kind": "method",
|
|
39825
40477
|
"name": "#handleDocumentClick",
|
|
@@ -39846,7 +40498,15 @@
|
|
|
39846
40498
|
"type": {
|
|
39847
40499
|
"text": "void"
|
|
39848
40500
|
}
|
|
39849
|
-
}
|
|
40501
|
+
},
|
|
40502
|
+
"parameters": [
|
|
40503
|
+
{
|
|
40504
|
+
"name": "e",
|
|
40505
|
+
"type": {
|
|
40506
|
+
"text": "Event"
|
|
40507
|
+
}
|
|
40508
|
+
}
|
|
40509
|
+
]
|
|
39850
40510
|
},
|
|
39851
40511
|
{
|
|
39852
40512
|
"kind": "method",
|
|
@@ -45307,6 +45967,374 @@
|
|
|
45307
45967
|
"declarations": [],
|
|
45308
45968
|
"exports": []
|
|
45309
45969
|
},
|
|
45970
|
+
{
|
|
45971
|
+
"kind": "javascript-module",
|
|
45972
|
+
"path": "src/fab-menu/FabMenuElement.ts",
|
|
45973
|
+
"declarations": [
|
|
45974
|
+
{
|
|
45975
|
+
"kind": "class",
|
|
45976
|
+
"description": "A menu, opened from a floating action button (FAB), used to display multiple related actions.",
|
|
45977
|
+
"name": "M3eFabMenuElement",
|
|
45978
|
+
"cssProperties": [
|
|
45979
|
+
{
|
|
45980
|
+
"description": "Vertical gap between menu items.",
|
|
45981
|
+
"name": "--m3e-fab-menu-spacing"
|
|
45982
|
+
},
|
|
45983
|
+
{
|
|
45984
|
+
"description": "Maximum width of the menu.",
|
|
45985
|
+
"name": "--m3e-fab-menu-max-width"
|
|
45986
|
+
},
|
|
45987
|
+
{
|
|
45988
|
+
"description": "Foreground color for primary variant items.",
|
|
45989
|
+
"name": "--m3e-primary-fab-color"
|
|
45990
|
+
},
|
|
45991
|
+
{
|
|
45992
|
+
"description": "Container color for primary variant items.",
|
|
45993
|
+
"name": "--m3e-primary-fab-container-color"
|
|
45994
|
+
},
|
|
45995
|
+
{
|
|
45996
|
+
"description": "Hover background color for primary variant items.",
|
|
45997
|
+
"name": "--m3e-primary-fab-hover-color"
|
|
45998
|
+
},
|
|
45999
|
+
{
|
|
46000
|
+
"description": "Focus background color for primary variant items.",
|
|
46001
|
+
"name": "--m3e-primary-fab-focus-color"
|
|
46002
|
+
},
|
|
46003
|
+
{
|
|
46004
|
+
"description": "Ripple color for primary variant items.",
|
|
46005
|
+
"name": "--m3e-primary-fab-ripple-color"
|
|
46006
|
+
},
|
|
46007
|
+
{
|
|
46008
|
+
"description": "Foreground color for secondary variant items.",
|
|
46009
|
+
"name": "--m3e-secondary-fab-color"
|
|
46010
|
+
},
|
|
46011
|
+
{
|
|
46012
|
+
"description": "Container color for secondary variant items.",
|
|
46013
|
+
"name": "--m3e-secondary-fab-container-color"
|
|
46014
|
+
},
|
|
46015
|
+
{
|
|
46016
|
+
"description": "Hover background color for secondary variant items.",
|
|
46017
|
+
"name": "--m3e-secondary-fab-hover-color"
|
|
46018
|
+
},
|
|
46019
|
+
{
|
|
46020
|
+
"description": "Focus background color for secondary variant items.",
|
|
46021
|
+
"name": "--m3e-secondary-fab-focus-color"
|
|
46022
|
+
},
|
|
46023
|
+
{
|
|
46024
|
+
"description": "Ripple color for secondary variant items.",
|
|
46025
|
+
"name": "--m3e-secondary-fab-ripple-color"
|
|
46026
|
+
},
|
|
46027
|
+
{
|
|
46028
|
+
"description": "Foreground color for tertiary variant items.",
|
|
46029
|
+
"name": "--m3e-tertiary-fab-color"
|
|
46030
|
+
},
|
|
46031
|
+
{
|
|
46032
|
+
"description": "Container color for tertiary variant items.",
|
|
46033
|
+
"name": "--m3e-tertiary-fab-container-color"
|
|
46034
|
+
},
|
|
46035
|
+
{
|
|
46036
|
+
"description": "Hover background color for tertiary variant items.",
|
|
46037
|
+
"name": "--m3e-tertiary-fab-hover-color"
|
|
46038
|
+
},
|
|
46039
|
+
{
|
|
46040
|
+
"description": "Focus background color for tertiary variant items.",
|
|
46041
|
+
"name": "--m3e-tertiary-fab-focus-color"
|
|
46042
|
+
},
|
|
46043
|
+
{
|
|
46044
|
+
"description": "Ripple color for tertiary variant items.",
|
|
46045
|
+
"name": "--m3e-tertiary-fab-ripple-color"
|
|
46046
|
+
}
|
|
46047
|
+
],
|
|
46048
|
+
"slots": [
|
|
46049
|
+
{
|
|
46050
|
+
"description": "Renders the contents of the menu.",
|
|
46051
|
+
"name": ""
|
|
46052
|
+
}
|
|
46053
|
+
],
|
|
46054
|
+
"members": [
|
|
46055
|
+
{
|
|
46056
|
+
"kind": "field",
|
|
46057
|
+
"name": "#fabTabIndex",
|
|
46058
|
+
"privacy": "private",
|
|
46059
|
+
"type": {
|
|
46060
|
+
"text": "number | undefined"
|
|
46061
|
+
}
|
|
46062
|
+
},
|
|
46063
|
+
{
|
|
46064
|
+
"kind": "field",
|
|
46065
|
+
"name": "#trigger",
|
|
46066
|
+
"privacy": "private",
|
|
46067
|
+
"type": {
|
|
46068
|
+
"text": "HTMLElement | undefined"
|
|
46069
|
+
}
|
|
46070
|
+
},
|
|
46071
|
+
{
|
|
46072
|
+
"kind": "field",
|
|
46073
|
+
"name": "#anchoringCleanup",
|
|
46074
|
+
"privacy": "private",
|
|
46075
|
+
"type": {
|
|
46076
|
+
"text": "() => void | undefined"
|
|
46077
|
+
}
|
|
46078
|
+
},
|
|
46079
|
+
{
|
|
46080
|
+
"kind": "field",
|
|
46081
|
+
"name": "#listManager",
|
|
46082
|
+
"privacy": "private",
|
|
46083
|
+
"readonly": true
|
|
46084
|
+
},
|
|
46085
|
+
{
|
|
46086
|
+
"kind": "field",
|
|
46087
|
+
"name": "#keyDownHandler",
|
|
46088
|
+
"privacy": "private",
|
|
46089
|
+
"readonly": true
|
|
46090
|
+
},
|
|
46091
|
+
{
|
|
46092
|
+
"kind": "field",
|
|
46093
|
+
"name": "#scrollController",
|
|
46094
|
+
"privacy": "private",
|
|
46095
|
+
"readonly": true,
|
|
46096
|
+
"default": "new ScrollController(this, { target: null, callback: () => this.hide() })"
|
|
46097
|
+
},
|
|
46098
|
+
{
|
|
46099
|
+
"kind": "field",
|
|
46100
|
+
"name": "#clickOutsideController",
|
|
46101
|
+
"privacy": "private",
|
|
46102
|
+
"readonly": true,
|
|
46103
|
+
"default": "new ClickOutsideController(this, { target: null, callback: () => this.hide(), })"
|
|
46104
|
+
},
|
|
46105
|
+
{
|
|
46106
|
+
"kind": "field",
|
|
46107
|
+
"name": "#toggleHandler",
|
|
46108
|
+
"privacy": "private",
|
|
46109
|
+
"readonly": true
|
|
46110
|
+
},
|
|
46111
|
+
{
|
|
46112
|
+
"kind": "field",
|
|
46113
|
+
"name": "variant",
|
|
46114
|
+
"type": {
|
|
46115
|
+
"text": "FabMenuVariant"
|
|
46116
|
+
},
|
|
46117
|
+
"default": "\"primary\"",
|
|
46118
|
+
"description": "The appearance variant of the menu.",
|
|
46119
|
+
"attribute": "variant",
|
|
46120
|
+
"reflects": true,
|
|
46121
|
+
"parsedType": {
|
|
46122
|
+
"text": "'primary' | 'secondary' | 'tertiary'"
|
|
46123
|
+
}
|
|
46124
|
+
},
|
|
46125
|
+
{
|
|
46126
|
+
"kind": "field",
|
|
46127
|
+
"name": "isOpen",
|
|
46128
|
+
"description": "Whether the menu is open.",
|
|
46129
|
+
"readonly": true
|
|
46130
|
+
},
|
|
46131
|
+
{
|
|
46132
|
+
"kind": "method",
|
|
46133
|
+
"name": "show",
|
|
46134
|
+
"return": {
|
|
46135
|
+
"type": {
|
|
46136
|
+
"text": "Promise<void>"
|
|
46137
|
+
}
|
|
46138
|
+
},
|
|
46139
|
+
"parameters": [
|
|
46140
|
+
{
|
|
46141
|
+
"name": "trigger",
|
|
46142
|
+
"type": {
|
|
46143
|
+
"text": "HTMLElement"
|
|
46144
|
+
},
|
|
46145
|
+
"description": "The element that triggered the menu."
|
|
46146
|
+
}
|
|
46147
|
+
],
|
|
46148
|
+
"description": "Opens the menu."
|
|
46149
|
+
},
|
|
46150
|
+
{
|
|
46151
|
+
"kind": "method",
|
|
46152
|
+
"name": "hide",
|
|
46153
|
+
"return": {
|
|
46154
|
+
"type": {
|
|
46155
|
+
"text": "void"
|
|
46156
|
+
}
|
|
46157
|
+
},
|
|
46158
|
+
"parameters": [
|
|
46159
|
+
{
|
|
46160
|
+
"name": "restoreFocus",
|
|
46161
|
+
"default": "false",
|
|
46162
|
+
"type": {
|
|
46163
|
+
"text": "boolean"
|
|
46164
|
+
},
|
|
46165
|
+
"description": "A value indicating whether to restore focus to the menu's trigger.",
|
|
46166
|
+
"optional": true
|
|
46167
|
+
}
|
|
46168
|
+
],
|
|
46169
|
+
"description": "Hides the menu."
|
|
46170
|
+
},
|
|
46171
|
+
{
|
|
46172
|
+
"kind": "method",
|
|
46173
|
+
"name": "toggle",
|
|
46174
|
+
"return": {
|
|
46175
|
+
"type": {
|
|
46176
|
+
"text": "Promise<void>"
|
|
46177
|
+
}
|
|
46178
|
+
},
|
|
46179
|
+
"parameters": [
|
|
46180
|
+
{
|
|
46181
|
+
"name": "trigger",
|
|
46182
|
+
"type": {
|
|
46183
|
+
"text": "HTMLElement"
|
|
46184
|
+
},
|
|
46185
|
+
"description": "The element that triggered the menu."
|
|
46186
|
+
}
|
|
46187
|
+
],
|
|
46188
|
+
"description": "Toggles the menu."
|
|
46189
|
+
},
|
|
46190
|
+
{
|
|
46191
|
+
"kind": "method",
|
|
46192
|
+
"name": "#handleSlotChange",
|
|
46193
|
+
"privacy": "private",
|
|
46194
|
+
"return": {
|
|
46195
|
+
"type": {
|
|
46196
|
+
"text": "void"
|
|
46197
|
+
}
|
|
46198
|
+
}
|
|
46199
|
+
},
|
|
46200
|
+
{
|
|
46201
|
+
"kind": "method",
|
|
46202
|
+
"name": "#handleKeyDown",
|
|
46203
|
+
"privacy": "private",
|
|
46204
|
+
"return": {
|
|
46205
|
+
"type": {
|
|
46206
|
+
"text": "void"
|
|
46207
|
+
}
|
|
46208
|
+
},
|
|
46209
|
+
"parameters": [
|
|
46210
|
+
{
|
|
46211
|
+
"name": "e",
|
|
46212
|
+
"type": {
|
|
46213
|
+
"text": "KeyboardEvent"
|
|
46214
|
+
}
|
|
46215
|
+
}
|
|
46216
|
+
]
|
|
46217
|
+
},
|
|
46218
|
+
{
|
|
46219
|
+
"kind": "method",
|
|
46220
|
+
"name": "#attachFab",
|
|
46221
|
+
"privacy": "private",
|
|
46222
|
+
"return": {
|
|
46223
|
+
"type": {
|
|
46224
|
+
"text": "void"
|
|
46225
|
+
}
|
|
46226
|
+
}
|
|
46227
|
+
},
|
|
46228
|
+
{
|
|
46229
|
+
"kind": "method",
|
|
46230
|
+
"name": "#detachFab",
|
|
46231
|
+
"privacy": "private",
|
|
46232
|
+
"return": {
|
|
46233
|
+
"type": {
|
|
46234
|
+
"text": "void"
|
|
46235
|
+
}
|
|
46236
|
+
}
|
|
46237
|
+
},
|
|
46238
|
+
{
|
|
46239
|
+
"kind": "field",
|
|
46240
|
+
"name": "formAssociated",
|
|
46241
|
+
"static": true,
|
|
46242
|
+
"readonly": true,
|
|
46243
|
+
"default": "formAssociated",
|
|
46244
|
+
"description": "Indicates that this custom element participates in form submission, validation, and form state restoration.",
|
|
46245
|
+
"inheritedFrom": {
|
|
46246
|
+
"name": "AttachInternals",
|
|
46247
|
+
"module": "src/core/shared/mixins/AttachInternals.ts"
|
|
46248
|
+
}
|
|
46249
|
+
},
|
|
46250
|
+
{
|
|
46251
|
+
"kind": "field",
|
|
46252
|
+
"name": "[_internals]",
|
|
46253
|
+
"type": {
|
|
46254
|
+
"text": "ElementInternals | undefined"
|
|
46255
|
+
},
|
|
46256
|
+
"privacy": "private",
|
|
46257
|
+
"inheritedFrom": {
|
|
46258
|
+
"name": "AttachInternals",
|
|
46259
|
+
"module": "src/core/shared/mixins/AttachInternals.ts"
|
|
46260
|
+
}
|
|
46261
|
+
},
|
|
46262
|
+
{
|
|
46263
|
+
"kind": "field",
|
|
46264
|
+
"name": "[_customState]",
|
|
46265
|
+
"default": "new Set<string>()",
|
|
46266
|
+
"privacy": "private",
|
|
46267
|
+
"inheritedFrom": {
|
|
46268
|
+
"name": "AttachInternals",
|
|
46269
|
+
"module": "src/core/shared/mixins/AttachInternals.ts"
|
|
46270
|
+
}
|
|
46271
|
+
}
|
|
46272
|
+
],
|
|
46273
|
+
"events": [
|
|
46274
|
+
{
|
|
46275
|
+
"description": "Dispatched before the toggle state changes.",
|
|
46276
|
+
"name": "beforetoggle"
|
|
46277
|
+
},
|
|
46278
|
+
{
|
|
46279
|
+
"description": "Dispatched after the toggle state has changed.",
|
|
46280
|
+
"name": "toggle"
|
|
46281
|
+
}
|
|
46282
|
+
],
|
|
46283
|
+
"attributes": [
|
|
46284
|
+
{
|
|
46285
|
+
"description": "The appearance variant of the menu.",
|
|
46286
|
+
"name": "variant",
|
|
46287
|
+
"type": {
|
|
46288
|
+
"text": "FabMenuVariant"
|
|
46289
|
+
},
|
|
46290
|
+
"default": "\"primary\"",
|
|
46291
|
+
"fieldName": "variant",
|
|
46292
|
+
"parsedType": {
|
|
46293
|
+
"text": "'primary' | 'secondary' | 'tertiary'"
|
|
46294
|
+
}
|
|
46295
|
+
}
|
|
46296
|
+
],
|
|
46297
|
+
"mixins": [
|
|
46298
|
+
{
|
|
46299
|
+
"name": "SuppressInitialAnimation",
|
|
46300
|
+
"package": "@m3e/web/core"
|
|
46301
|
+
},
|
|
46302
|
+
{
|
|
46303
|
+
"name": "AttachInternals",
|
|
46304
|
+
"package": "@m3e/web/core"
|
|
46305
|
+
},
|
|
46306
|
+
{
|
|
46307
|
+
"name": "Role",
|
|
46308
|
+
"package": "@m3e/web/core"
|
|
46309
|
+
}
|
|
46310
|
+
],
|
|
46311
|
+
"superclass": {
|
|
46312
|
+
"name": "LitElement",
|
|
46313
|
+
"package": "lit"
|
|
46314
|
+
},
|
|
46315
|
+
"tagName": "m3e-fab-menu",
|
|
46316
|
+
"customElement": true
|
|
46317
|
+
}
|
|
46318
|
+
],
|
|
46319
|
+
"exports": [
|
|
46320
|
+
{
|
|
46321
|
+
"kind": "js",
|
|
46322
|
+
"name": "M3eFabMenuElement",
|
|
46323
|
+
"declaration": {
|
|
46324
|
+
"name": "M3eFabMenuElement",
|
|
46325
|
+
"module": "src/fab-menu/FabMenuElement.ts"
|
|
46326
|
+
}
|
|
46327
|
+
},
|
|
46328
|
+
{
|
|
46329
|
+
"kind": "custom-element-definition",
|
|
46330
|
+
"name": "m3e-fab-menu",
|
|
46331
|
+
"declaration": {
|
|
46332
|
+
"name": "M3eFabMenuElement",
|
|
46333
|
+
"module": "src/fab-menu/FabMenuElement.ts"
|
|
46334
|
+
}
|
|
46335
|
+
}
|
|
46336
|
+
]
|
|
46337
|
+
},
|
|
45310
46338
|
{
|
|
45311
46339
|
"kind": "javascript-module",
|
|
45312
46340
|
"path": "src/fab-menu/FabMenuItemElement.ts",
|
|
@@ -45833,391 +46861,6 @@
|
|
|
45833
46861
|
}
|
|
45834
46862
|
]
|
|
45835
46863
|
},
|
|
45836
|
-
{
|
|
45837
|
-
"kind": "javascript-module",
|
|
45838
|
-
"path": "src/fab-menu/FabMenuElement.ts",
|
|
45839
|
-
"declarations": [
|
|
45840
|
-
{
|
|
45841
|
-
"kind": "class",
|
|
45842
|
-
"description": "A menu, opened from a floating action button (FAB), used to display multiple related actions.",
|
|
45843
|
-
"name": "M3eFabMenuElement",
|
|
45844
|
-
"cssProperties": [
|
|
45845
|
-
{
|
|
45846
|
-
"description": "Vertical gap between menu items.",
|
|
45847
|
-
"name": "--m3e-fab-menu-spacing"
|
|
45848
|
-
},
|
|
45849
|
-
{
|
|
45850
|
-
"description": "Maximum width of the menu.",
|
|
45851
|
-
"name": "--m3e-fab-menu-max-width"
|
|
45852
|
-
},
|
|
45853
|
-
{
|
|
45854
|
-
"description": "Foreground color for primary variant items.",
|
|
45855
|
-
"name": "--m3e-primary-fab-color"
|
|
45856
|
-
},
|
|
45857
|
-
{
|
|
45858
|
-
"description": "Container color for primary variant items.",
|
|
45859
|
-
"name": "--m3e-primary-fab-container-color"
|
|
45860
|
-
},
|
|
45861
|
-
{
|
|
45862
|
-
"description": "Hover background color for primary variant items.",
|
|
45863
|
-
"name": "--m3e-primary-fab-hover-color"
|
|
45864
|
-
},
|
|
45865
|
-
{
|
|
45866
|
-
"description": "Focus background color for primary variant items.",
|
|
45867
|
-
"name": "--m3e-primary-fab-focus-color"
|
|
45868
|
-
},
|
|
45869
|
-
{
|
|
45870
|
-
"description": "Ripple color for primary variant items.",
|
|
45871
|
-
"name": "--m3e-primary-fab-ripple-color"
|
|
45872
|
-
},
|
|
45873
|
-
{
|
|
45874
|
-
"description": "Foreground color for secondary variant items.",
|
|
45875
|
-
"name": "--m3e-secondary-fab-color"
|
|
45876
|
-
},
|
|
45877
|
-
{
|
|
45878
|
-
"description": "Container color for secondary variant items.",
|
|
45879
|
-
"name": "--m3e-secondary-fab-container-color"
|
|
45880
|
-
},
|
|
45881
|
-
{
|
|
45882
|
-
"description": "Hover background color for secondary variant items.",
|
|
45883
|
-
"name": "--m3e-secondary-fab-hover-color"
|
|
45884
|
-
},
|
|
45885
|
-
{
|
|
45886
|
-
"description": "Focus background color for secondary variant items.",
|
|
45887
|
-
"name": "--m3e-secondary-fab-focus-color"
|
|
45888
|
-
},
|
|
45889
|
-
{
|
|
45890
|
-
"description": "Ripple color for secondary variant items.",
|
|
45891
|
-
"name": "--m3e-secondary-fab-ripple-color"
|
|
45892
|
-
},
|
|
45893
|
-
{
|
|
45894
|
-
"description": "Foreground color for tertiary variant items.",
|
|
45895
|
-
"name": "--m3e-tertiary-fab-color"
|
|
45896
|
-
},
|
|
45897
|
-
{
|
|
45898
|
-
"description": "Container color for tertiary variant items.",
|
|
45899
|
-
"name": "--m3e-tertiary-fab-container-color"
|
|
45900
|
-
},
|
|
45901
|
-
{
|
|
45902
|
-
"description": "Hover background color for tertiary variant items.",
|
|
45903
|
-
"name": "--m3e-tertiary-fab-hover-color"
|
|
45904
|
-
},
|
|
45905
|
-
{
|
|
45906
|
-
"description": "Focus background color for tertiary variant items.",
|
|
45907
|
-
"name": "--m3e-tertiary-fab-focus-color"
|
|
45908
|
-
},
|
|
45909
|
-
{
|
|
45910
|
-
"description": "Ripple color for tertiary variant items.",
|
|
45911
|
-
"name": "--m3e-tertiary-fab-ripple-color"
|
|
45912
|
-
}
|
|
45913
|
-
],
|
|
45914
|
-
"slots": [
|
|
45915
|
-
{
|
|
45916
|
-
"description": "Renders the contents of the menu.",
|
|
45917
|
-
"name": ""
|
|
45918
|
-
}
|
|
45919
|
-
],
|
|
45920
|
-
"members": [
|
|
45921
|
-
{
|
|
45922
|
-
"kind": "field",
|
|
45923
|
-
"name": "#fabTabIndex",
|
|
45924
|
-
"privacy": "private",
|
|
45925
|
-
"type": {
|
|
45926
|
-
"text": "number | undefined"
|
|
45927
|
-
}
|
|
45928
|
-
},
|
|
45929
|
-
{
|
|
45930
|
-
"kind": "field",
|
|
45931
|
-
"name": "#trigger",
|
|
45932
|
-
"privacy": "private",
|
|
45933
|
-
"type": {
|
|
45934
|
-
"text": "HTMLElement | undefined"
|
|
45935
|
-
}
|
|
45936
|
-
},
|
|
45937
|
-
{
|
|
45938
|
-
"kind": "field",
|
|
45939
|
-
"name": "#anchoringCleanup",
|
|
45940
|
-
"privacy": "private",
|
|
45941
|
-
"type": {
|
|
45942
|
-
"text": "() => void | undefined"
|
|
45943
|
-
}
|
|
45944
|
-
},
|
|
45945
|
-
{
|
|
45946
|
-
"kind": "field",
|
|
45947
|
-
"name": "#listManager",
|
|
45948
|
-
"privacy": "private",
|
|
45949
|
-
"readonly": true
|
|
45950
|
-
},
|
|
45951
|
-
{
|
|
45952
|
-
"kind": "field",
|
|
45953
|
-
"name": "#keyDownHandler",
|
|
45954
|
-
"privacy": "private",
|
|
45955
|
-
"readonly": true
|
|
45956
|
-
},
|
|
45957
|
-
{
|
|
45958
|
-
"kind": "field",
|
|
45959
|
-
"name": "#documentClickHandler",
|
|
45960
|
-
"privacy": "private",
|
|
45961
|
-
"readonly": true
|
|
45962
|
-
},
|
|
45963
|
-
{
|
|
45964
|
-
"kind": "field",
|
|
45965
|
-
"name": "#scrollController",
|
|
45966
|
-
"privacy": "private",
|
|
45967
|
-
"readonly": true,
|
|
45968
|
-
"default": "new ScrollController(this, { target: null, callback: () => this.hide() })"
|
|
45969
|
-
},
|
|
45970
|
-
{
|
|
45971
|
-
"kind": "field",
|
|
45972
|
-
"name": "#toggleHandler",
|
|
45973
|
-
"privacy": "private",
|
|
45974
|
-
"readonly": true
|
|
45975
|
-
},
|
|
45976
|
-
{
|
|
45977
|
-
"kind": "field",
|
|
45978
|
-
"name": "variant",
|
|
45979
|
-
"type": {
|
|
45980
|
-
"text": "FabMenuVariant"
|
|
45981
|
-
},
|
|
45982
|
-
"default": "\"primary\"",
|
|
45983
|
-
"description": "The appearance variant of the menu.",
|
|
45984
|
-
"attribute": "variant",
|
|
45985
|
-
"reflects": true,
|
|
45986
|
-
"parsedType": {
|
|
45987
|
-
"text": "'primary' | 'secondary' | 'tertiary'"
|
|
45988
|
-
}
|
|
45989
|
-
},
|
|
45990
|
-
{
|
|
45991
|
-
"kind": "field",
|
|
45992
|
-
"name": "isOpen",
|
|
45993
|
-
"description": "Whether the menu is open.",
|
|
45994
|
-
"readonly": true
|
|
45995
|
-
},
|
|
45996
|
-
{
|
|
45997
|
-
"kind": "method",
|
|
45998
|
-
"name": "show",
|
|
45999
|
-
"return": {
|
|
46000
|
-
"type": {
|
|
46001
|
-
"text": "Promise<void>"
|
|
46002
|
-
}
|
|
46003
|
-
},
|
|
46004
|
-
"parameters": [
|
|
46005
|
-
{
|
|
46006
|
-
"name": "trigger",
|
|
46007
|
-
"type": {
|
|
46008
|
-
"text": "HTMLElement"
|
|
46009
|
-
},
|
|
46010
|
-
"description": "The element that triggered the menu."
|
|
46011
|
-
}
|
|
46012
|
-
],
|
|
46013
|
-
"description": "Opens the menu."
|
|
46014
|
-
},
|
|
46015
|
-
{
|
|
46016
|
-
"kind": "method",
|
|
46017
|
-
"name": "hide",
|
|
46018
|
-
"return": {
|
|
46019
|
-
"type": {
|
|
46020
|
-
"text": "void"
|
|
46021
|
-
}
|
|
46022
|
-
},
|
|
46023
|
-
"parameters": [
|
|
46024
|
-
{
|
|
46025
|
-
"name": "restoreFocus",
|
|
46026
|
-
"default": "false",
|
|
46027
|
-
"type": {
|
|
46028
|
-
"text": "boolean"
|
|
46029
|
-
},
|
|
46030
|
-
"description": "A value indicating whether to restore focus to the menu's trigger.",
|
|
46031
|
-
"optional": true
|
|
46032
|
-
}
|
|
46033
|
-
],
|
|
46034
|
-
"description": "Hides the menu."
|
|
46035
|
-
},
|
|
46036
|
-
{
|
|
46037
|
-
"kind": "method",
|
|
46038
|
-
"name": "toggle",
|
|
46039
|
-
"return": {
|
|
46040
|
-
"type": {
|
|
46041
|
-
"text": "Promise<void>"
|
|
46042
|
-
}
|
|
46043
|
-
},
|
|
46044
|
-
"parameters": [
|
|
46045
|
-
{
|
|
46046
|
-
"name": "trigger",
|
|
46047
|
-
"type": {
|
|
46048
|
-
"text": "HTMLElement"
|
|
46049
|
-
},
|
|
46050
|
-
"description": "The element that triggered the menu."
|
|
46051
|
-
}
|
|
46052
|
-
],
|
|
46053
|
-
"description": "Toggles the menu."
|
|
46054
|
-
},
|
|
46055
|
-
{
|
|
46056
|
-
"kind": "method",
|
|
46057
|
-
"name": "#handleSlotChange",
|
|
46058
|
-
"privacy": "private",
|
|
46059
|
-
"return": {
|
|
46060
|
-
"type": {
|
|
46061
|
-
"text": "void"
|
|
46062
|
-
}
|
|
46063
|
-
}
|
|
46064
|
-
},
|
|
46065
|
-
{
|
|
46066
|
-
"kind": "method",
|
|
46067
|
-
"name": "#handleKeyDown",
|
|
46068
|
-
"privacy": "private",
|
|
46069
|
-
"return": {
|
|
46070
|
-
"type": {
|
|
46071
|
-
"text": "void"
|
|
46072
|
-
}
|
|
46073
|
-
},
|
|
46074
|
-
"parameters": [
|
|
46075
|
-
{
|
|
46076
|
-
"name": "e",
|
|
46077
|
-
"type": {
|
|
46078
|
-
"text": "KeyboardEvent"
|
|
46079
|
-
}
|
|
46080
|
-
}
|
|
46081
|
-
]
|
|
46082
|
-
},
|
|
46083
|
-
{
|
|
46084
|
-
"kind": "method",
|
|
46085
|
-
"name": "#handleDocumentClick",
|
|
46086
|
-
"privacy": "private",
|
|
46087
|
-
"return": {
|
|
46088
|
-
"type": {
|
|
46089
|
-
"text": "void"
|
|
46090
|
-
}
|
|
46091
|
-
},
|
|
46092
|
-
"parameters": [
|
|
46093
|
-
{
|
|
46094
|
-
"name": "e",
|
|
46095
|
-
"type": {
|
|
46096
|
-
"text": "MouseEvent"
|
|
46097
|
-
}
|
|
46098
|
-
}
|
|
46099
|
-
]
|
|
46100
|
-
},
|
|
46101
|
-
{
|
|
46102
|
-
"kind": "method",
|
|
46103
|
-
"name": "#attachFab",
|
|
46104
|
-
"privacy": "private",
|
|
46105
|
-
"return": {
|
|
46106
|
-
"type": {
|
|
46107
|
-
"text": "void"
|
|
46108
|
-
}
|
|
46109
|
-
}
|
|
46110
|
-
},
|
|
46111
|
-
{
|
|
46112
|
-
"kind": "method",
|
|
46113
|
-
"name": "#detachFab",
|
|
46114
|
-
"privacy": "private",
|
|
46115
|
-
"return": {
|
|
46116
|
-
"type": {
|
|
46117
|
-
"text": "void"
|
|
46118
|
-
}
|
|
46119
|
-
}
|
|
46120
|
-
},
|
|
46121
|
-
{
|
|
46122
|
-
"kind": "field",
|
|
46123
|
-
"name": "formAssociated",
|
|
46124
|
-
"static": true,
|
|
46125
|
-
"readonly": true,
|
|
46126
|
-
"default": "formAssociated",
|
|
46127
|
-
"description": "Indicates that this custom element participates in form submission, validation, and form state restoration.",
|
|
46128
|
-
"inheritedFrom": {
|
|
46129
|
-
"name": "AttachInternals",
|
|
46130
|
-
"module": "src/core/shared/mixins/AttachInternals.ts"
|
|
46131
|
-
}
|
|
46132
|
-
},
|
|
46133
|
-
{
|
|
46134
|
-
"kind": "field",
|
|
46135
|
-
"name": "[_internals]",
|
|
46136
|
-
"type": {
|
|
46137
|
-
"text": "ElementInternals | undefined"
|
|
46138
|
-
},
|
|
46139
|
-
"privacy": "private",
|
|
46140
|
-
"inheritedFrom": {
|
|
46141
|
-
"name": "AttachInternals",
|
|
46142
|
-
"module": "src/core/shared/mixins/AttachInternals.ts"
|
|
46143
|
-
}
|
|
46144
|
-
},
|
|
46145
|
-
{
|
|
46146
|
-
"kind": "field",
|
|
46147
|
-
"name": "[_customState]",
|
|
46148
|
-
"default": "new Set<string>()",
|
|
46149
|
-
"privacy": "private",
|
|
46150
|
-
"inheritedFrom": {
|
|
46151
|
-
"name": "AttachInternals",
|
|
46152
|
-
"module": "src/core/shared/mixins/AttachInternals.ts"
|
|
46153
|
-
}
|
|
46154
|
-
}
|
|
46155
|
-
],
|
|
46156
|
-
"events": [
|
|
46157
|
-
{
|
|
46158
|
-
"description": "Dispatched before the toggle state changes.",
|
|
46159
|
-
"name": "beforetoggle"
|
|
46160
|
-
},
|
|
46161
|
-
{
|
|
46162
|
-
"description": "Dispatched after the toggle state has changed.",
|
|
46163
|
-
"name": "toggle"
|
|
46164
|
-
}
|
|
46165
|
-
],
|
|
46166
|
-
"attributes": [
|
|
46167
|
-
{
|
|
46168
|
-
"description": "The appearance variant of the menu.",
|
|
46169
|
-
"name": "variant",
|
|
46170
|
-
"type": {
|
|
46171
|
-
"text": "FabMenuVariant"
|
|
46172
|
-
},
|
|
46173
|
-
"default": "\"primary\"",
|
|
46174
|
-
"fieldName": "variant",
|
|
46175
|
-
"parsedType": {
|
|
46176
|
-
"text": "'primary' | 'secondary' | 'tertiary'"
|
|
46177
|
-
}
|
|
46178
|
-
}
|
|
46179
|
-
],
|
|
46180
|
-
"mixins": [
|
|
46181
|
-
{
|
|
46182
|
-
"name": "SuppressInitialAnimation",
|
|
46183
|
-
"package": "@m3e/web/core"
|
|
46184
|
-
},
|
|
46185
|
-
{
|
|
46186
|
-
"name": "AttachInternals",
|
|
46187
|
-
"package": "@m3e/web/core"
|
|
46188
|
-
},
|
|
46189
|
-
{
|
|
46190
|
-
"name": "Role",
|
|
46191
|
-
"package": "@m3e/web/core"
|
|
46192
|
-
}
|
|
46193
|
-
],
|
|
46194
|
-
"superclass": {
|
|
46195
|
-
"name": "LitElement",
|
|
46196
|
-
"package": "lit"
|
|
46197
|
-
},
|
|
46198
|
-
"tagName": "m3e-fab-menu",
|
|
46199
|
-
"customElement": true
|
|
46200
|
-
}
|
|
46201
|
-
],
|
|
46202
|
-
"exports": [
|
|
46203
|
-
{
|
|
46204
|
-
"kind": "js",
|
|
46205
|
-
"name": "M3eFabMenuElement",
|
|
46206
|
-
"declaration": {
|
|
46207
|
-
"name": "M3eFabMenuElement",
|
|
46208
|
-
"module": "src/fab-menu/FabMenuElement.ts"
|
|
46209
|
-
}
|
|
46210
|
-
},
|
|
46211
|
-
{
|
|
46212
|
-
"kind": "custom-element-definition",
|
|
46213
|
-
"name": "m3e-fab-menu",
|
|
46214
|
-
"declaration": {
|
|
46215
|
-
"name": "M3eFabMenuElement",
|
|
46216
|
-
"module": "src/fab-menu/FabMenuElement.ts"
|
|
46217
|
-
}
|
|
46218
|
-
}
|
|
46219
|
-
]
|
|
46220
|
-
},
|
|
46221
46864
|
{
|
|
46222
46865
|
"kind": "javascript-module",
|
|
46223
46866
|
"path": "src/fab-menu/FabMenuTriggerElement.ts",
|
|
@@ -54668,16 +55311,17 @@
|
|
|
54668
55311
|
},
|
|
54669
55312
|
{
|
|
54670
55313
|
"kind": "field",
|
|
54671
|
-
"name": "#
|
|
55314
|
+
"name": "#scrollController",
|
|
54672
55315
|
"privacy": "private",
|
|
54673
|
-
"readonly": true
|
|
55316
|
+
"readonly": true,
|
|
55317
|
+
"default": "new ScrollController(this, { target: null, callback: (target) => target instanceof M3eMenuElement ? target.items.filter((x) => x instanceof M3eMenuItemElement).forEach((x) => x.submenu?.hide()) : this.hideAll(), })"
|
|
54674
55318
|
},
|
|
54675
55319
|
{
|
|
54676
55320
|
"kind": "field",
|
|
54677
|
-
"name": "#
|
|
55321
|
+
"name": "#clickOutsideController",
|
|
54678
55322
|
"privacy": "private",
|
|
54679
55323
|
"readonly": true,
|
|
54680
|
-
"default": "new
|
|
55324
|
+
"default": "new ClickOutsideController(this, { target: null, callback: (composedPath) => { // If the menu isn't a submenu and no submenu is being clicked, close the entire menu if (!this.submenu && !composedPath.some((x) => x instanceof M3eMenuElement)) { this.hide(); } }, })"
|
|
54681
55325
|
},
|
|
54682
55326
|
{
|
|
54683
55327
|
"kind": "field",
|
|
@@ -54869,24 +55513,6 @@
|
|
|
54869
55513
|
}
|
|
54870
55514
|
}
|
|
54871
55515
|
},
|
|
54872
|
-
{
|
|
54873
|
-
"kind": "method",
|
|
54874
|
-
"name": "#handleDocumentClick",
|
|
54875
|
-
"privacy": "private",
|
|
54876
|
-
"return": {
|
|
54877
|
-
"type": {
|
|
54878
|
-
"text": "void"
|
|
54879
|
-
}
|
|
54880
|
-
},
|
|
54881
|
-
"parameters": [
|
|
54882
|
-
{
|
|
54883
|
-
"name": "e",
|
|
54884
|
-
"type": {
|
|
54885
|
-
"text": "MouseEvent"
|
|
54886
|
-
}
|
|
54887
|
-
}
|
|
54888
|
-
]
|
|
54889
|
-
},
|
|
54890
55516
|
{
|
|
54891
55517
|
"kind": "method",
|
|
54892
55518
|
"name": "#getAbsolutePosition",
|