@momentum-design/components 0.53.4 → 0.53.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/index.js +110 -121
- package/dist/browser/index.js.map +3 -3
- package/dist/components/button/button.component.d.ts +3 -2
- package/dist/components/button/button.component.js +2 -14
- package/dist/components/button/button.utils.d.ts +2 -1
- package/dist/components/buttonsimple/buttonsimple.component.d.ts +21 -6
- package/dist/components/buttonsimple/buttonsimple.component.js +37 -29
- package/dist/components/buttonsimple/buttonsimple.constants.d.ts +1 -0
- package/dist/components/buttonsimple/buttonsimple.constants.js +1 -0
- package/dist/components/buttonsimple/buttonsimple.styles.js +1 -0
- package/dist/components/tab/tab.component.d.ts +12 -0
- package/dist/components/tab/tab.component.js +18 -1
- package/dist/components/tab/tab.constants.d.ts +1 -0
- package/dist/components/tab/tab.constants.js +1 -0
- package/dist/components/tab/tab.styles.js +1 -1
- package/dist/custom-elements.json +685 -525
- package/dist/react/index.d.ts +2 -2
- package/dist/react/index.js +2 -2
- package/package.json +1 -1
@@ -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
|
-
"
|
89
|
-
"
|
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
|
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
|
-
"
|
349
|
-
"
|
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
|
-
"
|
946
|
-
"
|
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
|
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
|
-
"
|
1306
|
-
"
|
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": {
|
@@ -1802,6 +1850,77 @@
|
|
1802
1850
|
}
|
1803
1851
|
]
|
1804
1852
|
},
|
1853
|
+
{
|
1854
|
+
"kind": "javascript-module",
|
1855
|
+
"path": "components/bullet/bullet.component.js",
|
1856
|
+
"declarations": [
|
1857
|
+
{
|
1858
|
+
"kind": "class",
|
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": [
|
1862
|
+
{
|
1863
|
+
"description": "background color of the bullet",
|
1864
|
+
"name": "--mdc-bullet-background-color"
|
1865
|
+
},
|
1866
|
+
{
|
1867
|
+
"description": "small size value of the bullet",
|
1868
|
+
"name": "--mdc-bullet-size-small"
|
1869
|
+
},
|
1870
|
+
{
|
1871
|
+
"description": "medium size value of the bullet",
|
1872
|
+
"name": "--mdc-bullet-size-medium"
|
1873
|
+
},
|
1874
|
+
{
|
1875
|
+
"description": "large size value of the bullet",
|
1876
|
+
"name": "--mdc-bullet-size-large"
|
1877
|
+
}
|
1878
|
+
],
|
1879
|
+
"members": [
|
1880
|
+
{
|
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
|
1891
|
+
}
|
1892
|
+
],
|
1893
|
+
"attributes": [
|
1894
|
+
{
|
1895
|
+
"name": "size",
|
1896
|
+
"type": {
|
1897
|
+
"text": "Size"
|
1898
|
+
},
|
1899
|
+
"description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
|
1900
|
+
"default": "small",
|
1901
|
+
"fieldName": "size"
|
1902
|
+
}
|
1903
|
+
],
|
1904
|
+
"superclass": {
|
1905
|
+
"name": "Component",
|
1906
|
+
"module": "/src/models"
|
1907
|
+
},
|
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*/",
|
1910
|
+
"customElement": true
|
1911
|
+
}
|
1912
|
+
],
|
1913
|
+
"exports": [
|
1914
|
+
{
|
1915
|
+
"kind": "js",
|
1916
|
+
"name": "default",
|
1917
|
+
"declaration": {
|
1918
|
+
"name": "Bullet",
|
1919
|
+
"module": "components/bullet/bullet.component.js"
|
1920
|
+
}
|
1921
|
+
}
|
1922
|
+
]
|
1923
|
+
},
|
1805
1924
|
{
|
1806
1925
|
"kind": "javascript-module",
|
1807
1926
|
"path": "components/button/button.component.js",
|
@@ -1821,7 +1940,7 @@
|
|
1821
1940
|
"kind": "field",
|
1822
1941
|
"name": "prefixIcon",
|
1823
1942
|
"type": {
|
1824
|
-
"text": "
|
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": "
|
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
|
-
"
|
1999
|
-
"
|
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
|
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": "
|
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": "
|
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
|
-
"
|
2274
|
-
"
|
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
|
-
"
|
2453
|
-
"
|
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
|
{
|
@@ -2485,7 +2558,15 @@
|
|
2485
2558
|
},
|
2486
2559
|
{
|
2487
2560
|
"kind": "field",
|
2488
|
-
"name": "
|
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
|
+
},
|
2567
|
+
{
|
2568
|
+
"kind": "field",
|
2569
|
+
"name": "type",
|
2489
2570
|
"type": {
|
2490
2571
|
"text": "ButtonType"
|
2491
2572
|
},
|
@@ -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
|
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
|
-
"
|
2669
|
-
"
|
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
|
-
"
|
3526
|
-
"
|
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
|
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
|
-
"
|
3798
|
-
"
|
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
|
-
"
|
5915
|
-
"
|
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
|
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
|
-
"
|
6195
|
-
"
|
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": {
|
@@ -8906,70 +9043,28 @@
|
|
8906
9043
|
},
|
8907
9044
|
{
|
8908
9045
|
"kind": "javascript-module",
|
8909
|
-
"path": "components/
|
9046
|
+
"path": "components/marker/marker.component.js",
|
8910
9047
|
"declarations": [
|
8911
9048
|
{
|
8912
9049
|
"kind": "class",
|
8913
|
-
"description": "mdc-
|
8914
|
-
"name": "
|
9050
|
+
"description": "`mdc-marker`, which is a vertical line and\nused to draw attention to specific parts of\nthe content or to signify important information.\n\n**Marker Variants**:\n- **solid**: Solid marker.\n- **striped**: Striped marker.",
|
9051
|
+
"name": "Marker",
|
8915
9052
|
"cssProperties": [
|
8916
9053
|
{
|
8917
|
-
"description": "Allows customization of the default background color.",
|
8918
|
-
"name": "--mdc-
|
8919
|
-
},
|
8920
|
-
{
|
8921
|
-
"description": "Allows customization of the background color on hover.",
|
8922
|
-
"name": "--mdc-listitem-background-color-hover"
|
8923
|
-
},
|
8924
|
-
{
|
8925
|
-
"description": "Allows customization of the background color when pressed.",
|
8926
|
-
"name": "--mdc-listitem-background-color-active"
|
8927
|
-
},
|
8928
|
-
{
|
8929
|
-
"description": "Allows customization of the primary label, side header and subline text slot color.",
|
8930
|
-
"name": "--mdc-listitem-primary-label-color"
|
8931
|
-
},
|
8932
|
-
{
|
8933
|
-
"description": "Allows customization of the secondary and tertiary label text slot color.",
|
8934
|
-
"name": "--mdc-listitem-secondary-label-color"
|
8935
|
-
},
|
8936
|
-
{
|
8937
|
-
"description": "Allows customization of the disabled color.",
|
8938
|
-
"name": "--mdc-listitem-disabled-color"
|
8939
|
-
},
|
8940
|
-
{
|
8941
|
-
"description": "Allows customization of column gap.",
|
8942
|
-
"name": "--mdc-listitem-column-gap"
|
8943
|
-
}
|
8944
|
-
],
|
8945
|
-
"slots": [
|
8946
|
-
{
|
8947
|
-
"description": "slot for list item controls to appear of leading end.",
|
8948
|
-
"name": "leading-controls"
|
8949
|
-
},
|
8950
|
-
{
|
8951
|
-
"description": "slot for list item primary label.",
|
8952
|
-
"name": "leading-text-primary-label"
|
8953
|
-
},
|
8954
|
-
{
|
8955
|
-
"description": "slot for list item secondary label.",
|
8956
|
-
"name": "leading-text-secondary-label"
|
8957
|
-
},
|
8958
|
-
{
|
8959
|
-
"description": "slot for list item tertiary label.",
|
8960
|
-
"name": "leading-text-tertiary-label"
|
9054
|
+
"description": "Allows customization of the default background color in solid variant.",
|
9055
|
+
"name": "--mdc-marker-solid-background-color"
|
8961
9056
|
},
|
8962
9057
|
{
|
8963
|
-
"description": "
|
8964
|
-
"name": "
|
9058
|
+
"description": "Allows customization of the default stripes in striped variant.",
|
9059
|
+
"name": "--mdc-marker-striped-color"
|
8965
9060
|
},
|
8966
9061
|
{
|
8967
|
-
"description": "
|
8968
|
-
"name": "
|
9062
|
+
"description": "Allows customization of the default background color in striped variant.",
|
9063
|
+
"name": "--mdc-marker-striped-background-color"
|
8969
9064
|
},
|
8970
9065
|
{
|
8971
|
-
"description": "
|
8972
|
-
"name": "
|
9066
|
+
"description": "Allows customization of the default width.",
|
9067
|
+
"name": "--mdc-marker-width"
|
8973
9068
|
}
|
8974
9069
|
],
|
8975
9070
|
"members": [
|
@@ -8977,236 +9072,127 @@
|
|
8977
9072
|
"kind": "field",
|
8978
9073
|
"name": "variant",
|
8979
9074
|
"type": {
|
8980
|
-
"text": "
|
9075
|
+
"text": "MarkerVariants"
|
8981
9076
|
},
|
8982
|
-
"
|
8983
|
-
"
|
9077
|
+
"privacy": "public",
|
9078
|
+
"description": "There are two variants of markers, each with a width of 0.25rem:\n- **solid**: Solid marker.\n- **striped**: Striped marker.",
|
9079
|
+
"default": "solid",
|
8984
9080
|
"attribute": "variant",
|
8985
9081
|
"reflects": true
|
8986
|
-
}
|
9082
|
+
}
|
9083
|
+
],
|
9084
|
+
"attributes": [
|
9085
|
+
{
|
9086
|
+
"name": "variant",
|
9087
|
+
"type": {
|
9088
|
+
"text": "MarkerVariants"
|
9089
|
+
},
|
9090
|
+
"description": "There are two variants of markers, each with a width of 0.25rem:\n- **solid**: Solid marker.\n- **striped**: Striped marker.",
|
9091
|
+
"default": "solid",
|
9092
|
+
"fieldName": "variant"
|
9093
|
+
}
|
9094
|
+
],
|
9095
|
+
"superclass": {
|
9096
|
+
"name": "Component",
|
9097
|
+
"module": "/src/models"
|
9098
|
+
},
|
9099
|
+
"tagName": "mdc-marker",
|
9100
|
+
"jsDoc": "/**\n * `mdc-marker`, which is a vertical line and\n * used to draw attention to specific parts of\n * the content or to signify important information.\n *\n * **Marker Variants**:\n * - **solid**: Solid marker.\n * - **striped**: Striped marker.\n *\n * @tagname mdc-marker\n *\n * @cssproperty --mdc-marker-solid-background-color - Allows customization of the default background color\n * in solid variant.\n * @cssproperty --mdc-marker-striped-color - Allows customization of the default stripes in striped variant.\n * @cssproperty --mdc-marker-striped-background-color - Allows customization of the default background color\n * in striped variant.\n * @cssproperty --mdc-marker-width - Allows customization of the default width.\n */",
|
9101
|
+
"customElement": true
|
9102
|
+
}
|
9103
|
+
],
|
9104
|
+
"exports": [
|
9105
|
+
{
|
9106
|
+
"kind": "js",
|
9107
|
+
"name": "default",
|
9108
|
+
"declaration": {
|
9109
|
+
"name": "Marker",
|
9110
|
+
"module": "components/marker/marker.component.js"
|
9111
|
+
}
|
9112
|
+
}
|
9113
|
+
]
|
9114
|
+
},
|
9115
|
+
{
|
9116
|
+
"kind": "javascript-module",
|
9117
|
+
"path": "components/optgroup/optgroup.component.js",
|
9118
|
+
"declarations": [
|
9119
|
+
{
|
9120
|
+
"kind": "class",
|
9121
|
+
"description": "optgroup component, which creates a grouping of mdc-option within a listbox element.",
|
9122
|
+
"name": "OptGroup",
|
9123
|
+
"cssProperties": [
|
9124
|
+
{
|
9125
|
+
"description": "Allows customization of the disabled option color.",
|
9126
|
+
"name": "--mdc-optgroup-disabled-color"
|
9127
|
+
}
|
9128
|
+
],
|
9129
|
+
"slots": [
|
9130
|
+
{
|
9131
|
+
"description": "This is a default slot for mdc-option elements.",
|
9132
|
+
"name": "default"
|
9133
|
+
}
|
9134
|
+
],
|
9135
|
+
"members": [
|
8987
9136
|
{
|
8988
9137
|
"kind": "field",
|
8989
9138
|
"name": "label",
|
8990
9139
|
"type": {
|
8991
9140
|
"text": "string | undefined"
|
8992
9141
|
},
|
8993
|
-
"description": "The
|
9142
|
+
"description": "The header text to be displayed on the top of the options list.",
|
8994
9143
|
"attribute": "label",
|
8995
9144
|
"reflects": true
|
8996
9145
|
},
|
9146
|
+
{
|
9147
|
+
"kind": "method",
|
9148
|
+
"name": "setDisabledForAllOptions",
|
9149
|
+
"privacy": "private",
|
9150
|
+
"return": {
|
9151
|
+
"type": {
|
9152
|
+
"text": "void"
|
9153
|
+
}
|
9154
|
+
}
|
9155
|
+
},
|
8997
9156
|
{
|
8998
9157
|
"kind": "field",
|
8999
|
-
"name": "
|
9158
|
+
"name": "dataAriaLabel",
|
9000
9159
|
"type": {
|
9001
|
-
"text": "string |
|
9160
|
+
"text": "string | null"
|
9002
9161
|
},
|
9003
|
-
"
|
9004
|
-
"
|
9005
|
-
"
|
9162
|
+
"default": "null",
|
9163
|
+
"description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
|
9164
|
+
"attribute": "data-aria-label",
|
9165
|
+
"reflects": true,
|
9166
|
+
"inheritedFrom": {
|
9167
|
+
"name": "DataAriaLabelMixin",
|
9168
|
+
"module": "utils/mixins/DataAriaLabelMixin.js"
|
9169
|
+
}
|
9006
9170
|
},
|
9007
9171
|
{
|
9008
9172
|
"kind": "field",
|
9009
|
-
"name": "
|
9173
|
+
"name": "disabled",
|
9010
9174
|
"type": {
|
9011
|
-
"text": "
|
9175
|
+
"text": "boolean | undefined"
|
9012
9176
|
},
|
9013
|
-
"description": "
|
9014
|
-
"
|
9015
|
-
"
|
9016
|
-
|
9177
|
+
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
9178
|
+
"default": "undefined",
|
9179
|
+
"attribute": "disabled",
|
9180
|
+
"reflects": true,
|
9181
|
+
"inheritedFrom": {
|
9182
|
+
"name": "DisabledMixin",
|
9183
|
+
"module": "utils/mixins/DisabledMixin.js"
|
9184
|
+
}
|
9185
|
+
}
|
9186
|
+
],
|
9187
|
+
"attributes": [
|
9017
9188
|
{
|
9018
|
-
"
|
9019
|
-
"name": "sideHeaderText",
|
9189
|
+
"name": "label",
|
9020
9190
|
"type": {
|
9021
9191
|
"text": "string | undefined"
|
9022
9192
|
},
|
9023
|
-
"description": "The header text
|
9024
|
-
"attribute": "side-header-text",
|
9025
|
-
"reflects": true
|
9026
|
-
},
|
9027
|
-
{
|
9028
|
-
"kind": "field",
|
9029
|
-
"name": "sublineText",
|
9030
|
-
"type": {
|
9031
|
-
"text": "string | undefined"
|
9032
|
-
},
|
9033
|
-
"description": "The subline text of the list item.\nThis appears on the trailing side of the list item.",
|
9034
|
-
"attribute": "subline-text",
|
9035
|
-
"reflects": true
|
9036
|
-
},
|
9037
|
-
{
|
9038
|
-
"kind": "method",
|
9039
|
-
"name": "getText",
|
9040
|
-
"privacy": "protected",
|
9041
|
-
"return": {
|
9042
|
-
"type": {
|
9043
|
-
"text": ""
|
9044
|
-
}
|
9045
|
-
},
|
9046
|
-
"parameters": [
|
9047
|
-
{
|
9048
|
-
"name": "slotName",
|
9049
|
-
"type": {
|
9050
|
-
"text": "string"
|
9051
|
-
},
|
9052
|
-
"description": "The name of the slot to be used."
|
9053
|
-
},
|
9054
|
-
{
|
9055
|
-
"name": "type",
|
9056
|
-
"type": {
|
9057
|
-
"text": "TextType"
|
9058
|
-
},
|
9059
|
-
"description": "The type of the text element."
|
9060
|
-
},
|
9061
|
-
{
|
9062
|
-
"name": "content",
|
9063
|
-
"optional": true,
|
9064
|
-
"type": {
|
9065
|
-
"text": "string"
|
9066
|
-
},
|
9067
|
-
"description": "The text content to be displayed within the slot."
|
9068
|
-
}
|
9069
|
-
],
|
9070
|
-
"description": "Generates a template for a text slot with the specified content."
|
9071
|
-
},
|
9072
|
-
{
|
9073
|
-
"kind": "method",
|
9074
|
-
"name": "disableSlottedChildren",
|
9075
|
-
"privacy": "private",
|
9076
|
-
"return": {
|
9077
|
-
"type": {
|
9078
|
-
"text": "void"
|
9079
|
-
}
|
9080
|
-
},
|
9081
|
-
"parameters": [
|
9082
|
-
{
|
9083
|
-
"name": "disabled",
|
9084
|
-
"type": {
|
9085
|
-
"text": "boolean"
|
9086
|
-
},
|
9087
|
-
"description": "Whether to disable or enable the controls."
|
9088
|
-
}
|
9089
|
-
],
|
9090
|
-
"description": "Disable or enable all slotted elements in the leading and trailing slots.\nThis is useful when the list item is disabled, to prevent the user from interacting with the controls."
|
9091
|
-
},
|
9092
|
-
{
|
9093
|
-
"kind": "field",
|
9094
|
-
"name": "dataAriaLabel",
|
9095
|
-
"type": {
|
9096
|
-
"text": "string | null"
|
9097
|
-
},
|
9098
|
-
"default": "null",
|
9099
|
-
"description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
|
9100
|
-
"attribute": "data-aria-label",
|
9101
|
-
"reflects": true,
|
9102
|
-
"inheritedFrom": {
|
9103
|
-
"name": "DataAriaLabelMixin",
|
9104
|
-
"module": "utils/mixins/DataAriaLabelMixin.js"
|
9105
|
-
}
|
9106
|
-
},
|
9107
|
-
{
|
9108
|
-
"kind": "field",
|
9109
|
-
"name": "disabled",
|
9110
|
-
"type": {
|
9111
|
-
"text": "boolean | undefined"
|
9112
|
-
},
|
9113
|
-
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
9114
|
-
"default": "undefined",
|
9115
|
-
"attribute": "disabled",
|
9116
|
-
"reflects": true,
|
9117
|
-
"inheritedFrom": {
|
9118
|
-
"name": "DisabledMixin",
|
9119
|
-
"module": "utils/mixins/DisabledMixin.js"
|
9120
|
-
}
|
9121
|
-
},
|
9122
|
-
{
|
9123
|
-
"kind": "field",
|
9124
|
-
"name": "tabIndex",
|
9125
|
-
"type": {
|
9126
|
-
"text": "number"
|
9127
|
-
},
|
9128
|
-
"default": "0",
|
9129
|
-
"description": "This property specifies the tab order of the element.",
|
9130
|
-
"attribute": "tabIndex",
|
9131
|
-
"reflects": true,
|
9132
|
-
"inheritedFrom": {
|
9133
|
-
"name": "TabIndexMixin",
|
9134
|
-
"module": "utils/mixins/TabIndexMixin.js"
|
9135
|
-
}
|
9136
|
-
}
|
9137
|
-
],
|
9138
|
-
"events": [
|
9139
|
-
{
|
9140
|
-
"description": "(React: onClick) This event is dispatched when the listitem is clicked.",
|
9141
|
-
"name": "click",
|
9142
|
-
"reactName": "onClick"
|
9143
|
-
},
|
9144
|
-
{
|
9145
|
-
"description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the listitem.",
|
9146
|
-
"name": "keydown",
|
9147
|
-
"reactName": "onKeyDown"
|
9148
|
-
},
|
9149
|
-
{
|
9150
|
-
"description": "(React: onKeyUp) This event is dispatched when a key is released on the listitem.",
|
9151
|
-
"name": "keyup",
|
9152
|
-
"reactName": "onKeyUp"
|
9153
|
-
},
|
9154
|
-
{
|
9155
|
-
"description": "(React: onFocus) This event is dispatched when the listitem receives focus.",
|
9156
|
-
"name": "focus",
|
9157
|
-
"reactName": "onFocus"
|
9158
|
-
}
|
9159
|
-
],
|
9160
|
-
"attributes": [
|
9161
|
-
{
|
9162
|
-
"name": "variant",
|
9163
|
-
"type": {
|
9164
|
-
"text": "ListItemVariants"
|
9165
|
-
},
|
9166
|
-
"description": "The variant of the list item. It can be a pill, rectangle or a full-width.",
|
9167
|
-
"default": "'full-width'",
|
9168
|
-
"fieldName": "variant"
|
9169
|
-
},
|
9170
|
-
{
|
9171
|
-
"name": "label",
|
9172
|
-
"type": {
|
9173
|
-
"text": "string | undefined"
|
9174
|
-
},
|
9175
|
-
"description": "The primary label of the list item.\nThis appears on the leading side of the list item.",
|
9193
|
+
"description": "The header text to be displayed on the top of the options list.",
|
9176
9194
|
"fieldName": "label"
|
9177
9195
|
},
|
9178
|
-
{
|
9179
|
-
"name": "secondary-label",
|
9180
|
-
"type": {
|
9181
|
-
"text": "string | undefined"
|
9182
|
-
},
|
9183
|
-
"description": "The secondary label of the list item.\nThis appears on the leading side of the list item.",
|
9184
|
-
"fieldName": "secondaryLabel"
|
9185
|
-
},
|
9186
|
-
{
|
9187
|
-
"name": "tertiary-label",
|
9188
|
-
"type": {
|
9189
|
-
"text": "string | undefined"
|
9190
|
-
},
|
9191
|
-
"description": "The tertiary label of the list item.\nThis appears on the leading side of the list item.",
|
9192
|
-
"fieldName": "tertiaryLabel"
|
9193
|
-
},
|
9194
|
-
{
|
9195
|
-
"name": "side-header-text",
|
9196
|
-
"type": {
|
9197
|
-
"text": "string | undefined"
|
9198
|
-
},
|
9199
|
-
"description": "The header text of the list item.\nThis appears on the trailing side of the list item.",
|
9200
|
-
"fieldName": "sideHeaderText"
|
9201
|
-
},
|
9202
|
-
{
|
9203
|
-
"name": "subline-text",
|
9204
|
-
"type": {
|
9205
|
-
"text": "string | undefined"
|
9206
|
-
},
|
9207
|
-
"description": "The subline text of the list item.\nThis appears on the trailing side of the list item.",
|
9208
|
-
"fieldName": "sublineText"
|
9209
|
-
},
|
9210
9196
|
{
|
9211
9197
|
"name": "data-aria-label",
|
9212
9198
|
"type": {
|
@@ -9232,19 +9218,6 @@
|
|
9232
9218
|
"name": "DisabledMixin",
|
9233
9219
|
"module": "src/utils/mixins/DisabledMixin.ts"
|
9234
9220
|
}
|
9235
|
-
},
|
9236
|
-
{
|
9237
|
-
"name": "tabIndex",
|
9238
|
-
"type": {
|
9239
|
-
"text": "number"
|
9240
|
-
},
|
9241
|
-
"default": "0",
|
9242
|
-
"description": "This property specifies the tab order of the element.",
|
9243
|
-
"fieldName": "tabIndex",
|
9244
|
-
"inheritedFrom": {
|
9245
|
-
"name": "TabIndexMixin",
|
9246
|
-
"module": "src/utils/mixins/TabIndexMixin.ts"
|
9247
|
-
}
|
9248
9221
|
}
|
9249
9222
|
],
|
9250
9223
|
"mixins": [
|
@@ -9255,18 +9228,14 @@
|
|
9255
9228
|
{
|
9256
9229
|
"name": "DisabledMixin",
|
9257
9230
|
"module": "/src/utils/mixins/DisabledMixin"
|
9258
|
-
},
|
9259
|
-
{
|
9260
|
-
"name": "TabIndexMixin",
|
9261
|
-
"module": "/src/utils/mixins/TabIndexMixin"
|
9262
9231
|
}
|
9263
9232
|
],
|
9264
9233
|
"superclass": {
|
9265
9234
|
"name": "Component",
|
9266
9235
|
"module": "/src/models"
|
9267
9236
|
},
|
9268
|
-
"tagName": "mdc-
|
9269
|
-
"jsDoc": "/**\n *
|
9237
|
+
"tagName": "mdc-optgroup",
|
9238
|
+
"jsDoc": "/**\n * optgroup component, which creates a grouping of mdc-option within a listbox element.\n *\n * @dependency mdc-text\n *\n * @tagname mdc-optgroup\n *\n * @slot default - This is a default slot for mdc-option elements.\n *\n * @cssproperty --mdc-optgroup-disabled-color - Allows customization of the disabled option color.\n */",
|
9270
9239
|
"customElement": true
|
9271
9240
|
}
|
9272
9241
|
],
|
@@ -9275,36 +9244,78 @@
|
|
9275
9244
|
"kind": "js",
|
9276
9245
|
"name": "default",
|
9277
9246
|
"declaration": {
|
9278
|
-
"name": "
|
9279
|
-
"module": "components/
|
9247
|
+
"name": "OptGroup",
|
9248
|
+
"module": "components/optgroup/optgroup.component.js"
|
9280
9249
|
}
|
9281
9250
|
}
|
9282
9251
|
]
|
9283
9252
|
},
|
9284
9253
|
{
|
9285
9254
|
"kind": "javascript-module",
|
9286
|
-
"path": "components/
|
9255
|
+
"path": "components/listitem/listitem.component.js",
|
9287
9256
|
"declarations": [
|
9288
9257
|
{
|
9289
9258
|
"kind": "class",
|
9290
|
-
"description": "
|
9291
|
-
"name": "
|
9259
|
+
"description": "mdc-listitem component is used to display a label with different types of controls.\nThere can be three types of controls, a radio button, a checkbox on the\nleading side and a toggle on the trailing side.\nThe list item can contain an avatar on the leading side and a badge on the trailing side.\nAdditionally, the list item can contain a side header and a subline text.\n\nThe leading and trailing slots can be used to display controls and text. <br/>\nBased on the leading/trailing slot, the position of the controls and text can be adjusted. <br/>\nPlease use mdc-list as a parent element even when there is only listitem for a11y purpose.",
|
9260
|
+
"name": "ListItem",
|
9292
9261
|
"cssProperties": [
|
9293
9262
|
{
|
9294
|
-
"description": "Allows customization of the default background color
|
9295
|
-
"name": "--mdc-
|
9263
|
+
"description": "Allows customization of the default background color.",
|
9264
|
+
"name": "--mdc-listitem-default-background-color"
|
9296
9265
|
},
|
9297
9266
|
{
|
9298
|
-
"description": "Allows customization of the
|
9299
|
-
"name": "--mdc-
|
9267
|
+
"description": "Allows customization of the background color on hover.",
|
9268
|
+
"name": "--mdc-listitem-background-color-hover"
|
9300
9269
|
},
|
9301
9270
|
{
|
9302
|
-
"description": "Allows customization of the
|
9303
|
-
"name": "--mdc-
|
9271
|
+
"description": "Allows customization of the background color when pressed.",
|
9272
|
+
"name": "--mdc-listitem-background-color-active"
|
9304
9273
|
},
|
9305
9274
|
{
|
9306
|
-
"description": "Allows customization of the
|
9307
|
-
"name": "--mdc-
|
9275
|
+
"description": "Allows customization of the primary label, side header and subline text slot color.",
|
9276
|
+
"name": "--mdc-listitem-primary-label-color"
|
9277
|
+
},
|
9278
|
+
{
|
9279
|
+
"description": "Allows customization of the secondary and tertiary label text slot color.",
|
9280
|
+
"name": "--mdc-listitem-secondary-label-color"
|
9281
|
+
},
|
9282
|
+
{
|
9283
|
+
"description": "Allows customization of the disabled color.",
|
9284
|
+
"name": "--mdc-listitem-disabled-color"
|
9285
|
+
},
|
9286
|
+
{
|
9287
|
+
"description": "Allows customization of column gap.",
|
9288
|
+
"name": "--mdc-listitem-column-gap"
|
9289
|
+
}
|
9290
|
+
],
|
9291
|
+
"slots": [
|
9292
|
+
{
|
9293
|
+
"description": "slot for list item controls to appear of leading end.",
|
9294
|
+
"name": "leading-controls"
|
9295
|
+
},
|
9296
|
+
{
|
9297
|
+
"description": "slot for list item primary label.",
|
9298
|
+
"name": "leading-text-primary-label"
|
9299
|
+
},
|
9300
|
+
{
|
9301
|
+
"description": "slot for list item secondary label.",
|
9302
|
+
"name": "leading-text-secondary-label"
|
9303
|
+
},
|
9304
|
+
{
|
9305
|
+
"description": "slot for list item tertiary label.",
|
9306
|
+
"name": "leading-text-tertiary-label"
|
9307
|
+
},
|
9308
|
+
{
|
9309
|
+
"description": "slot for list item side header text.",
|
9310
|
+
"name": "trailing-text-side-header"
|
9311
|
+
},
|
9312
|
+
{
|
9313
|
+
"description": "slot for list item subline text.",
|
9314
|
+
"name": "trailing-text-subline"
|
9315
|
+
},
|
9316
|
+
{
|
9317
|
+
"description": "slot for list item controls to appear of trailing end.",
|
9318
|
+
"name": "trailing-controls"
|
9308
9319
|
}
|
9309
9320
|
],
|
9310
9321
|
"members": [
|
@@ -9312,86 +9323,117 @@
|
|
9312
9323
|
"kind": "field",
|
9313
9324
|
"name": "variant",
|
9314
9325
|
"type": {
|
9315
|
-
"text": "
|
9326
|
+
"text": "ListItemVariants"
|
9316
9327
|
},
|
9317
|
-
"
|
9318
|
-
"
|
9319
|
-
"default": "solid",
|
9328
|
+
"description": "The variant of the list item. It can be a pill, rectangle or a full-width.",
|
9329
|
+
"default": "'full-width'",
|
9320
9330
|
"attribute": "variant",
|
9321
9331
|
"reflects": true
|
9322
|
-
}
|
9323
|
-
],
|
9324
|
-
"attributes": [
|
9332
|
+
},
|
9325
9333
|
{
|
9326
|
-
"
|
9334
|
+
"kind": "field",
|
9335
|
+
"name": "label",
|
9327
9336
|
"type": {
|
9328
|
-
"text": "
|
9337
|
+
"text": "string | undefined"
|
9329
9338
|
},
|
9330
|
-
"description": "
|
9331
|
-
"
|
9332
|
-
"
|
9333
|
-
}
|
9334
|
-
],
|
9335
|
-
"superclass": {
|
9336
|
-
"name": "Component",
|
9337
|
-
"module": "/src/models"
|
9338
|
-
},
|
9339
|
-
"tagName": "mdc-marker",
|
9340
|
-
"jsDoc": "/**\n * `mdc-marker`, which is a vertical line and\n * used to draw attention to specific parts of\n * the content or to signify important information.\n *\n * **Marker Variants**:\n * - **solid**: Solid marker.\n * - **striped**: Striped marker.\n *\n * @tagname mdc-marker\n *\n * @cssproperty --mdc-marker-solid-background-color - Allows customization of the default background color\n * in solid variant.\n * @cssproperty --mdc-marker-striped-color - Allows customization of the default stripes in striped variant.\n * @cssproperty --mdc-marker-striped-background-color - Allows customization of the default background color\n * in striped variant.\n * @cssproperty --mdc-marker-width - Allows customization of the default width.\n */",
|
9341
|
-
"customElement": true
|
9342
|
-
}
|
9343
|
-
],
|
9344
|
-
"exports": [
|
9345
|
-
{
|
9346
|
-
"kind": "js",
|
9347
|
-
"name": "default",
|
9348
|
-
"declaration": {
|
9349
|
-
"name": "Marker",
|
9350
|
-
"module": "components/marker/marker.component.js"
|
9351
|
-
}
|
9352
|
-
}
|
9353
|
-
]
|
9354
|
-
},
|
9355
|
-
{
|
9356
|
-
"kind": "javascript-module",
|
9357
|
-
"path": "components/optgroup/optgroup.component.js",
|
9358
|
-
"declarations": [
|
9359
|
-
{
|
9360
|
-
"kind": "class",
|
9361
|
-
"description": "optgroup component, which creates a grouping of mdc-option within a listbox element.",
|
9362
|
-
"name": "OptGroup",
|
9363
|
-
"cssProperties": [
|
9339
|
+
"description": "The primary label of the list item.\nThis appears on the leading side of the list item.",
|
9340
|
+
"attribute": "label",
|
9341
|
+
"reflects": true
|
9342
|
+
},
|
9364
9343
|
{
|
9365
|
-
"
|
9366
|
-
"name": "
|
9367
|
-
|
9368
|
-
|
9369
|
-
|
9344
|
+
"kind": "field",
|
9345
|
+
"name": "secondaryLabel",
|
9346
|
+
"type": {
|
9347
|
+
"text": "string | undefined"
|
9348
|
+
},
|
9349
|
+
"description": "The secondary label of the list item.\nThis appears on the leading side of the list item.",
|
9350
|
+
"attribute": "secondary-label",
|
9351
|
+
"reflects": true
|
9352
|
+
},
|
9353
|
+
{
|
9354
|
+
"kind": "field",
|
9355
|
+
"name": "tertiaryLabel",
|
9356
|
+
"type": {
|
9357
|
+
"text": "string | undefined"
|
9358
|
+
},
|
9359
|
+
"description": "The tertiary label of the list item.\nThis appears on the leading side of the list item.",
|
9360
|
+
"attribute": "tertiary-label",
|
9361
|
+
"reflects": true
|
9362
|
+
},
|
9370
9363
|
{
|
9371
|
-
"
|
9372
|
-
"name": "
|
9373
|
-
|
9374
|
-
|
9375
|
-
|
9364
|
+
"kind": "field",
|
9365
|
+
"name": "sideHeaderText",
|
9366
|
+
"type": {
|
9367
|
+
"text": "string | undefined"
|
9368
|
+
},
|
9369
|
+
"description": "The header text of the list item.\nThis appears on the trailing side of the list item.",
|
9370
|
+
"attribute": "side-header-text",
|
9371
|
+
"reflects": true
|
9372
|
+
},
|
9376
9373
|
{
|
9377
9374
|
"kind": "field",
|
9378
|
-
"name": "
|
9375
|
+
"name": "sublineText",
|
9379
9376
|
"type": {
|
9380
9377
|
"text": "string | undefined"
|
9381
9378
|
},
|
9382
|
-
"description": "The
|
9383
|
-
"attribute": "
|
9379
|
+
"description": "The subline text of the list item.\nThis appears on the trailing side of the list item.",
|
9380
|
+
"attribute": "subline-text",
|
9384
9381
|
"reflects": true
|
9385
9382
|
},
|
9386
9383
|
{
|
9387
9384
|
"kind": "method",
|
9388
|
-
"name": "
|
9385
|
+
"name": "getText",
|
9386
|
+
"privacy": "protected",
|
9387
|
+
"return": {
|
9388
|
+
"type": {
|
9389
|
+
"text": ""
|
9390
|
+
}
|
9391
|
+
},
|
9392
|
+
"parameters": [
|
9393
|
+
{
|
9394
|
+
"name": "slotName",
|
9395
|
+
"type": {
|
9396
|
+
"text": "string"
|
9397
|
+
},
|
9398
|
+
"description": "The name of the slot to be used."
|
9399
|
+
},
|
9400
|
+
{
|
9401
|
+
"name": "type",
|
9402
|
+
"type": {
|
9403
|
+
"text": "TextType"
|
9404
|
+
},
|
9405
|
+
"description": "The type of the text element."
|
9406
|
+
},
|
9407
|
+
{
|
9408
|
+
"name": "content",
|
9409
|
+
"optional": true,
|
9410
|
+
"type": {
|
9411
|
+
"text": "string"
|
9412
|
+
},
|
9413
|
+
"description": "The text content to be displayed within the slot."
|
9414
|
+
}
|
9415
|
+
],
|
9416
|
+
"description": "Generates a template for a text slot with the specified content."
|
9417
|
+
},
|
9418
|
+
{
|
9419
|
+
"kind": "method",
|
9420
|
+
"name": "disableSlottedChildren",
|
9389
9421
|
"privacy": "private",
|
9390
9422
|
"return": {
|
9391
9423
|
"type": {
|
9392
9424
|
"text": "void"
|
9393
9425
|
}
|
9394
|
-
}
|
9426
|
+
},
|
9427
|
+
"parameters": [
|
9428
|
+
{
|
9429
|
+
"name": "disabled",
|
9430
|
+
"type": {
|
9431
|
+
"text": "boolean"
|
9432
|
+
},
|
9433
|
+
"description": "Whether to disable or enable the controls."
|
9434
|
+
}
|
9435
|
+
],
|
9436
|
+
"description": "Disable or enable all slotted elements in the leading and trailing slots.\nThis is useful when the list item is disabled, to prevent the user from interacting with the controls."
|
9395
9437
|
},
|
9396
9438
|
{
|
9397
9439
|
"kind": "field",
|
@@ -9422,17 +9464,95 @@
|
|
9422
9464
|
"name": "DisabledMixin",
|
9423
9465
|
"module": "utils/mixins/DisabledMixin.js"
|
9424
9466
|
}
|
9467
|
+
},
|
9468
|
+
{
|
9469
|
+
"kind": "field",
|
9470
|
+
"name": "tabIndex",
|
9471
|
+
"type": {
|
9472
|
+
"text": "number"
|
9473
|
+
},
|
9474
|
+
"default": "0",
|
9475
|
+
"description": "This property specifies the tab order of the element.",
|
9476
|
+
"attribute": "tabIndex",
|
9477
|
+
"reflects": true,
|
9478
|
+
"inheritedFrom": {
|
9479
|
+
"name": "TabIndexMixin",
|
9480
|
+
"module": "utils/mixins/TabIndexMixin.js"
|
9481
|
+
}
|
9482
|
+
}
|
9483
|
+
],
|
9484
|
+
"events": [
|
9485
|
+
{
|
9486
|
+
"description": "(React: onClick) This event is dispatched when the listitem is clicked.",
|
9487
|
+
"name": "click",
|
9488
|
+
"reactName": "onClick"
|
9489
|
+
},
|
9490
|
+
{
|
9491
|
+
"description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the listitem.",
|
9492
|
+
"name": "keydown",
|
9493
|
+
"reactName": "onKeyDown"
|
9494
|
+
},
|
9495
|
+
{
|
9496
|
+
"description": "(React: onKeyUp) This event is dispatched when a key is released on the listitem.",
|
9497
|
+
"name": "keyup",
|
9498
|
+
"reactName": "onKeyUp"
|
9499
|
+
},
|
9500
|
+
{
|
9501
|
+
"description": "(React: onFocus) This event is dispatched when the listitem receives focus.",
|
9502
|
+
"name": "focus",
|
9503
|
+
"reactName": "onFocus"
|
9425
9504
|
}
|
9426
9505
|
],
|
9427
9506
|
"attributes": [
|
9507
|
+
{
|
9508
|
+
"name": "variant",
|
9509
|
+
"type": {
|
9510
|
+
"text": "ListItemVariants"
|
9511
|
+
},
|
9512
|
+
"description": "The variant of the list item. It can be a pill, rectangle or a full-width.",
|
9513
|
+
"default": "'full-width'",
|
9514
|
+
"fieldName": "variant"
|
9515
|
+
},
|
9428
9516
|
{
|
9429
9517
|
"name": "label",
|
9430
9518
|
"type": {
|
9431
9519
|
"text": "string | undefined"
|
9432
9520
|
},
|
9433
|
-
"description": "The
|
9521
|
+
"description": "The primary label of the list item.\nThis appears on the leading side of the list item.",
|
9434
9522
|
"fieldName": "label"
|
9435
9523
|
},
|
9524
|
+
{
|
9525
|
+
"name": "secondary-label",
|
9526
|
+
"type": {
|
9527
|
+
"text": "string | undefined"
|
9528
|
+
},
|
9529
|
+
"description": "The secondary label of the list item.\nThis appears on the leading side of the list item.",
|
9530
|
+
"fieldName": "secondaryLabel"
|
9531
|
+
},
|
9532
|
+
{
|
9533
|
+
"name": "tertiary-label",
|
9534
|
+
"type": {
|
9535
|
+
"text": "string | undefined"
|
9536
|
+
},
|
9537
|
+
"description": "The tertiary label of the list item.\nThis appears on the leading side of the list item.",
|
9538
|
+
"fieldName": "tertiaryLabel"
|
9539
|
+
},
|
9540
|
+
{
|
9541
|
+
"name": "side-header-text",
|
9542
|
+
"type": {
|
9543
|
+
"text": "string | undefined"
|
9544
|
+
},
|
9545
|
+
"description": "The header text of the list item.\nThis appears on the trailing side of the list item.",
|
9546
|
+
"fieldName": "sideHeaderText"
|
9547
|
+
},
|
9548
|
+
{
|
9549
|
+
"name": "subline-text",
|
9550
|
+
"type": {
|
9551
|
+
"text": "string | undefined"
|
9552
|
+
},
|
9553
|
+
"description": "The subline text of the list item.\nThis appears on the trailing side of the list item.",
|
9554
|
+
"fieldName": "sublineText"
|
9555
|
+
},
|
9436
9556
|
{
|
9437
9557
|
"name": "data-aria-label",
|
9438
9558
|
"type": {
|
@@ -9458,6 +9578,19 @@
|
|
9458
9578
|
"name": "DisabledMixin",
|
9459
9579
|
"module": "src/utils/mixins/DisabledMixin.ts"
|
9460
9580
|
}
|
9581
|
+
},
|
9582
|
+
{
|
9583
|
+
"name": "tabIndex",
|
9584
|
+
"type": {
|
9585
|
+
"text": "number"
|
9586
|
+
},
|
9587
|
+
"default": "0",
|
9588
|
+
"description": "This property specifies the tab order of the element.",
|
9589
|
+
"fieldName": "tabIndex",
|
9590
|
+
"inheritedFrom": {
|
9591
|
+
"name": "TabIndexMixin",
|
9592
|
+
"module": "src/utils/mixins/TabIndexMixin.ts"
|
9593
|
+
}
|
9461
9594
|
}
|
9462
9595
|
],
|
9463
9596
|
"mixins": [
|
@@ -9468,14 +9601,18 @@
|
|
9468
9601
|
{
|
9469
9602
|
"name": "DisabledMixin",
|
9470
9603
|
"module": "/src/utils/mixins/DisabledMixin"
|
9604
|
+
},
|
9605
|
+
{
|
9606
|
+
"name": "TabIndexMixin",
|
9607
|
+
"module": "/src/utils/mixins/TabIndexMixin"
|
9471
9608
|
}
|
9472
9609
|
],
|
9473
9610
|
"superclass": {
|
9474
9611
|
"name": "Component",
|
9475
9612
|
"module": "/src/models"
|
9476
9613
|
},
|
9477
|
-
"tagName": "mdc-
|
9478
|
-
"jsDoc": "/**\n *
|
9614
|
+
"tagName": "mdc-listitem",
|
9615
|
+
"jsDoc": "/**\n * mdc-listitem component is used to display a label with different types of controls.\n * There can be three types of controls, a radio button, a checkbox on the\n * leading side and a toggle on the trailing side.\n * The list item can contain an avatar on the leading side and a badge on the trailing side.\n * Additionally, the list item can contain a side header and a subline text.\n *\n * The leading and trailing slots can be used to display controls and text. <br/>\n * Based on the leading/trailing slot, the position of the controls and text can be adjusted. <br/>\n * Please use mdc-list as a parent element even when there is only listitem for a11y purpose.\n *\n * @tagname mdc-listitem\n *\n * @dependency mdc-text\n *\n * @slot leading-controls - slot for list item controls to appear of leading end.\n * @slot leading-text-primary-label - slot for list item primary label.\n * @slot leading-text-secondary-label - slot for list item secondary label.\n * @slot leading-text-tertiary-label - slot for list item tertiary label.\n * @slot trailing-text-side-header - slot for list item side header text.\n * @slot trailing-text-subline - slot for list item subline text.\n * @slot trailing-controls - slot for list item controls to appear of trailing end.\n *\n * @cssproperty --mdc-listitem-default-background-color - Allows customization of the default background color.\n * @cssproperty --mdc-listitem-background-color-hover - Allows customization of the background color on hover.\n * @cssproperty --mdc-listitem-background-color-active - Allows customization of the background color when pressed.\n * @cssproperty --mdc-listitem-primary-label-color\n * - Allows customization of the primary label, side header and subline text slot color.\n * @cssproperty --mdc-listitem-secondary-label-color\n * - Allows customization of the secondary and tertiary label text slot color.\n * @cssproperty --mdc-listitem-disabled-color - Allows customization of the disabled color.\n * @cssproperty --mdc-listitem-column-gap - Allows customization of column gap.\n *\n * @event click - (React: onClick) This event is dispatched when the listitem is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the listitem.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the listitem.\n * @event focus - (React: onFocus) This event is dispatched when the listitem receives focus.\n */",
|
9479
9616
|
"customElement": true
|
9480
9617
|
}
|
9481
9618
|
],
|
@@ -9484,8 +9621,8 @@
|
|
9484
9621
|
"kind": "js",
|
9485
9622
|
"name": "default",
|
9486
9623
|
"declaration": {
|
9487
|
-
"name": "
|
9488
|
-
"module": "components/
|
9624
|
+
"name": "ListItem",
|
9625
|
+
"module": "components/listitem/listitem.component.js"
|
9489
9626
|
}
|
9490
9627
|
}
|
9491
9628
|
]
|
@@ -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": {
|