@momentum-design/components 0.53.4 → 0.53.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -83,10 +83,10 @@
83
83
  "kind": "field",
84
84
  "name": "active",
85
85
  "type": {
86
- "text": "boolean"
86
+ "text": "boolean | undefined"
87
87
  },
88
- "default": "false",
89
- "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.",
88
+ "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.\n\nThis attribute is used to set the provided `ariaStateKey` to true or false.",
89
+ "default": "undefined",
90
90
  "attribute": "active",
91
91
  "reflects": true,
92
92
  "inheritedFrom": {
@@ -98,10 +98,10 @@
98
98
  "kind": "field",
99
99
  "name": "softDisabled",
100
100
  "type": {
101
- "text": "boolean"
101
+ "text": "boolean | undefined"
102
102
  },
103
- "default": "false",
104
103
  "description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
104
+ "default": "undefined",
105
105
  "attribute": "soft-disabled",
106
106
  "inheritedFrom": {
107
107
  "name": "Buttonsimple",
@@ -135,6 +135,18 @@
135
135
  "module": "components/buttonsimple/buttonsimple.component.js"
136
136
  }
137
137
  },
138
+ {
139
+ "kind": "field",
140
+ "name": "ariaStateKey",
141
+ "description": "This property defines the ARIA state key, which will be toggled when the\nButton is set to `active`.\nThe default value is 'aria-pressed', which is commonly used for toggle buttons.\n\nConsumers can override this property to use a different ARIA state key if needed.\nIn case multiple aria attributes should be toggled, they can be passed in as\na comma separated string.\nFor example: `aria-pressed,aria-expanded`",
142
+ "default": "'aria-pressed'",
143
+ "attribute": "ariaStateKey",
144
+ "reflects": true,
145
+ "inheritedFrom": {
146
+ "name": "Buttonsimple",
147
+ "module": "components/buttonsimple/buttonsimple.component.js"
148
+ }
149
+ },
138
150
  {
139
151
  "kind": "field",
140
152
  "name": "type",
@@ -173,13 +185,14 @@
173
185
  },
174
186
  {
175
187
  "name": "active",
188
+ "optional": true,
176
189
  "type": {
177
190
  "text": "boolean"
178
191
  },
179
192
  "description": "The active state of the element"
180
193
  }
181
194
  ],
182
- "description": "Sets the aria-pressed attribute based on the active state of the button.",
195
+ "description": "Sets the ariaStateKey attributes based on the active state of the button.",
183
196
  "inheritedFrom": {
184
197
  "name": "Buttonsimple",
185
198
  "module": "components/buttonsimple/buttonsimple.component.js"
@@ -199,6 +212,7 @@
199
212
  },
200
213
  {
201
214
  "name": "softDisabled",
215
+ "optional": true,
202
216
  "type": {
203
217
  "text": "boolean"
204
218
  },
@@ -343,10 +357,10 @@
343
357
  {
344
358
  "name": "active",
345
359
  "type": {
346
- "text": "boolean"
360
+ "text": "boolean | undefined"
347
361
  },
348
- "default": "false",
349
- "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.",
362
+ "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.\n\nThis attribute is used to set the provided `ariaStateKey` to true or false.",
363
+ "default": "undefined",
350
364
  "fieldName": "active",
351
365
  "inheritedFrom": {
352
366
  "name": "Buttonsimple",
@@ -356,10 +370,10 @@
356
370
  {
357
371
  "name": "soft-disabled",
358
372
  "type": {
359
- "text": "boolean"
373
+ "text": "boolean | undefined"
360
374
  },
361
- "default": "false",
362
375
  "description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
376
+ "default": "undefined",
363
377
  "fieldName": "softDisabled",
364
378
  "inheritedFrom": {
365
379
  "name": "Buttonsimple",
@@ -389,6 +403,16 @@
389
403
  "module": "src/components/buttonsimple/buttonsimple.component.ts"
390
404
  }
391
405
  },
406
+ {
407
+ "name": "ariaStateKey",
408
+ "description": "This property defines the ARIA state key, which will be toggled when the\nButton is set to `active`.\nThe default value is 'aria-pressed', which is commonly used for toggle buttons.\n\nConsumers can override this property to use a different ARIA state key if needed.\nIn case multiple aria attributes should be toggled, they can be passed in as\na comma separated string.\nFor example: `aria-pressed,aria-expanded`",
409
+ "default": "'aria-pressed'",
410
+ "fieldName": "ariaStateKey",
411
+ "inheritedFrom": {
412
+ "name": "Buttonsimple",
413
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
414
+ }
415
+ },
392
416
  {
393
417
  "name": "type",
394
418
  "type": {
@@ -940,10 +964,10 @@
940
964
  "kind": "field",
941
965
  "name": "active",
942
966
  "type": {
943
- "text": "boolean"
967
+ "text": "boolean | undefined"
944
968
  },
945
- "default": "false",
946
- "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.",
969
+ "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.\n\nThis attribute is used to set the provided `ariaStateKey` to true or false.",
970
+ "default": "undefined",
947
971
  "attribute": "active",
948
972
  "reflects": true,
949
973
  "inheritedFrom": {
@@ -955,10 +979,10 @@
955
979
  "kind": "field",
956
980
  "name": "softDisabled",
957
981
  "type": {
958
- "text": "boolean"
982
+ "text": "boolean | undefined"
959
983
  },
960
- "default": "false",
961
984
  "description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
985
+ "default": "undefined",
962
986
  "attribute": "soft-disabled",
963
987
  "inheritedFrom": {
964
988
  "name": "Buttonsimple",
@@ -977,6 +1001,18 @@
977
1001
  "module": "components/buttonsimple/buttonsimple.component.js"
978
1002
  }
979
1003
  },
1004
+ {
1005
+ "kind": "field",
1006
+ "name": "ariaStateKey",
1007
+ "description": "This property defines the ARIA state key, which will be toggled when the\nButton is set to `active`.\nThe default value is 'aria-pressed', which is commonly used for toggle buttons.\n\nConsumers can override this property to use a different ARIA state key if needed.\nIn case multiple aria attributes should be toggled, they can be passed in as\na comma separated string.\nFor example: `aria-pressed,aria-expanded`",
1008
+ "default": "'aria-pressed'",
1009
+ "attribute": "ariaStateKey",
1010
+ "reflects": true,
1011
+ "inheritedFrom": {
1012
+ "name": "Buttonsimple",
1013
+ "module": "components/buttonsimple/buttonsimple.component.js"
1014
+ }
1015
+ },
980
1016
  {
981
1017
  "kind": "field",
982
1018
  "name": "type",
@@ -1015,13 +1051,14 @@
1015
1051
  },
1016
1052
  {
1017
1053
  "name": "active",
1054
+ "optional": true,
1018
1055
  "type": {
1019
1056
  "text": "boolean"
1020
1057
  },
1021
1058
  "description": "The active state of the element"
1022
1059
  }
1023
1060
  ],
1024
- "description": "Sets the aria-pressed attribute based on the active state of the button.",
1061
+ "description": "Sets the ariaStateKey attributes based on the active state of the button.",
1025
1062
  "inheritedFrom": {
1026
1063
  "name": "Buttonsimple",
1027
1064
  "module": "components/buttonsimple/buttonsimple.component.js"
@@ -1041,6 +1078,7 @@
1041
1078
  },
1042
1079
  {
1043
1080
  "name": "softDisabled",
1081
+ "optional": true,
1044
1082
  "type": {
1045
1083
  "text": "boolean"
1046
1084
  },
@@ -1300,10 +1338,10 @@
1300
1338
  {
1301
1339
  "name": "active",
1302
1340
  "type": {
1303
- "text": "boolean"
1341
+ "text": "boolean | undefined"
1304
1342
  },
1305
- "default": "false",
1306
- "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.",
1343
+ "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.\n\nThis attribute is used to set the provided `ariaStateKey` to true or false.",
1344
+ "default": "undefined",
1307
1345
  "fieldName": "active",
1308
1346
  "inheritedFrom": {
1309
1347
  "name": "Buttonsimple",
@@ -1313,10 +1351,10 @@
1313
1351
  {
1314
1352
  "name": "soft-disabled",
1315
1353
  "type": {
1316
- "text": "boolean"
1354
+ "text": "boolean | undefined"
1317
1355
  },
1318
- "default": "false",
1319
1356
  "description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
1357
+ "default": "undefined",
1320
1358
  "fieldName": "softDisabled",
1321
1359
  "inheritedFrom": {
1322
1360
  "name": "Buttonsimple",
@@ -1333,6 +1371,16 @@
1333
1371
  "module": "src/components/buttonsimple/buttonsimple.component.ts"
1334
1372
  }
1335
1373
  },
1374
+ {
1375
+ "name": "ariaStateKey",
1376
+ "description": "This property defines the ARIA state key, which will be toggled when the\nButton is set to `active`.\nThe default value is 'aria-pressed', which is commonly used for toggle buttons.\n\nConsumers can override this property to use a different ARIA state key if needed.\nIn case multiple aria attributes should be toggled, they can be passed in as\na comma separated string.\nFor example: `aria-pressed,aria-expanded`",
1377
+ "default": "'aria-pressed'",
1378
+ "fieldName": "ariaStateKey",
1379
+ "inheritedFrom": {
1380
+ "name": "Buttonsimple",
1381
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
1382
+ }
1383
+ },
1336
1384
  {
1337
1385
  "name": "type",
1338
1386
  "type": {
@@ -1377,6 +1425,110 @@
1377
1425
  }
1378
1426
  ]
1379
1427
  },
1428
+ {
1429
+ "kind": "javascript-module",
1430
+ "path": "components/brandvisual/brandvisual.component.js",
1431
+ "declarations": [
1432
+ {
1433
+ "kind": "class",
1434
+ "description": "The `mdc-brandvisual` component is responsible for rendering logos dynamically & ensures they are\ndisplayed correctly within applications.\n\nFeatures:\n- Dynamically loads brandvisuals based on the `name` attribute.\n- Emits a `load` event when the brandvisual is successfully fetched.\n- Emits an `error` event when the brandvisual import fails.\n- Supports accessibility best practices.\n- Used for brand representation within the design system.",
1435
+ "name": "Brandvisual",
1436
+ "members": [
1437
+ {
1438
+ "kind": "field",
1439
+ "name": "brandVisualData",
1440
+ "type": {
1441
+ "text": "HTMLElement | undefined"
1442
+ },
1443
+ "privacy": "private"
1444
+ },
1445
+ {
1446
+ "kind": "field",
1447
+ "name": "name",
1448
+ "type": {
1449
+ "text": "BrandVisualNames | undefined"
1450
+ },
1451
+ "description": "Name of the brandVisual (= filename)",
1452
+ "attribute": "name",
1453
+ "reflects": true
1454
+ },
1455
+ {
1456
+ "kind": "method",
1457
+ "name": "getBrandVisualData",
1458
+ "privacy": "private"
1459
+ },
1460
+ {
1461
+ "kind": "method",
1462
+ "name": "handleBrandVisualLoadedSuccess",
1463
+ "privacy": "private",
1464
+ "parameters": [
1465
+ {
1466
+ "name": "brandVisualHtml",
1467
+ "type": {
1468
+ "text": "HTMLElement"
1469
+ },
1470
+ "description": "The brandvisual html element which has been fetched from the brandvisual provider."
1471
+ }
1472
+ ],
1473
+ "description": "Sets the brandVisualData state to the fetched brandvisual.\nDispatches a 'load' event on the component once the brandvisual has been successfully loaded."
1474
+ },
1475
+ {
1476
+ "kind": "method",
1477
+ "name": "handleBrandVisualLoadedFailure",
1478
+ "privacy": "private",
1479
+ "parameters": [
1480
+ {
1481
+ "name": "error",
1482
+ "type": {
1483
+ "text": "unknown"
1484
+ }
1485
+ }
1486
+ ],
1487
+ "description": "Dispatches an 'error' event on the component when the brandvisual import has failed.\nThis event bubbles and is cancelable.\nThe error detail is set to the error object."
1488
+ }
1489
+ ],
1490
+ "events": [
1491
+ {
1492
+ "description": "(React: onLoad) This event is dispatched when the brandvisual has been successfully loaded.",
1493
+ "name": "load",
1494
+ "reactName": "onLoad"
1495
+ },
1496
+ {
1497
+ "description": "(React: onError) This event is dispatched when the brandvisual fetching has failed.",
1498
+ "name": "error",
1499
+ "reactName": "onError"
1500
+ }
1501
+ ],
1502
+ "attributes": [
1503
+ {
1504
+ "name": "name",
1505
+ "type": {
1506
+ "text": "BrandVisualNames | undefined"
1507
+ },
1508
+ "description": "Name of the brandVisual (= filename)",
1509
+ "fieldName": "name"
1510
+ }
1511
+ ],
1512
+ "superclass": {
1513
+ "name": "Component",
1514
+ "module": "/src/models"
1515
+ },
1516
+ "tagName": "mdc-brandvisual",
1517
+ "jsDoc": "/**\n * The `mdc-brandvisual` component is responsible for rendering logos dynamically & ensures they are\n * displayed correctly within applications.\n *\n * Features:\n * - Dynamically loads brandvisuals based on the `name` attribute.\n * - Emits a `load` event when the brandvisual is successfully fetched.\n * - Emits an `error` event when the brandvisual import fails.\n * - Supports accessibility best practices.\n * - Used for brand representation within the design system.\n *\n * @tagname mdc-brandvisual\n *\n * @event load - (React: onLoad) This event is dispatched when the brandvisual has been successfully loaded.\n * @event error - (React: onError) This event is dispatched when the brandvisual fetching has failed.\n *\n */",
1518
+ "customElement": true
1519
+ }
1520
+ ],
1521
+ "exports": [
1522
+ {
1523
+ "kind": "js",
1524
+ "name": "default",
1525
+ "declaration": {
1526
+ "name": "Brandvisual",
1527
+ "module": "components/brandvisual/brandvisual.component.js"
1528
+ }
1529
+ }
1530
+ ]
1531
+ },
1380
1532
  {
1381
1533
  "kind": "javascript-module",
1382
1534
  "path": "components/badge/badge.component.js",
@@ -1700,94 +1852,61 @@
1700
1852
  },
1701
1853
  {
1702
1854
  "kind": "javascript-module",
1703
- "path": "components/brandvisual/brandvisual.component.js",
1855
+ "path": "components/bullet/bullet.component.js",
1704
1856
  "declarations": [
1705
1857
  {
1706
1858
  "kind": "class",
1707
- "description": "The `mdc-brandvisual` component is responsible for rendering logos dynamically & ensures they are\ndisplayed correctly within applications.\n\nFeatures:\n- Dynamically loads brandvisuals based on the `name` attribute.\n- Emits a `load` event when the brandvisual is successfully fetched.\n- Emits an `error` event when the brandvisual import fails.\n- Supports accessibility best practices.\n- Used for brand representation within the design system.",
1708
- "name": "Brandvisual",
1709
- "members": [
1710
- {
1711
- "kind": "field",
1712
- "name": "brandVisualData",
1713
- "type": {
1714
- "text": "HTMLElement | undefined"
1715
- },
1716
- "privacy": "private"
1717
- },
1859
+ "description": "Bullet component, which is a visual marker\nand be used to organize and present items in a list format.",
1860
+ "name": "Bullet",
1861
+ "cssProperties": [
1718
1862
  {
1719
- "kind": "field",
1720
- "name": "name",
1721
- "type": {
1722
- "text": "BrandVisualNames | undefined"
1723
- },
1724
- "description": "Name of the brandVisual (= filename)",
1725
- "attribute": "name",
1726
- "reflects": true
1863
+ "description": "background color of the bullet",
1864
+ "name": "--mdc-bullet-background-color"
1727
1865
  },
1728
1866
  {
1729
- "kind": "method",
1730
- "name": "getBrandVisualData",
1731
- "privacy": "private"
1867
+ "description": "small size value of the bullet",
1868
+ "name": "--mdc-bullet-size-small"
1732
1869
  },
1733
1870
  {
1734
- "kind": "method",
1735
- "name": "handleBrandVisualLoadedSuccess",
1736
- "privacy": "private",
1737
- "parameters": [
1738
- {
1739
- "name": "brandVisualHtml",
1740
- "type": {
1741
- "text": "HTMLElement"
1742
- },
1743
- "description": "The brandvisual html element which has been fetched from the brandvisual provider."
1744
- }
1745
- ],
1746
- "description": "Sets the brandVisualData state to the fetched brandvisual.\nDispatches a 'load' event on the component once the brandvisual has been successfully loaded."
1871
+ "description": "medium size value of the bullet",
1872
+ "name": "--mdc-bullet-size-medium"
1747
1873
  },
1748
1874
  {
1749
- "kind": "method",
1750
- "name": "handleBrandVisualLoadedFailure",
1751
- "privacy": "private",
1752
- "parameters": [
1753
- {
1754
- "name": "error",
1755
- "type": {
1756
- "text": "unknown"
1757
- }
1758
- }
1759
- ],
1760
- "description": "Dispatches an 'error' event on the component when the brandvisual import has failed.\nThis event bubbles and is cancelable.\nThe error detail is set to the error object."
1875
+ "description": "large size value of the bullet",
1876
+ "name": "--mdc-bullet-size-large"
1761
1877
  }
1762
1878
  ],
1763
- "events": [
1764
- {
1765
- "description": "(React: onLoad) This event is dispatched when the brandvisual has been successfully loaded.",
1766
- "name": "load",
1767
- "reactName": "onLoad"
1768
- },
1879
+ "members": [
1769
1880
  {
1770
- "description": "(React: onError) This event is dispatched when the brandvisual fetching has failed.",
1771
- "name": "error",
1772
- "reactName": "onError"
1881
+ "kind": "field",
1882
+ "name": "size",
1883
+ "type": {
1884
+ "text": "Size"
1885
+ },
1886
+ "privacy": "public",
1887
+ "description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
1888
+ "default": "small",
1889
+ "attribute": "size",
1890
+ "reflects": true
1773
1891
  }
1774
1892
  ],
1775
1893
  "attributes": [
1776
1894
  {
1777
- "name": "name",
1895
+ "name": "size",
1778
1896
  "type": {
1779
- "text": "BrandVisualNames | undefined"
1897
+ "text": "Size"
1780
1898
  },
1781
- "description": "Name of the brandVisual (= filename)",
1782
- "fieldName": "name"
1899
+ "description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
1900
+ "default": "small",
1901
+ "fieldName": "size"
1783
1902
  }
1784
1903
  ],
1785
1904
  "superclass": {
1786
1905
  "name": "Component",
1787
1906
  "module": "/src/models"
1788
1907
  },
1789
- "tagName": "mdc-brandvisual",
1790
- "jsDoc": "/**\n * The `mdc-brandvisual` component is responsible for rendering logos dynamically & ensures they are\n * displayed correctly within applications.\n *\n * Features:\n * - Dynamically loads brandvisuals based on the `name` attribute.\n * - Emits a `load` event when the brandvisual is successfully fetched.\n * - Emits an `error` event when the brandvisual import fails.\n * - Supports accessibility best practices.\n * - Used for brand representation within the design system.\n *\n * @tagname mdc-brandvisual\n *\n * @event load - (React: onLoad) This event is dispatched when the brandvisual has been successfully loaded.\n * @event error - (React: onError) This event is dispatched when the brandvisual fetching has failed.\n *\n */",
1908
+ "tagName": "mdc-bullet",
1909
+ "jsDoc": "/**\n * Bullet component, which is a visual marker\n * and be used to organize and present items in a list format.\n *\n * @tagname mdc-bullet\n *\n * @cssproperty --mdc-bullet-background-color - background color of the bullet\n * @cssproperty --mdc-bullet-size-small - small size value of the bullet\n * @cssproperty --mdc-bullet-size-medium - medium size value of the bullet\n * @cssproperty --mdc-bullet-size-large - large size value of the bullet\n*/",
1791
1910
  "customElement": true
1792
1911
  }
1793
1912
  ],
@@ -1796,8 +1915,8 @@
1796
1915
  "kind": "js",
1797
1916
  "name": "default",
1798
1917
  "declaration": {
1799
- "name": "Brandvisual",
1800
- "module": "components/brandvisual/brandvisual.component.js"
1918
+ "name": "Bullet",
1919
+ "module": "components/bullet/bullet.component.js"
1801
1920
  }
1802
1921
  }
1803
1922
  ]
@@ -1821,7 +1940,7 @@
1821
1940
  "kind": "field",
1822
1941
  "name": "prefixIcon",
1823
1942
  "type": {
1824
- "text": "string | undefined"
1943
+ "text": "IconNames | undefined"
1825
1944
  },
1826
1945
  "description": "The name of the icon to display as a prefix.\nThe icon is displayed on the left side of the button.",
1827
1946
  "attribute": "prefix-icon",
@@ -1831,7 +1950,7 @@
1831
1950
  "kind": "field",
1832
1951
  "name": "postfixIcon",
1833
1952
  "type": {
1834
- "text": "string | undefined"
1953
+ "text": "IconNames | undefined"
1835
1954
  },
1836
1955
  "description": "The name of the icon to display as a postfix.\nThe icon is displayed on the right side of the button.",
1837
1956
  "attribute": "postfix-icon",
@@ -1894,6 +2013,7 @@
1894
2013
  "parameters": [
1895
2014
  {
1896
2015
  "name": "active",
2016
+ "optional": true,
1897
2017
  "type": {
1898
2018
  "text": "boolean"
1899
2019
  },
@@ -1993,10 +2113,10 @@
1993
2113
  "kind": "field",
1994
2114
  "name": "active",
1995
2115
  "type": {
1996
- "text": "boolean"
2116
+ "text": "boolean | undefined"
1997
2117
  },
1998
- "default": "false",
1999
- "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.",
2118
+ "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.\n\nThis attribute is used to set the provided `ariaStateKey` to true or false.",
2119
+ "default": "undefined",
2000
2120
  "attribute": "active",
2001
2121
  "reflects": true,
2002
2122
  "inheritedFrom": {
@@ -2008,16 +2128,28 @@
2008
2128
  "kind": "field",
2009
2129
  "name": "softDisabled",
2010
2130
  "type": {
2011
- "text": "boolean"
2131
+ "text": "boolean | undefined"
2012
2132
  },
2013
- "default": "false",
2014
2133
  "description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
2134
+ "default": "undefined",
2015
2135
  "attribute": "soft-disabled",
2016
2136
  "inheritedFrom": {
2017
2137
  "name": "Buttonsimple",
2018
2138
  "module": "components/buttonsimple/buttonsimple.component.js"
2019
2139
  }
2020
2140
  },
2141
+ {
2142
+ "kind": "field",
2143
+ "name": "ariaStateKey",
2144
+ "description": "This property defines the ARIA state key, which will be toggled when the\nButton is set to `active`.\nThe default value is 'aria-pressed', which is commonly used for toggle buttons.\n\nConsumers can override this property to use a different ARIA state key if needed.\nIn case multiple aria attributes should be toggled, they can be passed in as\na comma separated string.\nFor example: `aria-pressed,aria-expanded`",
2145
+ "default": "'aria-pressed'",
2146
+ "attribute": "ariaStateKey",
2147
+ "reflects": true,
2148
+ "inheritedFrom": {
2149
+ "name": "Buttonsimple",
2150
+ "module": "components/buttonsimple/buttonsimple.component.js"
2151
+ }
2152
+ },
2021
2153
  {
2022
2154
  "kind": "field",
2023
2155
  "name": "type",
@@ -2056,13 +2188,14 @@
2056
2188
  },
2057
2189
  {
2058
2190
  "name": "active",
2191
+ "optional": true,
2059
2192
  "type": {
2060
2193
  "text": "boolean"
2061
2194
  },
2062
2195
  "description": "The active state of the element"
2063
2196
  }
2064
2197
  ],
2065
- "description": "Sets the aria-pressed attribute based on the active state of the button.",
2198
+ "description": "Sets the ariaStateKey attributes based on the active state of the button.",
2066
2199
  "inheritedFrom": {
2067
2200
  "name": "Buttonsimple",
2068
2201
  "module": "components/buttonsimple/buttonsimple.component.js"
@@ -2082,6 +2215,7 @@
2082
2215
  },
2083
2216
  {
2084
2217
  "name": "softDisabled",
2218
+ "optional": true,
2085
2219
  "type": {
2086
2220
  "text": "boolean"
2087
2221
  },
@@ -2182,7 +2316,7 @@
2182
2316
  {
2183
2317
  "name": "prefix-icon",
2184
2318
  "type": {
2185
- "text": "string | undefined"
2319
+ "text": "IconNames | undefined"
2186
2320
  },
2187
2321
  "description": "The name of the icon to display as a prefix.\nThe icon is displayed on the left side of the button.",
2188
2322
  "fieldName": "prefixIcon"
@@ -2190,7 +2324,7 @@
2190
2324
  {
2191
2325
  "name": "postfix-icon",
2192
2326
  "type": {
2193
- "text": "string | undefined"
2327
+ "text": "IconNames | undefined"
2194
2328
  },
2195
2329
  "description": "The name of the icon to display as a postfix.\nThe icon is displayed on the right side of the button.",
2196
2330
  "fieldName": "postfixIcon"
@@ -2268,10 +2402,10 @@
2268
2402
  {
2269
2403
  "name": "active",
2270
2404
  "type": {
2271
- "text": "boolean"
2405
+ "text": "boolean | undefined"
2272
2406
  },
2273
- "default": "false",
2274
- "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.",
2407
+ "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.\n\nThis attribute is used to set the provided `ariaStateKey` to true or false.",
2408
+ "default": "undefined",
2275
2409
  "fieldName": "active",
2276
2410
  "inheritedFrom": {
2277
2411
  "name": "Buttonsimple",
@@ -2281,16 +2415,26 @@
2281
2415
  {
2282
2416
  "name": "soft-disabled",
2283
2417
  "type": {
2284
- "text": "boolean"
2418
+ "text": "boolean | undefined"
2285
2419
  },
2286
- "default": "false",
2287
2420
  "description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
2421
+ "default": "undefined",
2288
2422
  "fieldName": "softDisabled",
2289
2423
  "inheritedFrom": {
2290
2424
  "name": "Buttonsimple",
2291
2425
  "module": "src/components/buttonsimple/buttonsimple.component.ts"
2292
2426
  }
2293
2427
  },
2428
+ {
2429
+ "name": "ariaStateKey",
2430
+ "description": "This property defines the ARIA state key, which will be toggled when the\nButton is set to `active`.\nThe default value is 'aria-pressed', which is commonly used for toggle buttons.\n\nConsumers can override this property to use a different ARIA state key if needed.\nIn case multiple aria attributes should be toggled, they can be passed in as\na comma separated string.\nFor example: `aria-pressed,aria-expanded`",
2431
+ "default": "'aria-pressed'",
2432
+ "fieldName": "ariaStateKey",
2433
+ "inheritedFrom": {
2434
+ "name": "Buttonsimple",
2435
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
2436
+ }
2437
+ },
2294
2438
  {
2295
2439
  "name": "type",
2296
2440
  "type": {
@@ -2363,77 +2507,6 @@
2363
2507
  }
2364
2508
  ]
2365
2509
  },
2366
- {
2367
- "kind": "javascript-module",
2368
- "path": "components/bullet/bullet.component.js",
2369
- "declarations": [
2370
- {
2371
- "kind": "class",
2372
- "description": "Bullet component, which is a visual marker\nand be used to organize and present items in a list format.",
2373
- "name": "Bullet",
2374
- "cssProperties": [
2375
- {
2376
- "description": "background color of the bullet",
2377
- "name": "--mdc-bullet-background-color"
2378
- },
2379
- {
2380
- "description": "small size value of the bullet",
2381
- "name": "--mdc-bullet-size-small"
2382
- },
2383
- {
2384
- "description": "medium size value of the bullet",
2385
- "name": "--mdc-bullet-size-medium"
2386
- },
2387
- {
2388
- "description": "large size value of the bullet",
2389
- "name": "--mdc-bullet-size-large"
2390
- }
2391
- ],
2392
- "members": [
2393
- {
2394
- "kind": "field",
2395
- "name": "size",
2396
- "type": {
2397
- "text": "Size"
2398
- },
2399
- "privacy": "public",
2400
- "description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
2401
- "default": "small",
2402
- "attribute": "size",
2403
- "reflects": true
2404
- }
2405
- ],
2406
- "attributes": [
2407
- {
2408
- "name": "size",
2409
- "type": {
2410
- "text": "Size"
2411
- },
2412
- "description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
2413
- "default": "small",
2414
- "fieldName": "size"
2415
- }
2416
- ],
2417
- "superclass": {
2418
- "name": "Component",
2419
- "module": "/src/models"
2420
- },
2421
- "tagName": "mdc-bullet",
2422
- "jsDoc": "/**\n * Bullet component, which is a visual marker\n * and be used to organize and present items in a list format.\n *\n * @tagname mdc-bullet\n *\n * @cssproperty --mdc-bullet-background-color - background color of the bullet\n * @cssproperty --mdc-bullet-size-small - small size value of the bullet\n * @cssproperty --mdc-bullet-size-medium - medium size value of the bullet\n * @cssproperty --mdc-bullet-size-large - large size value of the bullet\n*/",
2423
- "customElement": true
2424
- }
2425
- ],
2426
- "exports": [
2427
- {
2428
- "kind": "js",
2429
- "name": "default",
2430
- "declaration": {
2431
- "name": "Bullet",
2432
- "module": "components/bullet/bullet.component.js"
2433
- }
2434
- }
2435
- ]
2436
- },
2437
2510
  {
2438
2511
  "kind": "javascript-module",
2439
2512
  "path": "components/buttonsimple/buttonsimple.component.js",
@@ -2447,10 +2520,10 @@
2447
2520
  "kind": "field",
2448
2521
  "name": "active",
2449
2522
  "type": {
2450
- "text": "boolean"
2523
+ "text": "boolean | undefined"
2451
2524
  },
2452
- "default": "false",
2453
- "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.",
2525
+ "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.\n\nThis attribute is used to set the provided `ariaStateKey` to true or false.",
2526
+ "default": "undefined",
2454
2527
  "attribute": "active",
2455
2528
  "reflects": true
2456
2529
  },
@@ -2458,10 +2531,10 @@
2458
2531
  "kind": "field",
2459
2532
  "name": "softDisabled",
2460
2533
  "type": {
2461
- "text": "boolean"
2534
+ "text": "boolean | undefined"
2462
2535
  },
2463
- "default": "false",
2464
2536
  "description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
2537
+ "default": "undefined",
2465
2538
  "attribute": "soft-disabled"
2466
2539
  },
2467
2540
  {
@@ -2483,6 +2556,14 @@
2483
2556
  "attribute": "role",
2484
2557
  "reflects": true
2485
2558
  },
2559
+ {
2560
+ "kind": "field",
2561
+ "name": "ariaStateKey",
2562
+ "description": "This property defines the ARIA state key, which will be toggled when the\nButton is set to `active`.\nThe default value is 'aria-pressed', which is commonly used for toggle buttons.\n\nConsumers can override this property to use a different ARIA state key if needed.\nIn case multiple aria attributes should be toggled, they can be passed in as\na comma separated string.\nFor example: `aria-pressed,aria-expanded`",
2563
+ "default": "'aria-pressed'",
2564
+ "attribute": "ariaStateKey",
2565
+ "reflects": true
2566
+ },
2486
2567
  {
2487
2568
  "kind": "field",
2488
2569
  "name": "type",
@@ -2513,13 +2594,14 @@
2513
2594
  },
2514
2595
  {
2515
2596
  "name": "active",
2597
+ "optional": true,
2516
2598
  "type": {
2517
2599
  "text": "boolean"
2518
2600
  },
2519
2601
  "description": "The active state of the element"
2520
2602
  }
2521
2603
  ],
2522
- "description": "Sets the aria-pressed attribute based on the active state of the button."
2604
+ "description": "Sets the ariaStateKey attributes based on the active state of the button."
2523
2605
  },
2524
2606
  {
2525
2607
  "kind": "method",
@@ -2535,6 +2617,7 @@
2535
2617
  },
2536
2618
  {
2537
2619
  "name": "softDisabled",
2620
+ "optional": true,
2538
2621
  "type": {
2539
2622
  "text": "boolean"
2540
2623
  },
@@ -2663,19 +2746,19 @@
2663
2746
  {
2664
2747
  "name": "active",
2665
2748
  "type": {
2666
- "text": "boolean"
2749
+ "text": "boolean | undefined"
2667
2750
  },
2668
- "default": "false",
2669
- "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.",
2751
+ "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.\n\nThis attribute is used to set the provided `ariaStateKey` to true or false.",
2752
+ "default": "undefined",
2670
2753
  "fieldName": "active"
2671
2754
  },
2672
2755
  {
2673
2756
  "name": "soft-disabled",
2674
2757
  "type": {
2675
- "text": "boolean"
2758
+ "text": "boolean | undefined"
2676
2759
  },
2677
- "default": "false",
2678
2760
  "description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
2761
+ "default": "undefined",
2679
2762
  "fieldName": "softDisabled"
2680
2763
  },
2681
2764
  {
@@ -2693,6 +2776,12 @@
2693
2776
  "default": "button",
2694
2777
  "fieldName": "role"
2695
2778
  },
2779
+ {
2780
+ "name": "ariaStateKey",
2781
+ "description": "This property defines the ARIA state key, which will be toggled when the\nButton is set to `active`.\nThe default value is 'aria-pressed', which is commonly used for toggle buttons.\n\nConsumers can override this property to use a different ARIA state key if needed.\nIn case multiple aria attributes should be toggled, they can be passed in as\na comma separated string.\nFor example: `aria-pressed,aria-expanded`",
2782
+ "default": "'aria-pressed'",
2783
+ "fieldName": "ariaStateKey"
2784
+ },
2696
2785
  {
2697
2786
  "name": "type",
2698
2787
  "type": {
@@ -3520,10 +3609,10 @@
3520
3609
  "kind": "field",
3521
3610
  "name": "active",
3522
3611
  "type": {
3523
- "text": "boolean"
3612
+ "text": "boolean | undefined"
3524
3613
  },
3525
- "default": "false",
3526
- "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.",
3614
+ "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.\n\nThis attribute is used to set the provided `ariaStateKey` to true or false.",
3615
+ "default": "undefined",
3527
3616
  "attribute": "active",
3528
3617
  "reflects": true,
3529
3618
  "inheritedFrom": {
@@ -3535,10 +3624,10 @@
3535
3624
  "kind": "field",
3536
3625
  "name": "softDisabled",
3537
3626
  "type": {
3538
- "text": "boolean"
3627
+ "text": "boolean | undefined"
3539
3628
  },
3540
- "default": "false",
3541
3629
  "description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
3630
+ "default": "undefined",
3542
3631
  "attribute": "soft-disabled",
3543
3632
  "inheritedFrom": {
3544
3633
  "name": "Buttonsimple",
@@ -3572,6 +3661,18 @@
3572
3661
  "module": "components/buttonsimple/buttonsimple.component.js"
3573
3662
  }
3574
3663
  },
3664
+ {
3665
+ "kind": "field",
3666
+ "name": "ariaStateKey",
3667
+ "description": "This property defines the ARIA state key, which will be toggled when the\nButton is set to `active`.\nThe default value is 'aria-pressed', which is commonly used for toggle buttons.\n\nConsumers can override this property to use a different ARIA state key if needed.\nIn case multiple aria attributes should be toggled, they can be passed in as\na comma separated string.\nFor example: `aria-pressed,aria-expanded`",
3668
+ "default": "'aria-pressed'",
3669
+ "attribute": "ariaStateKey",
3670
+ "reflects": true,
3671
+ "inheritedFrom": {
3672
+ "name": "Buttonsimple",
3673
+ "module": "components/buttonsimple/buttonsimple.component.js"
3674
+ }
3675
+ },
3575
3676
  {
3576
3677
  "kind": "field",
3577
3678
  "name": "type",
@@ -3610,13 +3711,14 @@
3610
3711
  },
3611
3712
  {
3612
3713
  "name": "active",
3714
+ "optional": true,
3613
3715
  "type": {
3614
3716
  "text": "boolean"
3615
3717
  },
3616
3718
  "description": "The active state of the element"
3617
3719
  }
3618
3720
  ],
3619
- "description": "Sets the aria-pressed attribute based on the active state of the button.",
3721
+ "description": "Sets the ariaStateKey attributes based on the active state of the button.",
3620
3722
  "inheritedFrom": {
3621
3723
  "name": "Buttonsimple",
3622
3724
  "module": "components/buttonsimple/buttonsimple.component.js"
@@ -3636,6 +3738,7 @@
3636
3738
  },
3637
3739
  {
3638
3740
  "name": "softDisabled",
3741
+ "optional": true,
3639
3742
  "type": {
3640
3743
  "text": "boolean"
3641
3744
  },
@@ -3792,10 +3895,10 @@
3792
3895
  {
3793
3896
  "name": "active",
3794
3897
  "type": {
3795
- "text": "boolean"
3898
+ "text": "boolean | undefined"
3796
3899
  },
3797
- "default": "false",
3798
- "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.",
3900
+ "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.\n\nThis attribute is used to set the provided `ariaStateKey` to true or false.",
3901
+ "default": "undefined",
3799
3902
  "fieldName": "active",
3800
3903
  "inheritedFrom": {
3801
3904
  "name": "Buttonsimple",
@@ -3805,10 +3908,10 @@
3805
3908
  {
3806
3909
  "name": "soft-disabled",
3807
3910
  "type": {
3808
- "text": "boolean"
3911
+ "text": "boolean | undefined"
3809
3912
  },
3810
- "default": "false",
3811
3913
  "description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
3914
+ "default": "undefined",
3812
3915
  "fieldName": "softDisabled",
3813
3916
  "inheritedFrom": {
3814
3917
  "name": "Buttonsimple",
@@ -3838,6 +3941,16 @@
3838
3941
  "module": "src/components/buttonsimple/buttonsimple.component.ts"
3839
3942
  }
3840
3943
  },
3944
+ {
3945
+ "name": "ariaStateKey",
3946
+ "description": "This property defines the ARIA state key, which will be toggled when the\nButton is set to `active`.\nThe default value is 'aria-pressed', which is commonly used for toggle buttons.\n\nConsumers can override this property to use a different ARIA state key if needed.\nIn case multiple aria attributes should be toggled, they can be passed in as\na comma separated string.\nFor example: `aria-pressed,aria-expanded`",
3947
+ "default": "'aria-pressed'",
3948
+ "fieldName": "ariaStateKey",
3949
+ "inheritedFrom": {
3950
+ "name": "Buttonsimple",
3951
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
3952
+ }
3953
+ },
3841
3954
  {
3842
3955
  "name": "type",
3843
3956
  "type": {
@@ -5909,10 +6022,10 @@
5909
6022
  "kind": "field",
5910
6023
  "name": "active",
5911
6024
  "type": {
5912
- "text": "boolean"
6025
+ "text": "boolean | undefined"
5913
6026
  },
5914
- "default": "false",
5915
- "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.",
6027
+ "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.\n\nThis attribute is used to set the provided `ariaStateKey` to true or false.",
6028
+ "default": "undefined",
5916
6029
  "attribute": "active",
5917
6030
  "reflects": true,
5918
6031
  "inheritedFrom": {
@@ -5924,10 +6037,10 @@
5924
6037
  "kind": "field",
5925
6038
  "name": "softDisabled",
5926
6039
  "type": {
5927
- "text": "boolean"
6040
+ "text": "boolean | undefined"
5928
6041
  },
5929
- "default": "false",
5930
6042
  "description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
6043
+ "default": "undefined",
5931
6044
  "attribute": "soft-disabled",
5932
6045
  "inheritedFrom": {
5933
6046
  "name": "Buttonsimple",
@@ -5961,6 +6074,18 @@
5961
6074
  "module": "components/buttonsimple/buttonsimple.component.js"
5962
6075
  }
5963
6076
  },
6077
+ {
6078
+ "kind": "field",
6079
+ "name": "ariaStateKey",
6080
+ "description": "This property defines the ARIA state key, which will be toggled when the\nButton is set to `active`.\nThe default value is 'aria-pressed', which is commonly used for toggle buttons.\n\nConsumers can override this property to use a different ARIA state key if needed.\nIn case multiple aria attributes should be toggled, they can be passed in as\na comma separated string.\nFor example: `aria-pressed,aria-expanded`",
6081
+ "default": "'aria-pressed'",
6082
+ "attribute": "ariaStateKey",
6083
+ "reflects": true,
6084
+ "inheritedFrom": {
6085
+ "name": "Buttonsimple",
6086
+ "module": "components/buttonsimple/buttonsimple.component.js"
6087
+ }
6088
+ },
5964
6089
  {
5965
6090
  "kind": "field",
5966
6091
  "name": "type",
@@ -5990,13 +6115,14 @@
5990
6115
  },
5991
6116
  {
5992
6117
  "name": "active",
6118
+ "optional": true,
5993
6119
  "type": {
5994
6120
  "text": "boolean"
5995
6121
  },
5996
6122
  "description": "The active state of the element"
5997
6123
  }
5998
6124
  ],
5999
- "description": "Sets the aria-pressed attribute based on the active state of the button.",
6125
+ "description": "Sets the ariaStateKey attributes based on the active state of the button.",
6000
6126
  "inheritedFrom": {
6001
6127
  "name": "Buttonsimple",
6002
6128
  "module": "components/buttonsimple/buttonsimple.component.js"
@@ -6016,6 +6142,7 @@
6016
6142
  },
6017
6143
  {
6018
6144
  "name": "softDisabled",
6145
+ "optional": true,
6019
6146
  "type": {
6020
6147
  "text": "boolean"
6021
6148
  },
@@ -6189,10 +6316,10 @@
6189
6316
  {
6190
6317
  "name": "active",
6191
6318
  "type": {
6192
- "text": "boolean"
6319
+ "text": "boolean | undefined"
6193
6320
  },
6194
- "default": "false",
6195
- "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.",
6321
+ "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.\n\nThis attribute is used to set the provided `ariaStateKey` to true or false.",
6322
+ "default": "undefined",
6196
6323
  "fieldName": "active",
6197
6324
  "inheritedFrom": {
6198
6325
  "name": "Buttonsimple",
@@ -6202,10 +6329,10 @@
6202
6329
  {
6203
6330
  "name": "soft-disabled",
6204
6331
  "type": {
6205
- "text": "boolean"
6332
+ "text": "boolean | undefined"
6206
6333
  },
6207
- "default": "false",
6208
6334
  "description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
6335
+ "default": "undefined",
6209
6336
  "fieldName": "softDisabled",
6210
6337
  "inheritedFrom": {
6211
6338
  "name": "Buttonsimple",
@@ -6235,6 +6362,16 @@
6235
6362
  "module": "src/components/buttonsimple/buttonsimple.component.ts"
6236
6363
  }
6237
6364
  },
6365
+ {
6366
+ "name": "ariaStateKey",
6367
+ "description": "This property defines the ARIA state key, which will be toggled when the\nButton is set to `active`.\nThe default value is 'aria-pressed', which is commonly used for toggle buttons.\n\nConsumers can override this property to use a different ARIA state key if needed.\nIn case multiple aria attributes should be toggled, they can be passed in as\na comma separated string.\nFor example: `aria-pressed,aria-expanded`",
6368
+ "default": "'aria-pressed'",
6369
+ "fieldName": "ariaStateKey",
6370
+ "inheritedFrom": {
6371
+ "name": "Buttonsimple",
6372
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
6373
+ }
6374
+ },
6238
6375
  {
6239
6376
  "name": "type",
6240
6377
  "type": {
@@ -16364,6 +16501,21 @@
16364
16501
  }
16365
16502
  ],
16366
16503
  "members": [
16504
+ {
16505
+ "kind": "field",
16506
+ "name": "active",
16507
+ "type": {
16508
+ "text": "boolean | undefined"
16509
+ },
16510
+ "description": "The tab's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the tab is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the tab is in an inactive state, indicating it is toggled off.\n\nThis attribute also controls the \"aria-selected\" attribute of the tab.\nWhen the tab is active, \"aria-selected\" is set to true, indicating that the tab is selected.\nWhen the tab is inactive, \"aria-selected\" is set to false, indicating that the tab is not selected.",
16511
+ "default": "false",
16512
+ "attribute": "active",
16513
+ "reflects": true,
16514
+ "inheritedFrom": {
16515
+ "name": "Buttonsimple",
16516
+ "module": "components/buttonsimple/buttonsimple.component.js"
16517
+ }
16518
+ },
16367
16519
  {
16368
16520
  "kind": "field",
16369
16521
  "name": "text",
@@ -16526,29 +16678,14 @@
16526
16678
  "module": "components/buttonsimple/buttonsimple.component.js"
16527
16679
  }
16528
16680
  },
16529
- {
16530
- "kind": "field",
16531
- "name": "active",
16532
- "type": {
16533
- "text": "boolean"
16534
- },
16535
- "default": "false",
16536
- "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.",
16537
- "attribute": "active",
16538
- "reflects": true,
16539
- "inheritedFrom": {
16540
- "name": "Buttonsimple",
16541
- "module": "components/buttonsimple/buttonsimple.component.js"
16542
- }
16543
- },
16544
16681
  {
16545
16682
  "kind": "field",
16546
16683
  "name": "softDisabled",
16547
16684
  "type": {
16548
- "text": "boolean"
16685
+ "text": "boolean | undefined"
16549
16686
  },
16550
- "default": "false",
16551
16687
  "description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
16688
+ "default": "undefined",
16552
16689
  "attribute": "soft-disabled",
16553
16690
  "inheritedFrom": {
16554
16691
  "name": "Buttonsimple",
@@ -16582,6 +16719,18 @@
16582
16719
  "module": "components/buttonsimple/buttonsimple.component.js"
16583
16720
  }
16584
16721
  },
16722
+ {
16723
+ "kind": "field",
16724
+ "name": "ariaStateKey",
16725
+ "description": "This property defines the ARIA state key, which will be toggled when the\nButton is set to `active`.\nThe default value is 'aria-pressed', which is commonly used for toggle buttons.\n\nConsumers can override this property to use a different ARIA state key if needed.\nIn case multiple aria attributes should be toggled, they can be passed in as\na comma separated string.\nFor example: `aria-pressed,aria-expanded`",
16726
+ "default": "'aria-pressed'",
16727
+ "attribute": "ariaStateKey",
16728
+ "reflects": true,
16729
+ "inheritedFrom": {
16730
+ "name": "Buttonsimple",
16731
+ "module": "components/buttonsimple/buttonsimple.component.js"
16732
+ }
16733
+ },
16585
16734
  {
16586
16735
  "kind": "field",
16587
16736
  "name": "type",
@@ -16611,6 +16760,7 @@
16611
16760
  },
16612
16761
  {
16613
16762
  "name": "softDisabled",
16763
+ "optional": true,
16614
16764
  "type": {
16615
16765
  "text": "boolean"
16616
16766
  },
@@ -16751,6 +16901,19 @@
16751
16901
  }
16752
16902
  ],
16753
16903
  "attributes": [
16904
+ {
16905
+ "name": "active",
16906
+ "type": {
16907
+ "text": "boolean | undefined"
16908
+ },
16909
+ "description": "The tab's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the tab is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the tab is in an inactive state, indicating it is toggled off.\n\nThis attribute also controls the \"aria-selected\" attribute of the tab.\nWhen the tab is active, \"aria-selected\" is set to true, indicating that the tab is selected.\nWhen the tab is inactive, \"aria-selected\" is set to false, indicating that the tab is not selected.",
16910
+ "default": "false",
16911
+ "fieldName": "active",
16912
+ "inheritedFrom": {
16913
+ "name": "Buttonsimple",
16914
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
16915
+ }
16916
+ },
16754
16917
  {
16755
16918
  "name": "text",
16756
16919
  "type": {
@@ -16815,26 +16978,13 @@
16815
16978
  "module": "src/components/buttonsimple/buttonsimple.component.ts"
16816
16979
  }
16817
16980
  },
16818
- {
16819
- "name": "active",
16820
- "type": {
16821
- "text": "boolean"
16822
- },
16823
- "default": "false",
16824
- "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.",
16825
- "fieldName": "active",
16826
- "inheritedFrom": {
16827
- "name": "Buttonsimple",
16828
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
16829
- }
16830
- },
16831
16981
  {
16832
16982
  "name": "soft-disabled",
16833
16983
  "type": {
16834
- "text": "boolean"
16984
+ "text": "boolean | undefined"
16835
16985
  },
16836
- "default": "false",
16837
16986
  "description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
16987
+ "default": "undefined",
16838
16988
  "fieldName": "softDisabled",
16839
16989
  "inheritedFrom": {
16840
16990
  "name": "Buttonsimple",
@@ -16864,6 +17014,16 @@
16864
17014
  "module": "src/components/buttonsimple/buttonsimple.component.ts"
16865
17015
  }
16866
17016
  },
17017
+ {
17018
+ "name": "ariaStateKey",
17019
+ "description": "This property defines the ARIA state key, which will be toggled when the\nButton is set to `active`.\nThe default value is 'aria-pressed', which is commonly used for toggle buttons.\n\nConsumers can override this property to use a different ARIA state key if needed.\nIn case multiple aria attributes should be toggled, they can be passed in as\na comma separated string.\nFor example: `aria-pressed,aria-expanded`",
17020
+ "default": "'aria-pressed'",
17021
+ "fieldName": "ariaStateKey",
17022
+ "inheritedFrom": {
17023
+ "name": "Buttonsimple",
17024
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
17025
+ }
17026
+ },
16867
17027
  {
16868
17028
  "name": "type",
16869
17029
  "type": {