@patternfly/pfe-core 5.0.4 → 5.0.5

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.
Files changed (2) hide show
  1. package/custom-elements.json +162 -39
  2. package/package.json +3 -3
@@ -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
  },
@@ -130,6 +130,9 @@
130
130
  "privacy": "public"
131
131
  }
132
132
  ],
133
+ "source": {
134
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/activedescendant-controller.ts#L76"
135
+ },
133
136
  "kind": "class"
134
137
  }
135
138
  ],
@@ -352,6 +355,9 @@
352
355
  "privacy": "private"
353
356
  }
354
357
  ],
358
+ "source": {
359
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/cascade-controller.ts#L18"
360
+ },
355
361
  "kind": "class",
356
362
  "deprecated": "use context, especially via `@patternfly/pfe-core/functions/context.js`;"
357
363
  }
@@ -373,7 +379,7 @@
373
379
  "declarations": [
374
380
  {
375
381
  "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.",
382
+ "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
383
  "members": [
378
384
  {
379
385
  "parameters": [
@@ -533,6 +539,9 @@
533
539
  "privacy": "public"
534
540
  }
535
541
  ],
542
+ "source": {
543
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/combobox-controller.ts#L158"
544
+ },
536
545
  "kind": "class"
537
546
  }
538
547
  ],
@@ -608,6 +617,9 @@
608
617
  "kind": "method"
609
618
  }
610
619
  ],
620
+ "source": {
621
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/css-variable-controller.ts#L3"
622
+ },
611
623
  "kind": "class"
612
624
  }
613
625
  ],
@@ -668,7 +680,7 @@
668
680
  },
669
681
  {
670
682
  "name": "styles",
671
- "description": "Styles to apply to your element's container\n* - `--_floating-content-translate`: translate to apply to floating content.",
683
+ "description": "Styles to apply to your element's container\n\n- `--_floating-content-translate`: translate to apply to floating content.",
672
684
  "type": {
673
685
  "text": "StyleInfo"
674
686
  },
@@ -713,6 +725,9 @@
713
725
  "kind": "method"
714
726
  }
715
727
  ],
728
+ "source": {
729
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/floating-dom-controller.ts#L29"
730
+ },
716
731
  "kind": "class"
717
732
  }
718
733
  ],
@@ -1448,6 +1463,9 @@
1448
1463
  "kind": "method"
1449
1464
  }
1450
1465
  ],
1466
+ "source": {
1467
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/internals-controller.ts#L71"
1468
+ },
1451
1469
  "kind": "class"
1452
1470
  }
1453
1471
  ],
@@ -1543,6 +1561,9 @@
1543
1561
  "kind": "method"
1544
1562
  }
1545
1563
  ],
1564
+ "source": {
1565
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/light-dom-controller.ts#L10"
1566
+ },
1546
1567
  "kind": "class"
1547
1568
  }
1548
1569
  ],
@@ -1572,7 +1593,10 @@
1572
1593
  }
1573
1594
  ],
1574
1595
  "name": "isItem",
1575
- "kind": "function"
1596
+ "kind": "function",
1597
+ "source": {
1598
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/listbox-controller.ts#L81"
1599
+ }
1576
1600
  },
1577
1601
  {
1578
1602
  "parameters": [
@@ -1586,7 +1610,10 @@
1586
1610
  ],
1587
1611
  "name": "isItemDisabled",
1588
1612
  "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"
1613
+ "kind": "function",
1614
+ "source": {
1615
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/listbox-controller.ts#L96"
1616
+ }
1590
1617
  },
1591
1618
  {
1592
1619
  "name": "ListboxController",
@@ -1726,6 +1753,9 @@
1726
1753
  "privacy": "public"
1727
1754
  }
1728
1755
  ],
1756
+ "source": {
1757
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/listbox-controller.ts#L145"
1758
+ },
1729
1759
  "kind": "class"
1730
1760
  }
1731
1761
  ],
@@ -1792,7 +1822,7 @@
1792
1822
  }
1793
1823
  },
1794
1824
  "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.",
1825
+ "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
1826
  "kind": "method",
1797
1827
  "static": true
1798
1828
  },
@@ -1812,7 +1842,7 @@
1812
1842
  }
1813
1843
  },
1814
1844
  "name": "debug",
1815
- "description": "A logging wrapper which checks the debugLog boolean and prints to the console if true.",
1845
+ "description": "A logging wrapper which checks the debugLog boolean and prints to the console if true.\n\nLogger.debug(\"Hello\");",
1816
1846
  "kind": "method",
1817
1847
  "static": true
1818
1848
  },
@@ -1832,7 +1862,7 @@
1832
1862
  }
1833
1863
  },
1834
1864
  "name": "info",
1835
- "description": "A logging wrapper which checks the debugLog boolean and prints to the console if true.",
1865
+ "description": "A logging wrapper which checks the debugLog boolean and prints to the console if true.\n\nLogger.info(\"Hello\");",
1836
1866
  "kind": "method",
1837
1867
  "static": true
1838
1868
  },
@@ -1852,7 +1882,7 @@
1852
1882
  }
1853
1883
  },
1854
1884
  "name": "log",
1855
- "description": "A logging wrapper which checks the debugLog boolean and prints to the console if true.",
1885
+ "description": "A logging wrapper which checks the debugLog boolean and prints to the console if true.\n\nLogger.log(\"Hello\");",
1856
1886
  "kind": "method",
1857
1887
  "static": true
1858
1888
  },
@@ -1872,7 +1902,7 @@
1872
1902
  }
1873
1903
  },
1874
1904
  "name": "warn",
1875
- "description": "A console warning wrapper which formats your output with useful debugging information.",
1905
+ "description": "A console warning wrapper which formats your output with useful debugging information.\n\nLogger.warn(\"Hello\");",
1876
1906
  "kind": "method",
1877
1907
  "static": true
1878
1908
  },
@@ -1892,7 +1922,7 @@
1892
1922
  }
1893
1923
  },
1894
1924
  "name": "error",
1895
- "description": "A console error wrapper which formats your output with useful debugging information.\nFor use inside a component's function.",
1925
+ "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
1926
  "kind": "method",
1897
1927
  "static": true
1898
1928
  },
@@ -1912,7 +1942,7 @@
1912
1942
  }
1913
1943
  },
1914
1944
  "name": "debug",
1915
- "description": "Debug logging that outputs the tag name as a prefix automatically",
1945
+ "description": "Debug logging that outputs the tag name as a prefix automatically\n\nthis.logger.log(\"Hello\");",
1916
1946
  "kind": "method"
1917
1947
  },
1918
1948
  {
@@ -1931,7 +1961,7 @@
1931
1961
  }
1932
1962
  },
1933
1963
  "name": "info",
1934
- "description": "Info logging that outputs the tag name as a prefix automatically",
1964
+ "description": "Info logging that outputs the tag name as a prefix automatically\n\nthis.logger.log(\"Hello\");",
1935
1965
  "kind": "method"
1936
1966
  },
1937
1967
  {
@@ -1950,7 +1980,7 @@
1950
1980
  }
1951
1981
  },
1952
1982
  "name": "log",
1953
- "description": "Local logging that outputs the tag name as a prefix automatically",
1983
+ "description": "Local logging that outputs the tag name as a prefix automatically\n\nthis.logger.log(\"Hello\");",
1954
1984
  "kind": "method"
1955
1985
  },
1956
1986
  {
@@ -1969,7 +1999,7 @@
1969
1999
  }
1970
2000
  },
1971
2001
  "name": "warn",
1972
- "description": "Local warning wrapper that outputs the tag name as a prefix automatically.\nFor use inside a component's function.",
2002
+ "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
2003
  "kind": "method"
1974
2004
  },
1975
2005
  {
@@ -1988,7 +2018,7 @@
1988
2018
  }
1989
2019
  },
1990
2020
  "name": "error",
1991
- "description": "Local error wrapper that outputs the tag name as a prefix automatically.\nFor use inside a component's function.",
2021
+ "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
2022
  "kind": "method"
1993
2023
  },
1994
2024
  {
@@ -2009,6 +2039,9 @@
2009
2039
  "kind": "method"
2010
2040
  }
2011
2041
  ],
2042
+ "source": {
2043
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/logger.ts#L3"
2044
+ },
2012
2045
  "kind": "class"
2013
2046
  }
2014
2047
  ],
@@ -2154,6 +2187,9 @@
2154
2187
  "kind": "method"
2155
2188
  }
2156
2189
  ],
2190
+ "source": {
2191
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/overflow-controller.ts#L16"
2192
+ },
2157
2193
  "kind": "class"
2158
2194
  }
2159
2195
  ],
@@ -2217,6 +2253,9 @@
2217
2253
  "kind": "method"
2218
2254
  }
2219
2255
  ],
2256
+ "source": {
2257
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/perf-controller.ts#L5"
2258
+ },
2220
2259
  "kind": "class"
2221
2260
  }
2222
2261
  ],
@@ -2283,6 +2322,9 @@
2283
2322
  "kind": "method"
2284
2323
  }
2285
2324
  ],
2325
+ "source": {
2326
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/property-observer-controller.ts#L19"
2327
+ },
2286
2328
  "kind": "class"
2287
2329
  }
2288
2330
  ],
@@ -2303,7 +2345,7 @@
2303
2345
  "declarations": [
2304
2346
  {
2305
2347
  "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",
2348
+ "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
2349
  "superclass": {
2308
2350
  "name": "ATFocusController"
2309
2351
  },
@@ -2370,6 +2412,9 @@
2370
2412
  "privacy": "protected"
2371
2413
  }
2372
2414
  ],
2415
+ "source": {
2416
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/roving-tabindex-controller.ts#L15"
2417
+ },
2373
2418
  "kind": "class"
2374
2419
  }
2375
2420
  ],
@@ -2458,6 +2503,9 @@
2458
2503
  "privacy": "public"
2459
2504
  }
2460
2505
  ],
2506
+ "source": {
2507
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/scroll-spy-controller.ts#L34"
2508
+ },
2461
2509
  "kind": "class"
2462
2510
  }
2463
2511
  ],
@@ -2588,6 +2636,9 @@
2588
2636
  "kind": "method"
2589
2637
  }
2590
2638
  ],
2639
+ "source": {
2640
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/slot-controller-server.ts#L7"
2641
+ },
2591
2642
  "kind": "class"
2592
2643
  }
2593
2644
  ],
@@ -2616,7 +2667,10 @@
2616
2667
  }
2617
2668
  ],
2618
2669
  "name": "isObjectSpread",
2619
- "kind": "function"
2670
+ "kind": "function",
2671
+ "source": {
2672
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/slot-controller.ts#L37"
2673
+ }
2620
2674
  },
2621
2675
  {
2622
2676
  "name": "SlotControllerPublicAPI",
@@ -2637,6 +2691,9 @@
2637
2691
  "kind": "field"
2638
2692
  }
2639
2693
  ],
2694
+ "source": {
2695
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/slot-controller.ts#L52"
2696
+ },
2640
2697
  "kind": "class"
2641
2698
  },
2642
2699
  {
@@ -2675,6 +2732,9 @@
2675
2732
  "kind": "field"
2676
2733
  }
2677
2734
  ],
2735
+ "source": {
2736
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/slot-controller.ts#L101"
2737
+ },
2678
2738
  "kind": "class"
2679
2739
  },
2680
2740
  {
@@ -2737,7 +2797,7 @@
2737
2797
  }
2738
2798
  },
2739
2799
  "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).",
2800
+ "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
2801
  "kind": "method",
2742
2802
  "privacy": "public"
2743
2803
  },
@@ -2757,7 +2817,7 @@
2757
2817
  }
2758
2818
  },
2759
2819
  "name": "hasSlotted",
2760
- "description": "Returns a boolean statement of whether or not any of those slots exists in the light DOM.",
2820
+ "description": "Returns a boolean statement of whether or not any of those slots exists in the light DOM.\n\nthis.hasSlotted('header');",
2761
2821
  "kind": "method",
2762
2822
  "privacy": "public"
2763
2823
  },
@@ -2777,11 +2837,14 @@
2777
2837
  }
2778
2838
  },
2779
2839
  "name": "isEmpty",
2780
- "description": "Whether or not all the requested slots are empty.",
2840
+ "description": "Whether or not all the requested slots are empty.\n\nthis.isEmpty('header', 'footer');\n\nthis.isEmpty();",
2781
2841
  "kind": "method",
2782
2842
  "privacy": "public"
2783
2843
  }
2784
2844
  ],
2845
+ "source": {
2846
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/slot-controller.ts#L130"
2847
+ },
2785
2848
  "kind": "class"
2786
2849
  }
2787
2850
  ],
@@ -2848,6 +2911,9 @@
2848
2911
  "kind": "method"
2849
2912
  }
2850
2913
  ],
2914
+ "source": {
2915
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/style-controller.ts#L21"
2916
+ },
2851
2917
  "kind": "class"
2852
2918
  }
2853
2919
  ],
@@ -2944,6 +3010,9 @@
2944
3010
  "kind": "method"
2945
3011
  }
2946
3012
  ],
3013
+ "source": {
3014
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/tabs-aria-controller.ts#L14"
3015
+ },
2947
3016
  "kind": "class"
2948
3017
  }
2949
3018
  ],
@@ -3020,6 +3089,9 @@
3020
3089
  "kind": "method"
3021
3090
  }
3022
3091
  ],
3092
+ "source": {
3093
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/controllers/timestamp-controller.ts#L27"
3094
+ },
3023
3095
  "kind": "class"
3024
3096
  }
3025
3097
  ],
@@ -3048,8 +3120,11 @@
3048
3120
  }
3049
3121
  ],
3050
3122
  "name": "bound",
3051
- "description": "Binds a class method to the instance",
3052
- "kind": "function"
3123
+ "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",
3124
+ "kind": "function",
3125
+ "source": {
3126
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/decorators/bound.ts#L17"
3127
+ }
3053
3128
  }
3054
3129
  ],
3055
3130
  "exports": [
@@ -3080,7 +3155,10 @@
3080
3155
  "name": "cascades",
3081
3156
  "description": "Cascades the decorated attribute to children",
3082
3157
  "deprecated": "use context, especially via `@patternfly/pfe-core/functions/context.js`;",
3083
- "kind": "function"
3158
+ "kind": "function",
3159
+ "source": {
3160
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/decorators/cascades.ts#L10"
3161
+ }
3084
3162
  }
3085
3163
  ],
3086
3164
  "exports": [
@@ -3109,8 +3187,11 @@
3109
3187
  }
3110
3188
  ],
3111
3189
  "name": "deprecation",
3112
- "description": "Aliases the decorated field to an existing property, and logs a warning if it is used",
3113
- "kind": "function"
3190
+ "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",
3191
+ "kind": "function",
3192
+ "source": {
3193
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/decorators/deprecation.ts#L21"
3194
+ }
3114
3195
  },
3115
3196
  {
3116
3197
  "name": "Deprecation",
@@ -3161,6 +3242,9 @@
3161
3242
  "kind": "method"
3162
3243
  }
3163
3244
  ],
3245
+ "source": {
3246
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/decorators/deprecation.ts#L38"
3247
+ },
3164
3248
  "kind": "class"
3165
3249
  }
3166
3250
  ],
@@ -3191,7 +3275,10 @@
3191
3275
  ],
3192
3276
  "name": "initializer",
3193
3277
  "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"
3278
+ "kind": "function",
3279
+ "source": {
3280
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/decorators/initializer.ts#L13"
3281
+ }
3195
3282
  }
3196
3283
  ],
3197
3284
  "exports": [
@@ -3221,7 +3308,10 @@
3221
3308
  ],
3222
3309
  "name": "listen",
3223
3310
  "description": "Listens for a given event on the custom element.\nequivalent to calling `this.addEventListener` in the constructor",
3224
- "kind": "function"
3311
+ "kind": "function",
3312
+ "source": {
3313
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/decorators/listen.ts#L9"
3314
+ }
3225
3315
  }
3226
3316
  ],
3227
3317
  "exports": [
@@ -3249,7 +3339,10 @@
3249
3339
  }
3250
3340
  ],
3251
3341
  "name": "observed",
3252
- "kind": "function"
3342
+ "kind": "function",
3343
+ "source": {
3344
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/decorators/observed.ts#L34"
3345
+ }
3253
3346
  },
3254
3347
  {
3255
3348
  "parameters": [
@@ -3261,7 +3354,10 @@
3261
3354
  }
3262
3355
  ],
3263
3356
  "name": "observed",
3264
- "kind": "function"
3357
+ "kind": "function",
3358
+ "source": {
3359
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/decorators/observed.ts#L35"
3360
+ }
3265
3361
  }
3266
3362
  ],
3267
3363
  "exports": [
@@ -3291,7 +3387,10 @@
3291
3387
  ],
3292
3388
  "name": "observes",
3293
3389
  "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"
3390
+ "kind": "function",
3391
+ "source": {
3392
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/decorators/observes.ts#L21"
3393
+ }
3295
3394
  }
3296
3395
  ],
3297
3396
  "exports": [
@@ -3321,7 +3420,10 @@
3321
3420
  ],
3322
3421
  "name": "time",
3323
3422
  "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"
3423
+ "kind": "function",
3424
+ "source": {
3425
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/decorators/time.ts#L5"
3426
+ }
3325
3427
  }
3326
3428
  ],
3327
3429
  "exports": [
@@ -3351,7 +3453,10 @@
3351
3453
  ],
3352
3454
  "name": "trace",
3353
3455
  "description": "Logs the result of a class method",
3354
- "kind": "function"
3456
+ "kind": "function",
3457
+ "source": {
3458
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/decorators/trace.ts#L5"
3459
+ }
3355
3460
  }
3356
3461
  ],
3357
3462
  "exports": [
@@ -3381,7 +3486,10 @@
3381
3486
  ],
3382
3487
  "name": "arraysAreEquivalent",
3383
3488
  "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"
3489
+ "kind": "function",
3490
+ "source": {
3491
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/functions/arraysAreEquivalent.ts#L9"
3492
+ }
3385
3493
  }
3386
3494
  ],
3387
3495
  "exports": [
@@ -3411,7 +3519,10 @@
3411
3519
  ],
3412
3520
  "name": "containsDeep",
3413
3521
  "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"
3522
+ "kind": "function",
3523
+ "source": {
3524
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/functions/containsDeep.ts#L8"
3525
+ }
3415
3526
  }
3416
3527
  ],
3417
3528
  "exports": [
@@ -3442,7 +3553,10 @@
3442
3553
  ],
3443
3554
  "name": "createContextWithRoot",
3444
3555
  "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"
3556
+ "kind": "function",
3557
+ "source": {
3558
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/functions/context.ts#L25"
3559
+ }
3446
3560
  }
3447
3561
  ],
3448
3562
  "exports": [
@@ -3472,7 +3586,10 @@
3472
3586
  ],
3473
3587
  "name": "debounce",
3474
3588
  "description": "Debounce helper function",
3475
- "kind": "function"
3589
+ "kind": "function",
3590
+ "source": {
3591
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/functions/debounce.ts#L9"
3592
+ }
3476
3593
  }
3477
3594
  ],
3478
3595
  "exports": [
@@ -3505,7 +3622,10 @@
3505
3622
  },
3506
3623
  "name": "isElementInView",
3507
3624
  "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"
3625
+ "kind": "function",
3626
+ "source": {
3627
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/functions/isElementInView.ts#L10"
3628
+ }
3509
3629
  }
3510
3630
  ],
3511
3631
  "exports": [
@@ -3526,7 +3646,10 @@
3526
3646
  {
3527
3647
  "name": "getRandomId",
3528
3648
  "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"
3649
+ "kind": "function",
3650
+ "source": {
3651
+ "href": "https://github.com/patternfly/patternfly-elements/tree/main/functions/random.ts#L6"
3652
+ }
3530
3653
  }
3531
3654
  ],
3532
3655
  "exports": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@patternfly/pfe-core",
3
- "version": "5.0.4",
3
+ "version": "5.0.5",
4
4
  "license": "MIT",
5
5
  "description": "PatternFly Elements Core Library",
6
6
  "customElements": "custom-elements.json",
@@ -65,8 +65,8 @@
65
65
  "test": "wtr --files './test/*.spec.ts' --config ../../web-test-runner.config.js"
66
66
  },
67
67
  "dependencies": {
68
- "@lit/context": "^1.1.5",
69
- "lit": "^3.3.0"
68
+ "@lit/context": "^1.1.6",
69
+ "lit": "^3.3.2"
70
70
  },
71
71
  "repository": {
72
72
  "type": "git",