@momentum-design/components 0.53.3 → 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 +120 -131
- 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/option/option.component.js +1 -0
- package/dist/components/popover/popover.component.js +4 -1
- package/dist/components/popover/popover.utils.js +3 -1
- package/dist/components/select/select.component.js +16 -9
- package/dist/components/select/select.styles.js +1 -1
- 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 +509 -349
- package/dist/react/index.d.ts +1 -1
- package/dist/react/index.js +1 -1
- 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": {
|
@@ -1892,7 +1940,7 @@
|
|
1892
1940
|
"kind": "field",
|
1893
1941
|
"name": "prefixIcon",
|
1894
1942
|
"type": {
|
1895
|
-
"text": "
|
1943
|
+
"text": "IconNames | undefined"
|
1896
1944
|
},
|
1897
1945
|
"description": "The name of the icon to display as a prefix.\nThe icon is displayed on the left side of the button.",
|
1898
1946
|
"attribute": "prefix-icon",
|
@@ -1902,7 +1950,7 @@
|
|
1902
1950
|
"kind": "field",
|
1903
1951
|
"name": "postfixIcon",
|
1904
1952
|
"type": {
|
1905
|
-
"text": "
|
1953
|
+
"text": "IconNames | undefined"
|
1906
1954
|
},
|
1907
1955
|
"description": "The name of the icon to display as a postfix.\nThe icon is displayed on the right side of the button.",
|
1908
1956
|
"attribute": "postfix-icon",
|
@@ -1965,6 +2013,7 @@
|
|
1965
2013
|
"parameters": [
|
1966
2014
|
{
|
1967
2015
|
"name": "active",
|
2016
|
+
"optional": true,
|
1968
2017
|
"type": {
|
1969
2018
|
"text": "boolean"
|
1970
2019
|
},
|
@@ -2064,10 +2113,10 @@
|
|
2064
2113
|
"kind": "field",
|
2065
2114
|
"name": "active",
|
2066
2115
|
"type": {
|
2067
|
-
"text": "boolean"
|
2116
|
+
"text": "boolean | undefined"
|
2068
2117
|
},
|
2069
|
-
"
|
2070
|
-
"
|
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",
|
2071
2120
|
"attribute": "active",
|
2072
2121
|
"reflects": true,
|
2073
2122
|
"inheritedFrom": {
|
@@ -2079,16 +2128,28 @@
|
|
2079
2128
|
"kind": "field",
|
2080
2129
|
"name": "softDisabled",
|
2081
2130
|
"type": {
|
2082
|
-
"text": "boolean"
|
2131
|
+
"text": "boolean | undefined"
|
2083
2132
|
},
|
2084
|
-
"default": "false",
|
2085
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",
|
2086
2135
|
"attribute": "soft-disabled",
|
2087
2136
|
"inheritedFrom": {
|
2088
2137
|
"name": "Buttonsimple",
|
2089
2138
|
"module": "components/buttonsimple/buttonsimple.component.js"
|
2090
2139
|
}
|
2091
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
|
+
},
|
2092
2153
|
{
|
2093
2154
|
"kind": "field",
|
2094
2155
|
"name": "type",
|
@@ -2127,13 +2188,14 @@
|
|
2127
2188
|
},
|
2128
2189
|
{
|
2129
2190
|
"name": "active",
|
2191
|
+
"optional": true,
|
2130
2192
|
"type": {
|
2131
2193
|
"text": "boolean"
|
2132
2194
|
},
|
2133
2195
|
"description": "The active state of the element"
|
2134
2196
|
}
|
2135
2197
|
],
|
2136
|
-
"description": "Sets the
|
2198
|
+
"description": "Sets the ariaStateKey attributes based on the active state of the button.",
|
2137
2199
|
"inheritedFrom": {
|
2138
2200
|
"name": "Buttonsimple",
|
2139
2201
|
"module": "components/buttonsimple/buttonsimple.component.js"
|
@@ -2153,6 +2215,7 @@
|
|
2153
2215
|
},
|
2154
2216
|
{
|
2155
2217
|
"name": "softDisabled",
|
2218
|
+
"optional": true,
|
2156
2219
|
"type": {
|
2157
2220
|
"text": "boolean"
|
2158
2221
|
},
|
@@ -2253,7 +2316,7 @@
|
|
2253
2316
|
{
|
2254
2317
|
"name": "prefix-icon",
|
2255
2318
|
"type": {
|
2256
|
-
"text": "
|
2319
|
+
"text": "IconNames | undefined"
|
2257
2320
|
},
|
2258
2321
|
"description": "The name of the icon to display as a prefix.\nThe icon is displayed on the left side of the button.",
|
2259
2322
|
"fieldName": "prefixIcon"
|
@@ -2261,7 +2324,7 @@
|
|
2261
2324
|
{
|
2262
2325
|
"name": "postfix-icon",
|
2263
2326
|
"type": {
|
2264
|
-
"text": "
|
2327
|
+
"text": "IconNames | undefined"
|
2265
2328
|
},
|
2266
2329
|
"description": "The name of the icon to display as a postfix.\nThe icon is displayed on the right side of the button.",
|
2267
2330
|
"fieldName": "postfixIcon"
|
@@ -2339,10 +2402,10 @@
|
|
2339
2402
|
{
|
2340
2403
|
"name": "active",
|
2341
2404
|
"type": {
|
2342
|
-
"text": "boolean"
|
2405
|
+
"text": "boolean | undefined"
|
2343
2406
|
},
|
2344
|
-
"
|
2345
|
-
"
|
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",
|
2346
2409
|
"fieldName": "active",
|
2347
2410
|
"inheritedFrom": {
|
2348
2411
|
"name": "Buttonsimple",
|
@@ -2352,16 +2415,26 @@
|
|
2352
2415
|
{
|
2353
2416
|
"name": "soft-disabled",
|
2354
2417
|
"type": {
|
2355
|
-
"text": "boolean"
|
2418
|
+
"text": "boolean | undefined"
|
2356
2419
|
},
|
2357
|
-
"default": "false",
|
2358
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",
|
2359
2422
|
"fieldName": "softDisabled",
|
2360
2423
|
"inheritedFrom": {
|
2361
2424
|
"name": "Buttonsimple",
|
2362
2425
|
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
2363
2426
|
}
|
2364
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
|
+
},
|
2365
2438
|
{
|
2366
2439
|
"name": "type",
|
2367
2440
|
"type": {
|
@@ -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
|
{
|
@@ -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
|
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,59 +9043,268 @@
|
|
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"
|
9054
|
+
"description": "Allows customization of the default background color in solid variant.",
|
9055
|
+
"name": "--mdc-marker-solid-background-color"
|
8931
9056
|
},
|
8932
9057
|
{
|
8933
|
-
"description": "Allows customization of the
|
8934
|
-
"name": "--mdc-
|
9058
|
+
"description": "Allows customization of the default stripes in striped variant.",
|
9059
|
+
"name": "--mdc-marker-striped-color"
|
8935
9060
|
},
|
8936
9061
|
{
|
8937
|
-
"description": "Allows customization of the
|
8938
|
-
"name": "--mdc-
|
9062
|
+
"description": "Allows customization of the default background color in striped variant.",
|
9063
|
+
"name": "--mdc-marker-striped-background-color"
|
8939
9064
|
},
|
8940
9065
|
{
|
8941
|
-
"description": "Allows customization of
|
8942
|
-
"name": "--mdc-
|
9066
|
+
"description": "Allows customization of the default width.",
|
9067
|
+
"name": "--mdc-marker-width"
|
8943
9068
|
}
|
8944
9069
|
],
|
8945
|
-
"
|
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
|
-
},
|
9070
|
+
"members": [
|
8954
9071
|
{
|
8955
|
-
"
|
8956
|
-
"name": "
|
8957
|
-
|
9072
|
+
"kind": "field",
|
9073
|
+
"name": "variant",
|
9074
|
+
"type": {
|
9075
|
+
"text": "MarkerVariants"
|
9076
|
+
},
|
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",
|
9080
|
+
"attribute": "variant",
|
9081
|
+
"reflects": true
|
9082
|
+
}
|
9083
|
+
],
|
9084
|
+
"attributes": [
|
8958
9085
|
{
|
8959
|
-
"
|
8960
|
-
"
|
8961
|
-
|
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": [
|
9136
|
+
{
|
9137
|
+
"kind": "field",
|
9138
|
+
"name": "label",
|
9139
|
+
"type": {
|
9140
|
+
"text": "string | undefined"
|
9141
|
+
},
|
9142
|
+
"description": "The header text to be displayed on the top of the options list.",
|
9143
|
+
"attribute": "label",
|
9144
|
+
"reflects": true
|
9145
|
+
},
|
9146
|
+
{
|
9147
|
+
"kind": "method",
|
9148
|
+
"name": "setDisabledForAllOptions",
|
9149
|
+
"privacy": "private",
|
9150
|
+
"return": {
|
9151
|
+
"type": {
|
9152
|
+
"text": "void"
|
9153
|
+
}
|
9154
|
+
}
|
9155
|
+
},
|
9156
|
+
{
|
9157
|
+
"kind": "field",
|
9158
|
+
"name": "dataAriaLabel",
|
9159
|
+
"type": {
|
9160
|
+
"text": "string | null"
|
9161
|
+
},
|
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
|
+
}
|
9170
|
+
},
|
9171
|
+
{
|
9172
|
+
"kind": "field",
|
9173
|
+
"name": "disabled",
|
9174
|
+
"type": {
|
9175
|
+
"text": "boolean | undefined"
|
9176
|
+
},
|
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": [
|
9188
|
+
{
|
9189
|
+
"name": "label",
|
9190
|
+
"type": {
|
9191
|
+
"text": "string | undefined"
|
9192
|
+
},
|
9193
|
+
"description": "The header text to be displayed on the top of the options list.",
|
9194
|
+
"fieldName": "label"
|
9195
|
+
},
|
9196
|
+
{
|
9197
|
+
"name": "data-aria-label",
|
9198
|
+
"type": {
|
9199
|
+
"text": "string | null"
|
9200
|
+
},
|
9201
|
+
"default": "null",
|
9202
|
+
"description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
|
9203
|
+
"fieldName": "dataAriaLabel",
|
9204
|
+
"inheritedFrom": {
|
9205
|
+
"name": "DataAriaLabelMixin",
|
9206
|
+
"module": "src/utils/mixins/DataAriaLabelMixin.ts"
|
9207
|
+
}
|
9208
|
+
},
|
9209
|
+
{
|
9210
|
+
"name": "disabled",
|
9211
|
+
"type": {
|
9212
|
+
"text": "boolean | undefined"
|
9213
|
+
},
|
9214
|
+
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
9215
|
+
"default": "undefined",
|
9216
|
+
"fieldName": "disabled",
|
9217
|
+
"inheritedFrom": {
|
9218
|
+
"name": "DisabledMixin",
|
9219
|
+
"module": "src/utils/mixins/DisabledMixin.ts"
|
9220
|
+
}
|
9221
|
+
}
|
9222
|
+
],
|
9223
|
+
"mixins": [
|
9224
|
+
{
|
9225
|
+
"name": "DataAriaLabelMixin",
|
9226
|
+
"module": "/src/utils/mixins/DataAriaLabelMixin"
|
9227
|
+
},
|
9228
|
+
{
|
9229
|
+
"name": "DisabledMixin",
|
9230
|
+
"module": "/src/utils/mixins/DisabledMixin"
|
9231
|
+
}
|
9232
|
+
],
|
9233
|
+
"superclass": {
|
9234
|
+
"name": "Component",
|
9235
|
+
"module": "/src/models"
|
9236
|
+
},
|
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 */",
|
9239
|
+
"customElement": true
|
9240
|
+
}
|
9241
|
+
],
|
9242
|
+
"exports": [
|
9243
|
+
{
|
9244
|
+
"kind": "js",
|
9245
|
+
"name": "default",
|
9246
|
+
"declaration": {
|
9247
|
+
"name": "OptGroup",
|
9248
|
+
"module": "components/optgroup/optgroup.component.js"
|
9249
|
+
}
|
9250
|
+
}
|
9251
|
+
]
|
9252
|
+
},
|
9253
|
+
{
|
9254
|
+
"kind": "javascript-module",
|
9255
|
+
"path": "components/listitem/listitem.component.js",
|
9256
|
+
"declarations": [
|
9257
|
+
{
|
9258
|
+
"kind": "class",
|
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",
|
9261
|
+
"cssProperties": [
|
9262
|
+
{
|
9263
|
+
"description": "Allows customization of the default background color.",
|
9264
|
+
"name": "--mdc-listitem-default-background-color"
|
9265
|
+
},
|
9266
|
+
{
|
9267
|
+
"description": "Allows customization of the background color on hover.",
|
9268
|
+
"name": "--mdc-listitem-background-color-hover"
|
9269
|
+
},
|
9270
|
+
{
|
9271
|
+
"description": "Allows customization of the background color when pressed.",
|
9272
|
+
"name": "--mdc-listitem-background-color-active"
|
9273
|
+
},
|
9274
|
+
{
|
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
|
+
},
|
8962
9308
|
{
|
8963
9309
|
"description": "slot for list item side header text.",
|
8964
9310
|
"name": "trailing-text-side-header"
|
@@ -9281,215 +9627,6 @@
|
|
9281
9627
|
}
|
9282
9628
|
]
|
9283
9629
|
},
|
9284
|
-
{
|
9285
|
-
"kind": "javascript-module",
|
9286
|
-
"path": "components/marker/marker.component.js",
|
9287
|
-
"declarations": [
|
9288
|
-
{
|
9289
|
-
"kind": "class",
|
9290
|
-
"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.",
|
9291
|
-
"name": "Marker",
|
9292
|
-
"cssProperties": [
|
9293
|
-
{
|
9294
|
-
"description": "Allows customization of the default background color in solid variant.",
|
9295
|
-
"name": "--mdc-marker-solid-background-color"
|
9296
|
-
},
|
9297
|
-
{
|
9298
|
-
"description": "Allows customization of the default stripes in striped variant.",
|
9299
|
-
"name": "--mdc-marker-striped-color"
|
9300
|
-
},
|
9301
|
-
{
|
9302
|
-
"description": "Allows customization of the default background color in striped variant.",
|
9303
|
-
"name": "--mdc-marker-striped-background-color"
|
9304
|
-
},
|
9305
|
-
{
|
9306
|
-
"description": "Allows customization of the default width.",
|
9307
|
-
"name": "--mdc-marker-width"
|
9308
|
-
}
|
9309
|
-
],
|
9310
|
-
"members": [
|
9311
|
-
{
|
9312
|
-
"kind": "field",
|
9313
|
-
"name": "variant",
|
9314
|
-
"type": {
|
9315
|
-
"text": "MarkerVariants"
|
9316
|
-
},
|
9317
|
-
"privacy": "public",
|
9318
|
-
"description": "There are two variants of markers, each with a width of 0.25rem:\n- **solid**: Solid marker.\n- **striped**: Striped marker.",
|
9319
|
-
"default": "solid",
|
9320
|
-
"attribute": "variant",
|
9321
|
-
"reflects": true
|
9322
|
-
}
|
9323
|
-
],
|
9324
|
-
"attributes": [
|
9325
|
-
{
|
9326
|
-
"name": "variant",
|
9327
|
-
"type": {
|
9328
|
-
"text": "MarkerVariants"
|
9329
|
-
},
|
9330
|
-
"description": "There are two variants of markers, each with a width of 0.25rem:\n- **solid**: Solid marker.\n- **striped**: Striped marker.",
|
9331
|
-
"default": "solid",
|
9332
|
-
"fieldName": "variant"
|
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": [
|
9364
|
-
{
|
9365
|
-
"description": "Allows customization of the disabled option color.",
|
9366
|
-
"name": "--mdc-optgroup-disabled-color"
|
9367
|
-
}
|
9368
|
-
],
|
9369
|
-
"slots": [
|
9370
|
-
{
|
9371
|
-
"description": "This is a default slot for mdc-option elements.",
|
9372
|
-
"name": "default"
|
9373
|
-
}
|
9374
|
-
],
|
9375
|
-
"members": [
|
9376
|
-
{
|
9377
|
-
"kind": "field",
|
9378
|
-
"name": "label",
|
9379
|
-
"type": {
|
9380
|
-
"text": "string | undefined"
|
9381
|
-
},
|
9382
|
-
"description": "The header text to be displayed on the top of the options list.",
|
9383
|
-
"attribute": "label",
|
9384
|
-
"reflects": true
|
9385
|
-
},
|
9386
|
-
{
|
9387
|
-
"kind": "method",
|
9388
|
-
"name": "setDisabledForAllOptions",
|
9389
|
-
"privacy": "private",
|
9390
|
-
"return": {
|
9391
|
-
"type": {
|
9392
|
-
"text": "void"
|
9393
|
-
}
|
9394
|
-
}
|
9395
|
-
},
|
9396
|
-
{
|
9397
|
-
"kind": "field",
|
9398
|
-
"name": "dataAriaLabel",
|
9399
|
-
"type": {
|
9400
|
-
"text": "string | null"
|
9401
|
-
},
|
9402
|
-
"default": "null",
|
9403
|
-
"description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
|
9404
|
-
"attribute": "data-aria-label",
|
9405
|
-
"reflects": true,
|
9406
|
-
"inheritedFrom": {
|
9407
|
-
"name": "DataAriaLabelMixin",
|
9408
|
-
"module": "utils/mixins/DataAriaLabelMixin.js"
|
9409
|
-
}
|
9410
|
-
},
|
9411
|
-
{
|
9412
|
-
"kind": "field",
|
9413
|
-
"name": "disabled",
|
9414
|
-
"type": {
|
9415
|
-
"text": "boolean | undefined"
|
9416
|
-
},
|
9417
|
-
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
9418
|
-
"default": "undefined",
|
9419
|
-
"attribute": "disabled",
|
9420
|
-
"reflects": true,
|
9421
|
-
"inheritedFrom": {
|
9422
|
-
"name": "DisabledMixin",
|
9423
|
-
"module": "utils/mixins/DisabledMixin.js"
|
9424
|
-
}
|
9425
|
-
}
|
9426
|
-
],
|
9427
|
-
"attributes": [
|
9428
|
-
{
|
9429
|
-
"name": "label",
|
9430
|
-
"type": {
|
9431
|
-
"text": "string | undefined"
|
9432
|
-
},
|
9433
|
-
"description": "The header text to be displayed on the top of the options list.",
|
9434
|
-
"fieldName": "label"
|
9435
|
-
},
|
9436
|
-
{
|
9437
|
-
"name": "data-aria-label",
|
9438
|
-
"type": {
|
9439
|
-
"text": "string | null"
|
9440
|
-
},
|
9441
|
-
"default": "null",
|
9442
|
-
"description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
|
9443
|
-
"fieldName": "dataAriaLabel",
|
9444
|
-
"inheritedFrom": {
|
9445
|
-
"name": "DataAriaLabelMixin",
|
9446
|
-
"module": "src/utils/mixins/DataAriaLabelMixin.ts"
|
9447
|
-
}
|
9448
|
-
},
|
9449
|
-
{
|
9450
|
-
"name": "disabled",
|
9451
|
-
"type": {
|
9452
|
-
"text": "boolean | undefined"
|
9453
|
-
},
|
9454
|
-
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
9455
|
-
"default": "undefined",
|
9456
|
-
"fieldName": "disabled",
|
9457
|
-
"inheritedFrom": {
|
9458
|
-
"name": "DisabledMixin",
|
9459
|
-
"module": "src/utils/mixins/DisabledMixin.ts"
|
9460
|
-
}
|
9461
|
-
}
|
9462
|
-
],
|
9463
|
-
"mixins": [
|
9464
|
-
{
|
9465
|
-
"name": "DataAriaLabelMixin",
|
9466
|
-
"module": "/src/utils/mixins/DataAriaLabelMixin"
|
9467
|
-
},
|
9468
|
-
{
|
9469
|
-
"name": "DisabledMixin",
|
9470
|
-
"module": "/src/utils/mixins/DisabledMixin"
|
9471
|
-
}
|
9472
|
-
],
|
9473
|
-
"superclass": {
|
9474
|
-
"name": "Component",
|
9475
|
-
"module": "/src/models"
|
9476
|
-
},
|
9477
|
-
"tagName": "mdc-optgroup",
|
9478
|
-
"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 */",
|
9479
|
-
"customElement": true
|
9480
|
-
}
|
9481
|
-
],
|
9482
|
-
"exports": [
|
9483
|
-
{
|
9484
|
-
"kind": "js",
|
9485
|
-
"name": "default",
|
9486
|
-
"declaration": {
|
9487
|
-
"name": "OptGroup",
|
9488
|
-
"module": "components/optgroup/optgroup.component.js"
|
9489
|
-
}
|
9490
|
-
}
|
9491
|
-
]
|
9492
|
-
},
|
9493
9630
|
{
|
9494
9631
|
"kind": "javascript-module",
|
9495
9632
|
"path": "components/option/option.component.js",
|
@@ -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": {
|