@patternfly/pfe-core 5.0.4 → 5.0.6

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.
@@ -7,7 +7,7 @@
7
7
  "declarations": [
8
8
  {
9
9
  "name": "ActivedescendantController",
10
- "description": "Implements activedescendant pattern, as described in WAI-ARIA practices,\n[Managing Focus in Composites Using aria-activedescendant][ad]\n* The steps for using the aria-activedescendant method of managing focus are as follows.\n* - When the container element that has a role that supports aria-activedescendant is loaded\nor created, ensure that:\n- The container element is included in the tab sequence as described in\nKeyboard Navigation Between Components or is a focusable element of a composite\nthat implements a roving tabindex.\n- It has aria-activedescendant=\"IDREF\" where IDREF is the ID of the element within\nthe container that should be identified as active when the widget receives focus.\nThe referenced element needs to meet the DOM relationship requirements described below.\n- When the container element receives DOM focus, draw a visual focus indicator on the active\nelement and ensure the active element is scrolled into view.\n- When the composite widget contains focus and the user presses a navigation key that moves\nfocus within the widget, such as an arrow key:\n- Change the value of aria-activedescendant on the container to refer to the element\nthat should be reported to assistive technologies as active.\n- Move the visual focus indicator and, if necessary, scrolled the active element into view.\n- If the design calls for a specific element to be focused the next time a user moves focus\ninto the composite with Tab or Shift+Tab, check if aria-activedescendant is referring to\nthat target element when the container loses focus. If it is not, set aria-activedescendant\nto refer to the target element.\n* The specification for aria-activedescendant places important restrictions on the\nDOM relationship between the focused element that has the aria-activedescendant attribute\nand the element referenced as active by the value of the attribute.\nOne of the following three conditions must be met.\n* 1. The element referenced as active is a DOM descendant of the focused referencing element.\n2. The focused referencing element has a value specified for the aria-owns property that\nincludes the ID of the element referenced as active.\n3. The focused referencing element has role of combobox, textbox, or searchbox\nand has aria-controls property referring to an element with a role that supports\naria-activedescendant and either:\n1. The element referenced as active is a descendant of the controlled element.\n2. The controlled element has a value specified for the aria-owns property that includes\nthe ID of the element referenced as active.\n* [ad]: https://www.w3.org/WAI/ARIA/apg/practices/keyboard-interface/#kbd_focus_activedescendant",
10
+ "description": "Implements activedescendant pattern, as described in WAI-ARIA practices,\n[Managing Focus in Composites Using aria-activedescendant][ad]\n\nThe steps for using the aria-activedescendant method of managing focus are as follows.\n\n- When the container element that has a role that supports aria-activedescendant is loaded\nor created, ensure that:\n- The container element is included in the tab sequence as described in\nKeyboard Navigation Between Components or is a focusable element of a composite\nthat implements a roving tabindex.\n- It has aria-activedescendant=\"IDREF\" where IDREF is the ID of the element within\nthe container that should be identified as active when the widget receives focus.\nThe referenced element needs to meet the DOM relationship requirements described below.\n- When the container element receives DOM focus, draw a visual focus indicator on the active\nelement and ensure the active element is scrolled into view.\n- When the composite widget contains focus and the user presses a navigation key that moves\nfocus within the widget, such as an arrow key:\n- Change the value of aria-activedescendant on the container to refer to the element\nthat should be reported to assistive technologies as active.\n- Move the visual focus indicator and, if necessary, scrolled the active element into view.\n- If the design calls for a specific element to be focused the next time a user moves focus\ninto the composite with Tab or Shift+Tab, check if aria-activedescendant is referring to\nthat target element when the container loses focus. If it is not, set aria-activedescendant\nto refer to the target element.\n\nThe specification for aria-activedescendant places important restrictions on the\nDOM relationship between the focused element that has the aria-activedescendant attribute\nand the element referenced as active by the value of the attribute.\nOne of the following three conditions must be met.\n\n1. The element referenced as active is a DOM descendant of the focused referencing element.\n2. The focused referencing element has a value specified for the aria-owns property that\nincludes the ID of the element referenced as active.\n3. The focused referencing element has role of combobox, textbox, or searchbox\nand has aria-controls property referring to an element with a role that supports\naria-activedescendant and either:\n1. The element referenced as active is a descendant of the controlled element.\n2. The controlled element has a value specified for the aria-owns property that includes\nthe ID of the element referenced as active.\n\n[ad]: https://www.w3.org/WAI/ARIA/apg/practices/keyboard-interface/#kbd_focus_activedescendant",
11
11
  "superclass": {
12
12
  "name": "ATFocusController"
13
13
  },
@@ -62,6 +62,15 @@
62
62
  "kind": "field",
63
63
  "privacy": "protected"
64
64
  },
65
+ {
66
+ "name": "atFocusableItems",
67
+ "description": "Check the source item's focusable state, not the clone's.\nThis is needed because filtering sets `hidden` on the light DOM item,\nand the MutationObserver sync to clones is asynchronous.",
68
+ "type": {
69
+ "text": "Item[]"
70
+ },
71
+ "readonly": true,
72
+ "kind": "field"
73
+ },
65
74
  {
66
75
  "name": "items",
67
76
  "description": "All items",
@@ -89,8 +98,7 @@
89
98
  }
90
99
  },
91
100
  "name": "initItems",
92
- "kind": "method",
93
- "privacy": "protected"
101
+ "kind": "method"
94
102
  },
95
103
  {
96
104
  "return": {
@@ -130,6 +138,9 @@
130
138
  "privacy": "public"
131
139
  }
132
140
  ],
141
+ "source": {
142
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/activedescendant-controller.ts#L76"
143
+ },
133
144
  "kind": "class"
134
145
  }
135
146
  ],
@@ -352,6 +363,9 @@
352
363
  "privacy": "private"
353
364
  }
354
365
  ],
366
+ "source": {
367
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/cascade-controller.ts#L18"
368
+ },
355
369
  "kind": "class",
356
370
  "deprecated": "use context, especially via `@patternfly/pfe-core/functions/context.js`;"
357
371
  }
@@ -373,14 +387,14 @@
373
387
  "declarations": [
374
388
  {
375
389
  "name": "ComboboxController",
376
- "summary": "Implements the WAI-ARIA pattern [Editable Combobox with Both List and Inline Autocomplete].\n* Combobox with keyboard and pointer navigation, using the aria-activedescendant pattern.\n* WARNING: Safari VoiceOver does not support aria-activedescendant, so Safari users\nrely on the combobox input value being announced when navigating the listbox with the keyboard.\nWe have erred on the side that it may be less-broken to avoid announcing disabled items in that\ncase, rather than announcing the disabled items value without indicating that it is disabled.",
390
+ "summary": "Implements the WAI-ARIA pattern [Editable Combobox with Both List and Inline Autocomplete].\n\nCombobox with keyboard and pointer navigation, using the aria-activedescendant pattern.\n\nWARNING: Safari VoiceOver does not support aria-activedescendant, so Safari users\nrely on the combobox input value being announced when navigating the listbox with the keyboard.\nWe have erred on the side that it may be less-broken to avoid announcing disabled items in that\ncase, rather than announcing the disabled items value without indicating that it is disabled.",
377
391
  "members": [
378
392
  {
379
393
  "parameters": [
380
394
  {
381
395
  "name": "host",
382
396
  "type": {
383
- "text": "ReactiveControllerHost"
397
+ "text": "ReactiveControllerHost \u0026 HTMLElement"
384
398
  }
385
399
  },
386
400
  {
@@ -472,7 +486,7 @@
472
486
  {
473
487
  "name": "host",
474
488
  "type": {
475
- "text": "ReactiveControllerHost"
489
+ "text": "ReactiveControllerHost \u0026 HTMLElement"
476
490
  },
477
491
  "kind": "field"
478
492
  },
@@ -519,7 +533,8 @@
519
533
  }
520
534
  },
521
535
  "name": "_onFocusoutElement",
522
- "kind": "method"
536
+ "kind": "method",
537
+ "privacy": "private"
523
538
  },
524
539
  {
525
540
  "return": {
@@ -533,6 +548,9 @@
533
548
  "privacy": "public"
534
549
  }
535
550
  ],
551
+ "source": {
552
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/combobox-controller.ts#L158"
553
+ },
536
554
  "kind": "class"
537
555
  }
538
556
  ],
@@ -608,6 +626,9 @@
608
626
  "kind": "method"
609
627
  }
610
628
  ],
629
+ "source": {
630
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/css-variable-controller.ts#L3"
631
+ },
611
632
  "kind": "class"
612
633
  }
613
634
  ],
@@ -668,7 +689,7 @@
668
689
  },
669
690
  {
670
691
  "name": "styles",
671
- "description": "Styles to apply to your element's container\n* - `--_floating-content-translate`: translate to apply to floating content.",
692
+ "description": "Styles to apply to your element's container\n\n- `--_floating-content-translate`: translate to apply to floating content.",
672
693
  "type": {
673
694
  "text": "StyleInfo"
674
695
  },
@@ -713,6 +734,9 @@
713
734
  "kind": "method"
714
735
  }
715
736
  ],
737
+ "source": {
738
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/floating-dom-controller.ts#L29"
739
+ },
716
740
  "kind": "class"
717
741
  }
718
742
  ],
@@ -736,7 +760,7 @@
736
760
  "members": [
737
761
  {
738
762
  "name": "instances",
739
- "default": "new WeakMap\u003cReactiveControllerHost, InternalsController\u003e()",
763
+ "default": "new WeakMap\u003cHTMLElement, InternalsController\u003e()",
740
764
  "kind": "field",
741
765
  "static": true,
742
766
  "privacy": "private"
@@ -786,7 +810,7 @@
786
810
  {
787
811
  "name": "host",
788
812
  "type": {
789
- "text": "ReactiveControllerHost"
813
+ "text": "InternalsHost"
790
814
  }
791
815
  }
792
816
  ],
@@ -800,6 +824,98 @@
800
824
  "static": true,
801
825
  "privacy": "public"
802
826
  },
827
+ {
828
+ "parameters": [
829
+ {
830
+ "name": "host",
831
+ "type": {
832
+ "text": "HTMLElement"
833
+ }
834
+ }
835
+ ],
836
+ "return": {
837
+ "type": {
838
+ "text": "string | null"
839
+ }
840
+ },
841
+ "name": "getAriaPosInSet",
842
+ "description": "Gets the ARIA posinset value from a listbox item (attribute takes precedence over internals).",
843
+ "kind": "method",
844
+ "static": true,
845
+ "privacy": "public"
846
+ },
847
+ {
848
+ "parameters": [
849
+ {
850
+ "name": "host",
851
+ "type": {
852
+ "text": "HTMLElement"
853
+ }
854
+ },
855
+ {
856
+ "name": "value",
857
+ "type": {
858
+ "text": "number | string | null"
859
+ }
860
+ }
861
+ ],
862
+ "return": {
863
+ "type": {
864
+ "text": "void"
865
+ }
866
+ },
867
+ "name": "setAriaPosInSet",
868
+ "description": "Sets the ARIA posinset on a listbox item. Uses ElementInternals when the host has\nan InternalsController instance; otherwise sets/removes the host attribute.",
869
+ "kind": "method",
870
+ "static": true,
871
+ "privacy": "public"
872
+ },
873
+ {
874
+ "parameters": [
875
+ {
876
+ "name": "host",
877
+ "type": {
878
+ "text": "HTMLElement"
879
+ }
880
+ }
881
+ ],
882
+ "return": {
883
+ "type": {
884
+ "text": "string | null"
885
+ }
886
+ },
887
+ "name": "getAriaSetSize",
888
+ "description": "Gets the ARIA setsize from a listbox item (aria attribute if set or defaulting to internals).",
889
+ "kind": "method",
890
+ "static": true,
891
+ "privacy": "public"
892
+ },
893
+ {
894
+ "parameters": [
895
+ {
896
+ "name": "host",
897
+ "type": {
898
+ "text": "HTMLElement"
899
+ }
900
+ },
901
+ {
902
+ "name": "value",
903
+ "type": {
904
+ "text": "number | string | null"
905
+ }
906
+ }
907
+ ],
908
+ "return": {
909
+ "type": {
910
+ "text": "void"
911
+ }
912
+ },
913
+ "name": "setAriaSetSize",
914
+ "description": "Sets the ARIA setsize on a listbox item. Uses ElementInternals when the host has\nan InternalsController instance; otherwise sets/removes the host attribute.",
915
+ "kind": "method",
916
+ "static": true,
917
+ "privacy": "public"
918
+ },
803
919
  {
804
920
  "name": "isSafari",
805
921
  "type": {
@@ -814,7 +930,7 @@
814
930
  {
815
931
  "name": "host",
816
932
  "type": {
817
- "text": "ReactiveControllerHost"
933
+ "text": "InternalsHost"
818
934
  }
819
935
  },
820
936
  {
@@ -1196,7 +1312,7 @@
1196
1312
  },
1197
1313
  {
1198
1314
  "name": "ariaActiveDescendantElement",
1199
- "description": "WARNING: be careful of cross-root ARIA browser support",
1315
+ "description": "As of April 2025, the following are considered Baseline supported in evergreen browsers",
1200
1316
  "type": {
1201
1317
  "text": "Element | null"
1202
1318
  },
@@ -1205,7 +1321,6 @@
1205
1321
  },
1206
1322
  {
1207
1323
  "name": "ariaControlsElements",
1208
- "description": "WARNING: be careful of cross-root ARIA browser support",
1209
1324
  "type": {
1210
1325
  "text": "Element[] | null"
1211
1326
  },
@@ -1214,7 +1329,6 @@
1214
1329
  },
1215
1330
  {
1216
1331
  "name": "ariaDescribedByElements",
1217
- "description": "WARNING: be careful of cross-root ARIA browser support",
1218
1332
  "type": {
1219
1333
  "text": "Element[] | null"
1220
1334
  },
@@ -1223,7 +1337,6 @@
1223
1337
  },
1224
1338
  {
1225
1339
  "name": "ariaDetailsElements",
1226
- "description": "WARNING: be careful of cross-root ARIA browser support",
1227
1340
  "type": {
1228
1341
  "text": "Element[] | null"
1229
1342
  },
@@ -1232,7 +1345,6 @@
1232
1345
  },
1233
1346
  {
1234
1347
  "name": "ariaErrorMessageElements",
1235
- "description": "WARNING: be careful of cross-root ARIA browser support",
1236
1348
  "type": {
1237
1349
  "text": "Element[] | null"
1238
1350
  },
@@ -1241,7 +1353,6 @@
1241
1353
  },
1242
1354
  {
1243
1355
  "name": "ariaFlowToElements",
1244
- "description": "WARNING: be careful of cross-root ARIA browser support",
1245
1356
  "type": {
1246
1357
  "text": "Element[] | null"
1247
1358
  },
@@ -1250,7 +1361,6 @@
1250
1361
  },
1251
1362
  {
1252
1363
  "name": "ariaLabelledByElements",
1253
- "description": "WARNING: be careful of cross-root ARIA browser support",
1254
1364
  "type": {
1255
1365
  "text": "Element[] | null"
1256
1366
  },
@@ -1259,7 +1369,7 @@
1259
1369
  },
1260
1370
  {
1261
1371
  "name": "ariaOwnsElements",
1262
- "description": "WARNING: be careful of cross-root ARIA browser support",
1372
+ "description": "As of February 2026, this is not supported in Chromium browsers",
1263
1373
  "type": {
1264
1374
  "text": "Element[] | null"
1265
1375
  },
@@ -1326,7 +1436,7 @@
1326
1436
  {
1327
1437
  "name": "host",
1328
1438
  "type": {
1329
- "text": "ReactiveControllerHost"
1439
+ "text": "InternalsHost"
1330
1440
  },
1331
1441
  "kind": "field"
1332
1442
  },
@@ -1448,6 +1558,9 @@
1448
1558
  "kind": "method"
1449
1559
  }
1450
1560
  ],
1561
+ "source": {
1562
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/internals-controller.ts#L72"
1563
+ },
1451
1564
  "kind": "class"
1452
1565
  }
1453
1566
  ],
@@ -1543,6 +1656,9 @@
1543
1656
  "kind": "method"
1544
1657
  }
1545
1658
  ],
1659
+ "source": {
1660
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/light-dom-controller.ts#L10"
1661
+ },
1546
1662
  "kind": "class"
1547
1663
  }
1548
1664
  ],
@@ -1572,7 +1688,10 @@
1572
1688
  }
1573
1689
  ],
1574
1690
  "name": "isItem",
1575
- "kind": "function"
1691
+ "kind": "function",
1692
+ "source": {
1693
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/listbox-controller.ts#L82"
1694
+ }
1576
1695
  },
1577
1696
  {
1578
1697
  "parameters": [
@@ -1586,7 +1705,10 @@
1586
1705
  ],
1587
1706
  "name": "isItemDisabled",
1588
1707
  "description": "This is a fib. aria-disabled might not be present on an element that uses internals,\nand the `disabled` attribute may not accurately represent the disabled state.\nshort of patching the `attachInternals` constructor, it may not be possible at\nruntime to know with certainty that an arbitrary custom element is disabled or not.",
1589
- "kind": "function"
1708
+ "kind": "function",
1709
+ "source": {
1710
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/listbox-controller.ts#L97"
1711
+ }
1590
1712
  },
1591
1713
  {
1592
1714
  "name": "ListboxController",
@@ -1650,7 +1772,7 @@
1650
1772
  },
1651
1773
  {
1652
1774
  "name": "items",
1653
- "description": "register's the host's Item elements as listbox controller items\nsets aria-setsize and aria-posinset on items",
1775
+ "description": "Registers the host's item elements as listbox controller items.",
1654
1776
  "type": {
1655
1777
  "text": "Item[]"
1656
1778
  },
@@ -1687,6 +1809,7 @@
1687
1809
  }
1688
1810
  },
1689
1811
  "name": "hostUpdate",
1812
+ "description": "Called during host update; syncs control element listeners and\napplies aria-posinset/aria-setsize to each item via InternalsController.",
1690
1813
  "kind": "method"
1691
1814
  },
1692
1815
  {
@@ -1726,6 +1849,9 @@
1726
1849
  "privacy": "public"
1727
1850
  }
1728
1851
  ],
1852
+ "source": {
1853
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/listbox-controller.ts#L146"
1854
+ },
1729
1855
  "kind": "class"
1730
1856
  }
1731
1857
  ],
@@ -1792,7 +1918,7 @@
1792
1918
  }
1793
1919
  },
1794
1920
  "name": "debugLog",
1795
- "description": "A boolean value that indicates if the logging should be printed to the console; used for debugging.\nFor use in a JS file or script tag; can also be added in the constructor of a component during development.",
1921
+ "description": "A boolean value that indicates if the logging should be printed to the console; used for debugging.\nFor use in a JS file or script tag; can also be added in the constructor of a component during development.\n\nLogger.debugLog(true);",
1796
1922
  "kind": "method",
1797
1923
  "static": true
1798
1924
  },
@@ -1812,7 +1938,7 @@
1812
1938
  }
1813
1939
  },
1814
1940
  "name": "debug",
1815
- "description": "A logging wrapper which checks the debugLog boolean and prints to the console if true.",
1941
+ "description": "A logging wrapper which checks the debugLog boolean and prints to the console if true.\n\nLogger.debug(\"Hello\");",
1816
1942
  "kind": "method",
1817
1943
  "static": true
1818
1944
  },
@@ -1832,7 +1958,7 @@
1832
1958
  }
1833
1959
  },
1834
1960
  "name": "info",
1835
- "description": "A logging wrapper which checks the debugLog boolean and prints to the console if true.",
1961
+ "description": "A logging wrapper which checks the debugLog boolean and prints to the console if true.\n\nLogger.info(\"Hello\");",
1836
1962
  "kind": "method",
1837
1963
  "static": true
1838
1964
  },
@@ -1852,7 +1978,7 @@
1852
1978
  }
1853
1979
  },
1854
1980
  "name": "log",
1855
- "description": "A logging wrapper which checks the debugLog boolean and prints to the console if true.",
1981
+ "description": "A logging wrapper which checks the debugLog boolean and prints to the console if true.\n\nLogger.log(\"Hello\");",
1856
1982
  "kind": "method",
1857
1983
  "static": true
1858
1984
  },
@@ -1872,7 +1998,7 @@
1872
1998
  }
1873
1999
  },
1874
2000
  "name": "warn",
1875
- "description": "A console warning wrapper which formats your output with useful debugging information.",
2001
+ "description": "A console warning wrapper which formats your output with useful debugging information.\n\nLogger.warn(\"Hello\");",
1876
2002
  "kind": "method",
1877
2003
  "static": true
1878
2004
  },
@@ -1892,7 +2018,7 @@
1892
2018
  }
1893
2019
  },
1894
2020
  "name": "error",
1895
- "description": "A console error wrapper which formats your output with useful debugging information.\nFor use inside a component's function.",
2021
+ "description": "A console error wrapper which formats your output with useful debugging information.\nFor use inside a component's function.\n\nLogger.error(\"Hello\");",
1896
2022
  "kind": "method",
1897
2023
  "static": true
1898
2024
  },
@@ -1912,7 +2038,7 @@
1912
2038
  }
1913
2039
  },
1914
2040
  "name": "debug",
1915
- "description": "Debug logging that outputs the tag name as a prefix automatically",
2041
+ "description": "Debug logging that outputs the tag name as a prefix automatically\n\nthis.logger.log(\"Hello\");",
1916
2042
  "kind": "method"
1917
2043
  },
1918
2044
  {
@@ -1931,7 +2057,7 @@
1931
2057
  }
1932
2058
  },
1933
2059
  "name": "info",
1934
- "description": "Info logging that outputs the tag name as a prefix automatically",
2060
+ "description": "Info logging that outputs the tag name as a prefix automatically\n\nthis.logger.log(\"Hello\");",
1935
2061
  "kind": "method"
1936
2062
  },
1937
2063
  {
@@ -1950,7 +2076,7 @@
1950
2076
  }
1951
2077
  },
1952
2078
  "name": "log",
1953
- "description": "Local logging that outputs the tag name as a prefix automatically",
2079
+ "description": "Local logging that outputs the tag name as a prefix automatically\n\nthis.logger.log(\"Hello\");",
1954
2080
  "kind": "method"
1955
2081
  },
1956
2082
  {
@@ -1969,7 +2095,7 @@
1969
2095
  }
1970
2096
  },
1971
2097
  "name": "warn",
1972
- "description": "Local warning wrapper that outputs the tag name as a prefix automatically.\nFor use inside a component's function.",
2098
+ "description": "Local warning wrapper that outputs the tag name as a prefix automatically.\nFor use inside a component's function.\n\nthis.logger.warn(\"Hello\");",
1973
2099
  "kind": "method"
1974
2100
  },
1975
2101
  {
@@ -1988,7 +2114,7 @@
1988
2114
  }
1989
2115
  },
1990
2116
  "name": "error",
1991
- "description": "Local error wrapper that outputs the tag name as a prefix automatically.\nFor use inside a component's function.",
2117
+ "description": "Local error wrapper that outputs the tag name as a prefix automatically.\nFor use inside a component's function.\n\nthis.logger.error(\"Hello\");",
1992
2118
  "kind": "method"
1993
2119
  },
1994
2120
  {
@@ -2009,6 +2135,9 @@
2009
2135
  "kind": "method"
2010
2136
  }
2011
2137
  ],
2138
+ "source": {
2139
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/logger.ts#L3"
2140
+ },
2012
2141
  "kind": "class"
2013
2142
  }
2014
2143
  ],
@@ -2154,6 +2283,9 @@
2154
2283
  "kind": "method"
2155
2284
  }
2156
2285
  ],
2286
+ "source": {
2287
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/overflow-controller.ts#L16"
2288
+ },
2157
2289
  "kind": "class"
2158
2290
  }
2159
2291
  ],
@@ -2217,6 +2349,9 @@
2217
2349
  "kind": "method"
2218
2350
  }
2219
2351
  ],
2352
+ "source": {
2353
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/perf-controller.ts#L5"
2354
+ },
2220
2355
  "kind": "class"
2221
2356
  }
2222
2357
  ],
@@ -2283,6 +2418,9 @@
2283
2418
  "kind": "method"
2284
2419
  }
2285
2420
  ],
2421
+ "source": {
2422
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/property-observer-controller.ts#L19"
2423
+ },
2286
2424
  "kind": "class"
2287
2425
  }
2288
2426
  ],
@@ -2303,7 +2441,7 @@
2303
2441
  "declarations": [
2304
2442
  {
2305
2443
  "name": "RovingTabindexController",
2306
- "description": "Implements roving tabindex, as described in WAI-ARIA practices, [Managing Focus Within\nComponents Using a Roving tabindex][rti]\n* [rti]: https://www.w3.org/WAI/ARIA/apg/practices/keyboard-interface/#kbd_roving_tabindex",
2444
+ "description": "Implements roving tabindex, as described in WAI-ARIA practices, [Managing Focus Within\nComponents Using a Roving tabindex][rti]\n\n[rti]: https://www.w3.org/WAI/ARIA/apg/practices/keyboard-interface/#kbd_roving_tabindex",
2307
2445
  "superclass": {
2308
2446
  "name": "ATFocusController"
2309
2447
  },
@@ -2370,6 +2508,9 @@
2370
2508
  "privacy": "protected"
2371
2509
  }
2372
2510
  ],
2511
+ "source": {
2512
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/roving-tabindex-controller.ts#L15"
2513
+ },
2373
2514
  "kind": "class"
2374
2515
  }
2375
2516
  ],
@@ -2458,6 +2599,9 @@
2458
2599
  "privacy": "public"
2459
2600
  }
2460
2601
  ],
2602
+ "source": {
2603
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/scroll-spy-controller.ts#L34"
2604
+ },
2461
2605
  "kind": "class"
2462
2606
  }
2463
2607
  ],
@@ -2588,6 +2732,9 @@
2588
2732
  "kind": "method"
2589
2733
  }
2590
2734
  ],
2735
+ "source": {
2736
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/slot-controller-server.ts#L7"
2737
+ },
2591
2738
  "kind": "class"
2592
2739
  }
2593
2740
  ],
@@ -2616,7 +2763,10 @@
2616
2763
  }
2617
2764
  ],
2618
2765
  "name": "isObjectSpread",
2619
- "kind": "function"
2766
+ "kind": "function",
2767
+ "source": {
2768
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/slot-controller.ts#L37"
2769
+ }
2620
2770
  },
2621
2771
  {
2622
2772
  "name": "SlotControllerPublicAPI",
@@ -2637,6 +2787,9 @@
2637
2787
  "kind": "field"
2638
2788
  }
2639
2789
  ],
2790
+ "source": {
2791
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/slot-controller.ts#L52"
2792
+ },
2640
2793
  "kind": "class"
2641
2794
  },
2642
2795
  {
@@ -2675,6 +2828,9 @@
2675
2828
  "kind": "field"
2676
2829
  }
2677
2830
  ],
2831
+ "source": {
2832
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/slot-controller.ts#L101"
2833
+ },
2678
2834
  "kind": "class"
2679
2835
  },
2680
2836
  {
@@ -2737,7 +2893,7 @@
2737
2893
  }
2738
2894
  },
2739
2895
  "name": "getSlotted",
2740
- "description": "Given a slot name or slot names, returns elements assigned to the requested slots as an array.\nIf no value is provided, it returns all children not assigned to a slot (without a slot attribute).",
2896
+ "description": "Given a slot name or slot names, returns elements assigned to the requested slots as an array.\nIf no value is provided, it returns all children not assigned to a slot (without a slot attribute).\n\n\u003cfigure\u003e\n\u003cfigcaption\u003eGet header-slotted elements\u003c/figcaption\u003e\n\n```js\nthis.getSlotted('header')\n```\n\u003c/figure\u003e\n\n\u003cfigure\u003e\n\u003cfigcaption\u003eGet header- and footer-slotted elements\u003c/figcaption\u003e\n\n```js\nthis.getSlotted('header', 'footer')\n```\n\u003c/figure\u003e\n\n\u003cfigure\u003e\n\u003cfigcaption\u003eGet default-slotted elements\u003c/figcaption\u003e\n\n```js\nthis.getSlotted();\n```\n\u003c/figure\u003e",
2741
2897
  "kind": "method",
2742
2898
  "privacy": "public"
2743
2899
  },
@@ -2757,7 +2913,7 @@
2757
2913
  }
2758
2914
  },
2759
2915
  "name": "hasSlotted",
2760
- "description": "Returns a boolean statement of whether or not any of those slots exists in the light DOM.",
2916
+ "description": "Returns a boolean statement of whether or not any of those slots exists in the light DOM.\n\nthis.hasSlotted('header');",
2761
2917
  "kind": "method",
2762
2918
  "privacy": "public"
2763
2919
  },
@@ -2777,11 +2933,14 @@
2777
2933
  }
2778
2934
  },
2779
2935
  "name": "isEmpty",
2780
- "description": "Whether or not all the requested slots are empty.",
2936
+ "description": "Whether or not all the requested slots are empty.\n\nthis.isEmpty('header', 'footer');\n\nthis.isEmpty();",
2781
2937
  "kind": "method",
2782
2938
  "privacy": "public"
2783
2939
  }
2784
2940
  ],
2941
+ "source": {
2942
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/slot-controller.ts#L130"
2943
+ },
2785
2944
  "kind": "class"
2786
2945
  }
2787
2946
  ],
@@ -2848,6 +3007,9 @@
2848
3007
  "kind": "method"
2849
3008
  }
2850
3009
  ],
3010
+ "source": {
3011
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/style-controller.ts#L21"
3012
+ },
2851
3013
  "kind": "class"
2852
3014
  }
2853
3015
  ],
@@ -2944,6 +3106,9 @@
2944
3106
  "kind": "method"
2945
3107
  }
2946
3108
  ],
3109
+ "source": {
3110
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/tabs-aria-controller.ts#L14"
3111
+ },
2947
3112
  "kind": "class"
2948
3113
  }
2949
3114
  ],
@@ -3020,6 +3185,9 @@
3020
3185
  "kind": "method"
3021
3186
  }
3022
3187
  ],
3188
+ "source": {
3189
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/timestamp-controller.ts#L27"
3190
+ },
3023
3191
  "kind": "class"
3024
3192
  }
3025
3193
  ],
@@ -3048,8 +3216,11 @@
3048
3216
  }
3049
3217
  ],
3050
3218
  "name": "bound",
3051
- "description": "Binds a class method to the instance",
3052
- "kind": "function"
3219
+ "description": "Binds a class method to the instance\n\n\u003cfigure\u003e\n\u003cfigcaption\u003eBinding an event listener\u003c/figcaption\u003e\n\n```ts\nprivate mo = new MutationObserver(this.onMutation);\n\u003c/figure\u003e",
3220
+ "kind": "function",
3221
+ "source": {
3222
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/decorators/bound.ts#L17"
3223
+ }
3053
3224
  }
3054
3225
  ],
3055
3226
  "exports": [
@@ -3080,7 +3251,10 @@
3080
3251
  "name": "cascades",
3081
3252
  "description": "Cascades the decorated attribute to children",
3082
3253
  "deprecated": "use context, especially via `@patternfly/pfe-core/functions/context.js`;",
3083
- "kind": "function"
3254
+ "kind": "function",
3255
+ "source": {
3256
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/decorators/cascades.ts#L10"
3257
+ }
3084
3258
  }
3085
3259
  ],
3086
3260
  "exports": [
@@ -3109,8 +3283,11 @@
3109
3283
  }
3110
3284
  ],
3111
3285
  "name": "deprecation",
3112
- "description": "Aliases the decorated field to an existing property, and logs a warning if it is used",
3113
- "kind": "function"
3286
+ "description": "Aliases the decorated field to an existing property, and logs a warning if it is used\n\n\u003cfigure\u003e\n\u003cfigcaption\u003edeprecating an attribute\u003c/figcaption\u003e\n\n```ts\n\u003c/figure\u003e",
3287
+ "kind": "function",
3288
+ "source": {
3289
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/decorators/deprecation.ts#L21"
3290
+ }
3114
3291
  },
3115
3292
  {
3116
3293
  "name": "Deprecation",
@@ -3161,6 +3338,9 @@
3161
3338
  "kind": "method"
3162
3339
  }
3163
3340
  ],
3341
+ "source": {
3342
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/decorators/deprecation.ts#L38"
3343
+ },
3164
3344
  "kind": "class"
3165
3345
  }
3166
3346
  ],
@@ -3191,7 +3371,10 @@
3191
3371
  ],
3192
3372
  "name": "initializer",
3193
3373
  "description": "Runs the decorated method in `connectedCallback`,\nprovided the element has light children, and sets\nup a mutation observer to re-run the callback,\nunless opted-out with `{ observe: false }`",
3194
- "kind": "function"
3374
+ "kind": "function",
3375
+ "source": {
3376
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/decorators/initializer.ts#L13"
3377
+ }
3195
3378
  }
3196
3379
  ],
3197
3380
  "exports": [
@@ -3221,7 +3404,10 @@
3221
3404
  ],
3222
3405
  "name": "listen",
3223
3406
  "description": "Listens for a given event on the custom element.\nequivalent to calling `this.addEventListener` in the constructor",
3224
- "kind": "function"
3407
+ "kind": "function",
3408
+ "source": {
3409
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/decorators/listen.ts#L9"
3410
+ }
3225
3411
  }
3226
3412
  ],
3227
3413
  "exports": [
@@ -3249,7 +3435,10 @@
3249
3435
  }
3250
3436
  ],
3251
3437
  "name": "observed",
3252
- "kind": "function"
3438
+ "kind": "function",
3439
+ "source": {
3440
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/decorators/observed.ts#L34"
3441
+ }
3253
3442
  },
3254
3443
  {
3255
3444
  "parameters": [
@@ -3261,7 +3450,10 @@
3261
3450
  }
3262
3451
  ],
3263
3452
  "name": "observed",
3264
- "kind": "function"
3453
+ "kind": "function",
3454
+ "source": {
3455
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/decorators/observed.ts#L35"
3456
+ }
3265
3457
  }
3266
3458
  ],
3267
3459
  "exports": [
@@ -3291,7 +3483,10 @@
3291
3483
  ],
3292
3484
  "name": "observes",
3293
3485
  "description": "Observes changes on the given property and calls the decorated method\nwith the old and new values when it changes. In cases where the decorated method\nneeds to access uninitialized class fields, You may need to wait for the element to connect\nbefore running your effects. In that case, you can optionally specify which\nlifecycle state to wait for. e.g.:\n- `waitFor: 'firstUpdate'` waits until the first update cycle has completed\n- `waitFor: 'updated'` waits until the next update cycle has completed\n- `waitFor: 'connected'` waits until the element connects",
3294
- "kind": "function"
3486
+ "kind": "function",
3487
+ "source": {
3488
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/decorators/observes.ts#L21"
3489
+ }
3295
3490
  }
3296
3491
  ],
3297
3492
  "exports": [
@@ -3321,7 +3516,10 @@
3321
3516
  ],
3322
3517
  "name": "time",
3323
3518
  "description": "Tracks the time a method takes to complete using the [performance API](https://developer.mozilla.org/en-US/docs/Web/API/Performance)",
3324
- "kind": "function"
3519
+ "kind": "function",
3520
+ "source": {
3521
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/decorators/time.ts#L5"
3522
+ }
3325
3523
  }
3326
3524
  ],
3327
3525
  "exports": [
@@ -3351,7 +3549,10 @@
3351
3549
  ],
3352
3550
  "name": "trace",
3353
3551
  "description": "Logs the result of a class method",
3354
- "kind": "function"
3552
+ "kind": "function",
3553
+ "source": {
3554
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/decorators/trace.ts#L5"
3555
+ }
3355
3556
  }
3356
3557
  ],
3357
3558
  "exports": [
@@ -3381,7 +3582,10 @@
3381
3582
  ],
3382
3583
  "name": "arraysAreEquivalent",
3383
3584
  "description": "Whether the two arrays are equivalent\nArrays are equivalent when they are both empty, or when their lengths are equal and each of\ntheir members is equal (===) to the corresponding member in the other array.\nIf either argument is not an array, the result will be strict equivalence (===)",
3384
- "kind": "function"
3585
+ "kind": "function",
3586
+ "source": {
3587
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/functions/arraysAreEquivalent.ts#L9"
3588
+ }
3385
3589
  }
3386
3590
  ],
3387
3591
  "exports": [
@@ -3411,7 +3615,10 @@
3411
3615
  ],
3412
3616
  "name": "containsDeep",
3413
3617
  "description": "Whether or not the container contains the node,\nand if not, whether the node is contained by any element\nslotted in to the container",
3414
- "kind": "function"
3618
+ "kind": "function",
3619
+ "source": {
3620
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/functions/containsDeep.ts#L8"
3621
+ }
3415
3622
  }
3416
3623
  ],
3417
3624
  "exports": [
@@ -3442,7 +3649,10 @@
3442
3649
  ],
3443
3650
  "name": "createContextWithRoot",
3444
3651
  "description": "In order to prevent late-upgrading-context-consumers from 'missing'\ntheir rightful context providers, we must set up a `ContextRoot` on the body.\nAlways use this function when creating contexts that are shared with child elements.",
3445
- "kind": "function"
3652
+ "kind": "function",
3653
+ "source": {
3654
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/functions/context.ts#L25"
3655
+ }
3446
3656
  }
3447
3657
  ],
3448
3658
  "exports": [
@@ -3472,7 +3682,10 @@
3472
3682
  ],
3473
3683
  "name": "debounce",
3474
3684
  "description": "Debounce helper function",
3475
- "kind": "function"
3685
+ "kind": "function",
3686
+ "source": {
3687
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/functions/debounce.ts#L9"
3688
+ }
3476
3689
  }
3477
3690
  ],
3478
3691
  "exports": [
@@ -3505,7 +3718,10 @@
3505
3718
  },
3506
3719
  "name": "isElementInView",
3507
3720
  "description": "This function returns whether or not an element is within the viewable area of a container. If partial is true,\nthen this function will return true even if only part of the element is in view.",
3508
- "kind": "function"
3721
+ "kind": "function",
3722
+ "source": {
3723
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/functions/isElementInView.ts#L10"
3724
+ }
3509
3725
  }
3510
3726
  ],
3511
3727
  "exports": [
@@ -3526,7 +3742,10 @@
3526
3742
  {
3527
3743
  "name": "getRandomId",
3528
3744
  "description": "A quick way to fetch a random ID value.\n_Note:_ All values are prefixed automatically to ensure an ID-safe value is returned.",
3529
- "kind": "function"
3745
+ "kind": "function",
3746
+ "source": {
3747
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/functions/random.ts#L6"
3748
+ }
3530
3749
  }
3531
3750
  ],
3532
3751
  "exports": [