@momentum-design/components 0.117.3 → 0.118.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.
Files changed (50) hide show
  1. package/dist/browser/index.js +562 -487
  2. package/dist/browser/index.js.map +4 -4
  3. package/dist/components/announcementdialog/announcementdialog.component.d.ts +87 -0
  4. package/dist/components/announcementdialog/announcementdialog.component.js +131 -0
  5. package/dist/components/announcementdialog/announcementdialog.constants.d.ts +6 -0
  6. package/dist/components/announcementdialog/announcementdialog.constants.js +7 -0
  7. package/dist/components/announcementdialog/announcementdialog.styles.d.ts +2 -0
  8. package/dist/components/announcementdialog/announcementdialog.styles.js +52 -0
  9. package/dist/components/announcementdialog/announcementdialog.types.d.ts +6 -0
  10. package/dist/components/announcementdialog/announcementdialog.types.js +1 -0
  11. package/dist/components/announcementdialog/index.d.ts +9 -0
  12. package/dist/components/announcementdialog/index.js +6 -0
  13. package/dist/components/checkbox/checkbox.component.d.ts +5 -0
  14. package/dist/components/checkbox/checkbox.component.js +5 -0
  15. package/dist/components/combobox/combobox.component.d.ts +4 -0
  16. package/dist/components/combobox/combobox.component.js +4 -0
  17. package/dist/components/dialog/dialog.component.d.ts +14 -1
  18. package/dist/components/dialog/dialog.component.js +43 -27
  19. package/dist/components/dialog/dialog.styles.js +2 -0
  20. package/dist/components/dialog/dialog.types.d.ts +1 -1
  21. package/dist/components/formfieldgroup/formfieldgroup.component.d.ts +4 -0
  22. package/dist/components/formfieldgroup/formfieldgroup.component.js +4 -0
  23. package/dist/components/formfieldwrapper/formfieldwrapper.component.d.ts +10 -6
  24. package/dist/components/formfieldwrapper/formfieldwrapper.component.js +37 -23
  25. package/dist/components/formfieldwrapper/formfieldwrapper.constants.d.ts +1 -0
  26. package/dist/components/formfieldwrapper/formfieldwrapper.constants.js +1 -0
  27. package/dist/components/input/input.component.d.ts +9 -0
  28. package/dist/components/input/input.component.js +9 -0
  29. package/dist/components/popover/popover.constants.d.ts +1 -1
  30. package/dist/components/popover/popover.constants.js +1 -1
  31. package/dist/custom-elements.json +2438 -284
  32. package/dist/index.d.ts +2 -1
  33. package/dist/index.js +2 -1
  34. package/dist/react/announcementdialog/index.d.ts +75 -0
  35. package/dist/react/announcementdialog/index.js +82 -0
  36. package/dist/react/checkbox/index.d.ts +5 -0
  37. package/dist/react/checkbox/index.js +5 -0
  38. package/dist/react/combobox/index.d.ts +4 -0
  39. package/dist/react/combobox/index.js +4 -0
  40. package/dist/react/dialog/index.d.ts +1 -0
  41. package/dist/react/dialog/index.js +1 -0
  42. package/dist/react/formfieldgroup/index.d.ts +4 -0
  43. package/dist/react/formfieldgroup/index.js +4 -0
  44. package/dist/react/formfieldwrapper/index.d.ts +4 -1
  45. package/dist/react/formfieldwrapper/index.js +4 -1
  46. package/dist/react/index.d.ts +2 -1
  47. package/dist/react/index.js +2 -1
  48. package/dist/react/input/index.d.ts +9 -0
  49. package/dist/react/input/index.js +9 -0
  50. package/package.json +1 -1
@@ -1766,6 +1766,1329 @@
1766
1766
  }
1767
1767
  ]
1768
1768
  },
1769
+ {
1770
+ "kind": "javascript-module",
1771
+ "path": "components/announcementdialog/announcementdialog.component.js",
1772
+ "declarations": [
1773
+ {
1774
+ "kind": "class",
1775
+ "description": "AnnouncementDialog component is a modal dialog that can be used to display announcements, extending the existing Dialog component.\nIt can be used to create custom dialogs where a illustration, content and footer actions are provided by the consumer.\nThe dialog is available in 4 sizes: medium, large, xlarge and fullscreen. It may also receive custom styling/sizing.\nThe dialog interrupts the user and will block interaction with the rest of the application until it is closed.\n\nThe dialog can be controlled solely through the `visible` property, no trigger element is required.\nIf a `triggerId` is provided, the dialog will manage focus with that element, otherwise it will\nremember the previously focused element before the dialog was opened.\n\nThe dialog is a controlled component, meaning it does not have its own state management for visibility.\nUse the `visible` property to control the visibility of the dialog.\nUse the `onClose` event to handle the close action of the dialog (fired when Close button is clicked\nor Escape is pressed).\n\n**Accessibility notes for consuming (have to be explicitly set when you consume the component)**\n\n- The dialog should have an aria-label or aria-labelledby attribute to provide a label for screen readers.\n- Use aria-labelledby to reference the ID of the element that labels the dialog when there is no visible title.\n\n**Note: Programmatic show/hide requires the ? prefix on the visible attribute**\n- Use `?visible=true/false` as an attribute instead of `visible=true/false`\n- Reference docs for more info: https://lit.dev/docs/templates/expressions/#boolean-attribute-expressions",
1776
+ "name": "AnnouncementDialog",
1777
+ "cssProperties": [
1778
+ {
1779
+ "description": "background color of the illustration section",
1780
+ "name": "--mdc-announcementdialog-illustration-background-color"
1781
+ },
1782
+ {
1783
+ "description": "primary background color of the dialog",
1784
+ "name": "--mdc-dialog-primary-background-color",
1785
+ "inheritedFrom": {
1786
+ "name": "Dialog",
1787
+ "module": "src/components/dialog/dialog.component.ts"
1788
+ }
1789
+ },
1790
+ {
1791
+ "description": "border color of the dialog",
1792
+ "name": "--mdc-dialog-border-color",
1793
+ "inheritedFrom": {
1794
+ "name": "Dialog",
1795
+ "module": "src/components/dialog/dialog.component.ts"
1796
+ }
1797
+ },
1798
+ {
1799
+ "description": "text color of the header/title of the dialog",
1800
+ "name": "--mdc-dialog-header-text-color",
1801
+ "inheritedFrom": {
1802
+ "name": "Dialog",
1803
+ "module": "src/components/dialog/dialog.component.ts"
1804
+ }
1805
+ },
1806
+ {
1807
+ "description": "text color of the below header description of the dialog",
1808
+ "name": "--mdc-dialog-description-text-color",
1809
+ "inheritedFrom": {
1810
+ "name": "Dialog",
1811
+ "module": "src/components/dialog/dialog.component.ts"
1812
+ }
1813
+ },
1814
+ {
1815
+ "description": "elevation of the dialog",
1816
+ "name": "--mdc-dialog-elevation-3",
1817
+ "inheritedFrom": {
1818
+ "name": "Dialog",
1819
+ "module": "src/components/dialog/dialog.component.ts"
1820
+ }
1821
+ },
1822
+ {
1823
+ "description": "width of the dialog",
1824
+ "name": "--mdc-dialog-width",
1825
+ "inheritedFrom": {
1826
+ "name": "Dialog",
1827
+ "module": "src/components/dialog/dialog.component.ts"
1828
+ }
1829
+ },
1830
+ {
1831
+ "description": "height of the dialog",
1832
+ "name": "--mdc-dialog-height",
1833
+ "inheritedFrom": {
1834
+ "name": "Dialog",
1835
+ "module": "src/components/dialog/dialog.component.ts"
1836
+ }
1837
+ }
1838
+ ],
1839
+ "cssParts": [
1840
+ {
1841
+ "description": "The main body container that holds the illustration and content sections",
1842
+ "name": "body"
1843
+ },
1844
+ {
1845
+ "description": "The container for the illustration section",
1846
+ "name": "illustration-container"
1847
+ },
1848
+ {
1849
+ "description": "The container for the content section",
1850
+ "name": "content-container"
1851
+ },
1852
+ {
1853
+ "description": "The header text",
1854
+ "name": "header-text"
1855
+ }
1856
+ ],
1857
+ "slots": [
1858
+ {
1859
+ "description": "Slot for the dialog header content. This can be used to pass custom header content.",
1860
+ "name": "header-prefix",
1861
+ "inheritedFrom": {
1862
+ "name": "Dialog",
1863
+ "module": "src/components/dialog/dialog.component.ts"
1864
+ }
1865
+ },
1866
+ {
1867
+ "description": "Slot for the dialog body content",
1868
+ "name": "dialog-body",
1869
+ "inheritedFrom": {
1870
+ "name": "Dialog",
1871
+ "module": "src/components/dialog/dialog.component.ts"
1872
+ }
1873
+ },
1874
+ {
1875
+ "description": "Slot for the illustration container section",
1876
+ "name": "illustration-container"
1877
+ },
1878
+ {
1879
+ "description": "Slot for the content (header, description, etc) section",
1880
+ "name": "content-container"
1881
+ },
1882
+ {
1883
+ "description": "Slot for the description in the content (below header) - pass in Text, Links etc as needed.",
1884
+ "name": "description-container"
1885
+ },
1886
+ {
1887
+ "description": "This slot is for passing `mdc-link` component within the footer section.",
1888
+ "name": "footer-link",
1889
+ "inheritedFrom": {
1890
+ "name": "Dialog",
1891
+ "module": "src/components/dialog/dialog.component.ts"
1892
+ }
1893
+ },
1894
+ {
1895
+ "description": "This slot is for passing secondary variant of `mdc-button` component within the footer section.",
1896
+ "name": "footer-button-secondary",
1897
+ "inheritedFrom": {
1898
+ "name": "Dialog",
1899
+ "module": "src/components/dialog/dialog.component.ts"
1900
+ }
1901
+ },
1902
+ {
1903
+ "description": "This slot is for passing primary variant of `mdc-button` component within the footer section.",
1904
+ "name": "footer-button-primary",
1905
+ "inheritedFrom": {
1906
+ "name": "Dialog",
1907
+ "module": "src/components/dialog/dialog.component.ts"
1908
+ }
1909
+ },
1910
+ {
1911
+ "description": " This slot is for passing custom footer content. Only use this if really needed, using the footer-link and footer-button slots is preferred",
1912
+ "name": "footer",
1913
+ "inheritedFrom": {
1914
+ "name": "Dialog",
1915
+ "module": "src/components/dialog/dialog.component.ts"
1916
+ }
1917
+ }
1918
+ ],
1919
+ "members": [
1920
+ {
1921
+ "kind": "field",
1922
+ "name": "illustration",
1923
+ "type": {
1924
+ "text": "IllustrationNames | undefined"
1925
+ },
1926
+ "description": "The illustration to display in the announcement dialog.\nThis can be an image URL, icon name, or any other illustration identifier.\n\nMake sure to choose the right illustration respective the size (the filename includes the size information, i.e. threetwozero = 320px)",
1927
+ "attribute": "illustration",
1928
+ "reflects": true
1929
+ },
1930
+ {
1931
+ "kind": "field",
1932
+ "name": "size",
1933
+ "type": {
1934
+ "text": "DialogSize"
1935
+ },
1936
+ "description": "The size of the announcement dialog, can be 'medium' (656px width), 'large' (992px width), 'xlarge' (90% width) or 'fullscreen' (100% width).",
1937
+ "default": "medium",
1938
+ "attribute": "size",
1939
+ "reflects": true,
1940
+ "inheritedFrom": {
1941
+ "name": "Dialog",
1942
+ "module": "components/dialog/dialog.component.js"
1943
+ }
1944
+ },
1945
+ {
1946
+ "kind": "method",
1947
+ "name": "renderHeader",
1948
+ "privacy": "protected"
1949
+ },
1950
+ {
1951
+ "kind": "method",
1952
+ "name": "renderBody",
1953
+ "privacy": "protected"
1954
+ },
1955
+ {
1956
+ "kind": "field",
1957
+ "name": "zIndex",
1958
+ "type": {
1959
+ "text": "number"
1960
+ },
1961
+ "description": "IMPLEMENT THIS IN YOUR COMPONENT.\n\nThe z-index of the component where the backdrop will be attached to.\nThe backdrop itself will have a z-index of `zIndex - 1`.",
1962
+ "default": "1000",
1963
+ "attribute": "z-index",
1964
+ "reflects": true,
1965
+ "inheritedFrom": {
1966
+ "name": "Dialog",
1967
+ "module": "components/dialog/dialog.component.js"
1968
+ }
1969
+ },
1970
+ {
1971
+ "kind": "method",
1972
+ "name": "activatePreventScroll",
1973
+ "privacy": "protected",
1974
+ "inheritedFrom": {
1975
+ "name": "PreventScrollMixin",
1976
+ "module": "utils/mixins/PreventScrollMixin.js"
1977
+ }
1978
+ },
1979
+ {
1980
+ "kind": "method",
1981
+ "name": "deactivatePreventScroll",
1982
+ "privacy": "protected",
1983
+ "inheritedFrom": {
1984
+ "name": "PreventScrollMixin",
1985
+ "module": "utils/mixins/PreventScrollMixin.js"
1986
+ }
1987
+ },
1988
+ {
1989
+ "kind": "field",
1990
+ "name": "focusTrap",
1991
+ "type": {
1992
+ "text": "boolean"
1993
+ },
1994
+ "description": "Determines whether the focus trap is enabled.\nIf true, focus will be restricted to the content within this component.\n\nIMPLEMENT THIS IN YOUR COMPONENT.",
1995
+ "default": "true",
1996
+ "attribute": "focus-trap",
1997
+ "reflects": true,
1998
+ "privacy": "protected",
1999
+ "inheritedFrom": {
2000
+ "name": "Dialog",
2001
+ "module": "components/dialog/dialog.component.js"
2002
+ }
2003
+ },
2004
+ {
2005
+ "kind": "field",
2006
+ "name": "shouldFocusTrapWrap",
2007
+ "type": {
2008
+ "text": "boolean"
2009
+ },
2010
+ "default": "true",
2011
+ "description": "Determines whether focus should wrap around when reaching the first or last focusable element.\nIf true, focus will cycle from end to start and vice versa.\n\nThis only applies when `focusTrap` is true.",
2012
+ "attribute": "should-focus-trap-wrap",
2013
+ "reflects": true,
2014
+ "inheritedFrom": {
2015
+ "name": "FocusTrapMixin",
2016
+ "module": "utils/mixins/FocusTrapMixin.js"
2017
+ }
2018
+ },
2019
+ {
2020
+ "kind": "method",
2021
+ "name": "setIsFocusTrapActivated",
2022
+ "privacy": "private",
2023
+ "parameters": [
2024
+ {
2025
+ "name": "isActivated",
2026
+ "type": {
2027
+ "text": "boolean"
2028
+ }
2029
+ }
2030
+ ],
2031
+ "inheritedFrom": {
2032
+ "name": "FocusTrapMixin",
2033
+ "module": "utils/mixins/FocusTrapMixin.js"
2034
+ }
2035
+ },
2036
+ {
2037
+ "kind": "method",
2038
+ "name": "activateFocusTrap",
2039
+ "privacy": "public",
2040
+ "description": "Activate the focus trap",
2041
+ "inheritedFrom": {
2042
+ "name": "FocusTrapMixin",
2043
+ "module": "utils/mixins/FocusTrapMixin.js"
2044
+ }
2045
+ },
2046
+ {
2047
+ "kind": "method",
2048
+ "name": "deactivateFocusTrap",
2049
+ "privacy": "public",
2050
+ "description": "Deactivate the focus trap.",
2051
+ "inheritedFrom": {
2052
+ "name": "FocusTrapMixin",
2053
+ "module": "utils/mixins/FocusTrapMixin.js"
2054
+ }
2055
+ },
2056
+ {
2057
+ "kind": "method",
2058
+ "name": "hasNoClientRects",
2059
+ "privacy": "private",
2060
+ "parameters": [
2061
+ {
2062
+ "name": "element",
2063
+ "type": {
2064
+ "text": "HTMLElement"
2065
+ },
2066
+ "description": "The element to check."
2067
+ }
2068
+ ],
2069
+ "description": "Checks if the element has no client rectangles (not visible in the viewport).",
2070
+ "return": {
2071
+ "type": {
2072
+ "text": ""
2073
+ }
2074
+ },
2075
+ "inheritedFrom": {
2076
+ "name": "FocusTrapMixin",
2077
+ "module": "utils/mixins/FocusTrapMixin.js"
2078
+ }
2079
+ },
2080
+ {
2081
+ "kind": "method",
2082
+ "name": "hasZeroDimensions",
2083
+ "privacy": "private",
2084
+ "parameters": [
2085
+ {
2086
+ "name": "element",
2087
+ "type": {
2088
+ "text": "HTMLElement"
2089
+ },
2090
+ "description": "The element to check."
2091
+ }
2092
+ ],
2093
+ "description": "Checks if the element has zero dimensions (width and height are both 0).",
2094
+ "return": {
2095
+ "type": {
2096
+ "text": ""
2097
+ }
2098
+ },
2099
+ "inheritedFrom": {
2100
+ "name": "FocusTrapMixin",
2101
+ "module": "utils/mixins/FocusTrapMixin.js"
2102
+ }
2103
+ },
2104
+ {
2105
+ "kind": "method",
2106
+ "name": "isNotVisible",
2107
+ "privacy": "private",
2108
+ "parameters": [
2109
+ {
2110
+ "name": "element",
2111
+ "type": {
2112
+ "text": "HTMLElement"
2113
+ },
2114
+ "description": "The element to check."
2115
+ }
2116
+ ],
2117
+ "description": "Determines if the element is not visible in the DOM.",
2118
+ "return": {
2119
+ "type": {
2120
+ "text": ""
2121
+ }
2122
+ },
2123
+ "inheritedFrom": {
2124
+ "name": "FocusTrapMixin",
2125
+ "module": "utils/mixins/FocusTrapMixin.js"
2126
+ }
2127
+ },
2128
+ {
2129
+ "kind": "method",
2130
+ "name": "hasHiddenStyle",
2131
+ "privacy": "private",
2132
+ "parameters": [
2133
+ {
2134
+ "name": "element",
2135
+ "type": {
2136
+ "text": "HTMLElement"
2137
+ },
2138
+ "description": "The element to check."
2139
+ }
2140
+ ],
2141
+ "description": "Checks if the element has inline styles that make it hidden.",
2142
+ "return": {
2143
+ "type": {
2144
+ "text": ""
2145
+ }
2146
+ },
2147
+ "inheritedFrom": {
2148
+ "name": "FocusTrapMixin",
2149
+ "module": "utils/mixins/FocusTrapMixin.js"
2150
+ }
2151
+ },
2152
+ {
2153
+ "kind": "method",
2154
+ "name": "hasComputedHidden",
2155
+ "privacy": "private",
2156
+ "parameters": [
2157
+ {
2158
+ "name": "element",
2159
+ "type": {
2160
+ "text": "HTMLElement"
2161
+ },
2162
+ "description": "The element to check."
2163
+ }
2164
+ ],
2165
+ "description": "Checks if the element is hidden by a computed style.",
2166
+ "return": {
2167
+ "type": {
2168
+ "text": ""
2169
+ }
2170
+ },
2171
+ "inheritedFrom": {
2172
+ "name": "FocusTrapMixin",
2173
+ "module": "utils/mixins/FocusTrapMixin.js"
2174
+ }
2175
+ },
2176
+ {
2177
+ "kind": "method",
2178
+ "name": "isHidden",
2179
+ "privacy": "private",
2180
+ "parameters": [
2181
+ {
2182
+ "name": "element",
2183
+ "type": {
2184
+ "text": "HTMLElement"
2185
+ },
2186
+ "description": "The element to check."
2187
+ }
2188
+ ],
2189
+ "description": "Checks if the element is hidden from the user.",
2190
+ "return": {
2191
+ "type": {
2192
+ "text": ""
2193
+ }
2194
+ },
2195
+ "inheritedFrom": {
2196
+ "name": "FocusTrapMixin",
2197
+ "module": "utils/mixins/FocusTrapMixin.js"
2198
+ }
2199
+ },
2200
+ {
2201
+ "kind": "method",
2202
+ "name": "isDisabled",
2203
+ "privacy": "private",
2204
+ "parameters": [
2205
+ {
2206
+ "name": "element",
2207
+ "type": {
2208
+ "text": "any"
2209
+ },
2210
+ "description": "The element to check."
2211
+ }
2212
+ ],
2213
+ "description": "Checks if the element is disabled.",
2214
+ "return": {
2215
+ "type": {
2216
+ "text": ""
2217
+ }
2218
+ },
2219
+ "inheritedFrom": {
2220
+ "name": "FocusTrapMixin",
2221
+ "module": "utils/mixins/FocusTrapMixin.js"
2222
+ }
2223
+ },
2224
+ {
2225
+ "kind": "method",
2226
+ "name": "isNotTabbable",
2227
+ "privacy": "private",
2228
+ "parameters": [
2229
+ {
2230
+ "name": "element",
2231
+ "type": {
2232
+ "text": "HTMLElement"
2233
+ },
2234
+ "description": "The element to check."
2235
+ }
2236
+ ],
2237
+ "description": "Checks if the element is not tabbable.",
2238
+ "return": {
2239
+ "type": {
2240
+ "text": ""
2241
+ }
2242
+ },
2243
+ "inheritedFrom": {
2244
+ "name": "FocusTrapMixin",
2245
+ "module": "utils/mixins/FocusTrapMixin.js"
2246
+ }
2247
+ },
2248
+ {
2249
+ "kind": "method",
2250
+ "name": "isInteractiveElement",
2251
+ "privacy": "private",
2252
+ "return": {
2253
+ "type": {
2254
+ "text": ""
2255
+ }
2256
+ },
2257
+ "parameters": [
2258
+ {
2259
+ "name": "element",
2260
+ "type": {
2261
+ "text": "HTMLElement"
2262
+ },
2263
+ "description": "The element to check."
2264
+ }
2265
+ ],
2266
+ "description": "Checks if the element is interactive.",
2267
+ "inheritedFrom": {
2268
+ "name": "FocusTrapMixin",
2269
+ "module": "utils/mixins/FocusTrapMixin.js"
2270
+ }
2271
+ },
2272
+ {
2273
+ "kind": "method",
2274
+ "name": "isFocusable",
2275
+ "privacy": "private",
2276
+ "parameters": [
2277
+ {
2278
+ "name": "element",
2279
+ "type": {
2280
+ "text": "HTMLElement"
2281
+ },
2282
+ "description": "The element to check."
2283
+ }
2284
+ ],
2285
+ "description": "Checks if the element is focusable.",
2286
+ "return": {
2287
+ "type": {
2288
+ "text": ""
2289
+ }
2290
+ },
2291
+ "inheritedFrom": {
2292
+ "name": "FocusTrapMixin",
2293
+ "module": "utils/mixins/FocusTrapMixin.js"
2294
+ }
2295
+ },
2296
+ {
2297
+ "kind": "method",
2298
+ "name": "findFocusable",
2299
+ "privacy": "private",
2300
+ "return": {
2301
+ "type": {
2302
+ "text": ""
2303
+ }
2304
+ },
2305
+ "parameters": [
2306
+ {
2307
+ "name": "root",
2308
+ "type": {
2309
+ "text": "ShadowRoot | HTMLElement"
2310
+ },
2311
+ "description": "The root element to search for focusable elements."
2312
+ },
2313
+ {
2314
+ "name": "matches",
2315
+ "default": "new Set()",
2316
+ "type": {
2317
+ "text": "Set<HTMLElement>"
2318
+ },
2319
+ "description": "The set of focusable elements."
2320
+ }
2321
+ ],
2322
+ "description": "Recursively finds all focusable elements within the given root and its descendants.\n\nMake sure this is performant, as it will be called multiple times.",
2323
+ "inheritedFrom": {
2324
+ "name": "FocusTrapMixin",
2325
+ "module": "utils/mixins/FocusTrapMixin.js"
2326
+ }
2327
+ },
2328
+ {
2329
+ "kind": "method",
2330
+ "name": "setFocusableElements",
2331
+ "privacy": "private",
2332
+ "description": "Updates the list of focusable elements within the component's shadow root.",
2333
+ "inheritedFrom": {
2334
+ "name": "FocusTrapMixin",
2335
+ "module": "utils/mixins/FocusTrapMixin.js"
2336
+ }
2337
+ },
2338
+ {
2339
+ "kind": "method",
2340
+ "name": "setInitialFocus",
2341
+ "privacy": "public",
2342
+ "parameters": [
2343
+ {
2344
+ "name": "elementIndexToReceiveFocus",
2345
+ "default": "0",
2346
+ "type": {
2347
+ "text": "number"
2348
+ },
2349
+ "description": "The index of the preferable element to focus."
2350
+ }
2351
+ ],
2352
+ "description": "Sets the initial focus within the container.",
2353
+ "inheritedFrom": {
2354
+ "name": "FocusTrapMixin",
2355
+ "module": "utils/mixins/FocusTrapMixin.js"
2356
+ }
2357
+ },
2358
+ {
2359
+ "kind": "method",
2360
+ "name": "calculateNextIndex",
2361
+ "privacy": "private",
2362
+ "parameters": [
2363
+ {
2364
+ "name": "currentIndex",
2365
+ "type": {
2366
+ "text": "number"
2367
+ },
2368
+ "description": "The current index."
2369
+ },
2370
+ {
2371
+ "name": "step",
2372
+ "type": {
2373
+ "text": "number"
2374
+ },
2375
+ "description": "The step to calculate the next index."
2376
+ }
2377
+ ],
2378
+ "description": "Calculates the next index for the focus trap.",
2379
+ "return": {
2380
+ "type": {
2381
+ "text": ""
2382
+ }
2383
+ },
2384
+ "inheritedFrom": {
2385
+ "name": "FocusTrapMixin",
2386
+ "module": "utils/mixins/FocusTrapMixin.js"
2387
+ }
2388
+ },
2389
+ {
2390
+ "kind": "method",
2391
+ "name": "getDeepActiveElement",
2392
+ "privacy": "private",
2393
+ "description": "Returns the deepest active element in the shadow DOM.",
2394
+ "return": {
2395
+ "type": {
2396
+ "text": ""
2397
+ }
2398
+ },
2399
+ "inheritedFrom": {
2400
+ "name": "FocusTrapMixin",
2401
+ "module": "utils/mixins/FocusTrapMixin.js"
2402
+ }
2403
+ },
2404
+ {
2405
+ "kind": "method",
2406
+ "name": "findElement",
2407
+ "privacy": "private",
2408
+ "parameters": [
2409
+ {
2410
+ "name": "activeElement",
2411
+ "type": {
2412
+ "text": "HTMLElement"
2413
+ },
2414
+ "description": "The active element."
2415
+ }
2416
+ ],
2417
+ "description": "Finds the index of the active element within the focusable elements.",
2418
+ "return": {
2419
+ "type": {
2420
+ "text": ""
2421
+ }
2422
+ },
2423
+ "inheritedFrom": {
2424
+ "name": "FocusTrapMixin",
2425
+ "module": "utils/mixins/FocusTrapMixin.js"
2426
+ }
2427
+ },
2428
+ {
2429
+ "kind": "method",
2430
+ "name": "isEqualFocusNode",
2431
+ "privacy": "private",
2432
+ "parameters": [
2433
+ {
2434
+ "name": "activeElement",
2435
+ "type": {
2436
+ "text": "HTMLElement"
2437
+ },
2438
+ "description": "The active element."
2439
+ },
2440
+ {
2441
+ "name": "element",
2442
+ "type": {
2443
+ "text": "HTMLElement"
2444
+ },
2445
+ "description": "The element to compare."
2446
+ }
2447
+ ],
2448
+ "description": "Checks if the active element is equal to the given element.",
2449
+ "return": {
2450
+ "type": {
2451
+ "text": ""
2452
+ }
2453
+ },
2454
+ "inheritedFrom": {
2455
+ "name": "FocusTrapMixin",
2456
+ "module": "utils/mixins/FocusTrapMixin.js"
2457
+ }
2458
+ },
2459
+ {
2460
+ "kind": "method",
2461
+ "name": "trapFocus",
2462
+ "privacy": "private",
2463
+ "parameters": [
2464
+ {
2465
+ "name": "event",
2466
+ "type": {
2467
+ "text": "KeyboardEvent"
2468
+ }
2469
+ },
2470
+ {
2471
+ "description": "The direction of the focus trap.\nIf true, the focus will be trapped in the previous element.",
2472
+ "name": "direction"
2473
+ }
2474
+ ],
2475
+ "description": "Traps focus within the container.",
2476
+ "inheritedFrom": {
2477
+ "name": "FocusTrapMixin",
2478
+ "module": "utils/mixins/FocusTrapMixin.js"
2479
+ }
2480
+ },
2481
+ {
2482
+ "kind": "method",
2483
+ "name": "handleTabKeydown",
2484
+ "privacy": "private",
2485
+ "parameters": [
2486
+ {
2487
+ "name": "event",
2488
+ "type": {
2489
+ "text": "KeyboardEvent"
2490
+ },
2491
+ "description": "The keyboard event."
2492
+ }
2493
+ ],
2494
+ "description": "Traps focus within the container.",
2495
+ "inheritedFrom": {
2496
+ "name": "FocusTrapMixin",
2497
+ "module": "utils/mixins/FocusTrapMixin.js"
2498
+ }
2499
+ },
2500
+ {
2501
+ "kind": "method",
2502
+ "name": "renderFooter",
2503
+ "privacy": "protected",
2504
+ "description": "Renders the footer of the card if footer-link,\nfooter-button-primary, or footer-button-secondary slots are provided",
2505
+ "return": {
2506
+ "type": {
2507
+ "text": ""
2508
+ }
2509
+ },
2510
+ "inheritedFrom": {
2511
+ "name": "FooterMixin",
2512
+ "module": "utils/mixins/FooterMixin.js"
2513
+ }
2514
+ },
2515
+ {
2516
+ "kind": "field",
2517
+ "name": "id",
2518
+ "type": {
2519
+ "text": "string"
2520
+ },
2521
+ "default": "''",
2522
+ "description": "The unique ID of the dialog",
2523
+ "attribute": "id",
2524
+ "reflects": true,
2525
+ "inheritedFrom": {
2526
+ "name": "Dialog",
2527
+ "module": "components/dialog/dialog.component.js"
2528
+ }
2529
+ },
2530
+ {
2531
+ "kind": "field",
2532
+ "name": "triggerId",
2533
+ "type": {
2534
+ "text": "string | undefined"
2535
+ },
2536
+ "description": "The ID of the element that triggers the dialog",
2537
+ "default": "undefined",
2538
+ "attribute": "triggerId",
2539
+ "reflects": true,
2540
+ "inheritedFrom": {
2541
+ "name": "Dialog",
2542
+ "module": "components/dialog/dialog.component.js"
2543
+ }
2544
+ },
2545
+ {
2546
+ "kind": "field",
2547
+ "name": "visible",
2548
+ "type": {
2549
+ "text": "boolean"
2550
+ },
2551
+ "description": "The visibility of the dialog\n\nDialog is a controlled component, visible is the only property that controls the visibility of the dialog.",
2552
+ "default": "false",
2553
+ "attribute": "visible",
2554
+ "reflects": true,
2555
+ "inheritedFrom": {
2556
+ "name": "Dialog",
2557
+ "module": "components/dialog/dialog.component.js"
2558
+ }
2559
+ },
2560
+ {
2561
+ "kind": "field",
2562
+ "name": "variant",
2563
+ "type": {
2564
+ "text": "DialogVariant"
2565
+ },
2566
+ "description": "The variant of the dialog, can be 'default' or 'promotional'",
2567
+ "default": "default",
2568
+ "attribute": "variant",
2569
+ "reflects": true,
2570
+ "inheritedFrom": {
2571
+ "name": "Dialog",
2572
+ "module": "components/dialog/dialog.component.js"
2573
+ }
2574
+ },
2575
+ {
2576
+ "kind": "field",
2577
+ "name": "closeButtonAriaLabel",
2578
+ "type": {
2579
+ "text": "string | null"
2580
+ },
2581
+ "default": "null",
2582
+ "description": "Defines a string value for the aria-label attribute for close button accessibility",
2583
+ "attribute": "close-button-aria-label",
2584
+ "inheritedFrom": {
2585
+ "name": "Dialog",
2586
+ "module": "components/dialog/dialog.component.js"
2587
+ }
2588
+ },
2589
+ {
2590
+ "kind": "field",
2591
+ "name": "ariaLabel",
2592
+ "type": {
2593
+ "text": "string | null"
2594
+ },
2595
+ "default": "null",
2596
+ "description": "Defines a string value for the aria-label attribute when header is not used",
2597
+ "attribute": "aria-label",
2598
+ "reflects": true,
2599
+ "inheritedFrom": {
2600
+ "name": "Dialog",
2601
+ "module": "components/dialog/dialog.component.js"
2602
+ }
2603
+ },
2604
+ {
2605
+ "kind": "field",
2606
+ "name": "ariaLabelledby",
2607
+ "type": {
2608
+ "text": "string | null"
2609
+ },
2610
+ "default": "null",
2611
+ "description": "Defines a string value for the aria-labelledby attribute that refers to the element\nlabeling the dialog for accessibility",
2612
+ "attribute": "aria-labelledby",
2613
+ "reflects": true,
2614
+ "inheritedFrom": {
2615
+ "name": "Dialog",
2616
+ "module": "components/dialog/dialog.component.js"
2617
+ }
2618
+ },
2619
+ {
2620
+ "kind": "field",
2621
+ "name": "ariaDescribedBy",
2622
+ "type": {
2623
+ "text": "string | null"
2624
+ },
2625
+ "default": "null",
2626
+ "description": "Defines a string value for the aria-describedby attribute that refers to the element\ndescribing the dialog for accessibility",
2627
+ "attribute": "aria-describedby",
2628
+ "reflects": true,
2629
+ "inheritedFrom": {
2630
+ "name": "Dialog",
2631
+ "module": "components/dialog/dialog.component.js"
2632
+ }
2633
+ },
2634
+ {
2635
+ "kind": "field",
2636
+ "name": "ariaDescription",
2637
+ "type": {
2638
+ "text": "string | null"
2639
+ },
2640
+ "default": "null",
2641
+ "description": "Defines a string value for the aria-description attribute that refers to the element\ndescribing the dialog for accessibility",
2642
+ "attribute": "aria-description",
2643
+ "reflects": true,
2644
+ "inheritedFrom": {
2645
+ "name": "Dialog",
2646
+ "module": "components/dialog/dialog.component.js"
2647
+ }
2648
+ },
2649
+ {
2650
+ "kind": "field",
2651
+ "name": "headerText",
2652
+ "type": {
2653
+ "text": "string | undefined"
2654
+ },
2655
+ "description": "Defines a string value to display as the title of the dialog",
2656
+ "attribute": "header-text",
2657
+ "reflects": true,
2658
+ "inheritedFrom": {
2659
+ "name": "Dialog",
2660
+ "module": "components/dialog/dialog.component.js"
2661
+ }
2662
+ },
2663
+ {
2664
+ "kind": "field",
2665
+ "name": "descriptionText",
2666
+ "type": {
2667
+ "text": "string | undefined"
2668
+ },
2669
+ "description": "Defines a string value to display as the under-header description of the dialog",
2670
+ "attribute": "description-text",
2671
+ "reflects": true,
2672
+ "inheritedFrom": {
2673
+ "name": "Dialog",
2674
+ "module": "components/dialog/dialog.component.js"
2675
+ }
2676
+ },
2677
+ {
2678
+ "kind": "field",
2679
+ "name": "headerTagName",
2680
+ "type": {
2681
+ "text": "string"
2682
+ },
2683
+ "description": "The html tag to be used for the header text",
2684
+ "attribute": "header-tag-name",
2685
+ "reflects": true,
2686
+ "inheritedFrom": {
2687
+ "name": "Dialog",
2688
+ "module": "components/dialog/dialog.component.js"
2689
+ }
2690
+ },
2691
+ {
2692
+ "kind": "field",
2693
+ "name": "descriptionTagName",
2694
+ "type": {
2695
+ "text": "string"
2696
+ },
2697
+ "description": "The html tag to be used for the below-header description text",
2698
+ "attribute": "description-tag-name",
2699
+ "reflects": true,
2700
+ "inheritedFrom": {
2701
+ "name": "Dialog",
2702
+ "module": "components/dialog/dialog.component.js"
2703
+ }
2704
+ },
2705
+ {
2706
+ "kind": "field",
2707
+ "name": "role",
2708
+ "type": {
2709
+ "text": "DialogRole"
2710
+ },
2711
+ "description": "Role of the dialog",
2712
+ "default": "dialog",
2713
+ "attribute": "role",
2714
+ "reflects": true,
2715
+ "inheritedFrom": {
2716
+ "name": "Dialog",
2717
+ "module": "components/dialog/dialog.component.js"
2718
+ }
2719
+ },
2720
+ {
2721
+ "kind": "field",
2722
+ "name": "disableAriaHasPopup",
2723
+ "type": {
2724
+ "text": "boolean"
2725
+ },
2726
+ "description": "Disable setting the aria-haspopup attribute on trigger element.\nMake sure to set this to true when the popover is extended and its role\nis not 'dialog' or 'alertdialog' i.e. listbox, menu, etc.",
2727
+ "default": "false",
2728
+ "attribute": "disable-aria-haspopup",
2729
+ "reflects": true,
2730
+ "inheritedFrom": {
2731
+ "name": "Dialog",
2732
+ "module": "components/dialog/dialog.component.js"
2733
+ }
2734
+ },
2735
+ {
2736
+ "kind": "method",
2737
+ "name": "closeDialog",
2738
+ "privacy": "private",
2739
+ "description": "Fired when Close Button is clicked or Escape key is pressed.\nThis method dispatches the close event. Setting visible to false\nhas to be done by the consumer of the component.",
2740
+ "inheritedFrom": {
2741
+ "name": "Dialog",
2742
+ "module": "components/dialog/dialog.component.js"
2743
+ }
2744
+ },
2745
+ {
2746
+ "kind": "method",
2747
+ "name": "isOpenUpdated",
2748
+ "privacy": "private",
2749
+ "parameters": [
2750
+ {
2751
+ "name": "oldValue",
2752
+ "type": {
2753
+ "text": "boolean | undefined"
2754
+ },
2755
+ "description": "The old value of the visible property."
2756
+ },
2757
+ {
2758
+ "name": "newValue",
2759
+ "type": {
2760
+ "text": "boolean"
2761
+ },
2762
+ "description": "The new value of the visible property."
2763
+ }
2764
+ ],
2765
+ "description": "Handles the dialog visibility change.\nHandles the exit event to close the dialog.",
2766
+ "inheritedFrom": {
2767
+ "name": "Dialog",
2768
+ "module": "components/dialog/dialog.component.js"
2769
+ }
2770
+ }
2771
+ ],
2772
+ "events": [
2773
+ {
2774
+ "description": "(React: onShown) Dispatched when the dialog is shown",
2775
+ "name": "shown",
2776
+ "reactName": "onShown",
2777
+ "inheritedFrom": {
2778
+ "name": "Dialog",
2779
+ "module": "src/components/dialog/dialog.component.ts"
2780
+ }
2781
+ },
2782
+ {
2783
+ "description": "(React: onHidden) Dispatched when the dialog is hidden",
2784
+ "name": "hidden",
2785
+ "reactName": "onHidden",
2786
+ "inheritedFrom": {
2787
+ "name": "Dialog",
2788
+ "module": "src/components/dialog/dialog.component.ts"
2789
+ }
2790
+ },
2791
+ {
2792
+ "description": "(React: onCreated) Dispatched when the dialog is created (added to the DOM)",
2793
+ "name": "created",
2794
+ "reactName": "onCreated",
2795
+ "inheritedFrom": {
2796
+ "name": "Dialog",
2797
+ "module": "src/components/dialog/dialog.component.ts"
2798
+ }
2799
+ },
2800
+ {
2801
+ "description": "(React: onDestroyed) Dispatched when the dialog is destroyed (removed from the DOM)",
2802
+ "name": "destroyed",
2803
+ "reactName": "onDestroyed",
2804
+ "inheritedFrom": {
2805
+ "name": "Dialog",
2806
+ "module": "src/components/dialog/dialog.component.ts"
2807
+ }
2808
+ },
2809
+ {
2810
+ "description": "(React: onClose) Dispatched when the Close Button is clicked or Escape key is pressed (this does not hide the dialog)",
2811
+ "name": "close",
2812
+ "reactName": "onClose",
2813
+ "inheritedFrom": {
2814
+ "name": "Dialog",
2815
+ "module": "src/components/dialog/dialog.component.ts"
2816
+ }
2817
+ }
2818
+ ],
2819
+ "attributes": [
2820
+ {
2821
+ "name": "illustration",
2822
+ "type": {
2823
+ "text": "IllustrationNames | undefined"
2824
+ },
2825
+ "description": "The illustration to display in the announcement dialog.\nThis can be an image URL, icon name, or any other illustration identifier.\n\nMake sure to choose the right illustration respective the size (the filename includes the size information, i.e. threetwozero = 320px)",
2826
+ "fieldName": "illustration"
2827
+ },
2828
+ {
2829
+ "name": "size",
2830
+ "type": {
2831
+ "text": "DialogSize"
2832
+ },
2833
+ "description": "The size of the announcement dialog, can be 'medium' (656px width), 'large' (992px width), 'xlarge' (90% width) or 'fullscreen' (100% width).",
2834
+ "default": "medium",
2835
+ "fieldName": "size",
2836
+ "inheritedFrom": {
2837
+ "name": "Dialog",
2838
+ "module": "src/components/dialog/dialog.component.ts"
2839
+ }
2840
+ },
2841
+ {
2842
+ "name": "should-focus-trap-wrap",
2843
+ "type": {
2844
+ "text": "boolean"
2845
+ },
2846
+ "default": "true",
2847
+ "description": "Determines whether focus should wrap around when reaching the first or last focusable element.\nIf true, focus will cycle from end to start and vice versa.\n\nThis only applies when `focusTrap` is true.",
2848
+ "fieldName": "shouldFocusTrapWrap",
2849
+ "inheritedFrom": {
2850
+ "name": "FocusTrapMixin",
2851
+ "module": "src/utils/mixins/FocusTrapMixin.ts"
2852
+ }
2853
+ },
2854
+ {
2855
+ "name": "id",
2856
+ "type": {
2857
+ "text": "string"
2858
+ },
2859
+ "default": "''",
2860
+ "description": "The unique ID of the dialog",
2861
+ "fieldName": "id",
2862
+ "inheritedFrom": {
2863
+ "name": "Dialog",
2864
+ "module": "src/components/dialog/dialog.component.ts"
2865
+ }
2866
+ },
2867
+ {
2868
+ "name": "triggerId",
2869
+ "type": {
2870
+ "text": "string | undefined"
2871
+ },
2872
+ "description": "The ID of the element that triggers the dialog",
2873
+ "default": "undefined",
2874
+ "fieldName": "triggerId",
2875
+ "inheritedFrom": {
2876
+ "name": "Dialog",
2877
+ "module": "src/components/dialog/dialog.component.ts"
2878
+ }
2879
+ },
2880
+ {
2881
+ "name": "visible",
2882
+ "type": {
2883
+ "text": "boolean"
2884
+ },
2885
+ "description": "The visibility of the dialog\n\nDialog is a controlled component, visible is the only property that controls the visibility of the dialog.",
2886
+ "default": "false",
2887
+ "fieldName": "visible",
2888
+ "inheritedFrom": {
2889
+ "name": "Dialog",
2890
+ "module": "src/components/dialog/dialog.component.ts"
2891
+ }
2892
+ },
2893
+ {
2894
+ "name": "z-index",
2895
+ "type": {
2896
+ "text": "number"
2897
+ },
2898
+ "description": "The z-index of the dialog\n\nThe backdrop will have z-index of `zIndex - 1`",
2899
+ "default": "1000",
2900
+ "fieldName": "zIndex",
2901
+ "inheritedFrom": {
2902
+ "name": "Dialog",
2903
+ "module": "src/components/dialog/dialog.component.ts"
2904
+ }
2905
+ },
2906
+ {
2907
+ "name": "variant",
2908
+ "type": {
2909
+ "text": "DialogVariant"
2910
+ },
2911
+ "description": "The variant of the dialog, can be 'default' or 'promotional'",
2912
+ "default": "default",
2913
+ "fieldName": "variant",
2914
+ "inheritedFrom": {
2915
+ "name": "Dialog",
2916
+ "module": "src/components/dialog/dialog.component.ts"
2917
+ }
2918
+ },
2919
+ {
2920
+ "name": "close-button-aria-label",
2921
+ "type": {
2922
+ "text": "string | null"
2923
+ },
2924
+ "default": "null",
2925
+ "description": "Defines a string value for the aria-label attribute for close button accessibility",
2926
+ "fieldName": "closeButtonAriaLabel",
2927
+ "inheritedFrom": {
2928
+ "name": "Dialog",
2929
+ "module": "src/components/dialog/dialog.component.ts"
2930
+ }
2931
+ },
2932
+ {
2933
+ "name": "aria-label",
2934
+ "type": {
2935
+ "text": "string | null"
2936
+ },
2937
+ "default": "null",
2938
+ "description": "Defines a string value for the aria-label attribute when header is not used",
2939
+ "fieldName": "ariaLabel",
2940
+ "inheritedFrom": {
2941
+ "name": "Dialog",
2942
+ "module": "src/components/dialog/dialog.component.ts"
2943
+ }
2944
+ },
2945
+ {
2946
+ "name": "aria-labelledby",
2947
+ "type": {
2948
+ "text": "string | null"
2949
+ },
2950
+ "default": "null",
2951
+ "description": "Defines a string value for the aria-labelledby attribute that refers to the element\nlabeling the dialog for accessibility",
2952
+ "fieldName": "ariaLabelledby",
2953
+ "inheritedFrom": {
2954
+ "name": "Dialog",
2955
+ "module": "src/components/dialog/dialog.component.ts"
2956
+ }
2957
+ },
2958
+ {
2959
+ "name": "aria-describedby",
2960
+ "type": {
2961
+ "text": "string | null"
2962
+ },
2963
+ "default": "null",
2964
+ "description": "Defines a string value for the aria-describedby attribute that refers to the element\ndescribing the dialog for accessibility",
2965
+ "fieldName": "ariaDescribedBy",
2966
+ "inheritedFrom": {
2967
+ "name": "Dialog",
2968
+ "module": "src/components/dialog/dialog.component.ts"
2969
+ }
2970
+ },
2971
+ {
2972
+ "name": "aria-description",
2973
+ "type": {
2974
+ "text": "string | null"
2975
+ },
2976
+ "default": "null",
2977
+ "description": "Defines a string value for the aria-description attribute that refers to the element\ndescribing the dialog for accessibility",
2978
+ "fieldName": "ariaDescription",
2979
+ "inheritedFrom": {
2980
+ "name": "Dialog",
2981
+ "module": "src/components/dialog/dialog.component.ts"
2982
+ }
2983
+ },
2984
+ {
2985
+ "name": "header-text",
2986
+ "type": {
2987
+ "text": "string | undefined"
2988
+ },
2989
+ "description": "Defines a string value to display as the title of the dialog",
2990
+ "fieldName": "headerText",
2991
+ "inheritedFrom": {
2992
+ "name": "Dialog",
2993
+ "module": "src/components/dialog/dialog.component.ts"
2994
+ }
2995
+ },
2996
+ {
2997
+ "name": "description-text",
2998
+ "type": {
2999
+ "text": "string | undefined"
3000
+ },
3001
+ "description": "Defines a string value to display as the under-header description of the dialog",
3002
+ "fieldName": "descriptionText",
3003
+ "inheritedFrom": {
3004
+ "name": "Dialog",
3005
+ "module": "src/components/dialog/dialog.component.ts"
3006
+ }
3007
+ },
3008
+ {
3009
+ "name": "header-tag-name",
3010
+ "type": {
3011
+ "text": "string"
3012
+ },
3013
+ "description": "The html tag to be used for the header text",
3014
+ "fieldName": "headerTagName",
3015
+ "inheritedFrom": {
3016
+ "name": "Dialog",
3017
+ "module": "src/components/dialog/dialog.component.ts"
3018
+ }
3019
+ },
3020
+ {
3021
+ "name": "description-tag-name",
3022
+ "type": {
3023
+ "text": "string"
3024
+ },
3025
+ "description": "The html tag to be used for the below-header description text",
3026
+ "fieldName": "descriptionTagName",
3027
+ "inheritedFrom": {
3028
+ "name": "Dialog",
3029
+ "module": "src/components/dialog/dialog.component.ts"
3030
+ }
3031
+ },
3032
+ {
3033
+ "name": "role",
3034
+ "type": {
3035
+ "text": "DialogRole"
3036
+ },
3037
+ "description": "Role of the dialog",
3038
+ "default": "dialog",
3039
+ "fieldName": "role",
3040
+ "inheritedFrom": {
3041
+ "name": "Dialog",
3042
+ "module": "src/components/dialog/dialog.component.ts"
3043
+ }
3044
+ },
3045
+ {
3046
+ "name": "disable-aria-haspopup",
3047
+ "type": {
3048
+ "text": "boolean"
3049
+ },
3050
+ "description": "Disable setting the aria-haspopup attribute on trigger element.\nMake sure to set this to true when the popover is extended and its role\nis not 'dialog' or 'alertdialog' i.e. listbox, menu, etc.",
3051
+ "default": "false",
3052
+ "fieldName": "disableAriaHasPopup",
3053
+ "inheritedFrom": {
3054
+ "name": "Dialog",
3055
+ "module": "src/components/dialog/dialog.component.ts"
3056
+ }
3057
+ },
3058
+ {
3059
+ "name": "focus-trap",
3060
+ "type": {
3061
+ "text": "boolean"
3062
+ },
3063
+ "description": "Determines whether the focus trap is enabled.\nIf true, focus will be restricted to the content within this component.\n\nNOTE: this should only be disabled in rare cases! By default a Modal Dialog\nshould trap focus always.",
3064
+ "default": "true",
3065
+ "fieldName": "focusTrap",
3066
+ "inheritedFrom": {
3067
+ "name": "Dialog",
3068
+ "module": "src/components/dialog/dialog.component.ts"
3069
+ }
3070
+ }
3071
+ ],
3072
+ "superclass": {
3073
+ "name": "Dialog",
3074
+ "module": "/src/components/dialog/dialog.component"
3075
+ },
3076
+ "tagName": "mdc-announcementdialog",
3077
+ "jsDoc": "/**\n * AnnouncementDialog component is a modal dialog that can be used to display announcements, extending the existing Dialog component.\n * It can be used to create custom dialogs where a illustration, content and footer actions are provided by the consumer.\n * The dialog is available in 4 sizes: medium, large, xlarge and fullscreen. It may also receive custom styling/sizing.\n * The dialog interrupts the user and will block interaction with the rest of the application until it is closed.\n *\n * The dialog can be controlled solely through the `visible` property, no trigger element is required.\n * If a `triggerId` is provided, the dialog will manage focus with that element, otherwise it will\n * remember the previously focused element before the dialog was opened.\n *\n * The dialog is a controlled component, meaning it does not have its own state management for visibility.\n * Use the `visible` property to control the visibility of the dialog.\n * Use the `onClose` event to handle the close action of the dialog (fired when Close button is clicked\n * or Escape is pressed).\n *\n * **Accessibility notes for consuming (have to be explicitly set when you consume the component)**\n *\n * - The dialog should have an aria-label or aria-labelledby attribute to provide a label for screen readers.\n * - Use aria-labelledby to reference the ID of the element that labels the dialog when there is no visible title.\n *\n * **Note: Programmatic show/hide requires the ? prefix on the visible attribute**\n * - Use `?visible=true/false` as an attribute instead of `visible=true/false`\n * - Reference docs for more info: https://lit.dev/docs/templates/expressions/#boolean-attribute-expressions\n *\n * @dependency mdc-button\n * @dependency mdc-illustration\n * @dependency mdc-text\n *\n * @tagname mdc-announcementdialog\n *\n * @event shown - (React: onShown) Dispatched when the dialog is shown\n * @event hidden - (React: onHidden) Dispatched when the dialog is hidden\n * @event created - (React: onCreated) Dispatched when the dialog is created (added to the DOM)\n * @event destroyed - (React: onDestroyed) Dispatched when the dialog is destroyed (removed from the DOM)\n * @event close - (React: onClose) Dispatched when the Close Button is clicked or Escape key is pressed\n * (this does not hide the dialog)\n *\n * @cssproperty --mdc-announcementdialog-illustration-background-color - background color of the illustration section\n * @cssproperty --mdc-dialog-primary-background-color - primary background color of the dialog\n * @cssproperty --mdc-dialog-border-color - border color of the dialog\n * @cssproperty --mdc-dialog-header-text-color - text color of the header/title of the dialog\n * @cssproperty --mdc-dialog-description-text-color - text color of the below header description of the dialog\n * @cssproperty --mdc-dialog-elevation-3 - elevation of the dialog\n * @cssproperty --mdc-dialog-width - width of the dialog\n * @cssproperty --mdc-dialog-height - height of the dialog\n *\n * @csspart body - The main body container that holds the illustration and content sections\n * @csspart illustration-container - The container for the illustration section\n * @csspart content-container - The container for the content section\n * @csspart header-text - The header text\n *\n * @slot header-prefix - Slot for the dialog header content. This can be used to pass custom header content.\n * @slot dialog-body - Slot for the dialog body content\n * @slot illustration-container - Slot for the illustration container section\n * @slot content-container - Slot for the content (header, description, etc) section\n * @slot description-container - Slot for the description in the content (below header) - pass in Text, Links etc as needed.\n * @slot footer-link - This slot is for passing `mdc-link` component within the footer section.\n * @slot footer-button-secondary - This slot is for passing secondary variant of `mdc-button` component\n * within the footer section.\n * @slot footer-button-primary - This slot is for passing primary variant of\n * `mdc-button` component within the footer section.\n * @slot footer - This slot is for passing custom footer content. Only use this if really needed,\n * using the footer-link and footer-button slots is preferred\n */",
3078
+ "customElement": true
3079
+ }
3080
+ ],
3081
+ "exports": [
3082
+ {
3083
+ "kind": "js",
3084
+ "name": "default",
3085
+ "declaration": {
3086
+ "name": "AnnouncementDialog",
3087
+ "module": "components/announcementdialog/announcementdialog.component.js"
3088
+ }
3089
+ }
3090
+ ]
3091
+ },
1769
3092
  {
1770
3093
  "kind": "javascript-module",
1771
3094
  "path": "components/appheader/appheader.component.js",
@@ -8502,6 +9825,40 @@
8502
9825
  "name": "--mdc-checkbox-disabled-checked-icon-color"
8503
9826
  }
8504
9827
  ],
9828
+ "slots": [
9829
+ {
9830
+ "description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
9831
+ "name": "label",
9832
+ "inheritedFrom": {
9833
+ "name": "FormfieldWrapper",
9834
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
9835
+ }
9836
+ },
9837
+ {
9838
+ "description": "Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.",
9839
+ "name": "toggletip",
9840
+ "inheritedFrom": {
9841
+ "name": "FormfieldWrapper",
9842
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
9843
+ }
9844
+ },
9845
+ {
9846
+ "description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
9847
+ "name": "help-icon",
9848
+ "inheritedFrom": {
9849
+ "name": "FormfieldWrapper",
9850
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
9851
+ }
9852
+ },
9853
+ {
9854
+ "description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
9855
+ "name": "help-text",
9856
+ "inheritedFrom": {
9857
+ "name": "FormfieldWrapper",
9858
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
9859
+ }
9860
+ }
9861
+ ],
8505
9862
  "members": [
8506
9863
  {
8507
9864
  "kind": "field",
@@ -8834,6 +10191,19 @@
8834
10191
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
8835
10192
  }
8836
10193
  },
10194
+ {
10195
+ "kind": "field",
10196
+ "name": "toggletipStrategy",
10197
+ "type": {
10198
+ "text": "PopoverStrategy"
10199
+ },
10200
+ "attribute": "toggletip-strategy",
10201
+ "reflects": true,
10202
+ "inheritedFrom": {
10203
+ "name": "FormfieldWrapper",
10204
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
10205
+ }
10206
+ },
8837
10207
  {
8838
10208
  "kind": "field",
8839
10209
  "name": "infoIconAriaLabel",
@@ -9120,6 +10490,17 @@
9120
10490
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
9121
10491
  }
9122
10492
  },
10493
+ {
10494
+ "name": "toggletip-strategy",
10495
+ "type": {
10496
+ "text": "PopoverStrategy"
10497
+ },
10498
+ "fieldName": "toggletipStrategy",
10499
+ "inheritedFrom": {
10500
+ "name": "FormfieldWrapper",
10501
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
10502
+ }
10503
+ },
9123
10504
  {
9124
10505
  "name": "info-icon-aria-label",
9125
10506
  "type": {
@@ -9152,7 +10533,7 @@
9152
10533
  "module": "/src/components/formfieldwrapper/formfieldwrapper.component"
9153
10534
  },
9154
10535
  "tagName": "mdc-checkbox",
9155
- "jsDoc": "/**\n * Checkboxes allow users to select multiple options from a list or turn an item/feature on or off.\n * These are often used in forms, settings, and selections in lists.\n *\n * A checkbox component contains an optional label and an optional helper text.\n *\n * To create a group of checkboxes, use the FormFieldGroup component.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-staticcheckbox\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @tagname mdc-checkbox\n *\n * @event change - (React: onChange) Event that gets dispatched when the checkbox state changes.\n * @event focus - (React: onFocus) Event that gets dispatched when the checkbox receives focus.\n *\n * @cssproperty --mdc-checkbox-background-color-hover - Allows customization of the background color on hover.\n * @cssproperty --mdc-checkbox-checked-background-color-hover - Background color for a selected checkbox when hovered.\n * @cssproperty --mdc-checkbox-checked-pressed-icon-color - Background color for a selected checkbox when pressed.\n * @cssproperty --mdc-checkbox-pressed-icon-color - Background color for a selected checkbox when pressed.\n * @cssproperty --mdc-checkbox-disabled-checked-icon-color - Background color for a selected checkbox when disabled.\n */",
10536
+ "jsDoc": "/**\n * Checkboxes allow users to select multiple options from a list or turn an item/feature on or off.\n * These are often used in forms, settings, and selections in lists.\n *\n * A checkbox component contains an optional label and an optional helper text.\n *\n * To create a group of checkboxes, use the FormFieldGroup component.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-staticcheckbox\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @tagname mdc-checkbox\n *\n * @event change - (React: onChange) Event that gets dispatched when the checkbox state changes.\n * @event focus - (React: onFocus) Event that gets dispatched when the checkbox receives focus.\n *\n * @cssproperty --mdc-checkbox-background-color-hover - Allows customization of the background color on hover.\n * @cssproperty --mdc-checkbox-checked-background-color-hover - Background color for a selected checkbox when hovered.\n * @cssproperty --mdc-checkbox-checked-pressed-icon-color - Background color for a selected checkbox when pressed.\n * @cssproperty --mdc-checkbox-pressed-icon-color - Background color for a selected checkbox when pressed.\n * @cssproperty --mdc-checkbox-disabled-checked-icon-color - Background color for a selected checkbox when disabled.\n *\n * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.\n * @slot toggletip - Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.\n * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.\n * @slot help-text - Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.\n */",
9156
10537
  "customElement": true
9157
10538
  }
9158
10539
  ],
@@ -9972,22 +11353,6 @@
9972
11353
  "module": "components/popover/popover.component.js"
9973
11354
  }
9974
11355
  },
9975
- {
9976
- "kind": "field",
9977
- "name": "preventScroll",
9978
- "type": {
9979
- "text": "boolean"
9980
- },
9981
- "description": "Prevent outside scrolling when element is shown.\n\nIMPLEMENT THIS IN YOUR COMPONENT.",
9982
- "default": "false",
9983
- "attribute": "prevent-scroll",
9984
- "reflects": true,
9985
- "privacy": "protected",
9986
- "inheritedFrom": {
9987
- "name": "Popover",
9988
- "module": "components/popover/popover.component.js"
9989
- }
9990
- },
9991
11356
  {
9992
11357
  "kind": "method",
9993
11358
  "name": "activatePreventScroll",
@@ -10653,6 +12018,21 @@
10653
12018
  "module": "components/popover/popover.component.js"
10654
12019
  }
10655
12020
  },
12021
+ {
12022
+ "kind": "field",
12023
+ "name": "preventScroll",
12024
+ "type": {
12025
+ "text": "boolean"
12026
+ },
12027
+ "description": "Prevent outside scrolling when popover is shown.",
12028
+ "default": "false",
12029
+ "attribute": "prevent-scroll",
12030
+ "reflects": true,
12031
+ "inheritedFrom": {
12032
+ "name": "Popover",
12033
+ "module": "components/popover/popover.component.js"
12034
+ }
12035
+ },
10656
12036
  {
10657
12037
  "kind": "field",
10658
12038
  "name": "interactive",
@@ -11821,6 +13201,38 @@
11821
13201
  {
11822
13202
  "description": "This is a default/unnamed slot for Selectlistbox including options and/or option group.",
11823
13203
  "name": "default"
13204
+ },
13205
+ {
13206
+ "description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
13207
+ "name": "label",
13208
+ "inheritedFrom": {
13209
+ "name": "FormfieldWrapper",
13210
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13211
+ }
13212
+ },
13213
+ {
13214
+ "description": "Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.",
13215
+ "name": "toggletip",
13216
+ "inheritedFrom": {
13217
+ "name": "FormfieldWrapper",
13218
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13219
+ }
13220
+ },
13221
+ {
13222
+ "description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
13223
+ "name": "help-icon",
13224
+ "inheritedFrom": {
13225
+ "name": "FormfieldWrapper",
13226
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13227
+ }
13228
+ },
13229
+ {
13230
+ "description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
13231
+ "name": "help-text",
13232
+ "inheritedFrom": {
13233
+ "name": "FormfieldWrapper",
13234
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13235
+ }
11824
13236
  }
11825
13237
  ],
11826
13238
  "members": [
@@ -12522,6 +13934,19 @@
12522
13934
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
12523
13935
  }
12524
13936
  },
13937
+ {
13938
+ "kind": "field",
13939
+ "name": "toggletipStrategy",
13940
+ "type": {
13941
+ "text": "PopoverStrategy"
13942
+ },
13943
+ "attribute": "toggletip-strategy",
13944
+ "reflects": true,
13945
+ "inheritedFrom": {
13946
+ "name": "FormfieldWrapper",
13947
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13948
+ }
13949
+ },
12525
13950
  {
12526
13951
  "kind": "field",
12527
13952
  "name": "infoIconAriaLabel",
@@ -12870,6 +14295,17 @@
12870
14295
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
12871
14296
  }
12872
14297
  },
14298
+ {
14299
+ "name": "toggletip-strategy",
14300
+ "type": {
14301
+ "text": "PopoverStrategy"
14302
+ },
14303
+ "fieldName": "toggletipStrategy",
14304
+ "inheritedFrom": {
14305
+ "name": "FormfieldWrapper",
14306
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
14307
+ }
14308
+ },
12873
14309
  {
12874
14310
  "name": "info-icon-aria-label",
12875
14311
  "type": {
@@ -12906,7 +14342,7 @@
12906
14342
  "module": "/src/components/formfieldwrapper/formfieldwrapper.component"
12907
14343
  },
12908
14344
  "tagName": "mdc-combobox",
12909
- "jsDoc": "/**\n * The Combobox component is a text-based dropdown control that allows users to select an option from a predefined list.\n * Users can type text to filter the options and select their desired choice.\n *\n * When the user starts typing, the filter uses a \"starts with\" search and displays options based on the text entered by the user.\n * If the user entered text that doesn't match with any of the options, then the text in the `no-result-text` attribute will be displayed.\n *\n * If there is no text in the `no-result-text` attribute then nothing will be shown.\n *\n * Combobox is designed to work with `mdc-option` for individual options and `mdc-optgroup` for grouping related options.\n * The component ensures accessibility and usability while handling various use cases, including long text truncation with tooltip support.\n *\n * Every mdc-option should have a `value` attribute set to ensure proper form submission.\n *\n * To set a default option, use the `selected` attribute on the `mdc-option` element.\n *\n * **Note:** Make sure to add `mdc-selectlistbox` as a child of `mdc-combobox` and wrap options/optgroup in it to ensure proper accessibility functionality. Read more about it in SelectListBox documentation.\n *\n * If you need to use `mdc-tooltip` with any options, make sure to place the tooltip component outside the `mdc-selectlistbox` element. Read more about it in Options documentation.\n *\n * To understand more about combobox and its patterns, refer to this [WCAG example](https://www.w3.org/WAI/ARIA/apg/patterns/combobox/examples/combobox-autocomplete-list/).\n *\n * @dependency mdc-buttonsimple\n * @dependency mdc-icon\n * @dependency mdc-input\n * @dependency mdc-listitem\n * @dependency mdc-popover\n *\n * @tagname mdc-combobox\n *\n * @slot default - This is a default/unnamed slot for Selectlistbox including options and/or option group.\n *\n * @event click - (React: onClick) This event is dispatched when the combobox is clicked.\n * @event change - (React: onChange) This event is dispatched when the combobox is changed.\n * @event input - (React: onInput) This event is dispatched when the combobox is changed.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the combobox.\n * @event focus - (React: onFocus) This event is dispatched when the combobox receives focus.\n *\n * @cssproperty --mdc-combobox-border-color - The border color of the combobox\n * @cssproperty --mdc-combobox-icon-color - The icon color of the combobox\n * @cssproperty --mdc-combobox-listbox-height - The height of the listbox inside the combobox\n * @cssproperty --mdc-combobox-listbox-width - The width of the listbox inside the combobox\n * @cssproperty --mdc-combobox-width - The width of the combobox\n * @cssproperty --mdc-combobox-hover-background-color - The background color of the combobox when hovered\n * @cssproperty --mdc-combobox-focused-background-color - The background color of the combobox when focused\n * @cssproperty --mdc-combobox-error-border-color - The border color of the combobox when in error state\n * @cssproperty --mdc-combobox-warning-border-color - The border color of the combobox when in warning state\n * @cssproperty --mdc-combobox-success-border-color - The border color of the combobox when in success state\n * @cssproperty --mdc-combobox-primary-border-color - The border color of the combobox when in primary state\n * @cssproperty --mdc-combobox-text-color-disabled - The text color of the combobox when disabled\n * @cssproperty --mdc-combobox-focused-border-color - The border color of the combobox when focused\n *\n * @csspart internal-native-input - The internal native input element of the combobox.\n * @csspart mdc-input - The input element of the combobox.\n * @csspart no-result-text - The no result text element of the combobox.\n * @csspart combobox__base - The base container element of the combobox.\n * @csspart combobox__button - The button element of the combobox.\n * @csspart combobox__button-icon - The icon element of the button of the combobox.\n */",
14345
+ "jsDoc": "/**\n * The Combobox component is a text-based dropdown control that allows users to select an option from a predefined list.\n * Users can type text to filter the options and select their desired choice.\n *\n * When the user starts typing, the filter uses a \"starts with\" search and displays options based on the text entered by the user.\n * If the user entered text that doesn't match with any of the options, then the text in the `no-result-text` attribute will be displayed.\n *\n * If there is no text in the `no-result-text` attribute then nothing will be shown.\n *\n * Combobox is designed to work with `mdc-option` for individual options and `mdc-optgroup` for grouping related options.\n * The component ensures accessibility and usability while handling various use cases, including long text truncation with tooltip support.\n *\n * Every mdc-option should have a `value` attribute set to ensure proper form submission.\n *\n * To set a default option, use the `selected` attribute on the `mdc-option` element.\n *\n * **Note:** Make sure to add `mdc-selectlistbox` as a child of `mdc-combobox` and wrap options/optgroup in it to ensure proper accessibility functionality. Read more about it in SelectListBox documentation.\n *\n * If you need to use `mdc-tooltip` with any options, make sure to place the tooltip component outside the `mdc-selectlistbox` element. Read more about it in Options documentation.\n *\n * To understand more about combobox and its patterns, refer to this [WCAG example](https://www.w3.org/WAI/ARIA/apg/patterns/combobox/examples/combobox-autocomplete-list/).\n *\n * @dependency mdc-buttonsimple\n * @dependency mdc-icon\n * @dependency mdc-input\n * @dependency mdc-listitem\n * @dependency mdc-popover\n *\n * @tagname mdc-combobox\n *\n * @slot default - This is a default/unnamed slot for Selectlistbox including options and/or option group.\n * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.\n * @slot toggletip - Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.\n * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.\n * @slot help-text - Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.\n *\n * @event click - (React: onClick) This event is dispatched when the combobox is clicked.\n * @event change - (React: onChange) This event is dispatched when the combobox is changed.\n * @event input - (React: onInput) This event is dispatched when the combobox is changed.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the combobox.\n * @event focus - (React: onFocus) This event is dispatched when the combobox receives focus.\n *\n * @cssproperty --mdc-combobox-border-color - The border color of the combobox\n * @cssproperty --mdc-combobox-icon-color - The icon color of the combobox\n * @cssproperty --mdc-combobox-listbox-height - The height of the listbox inside the combobox\n * @cssproperty --mdc-combobox-listbox-width - The width of the listbox inside the combobox\n * @cssproperty --mdc-combobox-width - The width of the combobox\n * @cssproperty --mdc-combobox-hover-background-color - The background color of the combobox when hovered\n * @cssproperty --mdc-combobox-focused-background-color - The background color of the combobox when focused\n * @cssproperty --mdc-combobox-error-border-color - The border color of the combobox when in error state\n * @cssproperty --mdc-combobox-warning-border-color - The border color of the combobox when in warning state\n * @cssproperty --mdc-combobox-success-border-color - The border color of the combobox when in success state\n * @cssproperty --mdc-combobox-primary-border-color - The border color of the combobox when in primary state\n * @cssproperty --mdc-combobox-text-color-disabled - The text color of the combobox when disabled\n * @cssproperty --mdc-combobox-focused-border-color - The border color of the combobox when focused\n *\n * @csspart internal-native-input - The internal native input element of the combobox.\n * @csspart mdc-input - The input element of the combobox.\n * @csspart no-result-text - The no result text element of the combobox.\n * @csspart combobox__base - The base container element of the combobox.\n * @csspart combobox__button - The button element of the combobox.\n * @csspart combobox__button-icon - The icon element of the button of the combobox.\n */",
12910
14346
  "customElement": true
12911
14347
  }
12912
14348
  ],
@@ -12953,6 +14389,10 @@
12953
14389
  {
12954
14390
  "description": "width of the dialog",
12955
14391
  "name": "--mdc-dialog-width"
14392
+ },
14393
+ {
14394
+ "description": "height of the dialog",
14395
+ "name": "--mdc-dialog-height"
12956
14396
  }
12957
14397
  ],
12958
14398
  "slots": [
@@ -13212,19 +14652,6 @@
13212
14652
  ],
13213
14653
  "description": "Handles the dialog visibility change.\nHandles the exit event to close the dialog."
13214
14654
  },
13215
- {
13216
- "kind": "field",
13217
- "name": "preventScroll",
13218
- "type": {
13219
- "text": "boolean"
13220
- },
13221
- "privacy": "protected",
13222
- "description": "Prevent outside scrolling when element is shown.\n\nIMPLEMENT THIS IN YOUR COMPONENT.",
13223
- "inheritedFrom": {
13224
- "name": "PreventScrollMixin",
13225
- "module": "utils/mixins/PreventScrollMixin.js"
13226
- }
13227
- },
13228
14655
  {
13229
14656
  "kind": "method",
13230
14657
  "name": "activatePreventScroll",
@@ -13978,7 +15405,7 @@
13978
15405
  "module": "/src/models"
13979
15406
  },
13980
15407
  "tagName": "mdc-dialog",
13981
- "jsDoc": "/**\n * Dialog component is a modal dialog that can be used to display information or prompt the user for input.\n * It can be used to create custom dialogs where content for the body and footer actions is provided by the consumer.\n * The dialog is available in 5 sizes: small, medium, large, xlarge and fullscreen. It may also receive custom styling/sizing.\n * The dialog interrupts the user and will block interaction with the rest of the application until it is closed.\n *\n * The dialog can be controlled solely through the `visible` property, no trigger element is required.\n * If a `triggerId` is provided, the dialog will manage focus with that element, otherwise it will\n * remember the previously focused element before the dialog was opened.\n *\n * The dialog is a controlled component, meaning it does not have its own state management for visibility.\n * Use the `visible` property to control the visibility of the dialog.\n * Use the `onClose` event to handle the close action of the dialog (fired when Close button is clicked\n * or Escape is pressed).\n *\n * Dialog component have 2 variants: default and promotional.\n *\n * **Accessibility notes for consuming (have to be explicitly set when you consume the component)**\n *\n * - The dialog should have an aria-label or aria-labelledby attribute to provide a label for screen readers.\n * - Use aria-labelledby to reference the ID of the element that labels the dialog when there is no visible title.\n *\n * **Note: Programmatic show/hide requires the ? prefix on the visible attribute**\n * - Use `?visible=true/false` as an attribute instead of `visible=true/false`\n * - Reference docs for more info: https://lit.dev/docs/templates/expressions/#boolean-attribute-expressions\n *\n * @dependency mdc-button\n * @dependency mdc-text\n *\n * @tagname mdc-dialog\n *\n * @event shown - (React: onShown) Dispatched when the dialog is shown\n * @event hidden - (React: onHidden) Dispatched when the dialog is hidden\n * @event created - (React: onCreated) Dispatched when the dialog is created (added to the DOM)\n * @event destroyed - (React: onDestroyed) Dispatched when the dialog is destroyed (removed from the DOM)\n * @event close - (React: onClose) Dispatched when the Close Button is clicked or Escape key is pressed\n * (this does not hide the dialog)\n *\n * @cssproperty --mdc-dialog-primary-background-color - primary background color of the dialog\n * @cssproperty --mdc-dialog-border-color - border color of the dialog\n * @cssproperty --mdc-dialog-header-text-color - text color of the header/title of the dialog\n * @cssproperty --mdc-dialog-description-text-color - text color of the below header description of the dialog\n * @cssproperty --mdc-dialog-elevation-3 - elevation of the dialog\n * @cssproperty --mdc-dialog-width - width of the dialog\n *\n * @slot header-prefix - Slot for the dialog header content. This can be used to pass custom header content.\n * @slot dialog-body - Slot for the dialog body content\n * @slot footer-link - This slot is for passing `mdc-link` component within the footer section.\n * @slot footer-button-secondary - This slot is for passing secondary variant of `mdc-button` component\n * within the footer section.\n * @slot footer-button-primary - This slot is for passing primary variant of\n * `mdc-button` component within the footer section.\n * @slot footer - This slot is for passing custom footer content. Only use this if really needed,\n * using the footer-link and footer-button slots is preferred\n */",
15408
+ "jsDoc": "/**\n * Dialog component is a modal dialog that can be used to display information or prompt the user for input.\n * It can be used to create custom dialogs where content for the body and footer actions is provided by the consumer.\n * The dialog is available in 5 sizes: small, medium, large, xlarge and fullscreen. It may also receive custom styling/sizing.\n * The dialog interrupts the user and will block interaction with the rest of the application until it is closed.\n *\n * The dialog can be controlled solely through the `visible` property, no trigger element is required.\n * If a `triggerId` is provided, the dialog will manage focus with that element, otherwise it will\n * remember the previously focused element before the dialog was opened.\n *\n * The dialog is a controlled component, meaning it does not have its own state management for visibility.\n * Use the `visible` property to control the visibility of the dialog.\n * Use the `onClose` event to handle the close action of the dialog (fired when Close button is clicked\n * or Escape is pressed).\n *\n * Dialog component have 2 variants: default and promotional.\n *\n * **Accessibility notes for consuming (have to be explicitly set when you consume the component)**\n *\n * - The dialog should have an aria-label or aria-labelledby attribute to provide a label for screen readers.\n * - Use aria-labelledby to reference the ID of the element that labels the dialog when there is no visible title.\n *\n * **Note: Programmatic show/hide requires the ? prefix on the visible attribute**\n * - Use `?visible=true/false` as an attribute instead of `visible=true/false`\n * - Reference docs for more info: https://lit.dev/docs/templates/expressions/#boolean-attribute-expressions\n *\n * @dependency mdc-button\n * @dependency mdc-text\n *\n * @tagname mdc-dialog\n *\n * @event shown - (React: onShown) Dispatched when the dialog is shown\n * @event hidden - (React: onHidden) Dispatched when the dialog is hidden\n * @event created - (React: onCreated) Dispatched when the dialog is created (added to the DOM)\n * @event destroyed - (React: onDestroyed) Dispatched when the dialog is destroyed (removed from the DOM)\n * @event close - (React: onClose) Dispatched when the Close Button is clicked or Escape key is pressed\n * (this does not hide the dialog)\n *\n * @cssproperty --mdc-dialog-primary-background-color - primary background color of the dialog\n * @cssproperty --mdc-dialog-border-color - border color of the dialog\n * @cssproperty --mdc-dialog-header-text-color - text color of the header/title of the dialog\n * @cssproperty --mdc-dialog-description-text-color - text color of the below header description of the dialog\n * @cssproperty --mdc-dialog-elevation-3 - elevation of the dialog\n * @cssproperty --mdc-dialog-width - width of the dialog\n * @cssproperty --mdc-dialog-height - height of the dialog\n *\n * @slot header-prefix - Slot for the dialog header content. This can be used to pass custom header content.\n * @slot dialog-body - Slot for the dialog body content\n * @slot footer-link - This slot is for passing `mdc-link` component within the footer section.\n * @slot footer-button-secondary - This slot is for passing secondary variant of `mdc-button` component\n * within the footer section.\n * @slot footer-button-primary - This slot is for passing primary variant of\n * `mdc-button` component within the footer section.\n * @slot footer - This slot is for passing custom footer content. Only use this if really needed,\n * using the footer-link and footer-button slots is preferred\n */",
13982
15409
  "customElement": true
13983
15410
  }
13984
15411
  ],
@@ -14942,6 +16369,38 @@
14942
16369
  {
14943
16370
  "description": "This is a default slot for checkbox or toggle components.",
14944
16371
  "name": "default"
16372
+ },
16373
+ {
16374
+ "description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
16375
+ "name": "label",
16376
+ "inheritedFrom": {
16377
+ "name": "FormfieldWrapper",
16378
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
16379
+ }
16380
+ },
16381
+ {
16382
+ "description": "Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.",
16383
+ "name": "toggletip",
16384
+ "inheritedFrom": {
16385
+ "name": "FormfieldWrapper",
16386
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
16387
+ }
16388
+ },
16389
+ {
16390
+ "description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
16391
+ "name": "help-icon",
16392
+ "inheritedFrom": {
16393
+ "name": "FormfieldWrapper",
16394
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
16395
+ }
16396
+ },
16397
+ {
16398
+ "description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
16399
+ "name": "help-text",
16400
+ "inheritedFrom": {
16401
+ "name": "FormfieldWrapper",
16402
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
16403
+ }
14945
16404
  }
14946
16405
  ],
14947
16406
  "members": [
@@ -15061,6 +16520,19 @@
15061
16520
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
15062
16521
  }
15063
16522
  },
16523
+ {
16524
+ "kind": "field",
16525
+ "name": "toggletipStrategy",
16526
+ "type": {
16527
+ "text": "PopoverStrategy"
16528
+ },
16529
+ "attribute": "toggletip-strategy",
16530
+ "reflects": true,
16531
+ "inheritedFrom": {
16532
+ "name": "FormfieldWrapper",
16533
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
16534
+ }
16535
+ },
15064
16536
  {
15065
16537
  "kind": "field",
15066
16538
  "name": "infoIconAriaLabel",
@@ -15162,7 +16634,7 @@
15162
16634
  "module": "/src/components/formfieldwrapper/formfieldwrapper.component"
15163
16635
  },
15164
16636
  "tagName": "mdc-formfieldgroup",
15165
- "jsDoc": "/**\n * `mdc-formfieldgroup` component, groups the form field components together.\n * All passed in children will have a gap of 12px (0.75rem) each applied.\n *\n * This component is specifically for creating a `checkbox` group and a `toggle` group component.\n * For the radiogroup use the RadioGroup component instead.\n *\n * The header text and description text are displayed above the items with accessible labels.<br/>\n * The consumer has to provide atleast the header-text or the aria-label,\n * like one of them <b>has</b> to be passed in always, otherwise its not accessible.\n *\n * The role will be set to `group`.\n * The aria-label will be set with the data-aria-label property.\n * The aria-labelledby will be set with the header id which contains the header text information.\n * The aria-describedby will be set with the description id which contains the description text information.\n *\n * @tagname mdc-formfieldgroup\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @slot default - This is a default slot for checkbox or toggle components.\n */",
16637
+ "jsDoc": "/**\n * `mdc-formfieldgroup` component, groups the form field components together.\n * All passed in children will have a gap of 12px (0.75rem) each applied.\n *\n * This component is specifically for creating a `checkbox` group and a `toggle` group component.\n * For the radiogroup use the RadioGroup component instead.\n *\n * The header text and description text are displayed above the items with accessible labels.<br/>\n * The consumer has to provide atleast the header-text or the aria-label,\n * like one of them <b>has</b> to be passed in always, otherwise its not accessible.\n *\n * The role will be set to `group`.\n * The aria-label will be set with the data-aria-label property.\n * The aria-labelledby will be set with the header id which contains the header text information.\n * The aria-describedby will be set with the description id which contains the description text information.\n *\n * @tagname mdc-formfieldgroup\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @slot default - This is a default slot for checkbox or toggle components.\n * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.\n * @slot toggletip - Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.\n * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.\n * @slot help-text - Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.\n */",
15166
16638
  "customElement": true,
15167
16639
  "attributes": [
15168
16640
  {
@@ -15265,6 +16737,17 @@
15265
16737
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
15266
16738
  }
15267
16739
  },
16740
+ {
16741
+ "name": "toggletip-strategy",
16742
+ "type": {
16743
+ "text": "PopoverStrategy"
16744
+ },
16745
+ "fieldName": "toggletipStrategy",
16746
+ "inheritedFrom": {
16747
+ "name": "FormfieldWrapper",
16748
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
16749
+ }
16750
+ },
15268
16751
  {
15269
16752
  "name": "info-icon-aria-label",
15270
16753
  "type": {
@@ -15299,6 +16782,24 @@
15299
16782
  "kind": "class",
15300
16783
  "description": "formfieldwrapper is a component that contains the label and helper/validation text\n that can be configured in various ways to suit different use cases (most of the input related components).\nIt is used as an internal component and is not intended to be used directly by consumers.",
15301
16784
  "name": "FormfieldWrapper",
16785
+ "slots": [
16786
+ {
16787
+ "description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
16788
+ "name": "label"
16789
+ },
16790
+ {
16791
+ "description": "Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.",
16792
+ "name": "toggletip"
16793
+ },
16794
+ {
16795
+ "description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
16796
+ "name": "help-icon"
16797
+ },
16798
+ {
16799
+ "description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
16800
+ "name": "help-text"
16801
+ }
16802
+ ],
15302
16803
  "members": [
15303
16804
  {
15304
16805
  "kind": "field",
@@ -15362,6 +16863,15 @@
15362
16863
  "attribute": "toggletip-placement",
15363
16864
  "reflects": true
15364
16865
  },
16866
+ {
16867
+ "kind": "field",
16868
+ "name": "toggletipStrategy",
16869
+ "type": {
16870
+ "text": "PopoverStrategy"
16871
+ },
16872
+ "attribute": "toggletip-strategy",
16873
+ "reflects": true
16874
+ },
15365
16875
  {
15366
16876
  "kind": "field",
15367
16877
  "name": "infoIconAriaLabel",
@@ -15494,6 +17004,13 @@
15494
17004
  "default": "'top'",
15495
17005
  "fieldName": "toggletipPlacement"
15496
17006
  },
17007
+ {
17008
+ "name": "toggletip-strategy",
17009
+ "type": {
17010
+ "text": "PopoverStrategy"
17011
+ },
17012
+ "fieldName": "toggletipStrategy"
17013
+ },
15497
17014
  {
15498
17015
  "name": "info-icon-aria-label",
15499
17016
  "type": {
@@ -15527,7 +17044,7 @@
15527
17044
  "module": "/src/models"
15528
17045
  },
15529
17046
  "tagName": "mdc-formfieldwrapper",
15530
- "jsDoc": "/**\n * formfieldwrapper is a component that contains the label and helper/validation text\n * that can be configured in various ways to suit different use cases (most of the input related components).\n * It is used as an internal component and is not intended to be used directly by consumers.\n *\n * @tagname mdc-formfieldwrapper\n *\n * @dependency mdc-text\n * @dependency mdc-icon\n * @dependency mdc-button\n * @dependency mdc-toggletip\n *\n *\n */",
17047
+ "jsDoc": "/**\n * formfieldwrapper is a component that contains the label and helper/validation text\n * that can be configured in various ways to suit different use cases (most of the input related components).\n * It is used as an internal component and is not intended to be used directly by consumers.\n *\n * @tagname mdc-formfieldwrapper\n *\n * @dependency mdc-text\n * @dependency mdc-icon\n * @dependency mdc-button\n * @dependency mdc-toggletip\n *\n * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.\n * @slot toggletip - Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.\n * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.\n * @slot help-text - Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.\n */",
15531
17048
  "customElement": true
15532
17049
  }
15533
17050
  ],
@@ -16394,6 +17911,56 @@
16394
17911
  "name": "--mdc-input-primary-border-color"
16395
17912
  }
16396
17913
  ],
17914
+ "slots": [
17915
+ {
17916
+ "description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
17917
+ "name": "label",
17918
+ "inheritedFrom": {
17919
+ "name": "FormfieldWrapper",
17920
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
17921
+ }
17922
+ },
17923
+ {
17924
+ "description": "Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.",
17925
+ "name": "toggletip",
17926
+ "inheritedFrom": {
17927
+ "name": "FormfieldWrapper",
17928
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
17929
+ }
17930
+ },
17931
+ {
17932
+ "description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
17933
+ "name": "help-icon",
17934
+ "inheritedFrom": {
17935
+ "name": "FormfieldWrapper",
17936
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
17937
+ }
17938
+ },
17939
+ {
17940
+ "description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
17941
+ "name": "help-text",
17942
+ "inheritedFrom": {
17943
+ "name": "FormfieldWrapper",
17944
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
17945
+ }
17946
+ },
17947
+ {
17948
+ "description": "Slot for the input element. If not provided, the input field will be rendered.",
17949
+ "name": "input"
17950
+ },
17951
+ {
17952
+ "description": "Slot for the leading icon before the input field. If not provided, the `leadingIcon` property will be used to render the leading icon.",
17953
+ "name": "input-leading-icon"
17954
+ },
17955
+ {
17956
+ "description": "Slot for the prefix text before the input field. If not provided, the `prefixText` property will be used to render the prefix text.",
17957
+ "name": "input-prefix-text"
17958
+ },
17959
+ {
17960
+ "description": "Slot for the trailing button to clear the input field. If not provided, the clear button will be rendered when `trailingButton` property is set to true.",
17961
+ "name": "trailing-button"
17962
+ }
17963
+ ],
16397
17964
  "members": [
16398
17965
  {
16399
17966
  "kind": "field",
@@ -16873,6 +18440,19 @@
16873
18440
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
16874
18441
  }
16875
18442
  },
18443
+ {
18444
+ "kind": "field",
18445
+ "name": "toggletipStrategy",
18446
+ "type": {
18447
+ "text": "PopoverStrategy"
18448
+ },
18449
+ "attribute": "toggletip-strategy",
18450
+ "reflects": true,
18451
+ "inheritedFrom": {
18452
+ "name": "FormfieldWrapper",
18453
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
18454
+ }
18455
+ },
16876
18456
  {
16877
18457
  "kind": "field",
16878
18458
  "name": "infoIconAriaLabel",
@@ -17269,6 +18849,17 @@
17269
18849
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
17270
18850
  }
17271
18851
  },
18852
+ {
18853
+ "name": "toggletip-strategy",
18854
+ "type": {
18855
+ "text": "PopoverStrategy"
18856
+ },
18857
+ "fieldName": "toggletipStrategy",
18858
+ "inheritedFrom": {
18859
+ "name": "FormfieldWrapper",
18860
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
18861
+ }
18862
+ },
17272
18863
  {
17273
18864
  "name": "info-icon-aria-label",
17274
18865
  "type": {
@@ -17301,7 +18892,7 @@
17301
18892
  "module": "/src/components/formfieldwrapper"
17302
18893
  },
17303
18894
  "tagName": "mdc-input",
17304
- "jsDoc": "/**\n * mdc-input is a component that allows users to input text.\n * It contains:\n * - label field - describe the input field.\n * - input field - contains the value\n * - help text or validation message - displayed below the input field.\n * - trailing button - it displays a clear the input field.\n * - prefix text - displayed before the input field.\n * - leading icon - displayed before the input field.\n * - clear-aria-label - aria label for the trailing button.\n * - all the attributes of the input field.\n *\n * @tagname mdc-input\n *\n * @event input - (React: onInput) This event is dispatched when the value of the input field changes (every press).\n * @event change - (React: onChange) This event is dispatched when the value of the input field changes (on blur).\n * @event focus - (React: onFocus) This event is dispatched when the input receives focus.\n * @event blur - (React: onBlur) This event is dispatched when the input loses focus.\n * @event clear - (React: onClear) This event is dispatched when the input text is cleared.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-button\n * @dependency mdc-toggletip\n *\n * @cssproperty --mdc-input-disabled-border-color - Border color for the input container when disabled\n * @cssproperty --mdc-input-disabled-text-color - Text color for the input field when disabled\n * @cssproperty --mdc-input-disabled-background-color - Background color for the input field when disabled\n * @cssproperty --mdc-input-border-color - Border color for the input container\n * @cssproperty --mdc-input-text-color - Text color for the input field\n * @cssproperty --mdc-input-background-color - Background color for the input field\n * @cssproperty --mdc-input-selection-background-color - Background color for the selected text\n * @cssproperty --mdc-input-selection-text-color - Text color for the selected text\n * @cssproperty --mdc-input-support-text-color - Text color for the help text\n * @cssproperty --mdc-input-hover-background-color - Background color for the input field when hovered\n * @cssproperty --mdc-input-focused-background-color - Background color for the input field when focused\n * @cssproperty --mdc-input-focused-border-color - Border color for the input container when focused\n * @cssproperty --mdc-input-error-border-color - Border color for the input container when error\n * @cssproperty --mdc-input-warning-border-color - Border color for the input container when warning\n * @cssproperty --mdc-input-success-border-color - Border color for the input container when success\n * @cssproperty --mdc-input-primary-border-color - Border color for the input container when primary\n *\n */",
18895
+ "jsDoc": "/**\n * mdc-input is a component that allows users to input text.\n * It contains:\n * - label field - describe the input field.\n * - input field - contains the value\n * - help text or validation message - displayed below the input field.\n * - trailing button - it displays a clear the input field.\n * - prefix text - displayed before the input field.\n * - leading icon - displayed before the input field.\n * - clear-aria-label - aria label for the trailing button.\n * - all the attributes of the input field.\n *\n * @tagname mdc-input\n *\n * @event input - (React: onInput) This event is dispatched when the value of the input field changes (every press).\n * @event change - (React: onChange) This event is dispatched when the value of the input field changes (on blur).\n * @event focus - (React: onFocus) This event is dispatched when the input receives focus.\n * @event blur - (React: onBlur) This event is dispatched when the input loses focus.\n * @event clear - (React: onClear) This event is dispatched when the input text is cleared.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-button\n * @dependency mdc-toggletip\n *\n * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.\n * @slot toggletip - Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.\n * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.\n * @slot help-text - Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.\n * @slot input - Slot for the input element. If not provided, the input field will be rendered.\n * @slot input-leading-icon - Slot for the leading icon before the input field. If not provided, the `leadingIcon` property will be used to render the leading icon.\n * @slot input-prefix-text - Slot for the prefix text before the input field. If not provided, the `prefixText` property will be used to render the prefix text.\n * @slot trailing-button - Slot for the trailing button to clear the input field. If not provided, the clear button will be rendered when `trailingButton` property is set to true.\n *\n * @cssproperty --mdc-input-disabled-border-color - Border color for the input container when disabled\n * @cssproperty --mdc-input-disabled-text-color - Text color for the input field when disabled\n * @cssproperty --mdc-input-disabled-background-color - Background color for the input field when disabled\n * @cssproperty --mdc-input-border-color - Border color for the input container\n * @cssproperty --mdc-input-text-color - Text color for the input field\n * @cssproperty --mdc-input-background-color - Background color for the input field\n * @cssproperty --mdc-input-selection-background-color - Background color for the selected text\n * @cssproperty --mdc-input-selection-text-color - Text color for the selected text\n * @cssproperty --mdc-input-support-text-color - Text color for the help text\n * @cssproperty --mdc-input-hover-background-color - Background color for the input field when hovered\n * @cssproperty --mdc-input-focused-background-color - Background color for the input field when focused\n * @cssproperty --mdc-input-focused-border-color - Border color for the input container when focused\n * @cssproperty --mdc-input-error-border-color - Border color for the input container when error\n * @cssproperty --mdc-input-warning-border-color - Border color for the input container when warning\n * @cssproperty --mdc-input-success-border-color - Border color for the input container when success\n * @cssproperty --mdc-input-primary-border-color - Border color for the input container when primary\n *\n */",
17305
18896
  "customElement": true
17306
18897
  }
17307
18898
  ],
@@ -23703,22 +25294,6 @@
23703
25294
  "module": "components/popover/popover.component.js"
23704
25295
  }
23705
25296
  },
23706
- {
23707
- "kind": "field",
23708
- "name": "preventScroll",
23709
- "type": {
23710
- "text": "boolean"
23711
- },
23712
- "description": "Prevent outside scrolling when element is shown.\n\nIMPLEMENT THIS IN YOUR COMPONENT.",
23713
- "default": "false",
23714
- "attribute": "prevent-scroll",
23715
- "reflects": true,
23716
- "privacy": "protected",
23717
- "inheritedFrom": {
23718
- "name": "Popover",
23719
- "module": "components/popover/popover.component.js"
23720
- }
23721
- },
23722
25297
  {
23723
25298
  "kind": "method",
23724
25299
  "name": "activatePreventScroll",
@@ -24384,6 +25959,21 @@
24384
25959
  "module": "components/popover/popover.component.js"
24385
25960
  }
24386
25961
  },
25962
+ {
25963
+ "kind": "field",
25964
+ "name": "preventScroll",
25965
+ "type": {
25966
+ "text": "boolean"
25967
+ },
25968
+ "description": "Prevent outside scrolling when popover is shown.",
25969
+ "default": "false",
25970
+ "attribute": "prevent-scroll",
25971
+ "reflects": true,
25972
+ "inheritedFrom": {
25973
+ "name": "Popover",
25974
+ "module": "components/popover/popover.component.js"
25975
+ }
25976
+ },
24387
25977
  {
24388
25978
  "kind": "field",
24389
25979
  "name": "showArrow",
@@ -28592,6 +30182,19 @@
28592
30182
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
28593
30183
  }
28594
30184
  },
30185
+ {
30186
+ "kind": "field",
30187
+ "name": "toggletipStrategy",
30188
+ "type": {
30189
+ "text": "PopoverStrategy"
30190
+ },
30191
+ "attribute": "toggletip-strategy",
30192
+ "reflects": true,
30193
+ "inheritedFrom": {
30194
+ "name": "FormfieldWrapper",
30195
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
30196
+ }
30197
+ },
28595
30198
  {
28596
30199
  "kind": "field",
28597
30200
  "name": "infoIconAriaLabel",
@@ -29077,6 +30680,17 @@
29077
30680
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
29078
30681
  }
29079
30682
  },
30683
+ {
30684
+ "name": "toggletip-strategy",
30685
+ "type": {
30686
+ "text": "PopoverStrategy"
30687
+ },
30688
+ "fieldName": "toggletipStrategy",
30689
+ "inheritedFrom": {
30690
+ "name": "FormfieldWrapper",
30691
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
30692
+ }
30693
+ },
29080
30694
  {
29081
30695
  "name": "info-icon-aria-label",
29082
30696
  "type": {
@@ -29096,7 +30710,73 @@
29096
30710
  },
29097
30711
  "tagName": "mdc-password",
29098
30712
  "jsDoc": "/**\n * `mdc-password` is a component that allows users to input their password.\n * It extends the `mdc-input` component and provides additional features specific to password fields.\n * It contains:\n * - `label` field - describe the password field.\n * - `password` field - contains the value\n * - `help-text` or `validation-message` - displayed below the password field.\n * - `help-text-type` - type of the help text, can be 'default', 'error', 'warning', 'success', 'priority'.\n * - `show-hide-button-aria-label` - aria label for the trailing show/hide button.\n * - all the attributes of the native password field.\n *\n * @tagname mdc-password\n *\n * @event input - (React: onInput) This event is dispatched when the value of the password field changes (every press).\n * @event change - (React: onChange) This event is dispatched when the value of the password field changes (on blur).\n * @event focus - (React: onFocus) This event is dispatched when the password receives focus.\n * @event blur - (React: onBlur) This event is dispatched when the password loses focus.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-button\n * @dependency mdc-toggletip\n *\n * @cssproperty --mdc-input-disabled-border-color - Border color for the password container when disabled\n * @cssproperty --mdc-input-disabled-text-color - Text color for the password field when disabled\n * @cssproperty --mdc-input-disabled-background-color - Background color for the password field when disabled\n * @cssproperty --mdc-input-border-color - Border color for the password container\n * @cssproperty --mdc-input-text-color - Text color for the password field\n * @cssproperty --mdc-input-background-color - Background color for the password field\n * @cssproperty --mdc-input-selection-background-color - Background color for the selected text\n * @cssproperty --mdc-input-selection-text-color - Text color for the selected text\n * @cssproperty --mdc-input-support-text-color - Text color for the help text\n * @cssproperty --mdc-input-hover-background-color - Background color for the password field when hovered\n * @cssproperty --mdc-input-focused-background-color - Background color for the password field when focused\n * @cssproperty --mdc-input-focused-border-color - Border color for the password container when focused\n * @cssproperty --mdc-input-error-border-color - Border color for the password container when error\n * @cssproperty --mdc-input-warning-border-color - Border color for the password container when warning\n * @cssproperty --mdc-input-success-border-color - Border color for the password container when success\n * @cssproperty --mdc-input-primary-border-color - Border color for the password container when primary\n *\n */",
29099
- "customElement": true
30713
+ "customElement": true,
30714
+ "slots": [
30715
+ {
30716
+ "description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
30717
+ "name": "label",
30718
+ "inheritedFrom": {
30719
+ "name": "FormfieldWrapper",
30720
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
30721
+ }
30722
+ },
30723
+ {
30724
+ "description": "Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.",
30725
+ "name": "toggletip",
30726
+ "inheritedFrom": {
30727
+ "name": "FormfieldWrapper",
30728
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
30729
+ }
30730
+ },
30731
+ {
30732
+ "description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
30733
+ "name": "help-icon",
30734
+ "inheritedFrom": {
30735
+ "name": "FormfieldWrapper",
30736
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
30737
+ }
30738
+ },
30739
+ {
30740
+ "description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
30741
+ "name": "help-text",
30742
+ "inheritedFrom": {
30743
+ "name": "FormfieldWrapper",
30744
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
30745
+ }
30746
+ },
30747
+ {
30748
+ "description": "Slot for the input element. If not provided, the input field will be rendered.",
30749
+ "name": "input",
30750
+ "inheritedFrom": {
30751
+ "name": "Input",
30752
+ "module": "src/components/input/input.component.ts"
30753
+ }
30754
+ },
30755
+ {
30756
+ "description": "Slot for the leading icon before the input field. If not provided, the `leadingIcon` property will be used to render the leading icon.",
30757
+ "name": "input-leading-icon",
30758
+ "inheritedFrom": {
30759
+ "name": "Input",
30760
+ "module": "src/components/input/input.component.ts"
30761
+ }
30762
+ },
30763
+ {
30764
+ "description": "Slot for the prefix text before the input field. If not provided, the `prefixText` property will be used to render the prefix text.",
30765
+ "name": "input-prefix-text",
30766
+ "inheritedFrom": {
30767
+ "name": "Input",
30768
+ "module": "src/components/input/input.component.ts"
30769
+ }
30770
+ },
30771
+ {
30772
+ "description": "Slot for the trailing button to clear the input field. If not provided, the clear button will be rendered when `trailingButton` property is set to true.",
30773
+ "name": "trailing-button",
30774
+ "inheritedFrom": {
30775
+ "name": "Input",
30776
+ "module": "src/components/input/input.component.ts"
30777
+ }
30778
+ }
30779
+ ]
29100
30780
  }
29101
30781
  ],
29102
30782
  "exports": [
@@ -29303,15 +30983,10 @@
29303
30983
  "type": {
29304
30984
  "text": "boolean"
29305
30985
  },
29306
- "privacy": "protected",
29307
30986
  "description": "Prevent outside scrolling when popover is shown.",
29308
30987
  "default": "false",
29309
30988
  "attribute": "prevent-scroll",
29310
- "reflects": true,
29311
- "inheritedFrom": {
29312
- "name": "PreventScrollMixin",
29313
- "module": "utils/mixins/PreventScrollMixin.js"
29314
- }
30989
+ "reflects": true
29315
30990
  },
29316
30991
  {
29317
30992
  "kind": "field",
@@ -30645,187 +32320,6 @@
30645
32320
  }
30646
32321
  ]
30647
32322
  },
30648
- {
30649
- "kind": "javascript-module",
30650
- "path": "components/presence/presence.component.js",
30651
- "declarations": [
30652
- {
30653
- "kind": "class",
30654
- "description": "The `mdc-presence` component is a versatile UI element used to\ndisplay the presence status of a user or entity within an avatar component.\n\nThis component is ideal for use within avatar UIs where the presence status\nneeds to be visually represented.",
30655
- "name": "Presence",
30656
- "cssProperties": [
30657
- {
30658
- "description": "The background color of the presence type active.",
30659
- "name": "--mdc-presence-active-background-color"
30660
- },
30661
- {
30662
- "description": "The background color of the presence type away.",
30663
- "name": "--mdc-presence-away-background-color"
30664
- },
30665
- {
30666
- "description": "The background color of the presence type away-calling.",
30667
- "name": "--mdc-presence-away-calling-background-color"
30668
- },
30669
- {
30670
- "description": "The background color of the presence type busy.",
30671
- "name": "--mdc-presence-busy-background-color"
30672
- },
30673
- {
30674
- "description": "The background color of the presence type dnd.",
30675
- "name": "--mdc-presence-dnd-background-color"
30676
- },
30677
- {
30678
- "description": "The background color of the presence type meeting.",
30679
- "name": "--mdc-presence-meeting-background-color"
30680
- },
30681
- {
30682
- "description": "The background color of the presence type on-call.",
30683
- "name": "--mdc-presence-on-call-background-color"
30684
- },
30685
- {
30686
- "description": "The background color of the presence type on-device.",
30687
- "name": "--mdc-presence-on-device-background-color"
30688
- },
30689
- {
30690
- "description": "The background color of the presence type on-mobile.",
30691
- "name": "--mdc-presence-on-mobile-background-color"
30692
- },
30693
- {
30694
- "description": "The background color of the presence type pause.",
30695
- "name": "--mdc-presence-pause-background-color"
30696
- },
30697
- {
30698
- "description": "The background color of the presence type pto.",
30699
- "name": "--mdc-presence-pto-background-color"
30700
- },
30701
- {
30702
- "description": "The background color of the presence type presenting.",
30703
- "name": "--mdc-presence-presenting-background-color"
30704
- },
30705
- {
30706
- "description": "The background color of the presence type quiet.",
30707
- "name": "--mdc-presence-quiet-background-color"
30708
- },
30709
- {
30710
- "description": "The background color of the presence type scheduled.",
30711
- "name": "--mdc-presence-scheduled-background-color"
30712
- },
30713
- {
30714
- "description": "The background color of the presence type overlay.",
30715
- "name": "--mdc-presence-overlay-background-color"
30716
- }
30717
- ],
30718
- "members": [
30719
- {
30720
- "kind": "field",
30721
- "name": "type",
30722
- "type": {
30723
- "text": "PresenceType"
30724
- },
30725
- "description": "Supported presence types:\n- `active`\n- `away`\n- `away-calling`\n- `busy`\n- `dnd`\n- `meeting`\n- `on-call`\n- `on-device`\n- `on-mobile`\n- `pause`\n- `pto`\n- `presenting`\n- `quiet`\n- `scheduled`",
30726
- "default": "active",
30727
- "attribute": "type",
30728
- "reflects": true
30729
- },
30730
- {
30731
- "kind": "field",
30732
- "name": "size",
30733
- "type": {
30734
- "text": "PresenceSize"
30735
- },
30736
- "description": "Acceptable numeric values include:\n- 24\n- 32\n- 48\n- 64\n- 72\n- 88\n- 124\n\nPresence icons are minimum 14px in size, meaning 24, 32, and 48 presence\nicons will be no smaller than 14px (for sizes 24, 32, 48).",
30737
- "default": "32",
30738
- "attribute": "size",
30739
- "reflects": true
30740
- },
30741
- {
30742
- "kind": "method",
30743
- "name": "setSize",
30744
- "privacy": "private",
30745
- "return": {
30746
- "type": {
30747
- "text": "void"
30748
- }
30749
- },
30750
- "parameters": [
30751
- {
30752
- "name": "size",
30753
- "type": {
30754
- "text": "PresenceSize"
30755
- }
30756
- }
30757
- ]
30758
- },
30759
- {
30760
- "kind": "field",
30761
- "name": "icon",
30762
- "privacy": "private",
30763
- "description": "Get the icon name based on the presence type",
30764
- "readonly": true
30765
- },
30766
- {
30767
- "kind": "method",
30768
- "name": "handleOnLoad",
30769
- "privacy": "private",
30770
- "return": {
30771
- "type": {
30772
- "text": "void"
30773
- }
30774
- },
30775
- "description": "Handles the successful load of an icon.\nSets the `currentIconType` property to match the `type` property."
30776
- },
30777
- {
30778
- "kind": "method",
30779
- "name": "handleOnError",
30780
- "privacy": "private",
30781
- "return": {
30782
- "type": {
30783
- "text": "void"
30784
- }
30785
- },
30786
- "description": "Handles an error that occurs when loading an icon."
30787
- }
30788
- ],
30789
- "attributes": [
30790
- {
30791
- "name": "type",
30792
- "type": {
30793
- "text": "PresenceType"
30794
- },
30795
- "description": "Supported presence types:\n- `active`\n- `away`\n- `away-calling`\n- `busy`\n- `dnd`\n- `meeting`\n- `on-call`\n- `on-device`\n- `on-mobile`\n- `pause`\n- `pto`\n- `presenting`\n- `quiet`\n- `scheduled`",
30796
- "default": "active",
30797
- "fieldName": "type"
30798
- },
30799
- {
30800
- "name": "size",
30801
- "type": {
30802
- "text": "PresenceSize"
30803
- },
30804
- "description": "Acceptable numeric values include:\n- 24\n- 32\n- 48\n- 64\n- 72\n- 88\n- 124\n\nPresence icons are minimum 14px in size, meaning 24, 32, and 48 presence\nicons will be no smaller than 14px (for sizes 24, 32, 48).",
30805
- "default": "32",
30806
- "fieldName": "size"
30807
- }
30808
- ],
30809
- "superclass": {
30810
- "name": "Component",
30811
- "module": "/src/models"
30812
- },
30813
- "tagName": "mdc-presence",
30814
- "jsDoc": "/**\n * The `mdc-presence` component is a versatile UI element used to\n * display the presence status of a user or entity within an avatar component.\n *\n * This component is ideal for use within avatar UIs where the presence status\n * needs to be visually represented.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-presence\n *\n * @cssproperty --mdc-presence-active-background-color - The background color of the presence type active.\n * @cssproperty --mdc-presence-away-background-color - The background color of the presence type away.\n * @cssproperty --mdc-presence-away-calling-background-color - The background color of the presence type away-calling.\n * @cssproperty --mdc-presence-busy-background-color - The background color of the presence type busy.\n * @cssproperty --mdc-presence-dnd-background-color - The background color of the presence type dnd.\n * @cssproperty --mdc-presence-meeting-background-color - The background color of the presence type meeting.\n * @cssproperty --mdc-presence-on-call-background-color - The background color of the presence type on-call.\n * @cssproperty --mdc-presence-on-device-background-color - The background color of the presence type on-device.\n * @cssproperty --mdc-presence-on-mobile-background-color - The background color of the presence type on-mobile.\n * @cssproperty --mdc-presence-pause-background-color - The background color of the presence type pause.\n * @cssproperty --mdc-presence-pto-background-color - The background color of the presence type pto.\n * @cssproperty --mdc-presence-presenting-background-color - The background color of the presence type presenting.\n * @cssproperty --mdc-presence-quiet-background-color - The background color of the presence type quiet.\n * @cssproperty --mdc-presence-scheduled-background-color - The background color of the presence type scheduled.\n * @cssproperty --mdc-presence-overlay-background-color - The background color of the presence type overlay.\n */",
30815
- "customElement": true
30816
- }
30817
- ],
30818
- "exports": [
30819
- {
30820
- "kind": "js",
30821
- "name": "default",
30822
- "declaration": {
30823
- "name": "Presence",
30824
- "module": "components/presence/presence.component.js"
30825
- }
30826
- }
30827
- ]
30828
- },
30829
32323
  {
30830
32324
  "kind": "javascript-module",
30831
32325
  "path": "components/progressbar/progressbar.component.js",
@@ -31040,6 +32534,19 @@
31040
32534
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
31041
32535
  }
31042
32536
  },
32537
+ {
32538
+ "kind": "field",
32539
+ "name": "toggletipStrategy",
32540
+ "type": {
32541
+ "text": "PopoverStrategy"
32542
+ },
32543
+ "attribute": "toggletip-strategy",
32544
+ "reflects": true,
32545
+ "inheritedFrom": {
32546
+ "name": "FormfieldWrapper",
32547
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
32548
+ }
32549
+ },
31043
32550
  {
31044
32551
  "kind": "field",
31045
32552
  "name": "infoIconAriaLabel",
@@ -31258,6 +32765,17 @@
31258
32765
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
31259
32766
  }
31260
32767
  },
32768
+ {
32769
+ "name": "toggletip-strategy",
32770
+ "type": {
32771
+ "text": "PopoverStrategy"
32772
+ },
32773
+ "fieldName": "toggletipStrategy",
32774
+ "inheritedFrom": {
32775
+ "name": "FormfieldWrapper",
32776
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
32777
+ }
32778
+ },
31261
32779
  {
31262
32780
  "name": "info-icon-aria-label",
31263
32781
  "type": {
@@ -31283,7 +32801,41 @@
31283
32801
  },
31284
32802
  "tagName": "mdc-progressbar",
31285
32803
  "jsDoc": "/**\n * mdc-progressbar component visually represents a progress indicator, typically used to show\n * the completion state of an ongoing process (e.g., loading, file upload, etc.).\n * It contains an optional label and an optional helper text.\n *\n * - It supports mainly two types: Default and Inline\n * - It supports three validation variants: Default, Success and Error.\n *\n * This component is created by extending FormfieldWrapper.\n *\n * @tagname mdc-progressbar\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @cssproperty --mdc-progressbar-background-color - Background color of the remaining progressbar portion.\n * @cssproperty --mdc-progressbar-active-background-color - Background color of the elapsed progressbar portion.\n * @cssproperty --mdc-progressbar-success-color - Background color of the progressbar when in success state.\n * @cssproperty --mdc-progressbar-error-color - Background color of the progressbar when in error state.\n * @cssproperty --mdc-progressbar-height - The height of the progressbar.\n * @cssproperty --mdc-progressbar-border-radius - The border radius of the progressbar.\n * @cssproperty --mdc-progressbar-label-color - Color of the progressbar label text.\n * @cssproperty --mdc-progressbar-label-line-height - Line height of the label text.\n * @cssproperty --mdc-progressbar-label-font-size - Font size of the label text.\n * @cssproperty --mdc-progressbar-label-font-weight - Font weight of the label text.\n * @cssproperty --mdc-progressbar-help-text-color - Color of the help text.\n */",
31286
- "customElement": true
32804
+ "customElement": true,
32805
+ "slots": [
32806
+ {
32807
+ "description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
32808
+ "name": "label",
32809
+ "inheritedFrom": {
32810
+ "name": "FormfieldWrapper",
32811
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
32812
+ }
32813
+ },
32814
+ {
32815
+ "description": "Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.",
32816
+ "name": "toggletip",
32817
+ "inheritedFrom": {
32818
+ "name": "FormfieldWrapper",
32819
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
32820
+ }
32821
+ },
32822
+ {
32823
+ "description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
32824
+ "name": "help-icon",
32825
+ "inheritedFrom": {
32826
+ "name": "FormfieldWrapper",
32827
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
32828
+ }
32829
+ },
32830
+ {
32831
+ "description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
32832
+ "name": "help-text",
32833
+ "inheritedFrom": {
32834
+ "name": "FormfieldWrapper",
32835
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
32836
+ }
32837
+ }
32838
+ ]
31287
32839
  }
31288
32840
  ],
31289
32841
  "exports": [
@@ -31297,6 +32849,187 @@
31297
32849
  }
31298
32850
  ]
31299
32851
  },
32852
+ {
32853
+ "kind": "javascript-module",
32854
+ "path": "components/presence/presence.component.js",
32855
+ "declarations": [
32856
+ {
32857
+ "kind": "class",
32858
+ "description": "The `mdc-presence` component is a versatile UI element used to\ndisplay the presence status of a user or entity within an avatar component.\n\nThis component is ideal for use within avatar UIs where the presence status\nneeds to be visually represented.",
32859
+ "name": "Presence",
32860
+ "cssProperties": [
32861
+ {
32862
+ "description": "The background color of the presence type active.",
32863
+ "name": "--mdc-presence-active-background-color"
32864
+ },
32865
+ {
32866
+ "description": "The background color of the presence type away.",
32867
+ "name": "--mdc-presence-away-background-color"
32868
+ },
32869
+ {
32870
+ "description": "The background color of the presence type away-calling.",
32871
+ "name": "--mdc-presence-away-calling-background-color"
32872
+ },
32873
+ {
32874
+ "description": "The background color of the presence type busy.",
32875
+ "name": "--mdc-presence-busy-background-color"
32876
+ },
32877
+ {
32878
+ "description": "The background color of the presence type dnd.",
32879
+ "name": "--mdc-presence-dnd-background-color"
32880
+ },
32881
+ {
32882
+ "description": "The background color of the presence type meeting.",
32883
+ "name": "--mdc-presence-meeting-background-color"
32884
+ },
32885
+ {
32886
+ "description": "The background color of the presence type on-call.",
32887
+ "name": "--mdc-presence-on-call-background-color"
32888
+ },
32889
+ {
32890
+ "description": "The background color of the presence type on-device.",
32891
+ "name": "--mdc-presence-on-device-background-color"
32892
+ },
32893
+ {
32894
+ "description": "The background color of the presence type on-mobile.",
32895
+ "name": "--mdc-presence-on-mobile-background-color"
32896
+ },
32897
+ {
32898
+ "description": "The background color of the presence type pause.",
32899
+ "name": "--mdc-presence-pause-background-color"
32900
+ },
32901
+ {
32902
+ "description": "The background color of the presence type pto.",
32903
+ "name": "--mdc-presence-pto-background-color"
32904
+ },
32905
+ {
32906
+ "description": "The background color of the presence type presenting.",
32907
+ "name": "--mdc-presence-presenting-background-color"
32908
+ },
32909
+ {
32910
+ "description": "The background color of the presence type quiet.",
32911
+ "name": "--mdc-presence-quiet-background-color"
32912
+ },
32913
+ {
32914
+ "description": "The background color of the presence type scheduled.",
32915
+ "name": "--mdc-presence-scheduled-background-color"
32916
+ },
32917
+ {
32918
+ "description": "The background color of the presence type overlay.",
32919
+ "name": "--mdc-presence-overlay-background-color"
32920
+ }
32921
+ ],
32922
+ "members": [
32923
+ {
32924
+ "kind": "field",
32925
+ "name": "type",
32926
+ "type": {
32927
+ "text": "PresenceType"
32928
+ },
32929
+ "description": "Supported presence types:\n- `active`\n- `away`\n- `away-calling`\n- `busy`\n- `dnd`\n- `meeting`\n- `on-call`\n- `on-device`\n- `on-mobile`\n- `pause`\n- `pto`\n- `presenting`\n- `quiet`\n- `scheduled`",
32930
+ "default": "active",
32931
+ "attribute": "type",
32932
+ "reflects": true
32933
+ },
32934
+ {
32935
+ "kind": "field",
32936
+ "name": "size",
32937
+ "type": {
32938
+ "text": "PresenceSize"
32939
+ },
32940
+ "description": "Acceptable numeric values include:\n- 24\n- 32\n- 48\n- 64\n- 72\n- 88\n- 124\n\nPresence icons are minimum 14px in size, meaning 24, 32, and 48 presence\nicons will be no smaller than 14px (for sizes 24, 32, 48).",
32941
+ "default": "32",
32942
+ "attribute": "size",
32943
+ "reflects": true
32944
+ },
32945
+ {
32946
+ "kind": "method",
32947
+ "name": "setSize",
32948
+ "privacy": "private",
32949
+ "return": {
32950
+ "type": {
32951
+ "text": "void"
32952
+ }
32953
+ },
32954
+ "parameters": [
32955
+ {
32956
+ "name": "size",
32957
+ "type": {
32958
+ "text": "PresenceSize"
32959
+ }
32960
+ }
32961
+ ]
32962
+ },
32963
+ {
32964
+ "kind": "field",
32965
+ "name": "icon",
32966
+ "privacy": "private",
32967
+ "description": "Get the icon name based on the presence type",
32968
+ "readonly": true
32969
+ },
32970
+ {
32971
+ "kind": "method",
32972
+ "name": "handleOnLoad",
32973
+ "privacy": "private",
32974
+ "return": {
32975
+ "type": {
32976
+ "text": "void"
32977
+ }
32978
+ },
32979
+ "description": "Handles the successful load of an icon.\nSets the `currentIconType` property to match the `type` property."
32980
+ },
32981
+ {
32982
+ "kind": "method",
32983
+ "name": "handleOnError",
32984
+ "privacy": "private",
32985
+ "return": {
32986
+ "type": {
32987
+ "text": "void"
32988
+ }
32989
+ },
32990
+ "description": "Handles an error that occurs when loading an icon."
32991
+ }
32992
+ ],
32993
+ "attributes": [
32994
+ {
32995
+ "name": "type",
32996
+ "type": {
32997
+ "text": "PresenceType"
32998
+ },
32999
+ "description": "Supported presence types:\n- `active`\n- `away`\n- `away-calling`\n- `busy`\n- `dnd`\n- `meeting`\n- `on-call`\n- `on-device`\n- `on-mobile`\n- `pause`\n- `pto`\n- `presenting`\n- `quiet`\n- `scheduled`",
33000
+ "default": "active",
33001
+ "fieldName": "type"
33002
+ },
33003
+ {
33004
+ "name": "size",
33005
+ "type": {
33006
+ "text": "PresenceSize"
33007
+ },
33008
+ "description": "Acceptable numeric values include:\n- 24\n- 32\n- 48\n- 64\n- 72\n- 88\n- 124\n\nPresence icons are minimum 14px in size, meaning 24, 32, and 48 presence\nicons will be no smaller than 14px (for sizes 24, 32, 48).",
33009
+ "default": "32",
33010
+ "fieldName": "size"
33011
+ }
33012
+ ],
33013
+ "superclass": {
33014
+ "name": "Component",
33015
+ "module": "/src/models"
33016
+ },
33017
+ "tagName": "mdc-presence",
33018
+ "jsDoc": "/**\n * The `mdc-presence` component is a versatile UI element used to\n * display the presence status of a user or entity within an avatar component.\n *\n * This component is ideal for use within avatar UIs where the presence status\n * needs to be visually represented.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-presence\n *\n * @cssproperty --mdc-presence-active-background-color - The background color of the presence type active.\n * @cssproperty --mdc-presence-away-background-color - The background color of the presence type away.\n * @cssproperty --mdc-presence-away-calling-background-color - The background color of the presence type away-calling.\n * @cssproperty --mdc-presence-busy-background-color - The background color of the presence type busy.\n * @cssproperty --mdc-presence-dnd-background-color - The background color of the presence type dnd.\n * @cssproperty --mdc-presence-meeting-background-color - The background color of the presence type meeting.\n * @cssproperty --mdc-presence-on-call-background-color - The background color of the presence type on-call.\n * @cssproperty --mdc-presence-on-device-background-color - The background color of the presence type on-device.\n * @cssproperty --mdc-presence-on-mobile-background-color - The background color of the presence type on-mobile.\n * @cssproperty --mdc-presence-pause-background-color - The background color of the presence type pause.\n * @cssproperty --mdc-presence-pto-background-color - The background color of the presence type pto.\n * @cssproperty --mdc-presence-presenting-background-color - The background color of the presence type presenting.\n * @cssproperty --mdc-presence-quiet-background-color - The background color of the presence type quiet.\n * @cssproperty --mdc-presence-scheduled-background-color - The background color of the presence type scheduled.\n * @cssproperty --mdc-presence-overlay-background-color - The background color of the presence type overlay.\n */",
33019
+ "customElement": true
33020
+ }
33021
+ ],
33022
+ "exports": [
33023
+ {
33024
+ "kind": "js",
33025
+ "name": "default",
33026
+ "declaration": {
33027
+ "name": "Presence",
33028
+ "module": "components/presence/presence.component.js"
33029
+ }
33030
+ }
33031
+ ]
33032
+ },
31300
33033
  {
31301
33034
  "kind": "javascript-module",
31302
33035
  "path": "components/progressspinner/progressspinner.component.js",
@@ -31618,6 +33351,19 @@
31618
33351
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
31619
33352
  }
31620
33353
  },
33354
+ {
33355
+ "kind": "field",
33356
+ "name": "toggletipStrategy",
33357
+ "type": {
33358
+ "text": "PopoverStrategy"
33359
+ },
33360
+ "attribute": "toggletip-strategy",
33361
+ "reflects": true,
33362
+ "inheritedFrom": {
33363
+ "name": "FormfieldWrapper",
33364
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
33365
+ }
33366
+ },
31621
33367
  {
31622
33368
  "kind": "field",
31623
33369
  "name": "infoIconAriaLabel",
@@ -31855,6 +33601,17 @@
31855
33601
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
31856
33602
  }
31857
33603
  },
33604
+ {
33605
+ "name": "toggletip-strategy",
33606
+ "type": {
33607
+ "text": "PopoverStrategy"
33608
+ },
33609
+ "fieldName": "toggletipStrategy",
33610
+ "inheritedFrom": {
33611
+ "name": "FormfieldWrapper",
33612
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
33613
+ }
33614
+ },
31858
33615
  {
31859
33616
  "name": "info-icon-aria-label",
31860
33617
  "type": {
@@ -31867,6 +33624,40 @@
31867
33624
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
31868
33625
  }
31869
33626
  }
33627
+ ],
33628
+ "slots": [
33629
+ {
33630
+ "description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
33631
+ "name": "label",
33632
+ "inheritedFrom": {
33633
+ "name": "FormfieldWrapper",
33634
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
33635
+ }
33636
+ },
33637
+ {
33638
+ "description": "Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.",
33639
+ "name": "toggletip",
33640
+ "inheritedFrom": {
33641
+ "name": "FormfieldWrapper",
33642
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
33643
+ }
33644
+ },
33645
+ {
33646
+ "description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
33647
+ "name": "help-icon",
33648
+ "inheritedFrom": {
33649
+ "name": "FormfieldWrapper",
33650
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
33651
+ }
33652
+ },
33653
+ {
33654
+ "description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
33655
+ "name": "help-text",
33656
+ "inheritedFrom": {
33657
+ "name": "FormfieldWrapper",
33658
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
33659
+ }
33660
+ }
31870
33661
  ]
31871
33662
  }
31872
33663
  ],
@@ -32284,6 +34075,19 @@
32284
34075
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
32285
34076
  }
32286
34077
  },
34078
+ {
34079
+ "kind": "field",
34080
+ "name": "toggletipStrategy",
34081
+ "type": {
34082
+ "text": "PopoverStrategy"
34083
+ },
34084
+ "attribute": "toggletip-strategy",
34085
+ "reflects": true,
34086
+ "inheritedFrom": {
34087
+ "name": "FormfieldWrapper",
34088
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
34089
+ }
34090
+ },
32287
34091
  {
32288
34092
  "kind": "field",
32289
34093
  "name": "infoIconAriaLabel",
@@ -32559,6 +34363,17 @@
32559
34363
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
32560
34364
  }
32561
34365
  },
34366
+ {
34367
+ "name": "toggletip-strategy",
34368
+ "type": {
34369
+ "text": "PopoverStrategy"
34370
+ },
34371
+ "fieldName": "toggletipStrategy",
34372
+ "inheritedFrom": {
34373
+ "name": "FormfieldWrapper",
34374
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
34375
+ }
34376
+ },
32562
34377
  {
32563
34378
  "name": "info-icon-aria-label",
32564
34379
  "type": {
@@ -32592,7 +34407,41 @@
32592
34407
  },
32593
34408
  "tagName": "mdc-radio",
32594
34409
  "jsDoc": "/**\n * Radio allow users to select single options from a list or turn an item/feature on or off.\n * These are often used in forms, settings, and selection in lists.\n *\n * A radio component contains an optional label, optional info icon and an optional helper text.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-staticradio\n * @dependency mdc-toggletip\n *\n * @tagname mdc-radio\n *\n * @event change - (React: onChange) Event that gets dispatched when the radio state changes.\n * @event focus - (React: onFocus) Event that gets dispatched when the radio receives focus.\n *\n * @cssproperty --mdc-radio-text-disabled-color - color of the label when disabled\n * @cssproperty --mdc-radio-control-inactive-hover - color of the radio button when inactive and hovered\n * @cssproperty --mdc-radio-control-inactive-pressed-color - color of the radio button when inactive and pressed\n * @cssproperty --mdc-radio-control-active-hover-color - color of the radio button when active and hovered\n * @cssproperty --mdc-radio-control-active-pressed-color - color of the radio button when active and pressed\n * @cssproperty --mdc-radio-disabled-border-color - color of the radio button when disabled\n * @cssproperty --mdc-radio-control-active-disabled-background - color of the radio button when active and disabled\n * @cssproperty --mdc-radio-control-inactive-disabled-background - color of the radio button when inactive and disabled\n *\n */",
32595
- "customElement": true
34410
+ "customElement": true,
34411
+ "slots": [
34412
+ {
34413
+ "description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
34414
+ "name": "label",
34415
+ "inheritedFrom": {
34416
+ "name": "FormfieldWrapper",
34417
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
34418
+ }
34419
+ },
34420
+ {
34421
+ "description": "Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.",
34422
+ "name": "toggletip",
34423
+ "inheritedFrom": {
34424
+ "name": "FormfieldWrapper",
34425
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
34426
+ }
34427
+ },
34428
+ {
34429
+ "description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
34430
+ "name": "help-icon",
34431
+ "inheritedFrom": {
34432
+ "name": "FormfieldWrapper",
34433
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
34434
+ }
34435
+ },
34436
+ {
34437
+ "description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
34438
+ "name": "help-text",
34439
+ "inheritedFrom": {
34440
+ "name": "FormfieldWrapper",
34441
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
34442
+ }
34443
+ }
34444
+ ]
32596
34445
  }
32597
34446
  ],
32598
34447
  "exports": [
@@ -32747,6 +34596,19 @@
32747
34596
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
32748
34597
  }
32749
34598
  },
34599
+ {
34600
+ "kind": "field",
34601
+ "name": "toggletipStrategy",
34602
+ "type": {
34603
+ "text": "PopoverStrategy"
34604
+ },
34605
+ "attribute": "toggletip-strategy",
34606
+ "reflects": true,
34607
+ "inheritedFrom": {
34608
+ "name": "FormfieldWrapper",
34609
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
34610
+ }
34611
+ },
32750
34612
  {
32751
34613
  "kind": "field",
32752
34614
  "name": "infoIconAriaLabel",
@@ -32947,6 +34809,17 @@
32947
34809
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
32948
34810
  }
32949
34811
  },
34812
+ {
34813
+ "name": "toggletip-strategy",
34814
+ "type": {
34815
+ "text": "PopoverStrategy"
34816
+ },
34817
+ "fieldName": "toggletipStrategy",
34818
+ "inheritedFrom": {
34819
+ "name": "FormfieldWrapper",
34820
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
34821
+ }
34822
+ },
32950
34823
  {
32951
34824
  "name": "info-icon-aria-label",
32952
34825
  "type": {
@@ -32975,6 +34848,38 @@
32975
34848
  "name": "FormfieldGroup",
32976
34849
  "module": "src/components/formfieldgroup/formfieldgroup.component.ts"
32977
34850
  }
34851
+ },
34852
+ {
34853
+ "description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
34854
+ "name": "label",
34855
+ "inheritedFrom": {
34856
+ "name": "FormfieldWrapper",
34857
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
34858
+ }
34859
+ },
34860
+ {
34861
+ "description": "Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.",
34862
+ "name": "toggletip",
34863
+ "inheritedFrom": {
34864
+ "name": "FormfieldWrapper",
34865
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
34866
+ }
34867
+ },
34868
+ {
34869
+ "description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
34870
+ "name": "help-icon",
34871
+ "inheritedFrom": {
34872
+ "name": "FormfieldWrapper",
34873
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
34874
+ }
34875
+ },
34876
+ {
34877
+ "description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
34878
+ "name": "help-text",
34879
+ "inheritedFrom": {
34880
+ "name": "FormfieldWrapper",
34881
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
34882
+ }
32978
34883
  }
32979
34884
  ]
32980
34885
  }
@@ -33181,6 +35086,70 @@
33181
35086
  {
33182
35087
  "description": "Slot for input chips",
33183
35088
  "name": "filters"
35089
+ },
35090
+ {
35091
+ "description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
35092
+ "name": "label",
35093
+ "inheritedFrom": {
35094
+ "name": "FormfieldWrapper",
35095
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
35096
+ }
35097
+ },
35098
+ {
35099
+ "description": "Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.",
35100
+ "name": "toggletip",
35101
+ "inheritedFrom": {
35102
+ "name": "FormfieldWrapper",
35103
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
35104
+ }
35105
+ },
35106
+ {
35107
+ "description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
35108
+ "name": "help-icon",
35109
+ "inheritedFrom": {
35110
+ "name": "FormfieldWrapper",
35111
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
35112
+ }
35113
+ },
35114
+ {
35115
+ "description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
35116
+ "name": "help-text",
35117
+ "inheritedFrom": {
35118
+ "name": "FormfieldWrapper",
35119
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
35120
+ }
35121
+ },
35122
+ {
35123
+ "description": "Slot for the input element. If not provided, the input field will be rendered.",
35124
+ "name": "input",
35125
+ "inheritedFrom": {
35126
+ "name": "Input",
35127
+ "module": "src/components/input/input.component.ts"
35128
+ }
35129
+ },
35130
+ {
35131
+ "description": "Slot for the leading icon before the input field. If not provided, the `leadingIcon` property will be used to render the leading icon.",
35132
+ "name": "input-leading-icon",
35133
+ "inheritedFrom": {
35134
+ "name": "Input",
35135
+ "module": "src/components/input/input.component.ts"
35136
+ }
35137
+ },
35138
+ {
35139
+ "description": "Slot for the prefix text before the input field. If not provided, the `prefixText` property will be used to render the prefix text.",
35140
+ "name": "input-prefix-text",
35141
+ "inheritedFrom": {
35142
+ "name": "Input",
35143
+ "module": "src/components/input/input.component.ts"
35144
+ }
35145
+ },
35146
+ {
35147
+ "description": "Slot for the trailing button to clear the input field. If not provided, the clear button will be rendered when `trailingButton` property is set to true.",
35148
+ "name": "trailing-button",
35149
+ "inheritedFrom": {
35150
+ "name": "Input",
35151
+ "module": "src/components/input/input.component.ts"
35152
+ }
33184
35153
  }
33185
35154
  ],
33186
35155
  "members": [
@@ -33771,6 +35740,19 @@
33771
35740
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
33772
35741
  }
33773
35742
  },
35743
+ {
35744
+ "kind": "field",
35745
+ "name": "toggletipStrategy",
35746
+ "type": {
35747
+ "text": "PopoverStrategy"
35748
+ },
35749
+ "attribute": "toggletip-strategy",
35750
+ "reflects": true,
35751
+ "inheritedFrom": {
35752
+ "name": "FormfieldWrapper",
35753
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
35754
+ }
35755
+ },
33774
35756
  {
33775
35757
  "kind": "field",
33776
35758
  "name": "infoIconAriaLabel",
@@ -34254,6 +36236,17 @@
34254
36236
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
34255
36237
  }
34256
36238
  },
36239
+ {
36240
+ "name": "toggletip-strategy",
36241
+ "type": {
36242
+ "text": "PopoverStrategy"
36243
+ },
36244
+ "fieldName": "toggletipStrategy",
36245
+ "inheritedFrom": {
36246
+ "name": "FormfieldWrapper",
36247
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36248
+ }
36249
+ },
34257
36250
  {
34258
36251
  "name": "info-icon-aria-label",
34259
36252
  "type": {
@@ -34484,6 +36477,38 @@
34484
36477
  {
34485
36478
  "description": "This is a default/unnamed slot for Selectlistbox including options and/or option group.",
34486
36479
  "name": "default"
36480
+ },
36481
+ {
36482
+ "description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
36483
+ "name": "label",
36484
+ "inheritedFrom": {
36485
+ "name": "FormfieldWrapper",
36486
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36487
+ }
36488
+ },
36489
+ {
36490
+ "description": "Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.",
36491
+ "name": "toggletip",
36492
+ "inheritedFrom": {
36493
+ "name": "FormfieldWrapper",
36494
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36495
+ }
36496
+ },
36497
+ {
36498
+ "description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
36499
+ "name": "help-icon",
36500
+ "inheritedFrom": {
36501
+ "name": "FormfieldWrapper",
36502
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36503
+ }
36504
+ },
36505
+ {
36506
+ "description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
36507
+ "name": "help-text",
36508
+ "inheritedFrom": {
36509
+ "name": "FormfieldWrapper",
36510
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36511
+ }
34487
36512
  }
34488
36513
  ],
34489
36514
  "members": [
@@ -35069,6 +37094,19 @@
35069
37094
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
35070
37095
  }
35071
37096
  },
37097
+ {
37098
+ "kind": "field",
37099
+ "name": "toggletipStrategy",
37100
+ "type": {
37101
+ "text": "PopoverStrategy"
37102
+ },
37103
+ "attribute": "toggletip-strategy",
37104
+ "reflects": true,
37105
+ "inheritedFrom": {
37106
+ "name": "FormfieldWrapper",
37107
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
37108
+ }
37109
+ },
35072
37110
  {
35073
37111
  "kind": "field",
35074
37112
  "name": "infoIconAriaLabel",
@@ -35414,6 +37452,17 @@
35414
37452
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
35415
37453
  }
35416
37454
  },
37455
+ {
37456
+ "name": "toggletip-strategy",
37457
+ "type": {
37458
+ "text": "PopoverStrategy"
37459
+ },
37460
+ "fieldName": "toggletipStrategy",
37461
+ "inheritedFrom": {
37462
+ "name": "FormfieldWrapper",
37463
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
37464
+ }
37465
+ },
35417
37466
  {
35418
37467
  "name": "info-icon-aria-label",
35419
37468
  "type": {
@@ -39343,6 +41392,19 @@
39343
41392
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
39344
41393
  }
39345
41394
  },
41395
+ {
41396
+ "kind": "field",
41397
+ "name": "toggletipStrategy",
41398
+ "type": {
41399
+ "text": "PopoverStrategy"
41400
+ },
41401
+ "attribute": "toggletip-strategy",
41402
+ "reflects": true,
41403
+ "inheritedFrom": {
41404
+ "name": "FormfieldWrapper",
41405
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
41406
+ }
41407
+ },
39346
41408
  {
39347
41409
  "kind": "field",
39348
41410
  "name": "infoIconAriaLabel",
@@ -39714,6 +41776,17 @@
39714
41776
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
39715
41777
  }
39716
41778
  },
41779
+ {
41780
+ "name": "toggletip-strategy",
41781
+ "type": {
41782
+ "text": "PopoverStrategy"
41783
+ },
41784
+ "fieldName": "toggletipStrategy",
41785
+ "inheritedFrom": {
41786
+ "name": "FormfieldWrapper",
41787
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
41788
+ }
41789
+ },
39717
41790
  {
39718
41791
  "name": "info-icon-aria-label",
39719
41792
  "type": {
@@ -39747,7 +41820,41 @@
39747
41820
  },
39748
41821
  "tagName": "mdc-textarea",
39749
41822
  "jsDoc": "/**\n * mdc-textarea component, which is used to get the multi-line text input from the user.\n * It contains:\n * - label: It is the title of the textarea field.\n * - required: A boolean attribute depicting that the textarea field is required.\n * - Textarea: It is the multi-line text input field.\n * - helper-text: It is the text that provides additional information about the textarea field.\n * - max-character-limit: It is the text that shows the character count of the textarea field.\n * - Error, Warning, Success, Priority Help Text type: It is the text that provides additional information\n * about the textarea field based on the validation state.\n * - limitexceeded: It is the event that is dispatched when the character limit exceeds or restored.\n * This event exposes 3 properties:\n * - currentCharacterCount - the current number of characters in the textarea field,\n * - maxCharacterLimit - the maximum number of characters allowed in the textarea field,\n * - value - the current value of the textarea field,\n *\n * **Note**: Consumers must set the help-text-type with 'error' and\n * help-text attribute with the error message using limitexceeded event.\n * The same help-text value will be used for the validation message to be displayed.\n *\n * @tagname mdc-textarea\n *\n * @event input - (React: onInput) This event is dispatched when the value of the textarea field changes (every press).\n * @event change - (React: onChange) This event is dispatched when the value of the textarea field changes (on blur).\n * @event focus - (React: onFocus) This event is dispatched when the textarea receives focus.\n * @event blur - (React: onBlur) This event is dispatched when the textarea loses focus.\n * @event limitexceeded - (React: onLimitExceeded) This event is dispatched once when the character limit\n * exceeds or restored.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @cssproperty --mdc-textarea-disabled-border-color - Border color for the textarea container when disabled\n * @cssproperty --mdc-textarea-disabled-text-color - Text color for the textarea field when disabled\n * @cssproperty --mdc-textarea-disabled-background-color - Background color for the textarea field when disabled\n * @cssproperty --mdc-textarea-text-color - Text color for the textarea field\n * @cssproperty --mdc-textarea-background-color - Background color for the textarea field\n * @cssproperty --mdc-textarea-border-color - Border color for the textarea field\n * @cssproperty --mdc-textarea-text-secondary-normal - Text color for the character counter\n * @cssproperty --mdc-textarea-error-border-color - Border color for the error related help text\n * @cssproperty --mdc-textarea-warning-border-color - Border color for the warning related help text\n * @cssproperty --mdc-textarea-success-border-color - Border color for the success related help text\n * @cssproperty --mdc-textarea-primary-border-color - Border color for the priority related help text\n * @cssproperty --mdc-textarea-hover-background-color - Background color for the textarea container when hover\n * @cssproperty --mdc-textarea-focused-background-color - Background color for the textarea container when focused\n * @cssproperty --mdc-textarea-focused-border-color - Border color for the textarea container when focused\n */",
39750
- "customElement": true
41823
+ "customElement": true,
41824
+ "slots": [
41825
+ {
41826
+ "description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
41827
+ "name": "label",
41828
+ "inheritedFrom": {
41829
+ "name": "FormfieldWrapper",
41830
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
41831
+ }
41832
+ },
41833
+ {
41834
+ "description": "Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.",
41835
+ "name": "toggletip",
41836
+ "inheritedFrom": {
41837
+ "name": "FormfieldWrapper",
41838
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
41839
+ }
41840
+ },
41841
+ {
41842
+ "description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
41843
+ "name": "help-icon",
41844
+ "inheritedFrom": {
41845
+ "name": "FormfieldWrapper",
41846
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
41847
+ }
41848
+ },
41849
+ {
41850
+ "description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
41851
+ "name": "help-text",
41852
+ "inheritedFrom": {
41853
+ "name": "FormfieldWrapper",
41854
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
41855
+ }
41856
+ }
41857
+ ]
39751
41858
  }
39752
41859
  ],
39753
41860
  "exports": [
@@ -40645,6 +42752,19 @@
40645
42752
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
40646
42753
  }
40647
42754
  },
42755
+ {
42756
+ "kind": "field",
42757
+ "name": "toggletipStrategy",
42758
+ "type": {
42759
+ "text": "PopoverStrategy"
42760
+ },
42761
+ "attribute": "toggletip-strategy",
42762
+ "reflects": true,
42763
+ "inheritedFrom": {
42764
+ "name": "FormfieldWrapper",
42765
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
42766
+ }
42767
+ },
40648
42768
  {
40649
42769
  "kind": "field",
40650
42770
  "name": "infoIconAriaLabel",
@@ -40922,6 +43042,17 @@
40922
43042
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
40923
43043
  }
40924
43044
  },
43045
+ {
43046
+ "name": "toggletip-strategy",
43047
+ "type": {
43048
+ "text": "PopoverStrategy"
43049
+ },
43050
+ "fieldName": "toggletipStrategy",
43051
+ "inheritedFrom": {
43052
+ "name": "FormfieldWrapper",
43053
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
43054
+ }
43055
+ },
40925
43056
  {
40926
43057
  "name": "info-icon-aria-label",
40927
43058
  "type": {
@@ -40955,7 +43086,41 @@
40955
43086
  },
40956
43087
  "tagName": "mdc-toggle",
40957
43088
  "jsDoc": "/**\n * Toggle Component is an interactive control used to switch between two mutually exclusive options,\n * such as On/Off, Active/Inactive. These are commonly used in settings panels, forms, and preference selections\n * where users need to enable or disable a feature.\n * It contains an optional label and an optional helper text.\n *\n * To create a group of toggles, use the FormFieldGroup component.\n *\n * Note: It internally renders a checkbox styled as a toggle switch.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-statictoggle\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @tagname mdc-toggle\n *\n * @event change - (React: onChange) Event that gets dispatched when the toggle state changes.\n * @event focus - (React: onFocus) Event that gets dispatched when the toggle receives focus.\n *\n * @cssproperty --mdc-toggle-width - Width of the toggle\n * @cssproperty --mdc-toggle-height - Height of the toggle\n * @cssproperty --mdc-toggle-width-compact - Width of the toggle when it's size is compact\n * @cssproperty --mdc-toggle-height-compact - Height of the toggle when it's size is compact\n * @cssproperty --mdc-toggle-label-lineheight - Line height of the toggle label\n * @cssproperty --mdc-toggle-label-fontsize - Font size of the toggle label\n * @cssproperty --mdc-toggle-label-fontweight - Font weight of the toggle label\n * @cssproperty --mdc-toggle-label-color-disabled - Color of the toggle label and help text in disabled state\n * @cssproperty --mdc-toggle-help-text-color - Color of the help text label\n * @cssproperty --mdc-toggle-active-hover-color - Background color of the active toggle in hover state\n * @cssproperty --mdc-toggle-active-pressed-color - Background color of the active toggle in pressed state\n * @cssproperty --mdc-toggle-inactive-hover-color - Background color of the inactive toggle in hover state\n * @cssproperty --mdc-toggle-inactive-pressed-color - Background color of the inactive toggle in pressed state\n */",
40958
- "customElement": true
43089
+ "customElement": true,
43090
+ "slots": [
43091
+ {
43092
+ "description": "Slot for the label element. If not provided, the `label` property will be used to render the label.",
43093
+ "name": "label",
43094
+ "inheritedFrom": {
43095
+ "name": "FormfieldWrapper",
43096
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
43097
+ }
43098
+ },
43099
+ {
43100
+ "description": "Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.",
43101
+ "name": "toggletip",
43102
+ "inheritedFrom": {
43103
+ "name": "FormfieldWrapper",
43104
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
43105
+ }
43106
+ },
43107
+ {
43108
+ "description": "Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.",
43109
+ "name": "help-icon",
43110
+ "inheritedFrom": {
43111
+ "name": "FormfieldWrapper",
43112
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
43113
+ }
43114
+ },
43115
+ {
43116
+ "description": "Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.",
43117
+ "name": "help-text",
43118
+ "inheritedFrom": {
43119
+ "name": "FormfieldWrapper",
43120
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
43121
+ }
43122
+ }
43123
+ ]
40959
43124
  }
40960
43125
  ],
40961
43126
  "exports": [
@@ -41159,22 +43324,6 @@
41159
43324
  "module": "components/popover/popover.component.js"
41160
43325
  }
41161
43326
  },
41162
- {
41163
- "kind": "field",
41164
- "name": "preventScroll",
41165
- "type": {
41166
- "text": "boolean"
41167
- },
41168
- "privacy": "protected",
41169
- "description": "Prevent outside scrolling when element is shown.\n\nIMPLEMENT THIS IN YOUR COMPONENT.",
41170
- "default": "false",
41171
- "attribute": "prevent-scroll",
41172
- "reflects": true,
41173
- "inheritedFrom": {
41174
- "name": "Popover",
41175
- "module": "components/popover/popover.component.js"
41176
- }
41177
- },
41178
43327
  {
41179
43328
  "kind": "method",
41180
43329
  "name": "activatePreventScroll",
@@ -41840,6 +43989,21 @@
41840
43989
  "module": "components/popover/popover.component.js"
41841
43990
  }
41842
43991
  },
43992
+ {
43993
+ "kind": "field",
43994
+ "name": "preventScroll",
43995
+ "type": {
43996
+ "text": "boolean"
43997
+ },
43998
+ "description": "Prevent outside scrolling when popover is shown.",
43999
+ "default": "false",
44000
+ "attribute": "prevent-scroll",
44001
+ "reflects": true,
44002
+ "inheritedFrom": {
44003
+ "name": "Popover",
44004
+ "module": "components/popover/popover.component.js"
44005
+ }
44006
+ },
41843
44007
  {
41844
44008
  "kind": "field",
41845
44009
  "name": "showArrow",
@@ -43190,22 +45354,6 @@
43190
45354
  "module": "components/popover/popover.component.js"
43191
45355
  }
43192
45356
  },
43193
- {
43194
- "kind": "field",
43195
- "name": "preventScroll",
43196
- "type": {
43197
- "text": "boolean"
43198
- },
43199
- "privacy": "protected",
43200
- "description": "Prevent outside scrolling when element is shown.\n\nIMPLEMENT THIS IN YOUR COMPONENT.",
43201
- "default": "false",
43202
- "attribute": "prevent-scroll",
43203
- "reflects": true,
43204
- "inheritedFrom": {
43205
- "name": "Popover",
43206
- "module": "components/popover/popover.component.js"
43207
- }
43208
- },
43209
45357
  {
43210
45358
  "kind": "method",
43211
45359
  "name": "activatePreventScroll",
@@ -43886,6 +46034,21 @@
43886
46034
  "module": "components/popover/popover.component.js"
43887
46035
  }
43888
46036
  },
46037
+ {
46038
+ "kind": "field",
46039
+ "name": "preventScroll",
46040
+ "type": {
46041
+ "text": "boolean"
46042
+ },
46043
+ "description": "Prevent outside scrolling when popover is shown.",
46044
+ "default": "false",
46045
+ "attribute": "prevent-scroll",
46046
+ "reflects": true,
46047
+ "inheritedFrom": {
46048
+ "name": "Popover",
46049
+ "module": "components/popover/popover.component.js"
46050
+ }
46051
+ },
43889
46052
  {
43890
46053
  "kind": "field",
43891
46054
  "name": "showArrow",
@@ -48152,15 +50315,6 @@
48152
50315
  "description": "",
48153
50316
  "name": "PreventScrollMixin",
48154
50317
  "members": [
48155
- {
48156
- "kind": "field",
48157
- "name": "preventScroll",
48158
- "type": {
48159
- "text": "boolean"
48160
- },
48161
- "privacy": "protected",
48162
- "description": "Prevent outside scrolling when element is shown.\n\nIMPLEMENT THIS IN YOUR COMPONENT."
48163
- },
48164
50318
  {
48165
50319
  "kind": "method",
48166
50320
  "name": "activatePreventScroll",