@momentum-design/components 0.34.0 → 0.35.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6008,7 +6008,8 @@
6008
6008
  },
6009
6009
  "description": "The arrow visibility of the popover.",
6010
6010
  "default": "false",
6011
- "attribute": "show-arrow"
6011
+ "attribute": "show-arrow",
6012
+ "reflects": true
6012
6013
  },
6013
6014
  {
6014
6015
  "kind": "field",
@@ -11026,6 +11027,1673 @@
11026
11027
  }
11027
11028
  ]
11028
11029
  },
11030
+ {
11031
+ "kind": "javascript-module",
11032
+ "path": "components/tooltip/tooltip.component.js",
11033
+ "declarations": [
11034
+ {
11035
+ "kind": "class",
11036
+ "description": "A tooltip is triggered by mouse hover or by keyboard focus\nand will disappear upon mouse exit or focus change.\n\nNote: Tooltips cannot contain content that can be focused or interacted with.",
11037
+ "name": "Tooltip",
11038
+ "cssProperties": [
11039
+ {
11040
+ "description": "The maximum width of the tooltip.",
11041
+ "name": "--mdc-tooltip-max-width"
11042
+ },
11043
+ {
11044
+ "description": "The padding of the tooltip.",
11045
+ "name": "--mdc-tooltip-padding"
11046
+ },
11047
+ {
11048
+ "description": "The text color of the tooltip.",
11049
+ "name": "--mdc-tooltip-text-color"
11050
+ },
11051
+ {
11052
+ "description": "The text color of the tooltip when the color is contrast.",
11053
+ "name": "--mdc-tooltip-text-color-contrast"
11054
+ },
11055
+ {
11056
+ "description": "radius of the arrow border",
11057
+ "name": "--mdc-popover-arrow-border-radius",
11058
+ "inheritedFrom": {
11059
+ "name": "Popover",
11060
+ "module": "src/components/popover/popover.component.ts"
11061
+ }
11062
+ },
11063
+ {
11064
+ "description": "border of the arrow",
11065
+ "name": "--mdc-popover-arrow-border",
11066
+ "inheritedFrom": {
11067
+ "name": "Popover",
11068
+ "module": "src/components/popover/popover.component.ts"
11069
+ }
11070
+ },
11071
+ {
11072
+ "description": "primary background color of the popover",
11073
+ "name": "--mdc-popover-primary-background-color",
11074
+ "inheritedFrom": {
11075
+ "name": "Popover",
11076
+ "module": "src/components/popover/popover.component.ts"
11077
+ }
11078
+ },
11079
+ {
11080
+ "description": "border color of the popover",
11081
+ "name": "--mdc-popover-border-color",
11082
+ "inheritedFrom": {
11083
+ "name": "Popover",
11084
+ "module": "src/components/popover/popover.component.ts"
11085
+ }
11086
+ },
11087
+ {
11088
+ "description": "inverted background color of the popover",
11089
+ "name": "--mdc-popover-inverted-background-color",
11090
+ "inheritedFrom": {
11091
+ "name": "Popover",
11092
+ "module": "src/components/popover/popover.component.ts"
11093
+ }
11094
+ },
11095
+ {
11096
+ "description": "inverted border color of the popover",
11097
+ "name": "--mdc-popover-inverted-border-color",
11098
+ "inheritedFrom": {
11099
+ "name": "Popover",
11100
+ "module": "src/components/popover/popover.component.ts"
11101
+ }
11102
+ },
11103
+ {
11104
+ "description": "inverted text color of the popover",
11105
+ "name": "--mdc-popover-inverted-text-color",
11106
+ "inheritedFrom": {
11107
+ "name": "Popover",
11108
+ "module": "src/components/popover/popover.component.ts"
11109
+ }
11110
+ },
11111
+ {
11112
+ "description": "elevation of the popover",
11113
+ "name": "--mdc-popover-elevation-3",
11114
+ "inheritedFrom": {
11115
+ "name": "Popover",
11116
+ "module": "src/components/popover/popover.component.ts"
11117
+ }
11118
+ }
11119
+ ],
11120
+ "members": [
11121
+ {
11122
+ "kind": "field",
11123
+ "name": "tooltipType",
11124
+ "type": {
11125
+ "text": "TooltipType"
11126
+ },
11127
+ "description": "The type of tooltip.\n- **description** sets aria-describedby on the trigger component which refers to the tooltip id.\n- **label** sets aria-labelledby on the trigger component which refers to the tooltip id.\n- **none** no aria props set on trigger component referring to the tooltip id.",
11128
+ "default": "'description'",
11129
+ "attribute": "tooltip-type",
11130
+ "reflects": true
11131
+ },
11132
+ {
11133
+ "kind": "field",
11134
+ "name": "defaultSlotNodes",
11135
+ "type": {
11136
+ "text": "Array<Node>"
11137
+ },
11138
+ "privacy": "private"
11139
+ },
11140
+ {
11141
+ "kind": "method",
11142
+ "name": "getTooltipText",
11143
+ "privacy": "private",
11144
+ "return": {
11145
+ "type": {
11146
+ "text": ""
11147
+ }
11148
+ }
11149
+ },
11150
+ {
11151
+ "kind": "method",
11152
+ "name": "setTooltipType",
11153
+ "privacy": "private",
11154
+ "return": {
11155
+ "type": {
11156
+ "text": "void"
11157
+ }
11158
+ },
11159
+ "parameters": [
11160
+ {
11161
+ "name": "type",
11162
+ "type": {
11163
+ "text": "TooltipType"
11164
+ },
11165
+ "description": "The type to set."
11166
+ }
11167
+ ],
11168
+ "description": "Sets the type attribute for the tooltip component.\nIf the provided type is not included in the TOOLTIP_TYPES,\nit defaults to the value specified in DEFAULTS.TOOLTIP_TYPE."
11169
+ },
11170
+ {
11171
+ "kind": "method",
11172
+ "name": "onIdUpdated",
11173
+ "privacy": "private",
11174
+ "return": {
11175
+ "type": {
11176
+ "text": "void"
11177
+ }
11178
+ },
11179
+ "description": "Updates the tooltip id if it is empty."
11180
+ },
11181
+ {
11182
+ "kind": "method",
11183
+ "name": "onPlacementUpdated",
11184
+ "privacy": "private",
11185
+ "return": {
11186
+ "type": {
11187
+ "text": "void"
11188
+ }
11189
+ },
11190
+ "description": "Updates the placement attribute if it is not a valid placement.\nOverriding the default from Popover"
11191
+ },
11192
+ {
11193
+ "kind": "method",
11194
+ "name": "onTooltipTypeUpdated",
11195
+ "privacy": "private",
11196
+ "return": {
11197
+ "type": {
11198
+ "text": "void"
11199
+ }
11200
+ },
11201
+ "parameters": [
11202
+ {
11203
+ "name": "changedProperties",
11204
+ "type": {
11205
+ "text": "PropertyValues"
11206
+ },
11207
+ "description": "The changed properties."
11208
+ }
11209
+ ],
11210
+ "description": "Updates the tooltip type attribute and sets the appropriate aria props on the trigger component."
11211
+ },
11212
+ {
11213
+ "kind": "field",
11214
+ "name": "backdrop",
11215
+ "type": {
11216
+ "text": "boolean"
11217
+ },
11218
+ "description": "Determines whether the popover with backdrop.\nOther than popover and trigger element, the rest of the screen will be covered with a backdrop.",
11219
+ "default": "false",
11220
+ "attribute": "backdrop",
11221
+ "reflects": true,
11222
+ "inheritedFrom": {
11223
+ "name": "Popover",
11224
+ "module": "components/popover/popover.component.js"
11225
+ }
11226
+ },
11227
+ {
11228
+ "kind": "field",
11229
+ "name": "color",
11230
+ "type": {
11231
+ "text": "PopoverColor"
11232
+ },
11233
+ "description": "Color of the popover\n- **tonal**\n- **contrast**",
11234
+ "default": "tonal",
11235
+ "attribute": "color",
11236
+ "reflects": true,
11237
+ "inheritedFrom": {
11238
+ "name": "Popover",
11239
+ "module": "components/popover/popover.component.js"
11240
+ }
11241
+ },
11242
+ {
11243
+ "kind": "field",
11244
+ "name": "delay",
11245
+ "type": {
11246
+ "text": "string"
11247
+ },
11248
+ "description": "The delay of the show/hide popover.",
11249
+ "default": "0,0",
11250
+ "attribute": "delay",
11251
+ "reflects": true,
11252
+ "inheritedFrom": {
11253
+ "name": "Popover",
11254
+ "module": "components/popover/popover.component.js"
11255
+ }
11256
+ },
11257
+ {
11258
+ "kind": "field",
11259
+ "name": "focusTrap",
11260
+ "type": {
11261
+ "text": "boolean"
11262
+ },
11263
+ "description": "Determines whether the focus trap is enabled.\nIf true, focus will be restricted to the content within this component.",
11264
+ "default": "false",
11265
+ "attribute": "focus-trap",
11266
+ "reflects": true,
11267
+ "inheritedFrom": {
11268
+ "name": "Popover",
11269
+ "module": "components/popover/popover.component.js"
11270
+ }
11271
+ },
11272
+ {
11273
+ "kind": "field",
11274
+ "name": "hideOnBlur",
11275
+ "type": {
11276
+ "text": "boolean"
11277
+ },
11278
+ "description": "Hide popover on blur.",
11279
+ "default": "true",
11280
+ "attribute": "hide-on-blur",
11281
+ "reflects": true,
11282
+ "inheritedFrom": {
11283
+ "name": "Popover",
11284
+ "module": "components/popover/popover.component.js"
11285
+ }
11286
+ },
11287
+ {
11288
+ "kind": "field",
11289
+ "name": "hideOnEscape",
11290
+ "type": {
11291
+ "text": "boolean"
11292
+ },
11293
+ "description": "Hide popover on escape key press.",
11294
+ "default": "true",
11295
+ "attribute": "hide-on-escape",
11296
+ "reflects": true,
11297
+ "inheritedFrom": {
11298
+ "name": "Popover",
11299
+ "module": "components/popover/popover.component.js"
11300
+ }
11301
+ },
11302
+ {
11303
+ "kind": "field",
11304
+ "name": "interactive",
11305
+ "type": {
11306
+ "text": "boolean"
11307
+ },
11308
+ "description": "Determines whether the popover is interactive。",
11309
+ "default": "false",
11310
+ "attribute": "interactive",
11311
+ "reflects": true,
11312
+ "inheritedFrom": {
11313
+ "name": "Popover",
11314
+ "module": "components/popover/popover.component.js"
11315
+ }
11316
+ },
11317
+ {
11318
+ "kind": "field",
11319
+ "name": "offset",
11320
+ "type": {
11321
+ "text": "number"
11322
+ },
11323
+ "description": "The offset of the popover.",
11324
+ "default": "4",
11325
+ "attribute": "offset",
11326
+ "reflects": true,
11327
+ "inheritedFrom": {
11328
+ "name": "Popover",
11329
+ "module": "components/popover/popover.component.js"
11330
+ }
11331
+ },
11332
+ {
11333
+ "kind": "field",
11334
+ "name": "placement",
11335
+ "type": {
11336
+ "text": "PopoverPlacement"
11337
+ },
11338
+ "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
11339
+ "default": "bottom",
11340
+ "attribute": "placement",
11341
+ "reflects": true,
11342
+ "inheritedFrom": {
11343
+ "name": "Popover",
11344
+ "module": "components/popover/popover.component.js"
11345
+ }
11346
+ },
11347
+ {
11348
+ "kind": "field",
11349
+ "name": "role",
11350
+ "type": {
11351
+ "text": "HTMLElement['role']"
11352
+ },
11353
+ "description": "Role of the popover",
11354
+ "default": "'tooltip'",
11355
+ "attribute": "role",
11356
+ "reflects": true,
11357
+ "inheritedFrom": {
11358
+ "name": "Popover",
11359
+ "module": "components/popover/popover.component.js"
11360
+ }
11361
+ },
11362
+ {
11363
+ "kind": "field",
11364
+ "name": "showArrow",
11365
+ "type": {
11366
+ "text": "boolean"
11367
+ },
11368
+ "description": "The arrow visibility of the popover.",
11369
+ "default": "true",
11370
+ "attribute": "show-arrow",
11371
+ "reflects": true,
11372
+ "inheritedFrom": {
11373
+ "name": "Popover",
11374
+ "module": "components/popover/popover.component.js"
11375
+ }
11376
+ },
11377
+ {
11378
+ "kind": "field",
11379
+ "name": "trigger",
11380
+ "type": {
11381
+ "text": "PopoverTrigger"
11382
+ },
11383
+ "description": "Determines the events that cause the Popover to show.\nMultiple event names should be separated by spaces.\nFor example to allow both click and hover, use 'click mouseenter' as the trigger.\n- **click**\n- **mouseenter**\n- **focusin**\n- **manual**",
11384
+ "default": "'mouseenter focusin'",
11385
+ "attribute": "trigger",
11386
+ "reflects": true,
11387
+ "inheritedFrom": {
11388
+ "name": "Popover",
11389
+ "module": "components/popover/popover.component.js"
11390
+ }
11391
+ },
11392
+ {
11393
+ "kind": "field",
11394
+ "name": "visible",
11395
+ "type": {
11396
+ "text": "boolean"
11397
+ },
11398
+ "description": "The visibility of the popover.",
11399
+ "default": "false",
11400
+ "attribute": "visible",
11401
+ "reflects": true,
11402
+ "inheritedFrom": {
11403
+ "name": "Popover",
11404
+ "module": "components/popover/popover.component.js"
11405
+ }
11406
+ },
11407
+ {
11408
+ "kind": "field",
11409
+ "name": "enabledFocusTrap",
11410
+ "type": {
11411
+ "text": "boolean"
11412
+ },
11413
+ "description": "Determines whether the focus trap is enabled.\nIf true, focus will be restricted to the content within this component.",
11414
+ "default": "false",
11415
+ "attribute": "enabledFocusTrap",
11416
+ "inheritedFrom": {
11417
+ "name": "Popover",
11418
+ "module": "components/popover/popover.component.js"
11419
+ }
11420
+ },
11421
+ {
11422
+ "kind": "field",
11423
+ "name": "enabledPreventScroll",
11424
+ "type": {
11425
+ "text": "boolean"
11426
+ },
11427
+ "description": "Prevent outside scrolling when popover show.",
11428
+ "default": "false",
11429
+ "attribute": "enabledPreventScroll",
11430
+ "inheritedFrom": {
11431
+ "name": "Popover",
11432
+ "module": "components/popover/popover.component.js"
11433
+ }
11434
+ },
11435
+ {
11436
+ "kind": "field",
11437
+ "name": "flip",
11438
+ "type": {
11439
+ "text": "boolean"
11440
+ },
11441
+ "description": "Changes the placement of popover to keep it in view when scrolling.",
11442
+ "default": "true",
11443
+ "attribute": "flip",
11444
+ "reflects": true,
11445
+ "inheritedFrom": {
11446
+ "name": "Popover",
11447
+ "module": "components/popover/popover.component.js"
11448
+ }
11449
+ },
11450
+ {
11451
+ "kind": "field",
11452
+ "name": "preventScroll",
11453
+ "type": {
11454
+ "text": "boolean"
11455
+ },
11456
+ "description": "Prevent outside scrolling when popover show.",
11457
+ "default": "false",
11458
+ "attribute": "prevent-scroll",
11459
+ "reflects": true,
11460
+ "inheritedFrom": {
11461
+ "name": "Popover",
11462
+ "module": "components/popover/popover.component.js"
11463
+ }
11464
+ },
11465
+ {
11466
+ "kind": "field",
11467
+ "name": "closeButton",
11468
+ "type": {
11469
+ "text": "boolean"
11470
+ },
11471
+ "description": "The close button visibility of the popover.",
11472
+ "default": "false",
11473
+ "attribute": "close-button",
11474
+ "reflects": true,
11475
+ "inheritedFrom": {
11476
+ "name": "Popover",
11477
+ "module": "components/popover/popover.component.js"
11478
+ }
11479
+ },
11480
+ {
11481
+ "kind": "field",
11482
+ "name": "hideOnOutsideClick",
11483
+ "type": {
11484
+ "text": "boolean"
11485
+ },
11486
+ "description": "Hide on outside click of the popover.",
11487
+ "default": "false",
11488
+ "attribute": "hide-on-outside-click",
11489
+ "reflects": true,
11490
+ "inheritedFrom": {
11491
+ "name": "Popover",
11492
+ "module": "components/popover/popover.component.js"
11493
+ }
11494
+ },
11495
+ {
11496
+ "kind": "field",
11497
+ "name": "focusBackToTrigger",
11498
+ "type": {
11499
+ "text": "boolean"
11500
+ },
11501
+ "description": "The focus back to trigger after the popover hide.",
11502
+ "default": "false",
11503
+ "attribute": "focus-back-to-trigger",
11504
+ "reflects": true,
11505
+ "inheritedFrom": {
11506
+ "name": "Popover",
11507
+ "module": "components/popover/popover.component.js"
11508
+ }
11509
+ },
11510
+ {
11511
+ "kind": "field",
11512
+ "name": "size",
11513
+ "type": {
11514
+ "text": "boolean"
11515
+ },
11516
+ "description": "Changes the size of popover to keep it in view when scrolling.",
11517
+ "default": "false",
11518
+ "attribute": "size",
11519
+ "reflects": true,
11520
+ "inheritedFrom": {
11521
+ "name": "Popover",
11522
+ "module": "components/popover/popover.component.js"
11523
+ }
11524
+ },
11525
+ {
11526
+ "kind": "field",
11527
+ "name": "disableAriaExpanded",
11528
+ "type": {
11529
+ "text": "boolean"
11530
+ },
11531
+ "description": "Disable aria-expanded attribute on trigger element.",
11532
+ "default": "true",
11533
+ "attribute": "disable-aria-expanded",
11534
+ "reflects": true,
11535
+ "inheritedFrom": {
11536
+ "name": "Popover",
11537
+ "module": "components/popover/popover.component.js"
11538
+ }
11539
+ },
11540
+ {
11541
+ "kind": "field",
11542
+ "name": "shouldWrapFocus",
11543
+ "type": {
11544
+ "text": "() => boolean"
11545
+ },
11546
+ "inheritedFrom": {
11547
+ "name": "Popover",
11548
+ "module": "components/popover/popover.component.js"
11549
+ }
11550
+ },
11551
+ {
11552
+ "kind": "method",
11553
+ "name": "deactivateFocusTrap",
11554
+ "description": "Deactivate the focus trap.",
11555
+ "inheritedFrom": {
11556
+ "name": "Popover",
11557
+ "module": "components/popover/popover.component.js"
11558
+ }
11559
+ },
11560
+ {
11561
+ "kind": "method",
11562
+ "name": "hasNoClientRects",
11563
+ "privacy": "private",
11564
+ "parameters": [
11565
+ {
11566
+ "name": "element",
11567
+ "type": {
11568
+ "text": "HTMLElement"
11569
+ },
11570
+ "description": "The element to check."
11571
+ }
11572
+ ],
11573
+ "description": "Checks if the element has no client rectangles (not visible in the viewport).",
11574
+ "return": {
11575
+ "type": {
11576
+ "text": ""
11577
+ }
11578
+ },
11579
+ "inheritedFrom": {
11580
+ "name": "Popover",
11581
+ "module": "components/popover/popover.component.js"
11582
+ }
11583
+ },
11584
+ {
11585
+ "kind": "method",
11586
+ "name": "hasZeroDimensions",
11587
+ "privacy": "private",
11588
+ "parameters": [
11589
+ {
11590
+ "name": "element",
11591
+ "type": {
11592
+ "text": "HTMLElement"
11593
+ },
11594
+ "description": "The element to check."
11595
+ }
11596
+ ],
11597
+ "description": "Checks if the element has zero dimensions (width and height are both 0).",
11598
+ "return": {
11599
+ "type": {
11600
+ "text": ""
11601
+ }
11602
+ },
11603
+ "inheritedFrom": {
11604
+ "name": "Popover",
11605
+ "module": "components/popover/popover.component.js"
11606
+ }
11607
+ },
11608
+ {
11609
+ "kind": "method",
11610
+ "name": "isNotVisible",
11611
+ "privacy": "private",
11612
+ "parameters": [
11613
+ {
11614
+ "name": "element",
11615
+ "type": {
11616
+ "text": "HTMLElement"
11617
+ },
11618
+ "description": "The element to check."
11619
+ }
11620
+ ],
11621
+ "description": "Determines if the element is not visible in the DOM.",
11622
+ "return": {
11623
+ "type": {
11624
+ "text": ""
11625
+ }
11626
+ },
11627
+ "inheritedFrom": {
11628
+ "name": "Popover",
11629
+ "module": "components/popover/popover.component.js"
11630
+ }
11631
+ },
11632
+ {
11633
+ "kind": "method",
11634
+ "name": "hasHiddenStyle",
11635
+ "privacy": "private",
11636
+ "parameters": [
11637
+ {
11638
+ "name": "element",
11639
+ "type": {
11640
+ "text": "HTMLElement"
11641
+ },
11642
+ "description": "The element to check."
11643
+ }
11644
+ ],
11645
+ "description": "Checks if the element has inline styles that make it hidden.",
11646
+ "return": {
11647
+ "type": {
11648
+ "text": ""
11649
+ }
11650
+ },
11651
+ "inheritedFrom": {
11652
+ "name": "Popover",
11653
+ "module": "components/popover/popover.component.js"
11654
+ }
11655
+ },
11656
+ {
11657
+ "kind": "method",
11658
+ "name": "hasComputedHidden",
11659
+ "privacy": "private",
11660
+ "parameters": [
11661
+ {
11662
+ "name": "element",
11663
+ "type": {
11664
+ "text": "HTMLElement"
11665
+ },
11666
+ "description": "The element to check."
11667
+ }
11668
+ ],
11669
+ "description": "Checks if the element is hidden by a computed style.",
11670
+ "return": {
11671
+ "type": {
11672
+ "text": ""
11673
+ }
11674
+ },
11675
+ "inheritedFrom": {
11676
+ "name": "Popover",
11677
+ "module": "components/popover/popover.component.js"
11678
+ }
11679
+ },
11680
+ {
11681
+ "kind": "method",
11682
+ "name": "isHidden",
11683
+ "privacy": "private",
11684
+ "parameters": [
11685
+ {
11686
+ "name": "element",
11687
+ "type": {
11688
+ "text": "HTMLElement"
11689
+ },
11690
+ "description": "The element to check."
11691
+ }
11692
+ ],
11693
+ "description": "Checks if the element is hidden from the user.",
11694
+ "return": {
11695
+ "type": {
11696
+ "text": ""
11697
+ }
11698
+ },
11699
+ "inheritedFrom": {
11700
+ "name": "Popover",
11701
+ "module": "components/popover/popover.component.js"
11702
+ }
11703
+ },
11704
+ {
11705
+ "kind": "method",
11706
+ "name": "isNotTabbable",
11707
+ "privacy": "private",
11708
+ "parameters": [
11709
+ {
11710
+ "name": "element",
11711
+ "type": {
11712
+ "text": "HTMLElement"
11713
+ },
11714
+ "description": "The element to check."
11715
+ }
11716
+ ],
11717
+ "description": "Checks if the element is not tabbable.",
11718
+ "return": {
11719
+ "type": {
11720
+ "text": ""
11721
+ }
11722
+ },
11723
+ "inheritedFrom": {
11724
+ "name": "Popover",
11725
+ "module": "components/popover/popover.component.js"
11726
+ }
11727
+ },
11728
+ {
11729
+ "kind": "method",
11730
+ "name": "isInteractiveElement",
11731
+ "privacy": "private",
11732
+ "return": {
11733
+ "type": {
11734
+ "text": ""
11735
+ }
11736
+ },
11737
+ "parameters": [
11738
+ {
11739
+ "name": "element",
11740
+ "type": {
11741
+ "text": "HTMLElement"
11742
+ },
11743
+ "description": "The element to check."
11744
+ }
11745
+ ],
11746
+ "description": "Checks if the element is interactive.",
11747
+ "inheritedFrom": {
11748
+ "name": "Popover",
11749
+ "module": "components/popover/popover.component.js"
11750
+ }
11751
+ },
11752
+ {
11753
+ "kind": "method",
11754
+ "name": "isFocusable",
11755
+ "privacy": "private",
11756
+ "parameters": [
11757
+ {
11758
+ "name": "element",
11759
+ "type": {
11760
+ "text": "HTMLElement"
11761
+ },
11762
+ "description": "The element to check."
11763
+ }
11764
+ ],
11765
+ "description": "Checks if the element is focusable.",
11766
+ "return": {
11767
+ "type": {
11768
+ "text": ""
11769
+ }
11770
+ },
11771
+ "inheritedFrom": {
11772
+ "name": "Popover",
11773
+ "module": "components/popover/popover.component.js"
11774
+ }
11775
+ },
11776
+ {
11777
+ "kind": "method",
11778
+ "name": "findFocusable",
11779
+ "privacy": "private",
11780
+ "return": {
11781
+ "type": {
11782
+ "text": ""
11783
+ }
11784
+ },
11785
+ "parameters": [
11786
+ {
11787
+ "name": "root",
11788
+ "type": {
11789
+ "text": "ShadowRoot | HTMLElement"
11790
+ },
11791
+ "description": "The root element to search for focusable elements."
11792
+ },
11793
+ {
11794
+ "name": "matches",
11795
+ "default": "new Set()",
11796
+ "type": {
11797
+ "text": "Set<HTMLElement>"
11798
+ },
11799
+ "description": "The set of focusable elements."
11800
+ }
11801
+ ],
11802
+ "description": "Recursively finds all focusable elements within the given root and its descendants.",
11803
+ "inheritedFrom": {
11804
+ "name": "Popover",
11805
+ "module": "components/popover/popover.component.js"
11806
+ }
11807
+ },
11808
+ {
11809
+ "kind": "method",
11810
+ "name": "setFocusableElements",
11811
+ "privacy": "public",
11812
+ "description": "Updates the list of focusable elements within the component's shadow root.",
11813
+ "inheritedFrom": {
11814
+ "name": "Popover",
11815
+ "module": "components/popover/popover.component.js"
11816
+ }
11817
+ },
11818
+ {
11819
+ "kind": "method",
11820
+ "name": "setInitialFocus",
11821
+ "privacy": "public",
11822
+ "parameters": [
11823
+ {
11824
+ "name": "prefferableElement",
11825
+ "default": "0",
11826
+ "type": {
11827
+ "text": "number"
11828
+ },
11829
+ "description": "The index of the prefferable element to focus."
11830
+ }
11831
+ ],
11832
+ "description": "Sets the initial focus within the container.",
11833
+ "inheritedFrom": {
11834
+ "name": "Popover",
11835
+ "module": "components/popover/popover.component.js"
11836
+ }
11837
+ },
11838
+ {
11839
+ "kind": "method",
11840
+ "name": "calculateNextIndex",
11841
+ "privacy": "private",
11842
+ "parameters": [
11843
+ {
11844
+ "name": "currentIndex",
11845
+ "type": {
11846
+ "text": "number"
11847
+ },
11848
+ "description": "The current index."
11849
+ },
11850
+ {
11851
+ "name": "step",
11852
+ "type": {
11853
+ "text": "number"
11854
+ },
11855
+ "description": "The step to calculate the next index."
11856
+ }
11857
+ ],
11858
+ "description": "Calculates the next index for the focus trap.",
11859
+ "return": {
11860
+ "type": {
11861
+ "text": ""
11862
+ }
11863
+ },
11864
+ "inheritedFrom": {
11865
+ "name": "Popover",
11866
+ "module": "components/popover/popover.component.js"
11867
+ }
11868
+ },
11869
+ {
11870
+ "kind": "method",
11871
+ "name": "getDeepActiveElement",
11872
+ "privacy": "private",
11873
+ "description": "Returns the deepest active element in the shadow DOM.",
11874
+ "return": {
11875
+ "type": {
11876
+ "text": ""
11877
+ }
11878
+ },
11879
+ "inheritedFrom": {
11880
+ "name": "Popover",
11881
+ "module": "components/popover/popover.component.js"
11882
+ }
11883
+ },
11884
+ {
11885
+ "kind": "method",
11886
+ "name": "findElement",
11887
+ "privacy": "private",
11888
+ "parameters": [
11889
+ {
11890
+ "name": "activeElement",
11891
+ "type": {
11892
+ "text": "HTMLElement"
11893
+ },
11894
+ "description": "The active element."
11895
+ }
11896
+ ],
11897
+ "description": "Finds the index of the active element within the focusable elements.",
11898
+ "return": {
11899
+ "type": {
11900
+ "text": ""
11901
+ }
11902
+ },
11903
+ "inheritedFrom": {
11904
+ "name": "Popover",
11905
+ "module": "components/popover/popover.component.js"
11906
+ }
11907
+ },
11908
+ {
11909
+ "kind": "method",
11910
+ "name": "isEqualFocusNode",
11911
+ "privacy": "private",
11912
+ "parameters": [
11913
+ {
11914
+ "name": "activeElement",
11915
+ "type": {
11916
+ "text": "HTMLElement"
11917
+ },
11918
+ "description": "The active element."
11919
+ },
11920
+ {
11921
+ "name": "element",
11922
+ "type": {
11923
+ "text": "HTMLElement"
11924
+ },
11925
+ "description": "The element to compare."
11926
+ }
11927
+ ],
11928
+ "description": "Checks if the active element is equal to the given element.",
11929
+ "return": {
11930
+ "type": {
11931
+ "text": ""
11932
+ }
11933
+ },
11934
+ "inheritedFrom": {
11935
+ "name": "Popover",
11936
+ "module": "components/popover/popover.component.js"
11937
+ }
11938
+ },
11939
+ {
11940
+ "kind": "method",
11941
+ "name": "trapFocus",
11942
+ "privacy": "private",
11943
+ "parameters": [
11944
+ {
11945
+ "name": "direction",
11946
+ "type": {
11947
+ "text": "boolean"
11948
+ },
11949
+ "description": "The direction of the focus trap.\nIf true, the focus will be trapped in the previous element."
11950
+ }
11951
+ ],
11952
+ "description": "Traps focus within the container.",
11953
+ "inheritedFrom": {
11954
+ "name": "Popover",
11955
+ "module": "components/popover/popover.component.js"
11956
+ }
11957
+ },
11958
+ {
11959
+ "kind": "method",
11960
+ "name": "handleKeydown",
11961
+ "privacy": "private",
11962
+ "parameters": [
11963
+ {
11964
+ "name": "event",
11965
+ "type": {
11966
+ "text": "KeyboardEvent"
11967
+ },
11968
+ "description": "The keyboard event."
11969
+ }
11970
+ ],
11971
+ "description": "Traps focus within the container.",
11972
+ "inheritedFrom": {
11973
+ "name": "Popover",
11974
+ "module": "components/popover/popover.component.js"
11975
+ }
11976
+ },
11977
+ {
11978
+ "kind": "field",
11979
+ "name": "id",
11980
+ "type": {
11981
+ "text": "string"
11982
+ },
11983
+ "default": "''",
11984
+ "description": "The unique ID of the popover.",
11985
+ "attribute": "id",
11986
+ "inheritedFrom": {
11987
+ "name": "Popover",
11988
+ "module": "components/popover/popover.component.js"
11989
+ }
11990
+ },
11991
+ {
11992
+ "kind": "field",
11993
+ "name": "triggerID",
11994
+ "type": {
11995
+ "text": "string"
11996
+ },
11997
+ "default": "''",
11998
+ "description": "The ID of the element that triggers the popover.\nThis attribute is required for the popover to work.",
11999
+ "attribute": "triggerID",
12000
+ "inheritedFrom": {
12001
+ "name": "Popover",
12002
+ "module": "components/popover/popover.component.js"
12003
+ }
12004
+ },
12005
+ {
12006
+ "kind": "field",
12007
+ "name": "zIndex",
12008
+ "type": {
12009
+ "text": "number"
12010
+ },
12011
+ "description": "The z-index of the popover.",
12012
+ "default": "1000",
12013
+ "attribute": "z-index",
12014
+ "reflects": true,
12015
+ "inheritedFrom": {
12016
+ "name": "Popover",
12017
+ "module": "components/popover/popover.component.js"
12018
+ }
12019
+ },
12020
+ {
12021
+ "kind": "field",
12022
+ "name": "appendTo",
12023
+ "type": {
12024
+ "text": "string"
12025
+ },
12026
+ "default": "''",
12027
+ "description": "Element ID that the popover append to.",
12028
+ "attribute": "append-to",
12029
+ "reflects": true,
12030
+ "inheritedFrom": {
12031
+ "name": "Popover",
12032
+ "module": "components/popover/popover.component.js"
12033
+ }
12034
+ },
12035
+ {
12036
+ "kind": "field",
12037
+ "name": "closeButtonAriaLabel",
12038
+ "type": {
12039
+ "text": "string | null"
12040
+ },
12041
+ "default": "null",
12042
+ "description": "aria-label attribute to be set for close button accessibility.",
12043
+ "attribute": "close-button-aria-label",
12044
+ "inheritedFrom": {
12045
+ "name": "Popover",
12046
+ "module": "components/popover/popover.component.js"
12047
+ }
12048
+ },
12049
+ {
12050
+ "kind": "field",
12051
+ "name": "ariaLabelledby",
12052
+ "type": {
12053
+ "text": "string | null"
12054
+ },
12055
+ "default": "null",
12056
+ "description": "aria-labelledby for an interactive popover only, defaults to the trigger component id.\nUsed in nested cases where the triggerComponent isn't the actual button.",
12057
+ "attribute": "aria-labelledby",
12058
+ "reflects": true,
12059
+ "inheritedFrom": {
12060
+ "name": "Popover",
12061
+ "module": "components/popover/popover.component.js"
12062
+ }
12063
+ },
12064
+ {
12065
+ "kind": "field",
12066
+ "name": "ariaDescribedby",
12067
+ "type": {
12068
+ "text": "string | null"
12069
+ },
12070
+ "default": "null",
12071
+ "description": "aria-describedby of the popover.",
12072
+ "attribute": "aria-describedby",
12073
+ "reflects": true,
12074
+ "inheritedFrom": {
12075
+ "name": "Popover",
12076
+ "module": "components/popover/popover.component.js"
12077
+ }
12078
+ },
12079
+ {
12080
+ "kind": "field",
12081
+ "name": "arrowElement",
12082
+ "type": {
12083
+ "text": "HTMLElement | null"
12084
+ },
12085
+ "privacy": "public",
12086
+ "default": "null",
12087
+ "inheritedFrom": {
12088
+ "name": "Popover",
12089
+ "module": "components/popover/popover.component.js"
12090
+ }
12091
+ },
12092
+ {
12093
+ "kind": "field",
12094
+ "name": "triggerElement",
12095
+ "type": {
12096
+ "text": "HTMLElement | null"
12097
+ },
12098
+ "privacy": "public",
12099
+ "default": "null",
12100
+ "inheritedFrom": {
12101
+ "name": "Popover",
12102
+ "module": "components/popover/popover.component.js"
12103
+ }
12104
+ },
12105
+ {
12106
+ "kind": "method",
12107
+ "name": "setupTriggerListener",
12108
+ "privacy": "private",
12109
+ "description": "Sets up the trigger event listeners based on the trigger type.",
12110
+ "inheritedFrom": {
12111
+ "name": "Popover",
12112
+ "module": "components/popover/popover.component.js"
12113
+ }
12114
+ },
12115
+ {
12116
+ "kind": "method",
12117
+ "name": "removeEventListeners",
12118
+ "privacy": "private",
12119
+ "description": "Removes the trigger event listeners.",
12120
+ "inheritedFrom": {
12121
+ "name": "Popover",
12122
+ "module": "components/popover/popover.component.js"
12123
+ }
12124
+ },
12125
+ {
12126
+ "kind": "field",
12127
+ "name": "onOutsidePopoverClick",
12128
+ "privacy": "private",
12129
+ "description": "Handles the outside click event to close the popover.",
12130
+ "parameters": [
12131
+ {
12132
+ "description": "The mouse event.",
12133
+ "name": "event"
12134
+ }
12135
+ ],
12136
+ "inheritedFrom": {
12137
+ "name": "Popover",
12138
+ "module": "components/popover/popover.component.js"
12139
+ }
12140
+ },
12141
+ {
12142
+ "kind": "field",
12143
+ "name": "onEscapeKeydown",
12144
+ "privacy": "private",
12145
+ "description": "Handles the escape keydown event to close the popover.",
12146
+ "parameters": [
12147
+ {
12148
+ "description": "The keyboard event.",
12149
+ "name": "event"
12150
+ }
12151
+ ],
12152
+ "inheritedFrom": {
12153
+ "name": "Popover",
12154
+ "module": "components/popover/popover.component.js"
12155
+ }
12156
+ },
12157
+ {
12158
+ "kind": "field",
12159
+ "name": "onPopoverFocusOut",
12160
+ "privacy": "private",
12161
+ "description": "Handles the popover focus out event.",
12162
+ "parameters": [
12163
+ {
12164
+ "description": "The focus event.",
12165
+ "name": "event"
12166
+ }
12167
+ ],
12168
+ "inheritedFrom": {
12169
+ "name": "Popover",
12170
+ "module": "components/popover/popover.component.js"
12171
+ }
12172
+ },
12173
+ {
12174
+ "kind": "method",
12175
+ "name": "isOpenUpdated",
12176
+ "privacy": "private",
12177
+ "parameters": [
12178
+ {
12179
+ "name": "oldValue",
12180
+ "type": {
12181
+ "text": "boolean"
12182
+ },
12183
+ "description": "The old value of the visible property."
12184
+ },
12185
+ {
12186
+ "name": "newValue",
12187
+ "type": {
12188
+ "text": "boolean"
12189
+ },
12190
+ "description": "The new value of the visible property."
12191
+ }
12192
+ ],
12193
+ "description": "Handles the popover visibility change and position the popover.\nHandles the exit event to close the popover.",
12194
+ "inheritedFrom": {
12195
+ "name": "Popover",
12196
+ "module": "components/popover/popover.component.js"
12197
+ }
12198
+ },
12199
+ {
12200
+ "kind": "field",
12201
+ "name": "startCloseDelay",
12202
+ "privacy": "private",
12203
+ "description": "Starts the close delay timer.\nIf the popover is not interactive, it will close the popover after the delay.",
12204
+ "inheritedFrom": {
12205
+ "name": "Popover",
12206
+ "module": "components/popover/popover.component.js"
12207
+ }
12208
+ },
12209
+ {
12210
+ "kind": "field",
12211
+ "name": "cancelCloseDelay",
12212
+ "privacy": "private",
12213
+ "description": "Cancels the close delay timer.",
12214
+ "inheritedFrom": {
12215
+ "name": "Popover",
12216
+ "module": "components/popover/popover.component.js"
12217
+ }
12218
+ },
12219
+ {
12220
+ "kind": "field",
12221
+ "name": "showPopover",
12222
+ "privacy": "public",
12223
+ "description": "Shows the popover.",
12224
+ "inheritedFrom": {
12225
+ "name": "Popover",
12226
+ "module": "components/popover/popover.component.js"
12227
+ }
12228
+ },
12229
+ {
12230
+ "kind": "field",
12231
+ "name": "hidePopover",
12232
+ "privacy": "public",
12233
+ "description": "Hides the popover.",
12234
+ "inheritedFrom": {
12235
+ "name": "Popover",
12236
+ "module": "components/popover/popover.component.js"
12237
+ }
12238
+ },
12239
+ {
12240
+ "kind": "field",
12241
+ "name": "togglePopoverVisible",
12242
+ "privacy": "public",
12243
+ "description": "Toggles the popover visibility.",
12244
+ "inheritedFrom": {
12245
+ "name": "Popover",
12246
+ "module": "components/popover/popover.component.js"
12247
+ }
12248
+ },
12249
+ {
12250
+ "kind": "method",
12251
+ "name": "handleCreatePopoverFirstUpdate",
12252
+ "privacy": "private",
12253
+ "description": "Sets the focusable elements inside the popover.",
12254
+ "inheritedFrom": {
12255
+ "name": "Popover",
12256
+ "module": "components/popover/popover.component.js"
12257
+ }
12258
+ },
12259
+ {
12260
+ "kind": "method",
12261
+ "name": "positionPopover",
12262
+ "privacy": "private",
12263
+ "description": "Positions the popover based on the trigger element.\nIt also handles the flip, size and arrow placement.\nIt uses the floating-ui/dom library to calculate the position.",
12264
+ "inheritedFrom": {
12265
+ "name": "Popover",
12266
+ "module": "components/popover/popover.component.js"
12267
+ }
12268
+ },
12269
+ {
12270
+ "kind": "field",
12271
+ "name": "utils",
12272
+ "default": "new PopoverUtils(this)",
12273
+ "inheritedFrom": {
12274
+ "name": "Popover",
12275
+ "module": "components/popover/popover.component.js"
12276
+ }
12277
+ }
12278
+ ],
12279
+ "attributes": [
12280
+ {
12281
+ "name": "tooltip-type",
12282
+ "type": {
12283
+ "text": "TooltipType"
12284
+ },
12285
+ "description": "The type of tooltip.\n- **description** sets aria-describedby on the trigger component which refers to the tooltip id.\n- **label** sets aria-labelledby on the trigger component which refers to the tooltip id.\n- **none** no aria props set on trigger component referring to the tooltip id.",
12286
+ "default": "'description'",
12287
+ "fieldName": "tooltipType"
12288
+ },
12289
+ {
12290
+ "name": "enabledFocusTrap",
12291
+ "type": {
12292
+ "text": "boolean"
12293
+ },
12294
+ "description": "Determines whether the focus trap is enabled.\nIf true, focus will be restricted to the content within this component.",
12295
+ "default": "false",
12296
+ "fieldName": "enabledFocusTrap",
12297
+ "inheritedFrom": {
12298
+ "name": "Popover",
12299
+ "module": "src/components/popover/popover.component.ts"
12300
+ }
12301
+ },
12302
+ {
12303
+ "name": "enabledPreventScroll",
12304
+ "type": {
12305
+ "text": "boolean"
12306
+ },
12307
+ "description": "Prevent outside scrolling when popover show.",
12308
+ "default": "false",
12309
+ "fieldName": "enabledPreventScroll",
12310
+ "inheritedFrom": {
12311
+ "name": "Popover",
12312
+ "module": "src/components/popover/popover.component.ts"
12313
+ }
12314
+ },
12315
+ {
12316
+ "name": "id",
12317
+ "type": {
12318
+ "text": "string"
12319
+ },
12320
+ "default": "''",
12321
+ "description": "The unique ID of the popover.",
12322
+ "fieldName": "id",
12323
+ "inheritedFrom": {
12324
+ "name": "Popover",
12325
+ "module": "src/components/popover/popover.component.ts"
12326
+ }
12327
+ },
12328
+ {
12329
+ "name": "triggerID",
12330
+ "type": {
12331
+ "text": "string"
12332
+ },
12333
+ "default": "''",
12334
+ "description": "The ID of the element that triggers the popover.\nThis attribute is required for the popover to work.",
12335
+ "fieldName": "triggerID",
12336
+ "inheritedFrom": {
12337
+ "name": "Popover",
12338
+ "module": "src/components/popover/popover.component.ts"
12339
+ }
12340
+ },
12341
+ {
12342
+ "name": "trigger",
12343
+ "type": {
12344
+ "text": "PopoverTrigger"
12345
+ },
12346
+ "description": "Determines the events that cause the Popover to show.\nMultiple event names should be separated by spaces.\nFor example to allow both click and hover, use 'click mouseenter' as the trigger.\n- **click**\n- **mouseenter**\n- **focusin**\n- **manual**",
12347
+ "default": "click",
12348
+ "fieldName": "trigger",
12349
+ "inheritedFrom": {
12350
+ "name": "Popover",
12351
+ "module": "src/components/popover/popover.component.ts"
12352
+ }
12353
+ },
12354
+ {
12355
+ "name": "placement",
12356
+ "type": {
12357
+ "text": "PopoverPlacement"
12358
+ },
12359
+ "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
12360
+ "default": "bottom",
12361
+ "fieldName": "placement",
12362
+ "inheritedFrom": {
12363
+ "name": "Popover",
12364
+ "module": "src/components/popover/popover.component.ts"
12365
+ }
12366
+ },
12367
+ {
12368
+ "name": "color",
12369
+ "type": {
12370
+ "text": "PopoverColor"
12371
+ },
12372
+ "description": "Color of the popover\n- **tonal**\n- **contrast**",
12373
+ "default": "tonal",
12374
+ "fieldName": "color",
12375
+ "inheritedFrom": {
12376
+ "name": "Popover",
12377
+ "module": "src/components/popover/popover.component.ts"
12378
+ }
12379
+ },
12380
+ {
12381
+ "name": "visible",
12382
+ "type": {
12383
+ "text": "boolean"
12384
+ },
12385
+ "description": "The visibility of the popover.",
12386
+ "default": "false",
12387
+ "fieldName": "visible",
12388
+ "inheritedFrom": {
12389
+ "name": "Popover",
12390
+ "module": "src/components/popover/popover.component.ts"
12391
+ }
12392
+ },
12393
+ {
12394
+ "name": "offset",
12395
+ "type": {
12396
+ "text": "number"
12397
+ },
12398
+ "description": "The offset of the popover.",
12399
+ "default": "4",
12400
+ "fieldName": "offset",
12401
+ "inheritedFrom": {
12402
+ "name": "Popover",
12403
+ "module": "src/components/popover/popover.component.ts"
12404
+ }
12405
+ },
12406
+ {
12407
+ "name": "focus-trap",
12408
+ "type": {
12409
+ "text": "boolean"
12410
+ },
12411
+ "description": "Determines whether the focus trap is enabled.\nIf true, focus will be restricted to the content within this component.",
12412
+ "default": "false",
12413
+ "fieldName": "focusTrap",
12414
+ "inheritedFrom": {
12415
+ "name": "Popover",
12416
+ "module": "src/components/popover/popover.component.ts"
12417
+ }
12418
+ },
12419
+ {
12420
+ "name": "prevent-scroll",
12421
+ "type": {
12422
+ "text": "boolean"
12423
+ },
12424
+ "description": "Prevent outside scrolling when popover show.",
12425
+ "default": "false",
12426
+ "fieldName": "preventScroll",
12427
+ "inheritedFrom": {
12428
+ "name": "Popover",
12429
+ "module": "src/components/popover/popover.component.ts"
12430
+ }
12431
+ },
12432
+ {
12433
+ "name": "show-arrow",
12434
+ "type": {
12435
+ "text": "boolean"
12436
+ },
12437
+ "description": "The arrow visibility of the popover.",
12438
+ "default": "false",
12439
+ "fieldName": "showArrow",
12440
+ "inheritedFrom": {
12441
+ "name": "Popover",
12442
+ "module": "src/components/popover/popover.component.ts"
12443
+ }
12444
+ },
12445
+ {
12446
+ "name": "close-button",
12447
+ "type": {
12448
+ "text": "boolean"
12449
+ },
12450
+ "description": "The close button visibility of the popover.",
12451
+ "default": "false",
12452
+ "fieldName": "closeButton",
12453
+ "inheritedFrom": {
12454
+ "name": "Popover",
12455
+ "module": "src/components/popover/popover.component.ts"
12456
+ }
12457
+ },
12458
+ {
12459
+ "name": "interactive",
12460
+ "type": {
12461
+ "text": "boolean"
12462
+ },
12463
+ "description": "Determines whether the popover is interactive。",
12464
+ "default": "false",
12465
+ "fieldName": "interactive",
12466
+ "inheritedFrom": {
12467
+ "name": "Popover",
12468
+ "module": "src/components/popover/popover.component.ts"
12469
+ }
12470
+ },
12471
+ {
12472
+ "name": "delay",
12473
+ "type": {
12474
+ "text": "string"
12475
+ },
12476
+ "description": "The delay of the show/hide popover.",
12477
+ "default": "0,0",
12478
+ "fieldName": "delay",
12479
+ "inheritedFrom": {
12480
+ "name": "Popover",
12481
+ "module": "src/components/popover/popover.component.ts"
12482
+ }
12483
+ },
12484
+ {
12485
+ "name": "hide-on-escape",
12486
+ "type": {
12487
+ "text": "boolean"
12488
+ },
12489
+ "description": "Hide popover on escape key press.",
12490
+ "default": "false",
12491
+ "fieldName": "hideOnEscape",
12492
+ "inheritedFrom": {
12493
+ "name": "Popover",
12494
+ "module": "src/components/popover/popover.component.ts"
12495
+ }
12496
+ },
12497
+ {
12498
+ "name": "hide-on-blur",
12499
+ "type": {
12500
+ "text": "boolean"
12501
+ },
12502
+ "description": "Hide popover on blur.",
12503
+ "default": "false",
12504
+ "fieldName": "hideOnBlur",
12505
+ "inheritedFrom": {
12506
+ "name": "Popover",
12507
+ "module": "src/components/popover/popover.component.ts"
12508
+ }
12509
+ },
12510
+ {
12511
+ "name": "hide-on-outside-click",
12512
+ "type": {
12513
+ "text": "boolean"
12514
+ },
12515
+ "description": "Hide on outside click of the popover.",
12516
+ "default": "false",
12517
+ "fieldName": "hideOnOutsideClick",
12518
+ "inheritedFrom": {
12519
+ "name": "Popover",
12520
+ "module": "src/components/popover/popover.component.ts"
12521
+ }
12522
+ },
12523
+ {
12524
+ "name": "focus-back-to-trigger",
12525
+ "type": {
12526
+ "text": "boolean"
12527
+ },
12528
+ "description": "The focus back to trigger after the popover hide.",
12529
+ "default": "false",
12530
+ "fieldName": "focusBackToTrigger",
12531
+ "inheritedFrom": {
12532
+ "name": "Popover",
12533
+ "module": "src/components/popover/popover.component.ts"
12534
+ }
12535
+ },
12536
+ {
12537
+ "name": "backdrop",
12538
+ "type": {
12539
+ "text": "boolean"
12540
+ },
12541
+ "description": "Determines whether the popover with backdrop.\nOther than popover and trigger element, the rest of the screen will be covered with a backdrop.",
12542
+ "default": "false",
12543
+ "fieldName": "backdrop",
12544
+ "inheritedFrom": {
12545
+ "name": "Popover",
12546
+ "module": "src/components/popover/popover.component.ts"
12547
+ }
12548
+ },
12549
+ {
12550
+ "name": "flip",
12551
+ "type": {
12552
+ "text": "boolean"
12553
+ },
12554
+ "description": "Changes the placement of popover to keep it in view when scrolling.",
12555
+ "default": "true",
12556
+ "fieldName": "flip",
12557
+ "inheritedFrom": {
12558
+ "name": "Popover",
12559
+ "module": "src/components/popover/popover.component.ts"
12560
+ }
12561
+ },
12562
+ {
12563
+ "name": "size",
12564
+ "type": {
12565
+ "text": "boolean"
12566
+ },
12567
+ "description": "Changes the size of popover to keep it in view when scrolling.",
12568
+ "default": "false",
12569
+ "fieldName": "size",
12570
+ "inheritedFrom": {
12571
+ "name": "Popover",
12572
+ "module": "src/components/popover/popover.component.ts"
12573
+ }
12574
+ },
12575
+ {
12576
+ "name": "z-index",
12577
+ "type": {
12578
+ "text": "number"
12579
+ },
12580
+ "description": "The z-index of the popover.",
12581
+ "default": "1000",
12582
+ "fieldName": "zIndex",
12583
+ "inheritedFrom": {
12584
+ "name": "Popover",
12585
+ "module": "src/components/popover/popover.component.ts"
12586
+ }
12587
+ },
12588
+ {
12589
+ "name": "append-to",
12590
+ "type": {
12591
+ "text": "string"
12592
+ },
12593
+ "default": "''",
12594
+ "description": "Element ID that the popover append to.",
12595
+ "fieldName": "appendTo",
12596
+ "inheritedFrom": {
12597
+ "name": "Popover",
12598
+ "module": "src/components/popover/popover.component.ts"
12599
+ }
12600
+ },
12601
+ {
12602
+ "name": "close-button-aria-label",
12603
+ "type": {
12604
+ "text": "string | null"
12605
+ },
12606
+ "default": "null",
12607
+ "description": "aria-label attribute to be set for close button accessibility.",
12608
+ "fieldName": "closeButtonAriaLabel",
12609
+ "inheritedFrom": {
12610
+ "name": "Popover",
12611
+ "module": "src/components/popover/popover.component.ts"
12612
+ }
12613
+ },
12614
+ {
12615
+ "name": "role",
12616
+ "type": {
12617
+ "text": "HTMLElement['role']"
12618
+ },
12619
+ "description": "Role of the popover",
12620
+ "default": "dialog",
12621
+ "fieldName": "role",
12622
+ "inheritedFrom": {
12623
+ "name": "Popover",
12624
+ "module": "src/components/popover/popover.component.ts"
12625
+ }
12626
+ },
12627
+ {
12628
+ "name": "aria-labelledby",
12629
+ "type": {
12630
+ "text": "string | null"
12631
+ },
12632
+ "default": "null",
12633
+ "description": "aria-labelledby for an interactive popover only, defaults to the trigger component id.\nUsed in nested cases where the triggerComponent isn't the actual button.",
12634
+ "fieldName": "ariaLabelledby",
12635
+ "inheritedFrom": {
12636
+ "name": "Popover",
12637
+ "module": "src/components/popover/popover.component.ts"
12638
+ }
12639
+ },
12640
+ {
12641
+ "name": "aria-describedby",
12642
+ "type": {
12643
+ "text": "string | null"
12644
+ },
12645
+ "default": "null",
12646
+ "description": "aria-describedby of the popover.",
12647
+ "fieldName": "ariaDescribedby",
12648
+ "inheritedFrom": {
12649
+ "name": "Popover",
12650
+ "module": "src/components/popover/popover.component.ts"
12651
+ }
12652
+ },
12653
+ {
12654
+ "name": "disable-aria-expanded",
12655
+ "type": {
12656
+ "text": "boolean"
12657
+ },
12658
+ "description": "Disable aria-expanded attribute on trigger element.",
12659
+ "default": "false",
12660
+ "fieldName": "disableAriaExpanded",
12661
+ "inheritedFrom": {
12662
+ "name": "Popover",
12663
+ "module": "src/components/popover/popover.component.ts"
12664
+ }
12665
+ }
12666
+ ],
12667
+ "superclass": {
12668
+ "name": "Popover",
12669
+ "module": "/src/components/popover/popover.component"
12670
+ },
12671
+ "tagName": "mdc-tooltip",
12672
+ "jsDoc": "/**\n * A tooltip is triggered by mouse hover or by keyboard focus\n * and will disappear upon mouse exit or focus change.\n *\n * Note: Tooltips cannot contain content that can be focused or interacted with.\n *\n * @tagname mdc-tooltip\n *\n * @cssproperty --mdc-tooltip-max-width - The maximum width of the tooltip.\n * @cssproperty --mdc-tooltip-padding - The padding of the tooltip.\n * @cssproperty --mdc-tooltip-text-color - The text color of the tooltip.\n * @cssproperty --mdc-tooltip-text-color-contrast - The text color of the tooltip when the color is contrast.\n *\n */",
12673
+ "customElement": true,
12674
+ "slots": [
12675
+ {
12676
+ "description": "Default slot for the popover content",
12677
+ "name": "",
12678
+ "inheritedFrom": {
12679
+ "name": "Popover",
12680
+ "module": "src/components/popover/popover.component.ts"
12681
+ }
12682
+ }
12683
+ ]
12684
+ }
12685
+ ],
12686
+ "exports": [
12687
+ {
12688
+ "kind": "js",
12689
+ "name": "default",
12690
+ "declaration": {
12691
+ "name": "Tooltip",
12692
+ "module": "components/tooltip/tooltip.component.js"
12693
+ }
12694
+ }
12695
+ ]
12696
+ },
11029
12697
  {
11030
12698
  "kind": "javascript-module",
11031
12699
  "path": "components/virtualizedlist/virtualizedlist.component.js",