@momentum-design/components 0.106.0 → 0.106.2

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.
@@ -1160,6 +1160,34 @@
1160
1160
  "module": "components/buttonsimple/buttonsimple.component.js"
1161
1161
  }
1162
1162
  },
1163
+ {
1164
+ "kind": "field",
1165
+ "name": "name",
1166
+ "type": {
1167
+ "text": "string | undefined"
1168
+ },
1169
+ "description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
1170
+ "attribute": "name",
1171
+ "reflects": true,
1172
+ "inheritedFrom": {
1173
+ "name": "Buttonsimple",
1174
+ "module": "components/buttonsimple/buttonsimple.component.js"
1175
+ }
1176
+ },
1177
+ {
1178
+ "kind": "field",
1179
+ "name": "value",
1180
+ "type": {
1181
+ "text": "string | undefined"
1182
+ },
1183
+ "description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
1184
+ "attribute": "value",
1185
+ "reflects": true,
1186
+ "inheritedFrom": {
1187
+ "name": "Buttonsimple",
1188
+ "module": "components/buttonsimple/buttonsimple.component.js"
1189
+ }
1190
+ },
1163
1191
  {
1164
1192
  "kind": "method",
1165
1193
  "name": "executeAction",
@@ -1442,6 +1470,30 @@
1442
1470
  "name": "Buttonsimple",
1443
1471
  "module": "src/components/buttonsimple/buttonsimple.component.ts"
1444
1472
  }
1473
+ },
1474
+ {
1475
+ "name": "name",
1476
+ "type": {
1477
+ "text": "string | undefined"
1478
+ },
1479
+ "description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
1480
+ "fieldName": "name",
1481
+ "inheritedFrom": {
1482
+ "name": "Buttonsimple",
1483
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
1484
+ }
1485
+ },
1486
+ {
1487
+ "name": "value",
1488
+ "type": {
1489
+ "text": "string | undefined"
1490
+ },
1491
+ "description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
1492
+ "fieldName": "value",
1493
+ "inheritedFrom": {
1494
+ "name": "Buttonsimple",
1495
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
1496
+ }
1445
1497
  }
1446
1498
  ],
1447
1499
  "superclass": {
@@ -1502,6 +1554,218 @@
1502
1554
  }
1503
1555
  ]
1504
1556
  },
1557
+ {
1558
+ "kind": "javascript-module",
1559
+ "path": "components/animation/animation.component.js",
1560
+ "declarations": [
1561
+ {
1562
+ "kind": "class",
1563
+ "description": "The `mdc-animation` component is a wrapper around the Lottie animation library.\nIt fetches the animation data dynamically based on the provided name and renders it.\nThis is a display only component that does not have any interactive functionality.\nFrom accessibility perspective, (by default) it is a decorative image component.",
1564
+ "name": "Animation",
1565
+ "members": [
1566
+ {
1567
+ "kind": "field",
1568
+ "name": "name",
1569
+ "type": {
1570
+ "text": "AnimationNames | undefined"
1571
+ },
1572
+ "description": "Name of the animation (= filename)",
1573
+ "attribute": "name",
1574
+ "reflects": true
1575
+ },
1576
+ {
1577
+ "kind": "field",
1578
+ "name": "loop",
1579
+ "type": {
1580
+ "text": "LoopType | undefined"
1581
+ },
1582
+ "description": "How many times to loop the animation\n- \"true\" - infinite\n- \"false\" - no loop\n- number - number of times to loop",
1583
+ "attribute": "loop",
1584
+ "reflects": true
1585
+ },
1586
+ {
1587
+ "kind": "field",
1588
+ "name": "autoplay",
1589
+ "type": {
1590
+ "text": "boolean | undefined"
1591
+ },
1592
+ "description": "Weather start the animation automatically",
1593
+ "attribute": "autoplay",
1594
+ "reflects": true
1595
+ },
1596
+ {
1597
+ "kind": "field",
1598
+ "name": "ariaLabel",
1599
+ "type": {
1600
+ "text": "string | null"
1601
+ },
1602
+ "default": "null",
1603
+ "description": "Aria-label attribute to be set for accessibility",
1604
+ "attribute": "aria-label"
1605
+ },
1606
+ {
1607
+ "kind": "field",
1608
+ "name": "ariaLabelledBy",
1609
+ "type": {
1610
+ "text": "string | null"
1611
+ },
1612
+ "default": "null",
1613
+ "description": "Aria-labelledby attribute to be set for accessibility",
1614
+ "attribute": "aria-labelledby"
1615
+ },
1616
+ {
1617
+ "kind": "field",
1618
+ "name": "lottieInstance",
1619
+ "type": {
1620
+ "text": "AnimationItem | undefined"
1621
+ },
1622
+ "privacy": "private",
1623
+ "description": "Lottie animation instance"
1624
+ },
1625
+ {
1626
+ "kind": "field",
1627
+ "name": "containerRef",
1628
+ "type": {
1629
+ "text": "Ref<HTMLDivElement>"
1630
+ },
1631
+ "privacy": "private",
1632
+ "description": "Container for the animation"
1633
+ },
1634
+ {
1635
+ "kind": "field",
1636
+ "name": "animation",
1637
+ "description": "Exposed API of the animation library (lottie)",
1638
+ "readonly": true
1639
+ },
1640
+ {
1641
+ "kind": "method",
1642
+ "name": "getLoopValue",
1643
+ "privacy": "private"
1644
+ },
1645
+ {
1646
+ "kind": "method",
1647
+ "name": "onLoadSuccessHandler",
1648
+ "privacy": "private",
1649
+ "parameters": [
1650
+ {
1651
+ "name": "animationData",
1652
+ "type": {
1653
+ "text": "any"
1654
+ }
1655
+ }
1656
+ ],
1657
+ "description": "Create new lotty instance for the loaded data"
1658
+ },
1659
+ {
1660
+ "kind": "method",
1661
+ "name": "onLoadFailHandler",
1662
+ "privacy": "private",
1663
+ "parameters": [
1664
+ {
1665
+ "name": "error",
1666
+ "type": {
1667
+ "text": "Error"
1668
+ }
1669
+ }
1670
+ ],
1671
+ "description": "Error handler for animation loading"
1672
+ },
1673
+ {
1674
+ "kind": "method",
1675
+ "name": "getAnimationData",
1676
+ "privacy": "private",
1677
+ "description": "Import animation data dynamically"
1678
+ },
1679
+ {
1680
+ "kind": "field",
1681
+ "name": "onCompleteHandler",
1682
+ "description": "Re-dispatch the complete event from the animation library\n\nThis handler called with the animation instance instead of the component instance\nso we need to bind it to the component instance. The arrow function just does that."
1683
+ }
1684
+ ],
1685
+ "events": [
1686
+ {
1687
+ "name": "load",
1688
+ "type": {
1689
+ "text": "CustomEvent"
1690
+ },
1691
+ "description": "(React: onLoad) This event is dispatched when the animation is loaded",
1692
+ "reactName": "onLoad"
1693
+ },
1694
+ {
1695
+ "description": "(React: onComplete) This event is dispatched when all animation loops completed",
1696
+ "name": "complete",
1697
+ "reactName": "onComplete"
1698
+ },
1699
+ {
1700
+ "description": "(React: onError) This event is dispatched when animation loading failed",
1701
+ "name": "error",
1702
+ "reactName": "onError"
1703
+ }
1704
+ ],
1705
+ "attributes": [
1706
+ {
1707
+ "name": "name",
1708
+ "type": {
1709
+ "text": "AnimationNames | undefined"
1710
+ },
1711
+ "description": "Name of the animation (= filename)",
1712
+ "fieldName": "name"
1713
+ },
1714
+ {
1715
+ "name": "loop",
1716
+ "type": {
1717
+ "text": "LoopType | undefined"
1718
+ },
1719
+ "description": "How many times to loop the animation\n- \"true\" - infinite\n- \"false\" - no loop\n- number - number of times to loop",
1720
+ "fieldName": "loop"
1721
+ },
1722
+ {
1723
+ "name": "autoplay",
1724
+ "type": {
1725
+ "text": "boolean | undefined"
1726
+ },
1727
+ "description": "Weather start the animation automatically",
1728
+ "fieldName": "autoplay"
1729
+ },
1730
+ {
1731
+ "name": "aria-label",
1732
+ "type": {
1733
+ "text": "string | null"
1734
+ },
1735
+ "default": "null",
1736
+ "description": "Aria-label attribute to be set for accessibility",
1737
+ "fieldName": "ariaLabel"
1738
+ },
1739
+ {
1740
+ "name": "aria-labelledby",
1741
+ "type": {
1742
+ "text": "string | null"
1743
+ },
1744
+ "default": "null",
1745
+ "description": "Aria-labelledby attribute to be set for accessibility",
1746
+ "fieldName": "ariaLabelledBy"
1747
+ }
1748
+ ],
1749
+ "superclass": {
1750
+ "name": "Component",
1751
+ "module": "/src/models"
1752
+ },
1753
+ "tagName": "mdc-animation",
1754
+ "jsDoc": "/**\n * The `mdc-animation` component is a wrapper around the Lottie animation library.\n * It fetches the animation data dynamically based on the provided name and renders it.\n * This is a display only component that does not have any interactive functionality.\n * From accessibility perspective, (by default) it is a decorative image component.\n *\n * @tagname mdc-animation\n *\n * @event load - (React: onLoad) This event is dispatched when the animation is loaded\n * @event complete - (React: onComplete) This event is dispatched when all animation loops completed\n * @event error - (React: onError) This event is dispatched when animation loading failed\n */",
1755
+ "customElement": true
1756
+ }
1757
+ ],
1758
+ "exports": [
1759
+ {
1760
+ "kind": "js",
1761
+ "name": "default",
1762
+ "declaration": {
1763
+ "name": "Animation",
1764
+ "module": "components/animation/animation.component.js"
1765
+ }
1766
+ }
1767
+ ]
1768
+ },
1505
1769
  {
1506
1770
  "kind": "javascript-module",
1507
1771
  "path": "components/appheader/appheader.component.js",
@@ -1829,218 +2093,6 @@
1829
2093
  }
1830
2094
  ]
1831
2095
  },
1832
- {
1833
- "kind": "javascript-module",
1834
- "path": "components/animation/animation.component.js",
1835
- "declarations": [
1836
- {
1837
- "kind": "class",
1838
- "description": "The `mdc-animation` component is a wrapper around the Lottie animation library.\nIt fetches the animation data dynamically based on the provided name and renders it.\nThis is a display only component that does not have any interactive functionality.\nFrom accessibility perspective, (by default) it is a decorative image component.",
1839
- "name": "Animation",
1840
- "members": [
1841
- {
1842
- "kind": "field",
1843
- "name": "name",
1844
- "type": {
1845
- "text": "AnimationNames | undefined"
1846
- },
1847
- "description": "Name of the animation (= filename)",
1848
- "attribute": "name",
1849
- "reflects": true
1850
- },
1851
- {
1852
- "kind": "field",
1853
- "name": "loop",
1854
- "type": {
1855
- "text": "LoopType | undefined"
1856
- },
1857
- "description": "How many times to loop the animation\n- \"true\" - infinite\n- \"false\" - no loop\n- number - number of times to loop",
1858
- "attribute": "loop",
1859
- "reflects": true
1860
- },
1861
- {
1862
- "kind": "field",
1863
- "name": "autoplay",
1864
- "type": {
1865
- "text": "boolean | undefined"
1866
- },
1867
- "description": "Weather start the animation automatically",
1868
- "attribute": "autoplay",
1869
- "reflects": true
1870
- },
1871
- {
1872
- "kind": "field",
1873
- "name": "ariaLabel",
1874
- "type": {
1875
- "text": "string | null"
1876
- },
1877
- "default": "null",
1878
- "description": "Aria-label attribute to be set for accessibility",
1879
- "attribute": "aria-label"
1880
- },
1881
- {
1882
- "kind": "field",
1883
- "name": "ariaLabelledBy",
1884
- "type": {
1885
- "text": "string | null"
1886
- },
1887
- "default": "null",
1888
- "description": "Aria-labelledby attribute to be set for accessibility",
1889
- "attribute": "aria-labelledby"
1890
- },
1891
- {
1892
- "kind": "field",
1893
- "name": "lottieInstance",
1894
- "type": {
1895
- "text": "AnimationItem | undefined"
1896
- },
1897
- "privacy": "private",
1898
- "description": "Lottie animation instance"
1899
- },
1900
- {
1901
- "kind": "field",
1902
- "name": "containerRef",
1903
- "type": {
1904
- "text": "Ref<HTMLDivElement>"
1905
- },
1906
- "privacy": "private",
1907
- "description": "Container for the animation"
1908
- },
1909
- {
1910
- "kind": "field",
1911
- "name": "animation",
1912
- "description": "Exposed API of the animation library (lottie)",
1913
- "readonly": true
1914
- },
1915
- {
1916
- "kind": "method",
1917
- "name": "getLoopValue",
1918
- "privacy": "private"
1919
- },
1920
- {
1921
- "kind": "method",
1922
- "name": "onLoadSuccessHandler",
1923
- "privacy": "private",
1924
- "parameters": [
1925
- {
1926
- "name": "animationData",
1927
- "type": {
1928
- "text": "any"
1929
- }
1930
- }
1931
- ],
1932
- "description": "Create new lotty instance for the loaded data"
1933
- },
1934
- {
1935
- "kind": "method",
1936
- "name": "onLoadFailHandler",
1937
- "privacy": "private",
1938
- "parameters": [
1939
- {
1940
- "name": "error",
1941
- "type": {
1942
- "text": "Error"
1943
- }
1944
- }
1945
- ],
1946
- "description": "Error handler for animation loading"
1947
- },
1948
- {
1949
- "kind": "method",
1950
- "name": "getAnimationData",
1951
- "privacy": "private",
1952
- "description": "Import animation data dynamically"
1953
- },
1954
- {
1955
- "kind": "field",
1956
- "name": "onCompleteHandler",
1957
- "description": "Re-dispatch the complete event from the animation library\n\nThis handler called with the animation instance instead of the component instance\nso we need to bind it to the component instance. The arrow function just does that."
1958
- }
1959
- ],
1960
- "events": [
1961
- {
1962
- "name": "load",
1963
- "type": {
1964
- "text": "CustomEvent"
1965
- },
1966
- "description": "(React: onLoad) This event is dispatched when the animation is loaded",
1967
- "reactName": "onLoad"
1968
- },
1969
- {
1970
- "description": "(React: onComplete) This event is dispatched when all animation loops completed",
1971
- "name": "complete",
1972
- "reactName": "onComplete"
1973
- },
1974
- {
1975
- "description": "(React: onError) This event is dispatched when animation loading failed",
1976
- "name": "error",
1977
- "reactName": "onError"
1978
- }
1979
- ],
1980
- "attributes": [
1981
- {
1982
- "name": "name",
1983
- "type": {
1984
- "text": "AnimationNames | undefined"
1985
- },
1986
- "description": "Name of the animation (= filename)",
1987
- "fieldName": "name"
1988
- },
1989
- {
1990
- "name": "loop",
1991
- "type": {
1992
- "text": "LoopType | undefined"
1993
- },
1994
- "description": "How many times to loop the animation\n- \"true\" - infinite\n- \"false\" - no loop\n- number - number of times to loop",
1995
- "fieldName": "loop"
1996
- },
1997
- {
1998
- "name": "autoplay",
1999
- "type": {
2000
- "text": "boolean | undefined"
2001
- },
2002
- "description": "Weather start the animation automatically",
2003
- "fieldName": "autoplay"
2004
- },
2005
- {
2006
- "name": "aria-label",
2007
- "type": {
2008
- "text": "string | null"
2009
- },
2010
- "default": "null",
2011
- "description": "Aria-label attribute to be set for accessibility",
2012
- "fieldName": "ariaLabel"
2013
- },
2014
- {
2015
- "name": "aria-labelledby",
2016
- "type": {
2017
- "text": "string | null"
2018
- },
2019
- "default": "null",
2020
- "description": "Aria-labelledby attribute to be set for accessibility",
2021
- "fieldName": "ariaLabelledBy"
2022
- }
2023
- ],
2024
- "superclass": {
2025
- "name": "Component",
2026
- "module": "/src/models"
2027
- },
2028
- "tagName": "mdc-animation",
2029
- "jsDoc": "/**\n * The `mdc-animation` component is a wrapper around the Lottie animation library.\n * It fetches the animation data dynamically based on the provided name and renders it.\n * This is a display only component that does not have any interactive functionality.\n * From accessibility perspective, (by default) it is a decorative image component.\n *\n * @tagname mdc-animation\n *\n * @event load - (React: onLoad) This event is dispatched when the animation is loaded\n * @event complete - (React: onComplete) This event is dispatched when all animation loops completed\n * @event error - (React: onError) This event is dispatched when animation loading failed\n */",
2030
- "customElement": true
2031
- }
2032
- ],
2033
- "exports": [
2034
- {
2035
- "kind": "js",
2036
- "name": "default",
2037
- "declaration": {
2038
- "name": "Animation",
2039
- "module": "components/animation/animation.component.js"
2040
- }
2041
- }
2042
- ]
2043
- },
2044
2096
  {
2045
2097
  "kind": "javascript-module",
2046
2098
  "path": "components/avatarbutton/avatarbutton.component.js",
@@ -2327,6 +2379,34 @@
2327
2379
  "module": "components/buttonsimple/buttonsimple.component.js"
2328
2380
  }
2329
2381
  },
2382
+ {
2383
+ "kind": "field",
2384
+ "name": "name",
2385
+ "type": {
2386
+ "text": "string | undefined"
2387
+ },
2388
+ "description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
2389
+ "attribute": "name",
2390
+ "reflects": true,
2391
+ "inheritedFrom": {
2392
+ "name": "Buttonsimple",
2393
+ "module": "components/buttonsimple/buttonsimple.component.js"
2394
+ }
2395
+ },
2396
+ {
2397
+ "kind": "field",
2398
+ "name": "value",
2399
+ "type": {
2400
+ "text": "string | undefined"
2401
+ },
2402
+ "description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
2403
+ "attribute": "value",
2404
+ "reflects": true,
2405
+ "inheritedFrom": {
2406
+ "name": "Buttonsimple",
2407
+ "module": "components/buttonsimple/buttonsimple.component.js"
2408
+ }
2409
+ },
2330
2410
  {
2331
2411
  "kind": "method",
2332
2412
  "name": "executeAction",
@@ -2711,6 +2791,30 @@
2711
2791
  "name": "Buttonsimple",
2712
2792
  "module": "src/components/buttonsimple/buttonsimple.component.ts"
2713
2793
  }
2794
+ },
2795
+ {
2796
+ "name": "name",
2797
+ "type": {
2798
+ "text": "string | undefined"
2799
+ },
2800
+ "description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
2801
+ "fieldName": "name",
2802
+ "inheritedFrom": {
2803
+ "name": "Buttonsimple",
2804
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
2805
+ }
2806
+ },
2807
+ {
2808
+ "name": "value",
2809
+ "type": {
2810
+ "text": "string | undefined"
2811
+ },
2812
+ "description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
2813
+ "fieldName": "value",
2814
+ "inheritedFrom": {
2815
+ "name": "Buttonsimple",
2816
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
2817
+ }
2714
2818
  }
2715
2819
  ],
2716
2820
  "mixins": [
@@ -3567,6 +3671,34 @@
3567
3671
  "module": "components/buttonsimple/buttonsimple.component.js"
3568
3672
  }
3569
3673
  },
3674
+ {
3675
+ "kind": "field",
3676
+ "name": "name",
3677
+ "type": {
3678
+ "text": "string | undefined"
3679
+ },
3680
+ "description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
3681
+ "attribute": "name",
3682
+ "reflects": true,
3683
+ "inheritedFrom": {
3684
+ "name": "Buttonsimple",
3685
+ "module": "components/buttonsimple/buttonsimple.component.js"
3686
+ }
3687
+ },
3688
+ {
3689
+ "kind": "field",
3690
+ "name": "value",
3691
+ "type": {
3692
+ "text": "string | undefined"
3693
+ },
3694
+ "description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
3695
+ "attribute": "value",
3696
+ "reflects": true,
3697
+ "inheritedFrom": {
3698
+ "name": "Buttonsimple",
3699
+ "module": "components/buttonsimple/buttonsimple.component.js"
3700
+ }
3701
+ },
3570
3702
  {
3571
3703
  "kind": "method",
3572
3704
  "name": "executeAction",
@@ -3890,6 +4022,30 @@
3890
4022
  "name": "Buttonsimple",
3891
4023
  "module": "src/components/buttonsimple/buttonsimple.component.ts"
3892
4024
  }
4025
+ },
4026
+ {
4027
+ "name": "name",
4028
+ "type": {
4029
+ "text": "string | undefined"
4030
+ },
4031
+ "description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
4032
+ "fieldName": "name",
4033
+ "inheritedFrom": {
4034
+ "name": "Buttonsimple",
4035
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
4036
+ }
4037
+ },
4038
+ {
4039
+ "name": "value",
4040
+ "type": {
4041
+ "text": "string | undefined"
4042
+ },
4043
+ "description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
4044
+ "fieldName": "value",
4045
+ "inheritedFrom": {
4046
+ "name": "Buttonsimple",
4047
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
4048
+ }
3893
4049
  }
3894
4050
  ],
3895
4051
  "mixins": [
@@ -4790,6 +4946,26 @@
4790
4946
  "attribute": "type",
4791
4947
  "reflects": true
4792
4948
  },
4949
+ {
4950
+ "kind": "field",
4951
+ "name": "name",
4952
+ "type": {
4953
+ "text": "string | undefined"
4954
+ },
4955
+ "description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
4956
+ "attribute": "name",
4957
+ "reflects": true
4958
+ },
4959
+ {
4960
+ "kind": "field",
4961
+ "name": "value",
4962
+ "type": {
4963
+ "text": "string | undefined"
4964
+ },
4965
+ "description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
4966
+ "attribute": "value",
4967
+ "reflects": true
4968
+ },
4793
4969
  {
4794
4970
  "kind": "method",
4795
4971
  "name": "executeAction",
@@ -5027,6 +5203,22 @@
5027
5203
  "default": "button",
5028
5204
  "fieldName": "type"
5029
5205
  },
5206
+ {
5207
+ "name": "name",
5208
+ "type": {
5209
+ "text": "string | undefined"
5210
+ },
5211
+ "description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
5212
+ "fieldName": "name"
5213
+ },
5214
+ {
5215
+ "name": "value",
5216
+ "type": {
5217
+ "text": "string | undefined"
5218
+ },
5219
+ "description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
5220
+ "fieldName": "value"
5221
+ },
5030
5222
  {
5031
5223
  "name": "auto-focus-on-mount",
5032
5224
  "type": {
@@ -5946,6 +6138,34 @@
5946
6138
  "module": "components/buttonsimple/buttonsimple.component.js"
5947
6139
  }
5948
6140
  },
6141
+ {
6142
+ "kind": "field",
6143
+ "name": "name",
6144
+ "type": {
6145
+ "text": "string | undefined"
6146
+ },
6147
+ "description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
6148
+ "attribute": "name",
6149
+ "reflects": true,
6150
+ "inheritedFrom": {
6151
+ "name": "Buttonsimple",
6152
+ "module": "components/buttonsimple/buttonsimple.component.js"
6153
+ }
6154
+ },
6155
+ {
6156
+ "kind": "field",
6157
+ "name": "value",
6158
+ "type": {
6159
+ "text": "string | undefined"
6160
+ },
6161
+ "description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
6162
+ "attribute": "value",
6163
+ "reflects": true,
6164
+ "inheritedFrom": {
6165
+ "name": "Buttonsimple",
6166
+ "module": "components/buttonsimple/buttonsimple.component.js"
6167
+ }
6168
+ },
5949
6169
  {
5950
6170
  "kind": "method",
5951
6171
  "name": "executeAction",
@@ -6377,6 +6597,30 @@
6377
6597
  "name": "Buttonsimple",
6378
6598
  "module": "src/components/buttonsimple/buttonsimple.component.ts"
6379
6599
  }
6600
+ },
6601
+ {
6602
+ "name": "name",
6603
+ "type": {
6604
+ "text": "string | undefined"
6605
+ },
6606
+ "description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
6607
+ "fieldName": "name",
6608
+ "inheritedFrom": {
6609
+ "name": "Buttonsimple",
6610
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
6611
+ }
6612
+ },
6613
+ {
6614
+ "name": "value",
6615
+ "type": {
6616
+ "text": "string | undefined"
6617
+ },
6618
+ "description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
6619
+ "fieldName": "value",
6620
+ "inheritedFrom": {
6621
+ "name": "Buttonsimple",
6622
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
6623
+ }
6380
6624
  }
6381
6625
  ]
6382
6626
  }
@@ -8739,6 +8983,34 @@
8739
8983
  "module": "components/buttonsimple/buttonsimple.component.js"
8740
8984
  }
8741
8985
  },
8986
+ {
8987
+ "kind": "field",
8988
+ "name": "name",
8989
+ "type": {
8990
+ "text": "string | undefined"
8991
+ },
8992
+ "description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
8993
+ "attribute": "name",
8994
+ "reflects": true,
8995
+ "inheritedFrom": {
8996
+ "name": "Buttonsimple",
8997
+ "module": "components/buttonsimple/buttonsimple.component.js"
8998
+ }
8999
+ },
9000
+ {
9001
+ "kind": "field",
9002
+ "name": "value",
9003
+ "type": {
9004
+ "text": "string | undefined"
9005
+ },
9006
+ "description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
9007
+ "attribute": "value",
9008
+ "reflects": true,
9009
+ "inheritedFrom": {
9010
+ "name": "Buttonsimple",
9011
+ "module": "components/buttonsimple/buttonsimple.component.js"
9012
+ }
9013
+ },
8742
9014
  {
8743
9015
  "kind": "method",
8744
9016
  "name": "executeAction",
@@ -9033,6 +9305,30 @@
9033
9305
  "name": "Buttonsimple",
9034
9306
  "module": "src/components/buttonsimple/buttonsimple.component.ts"
9035
9307
  }
9308
+ },
9309
+ {
9310
+ "name": "name",
9311
+ "type": {
9312
+ "text": "string | undefined"
9313
+ },
9314
+ "description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
9315
+ "fieldName": "name",
9316
+ "inheritedFrom": {
9317
+ "name": "Buttonsimple",
9318
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
9319
+ }
9320
+ },
9321
+ {
9322
+ "name": "value",
9323
+ "type": {
9324
+ "text": "string | undefined"
9325
+ },
9326
+ "description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
9327
+ "fieldName": "value",
9328
+ "inheritedFrom": {
9329
+ "name": "Buttonsimple",
9330
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
9331
+ }
9036
9332
  }
9037
9333
  ],
9038
9334
  "mixins": [
@@ -12678,6 +12974,34 @@
12678
12974
  "module": "components/buttonsimple/buttonsimple.component.js"
12679
12975
  }
12680
12976
  },
12977
+ {
12978
+ "kind": "field",
12979
+ "name": "name",
12980
+ "type": {
12981
+ "text": "string | undefined"
12982
+ },
12983
+ "description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
12984
+ "attribute": "name",
12985
+ "reflects": true,
12986
+ "inheritedFrom": {
12987
+ "name": "Buttonsimple",
12988
+ "module": "components/buttonsimple/buttonsimple.component.js"
12989
+ }
12990
+ },
12991
+ {
12992
+ "kind": "field",
12993
+ "name": "value",
12994
+ "type": {
12995
+ "text": "string | undefined"
12996
+ },
12997
+ "description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
12998
+ "attribute": "value",
12999
+ "reflects": true,
13000
+ "inheritedFrom": {
13001
+ "name": "Buttonsimple",
13002
+ "module": "components/buttonsimple/buttonsimple.component.js"
13003
+ }
13004
+ },
12681
13005
  {
12682
13006
  "kind": "method",
12683
13007
  "name": "setActive",
@@ -12980,6 +13304,30 @@
12980
13304
  "name": "Buttonsimple",
12981
13305
  "module": "src/components/buttonsimple/buttonsimple.component.ts"
12982
13306
  }
13307
+ },
13308
+ {
13309
+ "name": "name",
13310
+ "type": {
13311
+ "text": "string | undefined"
13312
+ },
13313
+ "description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
13314
+ "fieldName": "name",
13315
+ "inheritedFrom": {
13316
+ "name": "Buttonsimple",
13317
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
13318
+ }
13319
+ },
13320
+ {
13321
+ "name": "value",
13322
+ "type": {
13323
+ "text": "string | undefined"
13324
+ },
13325
+ "description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
13326
+ "fieldName": "value",
13327
+ "inheritedFrom": {
13328
+ "name": "Buttonsimple",
13329
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
13330
+ }
12983
13331
  }
12984
13332
  ],
12985
13333
  "superclass": {
@@ -15996,6 +16344,34 @@
15996
16344
  "module": "components/buttonsimple/buttonsimple.component.js"
15997
16345
  }
15998
16346
  },
16347
+ {
16348
+ "kind": "field",
16349
+ "name": "name",
16350
+ "type": {
16351
+ "text": "string | undefined"
16352
+ },
16353
+ "description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
16354
+ "attribute": "name",
16355
+ "reflects": true,
16356
+ "inheritedFrom": {
16357
+ "name": "Buttonsimple",
16358
+ "module": "components/buttonsimple/buttonsimple.component.js"
16359
+ }
16360
+ },
16361
+ {
16362
+ "kind": "field",
16363
+ "name": "value",
16364
+ "type": {
16365
+ "text": "string | undefined"
16366
+ },
16367
+ "description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
16368
+ "attribute": "value",
16369
+ "reflects": true,
16370
+ "inheritedFrom": {
16371
+ "name": "Buttonsimple",
16372
+ "module": "components/buttonsimple/buttonsimple.component.js"
16373
+ }
16374
+ },
15999
16375
  {
16000
16376
  "kind": "method",
16001
16377
  "name": "executeAction",
@@ -16328,6 +16704,30 @@
16328
16704
  "name": "Buttonsimple",
16329
16705
  "module": "src/components/buttonsimple/buttonsimple.component.ts"
16330
16706
  }
16707
+ },
16708
+ {
16709
+ "name": "name",
16710
+ "type": {
16711
+ "text": "string | undefined"
16712
+ },
16713
+ "description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
16714
+ "fieldName": "name",
16715
+ "inheritedFrom": {
16716
+ "name": "Buttonsimple",
16717
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
16718
+ }
16719
+ },
16720
+ {
16721
+ "name": "value",
16722
+ "type": {
16723
+ "text": "string | undefined"
16724
+ },
16725
+ "description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
16726
+ "fieldName": "value",
16727
+ "inheritedFrom": {
16728
+ "name": "Buttonsimple",
16729
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
16730
+ }
16331
16731
  }
16332
16732
  ],
16333
16733
  "mixins": [
@@ -18296,9 +18696,8 @@
18296
18696
  "kind": "field",
18297
18697
  "name": "name",
18298
18698
  "type": {
18299
- "text": "undefined | string | undefined"
18699
+ "text": "string | undefined"
18300
18700
  },
18301
- "default": "undefined",
18302
18701
  "description": "The name attribute is used to identify the menu item when it is selected.",
18303
18702
  "attribute": "name",
18304
18703
  "reflects": true
@@ -18307,9 +18706,8 @@
18307
18706
  "kind": "field",
18308
18707
  "name": "value",
18309
18708
  "type": {
18310
- "text": "undefined | string | undefined"
18709
+ "text": "string | undefined"
18311
18710
  },
18312
- "default": "undefined",
18313
18711
  "description": "The value attribute is used to represent a value when the menu item is selected.\nIt is typically used with checkbox and radio menu items, but can be handy for any menu item.",
18314
18712
  "attribute": "value",
18315
18713
  "reflects": true
@@ -18793,18 +19191,16 @@
18793
19191
  {
18794
19192
  "name": "name",
18795
19193
  "type": {
18796
- "text": "undefined | string | undefined"
19194
+ "text": "string | undefined"
18797
19195
  },
18798
- "default": "undefined",
18799
19196
  "description": "The name attribute is used to identify the menu item when it is selected.",
18800
19197
  "fieldName": "name"
18801
19198
  },
18802
19199
  {
18803
19200
  "name": "value",
18804
19201
  "type": {
18805
- "text": "undefined | string | undefined"
19202
+ "text": "string | undefined"
18806
19203
  },
18807
- "default": "undefined",
18808
19204
  "description": "The value attribute is used to represent a value when the menu item is selected.\nIt is typically used with checkbox and radio menu items, but can be handy for any menu item.",
18809
19205
  "fieldName": "value"
18810
19206
  },
@@ -19232,9 +19628,8 @@
19232
19628
  "kind": "field",
19233
19629
  "name": "name",
19234
19630
  "type": {
19235
- "text": "undefined | string | undefined"
19631
+ "text": "string | undefined"
19236
19632
  },
19237
- "default": "undefined",
19238
19633
  "description": "The name attribute is used to identify the menu item when it is selected.",
19239
19634
  "attribute": "name",
19240
19635
  "reflects": true,
@@ -19247,9 +19642,8 @@
19247
19642
  "kind": "field",
19248
19643
  "name": "value",
19249
19644
  "type": {
19250
- "text": "undefined | string | undefined"
19645
+ "text": "string | undefined"
19251
19646
  },
19252
- "default": "undefined",
19253
19647
  "description": "The value attribute is used to represent a value when the menu item is selected.\nIt is typically used with checkbox and radio menu items, but can be handy for any menu item.",
19254
19648
  "attribute": "value",
19255
19649
  "reflects": true,
@@ -19775,9 +20169,8 @@
19775
20169
  {
19776
20170
  "name": "name",
19777
20171
  "type": {
19778
- "text": "undefined | string | undefined"
20172
+ "text": "string | undefined"
19779
20173
  },
19780
- "default": "undefined",
19781
20174
  "description": "The name attribute is used to identify the menu item when it is selected.",
19782
20175
  "fieldName": "name",
19783
20176
  "inheritedFrom": {
@@ -19788,9 +20181,8 @@
19788
20181
  {
19789
20182
  "name": "value",
19790
20183
  "type": {
19791
- "text": "undefined | string | undefined"
20184
+ "text": "string | undefined"
19792
20185
  },
19793
- "default": "undefined",
19794
20186
  "description": "The value attribute is used to represent a value when the menu item is selected.\nIt is typically used with checkbox and radio menu items, but can be handy for any menu item.",
19795
20187
  "fieldName": "value",
19796
20188
  "inheritedFrom": {
@@ -20233,9 +20625,8 @@
20233
20625
  "kind": "field",
20234
20626
  "name": "name",
20235
20627
  "type": {
20236
- "text": "undefined | string | undefined"
20628
+ "text": "string | undefined"
20237
20629
  },
20238
- "default": "undefined",
20239
20630
  "description": "The name attribute is used to identify the menu item when it is selected.",
20240
20631
  "attribute": "name",
20241
20632
  "reflects": true,
@@ -20248,9 +20639,8 @@
20248
20639
  "kind": "field",
20249
20640
  "name": "value",
20250
20641
  "type": {
20251
- "text": "undefined | string | undefined"
20642
+ "text": "string | undefined"
20252
20643
  },
20253
- "default": "undefined",
20254
20644
  "description": "The value attribute is used to represent a value when the menu item is selected.\nIt is typically used with checkbox and radio menu items, but can be handy for any menu item.",
20255
20645
  "attribute": "value",
20256
20646
  "reflects": true,
@@ -20776,9 +21166,8 @@
20776
21166
  {
20777
21167
  "name": "name",
20778
21168
  "type": {
20779
- "text": "undefined | string | undefined"
21169
+ "text": "string | undefined"
20780
21170
  },
20781
- "default": "undefined",
20782
21171
  "description": "The name attribute is used to identify the menu item when it is selected.",
20783
21172
  "fieldName": "name",
20784
21173
  "inheritedFrom": {
@@ -20789,9 +21178,8 @@
20789
21178
  {
20790
21179
  "name": "value",
20791
21180
  "type": {
20792
- "text": "undefined | string | undefined"
21181
+ "text": "string | undefined"
20793
21182
  },
20794
- "default": "undefined",
20795
21183
  "description": "The value attribute is used to represent a value when the menu item is selected.\nIt is typically used with checkbox and radio menu items, but can be handy for any menu item.",
20796
21184
  "fieldName": "value",
20797
21185
  "inheritedFrom": {
@@ -23768,9 +24156,8 @@
23768
24156
  "kind": "field",
23769
24157
  "name": "name",
23770
24158
  "type": {
23771
- "text": "undefined | string | undefined"
24159
+ "text": "string | undefined"
23772
24160
  },
23773
- "default": "undefined",
23774
24161
  "description": "The name attribute is used to identify the menu item when it is selected.",
23775
24162
  "attribute": "name",
23776
24163
  "reflects": true,
@@ -23783,9 +24170,8 @@
23783
24170
  "kind": "field",
23784
24171
  "name": "value",
23785
24172
  "type": {
23786
- "text": "undefined | string | undefined"
24173
+ "text": "string | undefined"
23787
24174
  },
23788
- "default": "undefined",
23789
24175
  "description": "The value attribute is used to represent a value when the menu item is selected.\nIt is typically used with checkbox and radio menu items, but can be handy for any menu item.",
23790
24176
  "attribute": "value",
23791
24177
  "reflects": true,
@@ -24362,9 +24748,8 @@
24362
24748
  {
24363
24749
  "name": "name",
24364
24750
  "type": {
24365
- "text": "undefined | string | undefined"
24751
+ "text": "string | undefined"
24366
24752
  },
24367
- "default": "undefined",
24368
24753
  "description": "The name attribute is used to identify the menu item when it is selected.",
24369
24754
  "fieldName": "name",
24370
24755
  "inheritedFrom": {
@@ -24375,9 +24760,8 @@
24375
24760
  {
24376
24761
  "name": "value",
24377
24762
  "type": {
24378
- "text": "undefined | string | undefined"
24763
+ "text": "string | undefined"
24379
24764
  },
24380
- "default": "undefined",
24381
24765
  "description": "The value attribute is used to represent a value when the menu item is selected.\nIt is typically used with checkbox and radio menu items, but can be handy for any menu item.",
24382
24766
  "fieldName": "value",
24383
24767
  "inheritedFrom": {
@@ -29786,191 +30170,19 @@
29786
30170
  },
29787
30171
  {
29788
30172
  "kind": "javascript-module",
29789
- "path": "components/radio/radio.component.js",
30173
+ "path": "components/radiogroup/radiogroup.component.js",
29790
30174
  "declarations": [
29791
30175
  {
29792
30176
  "kind": "class",
29793
- "description": "Radio allow users to select single options from a list or turn an item/feature on or off.\nThese are often used in forms, settings, and selection in lists.\n\nA radio component contains an optional label, optional info icon and an optional helper text.",
29794
- "name": "Radio",
30177
+ "description": "`mdc-radiogroup` - This is the wrapper component for radio buttons which are grouped together.\nIt can have a header text and a description. It enables users to select a single option from a set of options.\nIt is often used in forms, settings, and selection in lists. It automatically group the radio buttons inside it.",
30178
+ "name": "RadioGroup",
29795
30179
  "cssProperties": [
29796
30180
  {
29797
- "description": "color of the label when disabled",
29798
- "name": "--mdc-radio-text-disabled-color"
29799
- },
29800
- {
29801
- "description": "color of the radio button when inactive and hovered",
29802
- "name": "--mdc-radio-control-inactive-hover"
29803
- },
29804
- {
29805
- "description": "color of the radio button when inactive and pressed",
29806
- "name": "--mdc-radio-control-inactive-pressed-color"
29807
- },
29808
- {
29809
- "description": "color of the radio button when active and hovered",
29810
- "name": "--mdc-radio-control-active-hover-color"
29811
- },
29812
- {
29813
- "description": "color of the radio button when active and pressed",
29814
- "name": "--mdc-radio-control-active-pressed-color"
29815
- },
29816
- {
29817
- "description": "color of the radio button when disabled",
29818
- "name": "--mdc-radio-disabled-border-color"
29819
- },
29820
- {
29821
- "description": "color of the radio button when active and disabled",
29822
- "name": "--mdc-radio-control-active-disabled-background"
29823
- },
29824
- {
29825
- "description": "color of the radio button when inactive and disabled",
29826
- "name": "--mdc-radio-control-inactive-disabled-background"
30181
+ "description": "color of the description text",
30182
+ "name": "--mdc-radiogroup-description-text-normal"
29827
30183
  }
29828
30184
  ],
29829
30185
  "members": [
29830
- {
29831
- "kind": "field",
29832
- "name": "checked",
29833
- "type": {
29834
- "text": "boolean"
29835
- },
29836
- "default": "false",
29837
- "description": "Determines whether the radio is selected or unselected.",
29838
- "attribute": "checked",
29839
- "reflects": true
29840
- },
29841
- {
29842
- "kind": "field",
29843
- "name": "readonly",
29844
- "type": {
29845
- "text": "boolean"
29846
- },
29847
- "default": "false",
29848
- "description": "Determines whether the radio is read-only.",
29849
- "attribute": "readonly",
29850
- "reflects": true
29851
- },
29852
- {
29853
- "kind": "method",
29854
- "name": "getAllRadiosWithinSameGroup",
29855
- "privacy": "private",
29856
- "return": {
29857
- "type": {
29858
- "text": "Radio[]"
29859
- }
29860
- },
29861
- "description": "Returns all radios within the same group (name)."
29862
- },
29863
- {
29864
- "kind": "method",
29865
- "name": "setGroupValidity",
29866
- "privacy": "private",
29867
- "parameters": [
29868
- {
29869
- "name": "radios",
29870
- "type": {
29871
- "text": "Radio[]"
29872
- },
29873
- "description": "Array of radios of the same group"
29874
- },
29875
- {
29876
- "name": "isValid",
29877
- "type": {
29878
- "text": "boolean"
29879
- },
29880
- "description": "Boolean value to set the validity of the group"
29881
- }
29882
- ],
29883
- "description": "Sets the validity of the group of radios."
29884
- },
29885
- {
29886
- "kind": "method",
29887
- "name": "setActualFormValue",
29888
- "privacy": "private",
29889
- "description": "Updates the form value to reflect the current state of the radio.\nIf checked, the value is set to the user-provided value.\nIf unchecked, the value is set to null."
29890
- },
29891
- {
29892
- "kind": "method",
29893
- "name": "handleChange",
29894
- "privacy": "private",
29895
- "return": {
29896
- "type": {
29897
- "text": "void"
29898
- }
29899
- },
29900
- "description": "Handles the change event on the radio element.\nThis will toggle the state of the radio element.\nDispatches the change event."
29901
- },
29902
- {
29903
- "kind": "method",
29904
- "name": "updateRadio",
29905
- "privacy": "private",
29906
- "parameters": [
29907
- {
29908
- "name": "enabledRadios",
29909
- "type": {
29910
- "text": "Radio[]"
29911
- },
29912
- "description": "An array of enabled radio buttons within the same group."
29913
- },
29914
- {
29915
- "name": "index",
29916
- "type": {
29917
- "text": "number"
29918
- },
29919
- "description": "The index of the radio button to be updated within the enabled radios array."
29920
- }
29921
- ],
29922
- "description": "Updates the state of the radio button at the specified index within the enabled radios.\nFocuses the radio button and triggers the change event if the radio button is not read-only."
29923
- },
29924
- {
29925
- "kind": "method",
29926
- "name": "handleKeyDown",
29927
- "privacy": "private",
29928
- "return": {
29929
- "type": {
29930
- "text": "void"
29931
- }
29932
- },
29933
- "parameters": [
29934
- {
29935
- "name": "event",
29936
- "type": {
29937
- "text": "KeyboardEvent"
29938
- }
29939
- }
29940
- ],
29941
- "description": "Handles the keydown event (Arrow Up/Down/Left/Right) on the radio element."
29942
- },
29943
- {
29944
- "kind": "method",
29945
- "name": "updateTabIndex",
29946
- "privacy": "private",
29947
- "return": {
29948
- "type": {
29949
- "text": "void"
29950
- }
29951
- },
29952
- "description": "Update tab index for all radios in the same group (name)\nIf any radio group is checked, it will have a tab index of 0\nIf no radio group is checked, the first enabled radio will have a tab index of 0"
29953
- },
29954
- {
29955
- "kind": "field",
29956
- "name": "renderLabelAndHelperText",
29957
- "privacy": "private"
29958
- },
29959
- {
29960
- "kind": "field",
29961
- "name": "autoFocusOnMount",
29962
- "type": {
29963
- "text": "boolean"
29964
- },
29965
- "default": "false",
29966
- "description": "This property indicates whether the element should receive focus automatically when it is mounted.\n\nIt will not focus if the element is re-attached to the DOM after being removed.",
29967
- "attribute": "auto-focus-on-mount",
29968
- "reflects": true,
29969
- "inheritedFrom": {
29970
- "name": "AutoFocusOnMountMixin",
29971
- "module": "utils/mixins/AutoFocusOnMountMixin.js"
29972
- }
29973
- },
29974
30186
  {
29975
30187
  "kind": "field",
29976
30188
  "name": "name",
@@ -29978,98 +30190,8 @@
29978
30190
  "text": "string"
29979
30191
  },
29980
30192
  "default": "''",
29981
- "description": "Indicates the name of the component group.\nThey are used to group elements in a form together.",
29982
- "attribute": "name",
29983
- "reflects": true,
29984
- "inheritedFrom": {
29985
- "name": "FormInternalsMixin",
29986
- "module": "utils/mixins/FormInternalsMixin.js"
29987
- }
29988
- },
29989
- {
29990
- "kind": "field",
29991
- "name": "value",
29992
- "type": {
29993
- "text": "string"
29994
- },
29995
- "default": "''",
29996
- "description": "Indicates the value of the component group (ex: input, checkbox, radio, select etc...)",
29997
- "attribute": "value",
29998
- "reflects": true,
29999
- "inheritedFrom": {
30000
- "name": "FormInternalsMixin",
30001
- "module": "utils/mixins/FormInternalsMixin.js"
30002
- }
30003
- },
30004
- {
30005
- "kind": "field",
30006
- "name": "validationMessage",
30007
- "type": {
30008
- "text": "string | undefined"
30009
- },
30010
- "description": "Custom validation message that will override the default message and displayed when the input is invalid.\n\nTo display custom validation messages, you must listen for input events (or other relevant events)\non your component and update the `validationMessage` property with the desired message string.\nUpdating this property will ensure that new validation messages are shown to the user.\n- The `validationMessage` property overrides the default browser validation message when set.\n- Consumers are responsible for updating `validationMessage` in response to input or validation state changes.",
30011
- "attribute": "validation-message",
30012
- "reflects": true,
30013
- "inheritedFrom": {
30014
- "name": "FormInternalsMixin",
30015
- "module": "utils/mixins/FormInternalsMixin.js"
30016
- }
30017
- },
30018
- {
30019
- "kind": "field",
30020
- "name": "validity",
30021
- "type": {
30022
- "text": "ValidityState"
30023
- },
30024
- "readonly": true,
30025
- "inheritedFrom": {
30026
- "name": "FormInternalsMixin",
30027
- "module": "utils/mixins/FormInternalsMixin.js"
30028
- }
30029
- },
30030
- {
30031
- "kind": "field",
30032
- "name": "willValidate",
30033
- "readonly": true,
30034
- "inheritedFrom": {
30035
- "name": "FormInternalsMixin",
30036
- "module": "utils/mixins/FormInternalsMixin.js"
30037
- }
30038
- },
30039
- {
30040
- "kind": "method",
30041
- "name": "setValidity",
30042
- "description": "Sets the validity of the input field based on the input field's validity.",
30043
- "return": {
30044
- "type": {
30045
- "text": ""
30046
- }
30047
- },
30048
- "inheritedFrom": {
30049
- "name": "FormInternalsMixin",
30050
- "module": "utils/mixins/FormInternalsMixin.js"
30051
- }
30052
- },
30053
- {
30054
- "kind": "method",
30055
- "name": "checkValidity",
30056
- "return": {
30057
- "type": {
30058
- "text": "boolean"
30059
- }
30060
- },
30061
- "inheritedFrom": {
30062
- "name": "FormInternalsMixin",
30063
- "module": "utils/mixins/FormInternalsMixin.js"
30064
- }
30065
- },
30066
- {
30067
- "kind": "method",
30068
- "name": "reportValidity",
30069
- "inheritedFrom": {
30070
- "name": "FormInternalsMixin",
30071
- "module": "utils/mixins/FormInternalsMixin.js"
30072
- }
30193
+ "description": "Name of the radio group.\nThey are used to group elements in a form together.",
30194
+ "attribute": "name"
30073
30195
  },
30074
30196
  {
30075
30197
  "kind": "field",
@@ -30277,90 +30399,15 @@
30277
30399
  }
30278
30400
  }
30279
30401
  ],
30280
- "events": [
30281
- {
30282
- "name": "change",
30283
- "type": {
30284
- "text": "Event"
30285
- },
30286
- "description": "(React: onChange) Event that gets dispatched when the radio state changes.",
30287
- "reactName": "onChange"
30288
- },
30289
- {
30290
- "description": "(React: onFocus) Event that gets dispatched when the radio receives focus.",
30291
- "name": "focus",
30292
- "reactName": "onFocus"
30293
- }
30294
- ],
30295
30402
  "attributes": [
30296
- {
30297
- "name": "checked",
30298
- "type": {
30299
- "text": "boolean"
30300
- },
30301
- "default": "false",
30302
- "description": "Determines whether the radio is selected or unselected.",
30303
- "fieldName": "checked"
30304
- },
30305
- {
30306
- "name": "readonly",
30307
- "type": {
30308
- "text": "boolean"
30309
- },
30310
- "default": "false",
30311
- "description": "Determines whether the radio is read-only.",
30312
- "fieldName": "readonly"
30313
- },
30314
- {
30315
- "name": "auto-focus-on-mount",
30316
- "type": {
30317
- "text": "boolean"
30318
- },
30319
- "default": "false",
30320
- "description": "This property indicates whether the element should receive focus automatically when it is mounted.\n\nIt will not focus if the element is re-attached to the DOM after being removed.",
30321
- "fieldName": "autoFocusOnMount",
30322
- "inheritedFrom": {
30323
- "name": "AutoFocusOnMountMixin",
30324
- "module": "src/utils/mixins/AutoFocusOnMountMixin.ts"
30325
- }
30326
- },
30327
30403
  {
30328
30404
  "name": "name",
30329
30405
  "type": {
30330
30406
  "text": "string"
30331
30407
  },
30332
30408
  "default": "''",
30333
- "description": "Indicates the name of the component group.\nThey are used to group elements in a form together.",
30334
- "fieldName": "name",
30335
- "inheritedFrom": {
30336
- "name": "FormInternalsMixin",
30337
- "module": "src/utils/mixins/FormInternalsMixin.ts"
30338
- }
30339
- },
30340
- {
30341
- "name": "value",
30342
- "type": {
30343
- "text": "string"
30344
- },
30345
- "default": "''",
30346
- "description": "Indicates the value of the component group (ex: input, checkbox, radio, select etc...)",
30347
- "fieldName": "value",
30348
- "inheritedFrom": {
30349
- "name": "FormInternalsMixin",
30350
- "module": "src/utils/mixins/FormInternalsMixin.ts"
30351
- }
30352
- },
30353
- {
30354
- "name": "validation-message",
30355
- "type": {
30356
- "text": "string | undefined"
30357
- },
30358
- "description": "Custom validation message that will override the default message and displayed when the input is invalid.\n\nTo display custom validation messages, you must listen for input events (or other relevant events)\non your component and update the `validationMessage` property with the desired message string.\nUpdating this property will ensure that new validation messages are shown to the user.\n- The `validationMessage` property overrides the default browser validation message when set.\n- Consumers are responsible for updating `validationMessage` in response to input or validation state changes.",
30359
- "fieldName": "validationMessage",
30360
- "inheritedFrom": {
30361
- "name": "FormInternalsMixin",
30362
- "module": "src/utils/mixins/FormInternalsMixin.ts"
30363
- }
30409
+ "description": "Name of the radio group.\nThey are used to group elements in a form together.",
30410
+ "fieldName": "name"
30364
30411
  },
30365
30412
  {
30366
30413
  "name": "data-aria-label",
@@ -30475,27 +30522,23 @@
30475
30522
  }
30476
30523
  }
30477
30524
  ],
30478
- "mixins": [
30479
- {
30480
- "name": "AutoFocusOnMountMixin",
30481
- "module": "/src/utils/mixins/AutoFocusOnMountMixin"
30482
- },
30483
- {
30484
- "name": "FormInternalsMixin",
30485
- "module": "/src/utils/mixins/FormInternalsMixin"
30486
- },
30487
- {
30488
- "name": "DataAriaLabelMixin",
30489
- "module": "/src/utils/mixins/DataAriaLabelMixin"
30490
- }
30491
- ],
30492
30525
  "superclass": {
30493
- "name": "FormfieldWrapper",
30494
- "module": "/src/components/formfieldwrapper/formfieldwrapper.component"
30526
+ "name": "FormfieldGroup",
30527
+ "module": "/src/components/formfieldgroup"
30495
30528
  },
30496
- "tagName": "mdc-radio",
30497
- "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 */",
30498
- "customElement": true
30529
+ "tagName": "mdc-radiogroup",
30530
+ "jsDoc": "/**\n * `mdc-radiogroup` - This is the wrapper component for radio buttons which are grouped together.\n * It can have a header text and a description. It enables users to select a single option from a set of options.\n * It is often used in forms, settings, and selection in lists. It automatically group the radio buttons inside it.\n *\n * @tagname mdc-radiogroup\n *\n * @cssproperty --mdc-radiogroup-description-text-normal - color of the description text\n *\n */",
30531
+ "customElement": true,
30532
+ "slots": [
30533
+ {
30534
+ "description": "This is a default slot for checkbox or toggle components.",
30535
+ "name": "default",
30536
+ "inheritedFrom": {
30537
+ "name": "FormfieldGroup",
30538
+ "module": "src/components/formfieldgroup/formfieldgroup.component.ts"
30539
+ }
30540
+ }
30541
+ ]
30499
30542
  }
30500
30543
  ],
30501
30544
  "exports": [
@@ -30503,27 +30546,199 @@
30503
30546
  "kind": "js",
30504
30547
  "name": "default",
30505
30548
  "declaration": {
30506
- "name": "Radio",
30507
- "module": "components/radio/radio.component.js"
30549
+ "name": "RadioGroup",
30550
+ "module": "components/radiogroup/radiogroup.component.js"
30508
30551
  }
30509
30552
  }
30510
30553
  ]
30511
30554
  },
30512
30555
  {
30513
30556
  "kind": "javascript-module",
30514
- "path": "components/radiogroup/radiogroup.component.js",
30557
+ "path": "components/radio/radio.component.js",
30515
30558
  "declarations": [
30516
30559
  {
30517
30560
  "kind": "class",
30518
- "description": "`mdc-radiogroup` - This is the wrapper component for radio buttons which are grouped together.\nIt can have a header text and a description. It enables users to select a single option from a set of options.\nIt is often used in forms, settings, and selection in lists. It automatically group the radio buttons inside it.",
30519
- "name": "RadioGroup",
30561
+ "description": "Radio allow users to select single options from a list or turn an item/feature on or off.\nThese are often used in forms, settings, and selection in lists.\n\nA radio component contains an optional label, optional info icon and an optional helper text.",
30562
+ "name": "Radio",
30520
30563
  "cssProperties": [
30521
30564
  {
30522
- "description": "color of the description text",
30523
- "name": "--mdc-radiogroup-description-text-normal"
30565
+ "description": "color of the label when disabled",
30566
+ "name": "--mdc-radio-text-disabled-color"
30567
+ },
30568
+ {
30569
+ "description": "color of the radio button when inactive and hovered",
30570
+ "name": "--mdc-radio-control-inactive-hover"
30571
+ },
30572
+ {
30573
+ "description": "color of the radio button when inactive and pressed",
30574
+ "name": "--mdc-radio-control-inactive-pressed-color"
30575
+ },
30576
+ {
30577
+ "description": "color of the radio button when active and hovered",
30578
+ "name": "--mdc-radio-control-active-hover-color"
30579
+ },
30580
+ {
30581
+ "description": "color of the radio button when active and pressed",
30582
+ "name": "--mdc-radio-control-active-pressed-color"
30583
+ },
30584
+ {
30585
+ "description": "color of the radio button when disabled",
30586
+ "name": "--mdc-radio-disabled-border-color"
30587
+ },
30588
+ {
30589
+ "description": "color of the radio button when active and disabled",
30590
+ "name": "--mdc-radio-control-active-disabled-background"
30591
+ },
30592
+ {
30593
+ "description": "color of the radio button when inactive and disabled",
30594
+ "name": "--mdc-radio-control-inactive-disabled-background"
30524
30595
  }
30525
30596
  ],
30526
30597
  "members": [
30598
+ {
30599
+ "kind": "field",
30600
+ "name": "checked",
30601
+ "type": {
30602
+ "text": "boolean"
30603
+ },
30604
+ "default": "false",
30605
+ "description": "Determines whether the radio is selected or unselected.",
30606
+ "attribute": "checked",
30607
+ "reflects": true
30608
+ },
30609
+ {
30610
+ "kind": "field",
30611
+ "name": "readonly",
30612
+ "type": {
30613
+ "text": "boolean"
30614
+ },
30615
+ "default": "false",
30616
+ "description": "Determines whether the radio is read-only.",
30617
+ "attribute": "readonly",
30618
+ "reflects": true
30619
+ },
30620
+ {
30621
+ "kind": "method",
30622
+ "name": "getAllRadiosWithinSameGroup",
30623
+ "privacy": "private",
30624
+ "return": {
30625
+ "type": {
30626
+ "text": "Radio[]"
30627
+ }
30628
+ },
30629
+ "description": "Returns all radios within the same group (name)."
30630
+ },
30631
+ {
30632
+ "kind": "method",
30633
+ "name": "setGroupValidity",
30634
+ "privacy": "private",
30635
+ "parameters": [
30636
+ {
30637
+ "name": "radios",
30638
+ "type": {
30639
+ "text": "Radio[]"
30640
+ },
30641
+ "description": "Array of radios of the same group"
30642
+ },
30643
+ {
30644
+ "name": "isValid",
30645
+ "type": {
30646
+ "text": "boolean"
30647
+ },
30648
+ "description": "Boolean value to set the validity of the group"
30649
+ }
30650
+ ],
30651
+ "description": "Sets the validity of the group of radios."
30652
+ },
30653
+ {
30654
+ "kind": "method",
30655
+ "name": "setActualFormValue",
30656
+ "privacy": "private",
30657
+ "description": "Updates the form value to reflect the current state of the radio.\nIf checked, the value is set to the user-provided value.\nIf unchecked, the value is set to null."
30658
+ },
30659
+ {
30660
+ "kind": "method",
30661
+ "name": "handleChange",
30662
+ "privacy": "private",
30663
+ "return": {
30664
+ "type": {
30665
+ "text": "void"
30666
+ }
30667
+ },
30668
+ "description": "Handles the change event on the radio element.\nThis will toggle the state of the radio element.\nDispatches the change event."
30669
+ },
30670
+ {
30671
+ "kind": "method",
30672
+ "name": "updateRadio",
30673
+ "privacy": "private",
30674
+ "parameters": [
30675
+ {
30676
+ "name": "enabledRadios",
30677
+ "type": {
30678
+ "text": "Radio[]"
30679
+ },
30680
+ "description": "An array of enabled radio buttons within the same group."
30681
+ },
30682
+ {
30683
+ "name": "index",
30684
+ "type": {
30685
+ "text": "number"
30686
+ },
30687
+ "description": "The index of the radio button to be updated within the enabled radios array."
30688
+ }
30689
+ ],
30690
+ "description": "Updates the state of the radio button at the specified index within the enabled radios.\nFocuses the radio button and triggers the change event if the radio button is not read-only."
30691
+ },
30692
+ {
30693
+ "kind": "method",
30694
+ "name": "handleKeyDown",
30695
+ "privacy": "private",
30696
+ "return": {
30697
+ "type": {
30698
+ "text": "void"
30699
+ }
30700
+ },
30701
+ "parameters": [
30702
+ {
30703
+ "name": "event",
30704
+ "type": {
30705
+ "text": "KeyboardEvent"
30706
+ }
30707
+ }
30708
+ ],
30709
+ "description": "Handles the keydown event (Arrow Up/Down/Left/Right) on the radio element."
30710
+ },
30711
+ {
30712
+ "kind": "method",
30713
+ "name": "updateTabIndex",
30714
+ "privacy": "private",
30715
+ "return": {
30716
+ "type": {
30717
+ "text": "void"
30718
+ }
30719
+ },
30720
+ "description": "Update tab index for all radios in the same group (name)\nIf any radio group is checked, it will have a tab index of 0\nIf no radio group is checked, the first enabled radio will have a tab index of 0"
30721
+ },
30722
+ {
30723
+ "kind": "field",
30724
+ "name": "renderLabelAndHelperText",
30725
+ "privacy": "private"
30726
+ },
30727
+ {
30728
+ "kind": "field",
30729
+ "name": "autoFocusOnMount",
30730
+ "type": {
30731
+ "text": "boolean"
30732
+ },
30733
+ "default": "false",
30734
+ "description": "This property indicates whether the element should receive focus automatically when it is mounted.\n\nIt will not focus if the element is re-attached to the DOM after being removed.",
30735
+ "attribute": "auto-focus-on-mount",
30736
+ "reflects": true,
30737
+ "inheritedFrom": {
30738
+ "name": "AutoFocusOnMountMixin",
30739
+ "module": "utils/mixins/AutoFocusOnMountMixin.js"
30740
+ }
30741
+ },
30527
30742
  {
30528
30743
  "kind": "field",
30529
30744
  "name": "name",
@@ -30531,8 +30746,98 @@
30531
30746
  "text": "string"
30532
30747
  },
30533
30748
  "default": "''",
30534
- "description": "Name of the radio group.\nThey are used to group elements in a form together.",
30535
- "attribute": "name"
30749
+ "description": "Indicates the name of the component group.\nThey are used to group elements in a form together.",
30750
+ "attribute": "name",
30751
+ "reflects": true,
30752
+ "inheritedFrom": {
30753
+ "name": "FormInternalsMixin",
30754
+ "module": "utils/mixins/FormInternalsMixin.js"
30755
+ }
30756
+ },
30757
+ {
30758
+ "kind": "field",
30759
+ "name": "value",
30760
+ "type": {
30761
+ "text": "string"
30762
+ },
30763
+ "default": "''",
30764
+ "description": "Indicates the value of the component group (ex: input, checkbox, radio, select etc...)",
30765
+ "attribute": "value",
30766
+ "reflects": true,
30767
+ "inheritedFrom": {
30768
+ "name": "FormInternalsMixin",
30769
+ "module": "utils/mixins/FormInternalsMixin.js"
30770
+ }
30771
+ },
30772
+ {
30773
+ "kind": "field",
30774
+ "name": "validationMessage",
30775
+ "type": {
30776
+ "text": "string | undefined"
30777
+ },
30778
+ "description": "Custom validation message that will override the default message and displayed when the input is invalid.\n\nTo display custom validation messages, you must listen for input events (or other relevant events)\non your component and update the `validationMessage` property with the desired message string.\nUpdating this property will ensure that new validation messages are shown to the user.\n- The `validationMessage` property overrides the default browser validation message when set.\n- Consumers are responsible for updating `validationMessage` in response to input or validation state changes.",
30779
+ "attribute": "validation-message",
30780
+ "reflects": true,
30781
+ "inheritedFrom": {
30782
+ "name": "FormInternalsMixin",
30783
+ "module": "utils/mixins/FormInternalsMixin.js"
30784
+ }
30785
+ },
30786
+ {
30787
+ "kind": "field",
30788
+ "name": "validity",
30789
+ "type": {
30790
+ "text": "ValidityState"
30791
+ },
30792
+ "readonly": true,
30793
+ "inheritedFrom": {
30794
+ "name": "FormInternalsMixin",
30795
+ "module": "utils/mixins/FormInternalsMixin.js"
30796
+ }
30797
+ },
30798
+ {
30799
+ "kind": "field",
30800
+ "name": "willValidate",
30801
+ "readonly": true,
30802
+ "inheritedFrom": {
30803
+ "name": "FormInternalsMixin",
30804
+ "module": "utils/mixins/FormInternalsMixin.js"
30805
+ }
30806
+ },
30807
+ {
30808
+ "kind": "method",
30809
+ "name": "setValidity",
30810
+ "description": "Sets the validity of the input field based on the input field's validity.",
30811
+ "return": {
30812
+ "type": {
30813
+ "text": ""
30814
+ }
30815
+ },
30816
+ "inheritedFrom": {
30817
+ "name": "FormInternalsMixin",
30818
+ "module": "utils/mixins/FormInternalsMixin.js"
30819
+ }
30820
+ },
30821
+ {
30822
+ "kind": "method",
30823
+ "name": "checkValidity",
30824
+ "return": {
30825
+ "type": {
30826
+ "text": "boolean"
30827
+ }
30828
+ },
30829
+ "inheritedFrom": {
30830
+ "name": "FormInternalsMixin",
30831
+ "module": "utils/mixins/FormInternalsMixin.js"
30832
+ }
30833
+ },
30834
+ {
30835
+ "kind": "method",
30836
+ "name": "reportValidity",
30837
+ "inheritedFrom": {
30838
+ "name": "FormInternalsMixin",
30839
+ "module": "utils/mixins/FormInternalsMixin.js"
30840
+ }
30536
30841
  },
30537
30842
  {
30538
30843
  "kind": "field",
@@ -30740,15 +31045,90 @@
30740
31045
  }
30741
31046
  }
30742
31047
  ],
31048
+ "events": [
31049
+ {
31050
+ "name": "change",
31051
+ "type": {
31052
+ "text": "Event"
31053
+ },
31054
+ "description": "(React: onChange) Event that gets dispatched when the radio state changes.",
31055
+ "reactName": "onChange"
31056
+ },
31057
+ {
31058
+ "description": "(React: onFocus) Event that gets dispatched when the radio receives focus.",
31059
+ "name": "focus",
31060
+ "reactName": "onFocus"
31061
+ }
31062
+ ],
30743
31063
  "attributes": [
31064
+ {
31065
+ "name": "checked",
31066
+ "type": {
31067
+ "text": "boolean"
31068
+ },
31069
+ "default": "false",
31070
+ "description": "Determines whether the radio is selected or unselected.",
31071
+ "fieldName": "checked"
31072
+ },
31073
+ {
31074
+ "name": "readonly",
31075
+ "type": {
31076
+ "text": "boolean"
31077
+ },
31078
+ "default": "false",
31079
+ "description": "Determines whether the radio is read-only.",
31080
+ "fieldName": "readonly"
31081
+ },
31082
+ {
31083
+ "name": "auto-focus-on-mount",
31084
+ "type": {
31085
+ "text": "boolean"
31086
+ },
31087
+ "default": "false",
31088
+ "description": "This property indicates whether the element should receive focus automatically when it is mounted.\n\nIt will not focus if the element is re-attached to the DOM after being removed.",
31089
+ "fieldName": "autoFocusOnMount",
31090
+ "inheritedFrom": {
31091
+ "name": "AutoFocusOnMountMixin",
31092
+ "module": "src/utils/mixins/AutoFocusOnMountMixin.ts"
31093
+ }
31094
+ },
30744
31095
  {
30745
31096
  "name": "name",
30746
31097
  "type": {
30747
31098
  "text": "string"
30748
31099
  },
30749
31100
  "default": "''",
30750
- "description": "Name of the radio group.\nThey are used to group elements in a form together.",
30751
- "fieldName": "name"
31101
+ "description": "Indicates the name of the component group.\nThey are used to group elements in a form together.",
31102
+ "fieldName": "name",
31103
+ "inheritedFrom": {
31104
+ "name": "FormInternalsMixin",
31105
+ "module": "src/utils/mixins/FormInternalsMixin.ts"
31106
+ }
31107
+ },
31108
+ {
31109
+ "name": "value",
31110
+ "type": {
31111
+ "text": "string"
31112
+ },
31113
+ "default": "''",
31114
+ "description": "Indicates the value of the component group (ex: input, checkbox, radio, select etc...)",
31115
+ "fieldName": "value",
31116
+ "inheritedFrom": {
31117
+ "name": "FormInternalsMixin",
31118
+ "module": "src/utils/mixins/FormInternalsMixin.ts"
31119
+ }
31120
+ },
31121
+ {
31122
+ "name": "validation-message",
31123
+ "type": {
31124
+ "text": "string | undefined"
31125
+ },
31126
+ "description": "Custom validation message that will override the default message and displayed when the input is invalid.\n\nTo display custom validation messages, you must listen for input events (or other relevant events)\non your component and update the `validationMessage` property with the desired message string.\nUpdating this property will ensure that new validation messages are shown to the user.\n- The `validationMessage` property overrides the default browser validation message when set.\n- Consumers are responsible for updating `validationMessage` in response to input or validation state changes.",
31127
+ "fieldName": "validationMessage",
31128
+ "inheritedFrom": {
31129
+ "name": "FormInternalsMixin",
31130
+ "module": "src/utils/mixins/FormInternalsMixin.ts"
31131
+ }
30752
31132
  },
30753
31133
  {
30754
31134
  "name": "data-aria-label",
@@ -30863,23 +31243,27 @@
30863
31243
  }
30864
31244
  }
30865
31245
  ],
30866
- "superclass": {
30867
- "name": "FormfieldGroup",
30868
- "module": "/src/components/formfieldgroup"
30869
- },
30870
- "tagName": "mdc-radiogroup",
30871
- "jsDoc": "/**\n * `mdc-radiogroup` - This is the wrapper component for radio buttons which are grouped together.\n * It can have a header text and a description. It enables users to select a single option from a set of options.\n * It is often used in forms, settings, and selection in lists. It automatically group the radio buttons inside it.\n *\n * @tagname mdc-radiogroup\n *\n * @cssproperty --mdc-radiogroup-description-text-normal - color of the description text\n *\n */",
30872
- "customElement": true,
30873
- "slots": [
31246
+ "mixins": [
30874
31247
  {
30875
- "description": "This is a default slot for checkbox or toggle components.",
30876
- "name": "default",
30877
- "inheritedFrom": {
30878
- "name": "FormfieldGroup",
30879
- "module": "src/components/formfieldgroup/formfieldgroup.component.ts"
30880
- }
31248
+ "name": "AutoFocusOnMountMixin",
31249
+ "module": "/src/utils/mixins/AutoFocusOnMountMixin"
31250
+ },
31251
+ {
31252
+ "name": "FormInternalsMixin",
31253
+ "module": "/src/utils/mixins/FormInternalsMixin"
31254
+ },
31255
+ {
31256
+ "name": "DataAriaLabelMixin",
31257
+ "module": "/src/utils/mixins/DataAriaLabelMixin"
30881
31258
  }
30882
- ]
31259
+ ],
31260
+ "superclass": {
31261
+ "name": "FormfieldWrapper",
31262
+ "module": "/src/components/formfieldwrapper/formfieldwrapper.component"
31263
+ },
31264
+ "tagName": "mdc-radio",
31265
+ "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 */",
31266
+ "customElement": true
30883
31267
  }
30884
31268
  ],
30885
31269
  "exports": [
@@ -30887,8 +31271,8 @@
30887
31271
  "kind": "js",
30888
31272
  "name": "default",
30889
31273
  "declaration": {
30890
- "name": "RadioGroup",
30891
- "module": "components/radiogroup/radiogroup.component.js"
31274
+ "name": "Radio",
31275
+ "module": "components/radio/radio.component.js"
30892
31276
  }
30893
31277
  }
30894
31278
  ]
@@ -35757,6 +36141,34 @@
35757
36141
  "module": "components/buttonsimple/buttonsimple.component.js"
35758
36142
  }
35759
36143
  },
36144
+ {
36145
+ "kind": "field",
36146
+ "name": "name",
36147
+ "type": {
36148
+ "text": "string | undefined"
36149
+ },
36150
+ "description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
36151
+ "attribute": "name",
36152
+ "reflects": true,
36153
+ "inheritedFrom": {
36154
+ "name": "Buttonsimple",
36155
+ "module": "components/buttonsimple/buttonsimple.component.js"
36156
+ }
36157
+ },
36158
+ {
36159
+ "kind": "field",
36160
+ "name": "value",
36161
+ "type": {
36162
+ "text": "string | undefined"
36163
+ },
36164
+ "description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
36165
+ "attribute": "value",
36166
+ "reflects": true,
36167
+ "inheritedFrom": {
36168
+ "name": "Buttonsimple",
36169
+ "module": "components/buttonsimple/buttonsimple.component.js"
36170
+ }
36171
+ },
35760
36172
  {
35761
36173
  "kind": "method",
35762
36174
  "name": "setSoftDisabled",
@@ -36066,6 +36478,30 @@
36066
36478
  "name": "Buttonsimple",
36067
36479
  "module": "src/components/buttonsimple/buttonsimple.component.ts"
36068
36480
  }
36481
+ },
36482
+ {
36483
+ "name": "name",
36484
+ "type": {
36485
+ "text": "string | undefined"
36486
+ },
36487
+ "description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
36488
+ "fieldName": "name",
36489
+ "inheritedFrom": {
36490
+ "name": "Buttonsimple",
36491
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
36492
+ }
36493
+ },
36494
+ {
36495
+ "name": "value",
36496
+ "type": {
36497
+ "text": "string | undefined"
36498
+ },
36499
+ "description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
36500
+ "fieldName": "value",
36501
+ "inheritedFrom": {
36502
+ "name": "Buttonsimple",
36503
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
36504
+ }
36069
36505
  }
36070
36506
  ],
36071
36507
  "mixins": [
@@ -38394,453 +38830,967 @@
38394
38830
  },
38395
38831
  {
38396
38832
  "kind": "javascript-module",
38397
- "path": "components/toggletip/toggletip.component.js",
38833
+ "path": "components/typewriter/typewriter.component.js",
38398
38834
  "declarations": [
38399
38835
  {
38400
38836
  "kind": "class",
38401
- "description": "A toggletip is triggered by clicking a trigger element.\n\nIt can contain interactive content and can be closed by\nclicking outside the toggletip or pressing the escape key.\n\nIt can have optional close button to close the toggletip.\n\nToggletip component uses `mdc-screenreaderannouncer` internally to\nannounce the toggletip text content with screen readers when the toggletip is shown.\n\n`screenreader-announcer-identity` attribute can be used to provide ID of an element\nin DOM to which announcement elements are added. If not set, a visually hidden\ndiv element is created in DOM to which announcement elements are added.\n\nPlease refer to the `mdc-screenreaderannouncer` component for more details.",
38402
- "name": "ToggleTip",
38403
- "cssProperties": [
38404
- {
38405
- "description": "The maximum width of the toggletip.",
38406
- "name": "--mdc-toggletip-max-width"
38407
- },
38408
- {
38409
- "description": "The text color of the toggletip.",
38410
- "name": "--mdc-toggletip-text-color"
38411
- },
38412
- {
38413
- "description": "The text color of the toggletip when the color is contrast.",
38414
- "name": "--mdc-toggletip-text-color-contrast"
38415
- },
38416
- {
38417
- "description": "radius of the arrow border",
38418
- "name": "--mdc-popover-arrow-border-radius",
38419
- "inheritedFrom": {
38420
- "name": "Popover",
38421
- "module": "src/components/popover/popover.component.ts"
38422
- }
38423
- },
38424
- {
38425
- "description": "border of the arrow",
38426
- "name": "--mdc-popover-arrow-border",
38427
- "inheritedFrom": {
38428
- "name": "Popover",
38429
- "module": "src/components/popover/popover.component.ts"
38430
- }
38431
- },
38432
- {
38433
- "description": "primary background color of the popover",
38434
- "name": "--mdc-popover-primary-background-color",
38435
- "inheritedFrom": {
38436
- "name": "Popover",
38437
- "module": "src/components/popover/popover.component.ts"
38438
- }
38439
- },
38440
- {
38441
- "description": "border color of the popover",
38442
- "name": "--mdc-popover-border-color",
38443
- "inheritedFrom": {
38444
- "name": "Popover",
38445
- "module": "src/components/popover/popover.component.ts"
38446
- }
38447
- },
38448
- {
38449
- "description": "inverted background color of the popover",
38450
- "name": "--mdc-popover-inverted-background-color",
38451
- "inheritedFrom": {
38452
- "name": "Popover",
38453
- "module": "src/components/popover/popover.component.ts"
38454
- }
38455
- },
38456
- {
38457
- "description": "inverted border color of the popover",
38458
- "name": "--mdc-popover-inverted-border-color",
38459
- "inheritedFrom": {
38460
- "name": "Popover",
38461
- "module": "src/components/popover/popover.component.ts"
38462
- }
38463
- },
38464
- {
38465
- "description": "inverted text color of the popover",
38466
- "name": "--mdc-popover-inverted-text-color",
38467
- "inheritedFrom": {
38468
- "name": "Popover",
38469
- "module": "src/components/popover/popover.component.ts"
38470
- }
38471
- },
38472
- {
38473
- "description": "elevation of the popover",
38474
- "name": "--mdc-popover-elevation-3",
38475
- "inheritedFrom": {
38476
- "name": "Popover",
38477
- "module": "src/components/popover/popover.component.ts"
38478
- }
38479
- },
38837
+ "description": "Typewriter component that creates a typewriter effect on text content.\nIt uses the Text component internally, adding a progressive typing effect.\n\nThe `type` attribute allows changing the text style (passed to the internal Text component).\nThe `tagname` attribute allows changing the tag name of the text element (passed to the internal Text component).\nThe default tag name is `p`.\n\nThe `speed` attribute controls typing speed in milliseconds per character:\n- 'very-slow' = 240ms per character\n- 'slow' = 120ms per character\n- 'normal' = 60ms per character (default)\n- 'fast' = 20ms per character\n- 'very-fast' = 1ms per character\n- Or any numeric string representing milliseconds\n\nAdvanced features:\n- Dynamic speed adjustment during typing\n- Chunked text addition via addTextChunk() method\n- Instant text addition via addInstantTextChunk() method or instant parameter\n- Mixed instant and animated chunks in queue\n- Continues typing in background tabs\n- Performance optimized for large text\n- maxQueueSize to limit memory usage from excessive queuing\n- event handling for typing completion and content changes\n\nThe component includes accessibility features:\n- Screen readers announce the complete text, not character by character\n- Uses aria-live=\"polite\" for dynamic content updates\n- Sets aria-busy during typing animation",
38838
+ "name": "Typewriter",
38839
+ "cssParts": [
38480
38840
  {
38481
- "description": "max width of the popover",
38482
- "name": "--mdc-popover-max-width",
38483
- "inheritedFrom": {
38484
- "name": "Popover",
38485
- "module": "src/components/popover/popover.component.ts"
38486
- }
38841
+ "description": "Container for the text element",
38842
+ "name": "container"
38487
38843
  },
38488
38844
  {
38489
- "description": "max height of the popover",
38490
- "name": "--mdc-popover-max-height",
38491
- "inheritedFrom": {
38492
- "name": "Popover",
38493
- "module": "src/components/popover/popover.component.ts"
38494
- }
38845
+ "description": "The text element (forwarded to mdc-text)",
38846
+ "name": "text"
38495
38847
  }
38496
38848
  ],
38497
38849
  "slots": [
38498
38850
  {
38499
- "description": "Default slot for the toggletip content",
38500
- "name": "",
38501
- "inheritedFrom": {
38502
- "name": "Popover",
38503
- "module": "src/components/popover/popover.component.ts"
38504
- }
38851
+ "description": "Default slot for text content",
38852
+ "name": ""
38505
38853
  }
38506
38854
  ],
38507
38855
  "members": [
38508
38856
  {
38509
38857
  "kind": "field",
38510
- "name": "defaultSlotNodes",
38858
+ "name": "type",
38511
38859
  "type": {
38512
- "text": "Array<Node>"
38860
+ "text": "TextType"
38513
38861
  },
38514
- "privacy": "private"
38862
+ "privacy": "public",
38863
+ "description": "Specifies the text style to be applied to the internal text component.\nUses the same types as the Text component.",
38864
+ "default": "body-large-regular",
38865
+ "attribute": "type",
38866
+ "reflects": true
38515
38867
  },
38516
38868
  {
38517
38869
  "kind": "field",
38518
- "name": "screenreaderAnnouncerIdentity",
38870
+ "name": "tagname",
38519
38871
  "type": {
38520
- "text": "string | undefined"
38872
+ "text": "TagName | undefined"
38521
38873
  },
38522
- "description": "Set this attribute with the id of the element in the DOM, to which announcement\nelements will be appended.\nIf an id is provided, the announcement elements will be appended to this element.\nIf id is not provided, a visually hidden div element will be created in the DOM.\n\nPlease refer to the `mdc-screenreaderannouncer` component for more details.",
38523
- "attribute": "screenreader-announcer-identity",
38874
+ "privacy": "public",
38875
+ "description": "Specifies the HTML tag name for the text element. The default tag name is `p`.\nThis attribute is optional. When set, it changes the tag name of the internal text element.\n\nAcceptable values include all valid tag names from the Text component.",
38876
+ "attribute": "tagname",
38524
38877
  "reflects": true
38525
38878
  },
38526
38879
  {
38527
38880
  "kind": "field",
38528
- "name": "placement",
38881
+ "name": "speed",
38529
38882
  "type": {
38530
- "text": "PopoverPlacement"
38883
+ "text": "TypewriterSpeed"
38531
38884
  },
38532
- "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
38533
- "default": "bottom",
38534
- "attribute": "placement",
38535
- "reflects": true,
38536
- "inheritedFrom": {
38537
- "name": "Popover",
38538
- "module": "components/popover/popover.component.js"
38539
- }
38885
+ "privacy": "public",
38886
+ "description": "Speed of the typewriter effect in milliseconds per character.\nCan be a string preset or a numeric string in milliseconds.\n- 'very-slow' = 240ms per character\n- 'slow' = 120ms per character\n- 'normal' = 60ms per character (default)\n- 'fast' = 20ms per character\n- 'very-fast' = 1ms per character\n- Or any numeric string representing milliseconds (e.g., '100')",
38887
+ "default": "'normal' (60ms per character)",
38888
+ "attribute": "speed",
38889
+ "reflects": true
38890
+ },
38891
+ {
38892
+ "kind": "field",
38893
+ "name": "maxQueueSize",
38894
+ "type": {
38895
+ "text": "number"
38896
+ },
38897
+ "privacy": "public",
38898
+ "description": "Maximum number of text chunks that can be queued before oldest chunks are dropped.\nSet to prevent memory accumulation from excessive queuing.",
38899
+ "default": "Number.MAX_SAFE_INTEGER (effectively unlimited)",
38900
+ "attribute": "max-queue-size",
38901
+ "reflects": true
38540
38902
  },
38541
38903
  {
38542
38904
  "kind": "method",
38543
- "name": "getToggleTipText",
38905
+ "name": "createTimeout",
38544
38906
  "privacy": "private",
38545
38907
  "return": {
38546
38908
  "type": {
38547
- "text": ""
38909
+ "text": "number"
38548
38910
  }
38549
- }
38911
+ },
38912
+ "parameters": [
38913
+ {
38914
+ "name": "callback",
38915
+ "type": {
38916
+ "text": "() => void"
38917
+ }
38918
+ },
38919
+ {
38920
+ "name": "delay",
38921
+ "type": {
38922
+ "text": "number"
38923
+ }
38924
+ }
38925
+ ],
38926
+ "description": "Helper to create tracked setTimeout that will be cleaned up on disconnect"
38550
38927
  },
38551
38928
  {
38552
38929
  "kind": "method",
38553
- "name": "onPlacementUpdated",
38930
+ "name": "clearAllTimeouts",
38554
38931
  "privacy": "private",
38555
38932
  "return": {
38556
38933
  "type": {
38557
38934
  "text": "void"
38558
38935
  }
38559
38936
  },
38560
- "description": "Updates the placement attribute if it is not a valid placement.\nDefault placement for toggle tip is top."
38561
- },
38562
- {
38563
- "kind": "field",
38564
- "name": "zIndex",
38565
- "type": {
38566
- "text": "number"
38567
- },
38568
- "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`.",
38569
- "default": "1000",
38570
- "attribute": "z-index",
38571
- "reflects": true,
38572
- "inheritedFrom": {
38573
- "name": "Popover",
38574
- "module": "components/popover/popover.component.js"
38575
- }
38576
- },
38577
- {
38578
- "kind": "field",
38579
- "name": "preventScroll",
38580
- "type": {
38581
- "text": "boolean"
38582
- },
38583
- "privacy": "protected",
38584
- "description": "Prevent outside scrolling when element is shown.\n\nIMPLEMENT THIS IN YOUR COMPONENT.",
38585
- "default": "false",
38586
- "attribute": "prevent-scroll",
38587
- "reflects": true,
38588
- "inheritedFrom": {
38589
- "name": "Popover",
38590
- "module": "components/popover/popover.component.js"
38591
- }
38592
- },
38593
- {
38594
- "kind": "method",
38595
- "name": "activatePreventScroll",
38596
- "privacy": "protected",
38597
- "inheritedFrom": {
38598
- "name": "Popover",
38599
- "module": "components/popover/popover.component.js"
38600
- }
38937
+ "description": "Clear all pending timeouts"
38601
38938
  },
38602
38939
  {
38603
38940
  "kind": "method",
38604
- "name": "deactivatePreventScroll",
38605
- "privacy": "protected",
38606
- "inheritedFrom": {
38607
- "name": "Popover",
38608
- "module": "components/popover/popover.component.js"
38609
- }
38610
- },
38611
- {
38612
- "kind": "field",
38613
- "name": "focusTrap",
38614
- "type": {
38615
- "text": "boolean"
38616
- },
38617
- "privacy": "protected",
38618
- "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.",
38619
- "default": "false",
38620
- "attribute": "focus-trap",
38621
- "reflects": true,
38622
- "inheritedFrom": {
38623
- "name": "Popover",
38624
- "module": "components/popover/popover.component.js"
38625
- }
38626
- },
38627
- {
38628
- "kind": "field",
38629
- "name": "shouldFocusTrapWrap",
38630
- "type": {
38631
- "text": "boolean"
38941
+ "name": "clearQueue",
38942
+ "privacy": "public",
38943
+ "return": {
38944
+ "type": {
38945
+ "text": "void"
38946
+ }
38632
38947
  },
38633
- "default": "true",
38634
- "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.",
38635
- "attribute": "should-focus-trap-wrap",
38636
- "reflects": true,
38637
- "inheritedFrom": {
38638
- "name": "Popover",
38639
- "module": "components/popover/popover.component.js"
38640
- }
38948
+ "description": "Clears the text chunk queue and stops processing\nUseful for resetting the component state"
38641
38949
  },
38642
38950
  {
38643
38951
  "kind": "method",
38644
- "name": "setIsFocusTrapActivated",
38645
- "privacy": "private",
38952
+ "name": "addTextChunk",
38953
+ "privacy": "public",
38954
+ "return": {
38955
+ "type": {
38956
+ "text": "void"
38957
+ }
38958
+ },
38646
38959
  "parameters": [
38647
38960
  {
38648
- "name": "isActivated",
38961
+ "name": "text",
38962
+ "type": {
38963
+ "text": "string"
38964
+ },
38965
+ "description": "The text to add"
38966
+ },
38967
+ {
38968
+ "name": "speed",
38969
+ "optional": true,
38970
+ "type": {
38971
+ "text": "TypewriterSpeed"
38972
+ },
38973
+ "description": "Optional speed override for this chunk"
38974
+ },
38975
+ {
38976
+ "name": "instant",
38977
+ "optional": true,
38649
38978
  "type": {
38650
38979
  "text": "boolean"
38651
- }
38980
+ },
38981
+ "description": "If true, text appears instantly without animation"
38652
38982
  }
38653
38983
  ],
38654
- "inheritedFrom": {
38655
- "name": "Popover",
38656
- "module": "components/popover/popover.component.js"
38657
- }
38658
- },
38659
- {
38660
- "kind": "method",
38661
- "name": "activateFocusTrap",
38662
- "privacy": "public",
38663
- "description": "Activate the focus trap",
38664
- "inheritedFrom": {
38665
- "name": "Popover",
38666
- "module": "components/popover/popover.component.js"
38667
- }
38984
+ "description": "Adds a chunk of text to be typed out, optionally with a different speed"
38668
38985
  },
38669
38986
  {
38670
38987
  "kind": "method",
38671
- "name": "deactivateFocusTrap",
38988
+ "name": "addInstantTextChunk",
38672
38989
  "privacy": "public",
38673
- "description": "Deactivate the focus trap.",
38674
- "inheritedFrom": {
38675
- "name": "Popover",
38676
- "module": "components/popover/popover.component.js"
38677
- }
38678
- },
38679
- {
38680
- "kind": "method",
38681
- "name": "hasNoClientRects",
38682
- "privacy": "private",
38683
- "parameters": [
38684
- {
38685
- "name": "element",
38686
- "type": {
38687
- "text": "HTMLElement"
38688
- },
38689
- "description": "The element to check."
38690
- }
38691
- ],
38692
- "description": "Checks if the element has no client rectangles (not visible in the viewport).",
38693
38990
  "return": {
38694
38991
  "type": {
38695
- "text": ""
38992
+ "text": "void"
38696
38993
  }
38697
38994
  },
38698
- "inheritedFrom": {
38699
- "name": "Popover",
38700
- "module": "components/popover/popover.component.js"
38701
- }
38702
- },
38703
- {
38704
- "kind": "method",
38705
- "name": "hasZeroDimensions",
38706
- "privacy": "private",
38707
38995
  "parameters": [
38708
38996
  {
38709
- "name": "element",
38997
+ "name": "text",
38710
38998
  "type": {
38711
- "text": "HTMLElement"
38999
+ "text": "string"
38712
39000
  },
38713
- "description": "The element to check."
39001
+ "description": "The text to add instantly"
38714
39002
  }
38715
39003
  ],
38716
- "description": "Checks if the element has zero dimensions (width and height are both 0).",
39004
+ "description": "Adds a chunk of text instantly without typing animation"
39005
+ },
39006
+ {
39007
+ "kind": "method",
39008
+ "name": "processChunkQueue",
39009
+ "privacy": "private",
38717
39010
  "return": {
38718
39011
  "type": {
38719
- "text": ""
39012
+ "text": "void"
38720
39013
  }
38721
39014
  },
38722
- "inheritedFrom": {
38723
- "name": "Popover",
38724
- "module": "components/popover/popover.component.js"
38725
- }
39015
+ "description": "Processes all chunks in the queue"
38726
39016
  },
38727
39017
  {
38728
39018
  "kind": "method",
38729
- "name": "isNotVisible",
39019
+ "name": "processNextChunk",
38730
39020
  "privacy": "private",
38731
- "parameters": [
38732
- {
38733
- "name": "element",
38734
- "type": {
38735
- "text": "HTMLElement"
38736
- },
38737
- "description": "The element to check."
38738
- }
38739
- ],
38740
- "description": "Determines if the element is not visible in the DOM.",
38741
39021
  "return": {
38742
39022
  "type": {
38743
- "text": ""
39023
+ "text": "void"
38744
39024
  }
38745
39025
  },
38746
- "inheritedFrom": {
38747
- "name": "Popover",
38748
- "module": "components/popover/popover.component.js"
38749
- }
39026
+ "description": "Processes the next chunk in the queue"
38750
39027
  },
38751
39028
  {
38752
39029
  "kind": "method",
38753
- "name": "hasHiddenStyle",
39030
+ "name": "getTypingDelayMs",
38754
39031
  "privacy": "private",
38755
- "parameters": [
38756
- {
38757
- "name": "element",
38758
- "type": {
38759
- "text": "HTMLElement"
38760
- },
38761
- "description": "The element to check."
38762
- }
38763
- ],
38764
- "description": "Checks if the element has inline styles that make it hidden.",
38765
39032
  "return": {
38766
39033
  "type": {
38767
- "text": ""
39034
+ "text": "number"
38768
39035
  }
38769
39036
  },
38770
- "inheritedFrom": {
38771
- "name": "Popover",
38772
- "module": "components/popover/popover.component.js"
38773
- }
39037
+ "description": "Gets the typing delay in milliseconds per character"
38774
39038
  },
38775
39039
  {
38776
39040
  "kind": "method",
38777
- "name": "hasComputedHidden",
39041
+ "name": "captureAndProcessContent",
38778
39042
  "privacy": "private",
38779
- "parameters": [
38780
- {
38781
- "name": "element",
38782
- "type": {
38783
- "text": "HTMLElement"
38784
- },
38785
- "description": "The element to check."
38786
- }
38787
- ],
38788
- "description": "Checks if the element is hidden by a computed style.",
38789
39043
  "return": {
38790
39044
  "type": {
38791
- "text": ""
39045
+ "text": "void"
38792
39046
  }
38793
39047
  },
38794
- "inheritedFrom": {
38795
- "name": "Popover",
38796
- "module": "components/popover/popover.component.js"
38797
- }
39048
+ "description": "Captures slot content and starts typewriter animation"
38798
39049
  },
38799
39050
  {
38800
39051
  "kind": "method",
38801
- "name": "isHidden",
39052
+ "name": "startTypingAnimation",
38802
39053
  "privacy": "private",
39054
+ "return": {
39055
+ "type": {
39056
+ "text": "void"
39057
+ }
39058
+ },
38803
39059
  "parameters": [
38804
39060
  {
38805
- "name": "element",
39061
+ "name": "onComplete",
39062
+ "optional": true,
38806
39063
  "type": {
38807
- "text": "HTMLElement"
38808
- },
38809
- "description": "The element to check."
39064
+ "text": "() => void"
39065
+ }
38810
39066
  }
38811
39067
  ],
38812
- "description": "Checks if the element is hidden from the user.",
39068
+ "description": "Starts the typewriter animation"
39069
+ },
39070
+ {
39071
+ "kind": "method",
39072
+ "name": "clearTypingAnimation",
39073
+ "privacy": "private",
38813
39074
  "return": {
38814
39075
  "type": {
38815
- "text": ""
39076
+ "text": "void"
38816
39077
  }
38817
39078
  },
38818
- "inheritedFrom": {
38819
- "name": "Popover",
38820
- "module": "components/popover/popover.component.js"
38821
- }
39079
+ "description": "Clears the typing animation timeout"
38822
39080
  },
38823
39081
  {
38824
39082
  "kind": "method",
38825
- "name": "isDisabled",
39083
+ "name": "handleSlotChange",
38826
39084
  "privacy": "private",
38827
- "parameters": [
38828
- {
38829
- "name": "element",
38830
- "type": {
38831
- "text": "any"
38832
- },
38833
- "description": "The element to check."
38834
- }
38835
- ],
38836
- "description": "Checks if the element is disabled.",
38837
39085
  "return": {
38838
39086
  "type": {
38839
- "text": ""
39087
+ "text": "void"
38840
39088
  }
38841
39089
  },
38842
- "inheritedFrom": {
38843
- "name": "Popover",
39090
+ "description": "Handler for slotchange event"
39091
+ }
39092
+ ],
39093
+ "events": [
39094
+ {
39095
+ "type": {
39096
+ "text": "CustomEvent"
39097
+ }
39098
+ },
39099
+ {
39100
+ "description": "(React: onTypingComplete) Fired when the typewriter finishes typing all content. Detail: \\{ finalContent: string \\}",
39101
+ "name": "typing-complete",
39102
+ "reactName": "onTypingComplete"
39103
+ },
39104
+ {
39105
+ "description": "(React: onChange) Fired when the content of the typewriter changes. Detail: \\{ content: string, isTyping: boolean \\}",
39106
+ "name": "change",
39107
+ "reactName": "onChange"
39108
+ }
39109
+ ],
39110
+ "attributes": [
39111
+ {
39112
+ "name": "type",
39113
+ "type": {
39114
+ "text": "TextType"
39115
+ },
39116
+ "description": "Specifies the text style to be applied to the internal text component.\nUses the same types as the Text component.",
39117
+ "default": "body-large-regular",
39118
+ "fieldName": "type"
39119
+ },
39120
+ {
39121
+ "name": "tagname",
39122
+ "type": {
39123
+ "text": "TagName | undefined"
39124
+ },
39125
+ "description": "Specifies the HTML tag name for the text element. The default tag name is `p`.\nThis attribute is optional. When set, it changes the tag name of the internal text element.\n\nAcceptable values include all valid tag names from the Text component.",
39126
+ "fieldName": "tagname"
39127
+ },
39128
+ {
39129
+ "name": "speed",
39130
+ "type": {
39131
+ "text": "TypewriterSpeed"
39132
+ },
39133
+ "description": "Speed of the typewriter effect in milliseconds per character.\nCan be a string preset or a numeric string in milliseconds.\n- 'very-slow' = 240ms per character\n- 'slow' = 120ms per character\n- 'normal' = 60ms per character (default)\n- 'fast' = 20ms per character\n- 'very-fast' = 1ms per character\n- Or any numeric string representing milliseconds (e.g., '100')",
39134
+ "default": "'normal' (60ms per character)",
39135
+ "fieldName": "speed"
39136
+ },
39137
+ {
39138
+ "name": "max-queue-size",
39139
+ "type": {
39140
+ "text": "number"
39141
+ },
39142
+ "description": "Maximum number of text chunks that can be queued before oldest chunks are dropped.\nSet to prevent memory accumulation from excessive queuing.",
39143
+ "default": "Number.MAX_SAFE_INTEGER (effectively unlimited)",
39144
+ "fieldName": "maxQueueSize"
39145
+ }
39146
+ ],
39147
+ "superclass": {
39148
+ "name": "Component",
39149
+ "module": "/src/models"
39150
+ },
39151
+ "tagName": "mdc-typewriter",
39152
+ "jsDoc": "/**\n * Typewriter component that creates a typewriter effect on text content.\n * It uses the Text component internally, adding a progressive typing effect.\n *\n * The `type` attribute allows changing the text style (passed to the internal Text component).\n * The `tagname` attribute allows changing the tag name of the text element (passed to the internal Text component).\n * The default tag name is `p`.\n *\n * The `speed` attribute controls typing speed in milliseconds per character:\n * - 'very-slow' = 240ms per character\n * - 'slow' = 120ms per character\n * - 'normal' = 60ms per character (default)\n * - 'fast' = 20ms per character\n * - 'very-fast' = 1ms per character\n * - Or any numeric string representing milliseconds\n *\n * Advanced features:\n * - Dynamic speed adjustment during typing\n * - Chunked text addition via addTextChunk() method\n * - Instant text addition via addInstantTextChunk() method or instant parameter\n * - Mixed instant and animated chunks in queue\n * - Continues typing in background tabs\n * - Performance optimized for large text\n * - maxQueueSize to limit memory usage from excessive queuing\n * - event handling for typing completion and content changes\n *\n * The component includes accessibility features:\n * - Screen readers announce the complete text, not character by character\n * - Uses aria-live=\"polite\" for dynamic content updates\n * - Sets aria-busy during typing animation\n *\n * @dependency mdc-text\n *\n * @tagname mdc-typewriter\n * @slot - Default slot for text content\n *\n * @csspart container - Container for the text element\n * @csspart text - The text element (forwarded to mdc-text)\n *\n * @event typing-complete - (React: onTypingComplete) Fired when the typewriter finishes typing all content.\n * Detail: \\{ finalContent: string \\}\n * @event change - (React: onChange) Fired when the content of the typewriter changes.\n * Detail: \\{ content: string, isTyping: boolean \\}\n */",
39153
+ "customElement": true
39154
+ }
39155
+ ],
39156
+ "exports": [
39157
+ {
39158
+ "kind": "js",
39159
+ "name": "default",
39160
+ "declaration": {
39161
+ "name": "Typewriter",
39162
+ "module": "components/typewriter/typewriter.component.js"
39163
+ }
39164
+ }
39165
+ ]
39166
+ },
39167
+ {
39168
+ "kind": "javascript-module",
39169
+ "path": "components/virtualizedlist/virtualizedlist.component.js",
39170
+ "declarations": [
39171
+ {
39172
+ "kind": "class",
39173
+ "description": "`mdc-virtualizedlist` component for creating custom virtualized lists.\nIMPORTANT: This component does not create it's own list/list items.\nUse the setlistdata callback prop to update client state in order to\nPass list/listitems as a child of this component, which this will virtuailze\nThis implementation handles dynamic lists as well as fixed sized lists.\nPlease refer to [Tanstack Virtual Docs](https://tanstack.com/virtual/latest) for more in depth documentation.",
39174
+ "name": "VirtualizedList",
39175
+ "slots": [
39176
+ {
39177
+ "description": "Client side List with nested list items.",
39178
+ "name": ""
39179
+ }
39180
+ ],
39181
+ "members": [
39182
+ {
39183
+ "kind": "field",
39184
+ "name": "virtualizerProps",
39185
+ "type": {
39186
+ "text": "VirtualizerProps"
39187
+ },
39188
+ "description": "Object that sets and updates the virtualizer with any relevant props.\nThere are two required object props in order to get virtualization to work properly.\ncount - The length of your list that you are virtualizing.\nAs your list grows/shrinks, this component must be updated with the appropriate value\n(Same with any other updated prop).\nestimateSize - A function that returns the estimated size of your items.\nIf your list is fixed, this will just be the size of your items.\nIf your list is dynamic, try to return approximate the size of each item.\n\nA full list of possible props can be in\n[Tanstack Virtualizer API Docs](https://tanstack.com/virtual/latest/docs/api/virtualizer)",
39189
+ "attribute": "virtualizerprops"
39190
+ },
39191
+ {
39192
+ "kind": "field",
39193
+ "name": "setlistdata",
39194
+ "type": {
39195
+ "text": "(({ virtualItems, measureElement, listStyle }: SetListDataProps) => void) | null"
39196
+ },
39197
+ "description": "Callback that gets envoked when updates to the virtualizer interally occur.\nThis must be implemented in such a way that this function will trigger update to parent.\n\nvirtualItems - Array that will be what the client displays on screen. Use this to render\na List of your choosing with these items nested inside as your ListItems.\nmeasureElement - Ref to pass to each ListItem rendered client side.\nEach ListItem should also be be passed key and a data-index (which can be found on the virtualItem).\nlistStyle - This should be passed as the style attribute to your List.",
39198
+ "default": "null",
39199
+ "attribute": "setlistdata"
39200
+ },
39201
+ {
39202
+ "kind": "field",
39203
+ "name": "scrollElementRef",
39204
+ "type": {
39205
+ "text": "Ref<HTMLDivElement>"
39206
+ },
39207
+ "privacy": "public"
39208
+ },
39209
+ {
39210
+ "kind": "field",
39211
+ "name": "virtualizer",
39212
+ "type": {
39213
+ "text": "Virtualizer<Element, Element> | null"
39214
+ },
39215
+ "privacy": "public",
39216
+ "default": "null"
39217
+ },
39218
+ {
39219
+ "kind": "field",
39220
+ "name": "virtualItems",
39221
+ "type": {
39222
+ "text": "Array<VirtualItem>"
39223
+ },
39224
+ "privacy": "public",
39225
+ "default": "[]"
39226
+ },
39227
+ {
39228
+ "kind": "method",
39229
+ "name": "handleScroll",
39230
+ "privacy": "private",
39231
+ "return": {
39232
+ "type": {
39233
+ "text": "void"
39234
+ }
39235
+ },
39236
+ "parameters": [
39237
+ {
39238
+ "name": "event",
39239
+ "type": {
39240
+ "text": "Event"
39241
+ }
39242
+ }
39243
+ ],
39244
+ "description": "Refires the scroll event from the internal scroll container to the host element"
39245
+ },
39246
+ {
39247
+ "kind": "field",
39248
+ "name": "virtualizerController",
39249
+ "type": {
39250
+ "text": "null"
39251
+ },
39252
+ "default": "null"
39253
+ },
39254
+ {
39255
+ "kind": "field",
39256
+ "name": "onscroll",
39257
+ "type": {
39258
+ "text": "null"
39259
+ },
39260
+ "default": "null"
39261
+ }
39262
+ ],
39263
+ "events": [
39264
+ {
39265
+ "type": {
39266
+ "text": "EventConstructor"
39267
+ }
39268
+ },
39269
+ {
39270
+ "description": "(React: onScroll) Event that gets called when user scrolls inside of list.",
39271
+ "name": "scroll",
39272
+ "reactName": "onScroll"
39273
+ }
39274
+ ],
39275
+ "attributes": [
39276
+ {
39277
+ "name": "virtualizerprops",
39278
+ "type": {
39279
+ "text": "VirtualizerProps"
39280
+ },
39281
+ "description": "Object that sets and updates the virtualizer with any relevant props.\nThere are two required object props in order to get virtualization to work properly.\ncount - The length of your list that you are virtualizing.\nAs your list grows/shrinks, this component must be updated with the appropriate value\n(Same with any other updated prop).\nestimateSize - A function that returns the estimated size of your items.\nIf your list is fixed, this will just be the size of your items.\nIf your list is dynamic, try to return approximate the size of each item.\n\nA full list of possible props can be in\n[Tanstack Virtualizer API Docs](https://tanstack.com/virtual/latest/docs/api/virtualizer)",
39282
+ "fieldName": "virtualizerProps"
39283
+ },
39284
+ {
39285
+ "name": "setlistdata",
39286
+ "type": {
39287
+ "text": "(({ virtualItems, measureElement, listStyle }: SetListDataProps) => void) | null"
39288
+ },
39289
+ "description": "Callback that gets envoked when updates to the virtualizer interally occur.\nThis must be implemented in such a way that this function will trigger update to parent.\n\nvirtualItems - Array that will be what the client displays on screen. Use this to render\na List of your choosing with these items nested inside as your ListItems.\nmeasureElement - Ref to pass to each ListItem rendered client side.\nEach ListItem should also be be passed key and a data-index (which can be found on the virtualItem).\nlistStyle - This should be passed as the style attribute to your List.",
39290
+ "default": "null",
39291
+ "fieldName": "setlistdata"
39292
+ }
39293
+ ],
39294
+ "superclass": {
39295
+ "name": "Component",
39296
+ "module": "/src/models"
39297
+ },
39298
+ "tagName": "mdc-virtualizedlist",
39299
+ "jsDoc": "/**\n * `mdc-virtualizedlist` component for creating custom virtualized lists.\n * IMPORTANT: This component does not create it's own list/list items.\n * Use the setlistdata callback prop to update client state in order to\n * Pass list/listitems as a child of this component, which this will virtuailze\n * This implementation handles dynamic lists as well as fixed sized lists.\n * Please refer to [Tanstack Virtual Docs](https://tanstack.com/virtual/latest) for more in depth documentation.\n *\n * @tagname mdc-virtualizedlist\n *\n * @event scroll - (React: onScroll) Event that gets called when user scrolls inside of list.\n *\n * @slot - Client side List with nested list items.\n */",
39300
+ "customElement": true
39301
+ }
39302
+ ],
39303
+ "exports": [
39304
+ {
39305
+ "kind": "js",
39306
+ "name": "default",
39307
+ "declaration": {
39308
+ "name": "VirtualizedList",
39309
+ "module": "components/virtualizedlist/virtualizedlist.component.js"
39310
+ }
39311
+ }
39312
+ ]
39313
+ },
39314
+ {
39315
+ "kind": "javascript-module",
39316
+ "path": "components/tooltip/tooltip.component.js",
39317
+ "declarations": [
39318
+ {
39319
+ "kind": "class",
39320
+ "description": "A tooltip is triggered by mouse hover or by keyboard focus\nand will disappear upon mouse exit or focus change.\n\nNote: Tooltips cannot contain content that can be focused or interacted with.",
39321
+ "name": "Tooltip",
39322
+ "cssProperties": [
39323
+ {
39324
+ "description": "The maximum width of the tooltip.",
39325
+ "name": "--mdc-tooltip-max-width"
39326
+ },
39327
+ {
39328
+ "description": "The padding of the tooltip.",
39329
+ "name": "--mdc-tooltip-padding"
39330
+ },
39331
+ {
39332
+ "description": "The text color of the tooltip.",
39333
+ "name": "--mdc-tooltip-text-color"
39334
+ },
39335
+ {
39336
+ "description": "The text color of the tooltip when the color is contrast.",
39337
+ "name": "--mdc-tooltip-text-color-contrast"
39338
+ },
39339
+ {
39340
+ "description": "radius of the arrow border",
39341
+ "name": "--mdc-popover-arrow-border-radius",
39342
+ "inheritedFrom": {
39343
+ "name": "Popover",
39344
+ "module": "src/components/popover/popover.component.ts"
39345
+ }
39346
+ },
39347
+ {
39348
+ "description": "border of the arrow",
39349
+ "name": "--mdc-popover-arrow-border",
39350
+ "inheritedFrom": {
39351
+ "name": "Popover",
39352
+ "module": "src/components/popover/popover.component.ts"
39353
+ }
39354
+ },
39355
+ {
39356
+ "description": "primary background color of the popover",
39357
+ "name": "--mdc-popover-primary-background-color",
39358
+ "inheritedFrom": {
39359
+ "name": "Popover",
39360
+ "module": "src/components/popover/popover.component.ts"
39361
+ }
39362
+ },
39363
+ {
39364
+ "description": "border color of the popover",
39365
+ "name": "--mdc-popover-border-color",
39366
+ "inheritedFrom": {
39367
+ "name": "Popover",
39368
+ "module": "src/components/popover/popover.component.ts"
39369
+ }
39370
+ },
39371
+ {
39372
+ "description": "inverted background color of the popover",
39373
+ "name": "--mdc-popover-inverted-background-color",
39374
+ "inheritedFrom": {
39375
+ "name": "Popover",
39376
+ "module": "src/components/popover/popover.component.ts"
39377
+ }
39378
+ },
39379
+ {
39380
+ "description": "inverted border color of the popover",
39381
+ "name": "--mdc-popover-inverted-border-color",
39382
+ "inheritedFrom": {
39383
+ "name": "Popover",
39384
+ "module": "src/components/popover/popover.component.ts"
39385
+ }
39386
+ },
39387
+ {
39388
+ "description": "inverted text color of the popover",
39389
+ "name": "--mdc-popover-inverted-text-color",
39390
+ "inheritedFrom": {
39391
+ "name": "Popover",
39392
+ "module": "src/components/popover/popover.component.ts"
39393
+ }
39394
+ },
39395
+ {
39396
+ "description": "elevation of the popover",
39397
+ "name": "--mdc-popover-elevation-3",
39398
+ "inheritedFrom": {
39399
+ "name": "Popover",
39400
+ "module": "src/components/popover/popover.component.ts"
39401
+ }
39402
+ },
39403
+ {
39404
+ "description": "max width of the popover",
39405
+ "name": "--mdc-popover-max-width",
39406
+ "inheritedFrom": {
39407
+ "name": "Popover",
39408
+ "module": "src/components/popover/popover.component.ts"
39409
+ }
39410
+ },
39411
+ {
39412
+ "description": "max height of the popover",
39413
+ "name": "--mdc-popover-max-height",
39414
+ "inheritedFrom": {
39415
+ "name": "Popover",
39416
+ "module": "src/components/popover/popover.component.ts"
39417
+ }
39418
+ }
39419
+ ],
39420
+ "members": [
39421
+ {
39422
+ "kind": "field",
39423
+ "name": "tooltipType",
39424
+ "type": {
39425
+ "text": "TooltipType"
39426
+ },
39427
+ "description": "The type of tooltip.\n- **description** sets aria-describedby on the trigger component which refers to the tooltip id.\n- **label** sets aria-labelledby on the trigger component which refers to the tooltip id.\n- **none** no aria props set on trigger component referring to the tooltip id.",
39428
+ "default": "'description'",
39429
+ "attribute": "tooltip-type",
39430
+ "reflects": true
39431
+ },
39432
+ {
39433
+ "kind": "field",
39434
+ "name": "defaultSlotNodes",
39435
+ "type": {
39436
+ "text": "Array<Node>"
39437
+ },
39438
+ "privacy": "private"
39439
+ },
39440
+ {
39441
+ "kind": "method",
39442
+ "name": "getTooltipText",
39443
+ "privacy": "private",
39444
+ "return": {
39445
+ "type": {
39446
+ "text": ""
39447
+ }
39448
+ }
39449
+ },
39450
+ {
39451
+ "kind": "method",
39452
+ "name": "setTooltipType",
39453
+ "privacy": "private",
39454
+ "return": {
39455
+ "type": {
39456
+ "text": "void"
39457
+ }
39458
+ },
39459
+ "parameters": [
39460
+ {
39461
+ "name": "type",
39462
+ "type": {
39463
+ "text": "TooltipType"
39464
+ },
39465
+ "description": "The type to set."
39466
+ }
39467
+ ],
39468
+ "description": "Sets the type attribute for the tooltip component.\nIf the provided type is not included in the TOOLTIP_TYPES,\nit defaults to the value specified in DEFAULTS.TOOLTIP_TYPE."
39469
+ },
39470
+ {
39471
+ "kind": "method",
39472
+ "name": "onIdUpdated",
39473
+ "privacy": "private",
39474
+ "return": {
39475
+ "type": {
39476
+ "text": "Promise<void>"
39477
+ }
39478
+ },
39479
+ "description": "Updates the tooltip id if it is empty."
39480
+ },
39481
+ {
39482
+ "kind": "method",
39483
+ "name": "onPlacementUpdated",
39484
+ "privacy": "private",
39485
+ "return": {
39486
+ "type": {
39487
+ "text": "void"
39488
+ }
39489
+ },
39490
+ "description": "Updates the placement attribute if it is not a valid placement.\nOverriding the default from Popover"
39491
+ },
39492
+ {
39493
+ "kind": "method",
39494
+ "name": "onTooltipTypeUpdated",
39495
+ "privacy": "private",
39496
+ "return": {
39497
+ "type": {
39498
+ "text": "void"
39499
+ }
39500
+ },
39501
+ "parameters": [
39502
+ {
39503
+ "name": "changedProperties",
39504
+ "type": {
39505
+ "text": "PropertyValues"
39506
+ },
39507
+ "description": "The changed properties."
39508
+ }
39509
+ ],
39510
+ "description": "Updates the tooltip type attribute and sets the appropriate aria props on the trigger component."
39511
+ },
39512
+ {
39513
+ "kind": "field",
39514
+ "name": "zIndex",
39515
+ "type": {
39516
+ "text": "number"
39517
+ },
39518
+ "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`.",
39519
+ "default": "1000",
39520
+ "attribute": "z-index",
39521
+ "reflects": true,
39522
+ "inheritedFrom": {
39523
+ "name": "Popover",
39524
+ "module": "components/popover/popover.component.js"
39525
+ }
39526
+ },
39527
+ {
39528
+ "kind": "field",
39529
+ "name": "preventScroll",
39530
+ "type": {
39531
+ "text": "boolean"
39532
+ },
39533
+ "privacy": "protected",
39534
+ "description": "Prevent outside scrolling when element is shown.\n\nIMPLEMENT THIS IN YOUR COMPONENT.",
39535
+ "default": "false",
39536
+ "attribute": "prevent-scroll",
39537
+ "reflects": true,
39538
+ "inheritedFrom": {
39539
+ "name": "Popover",
39540
+ "module": "components/popover/popover.component.js"
39541
+ }
39542
+ },
39543
+ {
39544
+ "kind": "method",
39545
+ "name": "activatePreventScroll",
39546
+ "privacy": "protected",
39547
+ "inheritedFrom": {
39548
+ "name": "Popover",
39549
+ "module": "components/popover/popover.component.js"
39550
+ }
39551
+ },
39552
+ {
39553
+ "kind": "method",
39554
+ "name": "deactivatePreventScroll",
39555
+ "privacy": "protected",
39556
+ "inheritedFrom": {
39557
+ "name": "Popover",
39558
+ "module": "components/popover/popover.component.js"
39559
+ }
39560
+ },
39561
+ {
39562
+ "kind": "field",
39563
+ "name": "focusTrap",
39564
+ "type": {
39565
+ "text": "boolean"
39566
+ },
39567
+ "privacy": "protected",
39568
+ "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.",
39569
+ "default": "false",
39570
+ "attribute": "focus-trap",
39571
+ "reflects": true,
39572
+ "inheritedFrom": {
39573
+ "name": "Popover",
39574
+ "module": "components/popover/popover.component.js"
39575
+ }
39576
+ },
39577
+ {
39578
+ "kind": "field",
39579
+ "name": "shouldFocusTrapWrap",
39580
+ "type": {
39581
+ "text": "boolean"
39582
+ },
39583
+ "default": "true",
39584
+ "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.",
39585
+ "attribute": "should-focus-trap-wrap",
39586
+ "reflects": true,
39587
+ "inheritedFrom": {
39588
+ "name": "Popover",
39589
+ "module": "components/popover/popover.component.js"
39590
+ }
39591
+ },
39592
+ {
39593
+ "kind": "method",
39594
+ "name": "setIsFocusTrapActivated",
39595
+ "privacy": "private",
39596
+ "parameters": [
39597
+ {
39598
+ "name": "isActivated",
39599
+ "type": {
39600
+ "text": "boolean"
39601
+ }
39602
+ }
39603
+ ],
39604
+ "inheritedFrom": {
39605
+ "name": "Popover",
39606
+ "module": "components/popover/popover.component.js"
39607
+ }
39608
+ },
39609
+ {
39610
+ "kind": "method",
39611
+ "name": "activateFocusTrap",
39612
+ "privacy": "public",
39613
+ "description": "Activate the focus trap",
39614
+ "inheritedFrom": {
39615
+ "name": "Popover",
39616
+ "module": "components/popover/popover.component.js"
39617
+ }
39618
+ },
39619
+ {
39620
+ "kind": "method",
39621
+ "name": "deactivateFocusTrap",
39622
+ "privacy": "public",
39623
+ "description": "Deactivate the focus trap.",
39624
+ "inheritedFrom": {
39625
+ "name": "Popover",
39626
+ "module": "components/popover/popover.component.js"
39627
+ }
39628
+ },
39629
+ {
39630
+ "kind": "method",
39631
+ "name": "hasNoClientRects",
39632
+ "privacy": "private",
39633
+ "parameters": [
39634
+ {
39635
+ "name": "element",
39636
+ "type": {
39637
+ "text": "HTMLElement"
39638
+ },
39639
+ "description": "The element to check."
39640
+ }
39641
+ ],
39642
+ "description": "Checks if the element has no client rectangles (not visible in the viewport).",
39643
+ "return": {
39644
+ "type": {
39645
+ "text": ""
39646
+ }
39647
+ },
39648
+ "inheritedFrom": {
39649
+ "name": "Popover",
39650
+ "module": "components/popover/popover.component.js"
39651
+ }
39652
+ },
39653
+ {
39654
+ "kind": "method",
39655
+ "name": "hasZeroDimensions",
39656
+ "privacy": "private",
39657
+ "parameters": [
39658
+ {
39659
+ "name": "element",
39660
+ "type": {
39661
+ "text": "HTMLElement"
39662
+ },
39663
+ "description": "The element to check."
39664
+ }
39665
+ ],
39666
+ "description": "Checks if the element has zero dimensions (width and height are both 0).",
39667
+ "return": {
39668
+ "type": {
39669
+ "text": ""
39670
+ }
39671
+ },
39672
+ "inheritedFrom": {
39673
+ "name": "Popover",
39674
+ "module": "components/popover/popover.component.js"
39675
+ }
39676
+ },
39677
+ {
39678
+ "kind": "method",
39679
+ "name": "isNotVisible",
39680
+ "privacy": "private",
39681
+ "parameters": [
39682
+ {
39683
+ "name": "element",
39684
+ "type": {
39685
+ "text": "HTMLElement"
39686
+ },
39687
+ "description": "The element to check."
39688
+ }
39689
+ ],
39690
+ "description": "Determines if the element is not visible in the DOM.",
39691
+ "return": {
39692
+ "type": {
39693
+ "text": ""
39694
+ }
39695
+ },
39696
+ "inheritedFrom": {
39697
+ "name": "Popover",
39698
+ "module": "components/popover/popover.component.js"
39699
+ }
39700
+ },
39701
+ {
39702
+ "kind": "method",
39703
+ "name": "hasHiddenStyle",
39704
+ "privacy": "private",
39705
+ "parameters": [
39706
+ {
39707
+ "name": "element",
39708
+ "type": {
39709
+ "text": "HTMLElement"
39710
+ },
39711
+ "description": "The element to check."
39712
+ }
39713
+ ],
39714
+ "description": "Checks if the element has inline styles that make it hidden.",
39715
+ "return": {
39716
+ "type": {
39717
+ "text": ""
39718
+ }
39719
+ },
39720
+ "inheritedFrom": {
39721
+ "name": "Popover",
39722
+ "module": "components/popover/popover.component.js"
39723
+ }
39724
+ },
39725
+ {
39726
+ "kind": "method",
39727
+ "name": "hasComputedHidden",
39728
+ "privacy": "private",
39729
+ "parameters": [
39730
+ {
39731
+ "name": "element",
39732
+ "type": {
39733
+ "text": "HTMLElement"
39734
+ },
39735
+ "description": "The element to check."
39736
+ }
39737
+ ],
39738
+ "description": "Checks if the element is hidden by a computed style.",
39739
+ "return": {
39740
+ "type": {
39741
+ "text": ""
39742
+ }
39743
+ },
39744
+ "inheritedFrom": {
39745
+ "name": "Popover",
39746
+ "module": "components/popover/popover.component.js"
39747
+ }
39748
+ },
39749
+ {
39750
+ "kind": "method",
39751
+ "name": "isHidden",
39752
+ "privacy": "private",
39753
+ "parameters": [
39754
+ {
39755
+ "name": "element",
39756
+ "type": {
39757
+ "text": "HTMLElement"
39758
+ },
39759
+ "description": "The element to check."
39760
+ }
39761
+ ],
39762
+ "description": "Checks if the element is hidden from the user.",
39763
+ "return": {
39764
+ "type": {
39765
+ "text": ""
39766
+ }
39767
+ },
39768
+ "inheritedFrom": {
39769
+ "name": "Popover",
39770
+ "module": "components/popover/popover.component.js"
39771
+ }
39772
+ },
39773
+ {
39774
+ "kind": "method",
39775
+ "name": "isDisabled",
39776
+ "privacy": "private",
39777
+ "parameters": [
39778
+ {
39779
+ "name": "element",
39780
+ "type": {
39781
+ "text": "any"
39782
+ },
39783
+ "description": "The element to check."
39784
+ }
39785
+ ],
39786
+ "description": "Checks if the element is disabled.",
39787
+ "return": {
39788
+ "type": {
39789
+ "text": ""
39790
+ }
39791
+ },
39792
+ "inheritedFrom": {
39793
+ "name": "Popover",
38844
39794
  "module": "components/popover/popover.component.js"
38845
39795
  }
38846
39796
  },
@@ -39165,6 +40115,21 @@
39165
40115
  "module": "components/popover/popover.component.js"
39166
40116
  }
39167
40117
  },
40118
+ {
40119
+ "kind": "field",
40120
+ "name": "placement",
40121
+ "type": {
40122
+ "text": "PopoverPlacement"
40123
+ },
40124
+ "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
40125
+ "default": "bottom",
40126
+ "attribute": "placement",
40127
+ "reflects": true,
40128
+ "inheritedFrom": {
40129
+ "name": "Popover",
40130
+ "module": "components/popover/popover.component.js"
40131
+ }
40132
+ },
39168
40133
  {
39169
40134
  "kind": "field",
39170
40135
  "name": "color",
@@ -39884,7 +40849,7 @@
39884
40849
  ],
39885
40850
  "events": [
39886
40851
  {
39887
- "description": "(React: onShown) This event is dispatched when the toggletip is shown",
40852
+ "description": "(React: onShown) This event is dispatched when the tooltip is shown",
39888
40853
  "name": "shown",
39889
40854
  "reactName": "onShown",
39890
40855
  "inheritedFrom": {
@@ -39893,7 +40858,7 @@
39893
40858
  }
39894
40859
  },
39895
40860
  {
39896
- "description": "(React: onHidden) This event is dispatched when the toggletip is hidden",
40861
+ "description": "(React: onHidden) This event is dispatched when the tooltip is hidden",
39897
40862
  "name": "hidden",
39898
40863
  "reactName": "onHidden",
39899
40864
  "inheritedFrom": {
@@ -39902,7 +40867,7 @@
39902
40867
  }
39903
40868
  },
39904
40869
  {
39905
- "description": "(React: onCreated) This event is dispatched when the toggletip is created (added to the DOM)",
40870
+ "description": "(React: onCreated) This event is dispatched when the tooltip is created (added to the DOM)",
39906
40871
  "name": "created",
39907
40872
  "reactName": "onCreated",
39908
40873
  "inheritedFrom": {
@@ -39911,7 +40876,7 @@
39911
40876
  }
39912
40877
  },
39913
40878
  {
39914
- "description": "(React: onDestroyed) This event is dispatched when the toggletip is destroyed (removed from the DOM)",
40879
+ "description": "(React: onDestroyed) This event is dispatched when the tooltip is destroyed (removed from the DOM)",
39915
40880
  "name": "destroyed",
39916
40881
  "reactName": "onDestroyed",
39917
40882
  "inheritedFrom": {
@@ -39922,25 +40887,13 @@
39922
40887
  ],
39923
40888
  "attributes": [
39924
40889
  {
39925
- "name": "screenreader-announcer-identity",
39926
- "type": {
39927
- "text": "string | undefined"
39928
- },
39929
- "description": "Set this attribute with the id of the element in the DOM, to which announcement\nelements will be appended.\nIf an id is provided, the announcement elements will be appended to this element.\nIf id is not provided, a visually hidden div element will be created in the DOM.\n\nPlease refer to the `mdc-screenreaderannouncer` component for more details.",
39930
- "fieldName": "screenreaderAnnouncerIdentity"
39931
- },
39932
- {
39933
- "name": "placement",
40890
+ "name": "tooltip-type",
39934
40891
  "type": {
39935
- "text": "PopoverPlacement"
40892
+ "text": "TooltipType"
39936
40893
  },
39937
- "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
39938
- "default": "bottom",
39939
- "fieldName": "placement",
39940
- "inheritedFrom": {
39941
- "name": "Popover",
39942
- "module": "src/components/popover/popover.component.ts"
39943
- }
40894
+ "description": "The type of tooltip.\n- **description** sets aria-describedby on the trigger component which refers to the tooltip id.\n- **label** sets aria-labelledby on the trigger component which refers to the tooltip id.\n- **none** no aria props set on trigger component referring to the tooltip id.",
40895
+ "default": "'description'",
40896
+ "fieldName": "tooltipType"
39944
40897
  },
39945
40898
  {
39946
40899
  "name": "should-focus-trap-wrap",
@@ -39994,6 +40947,19 @@
39994
40947
  "module": "src/components/popover/popover.component.ts"
39995
40948
  }
39996
40949
  },
40950
+ {
40951
+ "name": "placement",
40952
+ "type": {
40953
+ "text": "PopoverPlacement"
40954
+ },
40955
+ "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
40956
+ "default": "bottom",
40957
+ "fieldName": "placement",
40958
+ "inheritedFrom": {
40959
+ "name": "Popover",
40960
+ "module": "src/components/popover/popover.component.ts"
40961
+ }
40962
+ },
39997
40963
  {
39998
40964
  "name": "color",
39999
40965
  "type": {
@@ -40414,9 +41380,19 @@
40414
41380
  "name": "Popover",
40415
41381
  "module": "/src/components/popover/popover.component"
40416
41382
  },
40417
- "tagName": "mdc-toggletip",
40418
- "jsDoc": "/**\n * A toggletip is triggered by clicking a trigger element.\n *\n * It can contain interactive content and can be closed by\n * clicking outside the toggletip or pressing the escape key.\n *\n * It can have optional close button to close the toggletip.\n *\n * Toggletip component uses `mdc-screenreaderannouncer` internally to\n * announce the toggletip text content with screen readers when the toggletip is shown.\n *\n * `screenreader-announcer-identity` attribute can be used to provide ID of an element\n * in DOM to which announcement elements are added. If not set, a visually hidden\n * div element is created in DOM to which announcement elements are added.\n *\n * Please refer to the `mdc-screenreaderannouncer` component for more details.\n *\n * @dependency mdc-screenreaderannouncer\n * @dependency mdc-button\n *\n * @tagname mdc-toggletip\n *\n * @event shown - (React: onShown) This event is dispatched when the toggletip is shown\n * @event hidden - (React: onHidden) This event is dispatched when the toggletip is hidden\n * @event created - (React: onCreated) This event is dispatched when the toggletip is created (added to the DOM)\n * @event destroyed - (React: onDestroyed) This event is dispatched when the toggletip\n * is destroyed (removed from the DOM)\n *\n * @cssproperty --mdc-toggletip-max-width - The maximum width of the toggletip.\n * @cssproperty --mdc-toggletip-text-color - The text color of the toggletip.\n * @cssproperty --mdc-toggletip-text-color-contrast - The text color of the toggletip\n * when the color is contrast.\n *\n * @slot - Default slot for the toggletip content\n */",
40419
- "customElement": true
41383
+ "tagName": "mdc-tooltip",
41384
+ "jsDoc": "/**\n * A tooltip is triggered by mouse hover or by keyboard focus\n * and will disappear upon mouse exit or focus change.\n *\n * Note: Tooltips cannot contain content that can be focused or interacted with.\n *\n * @tagname mdc-tooltip\n *\n * @event shown - (React: onShown) This event is dispatched when the tooltip is shown\n * @event hidden - (React: onHidden) This event is dispatched when the tooltip is hidden\n * @event created - (React: onCreated) This event is dispatched when the tooltip is created (added to the DOM)\n * @event destroyed - (React: onDestroyed) This event is dispatched when the tooltip is destroyed (removed from the DOM)\n *\n * @cssproperty --mdc-tooltip-max-width - The maximum width of the tooltip.\n * @cssproperty --mdc-tooltip-padding - The padding of the tooltip.\n * @cssproperty --mdc-tooltip-text-color - The text color of the tooltip.\n * @cssproperty --mdc-tooltip-text-color-contrast - The text color of the tooltip when the color is contrast.\n *\n */",
41385
+ "customElement": true,
41386
+ "slots": [
41387
+ {
41388
+ "description": "Default slot for the popover content",
41389
+ "name": "",
41390
+ "inheritedFrom": {
41391
+ "name": "Popover",
41392
+ "module": "src/components/popover/popover.component.ts"
41393
+ }
41394
+ }
41395
+ ]
40420
41396
  }
40421
41397
  ],
40422
41398
  "exports": [
@@ -40424,36 +41400,32 @@
40424
41400
  "kind": "js",
40425
41401
  "name": "default",
40426
41402
  "declaration": {
40427
- "name": "ToggleTip",
40428
- "module": "components/toggletip/toggletip.component.js"
41403
+ "name": "Tooltip",
41404
+ "module": "components/tooltip/tooltip.component.js"
40429
41405
  }
40430
41406
  }
40431
41407
  ]
40432
41408
  },
40433
41409
  {
40434
41410
  "kind": "javascript-module",
40435
- "path": "components/tooltip/tooltip.component.js",
41411
+ "path": "components/toggletip/toggletip.component.js",
40436
41412
  "declarations": [
40437
41413
  {
40438
41414
  "kind": "class",
40439
- "description": "A tooltip is triggered by mouse hover or by keyboard focus\nand will disappear upon mouse exit or focus change.\n\nNote: Tooltips cannot contain content that can be focused or interacted with.",
40440
- "name": "Tooltip",
41415
+ "description": "A toggletip is triggered by clicking a trigger element.\n\nIt can contain interactive content and can be closed by\nclicking outside the toggletip or pressing the escape key.\n\nIt can have optional close button to close the toggletip.\n\nToggletip component uses `mdc-screenreaderannouncer` internally to\nannounce the toggletip text content with screen readers when the toggletip is shown.\n\n`screenreader-announcer-identity` attribute can be used to provide ID of an element\nin DOM to which announcement elements are added. If not set, a visually hidden\ndiv element is created in DOM to which announcement elements are added.\n\nPlease refer to the `mdc-screenreaderannouncer` component for more details.",
41416
+ "name": "ToggleTip",
40441
41417
  "cssProperties": [
40442
41418
  {
40443
- "description": "The maximum width of the tooltip.",
40444
- "name": "--mdc-tooltip-max-width"
40445
- },
40446
- {
40447
- "description": "The padding of the tooltip.",
40448
- "name": "--mdc-tooltip-padding"
41419
+ "description": "The maximum width of the toggletip.",
41420
+ "name": "--mdc-toggletip-max-width"
40449
41421
  },
40450
41422
  {
40451
- "description": "The text color of the tooltip.",
40452
- "name": "--mdc-tooltip-text-color"
41423
+ "description": "The text color of the toggletip.",
41424
+ "name": "--mdc-toggletip-text-color"
40453
41425
  },
40454
41426
  {
40455
- "description": "The text color of the tooltip when the color is contrast.",
40456
- "name": "--mdc-tooltip-text-color-contrast"
41427
+ "description": "The text color of the toggletip when the color is contrast.",
41428
+ "name": "--mdc-toggletip-text-color-contrast"
40457
41429
  },
40458
41430
  {
40459
41431
  "description": "radius of the arrow border",
@@ -40536,18 +41508,17 @@
40536
41508
  }
40537
41509
  }
40538
41510
  ],
40539
- "members": [
41511
+ "slots": [
40540
41512
  {
40541
- "kind": "field",
40542
- "name": "tooltipType",
40543
- "type": {
40544
- "text": "TooltipType"
40545
- },
40546
- "description": "The type of tooltip.\n- **description** sets aria-describedby on the trigger component which refers to the tooltip id.\n- **label** sets aria-labelledby on the trigger component which refers to the tooltip id.\n- **none** no aria props set on trigger component referring to the tooltip id.",
40547
- "default": "'description'",
40548
- "attribute": "tooltip-type",
40549
- "reflects": true
40550
- },
41513
+ "description": "Default slot for the toggletip content",
41514
+ "name": "",
41515
+ "inheritedFrom": {
41516
+ "name": "Popover",
41517
+ "module": "src/components/popover/popover.component.ts"
41518
+ }
41519
+ }
41520
+ ],
41521
+ "members": [
40551
41522
  {
40552
41523
  "kind": "field",
40553
41524
  "name": "defaultSlotNodes",
@@ -40557,76 +41528,50 @@
40557
41528
  "privacy": "private"
40558
41529
  },
40559
41530
  {
40560
- "kind": "method",
40561
- "name": "getTooltipText",
40562
- "privacy": "private",
40563
- "return": {
40564
- "type": {
40565
- "text": ""
40566
- }
40567
- }
40568
- },
40569
- {
40570
- "kind": "method",
40571
- "name": "setTooltipType",
40572
- "privacy": "private",
40573
- "return": {
40574
- "type": {
40575
- "text": "void"
40576
- }
41531
+ "kind": "field",
41532
+ "name": "screenreaderAnnouncerIdentity",
41533
+ "type": {
41534
+ "text": "string | undefined"
40577
41535
  },
40578
- "parameters": [
40579
- {
40580
- "name": "type",
40581
- "type": {
40582
- "text": "TooltipType"
40583
- },
40584
- "description": "The type to set."
40585
- }
40586
- ],
40587
- "description": "Sets the type attribute for the tooltip component.\nIf the provided type is not included in the TOOLTIP_TYPES,\nit defaults to the value specified in DEFAULTS.TOOLTIP_TYPE."
41536
+ "description": "Set this attribute with the id of the element in the DOM, to which announcement\nelements will be appended.\nIf an id is provided, the announcement elements will be appended to this element.\nIf id is not provided, a visually hidden div element will be created in the DOM.\n\nPlease refer to the `mdc-screenreaderannouncer` component for more details.",
41537
+ "attribute": "screenreader-announcer-identity",
41538
+ "reflects": true
40588
41539
  },
40589
41540
  {
40590
- "kind": "method",
40591
- "name": "onIdUpdated",
40592
- "privacy": "private",
40593
- "return": {
40594
- "type": {
40595
- "text": "Promise<void>"
40596
- }
41541
+ "kind": "field",
41542
+ "name": "placement",
41543
+ "type": {
41544
+ "text": "PopoverPlacement"
40597
41545
  },
40598
- "description": "Updates the tooltip id if it is empty."
41546
+ "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
41547
+ "default": "bottom",
41548
+ "attribute": "placement",
41549
+ "reflects": true,
41550
+ "inheritedFrom": {
41551
+ "name": "Popover",
41552
+ "module": "components/popover/popover.component.js"
41553
+ }
40599
41554
  },
40600
41555
  {
40601
41556
  "kind": "method",
40602
- "name": "onPlacementUpdated",
41557
+ "name": "getToggleTipText",
40603
41558
  "privacy": "private",
40604
41559
  "return": {
40605
41560
  "type": {
40606
- "text": "void"
41561
+ "text": ""
40607
41562
  }
40608
- },
40609
- "description": "Updates the placement attribute if it is not a valid placement.\nOverriding the default from Popover"
41563
+ }
40610
41564
  },
40611
41565
  {
40612
41566
  "kind": "method",
40613
- "name": "onTooltipTypeUpdated",
41567
+ "name": "onPlacementUpdated",
40614
41568
  "privacy": "private",
40615
41569
  "return": {
40616
41570
  "type": {
40617
41571
  "text": "void"
40618
41572
  }
40619
41573
  },
40620
- "parameters": [
40621
- {
40622
- "name": "changedProperties",
40623
- "type": {
40624
- "text": "PropertyValues"
40625
- },
40626
- "description": "The changed properties."
40627
- }
40628
- ],
40629
- "description": "Updates the tooltip type attribute and sets the appropriate aria props on the trigger component."
41574
+ "description": "Updates the placement attribute if it is not a valid placement.\nDefault placement for toggle tip is top."
40630
41575
  },
40631
41576
  {
40632
41577
  "kind": "field",
@@ -41234,21 +42179,6 @@
41234
42179
  "module": "components/popover/popover.component.js"
41235
42180
  }
41236
42181
  },
41237
- {
41238
- "kind": "field",
41239
- "name": "placement",
41240
- "type": {
41241
- "text": "PopoverPlacement"
41242
- },
41243
- "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
41244
- "default": "bottom",
41245
- "attribute": "placement",
41246
- "reflects": true,
41247
- "inheritedFrom": {
41248
- "name": "Popover",
41249
- "module": "components/popover/popover.component.js"
41250
- }
41251
- },
41252
42182
  {
41253
42183
  "kind": "field",
41254
42184
  "name": "color",
@@ -41968,7 +42898,7 @@
41968
42898
  ],
41969
42899
  "events": [
41970
42900
  {
41971
- "description": "(React: onShown) This event is dispatched when the tooltip is shown",
42901
+ "description": "(React: onShown) This event is dispatched when the toggletip is shown",
41972
42902
  "name": "shown",
41973
42903
  "reactName": "onShown",
41974
42904
  "inheritedFrom": {
@@ -41977,7 +42907,7 @@
41977
42907
  }
41978
42908
  },
41979
42909
  {
41980
- "description": "(React: onHidden) This event is dispatched when the tooltip is hidden",
42910
+ "description": "(React: onHidden) This event is dispatched when the toggletip is hidden",
41981
42911
  "name": "hidden",
41982
42912
  "reactName": "onHidden",
41983
42913
  "inheritedFrom": {
@@ -41986,7 +42916,7 @@
41986
42916
  }
41987
42917
  },
41988
42918
  {
41989
- "description": "(React: onCreated) This event is dispatched when the tooltip is created (added to the DOM)",
42919
+ "description": "(React: onCreated) This event is dispatched when the toggletip is created (added to the DOM)",
41990
42920
  "name": "created",
41991
42921
  "reactName": "onCreated",
41992
42922
  "inheritedFrom": {
@@ -41995,7 +42925,7 @@
41995
42925
  }
41996
42926
  },
41997
42927
  {
41998
- "description": "(React: onDestroyed) This event is dispatched when the tooltip is destroyed (removed from the DOM)",
42928
+ "description": "(React: onDestroyed) This event is dispatched when the toggletip is destroyed (removed from the DOM)",
41999
42929
  "name": "destroyed",
42000
42930
  "reactName": "onDestroyed",
42001
42931
  "inheritedFrom": {
@@ -42006,13 +42936,25 @@
42006
42936
  ],
42007
42937
  "attributes": [
42008
42938
  {
42009
- "name": "tooltip-type",
42939
+ "name": "screenreader-announcer-identity",
42010
42940
  "type": {
42011
- "text": "TooltipType"
42941
+ "text": "string | undefined"
42012
42942
  },
42013
- "description": "The type of tooltip.\n- **description** sets aria-describedby on the trigger component which refers to the tooltip id.\n- **label** sets aria-labelledby on the trigger component which refers to the tooltip id.\n- **none** no aria props set on trigger component referring to the tooltip id.",
42014
- "default": "'description'",
42015
- "fieldName": "tooltipType"
42943
+ "description": "Set this attribute with the id of the element in the DOM, to which announcement\nelements will be appended.\nIf an id is provided, the announcement elements will be appended to this element.\nIf id is not provided, a visually hidden div element will be created in the DOM.\n\nPlease refer to the `mdc-screenreaderannouncer` component for more details.",
42944
+ "fieldName": "screenreaderAnnouncerIdentity"
42945
+ },
42946
+ {
42947
+ "name": "placement",
42948
+ "type": {
42949
+ "text": "PopoverPlacement"
42950
+ },
42951
+ "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
42952
+ "default": "bottom",
42953
+ "fieldName": "placement",
42954
+ "inheritedFrom": {
42955
+ "name": "Popover",
42956
+ "module": "src/components/popover/popover.component.ts"
42957
+ }
42016
42958
  },
42017
42959
  {
42018
42960
  "name": "should-focus-trap-wrap",
@@ -42047,33 +42989,20 @@
42047
42989
  },
42048
42990
  "default": "''",
42049
42991
  "description": "The ID of the element that triggers the popover.\nThis attribute is required for the popover to work.",
42050
- "fieldName": "triggerID",
42051
- "inheritedFrom": {
42052
- "name": "Popover",
42053
- "module": "src/components/popover/popover.component.ts"
42054
- }
42055
- },
42056
- {
42057
- "name": "trigger",
42058
- "type": {
42059
- "text": "PopoverTrigger"
42060
- },
42061
- "description": "Determines the events that cause the Popover to show.\nMultiple event names should be separated by spaces.\nFor example to allow both click and hover, use 'click mouseenter' as the trigger.\n- **click**\n- **mouseenter**\n- **focusin**\n- **manual**",
42062
- "default": "click",
42063
- "fieldName": "trigger",
42992
+ "fieldName": "triggerID",
42064
42993
  "inheritedFrom": {
42065
42994
  "name": "Popover",
42066
42995
  "module": "src/components/popover/popover.component.ts"
42067
42996
  }
42068
42997
  },
42069
42998
  {
42070
- "name": "placement",
42999
+ "name": "trigger",
42071
43000
  "type": {
42072
- "text": "PopoverPlacement"
43001
+ "text": "PopoverTrigger"
42073
43002
  },
42074
- "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
42075
- "default": "bottom",
42076
- "fieldName": "placement",
43003
+ "description": "Determines the events that cause the Popover to show.\nMultiple event names should be separated by spaces.\nFor example to allow both click and hover, use 'click mouseenter' as the trigger.\n- **click**\n- **mouseenter**\n- **focusin**\n- **manual**",
43004
+ "default": "click",
43005
+ "fieldName": "trigger",
42077
43006
  "inheritedFrom": {
42078
43007
  "name": "Popover",
42079
43008
  "module": "src/components/popover/popover.component.ts"
@@ -42499,501 +43428,8 @@
42499
43428
  "name": "Popover",
42500
43429
  "module": "/src/components/popover/popover.component"
42501
43430
  },
42502
- "tagName": "mdc-tooltip",
42503
- "jsDoc": "/**\n * A tooltip is triggered by mouse hover or by keyboard focus\n * and will disappear upon mouse exit or focus change.\n *\n * Note: Tooltips cannot contain content that can be focused or interacted with.\n *\n * @tagname mdc-tooltip\n *\n * @event shown - (React: onShown) This event is dispatched when the tooltip is shown\n * @event hidden - (React: onHidden) This event is dispatched when the tooltip is hidden\n * @event created - (React: onCreated) This event is dispatched when the tooltip is created (added to the DOM)\n * @event destroyed - (React: onDestroyed) This event is dispatched when the tooltip is destroyed (removed from the DOM)\n *\n * @cssproperty --mdc-tooltip-max-width - The maximum width of the tooltip.\n * @cssproperty --mdc-tooltip-padding - The padding of the tooltip.\n * @cssproperty --mdc-tooltip-text-color - The text color of the tooltip.\n * @cssproperty --mdc-tooltip-text-color-contrast - The text color of the tooltip when the color is contrast.\n *\n */",
42504
- "customElement": true,
42505
- "slots": [
42506
- {
42507
- "description": "Default slot for the popover content",
42508
- "name": "",
42509
- "inheritedFrom": {
42510
- "name": "Popover",
42511
- "module": "src/components/popover/popover.component.ts"
42512
- }
42513
- }
42514
- ]
42515
- }
42516
- ],
42517
- "exports": [
42518
- {
42519
- "kind": "js",
42520
- "name": "default",
42521
- "declaration": {
42522
- "name": "Tooltip",
42523
- "module": "components/tooltip/tooltip.component.js"
42524
- }
42525
- }
42526
- ]
42527
- },
42528
- {
42529
- "kind": "javascript-module",
42530
- "path": "components/typewriter/typewriter.component.js",
42531
- "declarations": [
42532
- {
42533
- "kind": "class",
42534
- "description": "Typewriter component that creates a typewriter effect on text content.\nIt uses the Text component internally, adding a progressive typing effect.\n\nThe `type` attribute allows changing the text style (passed to the internal Text component).\nThe `tagname` attribute allows changing the tag name of the text element (passed to the internal Text component).\nThe default tag name is `p`.\n\nThe `speed` attribute controls typing speed in milliseconds per character:\n- 'very-slow' = 240ms per character\n- 'slow' = 120ms per character\n- 'normal' = 60ms per character (default)\n- 'fast' = 20ms per character\n- 'very-fast' = 1ms per character\n- Or any numeric string representing milliseconds\n\nAdvanced features:\n- Dynamic speed adjustment during typing\n- Chunked text addition via addTextChunk() method\n- Instant text addition via addInstantTextChunk() method or instant parameter\n- Mixed instant and animated chunks in queue\n- Continues typing in background tabs\n- Performance optimized for large text\n- maxQueueSize to limit memory usage from excessive queuing\n- event handling for typing completion and content changes\n\nThe component includes accessibility features:\n- Screen readers announce the complete text, not character by character\n- Uses aria-live=\"polite\" for dynamic content updates\n- Sets aria-busy during typing animation",
42535
- "name": "Typewriter",
42536
- "cssParts": [
42537
- {
42538
- "description": "Container for the text element",
42539
- "name": "container"
42540
- },
42541
- {
42542
- "description": "The text element (forwarded to mdc-text)",
42543
- "name": "text"
42544
- }
42545
- ],
42546
- "slots": [
42547
- {
42548
- "description": "Default slot for text content",
42549
- "name": ""
42550
- }
42551
- ],
42552
- "members": [
42553
- {
42554
- "kind": "field",
42555
- "name": "type",
42556
- "type": {
42557
- "text": "TextType"
42558
- },
42559
- "privacy": "public",
42560
- "description": "Specifies the text style to be applied to the internal text component.\nUses the same types as the Text component.",
42561
- "default": "body-large-regular",
42562
- "attribute": "type",
42563
- "reflects": true
42564
- },
42565
- {
42566
- "kind": "field",
42567
- "name": "tagname",
42568
- "type": {
42569
- "text": "TagName | undefined"
42570
- },
42571
- "privacy": "public",
42572
- "description": "Specifies the HTML tag name for the text element. The default tag name is `p`.\nThis attribute is optional. When set, it changes the tag name of the internal text element.\n\nAcceptable values include all valid tag names from the Text component.",
42573
- "attribute": "tagname",
42574
- "reflects": true
42575
- },
42576
- {
42577
- "kind": "field",
42578
- "name": "speed",
42579
- "type": {
42580
- "text": "TypewriterSpeed"
42581
- },
42582
- "privacy": "public",
42583
- "description": "Speed of the typewriter effect in milliseconds per character.\nCan be a string preset or a numeric string in milliseconds.\n- 'very-slow' = 240ms per character\n- 'slow' = 120ms per character\n- 'normal' = 60ms per character (default)\n- 'fast' = 20ms per character\n- 'very-fast' = 1ms per character\n- Or any numeric string representing milliseconds (e.g., '100')",
42584
- "default": "'normal' (60ms per character)",
42585
- "attribute": "speed",
42586
- "reflects": true
42587
- },
42588
- {
42589
- "kind": "field",
42590
- "name": "maxQueueSize",
42591
- "type": {
42592
- "text": "number"
42593
- },
42594
- "privacy": "public",
42595
- "description": "Maximum number of text chunks that can be queued before oldest chunks are dropped.\nSet to prevent memory accumulation from excessive queuing.",
42596
- "default": "Number.MAX_SAFE_INTEGER (effectively unlimited)",
42597
- "attribute": "max-queue-size",
42598
- "reflects": true
42599
- },
42600
- {
42601
- "kind": "method",
42602
- "name": "createTimeout",
42603
- "privacy": "private",
42604
- "return": {
42605
- "type": {
42606
- "text": "number"
42607
- }
42608
- },
42609
- "parameters": [
42610
- {
42611
- "name": "callback",
42612
- "type": {
42613
- "text": "() => void"
42614
- }
42615
- },
42616
- {
42617
- "name": "delay",
42618
- "type": {
42619
- "text": "number"
42620
- }
42621
- }
42622
- ],
42623
- "description": "Helper to create tracked setTimeout that will be cleaned up on disconnect"
42624
- },
42625
- {
42626
- "kind": "method",
42627
- "name": "clearAllTimeouts",
42628
- "privacy": "private",
42629
- "return": {
42630
- "type": {
42631
- "text": "void"
42632
- }
42633
- },
42634
- "description": "Clear all pending timeouts"
42635
- },
42636
- {
42637
- "kind": "method",
42638
- "name": "clearQueue",
42639
- "privacy": "public",
42640
- "return": {
42641
- "type": {
42642
- "text": "void"
42643
- }
42644
- },
42645
- "description": "Clears the text chunk queue and stops processing\nUseful for resetting the component state"
42646
- },
42647
- {
42648
- "kind": "method",
42649
- "name": "addTextChunk",
42650
- "privacy": "public",
42651
- "return": {
42652
- "type": {
42653
- "text": "void"
42654
- }
42655
- },
42656
- "parameters": [
42657
- {
42658
- "name": "text",
42659
- "type": {
42660
- "text": "string"
42661
- },
42662
- "description": "The text to add"
42663
- },
42664
- {
42665
- "name": "speed",
42666
- "optional": true,
42667
- "type": {
42668
- "text": "TypewriterSpeed"
42669
- },
42670
- "description": "Optional speed override for this chunk"
42671
- },
42672
- {
42673
- "name": "instant",
42674
- "optional": true,
42675
- "type": {
42676
- "text": "boolean"
42677
- },
42678
- "description": "If true, text appears instantly without animation"
42679
- }
42680
- ],
42681
- "description": "Adds a chunk of text to be typed out, optionally with a different speed"
42682
- },
42683
- {
42684
- "kind": "method",
42685
- "name": "addInstantTextChunk",
42686
- "privacy": "public",
42687
- "return": {
42688
- "type": {
42689
- "text": "void"
42690
- }
42691
- },
42692
- "parameters": [
42693
- {
42694
- "name": "text",
42695
- "type": {
42696
- "text": "string"
42697
- },
42698
- "description": "The text to add instantly"
42699
- }
42700
- ],
42701
- "description": "Adds a chunk of text instantly without typing animation"
42702
- },
42703
- {
42704
- "kind": "method",
42705
- "name": "processChunkQueue",
42706
- "privacy": "private",
42707
- "return": {
42708
- "type": {
42709
- "text": "void"
42710
- }
42711
- },
42712
- "description": "Processes all chunks in the queue"
42713
- },
42714
- {
42715
- "kind": "method",
42716
- "name": "processNextChunk",
42717
- "privacy": "private",
42718
- "return": {
42719
- "type": {
42720
- "text": "void"
42721
- }
42722
- },
42723
- "description": "Processes the next chunk in the queue"
42724
- },
42725
- {
42726
- "kind": "method",
42727
- "name": "getTypingDelayMs",
42728
- "privacy": "private",
42729
- "return": {
42730
- "type": {
42731
- "text": "number"
42732
- }
42733
- },
42734
- "description": "Gets the typing delay in milliseconds per character"
42735
- },
42736
- {
42737
- "kind": "method",
42738
- "name": "captureAndProcessContent",
42739
- "privacy": "private",
42740
- "return": {
42741
- "type": {
42742
- "text": "void"
42743
- }
42744
- },
42745
- "description": "Captures slot content and starts typewriter animation"
42746
- },
42747
- {
42748
- "kind": "method",
42749
- "name": "startTypingAnimation",
42750
- "privacy": "private",
42751
- "return": {
42752
- "type": {
42753
- "text": "void"
42754
- }
42755
- },
42756
- "parameters": [
42757
- {
42758
- "name": "onComplete",
42759
- "optional": true,
42760
- "type": {
42761
- "text": "() => void"
42762
- }
42763
- }
42764
- ],
42765
- "description": "Starts the typewriter animation"
42766
- },
42767
- {
42768
- "kind": "method",
42769
- "name": "clearTypingAnimation",
42770
- "privacy": "private",
42771
- "return": {
42772
- "type": {
42773
- "text": "void"
42774
- }
42775
- },
42776
- "description": "Clears the typing animation timeout"
42777
- },
42778
- {
42779
- "kind": "method",
42780
- "name": "handleSlotChange",
42781
- "privacy": "private",
42782
- "return": {
42783
- "type": {
42784
- "text": "void"
42785
- }
42786
- },
42787
- "description": "Handler for slotchange event"
42788
- }
42789
- ],
42790
- "events": [
42791
- {
42792
- "type": {
42793
- "text": "CustomEvent"
42794
- }
42795
- },
42796
- {
42797
- "description": "(React: onTypingComplete) Fired when the typewriter finishes typing all content. Detail: \\{ finalContent: string \\}",
42798
- "name": "typing-complete",
42799
- "reactName": "onTypingComplete"
42800
- },
42801
- {
42802
- "description": "(React: onChange) Fired when the content of the typewriter changes. Detail: \\{ content: string, isTyping: boolean \\}",
42803
- "name": "change",
42804
- "reactName": "onChange"
42805
- }
42806
- ],
42807
- "attributes": [
42808
- {
42809
- "name": "type",
42810
- "type": {
42811
- "text": "TextType"
42812
- },
42813
- "description": "Specifies the text style to be applied to the internal text component.\nUses the same types as the Text component.",
42814
- "default": "body-large-regular",
42815
- "fieldName": "type"
42816
- },
42817
- {
42818
- "name": "tagname",
42819
- "type": {
42820
- "text": "TagName | undefined"
42821
- },
42822
- "description": "Specifies the HTML tag name for the text element. The default tag name is `p`.\nThis attribute is optional. When set, it changes the tag name of the internal text element.\n\nAcceptable values include all valid tag names from the Text component.",
42823
- "fieldName": "tagname"
42824
- },
42825
- {
42826
- "name": "speed",
42827
- "type": {
42828
- "text": "TypewriterSpeed"
42829
- },
42830
- "description": "Speed of the typewriter effect in milliseconds per character.\nCan be a string preset or a numeric string in milliseconds.\n- 'very-slow' = 240ms per character\n- 'slow' = 120ms per character\n- 'normal' = 60ms per character (default)\n- 'fast' = 20ms per character\n- 'very-fast' = 1ms per character\n- Or any numeric string representing milliseconds (e.g., '100')",
42831
- "default": "'normal' (60ms per character)",
42832
- "fieldName": "speed"
42833
- },
42834
- {
42835
- "name": "max-queue-size",
42836
- "type": {
42837
- "text": "number"
42838
- },
42839
- "description": "Maximum number of text chunks that can be queued before oldest chunks are dropped.\nSet to prevent memory accumulation from excessive queuing.",
42840
- "default": "Number.MAX_SAFE_INTEGER (effectively unlimited)",
42841
- "fieldName": "maxQueueSize"
42842
- }
42843
- ],
42844
- "superclass": {
42845
- "name": "Component",
42846
- "module": "/src/models"
42847
- },
42848
- "tagName": "mdc-typewriter",
42849
- "jsDoc": "/**\n * Typewriter component that creates a typewriter effect on text content.\n * It uses the Text component internally, adding a progressive typing effect.\n *\n * The `type` attribute allows changing the text style (passed to the internal Text component).\n * The `tagname` attribute allows changing the tag name of the text element (passed to the internal Text component).\n * The default tag name is `p`.\n *\n * The `speed` attribute controls typing speed in milliseconds per character:\n * - 'very-slow' = 240ms per character\n * - 'slow' = 120ms per character\n * - 'normal' = 60ms per character (default)\n * - 'fast' = 20ms per character\n * - 'very-fast' = 1ms per character\n * - Or any numeric string representing milliseconds\n *\n * Advanced features:\n * - Dynamic speed adjustment during typing\n * - Chunked text addition via addTextChunk() method\n * - Instant text addition via addInstantTextChunk() method or instant parameter\n * - Mixed instant and animated chunks in queue\n * - Continues typing in background tabs\n * - Performance optimized for large text\n * - maxQueueSize to limit memory usage from excessive queuing\n * - event handling for typing completion and content changes\n *\n * The component includes accessibility features:\n * - Screen readers announce the complete text, not character by character\n * - Uses aria-live=\"polite\" for dynamic content updates\n * - Sets aria-busy during typing animation\n *\n * @dependency mdc-text\n *\n * @tagname mdc-typewriter\n * @slot - Default slot for text content\n *\n * @csspart container - Container for the text element\n * @csspart text - The text element (forwarded to mdc-text)\n *\n * @event typing-complete - (React: onTypingComplete) Fired when the typewriter finishes typing all content.\n * Detail: \\{ finalContent: string \\}\n * @event change - (React: onChange) Fired when the content of the typewriter changes.\n * Detail: \\{ content: string, isTyping: boolean \\}\n */",
42850
- "customElement": true
42851
- }
42852
- ],
42853
- "exports": [
42854
- {
42855
- "kind": "js",
42856
- "name": "default",
42857
- "declaration": {
42858
- "name": "Typewriter",
42859
- "module": "components/typewriter/typewriter.component.js"
42860
- }
42861
- }
42862
- ]
42863
- },
42864
- {
42865
- "kind": "javascript-module",
42866
- "path": "components/virtualizedlist/virtualizedlist.component.js",
42867
- "declarations": [
42868
- {
42869
- "kind": "class",
42870
- "description": "`mdc-virtualizedlist` component for creating custom virtualized lists.\nIMPORTANT: This component does not create it's own list/list items.\nUse the setlistdata callback prop to update client state in order to\nPass list/listitems as a child of this component, which this will virtuailze\nThis implementation handles dynamic lists as well as fixed sized lists.\nPlease refer to [Tanstack Virtual Docs](https://tanstack.com/virtual/latest) for more in depth documentation.",
42871
- "name": "VirtualizedList",
42872
- "slots": [
42873
- {
42874
- "description": "Client side List with nested list items.",
42875
- "name": ""
42876
- }
42877
- ],
42878
- "members": [
42879
- {
42880
- "kind": "field",
42881
- "name": "virtualizerProps",
42882
- "type": {
42883
- "text": "VirtualizerProps"
42884
- },
42885
- "description": "Object that sets and updates the virtualizer with any relevant props.\nThere are two required object props in order to get virtualization to work properly.\ncount - The length of your list that you are virtualizing.\nAs your list grows/shrinks, this component must be updated with the appropriate value\n(Same with any other updated prop).\nestimateSize - A function that returns the estimated size of your items.\nIf your list is fixed, this will just be the size of your items.\nIf your list is dynamic, try to return approximate the size of each item.\n\nA full list of possible props can be in\n[Tanstack Virtualizer API Docs](https://tanstack.com/virtual/latest/docs/api/virtualizer)",
42886
- "attribute": "virtualizerprops"
42887
- },
42888
- {
42889
- "kind": "field",
42890
- "name": "setlistdata",
42891
- "type": {
42892
- "text": "(({ virtualItems, measureElement, listStyle }: SetListDataProps) => void) | null"
42893
- },
42894
- "description": "Callback that gets envoked when updates to the virtualizer interally occur.\nThis must be implemented in such a way that this function will trigger update to parent.\n\nvirtualItems - Array that will be what the client displays on screen. Use this to render\na List of your choosing with these items nested inside as your ListItems.\nmeasureElement - Ref to pass to each ListItem rendered client side.\nEach ListItem should also be be passed key and a data-index (which can be found on the virtualItem).\nlistStyle - This should be passed as the style attribute to your List.",
42895
- "default": "null",
42896
- "attribute": "setlistdata"
42897
- },
42898
- {
42899
- "kind": "field",
42900
- "name": "scrollElementRef",
42901
- "type": {
42902
- "text": "Ref<HTMLDivElement>"
42903
- },
42904
- "privacy": "public"
42905
- },
42906
- {
42907
- "kind": "field",
42908
- "name": "virtualizer",
42909
- "type": {
42910
- "text": "Virtualizer<Element, Element> | null"
42911
- },
42912
- "privacy": "public",
42913
- "default": "null"
42914
- },
42915
- {
42916
- "kind": "field",
42917
- "name": "virtualItems",
42918
- "type": {
42919
- "text": "Array<VirtualItem>"
42920
- },
42921
- "privacy": "public",
42922
- "default": "[]"
42923
- },
42924
- {
42925
- "kind": "method",
42926
- "name": "handleScroll",
42927
- "privacy": "private",
42928
- "return": {
42929
- "type": {
42930
- "text": "void"
42931
- }
42932
- },
42933
- "parameters": [
42934
- {
42935
- "name": "event",
42936
- "type": {
42937
- "text": "Event"
42938
- }
42939
- }
42940
- ],
42941
- "description": "Refires the scroll event from the internal scroll container to the host element"
42942
- },
42943
- {
42944
- "kind": "field",
42945
- "name": "virtualizerController",
42946
- "type": {
42947
- "text": "null"
42948
- },
42949
- "default": "null"
42950
- },
42951
- {
42952
- "kind": "field",
42953
- "name": "onscroll",
42954
- "type": {
42955
- "text": "null"
42956
- },
42957
- "default": "null"
42958
- }
42959
- ],
42960
- "events": [
42961
- {
42962
- "type": {
42963
- "text": "EventConstructor"
42964
- }
42965
- },
42966
- {
42967
- "description": "(React: onScroll) Event that gets called when user scrolls inside of list.",
42968
- "name": "scroll",
42969
- "reactName": "onScroll"
42970
- }
42971
- ],
42972
- "attributes": [
42973
- {
42974
- "name": "virtualizerprops",
42975
- "type": {
42976
- "text": "VirtualizerProps"
42977
- },
42978
- "description": "Object that sets and updates the virtualizer with any relevant props.\nThere are two required object props in order to get virtualization to work properly.\ncount - The length of your list that you are virtualizing.\nAs your list grows/shrinks, this component must be updated with the appropriate value\n(Same with any other updated prop).\nestimateSize - A function that returns the estimated size of your items.\nIf your list is fixed, this will just be the size of your items.\nIf your list is dynamic, try to return approximate the size of each item.\n\nA full list of possible props can be in\n[Tanstack Virtualizer API Docs](https://tanstack.com/virtual/latest/docs/api/virtualizer)",
42979
- "fieldName": "virtualizerProps"
42980
- },
42981
- {
42982
- "name": "setlistdata",
42983
- "type": {
42984
- "text": "(({ virtualItems, measureElement, listStyle }: SetListDataProps) => void) | null"
42985
- },
42986
- "description": "Callback that gets envoked when updates to the virtualizer interally occur.\nThis must be implemented in such a way that this function will trigger update to parent.\n\nvirtualItems - Array that will be what the client displays on screen. Use this to render\na List of your choosing with these items nested inside as your ListItems.\nmeasureElement - Ref to pass to each ListItem rendered client side.\nEach ListItem should also be be passed key and a data-index (which can be found on the virtualItem).\nlistStyle - This should be passed as the style attribute to your List.",
42987
- "default": "null",
42988
- "fieldName": "setlistdata"
42989
- }
42990
- ],
42991
- "superclass": {
42992
- "name": "Component",
42993
- "module": "/src/models"
42994
- },
42995
- "tagName": "mdc-virtualizedlist",
42996
- "jsDoc": "/**\n * `mdc-virtualizedlist` component for creating custom virtualized lists.\n * IMPORTANT: This component does not create it's own list/list items.\n * Use the setlistdata callback prop to update client state in order to\n * Pass list/listitems as a child of this component, which this will virtuailze\n * This implementation handles dynamic lists as well as fixed sized lists.\n * Please refer to [Tanstack Virtual Docs](https://tanstack.com/virtual/latest) for more in depth documentation.\n *\n * @tagname mdc-virtualizedlist\n *\n * @event scroll - (React: onScroll) Event that gets called when user scrolls inside of list.\n *\n * @slot - Client side List with nested list items.\n */",
43431
+ "tagName": "mdc-toggletip",
43432
+ "jsDoc": "/**\n * A toggletip is triggered by clicking a trigger element.\n *\n * It can contain interactive content and can be closed by\n * clicking outside the toggletip or pressing the escape key.\n *\n * It can have optional close button to close the toggletip.\n *\n * Toggletip component uses `mdc-screenreaderannouncer` internally to\n * announce the toggletip text content with screen readers when the toggletip is shown.\n *\n * `screenreader-announcer-identity` attribute can be used to provide ID of an element\n * in DOM to which announcement elements are added. If not set, a visually hidden\n * div element is created in DOM to which announcement elements are added.\n *\n * Please refer to the `mdc-screenreaderannouncer` component for more details.\n *\n * @dependency mdc-screenreaderannouncer\n * @dependency mdc-button\n *\n * @tagname mdc-toggletip\n *\n * @event shown - (React: onShown) This event is dispatched when the toggletip is shown\n * @event hidden - (React: onHidden) This event is dispatched when the toggletip is hidden\n * @event created - (React: onCreated) This event is dispatched when the toggletip is created (added to the DOM)\n * @event destroyed - (React: onDestroyed) This event is dispatched when the toggletip\n * is destroyed (removed from the DOM)\n *\n * @cssproperty --mdc-toggletip-max-width - The maximum width of the toggletip.\n * @cssproperty --mdc-toggletip-text-color - The text color of the toggletip.\n * @cssproperty --mdc-toggletip-text-color-contrast - The text color of the toggletip\n * when the color is contrast.\n *\n * @slot - Default slot for the toggletip content\n */",
42997
43433
  "customElement": true
42998
43434
  }
42999
43435
  ],
@@ -43002,8 +43438,8 @@
43002
43438
  "kind": "js",
43003
43439
  "name": "default",
43004
43440
  "declaration": {
43005
- "name": "VirtualizedList",
43006
- "module": "components/virtualizedlist/virtualizedlist.component.js"
43441
+ "name": "ToggleTip",
43442
+ "module": "components/toggletip/toggletip.component.js"
43007
43443
  }
43008
43444
  }
43009
43445
  ]