@momentum-design/components 0.22.5 → 0.22.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1192,442 +1192,402 @@
1192
1192
  },
1193
1193
  {
1194
1194
  "kind": "javascript-module",
1195
- "path": "components/button/button.component.js",
1195
+ "path": "components/checkbox/checkbox.component.js",
1196
1196
  "declarations": [
1197
1197
  {
1198
1198
  "kind": "class",
1199
- "description": "`mdc-button` is a component that can be configured in various ways to suit different use cases.\n\nButton Variants:\n- **Primary**: Solid background color.\n- **Secondary**: Transparent background with a solid border.\n- **Tertiary**: No background or border, appears as plain text but retains all button functionalities.\n\nButton Colors:\n- **Positive**: Green color.\n- **Negative**: Red color.\n- **Accent**: Blue color.\n- **Promotional**: Purple color.\n- **Default**: White color.\n\nButton Sizes (in REM units):\n- **Pill button**: 40, 32, 28, 24.\n- **Icon button**: 64, 52, 40, 32, 28, 24.\n- **Tertiary icon button**: 20.\n\nButton Types:\n- **Pill button**: A button that contains text value. Commonly used for call to action, tags, or filters.\n- **Pill button with icons**: A button containing an icon either on the left or right side of the button.\n- **Icon button**: A button represented by just an icon without any text.\nThe type of button is inferred based on the presence of slot and/or prefix and postfix icons.",
1200
- "name": "Button",
1201
- "slots": [
1199
+ "description": "Checkboxes allow users to select multiple options from a list or turn an item/feature on or off.\nThese are often used in forms, settings, and selections in lists.\n\nA checkbox component contains an optional label and an optional helper text.",
1200
+ "name": "Checkbox",
1201
+ "cssProperties": [
1202
1202
  {
1203
- "description": "Text label of the button.",
1204
- "name": ""
1205
- }
1206
- ],
1207
- "members": [
1203
+ "description": "Allows customization of the background color on hover.",
1204
+ "name": "--mdc-checkbox-background-color-hover"
1205
+ },
1208
1206
  {
1209
- "kind": "field",
1210
- "name": "prefixIcon",
1211
- "type": {
1212
- "text": "string | undefined"
1213
- },
1214
- "description": "The name of the icon to display as a prefix.\nThe icon is displayed on the left side of the button.",
1215
- "attribute": "prefix-icon",
1216
- "reflects": true
1207
+ "description": "Border color in high contrast.",
1208
+ "name": "--mdc-checkbox-border-color"
1217
1209
  },
1218
1210
  {
1219
- "kind": "field",
1220
- "name": "postfixIcon",
1221
- "type": {
1222
- "text": "string | undefined"
1223
- },
1224
- "description": "The name of the icon to display as a postfix.\nThe icon is displayed on the right side of the button.",
1225
- "attribute": "postfix-icon",
1226
- "reflects": true
1211
+ "description": "Background color for a selected checkbox.",
1212
+ "name": "--mdc-checkbox-checked-background-color"
1227
1213
  },
1228
1214
  {
1229
- "kind": "field",
1230
- "name": "variant",
1231
- "type": {
1232
- "text": "ButtonVariant"
1233
- },
1234
- "description": "There are 3 variants of button: primary, secondary, tertiary. They are styled differently.\n- **Primary**: Solid background color.\n- **Secondary**: Transparent background with a solid border.\n- **Tertiary**: No background or border, appears as plain text but retains all button functionalities.",
1235
- "default": "primary",
1236
- "attribute": "variant"
1215
+ "description": "Background color for a selected checkbox when hovered.",
1216
+ "name": "--mdc-checkbox-checked-background-color-hover"
1237
1217
  },
1238
1218
  {
1239
- "kind": "field",
1240
- "name": "size",
1241
- "type": {
1242
- "text": "ButtonSize"
1243
- },
1244
- "description": "Button sizing is based on the button type.\n- **Pill button**: 40, 32, 28, 24.\n- **Icon button**: 64, 52, 40, 32, 28, 24.\n- Tertiary icon button can also be 20.",
1245
- "default": "32",
1246
- "attribute": "size",
1247
- "reflects": true,
1248
- "inheritedFrom": {
1249
- "name": "Buttonsimple",
1250
- "module": "components/buttonsimple/buttonsimple.component.js"
1251
- }
1219
+ "description": "Background color for a selected checkbox when pressed.",
1220
+ "name": "--mdc-checkbox-checked-pressed-icon-color"
1221
+ },
1222
+ {
1223
+ "description": "Background color for a disabled checkbox.",
1224
+ "name": "--mdc-checkbox-disabled-background-color"
1225
+ },
1226
+ {
1227
+ "description": "Border color for a disabled checkbox.",
1228
+ "name": "--mdc-checkbox-disabled-border-color"
1229
+ },
1230
+ {
1231
+ "description": "Background color for a disabled, selected checkbox.",
1232
+ "name": "--mdc-checkbox-disabled-checked-icon-color"
1233
+ },
1234
+ {
1235
+ "description": "Icon color for a disabled checkbox.",
1236
+ "name": "--mdc-checkbox-disabled-icon-color"
1237
+ },
1238
+ {
1239
+ "description": "Background color for an unselected checkbox.",
1240
+ "name": "--mdc-checkbox-icon-background-color"
1241
+ },
1242
+ {
1243
+ "description": "Default background color for an unselected checkbox.",
1244
+ "name": "--mdc-checkbox-icon-border-color"
1245
+ },
1246
+ {
1247
+ "description": "Icon color for an unselected checkbox.",
1248
+ "name": "--mdc-checkbox-icon-color"
1252
1249
  },
1250
+ {
1251
+ "description": "Background color for a selected checkbox when pressed.",
1252
+ "name": "--mdc-checkbox-pressed-icon-color"
1253
+ }
1254
+ ],
1255
+ "members": [
1253
1256
  {
1254
1257
  "kind": "field",
1255
- "name": "color",
1258
+ "name": "checked",
1256
1259
  "type": {
1257
- "text": "ButtonColor"
1260
+ "text": "boolean"
1258
1261
  },
1259
- "description": "There are 5 colors for button: positive, negative, accent, promotional, default.",
1260
- "default": "default",
1261
- "attribute": "color"
1262
+ "default": "false",
1263
+ "description": "Determines whether the checkbox is selected or unselected.",
1264
+ "attribute": "checked",
1265
+ "reflects": true
1262
1266
  },
1263
1267
  {
1264
1268
  "kind": "field",
1265
- "name": "role",
1266
- "description": "This property defines the ARIA role for the element. By default, it is set to 'button'.\nConsumers should override this role when:\n- The element is being used in a context where a different role is more appropriate.\n- Custom behaviors are implemented that require a specific ARIA role for accessibility purposes.",
1267
- "default": "'button'",
1268
- "attribute": "role",
1269
- "reflects": true,
1269
+ "name": "indeterminate",
1270
1270
  "type": {
1271
- "text": "string"
1271
+ "text": "boolean"
1272
1272
  },
1273
- "inheritedFrom": {
1274
- "name": "Buttonsimple",
1275
- "module": "components/buttonsimple/buttonsimple.component.js"
1276
- }
1273
+ "default": "false",
1274
+ "description": "This property is used to determine the parent checkbox in a nested checkbox group.\nIf any one of the children is unselected, then the parent checkbox will be indeterminate.\nIf all children are either selected or unselected, then the parent checkbox will not be indeterminate.",
1275
+ "attribute": "indeterminate",
1276
+ "reflects": true
1277
1277
  },
1278
1278
  {
1279
1279
  "kind": "method",
1280
- "name": "modifyIconName",
1280
+ "name": "setFormValue",
1281
1281
  "privacy": "private",
1282
- "parameters": [
1283
- {
1284
- "name": "active",
1285
- "type": {
1286
- "text": "boolean"
1287
- },
1288
- "description": "The active state."
1289
- }
1290
- ],
1291
- "description": "Modifies the icon name based on the active state.\nIf the button is active, the icon name is suffixed with '-filled'.\nIf the button is inactive, the icon name is restored to its original value.\nIf '-filled' icon is not available, the icon name remains unchanged."
1282
+ "description": "Updates the form value to reflect the current state of the checkbox.\nIf checked, the value is set to either the user-provided value or 'on' if no value is provided.\nIf unchecked, the value is set to null."
1292
1283
  },
1293
1284
  {
1294
1285
  "kind": "method",
1295
- "name": "setVariant",
1286
+ "name": "toggleState",
1296
1287
  "privacy": "private",
1297
- "parameters": [
1298
- {
1299
- "name": "variant",
1300
- "type": {
1301
- "text": "ButtonVariant"
1302
- },
1303
- "description": "The variant to set."
1288
+ "return": {
1289
+ "type": {
1290
+ "text": "void"
1304
1291
  }
1305
- ],
1306
- "description": "Sets the variant attribute for the button component.\nIf the provided variant is not included in the BUTTON_VARIANTS,\nit defaults to the value specified in DEFAULTS.VARIANT."
1292
+ },
1293
+ "description": "Toggles the state of the checkbox element.\nIf the element is not disabled, then\nthe checked property is toggled and the indeterminate property is set to false."
1307
1294
  },
1308
1295
  {
1309
1296
  "kind": "method",
1310
- "name": "setSize",
1311
- "privacy": "private",
1297
+ "name": "handleChange",
1298
+ "privacy": "public",
1299
+ "return": {
1300
+ "type": {
1301
+ "text": "void"
1302
+ }
1303
+ },
1312
1304
  "parameters": [
1313
1305
  {
1314
- "name": "size",
1306
+ "name": "event",
1315
1307
  "type": {
1316
- "text": "PillButtonSize | IconButtonSize"
1317
- },
1318
- "description": "The size to set."
1308
+ "text": "Event"
1309
+ }
1319
1310
  }
1320
1311
  ],
1321
- "description": "Sets the size attribute for the button component.\nValidates the size based on the button type (icon, pill, or tertiary).\nDefaults to DEFAULTS.SIZE if invalid."
1312
+ "description": "Toggles the state of the checkbox element.\nand dispatch the new change event."
1322
1313
  },
1323
1314
  {
1324
1315
  "kind": "method",
1325
- "name": "setColor",
1316
+ "name": "handleKeyDown",
1326
1317
  "privacy": "private",
1318
+ "return": {
1319
+ "type": {
1320
+ "text": "void"
1321
+ }
1322
+ },
1327
1323
  "parameters": [
1328
1324
  {
1329
- "name": "color",
1325
+ "name": "event",
1330
1326
  "type": {
1331
- "text": "ButtonColor"
1327
+ "text": "KeyboardEvent"
1332
1328
  },
1333
- "description": "The color to set."
1329
+ "description": "The keyboard event."
1334
1330
  }
1335
1331
  ],
1336
- "description": "Sets the color attribute for the button.\nDefaults to DEFAULTS.COLOR if invalid or for tertiary buttons."
1332
+ "description": "Handles the keydown event on the checkbox.\nWhen the user presses Enter, the form is submitted."
1337
1333
  },
1338
1334
  {
1339
- "kind": "method",
1340
- "name": "inferButtonType",
1341
- "privacy": "private",
1342
- "description": "Infers the type of button based on the presence of slot and/or prefix and postfix icons.",
1343
- "parameters": [
1344
- {
1345
- "description": "default slot of button",
1346
- "name": "slot"
1347
- }
1348
- ]
1335
+ "kind": "field",
1336
+ "name": "internals"
1349
1337
  },
1350
1338
  {
1351
1339
  "kind": "field",
1352
- "name": "tabIndex",
1340
+ "name": "helpTextType",
1353
1341
  "type": {
1354
- "text": "number"
1342
+ "text": "ValidationType"
1355
1343
  },
1356
- "default": "0",
1357
- "description": "This property specifies the tab order of the element.",
1358
- "attribute": "tabIndex",
1344
+ "description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
1345
+ "attribute": "help-text-type",
1359
1346
  "reflects": true,
1347
+ "default": "undefined as unknown",
1360
1348
  "inheritedFrom": {
1361
- "name": "TabIndexMixin",
1362
- "module": "utils/mixins/TabIndexMixin.js"
1349
+ "name": "FormfieldWrapper",
1350
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
1363
1351
  }
1364
1352
  },
1365
1353
  {
1366
1354
  "kind": "field",
1367
- "name": "disabled",
1355
+ "name": "name",
1368
1356
  "type": {
1369
- "text": "boolean"
1357
+ "text": "string"
1370
1358
  },
1371
- "default": "false",
1372
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
1373
- "attribute": "disabled",
1359
+ "default": "''",
1360
+ "description": "Indicates the name of the component group (ex: checkbox, radio group).\nThey are used to group elements in a form together.",
1361
+ "attribute": "name",
1374
1362
  "reflects": true,
1375
1363
  "inheritedFrom": {
1376
- "name": "DisabledMixin",
1377
- "module": "utils/mixins/DisabledMixin.js"
1364
+ "name": "NameMixin",
1365
+ "module": "utils/mixins/NameMixin.js"
1378
1366
  }
1379
1367
  },
1380
1368
  {
1381
1369
  "kind": "field",
1382
- "name": "active",
1370
+ "name": "value",
1383
1371
  "type": {
1384
- "text": "boolean"
1372
+ "text": "string"
1385
1373
  },
1386
- "default": "false",
1387
- "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.",
1388
- "attribute": "active",
1374
+ "default": "''",
1375
+ "description": "Indicates the value of the component group (ex: input, checkbox, radio, select etc...)",
1376
+ "attribute": "value",
1389
1377
  "reflects": true,
1390
1378
  "inheritedFrom": {
1391
- "name": "Buttonsimple",
1392
- "module": "components/buttonsimple/buttonsimple.component.js"
1379
+ "name": "ValueMixin",
1380
+ "module": "utils/mixins/ValueMixin.js"
1393
1381
  }
1394
1382
  },
1395
1383
  {
1396
1384
  "kind": "field",
1397
- "name": "softDisabled",
1385
+ "name": "dataAriaLabel",
1398
1386
  "type": {
1399
- "text": "boolean"
1387
+ "text": "string | null"
1400
1388
  },
1401
- "default": "false",
1402
- "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.",
1403
- "attribute": "soft-disabled",
1389
+ "default": "null",
1390
+ "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
1391
+ "attribute": "data-aria-label",
1392
+ "reflects": true,
1404
1393
  "inheritedFrom": {
1405
- "name": "Buttonsimple",
1406
- "module": "components/buttonsimple/buttonsimple.component.js"
1394
+ "name": "DataAriaLabelMixin",
1395
+ "module": "utils/mixins/DataAriaLabelMixin.js"
1407
1396
  }
1408
1397
  },
1409
1398
  {
1410
1399
  "kind": "field",
1411
- "name": "type",
1400
+ "name": "disabled",
1412
1401
  "type": {
1413
- "text": "ButtonType"
1402
+ "text": "boolean"
1414
1403
  },
1415
- "description": "This property defines the type attribute for the button element.\nThe type attribute specifies the behavior of the button when it is clicked.\n- **submit**: The button submits the form data to the server.\n- **reset**: The button resets the form data to its initial state.\n- **button**: The button does nothing when clicked.",
1416
- "default": "button",
1417
- "attribute": "type",
1404
+ "default": "false",
1405
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
1406
+ "attribute": "disabled",
1418
1407
  "reflects": true,
1419
1408
  "inheritedFrom": {
1420
- "name": "Buttonsimple",
1421
- "module": "components/buttonsimple/buttonsimple.component.js"
1409
+ "name": "DisabledMixin",
1410
+ "module": "utils/mixins/DisabledMixin.js"
1422
1411
  }
1423
1412
  },
1424
1413
  {
1425
- "kind": "method",
1426
- "name": "executeAction",
1427
- "privacy": "protected",
1414
+ "kind": "field",
1415
+ "name": "label",
1416
+ "type": {
1417
+ "text": "string | undefined"
1418
+ },
1419
+ "description": "The label of the input field. It is linked to the input field using the `for` attribute.",
1420
+ "attribute": "label",
1421
+ "reflects": true,
1428
1422
  "inheritedFrom": {
1429
- "name": "Buttonsimple",
1430
- "module": "components/buttonsimple/buttonsimple.component.js"
1423
+ "name": "FormfieldWrapper",
1424
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
1431
1425
  }
1432
1426
  },
1433
1427
  {
1434
- "kind": "method",
1435
- "name": "setActive",
1436
- "privacy": "protected",
1437
- "parameters": [
1438
- {
1439
- "name": "element",
1440
- "type": {
1441
- "text": "HTMLElement"
1442
- },
1443
- "description": "The button element"
1444
- },
1445
- {
1446
- "name": "active",
1447
- "type": {
1448
- "text": "boolean"
1449
- },
1450
- "description": "The active state of the element"
1451
- }
1452
- ],
1453
- "description": "Sets the aria-pressed attribute based on the active state of the button.",
1428
+ "kind": "field",
1429
+ "name": "id",
1430
+ "default": "`mdc-input-${uuidv4()}`",
1431
+ "description": "The unique id of the input field. It is used to link the input field with the label.",
1432
+ "attribute": "id",
1454
1433
  "inheritedFrom": {
1455
- "name": "Buttonsimple",
1456
- "module": "components/buttonsimple/buttonsimple.component.js"
1434
+ "name": "FormfieldWrapper",
1435
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
1436
+ }
1437
+ },
1438
+ {
1439
+ "kind": "field",
1440
+ "name": "helpText",
1441
+ "type": {
1442
+ "text": "string | undefined"
1443
+ },
1444
+ "description": "The help text that is displayed below the input field.",
1445
+ "attribute": "help-text",
1446
+ "reflects": true,
1447
+ "inheritedFrom": {
1448
+ "name": "FormfieldWrapper",
1449
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
1457
1450
  }
1458
1451
  },
1459
1452
  {
1460
1453
  "kind": "method",
1461
- "name": "setSoftDisabled",
1462
- "privacy": "private",
1463
- "parameters": [
1464
- {
1465
- "name": "element",
1466
- "type": {
1467
- "text": "HTMLElement"
1468
- },
1469
- "description": "The button element."
1470
- },
1471
- {
1472
- "name": "softDisabled",
1473
- "type": {
1474
- "text": "boolean"
1475
- },
1476
- "description": "The soft-disabled state."
1454
+ "name": "renderLabelElement",
1455
+ "privacy": "protected",
1456
+ "description": "creates the label element when the label property is set.\nid is used to link the label with the input field.",
1457
+ "return": {
1458
+ "type": {
1459
+ "text": ""
1477
1460
  }
1478
- ],
1479
- "description": "Sets the soft-disabled attribute for the button.\nWhen soft-disabled, the button looks to be disabled but remains focusable and clickable.\nAlso sets/removes aria-disabled attribute.",
1461
+ },
1480
1462
  "inheritedFrom": {
1481
- "name": "Buttonsimple",
1482
- "module": "components/buttonsimple/buttonsimple.component.js"
1463
+ "name": "FormfieldWrapper",
1464
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
1483
1465
  }
1484
1466
  },
1485
1467
  {
1486
1468
  "kind": "method",
1487
- "name": "setDisabled",
1488
- "privacy": "private",
1489
- "parameters": [
1490
- {
1491
- "name": "element",
1492
- "type": {
1493
- "text": "HTMLElement"
1494
- },
1495
- "description": "The button element."
1496
- },
1497
- {
1498
- "name": "disabled",
1499
- "type": {
1500
- "text": "boolean"
1501
- },
1502
- "description": "The disabled state."
1469
+ "name": "renderHelpTextIcon",
1470
+ "privacy": "protected",
1471
+ "description": "creates the helpertext icon based on the helpTextType for validation.\nIf the helpTextType is not set, it defaults to 'default' and it doesn't display any icon.",
1472
+ "return": {
1473
+ "type": {
1474
+ "text": ""
1503
1475
  }
1504
- ],
1505
- "description": "Sets the disabled attribute for the button.\nWhen disabled, the button is not focusable or clickable, and tabindex is set to -1.\nThe previous tabindex is stored and restored when enabled.\nAlso sets/removes aria-disabled attribute.",
1476
+ },
1506
1477
  "inheritedFrom": {
1507
- "name": "Buttonsimple",
1508
- "module": "components/buttonsimple/buttonsimple.component.js"
1478
+ "name": "FormfieldWrapper",
1479
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
1509
1480
  }
1510
1481
  },
1511
1482
  {
1512
1483
  "kind": "method",
1513
- "name": "triggerClickEvent",
1514
- "privacy": "private",
1484
+ "name": "renderHelpText",
1485
+ "privacy": "protected",
1486
+ "description": "creates the helper text component when the helpertext value is set.\nIt is also used to display the validation message based on the helpTextType.",
1487
+ "return": {
1488
+ "type": {
1489
+ "text": ""
1490
+ }
1491
+ },
1515
1492
  "inheritedFrom": {
1516
- "name": "Buttonsimple",
1517
- "module": "components/buttonsimple/buttonsimple.component.js"
1493
+ "name": "FormfieldWrapper",
1494
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
1518
1495
  }
1519
1496
  },
1520
1497
  {
1521
1498
  "kind": "method",
1522
- "name": "handleKeyDown",
1523
- "privacy": "private",
1524
- "parameters": [
1525
- {
1526
- "name": "event",
1527
- "type": {
1528
- "text": "KeyboardEvent"
1529
- },
1530
- "description": "The keyboard event."
1499
+ "name": "renderLabel",
1500
+ "privacy": "protected",
1501
+ "description": "renders the mdc-label-text container that contains the label and labelInfoToggleTip.",
1502
+ "return": {
1503
+ "type": {
1504
+ "text": ""
1531
1505
  }
1532
- ],
1533
- "description": "Handles the keydown event on the button.\nIf the key is 'Enter' or 'Space', the button is pressed.\nIf the key is 'Enter', the button is pressed. The native HTML button works in the same way.",
1506
+ },
1534
1507
  "inheritedFrom": {
1535
- "name": "Buttonsimple",
1536
- "module": "components/buttonsimple/buttonsimple.component.js"
1508
+ "name": "FormfieldWrapper",
1509
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
1537
1510
  }
1538
1511
  },
1539
1512
  {
1540
1513
  "kind": "method",
1541
- "name": "handleKeyUp",
1542
- "privacy": "private",
1543
- "parameters": [
1544
- {
1545
- "name": "event",
1546
- "type": {
1547
- "text": "KeyboardEvent"
1548
- },
1549
- "description": "The keyboard event."
1514
+ "name": "renderHelperText",
1515
+ "privacy": "protected",
1516
+ "description": "renders the mdc-help-text container that contains the helpertext icon and helpertext.",
1517
+ "return": {
1518
+ "type": {
1519
+ "text": ""
1550
1520
  }
1551
- ],
1552
- "description": "Handles the keyup event on the button.\nIf the key is 'Enter' or 'Space', the button is clicked.\nIf the key is 'Space', the button is pressed. The native HTML button works in the same way.",
1521
+ },
1553
1522
  "inheritedFrom": {
1554
- "name": "Buttonsimple",
1555
- "module": "components/buttonsimple/buttonsimple.component.js"
1523
+ "name": "FormfieldWrapper",
1524
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
1556
1525
  }
1557
1526
  }
1558
1527
  ],
1559
- "attributes": [
1528
+ "events": [
1560
1529
  {
1561
- "name": "prefix-icon",
1562
1530
  "type": {
1563
- "text": "string | undefined"
1564
- },
1565
- "description": "The name of the icon to display as a prefix.\nThe icon is displayed on the left side of the button.",
1566
- "fieldName": "prefixIcon"
1567
- },
1531
+ "text": "EventConstructor"
1532
+ }
1533
+ }
1534
+ ],
1535
+ "attributes": [
1568
1536
  {
1569
- "name": "postfix-icon",
1537
+ "name": "checked",
1570
1538
  "type": {
1571
- "text": "string | undefined"
1539
+ "text": "boolean"
1572
1540
  },
1573
- "description": "The name of the icon to display as a postfix.\nThe icon is displayed on the right side of the button.",
1574
- "fieldName": "postfixIcon"
1541
+ "default": "false",
1542
+ "description": "Determines whether the checkbox is selected or unselected.",
1543
+ "fieldName": "checked"
1575
1544
  },
1576
1545
  {
1577
- "name": "variant",
1546
+ "name": "indeterminate",
1578
1547
  "type": {
1579
- "text": "ButtonVariant"
1548
+ "text": "boolean"
1580
1549
  },
1581
- "description": "There are 3 variants of button: primary, secondary, tertiary. They are styled differently.\n- **Primary**: Solid background color.\n- **Secondary**: Transparent background with a solid border.\n- **Tertiary**: No background or border, appears as plain text but retains all button functionalities.",
1582
- "default": "primary",
1583
- "fieldName": "variant"
1550
+ "default": "false",
1551
+ "description": "This property is used to determine the parent checkbox in a nested checkbox group.\nIf any one of the children is unselected, then the parent checkbox will be indeterminate.\nIf all children are either selected or unselected, then the parent checkbox will not be indeterminate.",
1552
+ "fieldName": "indeterminate"
1584
1553
  },
1585
1554
  {
1586
- "name": "size",
1555
+ "name": "name",
1587
1556
  "type": {
1588
- "text": "ButtonSize"
1557
+ "text": "string"
1589
1558
  },
1590
- "description": "Button sizing is based on the button type.\n- **Pill button**: 40, 32, 28, 24.\n- **Icon button**: 64, 52, 40, 32, 28, 24.\n- Tertiary icon button can also be 20.",
1591
- "default": "32",
1592
- "fieldName": "size",
1559
+ "default": "''",
1560
+ "description": "Indicates the name of the component group (ex: checkbox, radio group).\nThey are used to group elements in a form together.",
1561
+ "fieldName": "name",
1593
1562
  "inheritedFrom": {
1594
- "name": "Buttonsimple",
1595
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
1563
+ "name": "NameMixin",
1564
+ "module": "src/utils/mixins/NameMixin.ts"
1596
1565
  }
1597
1566
  },
1598
1567
  {
1599
- "name": "color",
1600
- "type": {
1601
- "text": "ButtonColor"
1602
- },
1603
- "description": "There are 5 colors for button: positive, negative, accent, promotional, default.",
1604
- "default": "default",
1605
- "fieldName": "color"
1606
- },
1607
- {
1608
- "name": "role",
1609
- "description": "This property defines the ARIA role for the element. By default, it is set to 'button'.\nConsumers should override this role when:\n- The element is being used in a context where a different role is more appropriate.\n- Custom behaviors are implemented that require a specific ARIA role for accessibility purposes.",
1610
- "default": "'button'",
1611
- "fieldName": "role",
1568
+ "name": "value",
1612
1569
  "type": {
1613
1570
  "text": "string"
1614
1571
  },
1572
+ "default": "''",
1573
+ "description": "Indicates the value of the component group (ex: input, checkbox, radio, select etc...)",
1574
+ "fieldName": "value",
1615
1575
  "inheritedFrom": {
1616
- "name": "Buttonsimple",
1617
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
1576
+ "name": "ValueMixin",
1577
+ "module": "src/utils/mixins/ValueMixin.ts"
1618
1578
  }
1619
1579
  },
1620
1580
  {
1621
- "name": "tabIndex",
1581
+ "name": "data-aria-label",
1622
1582
  "type": {
1623
- "text": "number"
1583
+ "text": "string | null"
1624
1584
  },
1625
- "default": "0",
1626
- "description": "This property specifies the tab order of the element.",
1627
- "fieldName": "tabIndex",
1585
+ "default": "null",
1586
+ "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
1587
+ "fieldName": "dataAriaLabel",
1628
1588
  "inheritedFrom": {
1629
- "name": "TabIndexMixin",
1630
- "module": "src/utils/mixins/TabIndexMixin.ts"
1589
+ "name": "DataAriaLabelMixin",
1590
+ "module": "src/utils/mixins/DataAriaLabelMixin.ts"
1631
1591
  }
1632
1592
  },
1633
1593
  {
@@ -1644,52 +1604,83 @@
1644
1604
  }
1645
1605
  },
1646
1606
  {
1647
- "name": "active",
1607
+ "name": "label",
1648
1608
  "type": {
1649
- "text": "boolean"
1609
+ "text": "string | undefined"
1650
1610
  },
1651
- "default": "false",
1652
- "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.",
1653
- "fieldName": "active",
1611
+ "description": "The label of the input field. It is linked to the input field using the `for` attribute.",
1612
+ "fieldName": "label",
1654
1613
  "inheritedFrom": {
1655
- "name": "Buttonsimple",
1656
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
1614
+ "name": "FormfieldWrapper",
1615
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
1657
1616
  }
1658
1617
  },
1659
1618
  {
1660
- "name": "soft-disabled",
1619
+ "name": "id",
1620
+ "default": "`mdc-input-${uuidv4()}`",
1621
+ "description": "The unique id of the input field. It is used to link the input field with the label.",
1622
+ "fieldName": "id",
1623
+ "inheritedFrom": {
1624
+ "name": "FormfieldWrapper",
1625
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
1626
+ }
1627
+ },
1628
+ {
1629
+ "name": "help-text-type",
1661
1630
  "type": {
1662
- "text": "boolean"
1631
+ "text": "ValidationType"
1663
1632
  },
1664
- "default": "false",
1665
- "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.",
1666
- "fieldName": "softDisabled",
1633
+ "description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
1634
+ "fieldName": "helpTextType",
1667
1635
  "inheritedFrom": {
1668
- "name": "Buttonsimple",
1669
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
1636
+ "name": "FormfieldWrapper",
1637
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
1670
1638
  }
1671
1639
  },
1672
1640
  {
1673
- "name": "type",
1641
+ "name": "help-text",
1674
1642
  "type": {
1675
- "text": "ButtonType"
1643
+ "text": "string | undefined"
1676
1644
  },
1677
- "description": "This property defines the type attribute for the button element.\nThe type attribute specifies the behavior of the button when it is clicked.\n- **submit**: The button submits the form data to the server.\n- **reset**: The button resets the form data to its initial state.\n- **button**: The button does nothing when clicked.",
1678
- "default": "button",
1679
- "fieldName": "type",
1645
+ "description": "The help text that is displayed below the input field.",
1646
+ "fieldName": "helpText",
1680
1647
  "inheritedFrom": {
1681
- "name": "Buttonsimple",
1682
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
1648
+ "name": "FormfieldWrapper",
1649
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
1683
1650
  }
1684
1651
  }
1685
1652
  ],
1653
+ "mixins": [
1654
+ {
1655
+ "name": "NameMixin",
1656
+ "module": "/src/utils/mixins/NameMixin"
1657
+ },
1658
+ {
1659
+ "name": "ValueMixin",
1660
+ "module": "/src/utils/mixins/ValueMixin"
1661
+ },
1662
+ {
1663
+ "name": "DataAriaLabelMixin",
1664
+ "module": "/src/utils/mixins/DataAriaLabelMixin"
1665
+ }
1666
+ ],
1686
1667
  "superclass": {
1687
- "name": "Buttonsimple",
1688
- "module": "/src/components/buttonsimple/buttonsimple.component"
1668
+ "name": "FormfieldWrapper",
1669
+ "module": "/src/components/formfieldwrapper/formfieldwrapper.component"
1689
1670
  },
1690
- "tagName": "mdc-button",
1691
- "jsDoc": "/**\n * `mdc-button` is a component that can be configured in various ways to suit different use cases.\n *\n * Button Variants:\n * - **Primary**: Solid background color.\n * - **Secondary**: Transparent background with a solid border.\n * - **Tertiary**: No background or border, appears as plain text but retains all button functionalities.\n *\n * Button Colors:\n * - **Positive**: Green color.\n * - **Negative**: Red color.\n * - **Accent**: Blue color.\n * - **Promotional**: Purple color.\n * - **Default**: White color.\n *\n * Button Sizes (in REM units):\n * - **Pill button**: 40, 32, 28, 24.\n * - **Icon button**: 64, 52, 40, 32, 28, 24.\n * - **Tertiary icon button**: 20.\n *\n * Button Types:\n * - **Pill button**: A button that contains text value. Commonly used for call to action, tags, or filters.\n * - **Pill button with icons**: A button containing an icon either on the left or right side of the button.\n * - **Icon button**: A button represented by just an icon without any text.\n * The type of button is inferred based on the presence of slot and/or prefix and postfix icons.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-button\n *\n * @slot - Text label of the button.\n */",
1692
- "customElement": true
1671
+ "tagName": "mdc-checkbox",
1672
+ "jsDoc": "/**\n * Checkboxes allow users to select multiple options from a list or turn an item/feature on or off.\n * These are often used in forms, settings, and selections in lists.\n *\n * A checkbox component contains an optional label and an optional helper text.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-checkbox\n *\n * @cssproperty --mdc-checkbox-background-color-hover - Allows customization of the background color on hover.\n * @cssproperty --mdc-checkbox-border-color - Border color in high contrast.\n * @cssproperty --mdc-checkbox-checked-background-color - Background color for a selected checkbox.\n * @cssproperty --mdc-checkbox-checked-background-color-hover - Background color for a selected checkbox when hovered.\n * @cssproperty --mdc-checkbox-checked-pressed-icon-color - Background color for a selected checkbox when pressed.\n * @cssproperty --mdc-checkbox-disabled-background-color - Background color for a disabled checkbox.\n * @cssproperty --mdc-checkbox-disabled-border-color - Border color for a disabled checkbox.\n * @cssproperty --mdc-checkbox-disabled-checked-icon-color - Background color for a disabled, selected checkbox.\n * @cssproperty --mdc-checkbox-disabled-icon-color - Icon color for a disabled checkbox.\n * @cssproperty --mdc-checkbox-icon-background-color - Background color for an unselected checkbox.\n * @cssproperty --mdc-checkbox-icon-border-color - Default background color for an unselected checkbox.\n * @cssproperty --mdc-checkbox-icon-color - Icon color for an unselected checkbox.\n * @cssproperty --mdc-checkbox-pressed-icon-color - Background color for a selected checkbox when pressed.\n */",
1673
+ "customElement": true,
1674
+ "slots": [
1675
+ {
1676
+ "description": "slot to add the label info icon",
1677
+ "name": "label-info",
1678
+ "inheritedFrom": {
1679
+ "name": "FormfieldWrapper",
1680
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
1681
+ }
1682
+ }
1683
+ ]
1693
1684
  }
1694
1685
  ],
1695
1686
  "exports": [
@@ -1697,8 +1688,8 @@
1697
1688
  "kind": "js",
1698
1689
  "name": "default",
1699
1690
  "declaration": {
1700
- "name": "Button",
1701
- "module": "components/button/button.component.js"
1691
+ "name": "Checkbox",
1692
+ "module": "components/checkbox/checkbox.component.js"
1702
1693
  }
1703
1694
  }
1704
1695
  ]
@@ -2002,382 +1993,442 @@
2002
1993
  },
2003
1994
  {
2004
1995
  "kind": "javascript-module",
2005
- "path": "components/checkbox/checkbox.component.js",
1996
+ "path": "components/button/button.component.js",
2006
1997
  "declarations": [
2007
1998
  {
2008
1999
  "kind": "class",
2009
- "description": "Checkboxes allow users to select multiple options from a list or turn an item/feature on or off.\nThese are often used in forms, settings, and selections in lists.\n\nA checkbox component contains an optional label and an optional helper text.",
2010
- "name": "Checkbox",
2011
- "cssProperties": [
2012
- {
2013
- "description": "Allows customization of the background color on hover.",
2014
- "name": "--mdc-checkbox-background-color-hover"
2015
- },
2016
- {
2017
- "description": "Border color in high contrast.",
2018
- "name": "--mdc-checkbox-border-color"
2019
- },
2020
- {
2021
- "description": "Background color for a selected checkbox.",
2022
- "name": "--mdc-checkbox-checked-background-color"
2023
- },
2024
- {
2025
- "description": "Background color for a selected checkbox when hovered.",
2026
- "name": "--mdc-checkbox-checked-background-color-hover"
2027
- },
2028
- {
2029
- "description": "Background color for a selected checkbox when pressed.",
2030
- "name": "--mdc-checkbox-checked-pressed-icon-color"
2031
- },
2032
- {
2033
- "description": "Background color for a disabled checkbox.",
2034
- "name": "--mdc-checkbox-disabled-background-color"
2035
- },
2036
- {
2037
- "description": "Border color for a disabled checkbox.",
2038
- "name": "--mdc-checkbox-disabled-border-color"
2039
- },
2000
+ "description": "`mdc-button` is a component that can be configured in various ways to suit different use cases.\n\nButton Variants:\n- **Primary**: Solid background color.\n- **Secondary**: Transparent background with a solid border.\n- **Tertiary**: No background or border, appears as plain text but retains all button functionalities.\n\nButton Colors:\n- **Positive**: Green color.\n- **Negative**: Red color.\n- **Accent**: Blue color.\n- **Promotional**: Purple color.\n- **Default**: White color.\n\nButton Sizes (in REM units):\n- **Pill button**: 40, 32, 28, 24.\n- **Icon button**: 64, 52, 40, 32, 28, 24.\n- **Tertiary icon button**: 20.\n\nButton Types:\n- **Pill button**: A button that contains text value. Commonly used for call to action, tags, or filters.\n- **Pill button with icons**: A button containing an icon either on the left or right side of the button.\n- **Icon button**: A button represented by just an icon without any text.\nThe type of button is inferred based on the presence of slot and/or prefix and postfix icons.",
2001
+ "name": "Button",
2002
+ "slots": [
2040
2003
  {
2041
- "description": "Background color for a disabled, selected checkbox.",
2042
- "name": "--mdc-checkbox-disabled-checked-icon-color"
2043
- },
2004
+ "description": "Text label of the button.",
2005
+ "name": ""
2006
+ }
2007
+ ],
2008
+ "members": [
2044
2009
  {
2045
- "description": "Icon color for a disabled checkbox.",
2046
- "name": "--mdc-checkbox-disabled-icon-color"
2010
+ "kind": "field",
2011
+ "name": "prefixIcon",
2012
+ "type": {
2013
+ "text": "string | undefined"
2014
+ },
2015
+ "description": "The name of the icon to display as a prefix.\nThe icon is displayed on the left side of the button.",
2016
+ "attribute": "prefix-icon",
2017
+ "reflects": true
2047
2018
  },
2048
2019
  {
2049
- "description": "Background color for an unselected checkbox.",
2050
- "name": "--mdc-checkbox-icon-background-color"
2020
+ "kind": "field",
2021
+ "name": "postfixIcon",
2022
+ "type": {
2023
+ "text": "string | undefined"
2024
+ },
2025
+ "description": "The name of the icon to display as a postfix.\nThe icon is displayed on the right side of the button.",
2026
+ "attribute": "postfix-icon",
2027
+ "reflects": true
2051
2028
  },
2052
2029
  {
2053
- "description": "Default background color for an unselected checkbox.",
2054
- "name": "--mdc-checkbox-icon-border-color"
2030
+ "kind": "field",
2031
+ "name": "variant",
2032
+ "type": {
2033
+ "text": "ButtonVariant"
2034
+ },
2035
+ "description": "There are 3 variants of button: primary, secondary, tertiary. They are styled differently.\n- **Primary**: Solid background color.\n- **Secondary**: Transparent background with a solid border.\n- **Tertiary**: No background or border, appears as plain text but retains all button functionalities.",
2036
+ "default": "primary",
2037
+ "attribute": "variant"
2055
2038
  },
2056
2039
  {
2057
- "description": "Icon color for an unselected checkbox.",
2058
- "name": "--mdc-checkbox-icon-color"
2040
+ "kind": "field",
2041
+ "name": "size",
2042
+ "type": {
2043
+ "text": "ButtonSize"
2044
+ },
2045
+ "description": "Button sizing is based on the button type.\n- **Pill button**: 40, 32, 28, 24.\n- **Icon button**: 64, 52, 40, 32, 28, 24.\n- Tertiary icon button can also be 20.",
2046
+ "default": "32",
2047
+ "attribute": "size",
2048
+ "reflects": true,
2049
+ "inheritedFrom": {
2050
+ "name": "Buttonsimple",
2051
+ "module": "components/buttonsimple/buttonsimple.component.js"
2052
+ }
2059
2053
  },
2060
- {
2061
- "description": "Background color for a selected checkbox when pressed.",
2062
- "name": "--mdc-checkbox-pressed-icon-color"
2063
- }
2064
- ],
2065
- "members": [
2066
2054
  {
2067
2055
  "kind": "field",
2068
- "name": "checked",
2056
+ "name": "color",
2069
2057
  "type": {
2070
- "text": "boolean"
2058
+ "text": "ButtonColor"
2071
2059
  },
2072
- "default": "false",
2073
- "description": "Determines whether the checkbox is selected or unselected.",
2074
- "attribute": "checked",
2075
- "reflects": true
2060
+ "description": "There are 5 colors for button: positive, negative, accent, promotional, default.",
2061
+ "default": "default",
2062
+ "attribute": "color"
2076
2063
  },
2077
2064
  {
2078
2065
  "kind": "field",
2079
- "name": "indeterminate",
2066
+ "name": "role",
2067
+ "description": "This property defines the ARIA role for the element. By default, it is set to 'button'.\nConsumers should override this role when:\n- The element is being used in a context where a different role is more appropriate.\n- Custom behaviors are implemented that require a specific ARIA role for accessibility purposes.",
2068
+ "default": "'button'",
2069
+ "attribute": "role",
2070
+ "reflects": true,
2080
2071
  "type": {
2081
- "text": "boolean"
2072
+ "text": "string"
2082
2073
  },
2083
- "default": "false",
2084
- "description": "This property is used to determine the parent checkbox in a nested checkbox group.\nIf any one of the children is unselected, then the parent checkbox will be indeterminate.\nIf all children are either selected or unselected, then the parent checkbox will not be indeterminate.",
2085
- "attribute": "indeterminate",
2086
- "reflects": true
2074
+ "inheritedFrom": {
2075
+ "name": "Buttonsimple",
2076
+ "module": "components/buttonsimple/buttonsimple.component.js"
2077
+ }
2087
2078
  },
2088
2079
  {
2089
2080
  "kind": "method",
2090
- "name": "setFormValue",
2081
+ "name": "modifyIconName",
2091
2082
  "privacy": "private",
2092
- "description": "Updates the form value to reflect the current state of the checkbox.\nIf checked, the value is set to either the user-provided value or 'on' if no value is provided.\nIf unchecked, the value is set to null."
2083
+ "parameters": [
2084
+ {
2085
+ "name": "active",
2086
+ "type": {
2087
+ "text": "boolean"
2088
+ },
2089
+ "description": "The active state."
2090
+ }
2091
+ ],
2092
+ "description": "Modifies the icon name based on the active state.\nIf the button is active, the icon name is suffixed with '-filled'.\nIf the button is inactive, the icon name is restored to its original value.\nIf '-filled' icon is not available, the icon name remains unchanged."
2093
2093
  },
2094
2094
  {
2095
2095
  "kind": "method",
2096
- "name": "toggleState",
2096
+ "name": "setVariant",
2097
2097
  "privacy": "private",
2098
- "return": {
2099
- "type": {
2100
- "text": "void"
2098
+ "parameters": [
2099
+ {
2100
+ "name": "variant",
2101
+ "type": {
2102
+ "text": "ButtonVariant"
2103
+ },
2104
+ "description": "The variant to set."
2101
2105
  }
2102
- },
2103
- "description": "Toggles the state of the checkbox element.\nIf the element is not disabled, then\nthe checked property is toggled and the indeterminate property is set to false."
2106
+ ],
2107
+ "description": "Sets the variant attribute for the button component.\nIf the provided variant is not included in the BUTTON_VARIANTS,\nit defaults to the value specified in DEFAULTS.VARIANT."
2104
2108
  },
2105
2109
  {
2106
2110
  "kind": "method",
2107
- "name": "handleChange",
2108
- "privacy": "public",
2109
- "return": {
2110
- "type": {
2111
- "text": "void"
2112
- }
2113
- },
2111
+ "name": "setSize",
2112
+ "privacy": "private",
2114
2113
  "parameters": [
2115
2114
  {
2116
- "name": "event",
2115
+ "name": "size",
2117
2116
  "type": {
2118
- "text": "Event"
2119
- }
2117
+ "text": "PillButtonSize | IconButtonSize"
2118
+ },
2119
+ "description": "The size to set."
2120
2120
  }
2121
2121
  ],
2122
- "description": "Toggles the state of the checkbox element.\nand dispatch the new event."
2122
+ "description": "Sets the size attribute for the button component.\nValidates the size based on the button type (icon, pill, or tertiary).\nDefaults to DEFAULTS.SIZE if invalid."
2123
2123
  },
2124
2124
  {
2125
- "kind": "field",
2126
- "name": "internals"
2125
+ "kind": "method",
2126
+ "name": "setColor",
2127
+ "privacy": "private",
2128
+ "parameters": [
2129
+ {
2130
+ "name": "color",
2131
+ "type": {
2132
+ "text": "ButtonColor"
2133
+ },
2134
+ "description": "The color to set."
2135
+ }
2136
+ ],
2137
+ "description": "Sets the color attribute for the button.\nDefaults to DEFAULTS.COLOR if invalid or for tertiary buttons."
2127
2138
  },
2128
2139
  {
2129
- "kind": "field",
2130
- "name": "helpTextType",
2131
- "type": {
2132
- "text": "ValidationType"
2133
- },
2134
- "description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
2135
- "attribute": "help-text-type",
2136
- "reflects": true,
2137
- "default": "undefined as unknown",
2138
- "inheritedFrom": {
2139
- "name": "FormfieldWrapper",
2140
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
2141
- }
2140
+ "kind": "method",
2141
+ "name": "inferButtonType",
2142
+ "privacy": "private",
2143
+ "description": "Infers the type of button based on the presence of slot and/or prefix and postfix icons.",
2144
+ "parameters": [
2145
+ {
2146
+ "description": "default slot of button",
2147
+ "name": "slot"
2148
+ }
2149
+ ]
2142
2150
  },
2143
2151
  {
2144
2152
  "kind": "field",
2145
- "name": "name",
2153
+ "name": "tabIndex",
2146
2154
  "type": {
2147
- "text": "string"
2155
+ "text": "number"
2148
2156
  },
2149
- "default": "''",
2150
- "description": "Indicates the name of the component group (ex: checkbox, radio group).\nThey are used to group elements in a form together.",
2151
- "attribute": "name",
2157
+ "default": "0",
2158
+ "description": "This property specifies the tab order of the element.",
2159
+ "attribute": "tabIndex",
2152
2160
  "reflects": true,
2153
2161
  "inheritedFrom": {
2154
- "name": "NameMixin",
2155
- "module": "utils/mixins/NameMixin.js"
2162
+ "name": "Buttonsimple",
2163
+ "module": "components/buttonsimple/buttonsimple.component.js"
2156
2164
  }
2157
2165
  },
2158
2166
  {
2159
2167
  "kind": "field",
2160
- "name": "value",
2168
+ "name": "disabled",
2161
2169
  "type": {
2162
- "text": "string"
2170
+ "text": "boolean"
2163
2171
  },
2164
- "default": "''",
2165
- "description": "Indicates the value of the component group (ex: input, checkbox, radio, select etc...)",
2166
- "attribute": "value",
2172
+ "default": "false",
2173
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
2174
+ "attribute": "disabled",
2167
2175
  "reflects": true,
2168
2176
  "inheritedFrom": {
2169
- "name": "ValueMixin",
2170
- "module": "utils/mixins/ValueMixin.js"
2177
+ "name": "Buttonsimple",
2178
+ "module": "components/buttonsimple/buttonsimple.component.js"
2171
2179
  }
2172
2180
  },
2173
2181
  {
2174
2182
  "kind": "field",
2175
- "name": "dataAriaLabel",
2183
+ "name": "active",
2176
2184
  "type": {
2177
- "text": "string | null"
2185
+ "text": "boolean"
2178
2186
  },
2179
- "default": "null",
2180
- "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
2181
- "attribute": "data-aria-label",
2187
+ "default": "false",
2188
+ "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.",
2189
+ "attribute": "active",
2182
2190
  "reflects": true,
2183
2191
  "inheritedFrom": {
2184
- "name": "DataAriaLabelMixin",
2185
- "module": "utils/mixins/DataAriaLabelMixin.js"
2192
+ "name": "Buttonsimple",
2193
+ "module": "components/buttonsimple/buttonsimple.component.js"
2186
2194
  }
2187
2195
  },
2188
2196
  {
2189
2197
  "kind": "field",
2190
- "name": "disabled",
2198
+ "name": "softDisabled",
2191
2199
  "type": {
2192
2200
  "text": "boolean"
2193
2201
  },
2194
2202
  "default": "false",
2195
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
2196
- "attribute": "disabled",
2197
- "reflects": true,
2203
+ "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.",
2204
+ "attribute": "soft-disabled",
2198
2205
  "inheritedFrom": {
2199
- "name": "DisabledMixin",
2200
- "module": "utils/mixins/DisabledMixin.js"
2206
+ "name": "Buttonsimple",
2207
+ "module": "components/buttonsimple/buttonsimple.component.js"
2201
2208
  }
2202
2209
  },
2203
2210
  {
2204
2211
  "kind": "field",
2205
- "name": "label",
2212
+ "name": "type",
2206
2213
  "type": {
2207
- "text": "string | undefined"
2214
+ "text": "ButtonType"
2208
2215
  },
2209
- "description": "The label of the input field. It is linked to the input field using the `for` attribute.",
2210
- "attribute": "label",
2216
+ "description": "This property defines the type attribute for the button element.\nThe type attribute specifies the behavior of the button when it is clicked.\n- **submit**: The button submits the form data to the server.\n- **reset**: The button resets the form data to its initial state.\n- **button**: The button does nothing when clicked.",
2217
+ "default": "button",
2218
+ "attribute": "type",
2211
2219
  "reflects": true,
2212
2220
  "inheritedFrom": {
2213
- "name": "FormfieldWrapper",
2214
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
2221
+ "name": "Buttonsimple",
2222
+ "module": "components/buttonsimple/buttonsimple.component.js"
2215
2223
  }
2216
2224
  },
2217
2225
  {
2218
- "kind": "field",
2219
- "name": "id",
2220
- "default": "`mdc-input-${uuidv4()}`",
2221
- "description": "The unique id of the input field. It is used to link the input field with the label.",
2222
- "attribute": "id",
2226
+ "kind": "method",
2227
+ "name": "executeAction",
2228
+ "privacy": "protected",
2223
2229
  "inheritedFrom": {
2224
- "name": "FormfieldWrapper",
2225
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
2230
+ "name": "Buttonsimple",
2231
+ "module": "components/buttonsimple/buttonsimple.component.js"
2226
2232
  }
2227
2233
  },
2228
2234
  {
2229
- "kind": "field",
2230
- "name": "helpText",
2231
- "type": {
2232
- "text": "string | undefined"
2233
- },
2234
- "description": "The help text that is displayed below the input field.",
2235
- "attribute": "help-text",
2236
- "reflects": true,
2235
+ "kind": "method",
2236
+ "name": "setActive",
2237
+ "privacy": "protected",
2238
+ "parameters": [
2239
+ {
2240
+ "name": "element",
2241
+ "type": {
2242
+ "text": "HTMLElement"
2243
+ },
2244
+ "description": "The button element"
2245
+ },
2246
+ {
2247
+ "name": "active",
2248
+ "type": {
2249
+ "text": "boolean"
2250
+ },
2251
+ "description": "The active state of the element"
2252
+ }
2253
+ ],
2254
+ "description": "Sets the aria-pressed attribute based on the active state of the button.",
2237
2255
  "inheritedFrom": {
2238
- "name": "FormfieldWrapper",
2239
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
2256
+ "name": "Buttonsimple",
2257
+ "module": "components/buttonsimple/buttonsimple.component.js"
2240
2258
  }
2241
2259
  },
2242
2260
  {
2243
2261
  "kind": "method",
2244
- "name": "renderLabelElement",
2245
- "privacy": "protected",
2246
- "description": "creates the label element when the label property is set.\nid is used to link the label with the input field.",
2247
- "return": {
2248
- "type": {
2249
- "text": ""
2262
+ "name": "setSoftDisabled",
2263
+ "privacy": "private",
2264
+ "parameters": [
2265
+ {
2266
+ "name": "element",
2267
+ "type": {
2268
+ "text": "HTMLElement"
2269
+ },
2270
+ "description": "The button element."
2271
+ },
2272
+ {
2273
+ "name": "softDisabled",
2274
+ "type": {
2275
+ "text": "boolean"
2276
+ },
2277
+ "description": "The soft-disabled state."
2250
2278
  }
2251
- },
2279
+ ],
2280
+ "description": "Sets the soft-disabled attribute for the button.\nWhen soft-disabled, the button looks to be disabled but remains focusable and clickable.\nAlso sets/removes aria-disabled attribute.",
2252
2281
  "inheritedFrom": {
2253
- "name": "FormfieldWrapper",
2254
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
2282
+ "name": "Buttonsimple",
2283
+ "module": "components/buttonsimple/buttonsimple.component.js"
2255
2284
  }
2256
2285
  },
2257
2286
  {
2258
2287
  "kind": "method",
2259
- "name": "renderHelpTextIcon",
2260
- "privacy": "protected",
2261
- "description": "creates the helpertext icon based on the helpTextType for validation.\nIf the helpTextType is not set, it defaults to 'default' and it doesn't display any icon.",
2262
- "return": {
2263
- "type": {
2264
- "text": ""
2288
+ "name": "setDisabled",
2289
+ "privacy": "private",
2290
+ "parameters": [
2291
+ {
2292
+ "name": "element",
2293
+ "type": {
2294
+ "text": "HTMLElement"
2295
+ },
2296
+ "description": "The button element."
2297
+ },
2298
+ {
2299
+ "name": "disabled",
2300
+ "type": {
2301
+ "text": "boolean"
2302
+ },
2303
+ "description": "The disabled state."
2265
2304
  }
2266
- },
2305
+ ],
2306
+ "description": "Sets the disabled attribute for the button.\nWhen disabled, the button is not focusable or clickable, and tabindex is set to -1.\nThe previous tabindex is stored and restored when enabled.\nAlso sets/removes aria-disabled attribute.",
2267
2307
  "inheritedFrom": {
2268
- "name": "FormfieldWrapper",
2269
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
2308
+ "name": "Buttonsimple",
2309
+ "module": "components/buttonsimple/buttonsimple.component.js"
2270
2310
  }
2271
2311
  },
2272
2312
  {
2273
2313
  "kind": "method",
2274
- "name": "renderHelpText",
2275
- "privacy": "protected",
2276
- "description": "creates the helper text component when the helpertext value is set.\nIt is also used to display the validation message based on the helpTextType.",
2277
- "return": {
2278
- "type": {
2279
- "text": ""
2280
- }
2281
- },
2314
+ "name": "triggerClickEvent",
2315
+ "privacy": "private",
2282
2316
  "inheritedFrom": {
2283
- "name": "FormfieldWrapper",
2284
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
2317
+ "name": "Buttonsimple",
2318
+ "module": "components/buttonsimple/buttonsimple.component.js"
2285
2319
  }
2286
2320
  },
2287
2321
  {
2288
2322
  "kind": "method",
2289
- "name": "renderLabel",
2290
- "privacy": "protected",
2291
- "description": "renders the mdc-label-text container that contains the label and labelInfoToggleTip.",
2292
- "return": {
2293
- "type": {
2294
- "text": ""
2323
+ "name": "handleKeyDown",
2324
+ "privacy": "private",
2325
+ "parameters": [
2326
+ {
2327
+ "name": "event",
2328
+ "type": {
2329
+ "text": "KeyboardEvent"
2330
+ },
2331
+ "description": "The keyboard event."
2295
2332
  }
2296
- },
2333
+ ],
2334
+ "description": "Handles the keydown event on the button.\nIf the key is 'Enter' or 'Space', the button is pressed.\nIf the key is 'Enter', the button is pressed. The native HTML button works in the same way.",
2297
2335
  "inheritedFrom": {
2298
- "name": "FormfieldWrapper",
2299
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
2336
+ "name": "Buttonsimple",
2337
+ "module": "components/buttonsimple/buttonsimple.component.js"
2300
2338
  }
2301
2339
  },
2302
2340
  {
2303
2341
  "kind": "method",
2304
- "name": "renderHelperText",
2305
- "privacy": "protected",
2306
- "description": "renders the mdc-help-text container that contains the helpertext icon and helpertext.",
2307
- "return": {
2308
- "type": {
2309
- "text": ""
2342
+ "name": "handleKeyUp",
2343
+ "privacy": "private",
2344
+ "parameters": [
2345
+ {
2346
+ "name": "event",
2347
+ "type": {
2348
+ "text": "KeyboardEvent"
2349
+ },
2350
+ "description": "The keyboard event."
2310
2351
  }
2311
- },
2352
+ ],
2353
+ "description": "Handles the keyup event on the button.\nIf the key is 'Enter' or 'Space', the button is clicked.\nIf the key is 'Space', the button is pressed. The native HTML button works in the same way.",
2312
2354
  "inheritedFrom": {
2313
- "name": "FormfieldWrapper",
2314
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
2355
+ "name": "Buttonsimple",
2356
+ "module": "components/buttonsimple/buttonsimple.component.js"
2315
2357
  }
2316
2358
  }
2317
2359
  ],
2318
- "events": [
2360
+ "attributes": [
2319
2361
  {
2362
+ "name": "prefix-icon",
2320
2363
  "type": {
2321
- "text": "Event"
2322
- }
2323
- }
2324
- ],
2325
- "attributes": [
2364
+ "text": "string | undefined"
2365
+ },
2366
+ "description": "The name of the icon to display as a prefix.\nThe icon is displayed on the left side of the button.",
2367
+ "fieldName": "prefixIcon"
2368
+ },
2326
2369
  {
2327
- "name": "checked",
2370
+ "name": "postfix-icon",
2328
2371
  "type": {
2329
- "text": "boolean"
2372
+ "text": "string | undefined"
2330
2373
  },
2331
- "default": "false",
2332
- "description": "Determines whether the checkbox is selected or unselected.",
2333
- "fieldName": "checked"
2374
+ "description": "The name of the icon to display as a postfix.\nThe icon is displayed on the right side of the button.",
2375
+ "fieldName": "postfixIcon"
2334
2376
  },
2335
2377
  {
2336
- "name": "indeterminate",
2378
+ "name": "variant",
2337
2379
  "type": {
2338
- "text": "boolean"
2380
+ "text": "ButtonVariant"
2339
2381
  },
2340
- "default": "false",
2341
- "description": "This property is used to determine the parent checkbox in a nested checkbox group.\nIf any one of the children is unselected, then the parent checkbox will be indeterminate.\nIf all children are either selected or unselected, then the parent checkbox will not be indeterminate.",
2342
- "fieldName": "indeterminate"
2382
+ "description": "There are 3 variants of button: primary, secondary, tertiary. They are styled differently.\n- **Primary**: Solid background color.\n- **Secondary**: Transparent background with a solid border.\n- **Tertiary**: No background or border, appears as plain text but retains all button functionalities.",
2383
+ "default": "primary",
2384
+ "fieldName": "variant"
2343
2385
  },
2344
2386
  {
2345
- "name": "name",
2387
+ "name": "size",
2346
2388
  "type": {
2347
- "text": "string"
2389
+ "text": "ButtonSize"
2348
2390
  },
2349
- "default": "''",
2350
- "description": "Indicates the name of the component group (ex: checkbox, radio group).\nThey are used to group elements in a form together.",
2351
- "fieldName": "name",
2391
+ "description": "Button sizing is based on the button type.\n- **Pill button**: 40, 32, 28, 24.\n- **Icon button**: 64, 52, 40, 32, 28, 24.\n- Tertiary icon button can also be 20.",
2392
+ "default": "32",
2393
+ "fieldName": "size",
2352
2394
  "inheritedFrom": {
2353
- "name": "NameMixin",
2354
- "module": "src/utils/mixins/NameMixin.ts"
2395
+ "name": "Buttonsimple",
2396
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
2355
2397
  }
2356
2398
  },
2357
2399
  {
2358
- "name": "value",
2400
+ "name": "color",
2401
+ "type": {
2402
+ "text": "ButtonColor"
2403
+ },
2404
+ "description": "There are 5 colors for button: positive, negative, accent, promotional, default.",
2405
+ "default": "default",
2406
+ "fieldName": "color"
2407
+ },
2408
+ {
2409
+ "name": "role",
2410
+ "description": "This property defines the ARIA role for the element. By default, it is set to 'button'.\nConsumers should override this role when:\n- The element is being used in a context where a different role is more appropriate.\n- Custom behaviors are implemented that require a specific ARIA role for accessibility purposes.",
2411
+ "default": "'button'",
2412
+ "fieldName": "role",
2359
2413
  "type": {
2360
2414
  "text": "string"
2361
2415
  },
2362
- "default": "''",
2363
- "description": "Indicates the value of the component group (ex: input, checkbox, radio, select etc...)",
2364
- "fieldName": "value",
2365
2416
  "inheritedFrom": {
2366
- "name": "ValueMixin",
2367
- "module": "src/utils/mixins/ValueMixin.ts"
2417
+ "name": "Buttonsimple",
2418
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
2368
2419
  }
2369
2420
  },
2370
2421
  {
2371
- "name": "data-aria-label",
2422
+ "name": "tabIndex",
2372
2423
  "type": {
2373
- "text": "string | null"
2424
+ "text": "number"
2374
2425
  },
2375
- "default": "null",
2376
- "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
2377
- "fieldName": "dataAriaLabel",
2426
+ "default": "0",
2427
+ "description": "This property specifies the tab order of the element.",
2428
+ "fieldName": "tabIndex",
2378
2429
  "inheritedFrom": {
2379
- "name": "DataAriaLabelMixin",
2380
- "module": "src/utils/mixins/DataAriaLabelMixin.ts"
2430
+ "name": "Buttonsimple",
2431
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
2381
2432
  }
2382
2433
  },
2383
2434
  {
@@ -2389,88 +2440,163 @@
2389
2440
  "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
2390
2441
  "fieldName": "disabled",
2391
2442
  "inheritedFrom": {
2392
- "name": "DisabledMixin",
2393
- "module": "src/utils/mixins/DisabledMixin.ts"
2443
+ "name": "Buttonsimple",
2444
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
2394
2445
  }
2395
2446
  },
2396
2447
  {
2397
- "name": "label",
2448
+ "name": "active",
2398
2449
  "type": {
2399
- "text": "string | undefined"
2450
+ "text": "boolean"
2400
2451
  },
2401
- "description": "The label of the input field. It is linked to the input field using the `for` attribute.",
2402
- "fieldName": "label",
2403
- "inheritedFrom": {
2404
- "name": "FormfieldWrapper",
2405
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
2406
- }
2407
- },
2408
- {
2409
- "name": "id",
2410
- "default": "`mdc-input-${uuidv4()}`",
2411
- "description": "The unique id of the input field. It is used to link the input field with the label.",
2412
- "fieldName": "id",
2452
+ "default": "false",
2453
+ "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.",
2454
+ "fieldName": "active",
2413
2455
  "inheritedFrom": {
2414
- "name": "FormfieldWrapper",
2415
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
2456
+ "name": "Buttonsimple",
2457
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
2416
2458
  }
2417
2459
  },
2418
2460
  {
2419
- "name": "help-text-type",
2461
+ "name": "soft-disabled",
2420
2462
  "type": {
2421
- "text": "ValidationType"
2463
+ "text": "boolean"
2422
2464
  },
2423
- "description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
2424
- "fieldName": "helpTextType",
2465
+ "default": "false",
2466
+ "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.",
2467
+ "fieldName": "softDisabled",
2425
2468
  "inheritedFrom": {
2426
- "name": "FormfieldWrapper",
2427
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
2469
+ "name": "Buttonsimple",
2470
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
2428
2471
  }
2429
2472
  },
2430
2473
  {
2431
- "name": "help-text",
2474
+ "name": "type",
2432
2475
  "type": {
2433
- "text": "string | undefined"
2476
+ "text": "ButtonType"
2434
2477
  },
2435
- "description": "The help text that is displayed below the input field.",
2436
- "fieldName": "helpText",
2478
+ "description": "This property defines the type attribute for the button element.\nThe type attribute specifies the behavior of the button when it is clicked.\n- **submit**: The button submits the form data to the server.\n- **reset**: The button resets the form data to its initial state.\n- **button**: The button does nothing when clicked.",
2479
+ "default": "button",
2480
+ "fieldName": "type",
2437
2481
  "inheritedFrom": {
2438
- "name": "FormfieldWrapper",
2439
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
2482
+ "name": "Buttonsimple",
2483
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
2440
2484
  }
2441
2485
  }
2442
2486
  ],
2443
- "mixins": [
2487
+ "superclass": {
2488
+ "name": "Buttonsimple",
2489
+ "module": "/src/components/buttonsimple/buttonsimple.component"
2490
+ },
2491
+ "tagName": "mdc-button",
2492
+ "jsDoc": "/**\n * `mdc-button` is a component that can be configured in various ways to suit different use cases.\n *\n * Button Variants:\n * - **Primary**: Solid background color.\n * - **Secondary**: Transparent background with a solid border.\n * - **Tertiary**: No background or border, appears as plain text but retains all button functionalities.\n *\n * Button Colors:\n * - **Positive**: Green color.\n * - **Negative**: Red color.\n * - **Accent**: Blue color.\n * - **Promotional**: Purple color.\n * - **Default**: White color.\n *\n * Button Sizes (in REM units):\n * - **Pill button**: 40, 32, 28, 24.\n * - **Icon button**: 64, 52, 40, 32, 28, 24.\n * - **Tertiary icon button**: 20.\n *\n * Button Types:\n * - **Pill button**: A button that contains text value. Commonly used for call to action, tags, or filters.\n * - **Pill button with icons**: A button containing an icon either on the left or right side of the button.\n * - **Icon button**: A button represented by just an icon without any text.\n * The type of button is inferred based on the presence of slot and/or prefix and postfix icons.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-button\n *\n * @slot - Text label of the button.\n */",
2493
+ "customElement": true
2494
+ }
2495
+ ],
2496
+ "exports": [
2497
+ {
2498
+ "kind": "js",
2499
+ "name": "default",
2500
+ "declaration": {
2501
+ "name": "Button",
2502
+ "module": "components/button/button.component.js"
2503
+ }
2504
+ }
2505
+ ]
2506
+ },
2507
+ {
2508
+ "kind": "javascript-module",
2509
+ "path": "components/checkboxgroup/checkboxgroup.component.js",
2510
+ "declarations": [
2511
+ {
2512
+ "kind": "class",
2513
+ "description": "`mdc-checkboxgroup` component allows you to select multiple options from a predefined list.\nIt is commonly used in forms where multiple selections are required, such as preferences, filters, or categories.\n\nA checkbox group typically consists of multiple checkboxes grouped together,\neach representing a selectable option. You can check or uncheck options based on their preferences.",
2514
+ "name": "Checkboxgroup",
2515
+ "slots": [
2516
+ {
2517
+ "description": "This is a help text slot.",
2518
+ "name": "help-text"
2519
+ },
2520
+ {
2521
+ "description": "This is a default slot for children.",
2522
+ "name": "default"
2523
+ }
2524
+ ],
2525
+ "members": [
2444
2526
  {
2445
- "name": "NameMixin",
2446
- "module": "/src/utils/mixins/NameMixin"
2527
+ "kind": "field",
2528
+ "name": "headerText",
2529
+ "type": {
2530
+ "text": "string | undefined"
2531
+ },
2532
+ "description": "The header text of the checkboxgroup.",
2533
+ "attribute": "header-text"
2447
2534
  },
2448
2535
  {
2449
- "name": "ValueMixin",
2450
- "module": "/src/utils/mixins/ValueMixin"
2536
+ "kind": "method",
2537
+ "name": "handleKeyDown",
2538
+ "privacy": "private",
2539
+ "return": {
2540
+ "type": {
2541
+ "text": "void"
2542
+ }
2543
+ },
2544
+ "parameters": [
2545
+ {
2546
+ "name": "event",
2547
+ "type": {
2548
+ "text": "KeyboardEvent"
2549
+ },
2550
+ "description": "The KeyboardEvent"
2551
+ }
2552
+ ],
2553
+ "description": "Handles the keydown event on the parent checkbox in the checkboxgroup.\nWhen the user presses the down arrow key, the focus is moved to the next checkbox in the checkboxgroup.\nWhen the user presses the up arrow key, the focus is moved to the previous checkbox in the checkboxgroup."
2451
2554
  },
2452
2555
  {
2453
- "name": "DataAriaLabelMixin",
2454
- "module": "/src/utils/mixins/DataAriaLabelMixin"
2556
+ "kind": "method",
2557
+ "name": "navigate",
2558
+ "privacy": "private",
2559
+ "return": {
2560
+ "type": {
2561
+ "text": "void"
2562
+ }
2563
+ },
2564
+ "parameters": [
2565
+ {
2566
+ "name": "origin",
2567
+ "type": {
2568
+ "text": "EventTarget | null"
2569
+ },
2570
+ "description": "The element that triggered the event."
2571
+ },
2572
+ {
2573
+ "name": "direction",
2574
+ "type": {
2575
+ "text": "number"
2576
+ },
2577
+ "description": "The direction of navigation, either -1 or 1."
2578
+ }
2579
+ ],
2580
+ "description": "Navigate to the next or previous checkbox in the checkboxgroup based on the given origin and direction."
2455
2581
  }
2456
2582
  ],
2457
- "superclass": {
2458
- "name": "FormfieldWrapper",
2459
- "module": "/src/components/formfieldwrapper/formfieldwrapper.component"
2460
- },
2461
- "tagName": "mdc-checkbox",
2462
- "jsDoc": "/**\n * Checkboxes allow users to select multiple options from a list or turn an item/feature on or off.\n * These are often used in forms, settings, and selections in lists.\n *\n * A checkbox component contains an optional label and an optional helper text.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-checkbox\n *\n * @cssproperty --mdc-checkbox-background-color-hover - Allows customization of the background color on hover.\n * @cssproperty --mdc-checkbox-border-color - Border color in high contrast.\n * @cssproperty --mdc-checkbox-checked-background-color - Background color for a selected checkbox.\n * @cssproperty --mdc-checkbox-checked-background-color-hover - Background color for a selected checkbox when hovered.\n * @cssproperty --mdc-checkbox-checked-pressed-icon-color - Background color for a selected checkbox when pressed.\n * @cssproperty --mdc-checkbox-disabled-background-color - Background color for a disabled checkbox.\n * @cssproperty --mdc-checkbox-disabled-border-color - Border color for a disabled checkbox.\n * @cssproperty --mdc-checkbox-disabled-checked-icon-color - Background color for a disabled, selected checkbox.\n * @cssproperty --mdc-checkbox-disabled-icon-color - Icon color for a disabled checkbox.\n * @cssproperty --mdc-checkbox-icon-background-color - Background color for an unselected checkbox.\n * @cssproperty --mdc-checkbox-icon-border-color - Default background color for an unselected checkbox.\n * @cssproperty --mdc-checkbox-icon-color - Icon color for an unselected checkbox.\n * @cssproperty --mdc-checkbox-pressed-icon-color - Background color for a selected checkbox when pressed.\n */",
2463
- "customElement": true,
2464
- "slots": [
2583
+ "attributes": [
2465
2584
  {
2466
- "description": "slot to add the label info icon",
2467
- "name": "label-info",
2468
- "inheritedFrom": {
2469
- "name": "FormfieldWrapper",
2470
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
2471
- }
2585
+ "name": "header-text",
2586
+ "type": {
2587
+ "text": "string | undefined"
2588
+ },
2589
+ "description": "The header text of the checkboxgroup.",
2590
+ "fieldName": "headerText"
2472
2591
  }
2473
- ]
2592
+ ],
2593
+ "superclass": {
2594
+ "name": "Component",
2595
+ "module": "/src/models"
2596
+ },
2597
+ "tagName": "mdc-checkboxgroup",
2598
+ "jsDoc": "/**\n * `mdc-checkboxgroup` component allows you to select multiple options from a predefined list.\n * It is commonly used in forms where multiple selections are required, such as preferences, filters, or categories.\n *\n * A checkbox group typically consists of multiple checkboxes grouped together,\n * each representing a selectable option. You can check or uncheck options based on their preferences.\n *\n * @dependency mdc-text\n *\n * @tagname mdc-checkboxgroup\n *\n * @slot help-text - This is a help text slot.\n * @slot default - This is a default slot for children.\n */",
2599
+ "customElement": true
2474
2600
  }
2475
2601
  ],
2476
2602
  "exports": [
@@ -2478,8 +2604,8 @@
2478
2604
  "kind": "js",
2479
2605
  "name": "default",
2480
2606
  "declaration": {
2481
- "name": "Checkbox",
2482
- "module": "components/checkbox/checkbox.component.js"
2607
+ "name": "Checkboxgroup",
2608
+ "module": "components/checkboxgroup/checkboxgroup.component.js"
2483
2609
  }
2484
2610
  }
2485
2611
  ]
@@ -3131,6 +3257,164 @@
3131
3257
  }
3132
3258
  ]
3133
3259
  },
3260
+ {
3261
+ "kind": "javascript-module",
3262
+ "path": "components/iconprovider/iconprovider.component.js",
3263
+ "declarations": [
3264
+ {
3265
+ "kind": "class",
3266
+ "description": "IconProvider component, which allows to be consumed from sub components\n(see `providerUtils.consume` for how to consume)\n\nBundling icons will be up to the consumer of this component, such\nthat only a url has to be passed in from which the icons will be\nfetched.\n\nIf `shouldCache` is set to true, the IconProvider will cache the icons\nin a Map to avoid fetching the same icon multiple times over the network.\nThis is useful when the same icon is used multiple times in the application.\nKeep in mind that this cache is not persisted and will be lost when the\nIconProvider is removed from the DOM.",
3267
+ "name": "IconProvider",
3268
+ "slots": [
3269
+ {
3270
+ "description": "children",
3271
+ "name": ""
3272
+ }
3273
+ ],
3274
+ "members": [
3275
+ {
3276
+ "kind": "field",
3277
+ "name": "Context",
3278
+ "privacy": "public",
3279
+ "static": true,
3280
+ "description": "Context object of the IconProvider, to be consumed by child components",
3281
+ "readonly": true
3282
+ },
3283
+ {
3284
+ "kind": "field",
3285
+ "name": "url",
3286
+ "type": {
3287
+ "text": "string | undefined"
3288
+ },
3289
+ "description": "Url of where icons will be fetched from",
3290
+ "attribute": "url"
3291
+ },
3292
+ {
3293
+ "kind": "field",
3294
+ "name": "fileExtension",
3295
+ "type": {
3296
+ "text": "string | undefined"
3297
+ },
3298
+ "description": "File extension of icons",
3299
+ "default": "svg",
3300
+ "attribute": "file-extension",
3301
+ "reflects": true
3302
+ },
3303
+ {
3304
+ "kind": "field",
3305
+ "name": "lengthUnit",
3306
+ "type": {
3307
+ "text": "string"
3308
+ },
3309
+ "description": "Length unit used for sizing of icons",
3310
+ "default": "em",
3311
+ "attribute": "length-unit",
3312
+ "reflects": true
3313
+ },
3314
+ {
3315
+ "kind": "field",
3316
+ "name": "size",
3317
+ "type": {
3318
+ "text": "number | undefined"
3319
+ },
3320
+ "description": "The default size of the icon.\nIf not set, it falls back to the size defined by the length unit.",
3321
+ "default": "1",
3322
+ "attribute": "size",
3323
+ "reflects": true
3324
+ },
3325
+ {
3326
+ "kind": "field",
3327
+ "name": "shouldCache",
3328
+ "type": {
3329
+ "text": "boolean | undefined"
3330
+ },
3331
+ "description": "If the IconProvider should cache the icons\nin a Map to avoid fetching the same icon multiple times",
3332
+ "default": "false",
3333
+ "attribute": "should-cache",
3334
+ "reflects": true
3335
+ },
3336
+ {
3337
+ "kind": "method",
3338
+ "name": "updateValuesInContext",
3339
+ "privacy": "private"
3340
+ },
3341
+ {
3342
+ "kind": "method",
3343
+ "name": "updateContext",
3344
+ "privacy": "protected",
3345
+ "return": {
3346
+ "type": {
3347
+ "text": "void"
3348
+ }
3349
+ }
3350
+ }
3351
+ ],
3352
+ "attributes": [
3353
+ {
3354
+ "name": "url",
3355
+ "type": {
3356
+ "text": "string | undefined"
3357
+ },
3358
+ "description": "Url of where icons will be fetched from",
3359
+ "fieldName": "url"
3360
+ },
3361
+ {
3362
+ "name": "file-extension",
3363
+ "type": {
3364
+ "text": "string | undefined"
3365
+ },
3366
+ "description": "File extension of icons",
3367
+ "default": "svg",
3368
+ "fieldName": "fileExtension"
3369
+ },
3370
+ {
3371
+ "name": "length-unit",
3372
+ "type": {
3373
+ "text": "string"
3374
+ },
3375
+ "description": "Length unit used for sizing of icons",
3376
+ "default": "em",
3377
+ "fieldName": "lengthUnit"
3378
+ },
3379
+ {
3380
+ "name": "size",
3381
+ "type": {
3382
+ "text": "number | undefined"
3383
+ },
3384
+ "description": "The default size of the icon.\nIf not set, it falls back to the size defined by the length unit.",
3385
+ "default": "1",
3386
+ "fieldName": "size"
3387
+ },
3388
+ {
3389
+ "name": "should-cache",
3390
+ "type": {
3391
+ "text": "boolean | undefined"
3392
+ },
3393
+ "description": "If the IconProvider should cache the icons\nin a Map to avoid fetching the same icon multiple times",
3394
+ "default": "false",
3395
+ "fieldName": "shouldCache"
3396
+ }
3397
+ ],
3398
+ "superclass": {
3399
+ "name": "Provider",
3400
+ "module": "/src/models"
3401
+ },
3402
+ "tagName": "mdc-iconprovider",
3403
+ "jsDoc": "/**\n * IconProvider component, which allows to be consumed from sub components\n * (see `providerUtils.consume` for how to consume)\n *\n * Bundling icons will be up to the consumer of this component, such\n * that only a url has to be passed in from which the icons will be\n * fetched.\n *\n * If `shouldCache` is set to true, the IconProvider will cache the icons\n * in a Map to avoid fetching the same icon multiple times over the network.\n * This is useful when the same icon is used multiple times in the application.\n * Keep in mind that this cache is not persisted and will be lost when the\n * IconProvider is removed from the DOM.\n *\n * @tagname mdc-iconprovider\n *\n * @slot - children\n */",
3404
+ "customElement": true
3405
+ }
3406
+ ],
3407
+ "exports": [
3408
+ {
3409
+ "kind": "js",
3410
+ "name": "default",
3411
+ "declaration": {
3412
+ "name": "IconProvider",
3413
+ "module": "components/iconprovider/iconprovider.component.js"
3414
+ }
3415
+ }
3416
+ ]
3417
+ },
3134
3418
  {
3135
3419
  "kind": "javascript-module",
3136
3420
  "path": "components/input/input.component.js",
@@ -4262,148 +4546,109 @@
4262
4546
  },
4263
4547
  {
4264
4548
  "kind": "javascript-module",
4265
- "path": "components/iconprovider/iconprovider.component.js",
4549
+ "path": "components/modalcontainer/modalcontainer.component.js",
4266
4550
  "declarations": [
4267
4551
  {
4268
4552
  "kind": "class",
4269
- "description": "IconProvider component, which allows to be consumed from sub components\n(see `providerUtils.consume` for how to consume)\n\nBundling icons will be up to the consumer of this component, such\nthat only a url has to be passed in from which the icons will be\nfetched.\n\nIf `shouldCache` is set to true, the IconProvider will cache the icons\nin a Map to avoid fetching the same icon multiple times over the network.\nThis is useful when the same icon is used multiple times in the application.\nKeep in mind that this cache is not persisted and will be lost when the\nIconProvider is removed from the DOM.",
4270
- "name": "IconProvider",
4553
+ "description": "The `mdc-modalcontainer` component is an element used to\ndisplay a modal container that can further be used in popover.",
4554
+ "name": "Modalcontainer",
4555
+ "cssProperties": [
4556
+ {
4557
+ "description": "primary background color of the modalcontainer",
4558
+ "name": "--mdc-modalcontainer-primary-background-color"
4559
+ },
4560
+ {
4561
+ "description": "border color of the modalcontainer",
4562
+ "name": "--mdc-modalcontainer-border-color"
4563
+ },
4564
+ {
4565
+ "description": "inverted background color of the modalcontainer",
4566
+ "name": "--mdc-modalcontainer-inverted-background-color"
4567
+ },
4568
+ {
4569
+ "description": "inverted border color of the modalcontainer",
4570
+ "name": "--mdc-modalcontainer-inverted-border-color"
4571
+ },
4572
+ {
4573
+ "description": "inverted text color of the modalcontainer",
4574
+ "name": "--mdc-modalcontainer-inverted-text-color"
4575
+ }
4576
+ ],
4271
4577
  "slots": [
4272
4578
  {
4273
- "description": "children",
4579
+ "description": "Default slot for modal container",
4274
4580
  "name": ""
4275
4581
  }
4276
4582
  ],
4277
4583
  "members": [
4278
4584
  {
4279
4585
  "kind": "field",
4280
- "name": "Context",
4281
- "privacy": "public",
4282
- "static": true,
4283
- "description": "Context object of the IconProvider, to be consumed by child components",
4284
- "readonly": true
4285
- },
4286
- {
4287
- "kind": "field",
4288
- "name": "url",
4289
- "type": {
4290
- "text": "string | undefined"
4291
- },
4292
- "description": "Url of where icons will be fetched from",
4293
- "attribute": "url"
4294
- },
4295
- {
4296
- "kind": "field",
4297
- "name": "fileExtension",
4298
- "type": {
4299
- "text": "string | undefined"
4300
- },
4301
- "description": "File extension of icons",
4302
- "default": "svg",
4303
- "attribute": "file-extension",
4304
- "reflects": true
4305
- },
4306
- {
4307
- "kind": "field",
4308
- "name": "lengthUnit",
4586
+ "name": "color",
4309
4587
  "type": {
4310
- "text": "string"
4588
+ "text": "ModalContainerColor"
4311
4589
  },
4312
- "description": "Length unit used for sizing of icons",
4313
- "default": "em",
4314
- "attribute": "length-unit",
4590
+ "description": "Color of the modalcontainer\n- **tonal**\n- **contrast**",
4591
+ "default": "tonal",
4592
+ "attribute": "color",
4315
4593
  "reflects": true
4316
4594
  },
4317
4595
  {
4318
4596
  "kind": "field",
4319
- "name": "size",
4597
+ "name": "elevation",
4320
4598
  "type": {
4321
- "text": "number | undefined"
4599
+ "text": "ModalContainerElevation"
4322
4600
  },
4323
- "description": "The default size of the icon.\nIf not set, it falls back to the size defined by the length unit.",
4324
- "default": "1",
4325
- "attribute": "size",
4601
+ "description": "Elevation of the modalcontainer where each value corresponds to a different drop shadow.\n- **0**\n- **1**\n- **2**\n- **3**\n- **4**",
4602
+ "default": "0",
4603
+ "attribute": "elevation",
4326
4604
  "reflects": true
4327
4605
  },
4328
4606
  {
4329
4607
  "kind": "field",
4330
- "name": "shouldCache",
4608
+ "name": "role",
4331
4609
  "type": {
4332
- "text": "boolean | undefined"
4610
+ "text": "ModalContainerRole"
4333
4611
  },
4334
- "description": "If the IconProvider should cache the icons\nin a Map to avoid fetching the same icon multiple times",
4335
- "default": "false",
4336
- "attribute": "should-cache",
4337
- "reflects": true
4338
- },
4339
- {
4340
- "kind": "method",
4341
- "name": "updateValuesInContext",
4342
- "privacy": "private"
4343
- },
4344
- {
4345
- "kind": "method",
4346
- "name": "updateContext",
4347
- "privacy": "protected",
4348
- "return": {
4349
- "type": {
4350
- "text": "void"
4351
- }
4352
- }
4612
+ "description": "Role of the modalcontainer",
4613
+ "default": "dialog",
4614
+ "attribute": "role"
4353
4615
  }
4354
4616
  ],
4355
4617
  "attributes": [
4356
4618
  {
4357
- "name": "url",
4358
- "type": {
4359
- "text": "string | undefined"
4360
- },
4361
- "description": "Url of where icons will be fetched from",
4362
- "fieldName": "url"
4363
- },
4364
- {
4365
- "name": "file-extension",
4366
- "type": {
4367
- "text": "string | undefined"
4368
- },
4369
- "description": "File extension of icons",
4370
- "default": "svg",
4371
- "fieldName": "fileExtension"
4372
- },
4373
- {
4374
- "name": "length-unit",
4619
+ "name": "color",
4375
4620
  "type": {
4376
- "text": "string"
4621
+ "text": "ModalContainerColor"
4377
4622
  },
4378
- "description": "Length unit used for sizing of icons",
4379
- "default": "em",
4380
- "fieldName": "lengthUnit"
4623
+ "description": "Color of the modalcontainer\n- **tonal**\n- **contrast**",
4624
+ "default": "tonal",
4625
+ "fieldName": "color"
4381
4626
  },
4382
4627
  {
4383
- "name": "size",
4628
+ "name": "elevation",
4384
4629
  "type": {
4385
- "text": "number | undefined"
4630
+ "text": "ModalContainerElevation"
4386
4631
  },
4387
- "description": "The default size of the icon.\nIf not set, it falls back to the size defined by the length unit.",
4388
- "default": "1",
4389
- "fieldName": "size"
4632
+ "description": "Elevation of the modalcontainer where each value corresponds to a different drop shadow.\n- **0**\n- **1**\n- **2**\n- **3**\n- **4**",
4633
+ "default": "0",
4634
+ "fieldName": "elevation"
4390
4635
  },
4391
4636
  {
4392
- "name": "should-cache",
4637
+ "name": "role",
4393
4638
  "type": {
4394
- "text": "boolean | undefined"
4639
+ "text": "ModalContainerRole"
4395
4640
  },
4396
- "description": "If the IconProvider should cache the icons\nin a Map to avoid fetching the same icon multiple times",
4397
- "default": "false",
4398
- "fieldName": "shouldCache"
4641
+ "description": "Role of the modalcontainer",
4642
+ "default": "dialog",
4643
+ "fieldName": "role"
4399
4644
  }
4400
4645
  ],
4401
4646
  "superclass": {
4402
- "name": "Provider",
4647
+ "name": "Component",
4403
4648
  "module": "/src/models"
4404
4649
  },
4405
- "tagName": "mdc-iconprovider",
4406
- "jsDoc": "/**\n * IconProvider component, which allows to be consumed from sub components\n * (see `providerUtils.consume` for how to consume)\n *\n * Bundling icons will be up to the consumer of this component, such\n * that only a url has to be passed in from which the icons will be\n * fetched.\n *\n * If `shouldCache` is set to true, the IconProvider will cache the icons\n * in a Map to avoid fetching the same icon multiple times over the network.\n * This is useful when the same icon is used multiple times in the application.\n * Keep in mind that this cache is not persisted and will be lost when the\n * IconProvider is removed from the DOM.\n *\n * @tagname mdc-iconprovider\n *\n * @slot - children\n */",
4650
+ "tagName": "mdc-modalcontainer",
4651
+ "jsDoc": "/**\n * The `mdc-modalcontainer` component is an element used to\n * display a modal container that can further be used in popover.\n *\n * @tagname mdc-modalcontainer\n *\n * @cssproperty --mdc-modalcontainer-primary-background-color - primary background color of the modalcontainer\n * @cssproperty --mdc-modalcontainer-border-color - border color of the modalcontainer\n * @cssproperty --mdc-modalcontainer-inverted-background-color - inverted background color of the modalcontainer\n * @cssproperty --mdc-modalcontainer-inverted-border-color - inverted border color of the modalcontainer\n * @cssproperty --mdc-modalcontainer-inverted-text-color - inverted text color of the modalcontainer\n *\n * @slot - Default slot for modal container\n */",
4407
4652
  "customElement": true
4408
4653
  }
4409
4654
  ],
@@ -4412,8 +4657,8 @@
4412
4657
  "kind": "js",
4413
4658
  "name": "default",
4414
4659
  "declaration": {
4415
- "name": "IconProvider",
4416
- "module": "components/iconprovider/iconprovider.component.js"
4660
+ "name": "Modalcontainer",
4661
+ "module": "components/modalcontainer/modalcontainer.component.js"
4417
4662
  }
4418
4663
  }
4419
4664
  ]
@@ -4588,125 +4833,6 @@
4588
4833
  }
4589
4834
  ]
4590
4835
  },
4591
- {
4592
- "kind": "javascript-module",
4593
- "path": "components/modalcontainer/modalcontainer.component.js",
4594
- "declarations": [
4595
- {
4596
- "kind": "class",
4597
- "description": "The `mdc-modalcontainer` component is an element used to\ndisplay a modal container that can further be used in popover.",
4598
- "name": "Modalcontainer",
4599
- "cssProperties": [
4600
- {
4601
- "description": "primary background color of the modalcontainer",
4602
- "name": "--mdc-modalcontainer-primary-background-color"
4603
- },
4604
- {
4605
- "description": "border color of the modalcontainer",
4606
- "name": "--mdc-modalcontainer-border-color"
4607
- },
4608
- {
4609
- "description": "inverted background color of the modalcontainer",
4610
- "name": "--mdc-modalcontainer-inverted-background-color"
4611
- },
4612
- {
4613
- "description": "inverted border color of the modalcontainer",
4614
- "name": "--mdc-modalcontainer-inverted-border-color"
4615
- },
4616
- {
4617
- "description": "inverted text color of the modalcontainer",
4618
- "name": "--mdc-modalcontainer-inverted-text-color"
4619
- }
4620
- ],
4621
- "slots": [
4622
- {
4623
- "description": "Default slot for modal container",
4624
- "name": ""
4625
- }
4626
- ],
4627
- "members": [
4628
- {
4629
- "kind": "field",
4630
- "name": "color",
4631
- "type": {
4632
- "text": "ModalContainerColor"
4633
- },
4634
- "description": "Color of the modalcontainer\n- **tonal**\n- **contrast**",
4635
- "default": "tonal",
4636
- "attribute": "color",
4637
- "reflects": true
4638
- },
4639
- {
4640
- "kind": "field",
4641
- "name": "elevation",
4642
- "type": {
4643
- "text": "ModalContainerElevation"
4644
- },
4645
- "description": "Elevation of the modalcontainer where each value corresponds to a different drop shadow.\n- **0**\n- **1**\n- **2**\n- **3**\n- **4**",
4646
- "default": "0",
4647
- "attribute": "elevation",
4648
- "reflects": true
4649
- },
4650
- {
4651
- "kind": "field",
4652
- "name": "role",
4653
- "type": {
4654
- "text": "ModalContainerRole"
4655
- },
4656
- "description": "Role of the modalcontainer",
4657
- "default": "dialog",
4658
- "attribute": "role"
4659
- }
4660
- ],
4661
- "attributes": [
4662
- {
4663
- "name": "color",
4664
- "type": {
4665
- "text": "ModalContainerColor"
4666
- },
4667
- "description": "Color of the modalcontainer\n- **tonal**\n- **contrast**",
4668
- "default": "tonal",
4669
- "fieldName": "color"
4670
- },
4671
- {
4672
- "name": "elevation",
4673
- "type": {
4674
- "text": "ModalContainerElevation"
4675
- },
4676
- "description": "Elevation of the modalcontainer where each value corresponds to a different drop shadow.\n- **0**\n- **1**\n- **2**\n- **3**\n- **4**",
4677
- "default": "0",
4678
- "fieldName": "elevation"
4679
- },
4680
- {
4681
- "name": "role",
4682
- "type": {
4683
- "text": "ModalContainerRole"
4684
- },
4685
- "description": "Role of the modalcontainer",
4686
- "default": "dialog",
4687
- "fieldName": "role"
4688
- }
4689
- ],
4690
- "superclass": {
4691
- "name": "Component",
4692
- "module": "/src/models"
4693
- },
4694
- "tagName": "mdc-modalcontainer",
4695
- "jsDoc": "/**\n * The `mdc-modalcontainer` component is an element used to\n * display a modal container that can further be used in popover.\n *\n * @tagname mdc-modalcontainer\n *\n * @cssproperty --mdc-modalcontainer-primary-background-color - primary background color of the modalcontainer\n * @cssproperty --mdc-modalcontainer-border-color - border color of the modalcontainer\n * @cssproperty --mdc-modalcontainer-inverted-background-color - inverted background color of the modalcontainer\n * @cssproperty --mdc-modalcontainer-inverted-border-color - inverted border color of the modalcontainer\n * @cssproperty --mdc-modalcontainer-inverted-text-color - inverted text color of the modalcontainer\n *\n * @slot - Default slot for modal container\n */",
4696
- "customElement": true
4697
- }
4698
- ],
4699
- "exports": [
4700
- {
4701
- "kind": "js",
4702
- "name": "default",
4703
- "declaration": {
4704
- "name": "Modalcontainer",
4705
- "module": "components/modalcontainer/modalcontainer.component.js"
4706
- }
4707
- }
4708
- ]
4709
- },
4710
4836
  {
4711
4837
  "kind": "javascript-module",
4712
4838
  "path": "components/radio/radio.component.js",