@momentum-design/components 0.129.13 → 0.129.15

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.
Files changed (30) hide show
  1. package/dist/browser/index.js.map +2 -2
  2. package/dist/components/appheader/appheader.component.d.ts +16 -12
  3. package/dist/components/appheader/appheader.component.js +16 -12
  4. package/dist/components/avatar/avatar.component.d.ts +22 -15
  5. package/dist/components/avatar/avatar.component.js +22 -15
  6. package/dist/components/avatarbutton/avatarbutton.component.d.ts +13 -11
  7. package/dist/components/avatarbutton/avatarbutton.component.js +13 -11
  8. package/dist/components/bullet/bullet.component.d.ts +5 -2
  9. package/dist/components/bullet/bullet.component.js +5 -2
  10. package/dist/components/button/button.component.d.ts +65 -29
  11. package/dist/components/button/button.component.js +65 -29
  12. package/dist/components/buttongroup/buttongroup.component.d.ts +26 -21
  13. package/dist/components/buttongroup/buttongroup.component.js +26 -21
  14. package/dist/components/buttonsimple/buttonsimple.component.d.ts +5 -3
  15. package/dist/components/buttonsimple/buttonsimple.component.js +5 -3
  16. package/dist/custom-elements.json +166 -80
  17. package/dist/react/appheader/index.d.ts +16 -12
  18. package/dist/react/appheader/index.js +16 -12
  19. package/dist/react/avatar/index.d.ts +25 -18
  20. package/dist/react/avatar/index.js +25 -18
  21. package/dist/react/avatarbutton/index.d.ts +13 -11
  22. package/dist/react/avatarbutton/index.js +13 -11
  23. package/dist/react/button/index.d.ts +39 -22
  24. package/dist/react/button/index.js +39 -22
  25. package/dist/react/buttongroup/index.d.ts +16 -18
  26. package/dist/react/buttongroup/index.js +16 -18
  27. package/dist/react/buttonsimple/index.d.ts +5 -3
  28. package/dist/react/buttonsimple/index.js +5 -3
  29. package/dist/utils/mixins/ButtonComponentMixin.js +12 -5
  30. package/package.json +1 -1
@@ -1046,7 +1046,7 @@
1046
1046
  }
1047
1047
  },
1048
1048
  {
1049
- "description": "Borer color of the button",
1049
+ "description": "Border color of the button",
1050
1050
  "name": "--mdc-button-border-color",
1051
1051
  "inheritedFrom": {
1052
1052
  "name": "Buttonsimple",
@@ -1640,7 +1640,17 @@
1640
1640
  },
1641
1641
  "tagName": "mdc-alertchip",
1642
1642
  "jsDoc": "/**\n * mdc-alertchip component is an interactive chip that consumers can use to represent an alert.\n *\n * - It supports a leading icon along with label.\n * - It supports 5 variants of alerts - neutral, warning, error, success, and informational\n *\n * This component is built by extending Buttonsimple.\n *\n * @tagname mdc-alertchip\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @cssproperty --mdc-chip-color - The color of the label text\n * @cssproperty --mdc-chip-icon-color - The color of the icon\n * @cssproperty --mdc-chip-border-color - The border color of the alertchip\n * @cssproperty --mdc-chip-background-color - The background color of the alertchip\n *\n * @csspart icon - The alert icon\n * @csspart label - The text label of the alertchip\n *\n * @event click - (React: onClick) This event is dispatched when the chip is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the chip.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the chip.\n * @event focus - (React: onFocus) This event is dispatched when the chip receives focus.\n */",
1643
- "customElement": true
1643
+ "customElement": true,
1644
+ "slots": [
1645
+ {
1646
+ "description": "Text label of the button.",
1647
+ "name": "",
1648
+ "inheritedFrom": {
1649
+ "name": "Buttonsimple",
1650
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
1651
+ }
1652
+ }
1653
+ ]
1644
1654
  }
1645
1655
  ],
1646
1656
  "exports": [
@@ -3267,37 +3277,43 @@
3267
3277
  "declarations": [
3268
3278
  {
3269
3279
  "kind": "class",
3270
- "description": "The `mdc-appheader` component provides a structured and accessible app header layout.\nIt consists of three primary sections: leading, center, and trailing.\n\n- The **leading section** typically holds a **brand logo**, **brand name** or **menu icon**.\n- The **center section** can contain a **search bar**, **icons** or action controls.\n- The **trailing section** generally includes a **profile avatar**, **additional icons** or **action controls**.",
3280
+ "description": "The `mdc-appheader` component provides a structured and accessible app header layout with three sections: leading, center, and trailing.\n\n## Layout sections\n- **Leading** - Typically holds brand logo, brand name, or menu icon\n- **Center** - Can contain search bar, icons, navigation links, or action controls\n- **Trailing** - Generally includes profile avatar, icons, settings, or additional action controls\n\nEach section automatically handles flex alignment: leading aligns left, center aligns center, trailing aligns right.",
3271
3281
  "name": "Appheader",
3282
+ "cssProperties": [
3283
+ {
3284
+ "description": "Height of the app header. Default is 4rem (64px).",
3285
+ "name": "--mdc-appheader-height"
3286
+ }
3287
+ ],
3272
3288
  "cssParts": [
3273
3289
  {
3274
- "description": "The main container for styling the header.",
3290
+ "description": "The main header container.",
3275
3291
  "name": "container"
3276
3292
  },
3277
3293
  {
3278
- "description": "The leading section of the header.",
3294
+ "description": "The leading section wrapper (left side).",
3279
3295
  "name": "leading-section"
3280
3296
  },
3281
3297
  {
3282
- "description": "The center section of the header.",
3298
+ "description": "The center section wrapper (middle).",
3283
3299
  "name": "center-section"
3284
3300
  },
3285
3301
  {
3286
- "description": "The trailing section of the header.",
3302
+ "description": "The trailing section wrapper (right side).",
3287
3303
  "name": "trailing-section"
3288
3304
  }
3289
3305
  ],
3290
3306
  "slots": [
3291
3307
  {
3292
- "description": "Slot for the leading section (e.g., brand logo, brand name).",
3308
+ "description": "Content for the leading section (left-aligned).",
3293
3309
  "name": "leading"
3294
3310
  },
3295
3311
  {
3296
- "description": "Slot for the center section (e.g., search bar, icons).",
3312
+ "description": "Content for the center section (center-aligned).",
3297
3313
  "name": "center"
3298
3314
  },
3299
3315
  {
3300
- "description": "Slot for the trailing section (e.g., profile avatar, icons).",
3316
+ "description": "Content for the trailing section (right-aligned).",
3301
3317
  "name": "trailing"
3302
3318
  }
3303
3319
  ],
@@ -3307,7 +3323,7 @@
3307
3323
  "module": "/src/models"
3308
3324
  },
3309
3325
  "tagName": "mdc-appheader",
3310
- "jsDoc": "/**\n * The `mdc-appheader` component provides a structured and accessible app header layout.\n * It consists of three primary sections: leading, center, and trailing.\n *\n * - The **leading section** typically holds a **brand logo**, **brand name** or **menu icon**.\n * - The **center section** can contain a **search bar**, **icons** or action controls.\n * - The **trailing section** generally includes a **profile avatar**, **additional icons** or **action controls**.\n *\n * @tagname mdc-appheader\n *\n * @slot leading - Slot for the leading section (e.g., brand logo, brand name).\n * @slot center - Slot for the center section (e.g., search bar, icons).\n * @slot trailing - Slot for the trailing section (e.g., profile avatar, icons).\n *\n * @csspart container - The main container for styling the header.\n * @csspart leading-section - The leading section of the header.\n * @csspart center-section - The center section of the header.\n * @csspart trailing-section - The trailing section of the header.\n */",
3326
+ "jsDoc": "/**\n * The `mdc-appheader` component provides a structured and accessible app header layout with three sections: leading, center, and trailing.\n *\n * ## Layout sections\n * - **Leading** - Typically holds brand logo, brand name, or menu icon\n * - **Center** - Can contain search bar, icons, navigation links, or action controls\n * - **Trailing** - Generally includes profile avatar, icons, settings, or additional action controls\n *\n * Each section automatically handles flex alignment: leading aligns left, center aligns center, trailing aligns right.\n *\n * @tagname mdc-appheader\n *\n * @slot leading - Content for the leading section (left-aligned).\n * @slot center - Content for the center section (center-aligned).\n * @slot trailing - Content for the trailing section (right-aligned).\n *\n * @cssproperty --mdc-appheader-height - Height of the app header. Default is 4rem (64px).\n *\n * @csspart container - The main header container.\n * @csspart leading-section - The leading section wrapper (left side).\n * @csspart center-section - The center section wrapper (middle).\n * @csspart trailing-section - The trailing section wrapper (right side).\n */",
3311
3327
  "customElement": true
3312
3328
  }
3313
3329
  ],
@@ -3328,7 +3344,7 @@
3328
3344
  "declarations": [
3329
3345
  {
3330
3346
  "kind": "class",
3331
- "description": "The `mdc-avatar` component is used to represent a person or a space.\nAn avatar can be an icon, initials, counter and photo.\n\nTo set the photo of an avatar,\nyou need to set \"src\" attribute.\n\nWhile the avatar image is loading, as a placeholder,\nwe will show the initials text.\nIf the initials are not specified then,\nwe will show `user-regular` icon as a placeholder.\n\nBy default, if there are no attributes specified,\nthen the default avatar will be an icon with `user-regular` name.\n\nThe avatar component is non clickable and non interactive/focusable component.\nIf the avatar is typing, then the loading indicator will be displayed.\nIf the counter type avatar is set to a negative number, then we will display 0.\nThe presence indicator will be hidden when the counter property is set.",
3347
+ "description": "The `mdc-avatar` component represents a person or a space. It displays as a photo, initials, icon, or counter.\n\n## Display Priority\n\nWhen multiple attributes are provided, the component determines what to display based on this priority:\n1. **Photo** (`src`) - Takes highest priority\n - While loading: Shows `initials` as placeholder if provided (instant), otherwise shows icon (requires loading)\n - After loading: Shows the photo\n - On error: Placeholder remains visible (initials or icon)\n2. **Icon** (`icon-name`) - Takes priority if no `src` is provided\n - Shows custom icon if `icon-name` is set (requires icon library to load)\n - **Note:** If both `icon-name` and `initials` are provided (without `src`), icon takes precedence and initials are ignored.\n This means users may see a delay while the icon loads, even though initials render instantly.\n - Defaults to `user-regular` icon if no other content is available\n3. **Initials** (`initials`) - Displayed only if no `src` or `icon-name` is provided\n - Shows first two characters, converted to uppercase\n - Renders instantly (no loading required)\n4. **Counter** (`counter`) - Displayed only if none of the above are provided\n - Shows numeric value (max 99+)\n - Negative values display as 0\n\n## Behavior\n- Non-interactive and non-focusable component (use `mdc-avatarbutton` for clickable avatars)\n- Shows loading indicator overlay when `is-typing` is true (displays on top of existing content)\n- Presence indicator hidden when counter is set or when typing",
3332
3348
  "name": "Avatar",
3333
3349
  "cssProperties": [
3334
3350
  {
@@ -3481,7 +3497,7 @@
3481
3497
  "module": "/src/models"
3482
3498
  },
3483
3499
  "tagName": "mdc-avatar",
3484
- "jsDoc": "/**\n * The `mdc-avatar` component is used to represent a person or a space.\n * An avatar can be an icon, initials, counter and photo.\n *\n * To set the photo of an avatar,\n * you need to set \"src\" attribute.\n *\n * While the avatar image is loading, as a placeholder,\n * we will show the initials text.\n * If the initials are not specified then,\n * we will show `user-regular` icon as a placeholder.\n *\n * By default, if there are no attributes specified,\n * then the default avatar will be an icon with `user-regular` name.\n *\n * The avatar component is non clickable and non interactive/focusable component.\n * If the avatar is typing, then the loading indicator will be displayed.\n * If the counter type avatar is set to a negative number, then we will display 0.\n * The presence indicator will be hidden when the counter property is set.\n *\n * @dependency mdc-icon\n * @dependency mdc-presence\n * @dependency mdc-text\n *\n * @tagname mdc-avatar\n *\n * @cssproperty --mdc-avatar-default-background-color - Allows customization of the default background color.\n * @cssproperty --mdc-avatar-default-foreground-color - Allows customization of the default foreground color.\n * @cssproperty --mdc-avatar-loading-indicator-background-color -\n * Allows customization of the loading indicator background color.\n * @cssproperty --mdc-avatar-loading-indicator-foreground-color -\n * Allows customization of the loading indicator foreground color.\n * @cssproperty --mdc-avatar-loading-overlay-background-color -\n * Allows customization of the loading overlay background color.\n *\n * @csspart photo - The photo of the avatar.\n * @csspart presence - The presence indicator of the avatar.\n * @csspart loading-wrapper - The wrapper for the loading indicator.\n * @csspart loader - The loading indicator of the avatar.\n */",
3500
+ "jsDoc": "/**\n * The `mdc-avatar` component represents a person or a space. It displays as a photo, initials, icon, or counter.\n *\n * ## Display Priority\n *\n * When multiple attributes are provided, the component determines what to display based on this priority:\n * 1. **Photo** (`src`) - Takes highest priority\n * - While loading: Shows `initials` as placeholder if provided (instant), otherwise shows icon (requires loading)\n * - After loading: Shows the photo\n * - On error: Placeholder remains visible (initials or icon)\n * 2. **Icon** (`icon-name`) - Takes priority if no `src` is provided\n * - Shows custom icon if `icon-name` is set (requires icon library to load)\n * - **Note:** If both `icon-name` and `initials` are provided (without `src`), icon takes precedence and initials are ignored.\n * This means users may see a delay while the icon loads, even though initials render instantly.\n * - Defaults to `user-regular` icon if no other content is available\n * 3. **Initials** (`initials`) - Displayed only if no `src` or `icon-name` is provided\n * - Shows first two characters, converted to uppercase\n * - Renders instantly (no loading required)\n * 4. **Counter** (`counter`) - Displayed only if none of the above are provided\n * - Shows numeric value (max 99+)\n * - Negative values display as 0\n *\n * ## Behavior\n * - Non-interactive and non-focusable component (use `mdc-avatarbutton` for clickable avatars)\n * - Shows loading indicator overlay when `is-typing` is true (displays on top of existing content)\n * - Presence indicator hidden when counter is set or when typing\n *\n * @dependency mdc-icon\n * @dependency mdc-presence\n * @dependency mdc-text\n *\n * @tagname mdc-avatar\n *\n * @cssproperty --mdc-avatar-default-background-color - Allows customization of the default background color.\n * @cssproperty --mdc-avatar-default-foreground-color - Allows customization of the default foreground color.\n * @cssproperty --mdc-avatar-loading-indicator-background-color -\n * Allows customization of the loading indicator background color.\n * @cssproperty --mdc-avatar-loading-indicator-foreground-color -\n * Allows customization of the loading indicator foreground color.\n * @cssproperty --mdc-avatar-loading-overlay-background-color -\n * Allows customization of the loading overlay background color.\n *\n * @csspart photo - The photo of the avatar.\n * @csspart presence - The presence indicator of the avatar.\n * @csspart loading-wrapper - The wrapper for the loading indicator.\n * @csspart loader - The loading indicator of the avatar.\n */",
3485
3501
  "customElement": true,
3486
3502
  "attributes": [
3487
3503
  {
@@ -3590,19 +3606,19 @@
3590
3606
  "declarations": [
3591
3607
  {
3592
3608
  "kind": "class",
3593
- "description": "The `mdc-avatarbutton` component is an interactable version of the `mdc-avatar` component.\n\nThis component is made by extending `buttonsimple` class.\nThe button component acts as a wrapper for the avatar component.\n\nTo override styles of the avatar inside, use the specified css parts.",
3609
+ "description": "The `mdc-avatarbutton` component is an interactive, clickable version of `mdc-avatar`.\nIt wraps the avatar component in a button, making it focusable and actionable.\n\nThis component extends `buttonsimple` and includes all avatar display features (photo, initials, icon, counter, presence).\nUse CSS parts to customize the avatar's appearance inside the button.\n\n## Accessibility\n- Always provide an `aria-label` attribute to describe the button's purpose",
3594
3610
  "name": "AvatarButton",
3595
3611
  "cssProperties": [
3596
3612
  {
3597
- "description": "Background color of the overlay in rest state",
3613
+ "description": "Background color of the overlay in rest state.",
3598
3614
  "name": "--mdc-avatarbutton-overlay-background-color-rest"
3599
3615
  },
3600
3616
  {
3601
- "description": "Background color of the overlay in hover state",
3617
+ "description": "Background color of the overlay in hover state.",
3602
3618
  "name": "--mdc-avatarbutton-overlay-background-color-hover"
3603
3619
  },
3604
3620
  {
3605
- "description": "Background color of the overlay in active state",
3621
+ "description": "Background color of the overlay in active state.",
3606
3622
  "name": "--mdc-avatarbutton-overlay-background-color-active"
3607
3623
  },
3608
3624
  {
@@ -3622,7 +3638,7 @@
3622
3638
  }
3623
3639
  },
3624
3640
  {
3625
- "description": "Borer color of the button",
3641
+ "description": "Border color of the button",
3626
3642
  "name": "--mdc-button-border-color",
3627
3643
  "inheritedFrom": {
3628
3644
  "name": "Buttonsimple",
@@ -4079,7 +4095,7 @@
4079
4095
  ],
4080
4096
  "events": [
4081
4097
  {
4082
- "description": "(React: onClick) This event is dispatched when the avatarbutton is clicked.",
4098
+ "description": "(React: onClick) Dispatched when the avatar button is clicked.",
4083
4099
  "name": "click",
4084
4100
  "reactName": "onClick",
4085
4101
  "inheritedFrom": {
@@ -4088,7 +4104,7 @@
4088
4104
  }
4089
4105
  },
4090
4106
  {
4091
- "description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the avatarbutton.",
4107
+ "description": "(React: onKeyDown) Dispatched when a key is pressed on the avatar button.",
4092
4108
  "name": "keydown",
4093
4109
  "reactName": "onKeyDown",
4094
4110
  "inheritedFrom": {
@@ -4097,7 +4113,7 @@
4097
4113
  }
4098
4114
  },
4099
4115
  {
4100
- "description": "(React: onKeyUp) This event is dispatched when a key is released on the avatarbutton.",
4116
+ "description": "(React: onKeyUp) Dispatched when a key is released on the avatar button.",
4101
4117
  "name": "keyup",
4102
4118
  "reactName": "onKeyUp",
4103
4119
  "inheritedFrom": {
@@ -4106,7 +4122,7 @@
4106
4122
  }
4107
4123
  },
4108
4124
  {
4109
- "description": "(React: onFocus) This event is dispatched when the avatarbutton receives focus.",
4125
+ "description": "(React: onFocus) Dispatched when the avatar button receives focus.",
4110
4126
  "name": "focus",
4111
4127
  "reactName": "onFocus",
4112
4128
  "inheritedFrom": {
@@ -4355,8 +4371,18 @@
4355
4371
  "module": "/src/components/buttonsimple/buttonsimple.component"
4356
4372
  },
4357
4373
  "tagName": "mdc-avatarbutton",
4358
- "jsDoc": "/**\n * The `mdc-avatarbutton` component is an interactable version of the `mdc-avatar` component.\n *\n * This component is made by extending `buttonsimple` class.\n * The button component acts as a wrapper for the avatar component.\n *\n * To override styles of the avatar inside, use the specified css parts.\n *\n * @dependency mdc-avatar\n *\n * @event click - (React: onClick) This event is dispatched when the avatarbutton is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the avatarbutton.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the avatarbutton.\n * @event focus - (React: onFocus) This event is dispatched when the avatarbutton receives focus.\n *\n * @tagname mdc-avatarbutton\n *\n * @cssproperty --mdc-avatarbutton-overlay-background-color-rest - Background color of the overlay in rest state\n * @cssproperty --mdc-avatarbutton-overlay-background-color-hover - Background color of the overlay in hover state\n * @cssproperty --mdc-avatarbutton-overlay-background-color-active - Background color of the overlay in active state\n *\n * @csspart overlay - The overlay part of the avatar button.\n * @csspart content - The main content of the avatar.\n * @csspart photo - The photo part of the avatar.\n * @csspart presence - The presence indicator part of the avatar.\n * @csspart loading-wrapper - The wrapper for the loading indicator of the avatar.\n * @csspart loader - The loading indicator part of the avatar.\n */",
4359
- "customElement": true
4374
+ "jsDoc": "/**\n * The `mdc-avatarbutton` component is an interactive, clickable version of `mdc-avatar`.\n * It wraps the avatar component in a button, making it focusable and actionable.\n *\n * This component extends `buttonsimple` and includes all avatar display features (photo, initials, icon, counter, presence).\n * Use CSS parts to customize the avatar's appearance inside the button.\n *\n * ## Accessibility\n * - Always provide an `aria-label` attribute to describe the button's purpose\n *\n * @dependency mdc-avatar\n *\n * @event click - (React: onClick) Dispatched when the avatar button is clicked.\n * @event keydown - (React: onKeyDown) Dispatched when a key is pressed on the avatar button.\n * @event keyup - (React: onKeyUp) Dispatched when a key is released on the avatar button.\n * @event focus - (React: onFocus) Dispatched when the avatar button receives focus.\n *\n * @tagname mdc-avatarbutton\n *\n * @cssproperty --mdc-avatarbutton-overlay-background-color-rest - Background color of the overlay in rest state.\n * @cssproperty --mdc-avatarbutton-overlay-background-color-hover - Background color of the overlay in hover state.\n * @cssproperty --mdc-avatarbutton-overlay-background-color-active - Background color of the overlay in active state.\n *\n * @csspart overlay - The overlay part of the avatar button.\n * @csspart content - The main content of the avatar.\n * @csspart photo - The photo part of the avatar.\n * @csspart presence - The presence indicator part of the avatar.\n * @csspart loading-wrapper - The wrapper for the loading indicator of the avatar.\n * @csspart loader - The loading indicator part of the avatar.\n */",
4375
+ "customElement": true,
4376
+ "slots": [
4377
+ {
4378
+ "description": "Text label of the button.",
4379
+ "name": "",
4380
+ "inheritedFrom": {
4381
+ "name": "Buttonsimple",
4382
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
4383
+ }
4384
+ }
4385
+ ]
4360
4386
  }
4361
4387
  ],
4362
4388
  "exports": [
@@ -5082,7 +5108,7 @@
5082
5108
  "text": "Size"
5083
5109
  },
5084
5110
  "privacy": "public",
5085
- "description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
5111
+ "description": "Specifies the size of the bullet visual indicator.\n\n- `small` (default): 0.25rem (4px) - Compact bullet for dense layouts\n- `medium`: 0.5rem (8px) - Standard bullet for most use cases\n- `large`: 1rem (16px) - Prominent bullet for emphasis",
5086
5112
  "default": "small",
5087
5113
  "attribute": "size",
5088
5114
  "reflects": true
@@ -5094,7 +5120,7 @@
5094
5120
  "type": {
5095
5121
  "text": "Size"
5096
5122
  },
5097
- "description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
5123
+ "description": "Specifies the size of the bullet visual indicator.\n\n- `small` (default): 0.25rem (4px) - Compact bullet for dense layouts\n- `medium`: 0.5rem (8px) - Standard bullet for most use cases\n- `large`: 1rem (16px) - Prominent bullet for emphasis",
5098
5124
  "default": "small",
5099
5125
  "fieldName": "size"
5100
5126
  }
@@ -5125,7 +5151,7 @@
5125
5151
  "declarations": [
5126
5152
  {
5127
5153
  "kind": "class",
5128
- "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/slots.",
5154
+ "description": "`mdc-button` is a component that can be configured in various ways to suit different use cases.\n\n## Button configuration\n\nThe appearance of the button depends on combination of multiple attributes.\n\n### Button Types\n\nThe type of button is inferred based on the presence of slot and/or prefix and postfix icons/slots:\n\n- **Pill button**: Contains text value, commonly used for call to action, tags, or filters\n- **Pill button with icons**: Contains an icon on the left or right side of the button\n- **Icon button**: Represented by just an icon without any text\n\n### Button Variants:\n\nOptions for button backgrounds and borders:\n\n- **Primary**: Solid background color\n- **Secondary**: Transparent background with solid border\n- **Tertiary**: No background or border, text-only appearance\n\n### Button Colors\n\nColor options for **Primary** and **Secondary** buttons:\n\n- **Default**: For standard actions\n- **Positive**: For success or confirmation actions\n- **Negative**: For destructive or error actions\n- **Accent**: For informational actions\n- **Promotional**: For promotional actions\n\n### Button Sizes\n\nSize options for different button configurations in REM:\n\n- **Pill button**: 40, 32, 28, 24\n- **Icon button**: 64, 52, 40, 32, 28, 24\n- **Tertiary icon button**: 20",
5129
5155
  "name": "Button",
5130
5156
  "cssProperties": [
5131
5157
  {
@@ -5185,12 +5211,24 @@
5185
5211
  {
5186
5212
  "description": "Content after the text label, passed in `postfix` slot",
5187
5213
  "name": "postfix"
5214
+ },
5215
+ {
5216
+ "description": "Icon element displayed before the text label when `prefix-icon` attribute is set",
5217
+ "name": "prefix-icon"
5218
+ },
5219
+ {
5220
+ "description": "Icon element displayed after the text label when `postfix-icon` attribute is set",
5221
+ "name": "postfix-icon"
5188
5222
  }
5189
5223
  ],
5190
5224
  "slots": [
5191
5225
  {
5192
5226
  "description": "Text label of the button.",
5193
- "name": ""
5227
+ "name": "",
5228
+ "inheritedFrom": {
5229
+ "name": "Buttonsimple",
5230
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
5231
+ }
5194
5232
  },
5195
5233
  {
5196
5234
  "description": "Content to be displayed before the text label.",
@@ -5253,7 +5291,7 @@
5253
5291
  "type": {
5254
5292
  "text": "ButtonColor"
5255
5293
  },
5256
- "description": "There are 5 colors for button: positive, negative, accent, promotional, default.",
5294
+ "description": "The semantic color of the button.\n- `positive`: For success or confirmation actions\n- `negative`: For destructive or error actions\n- `accent`: For informational actions\n- `promotional`: For promotional actions\n- `default`: For standard actions\n\nNote: Tertiary buttons always use default color.",
5257
5295
  "default": "default",
5258
5296
  "attribute": "color",
5259
5297
  "inheritedFrom": {
@@ -5371,7 +5409,7 @@
5371
5409
  "type": {
5372
5410
  "text": "boolean"
5373
5411
  },
5374
- "description": "The button color can be inverted by setting the inverted attribute to true.\n\nOnly applies when variant is set to `primary`, color is set to `default`\nand button is not `active`.",
5412
+ "description": "Inverts the button's color scheme for use on dark backgrounds.\nWhen enabled, the button adapts its colors to maintain proper contrast on inverted surfaces.\n\n**Requirements:**\n- Only works with `variant=\"primary\"`\n- Only works with `color=\"default\"`\n- Button must not be in `active` state\n\n**Use case:** Place buttons on dark-colored backgrounds or inverted theme sections.",
5375
5413
  "default": "false",
5376
5414
  "attribute": "inverted",
5377
5415
  "reflects": true
@@ -5396,7 +5434,7 @@
5396
5434
  "type": {
5397
5435
  "text": "IconNames | undefined"
5398
5436
  },
5399
- "description": "The name of the icon to display as a postfix.\nThe icon is displayed on the right side of the button.",
5437
+ "description": "The name of the icon to display after the button text (right side in LTR layouts).\nWhen set without text content, creates an icon-only button.\nIcons automatically change to their filled variant when the button is in active state.",
5400
5438
  "attribute": "postfix-icon",
5401
5439
  "reflects": true,
5402
5440
  "inheritedFrom": {
@@ -5410,7 +5448,7 @@
5410
5448
  "type": {
5411
5449
  "text": "IconNames | undefined"
5412
5450
  },
5413
- "description": "The name of the icon to display as a prefix.\nThe icon is displayed on the left side of the button.",
5451
+ "description": "The name of the icon to display before the button text (left side in LTR layouts).\nWhen set without text content, creates an icon-only button.\nIcons automatically change to their filled variant when the button is in active state.",
5414
5452
  "attribute": "prefix-icon",
5415
5453
  "reflects": true,
5416
5454
  "inheritedFrom": {
@@ -5576,7 +5614,7 @@
5576
5614
  "type": {
5577
5615
  "text": "ButtonSize"
5578
5616
  },
5579
- "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.",
5617
+ "description": "Specifies the size of the button in pixels. Available sizes depend on the button type:\n\n**Pill button** (with text):\n- `40`: Large size (2.5rem)\n- `32`: Default size (2rem)\n- `28`: Medium size (1.75rem)\n- `24`: Small size (1.5rem)\n\n**Icon button** (icon only):\n- `64`: Extra large (4rem)\n- `52`: Large (3.25rem)\n- `40`: Medium-large (2.5rem)\n- `32`: Default (2rem)\n- `28`: Medium (1.75rem)\n- `24`: Small (1.5rem)\n- `20`: Extra small (1.25rem) - Only available for tertiary variant",
5580
5618
  "default": "32",
5581
5619
  "attribute": "size",
5582
5620
  "reflects": true,
@@ -5659,7 +5697,7 @@
5659
5697
  "type": {
5660
5698
  "text": "ButtonVariant"
5661
5699
  },
5662
- "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.",
5700
+ "description": "The visual style variant of the button.\n- `primary`: Solid background color\n- `secondary`: Transparent background with solid border\n- `tertiary`: No background or border, text-only appearance",
5663
5701
  "default": "primary",
5664
5702
  "attribute": "variant",
5665
5703
  "inheritedFrom": {
@@ -5674,7 +5712,7 @@
5674
5712
  "type": {
5675
5713
  "text": "ButtonSize"
5676
5714
  },
5677
- "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.",
5715
+ "description": "Specifies the size of the button in pixels. Available sizes depend on the button type:\n\n**Pill button** (with text):\n- `40`: Large size (2.5rem)\n- `32`: Default size (2rem)\n- `28`: Medium size (1.75rem)\n- `24`: Small size (1.5rem)\n\n**Icon button** (icon only):\n- `64`: Extra large (4rem)\n- `52`: Large (3.25rem)\n- `40`: Medium-large (2.5rem)\n- `32`: Default (2rem)\n- `28`: Medium (1.75rem)\n- `24`: Small (1.5rem)\n- `20`: Extra small (1.25rem) - Only available for tertiary variant",
5678
5716
  "default": "32",
5679
5717
  "fieldName": "size",
5680
5718
  "inheritedFrom": {
@@ -5687,7 +5725,7 @@
5687
5725
  "type": {
5688
5726
  "text": "boolean"
5689
5727
  },
5690
- "description": "The button color can be inverted by setting the inverted attribute to true.\n\nOnly applies when variant is set to `primary`, color is set to `default`\nand button is not `active`.",
5728
+ "description": "Inverts the button's color scheme for use on dark backgrounds.\nWhen enabled, the button adapts its colors to maintain proper contrast on inverted surfaces.\n\n**Requirements:**\n- Only works with `variant=\"primary\"`\n- Only works with `color=\"default\"`\n- Button must not be in `active` state\n\n**Use case:** Place buttons on dark-colored backgrounds or inverted theme sections.",
5691
5729
  "default": "false",
5692
5730
  "fieldName": "inverted"
5693
5731
  },
@@ -5709,7 +5747,7 @@
5709
5747
  "type": {
5710
5748
  "text": "IconNames | undefined"
5711
5749
  },
5712
- "description": "The name of the icon to display as a prefix.\nThe icon is displayed on the left side of the button.",
5750
+ "description": "The name of the icon to display before the button text (left side in LTR layouts).\nWhen set without text content, creates an icon-only button.\nIcons automatically change to their filled variant when the button is in active state.",
5713
5751
  "fieldName": "prefixIcon",
5714
5752
  "inheritedFrom": {
5715
5753
  "name": "ButtonComponentMixin",
@@ -5721,7 +5759,7 @@
5721
5759
  "type": {
5722
5760
  "text": "IconNames | undefined"
5723
5761
  },
5724
- "description": "The name of the icon to display as a postfix.\nThe icon is displayed on the right side of the button.",
5762
+ "description": "The name of the icon to display after the button text (right side in LTR layouts).\nWhen set without text content, creates an icon-only button.\nIcons automatically change to their filled variant when the button is in active state.",
5725
5763
  "fieldName": "postfixIcon",
5726
5764
  "inheritedFrom": {
5727
5765
  "name": "ButtonComponentMixin",
@@ -5733,7 +5771,7 @@
5733
5771
  "type": {
5734
5772
  "text": "ButtonVariant"
5735
5773
  },
5736
- "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.",
5774
+ "description": "The visual style variant of the button.\n- `primary`: Solid background color\n- `secondary`: Transparent background with solid border\n- `tertiary`: No background or border, text-only appearance",
5737
5775
  "default": "primary",
5738
5776
  "fieldName": "variant",
5739
5777
  "inheritedFrom": {
@@ -5746,7 +5784,7 @@
5746
5784
  "type": {
5747
5785
  "text": "ButtonColor"
5748
5786
  },
5749
- "description": "There are 5 colors for button: positive, negative, accent, promotional, default.",
5787
+ "description": "The semantic color of the button.\n- `positive`: For success or confirmation actions\n- `negative`: For destructive or error actions\n- `accent`: For informational actions\n- `promotional`: For promotional actions\n- `default`: For standard actions\n\nNote: Tertiary buttons always use default color.",
5750
5788
  "default": "default",
5751
5789
  "fieldName": "color",
5752
5790
  "inheritedFrom": {
@@ -5881,7 +5919,7 @@
5881
5919
  "module": "/src/components/buttonsimple/buttonsimple.component"
5882
5920
  },
5883
5921
  "tagName": "mdc-button",
5884
- "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/slots.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-button\n *\n * @slot - Text label of the button.\n * @slot prefix - Content to be displayed before the text label.\n * @slot postfix - Content to be displayed after the text label.\n *\n * @csspart button-text - Text label of the button, passed in default slot\n * @csspart prefix - Content before the text label, passed in `prefix` slot\n * @csspart postfix - Content after the text label, passed in `postfix` slot\n *\n * @cssproperty --mdc-button-height - Height for button size\n * @cssproperty --mdc-button-background - Background of the button\n * @cssproperty --mdc-button-border-color - Borer color of the button\n * @cssproperty --mdc-button-text-color - Text color of the button\n * @cssproperty --mdc-button-prefix-icon-size - Size of the prefix icon\n * @cssproperty --mdc-button-postfix-icon-size - Size of the postfix icon\n * @cssproperty --mdc-button-line-height - Line height of the button text\n */",
5922
+ "jsDoc": "/**\n * `mdc-button` is a component that can be configured in various ways to suit different use cases.\n *\n * ## Button configuration\n *\n * The appearance of the button depends on combination of multiple attributes.\n *\n * ### Button Types\n * \n * The type of button is inferred based on the presence of slot and/or prefix and postfix icons/slots:\n * \n * - **Pill button**: Contains text value, commonly used for call to action, tags, or filters\n * - **Pill button with icons**: Contains an icon on the left or right side of the button\n * - **Icon button**: Represented by just an icon without any text\n * \n * ### Button Variants:\n *\n * Options for button backgrounds and borders:\n * \n * - **Primary**: Solid background color\n * - **Secondary**: Transparent background with solid border\n * - **Tertiary**: No background or border, text-only appearance\n *\n * ### Button Colors\n * \n * Color options for **Primary** and **Secondary** buttons:\n *\n * - **Default**: For standard actions\n * - **Positive**: For success or confirmation actions\n * - **Negative**: For destructive or error actions\n * - **Accent**: For informational actions\n * - **Promotional**: For promotional actions\n *\n * ### Button Sizes\n * \n * Size options for different button configurations in REM:\n * \n * - **Pill button**: 40, 32, 28, 24\n * - **Icon button**: 64, 52, 40, 32, 28, 24\n * - **Tertiary icon button**: 20\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-button\n *\n * @slot - Text label of the button.\n * @slot prefix - Content to be displayed before the text label.\n * @slot postfix - Content to be displayed after the text label.\n *\n * @csspart button-text - Text label of the button, passed in default slot\n * @csspart prefix - Content before the text label, passed in `prefix` slot\n * @csspart postfix - Content after the text label, passed in `postfix` slot\n * @csspart prefix-icon - Icon element displayed before the text label when `prefix-icon` attribute is set\n * @csspart postfix-icon - Icon element displayed after the text label when `postfix-icon` attribute is set\n *\n * @cssproperty --mdc-button-height - Height for button size\n * @cssproperty --mdc-button-background - Background of the button\n * @cssproperty --mdc-button-border-color - Borer color of the button\n * @cssproperty --mdc-button-text-color - Text color of the button\n * @cssproperty --mdc-button-prefix-icon-size - Size of the prefix icon\n * @cssproperty --mdc-button-postfix-icon-size - Size of the postfix icon\n * @cssproperty --mdc-button-line-height - Line height of the button text\n */",
5885
5923
  "customElement": true,
5886
5924
  "events": [
5887
5925
  {
@@ -5940,7 +5978,7 @@
5940
5978
  "declarations": [
5941
5979
  {
5942
5980
  "kind": "class",
5943
- "description": "buttongroup component, is a wrapper to group multiple buttons.\nIt can support icon buttons, combination of icon and pill buttons, and text buttons.\nButton group can be positioned in horizontal orientation and vertical orientation.\n\nThe sizes of buttons within the button group can be set using the `size` attribute on the button group,\nwhich will apply the size to all buttons within the group.\n\nButtons of sizes 24, 28, 32, and 40 are only supported inside a button group. Default size is 28.\n\nThe variant of buttons within the button group can be set using the `variant` attribute on the button group,\nwhich will apply the variant to all buttons within the group. Default variant is `primary`.\n\nAll buttons are placed horizontally by default. To change the orientation to vertical, set the `orientation` attribute to `vertical`.\n\nThings to note:\n- Button group will allow only `mdc-button` components as its direct children.\n- Button group will set the `size` and `variant` attributes on the buttons within it,\n so any `size` or `variant` set directly on any button will be overridden.",
5981
+ "description": "`mdc-buttongroup` is a wrapper component that groups multiple buttons together.\n\n## Supported button types\n- Icon buttons\n- Pill buttons\n- Combination of icon and pill buttons\n\n## Features\n- Horizontal or vertical orientation\n- Unified size and variant applied to all child buttons\n- Optional compact mode for reduced height\n- Supported sizes: 24, 28 (default), 32, 40\n\n## Usage\n- Only `mdc-button` components are allowed as direct children\n- The `size` and `variant` set on buttongroup override individual button settings",
5944
5982
  "name": "ButtonGroup",
5945
5983
  "cssProperties": [
5946
5984
  {
@@ -5976,7 +6014,7 @@
5976
6014
  "text": "boolean"
5977
6015
  },
5978
6016
  "default": "false",
5979
- "description": "When this is true, the buttons within the buttongroup will be compact.\ni.e. Irrespective of the size of the buttons, they will have a height of 24px.",
6017
+ "description": "Enables compact mode with reduced height.\nWhen true, all buttons have a fixed height of 24px regardless of their size setting.\nUseful for space-constrained layouts.",
5980
6018
  "attribute": "compact",
5981
6019
  "reflects": true
5982
6020
  },
@@ -5986,7 +6024,7 @@
5986
6024
  "type": {
5987
6025
  "text": "ButtonGroupOrientation"
5988
6026
  },
5989
- "description": "Orientation of the buttongroup.",
6027
+ "description": "Layout direction of the buttons within the group.\n- `horizontal`: Buttons are arranged side by side (default)\n- `vertical`: Buttons are stacked vertically",
5990
6028
  "default": "'horizontal'",
5991
6029
  "attribute": "orientation",
5992
6030
  "reflects": true
@@ -5997,8 +6035,8 @@
5997
6035
  "type": {
5998
6036
  "text": "ButtonGroupSize"
5999
6037
  },
6000
- "description": "Size of the buttons within the buttongroup.",
6001
- "default": "'28'",
6038
+ "description": "Size applied to all buttons in the group.\nAvailable sizes: 24, 28, 32, 40",
6039
+ "default": "28",
6002
6040
  "attribute": "size",
6003
6041
  "reflects": true
6004
6042
  },
@@ -6008,7 +6046,7 @@
6008
6046
  "type": {
6009
6047
  "text": "ButtonGroupVariant"
6010
6048
  },
6011
- "description": "Variant of the buttons within the buttongroup.",
6049
+ "description": "Visual style variant applied to all buttons in the group.\n- `primary`: Solid background color\n- `secondary`: Transparent background with solid border\n- `tertiary`: No background or border, text-only appearance",
6012
6050
  "default": "'primary'",
6013
6051
  "attribute": "variant",
6014
6052
  "reflects": true
@@ -6020,7 +6058,7 @@
6020
6058
  "type": {
6021
6059
  "text": "ButtonGroupOrientation"
6022
6060
  },
6023
- "description": "Orientation of the buttongroup.",
6061
+ "description": "Layout direction of the buttons within the group.\n- `horizontal`: Buttons are arranged side by side (default)\n- `vertical`: Buttons are stacked vertically",
6024
6062
  "default": "'horizontal'",
6025
6063
  "fieldName": "orientation"
6026
6064
  },
@@ -6029,7 +6067,7 @@
6029
6067
  "type": {
6030
6068
  "text": "ButtonGroupVariant"
6031
6069
  },
6032
- "description": "Variant of the buttons within the buttongroup.",
6070
+ "description": "Visual style variant applied to all buttons in the group.\n- `primary`: Solid background color\n- `secondary`: Transparent background with solid border\n- `tertiary`: No background or border, text-only appearance",
6033
6071
  "default": "'primary'",
6034
6072
  "fieldName": "variant"
6035
6073
  },
@@ -6038,8 +6076,8 @@
6038
6076
  "type": {
6039
6077
  "text": "ButtonGroupSize"
6040
6078
  },
6041
- "description": "Size of the buttons within the buttongroup.",
6042
- "default": "'28'",
6079
+ "description": "Size applied to all buttons in the group.\nAvailable sizes: 24, 28, 32, 40",
6080
+ "default": "28",
6043
6081
  "fieldName": "size"
6044
6082
  },
6045
6083
  {
@@ -6048,7 +6086,7 @@
6048
6086
  "text": "boolean"
6049
6087
  },
6050
6088
  "default": "false",
6051
- "description": "When this is true, the buttons within the buttongroup will be compact.\ni.e. Irrespective of the size of the buttons, they will have a height of 24px.",
6089
+ "description": "Enables compact mode with reduced height.\nWhen true, all buttons have a fixed height of 24px regardless of their size setting.\nUseful for space-constrained layouts.",
6052
6090
  "fieldName": "compact"
6053
6091
  }
6054
6092
  ],
@@ -6057,7 +6095,7 @@
6057
6095
  "module": "/src/models"
6058
6096
  },
6059
6097
  "tagName": "mdc-buttongroup",
6060
- "jsDoc": "/**\n * buttongroup component, is a wrapper to group multiple buttons.\n * It can support icon buttons, combination of icon and pill buttons, and text buttons.\n * Button group can be positioned in horizontal orientation and vertical orientation.\n *\n * The sizes of buttons within the button group can be set using the `size` attribute on the button group,\n * which will apply the size to all buttons within the group.\n *\n * Buttons of sizes 24, 28, 32, and 40 are only supported inside a button group. Default size is 28.\n *\n * The variant of buttons within the button group can be set using the `variant` attribute on the button group,\n * which will apply the variant to all buttons within the group. Default variant is `primary`.\n *\n * All buttons are placed horizontally by default. To change the orientation to vertical, set the `orientation` attribute to `vertical`.\n *\n * Things to note:\n * - Button group will allow only `mdc-button` components as its direct children.\n * - Button group will set the `size` and `variant` attributes on the buttons within it,\n * so any `size` or `variant` set directly on any button will be overridden.\n *\n * @tagname mdc-buttongroup\n *\n * @slot default - This is a default/unnamed slot, which contains the buttons\n *\n * @cssproperty --mdc-buttongroup-border-radius - The border radius of the buttongroup\n * @cssproperty --mdc-buttongroup-border-color - The border color of the buttongroup\n * @cssproperty --mdc-buttongroup-divider-color - The color of the divider between buttons within the buttongroup\n *\n * @csspart container - The container of the buttongroup.\n */",
6098
+ "jsDoc": "/**\n * `mdc-buttongroup` is a wrapper component that groups multiple buttons together.\n *\n * ## Supported button types\n * - Icon buttons\n * - Pill buttons\n * - Combination of icon and pill buttons\n *\n * ## Features\n * - Horizontal or vertical orientation\n * - Unified size and variant applied to all child buttons\n * - Optional compact mode for reduced height\n * - Supported sizes: 24, 28 (default), 32, 40\n *\n * ## Usage\n * - Only `mdc-button` components are allowed as direct children\n * - The `size` and `variant` set on buttongroup override individual button settings\n *\n * @tagname mdc-buttongroup\n *\n * @slot default - This is a default/unnamed slot, which contains the buttons\n *\n * @cssproperty --mdc-buttongroup-border-radius - The border radius of the buttongroup\n * @cssproperty --mdc-buttongroup-border-color - The border color of the buttongroup\n * @cssproperty --mdc-buttongroup-divider-color - The color of the divider between buttons within the buttongroup\n *\n * @csspart container - The container of the buttongroup.\n */",
6061
6099
  "customElement": true
6062
6100
  }
6063
6101
  ],
@@ -6217,7 +6255,7 @@
6217
6255
  "type": {
6218
6256
  "text": "ButtonColor"
6219
6257
  },
6220
- "description": "There are 5 colors for button: positive, negative, accent, promotional, default.",
6258
+ "description": "The semantic color of the button.\n- `positive`: For success or confirmation actions\n- `negative`: For destructive or error actions\n- `accent`: For informational actions\n- `promotional`: For promotional actions\n- `default`: For standard actions\n\nNote: Tertiary buttons always use default color.",
6221
6259
  "default": "default",
6222
6260
  "attribute": "color",
6223
6261
  "inheritedFrom": {
@@ -6385,7 +6423,7 @@
6385
6423
  "type": {
6386
6424
  "text": "IconNames | undefined"
6387
6425
  },
6388
- "description": "The name of the icon to display as a postfix.\nThe icon is displayed on the right side of the button.",
6426
+ "description": "The name of the icon to display after the button text (right side in LTR layouts).\nWhen set without text content, creates an icon-only button.\nIcons automatically change to their filled variant when the button is in active state.",
6389
6427
  "attribute": "postfix-icon",
6390
6428
  "reflects": true,
6391
6429
  "inheritedFrom": {
@@ -6399,7 +6437,7 @@
6399
6437
  "type": {
6400
6438
  "text": "IconNames | undefined"
6401
6439
  },
6402
- "description": "The name of the icon to display as a prefix.\nThe icon is displayed on the left side of the button.",
6440
+ "description": "The name of the icon to display before the button text (left side in LTR layouts).\nWhen set without text content, creates an icon-only button.\nIcons automatically change to their filled variant when the button is in active state.",
6403
6441
  "attribute": "prefix-icon",
6404
6442
  "reflects": true,
6405
6443
  "inheritedFrom": {
@@ -6596,7 +6634,7 @@
6596
6634
  "type": {
6597
6635
  "text": "ButtonVariant"
6598
6636
  },
6599
- "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.",
6637
+ "description": "The visual style variant of the button.\n- `primary`: Solid background color\n- `secondary`: Transparent background with solid border\n- `tertiary`: No background or border, text-only appearance",
6600
6638
  "default": "primary",
6601
6639
  "attribute": "variant",
6602
6640
  "inheritedFrom": {
@@ -6667,7 +6705,7 @@
6667
6705
  "type": {
6668
6706
  "text": "IconNames | undefined"
6669
6707
  },
6670
- "description": "The name of the icon to display as a prefix.\nThe icon is displayed on the left side of the button.",
6708
+ "description": "The name of the icon to display before the button text (left side in LTR layouts).\nWhen set without text content, creates an icon-only button.\nIcons automatically change to their filled variant when the button is in active state.",
6671
6709
  "fieldName": "prefixIcon",
6672
6710
  "inheritedFrom": {
6673
6711
  "name": "ButtonComponentMixin",
@@ -6679,7 +6717,7 @@
6679
6717
  "type": {
6680
6718
  "text": "IconNames | undefined"
6681
6719
  },
6682
- "description": "The name of the icon to display as a postfix.\nThe icon is displayed on the right side of the button.",
6720
+ "description": "The name of the icon to display after the button text (right side in LTR layouts).\nWhen set without text content, creates an icon-only button.\nIcons automatically change to their filled variant when the button is in active state.",
6683
6721
  "fieldName": "postfixIcon",
6684
6722
  "inheritedFrom": {
6685
6723
  "name": "ButtonComponentMixin",
@@ -6691,7 +6729,7 @@
6691
6729
  "type": {
6692
6730
  "text": "ButtonVariant"
6693
6731
  },
6694
- "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.",
6732
+ "description": "The visual style variant of the button.\n- `primary`: Solid background color\n- `secondary`: Transparent background with solid border\n- `tertiary`: No background or border, text-only appearance",
6695
6733
  "default": "primary",
6696
6734
  "fieldName": "variant",
6697
6735
  "inheritedFrom": {
@@ -6704,7 +6742,7 @@
6704
6742
  "type": {
6705
6743
  "text": "ButtonColor"
6706
6744
  },
6707
- "description": "There are 5 colors for button: positive, negative, accent, promotional, default.",
6745
+ "description": "The semantic color of the button.\n- `positive`: For success or confirmation actions\n- `negative`: For destructive or error actions\n- `accent`: For informational actions\n- `promotional`: For promotional actions\n- `default`: For standard actions\n\nNote: Tertiary buttons always use default color.",
6708
6746
  "default": "default",
6709
6747
  "fieldName": "color",
6710
6748
  "inheritedFrom": {
@@ -6906,7 +6944,7 @@
6906
6944
  "name": "--mdc-button-background"
6907
6945
  },
6908
6946
  {
6909
- "description": "Borer color of the button",
6947
+ "description": "Border color of the button",
6910
6948
  "name": "--mdc-button-border-color"
6911
6949
  },
6912
6950
  {
@@ -6914,6 +6952,12 @@
6914
6952
  "name": "--mdc-button-text-color"
6915
6953
  }
6916
6954
  ],
6955
+ "slots": [
6956
+ {
6957
+ "description": "Text label of the button.",
6958
+ "name": ""
6959
+ }
6960
+ ],
6917
6961
  "members": [
6918
6962
  {
6919
6963
  "kind": "field",
@@ -7313,7 +7357,7 @@
7313
7357
  "module": "/src/models"
7314
7358
  },
7315
7359
  "tagName": "mdc-buttonsimple",
7316
- "jsDoc": "/**\n * `mdc-buttonsimple` is a component that can be configured in various ways to suit different use cases.\n * It is used as an internal component and is not intended to be used directly by consumers.\n * Consumers should use the `mdc-button` component instead.\n *\n * @event click - (React: onClick) This event is dispatched when the button is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the button.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the button.\n * @event focus - (React: onFocus) This event is dispatched when the button receives focus.\n *\n * @tagname mdc-buttonsimple\n *\n * @cssproperty --mdc-button-height - Height for button size\n * @cssproperty --mdc-button-background - Background color of the button\n * @cssproperty --mdc-button-border-color - Borer color of the button\n * @cssproperty --mdc-button-text-color - Text color of the button\n */",
7360
+ "jsDoc": "/**\n * `mdc-buttonsimple` is a component that can be configured in various ways to suit different use cases.\n * It is used as an internal component and is not intended to be used directly by consumers.\n * Consumers should use the `mdc-button` component instead.\n *\n * @tagname mdc-buttonsimple\n *\n * @slot - Text label of the button.\n *\n * @event click - (React: onClick) This event is dispatched when the button is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the button.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the button.\n * @event focus - (React: onFocus) This event is dispatched when the button receives focus.\n *\n * @cssproperty --mdc-button-height - Height for button size\n * @cssproperty --mdc-button-background - Background color of the button\n * @cssproperty --mdc-button-border-color - Border color of the button\n * @cssproperty --mdc-button-text-color - Text color of the button\n */",
7317
7361
  "customElement": true
7318
7362
  }
7319
7363
  ],
@@ -7803,7 +7847,7 @@
7803
7847
  }
7804
7848
  },
7805
7849
  {
7806
- "description": "Borer color of the button",
7850
+ "description": "Border color of the button",
7807
7851
  "name": "--mdc-button-border-color",
7808
7852
  "inheritedFrom": {
7809
7853
  "name": "Buttonsimple",
@@ -7885,6 +7929,14 @@
7885
7929
  {
7886
7930
  "description": "This slot is for passing primary variant of `mdc-button` component within the footer section.",
7887
7931
  "name": "footer-button-primary"
7932
+ },
7933
+ {
7934
+ "description": "Text label of the button.",
7935
+ "name": "",
7936
+ "inheritedFrom": {
7937
+ "name": "Buttonsimple",
7938
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
7939
+ }
7888
7940
  }
7889
7941
  ],
7890
7942
  "members": [
@@ -11175,7 +11227,7 @@
11175
11227
  }
11176
11228
  },
11177
11229
  {
11178
- "description": "Borer color of the button",
11230
+ "description": "Border color of the button",
11179
11231
  "name": "--mdc-button-border-color",
11180
11232
  "inheritedFrom": {
11181
11233
  "name": "Buttonsimple",
@@ -11776,7 +11828,17 @@
11776
11828
  },
11777
11829
  "tagName": "mdc-chip",
11778
11830
  "jsDoc": "/**\n * mdc-chip is an interactive element that can be used to represent a chip. It supports a leading icon along with label.\n * Consumers can wrap this component around a tooltip to provide additional context.\n *\n * It is recommended to keep the label text for the chip component concise and compact.\n * For best results, we recommend limiting the <b>maximum length of the label text to 20 characters</b>,\n * including empty spaces to split words.\n *\n * This component is built by extending Buttonsimple.\n *\n * @tagname mdc-chip\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @cssproperty --mdc-chip-color - The color of the chip.\n * @cssproperty --mdc-chip-border-color - The border color of the chip.\n * @cssproperty --mdc-chip-background-color - The background color of the chip.\n * @cssproperty --mdc-button-height - Height for button size\n *\n * @csspart label - The label part of the chip.\n *\n * @event click - (React: onClick) This event is dispatched when the chip is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the chip.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the chip.\n * @event focus - (React: onFocus) This event is dispatched when the chip receives focus.\n *\n */",
11779
- "customElement": true
11831
+ "customElement": true,
11832
+ "slots": [
11833
+ {
11834
+ "description": "Text label of the button.",
11835
+ "name": "",
11836
+ "inheritedFrom": {
11837
+ "name": "Buttonsimple",
11838
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
11839
+ }
11840
+ }
11841
+ ]
11780
11842
  }
11781
11843
  ],
11782
11844
  "exports": [
@@ -16653,7 +16715,7 @@
16653
16715
  }
16654
16716
  },
16655
16717
  {
16656
- "description": "Borer color of the button",
16718
+ "description": "Border color of the button",
16657
16719
  "name": "--mdc-button-border-color",
16658
16720
  "inheritedFrom": {
16659
16721
  "name": "Buttonsimple",
@@ -17312,7 +17374,17 @@
17312
17374
  },
17313
17375
  "tagName": "mdc-filterchip",
17314
17376
  "jsDoc": "/**\n * mdc-filterchip component is an interactive chip that consumers can use to select or deselect.\n * They can be found with lists or tables as quick filters.\n *\n * This component is built on top of the mdc-chip component.\n *\n * @tagname mdc-filterchip\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @csspart label - The label part of the chip.\n *\n * @cssproperty --mdc-chip-color - The color of the chip.\n * @cssproperty --mdc-chip-border-color - The border color of the chip.\n * @cssproperty --mdc-chip-background-color - The background color of the chip.\n *\n * @event click - (React: onClick) This event is dispatched when the chip is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the chip.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the chip.\n * @event focus - (React: onFocus) This event is dispatched when the chip receives focus.\n */",
17315
- "customElement": true
17377
+ "customElement": true,
17378
+ "slots": [
17379
+ {
17380
+ "description": "Text label of the button.",
17381
+ "name": "",
17382
+ "inheritedFrom": {
17383
+ "name": "Buttonsimple",
17384
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
17385
+ }
17386
+ }
17387
+ ]
17316
17388
  }
17317
17389
  ],
17318
17390
  "exports": [
@@ -21219,7 +21291,7 @@
21219
21291
  }
21220
21292
  },
21221
21293
  {
21222
- "description": "Borer color of the button",
21294
+ "description": "Border color of the button",
21223
21295
  "name": "--mdc-button-border-color",
21224
21296
  "inheritedFrom": {
21225
21297
  "name": "Buttonsimple",
@@ -21238,7 +21310,11 @@
21238
21310
  "slots": [
21239
21311
  {
21240
21312
  "description": "Text label of the linkbutton.",
21241
- "name": ""
21313
+ "name": "",
21314
+ "inheritedFrom": {
21315
+ "name": "Buttonsimple",
21316
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
21317
+ }
21242
21318
  }
21243
21319
  ],
21244
21320
  "members": [
@@ -45722,7 +45798,7 @@
45722
45798
  }
45723
45799
  },
45724
45800
  {
45725
- "description": "Borer color of the button",
45801
+ "description": "Border color of the button",
45726
45802
  "name": "--mdc-button-border-color",
45727
45803
  "inheritedFrom": {
45728
45804
  "name": "Buttonsimple",
@@ -46399,7 +46475,17 @@
46399
46475
  },
46400
46476
  "tagName": "mdc-tab",
46401
46477
  "jsDoc": "/**\n * `mdc-tab` is Tab component to be used within the Tabgroup.\n *\n * Passing in the attribute `text` to the tab component is changing the text displayed in the tab.\n *\n * Pass attribute `tabid` when using inside of `tablist` component.\n *\n * The `slot=\"badge\"` can be used to add a badge to the tab.\n *\n * The `slot=\"chip\"` can be used to add a chip to the tab.\n *\n * For `icon`, the `mdc-icon` component is used to render the icon.\n *\n * Note: Icons can be used in conjunction with badges or chips.\n * Badges and chips should not be used at the same time.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @event click - (React: onClick) This event is dispatched when the tab is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the tab.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the tab.\n * @event focus - (React: onFocus) This event is dispatched when the tab receives focus.\n * @event activechange - (React: onActiveChange) This event is dispatched when the active state of the tab changes\n * <br />\n * Event Data: `detail: { tabId: this.tabId, active }`\n * <br />\n * Note: the activechange event is used by the tab list component to react to the change in state of the tab,\n * so this event won't be needed if the tab list is used.\n *\n * @tagname mdc-tab\n *\n * @cssproperty --mdc-tab-height - The height of the tab.\n * @cssproperty --mdc-tab-padding-left - The left padding of the tab.\n * @cssproperty --mdc-tab-padding-right - The right padding of the tab.\n * @cssproperty --mdc-tab-content-gap - The gap between the icon and text in the tab.\n * @cssproperty --mdc-tab-background-color - The background color of the tab.\n * @cssproperty --mdc-tab-color - The text color of the tab.\n * @cssproperty --mdc-tab-border-radius - The border radius of the tab.\n *\n * @cssproperty --mdc-tab-line-active-indicator-height - The height of the active indicator line.\n * @cssproperty --mdc-tab-line-active-indicator-width - The width of the active indicator line.\n *\n * @cssproperty --mdc-tab-line-border-bottom-left-radius - The border bottom left radius of the active indicator line.\n * @cssproperty --mdc-tab-line-border-bottom-right-radius - The border bottom right radius of the active indicator line.\n * @cssproperty --mdc-tab-line-border-top-left-radius - The border top left radius of the active indicator line.\n * @cssproperty --mdc-tab-line-border-top-right-radius - The border top right radius of the active indicator line.\n *\n *\n *\n * @csspart container - The container of the tab.\n * @csspart icon - The icon of the tab.\n * @csspart indicator - The indicator of the tab.\n * @csspart text - The text of the tab.\n */",
46402
- "customElement": true
46478
+ "customElement": true,
46479
+ "slots": [
46480
+ {
46481
+ "description": "Text label of the button.",
46482
+ "name": "",
46483
+ "inheritedFrom": {
46484
+ "name": "Buttonsimple",
46485
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
46486
+ }
46487
+ }
46488
+ ]
46403
46489
  }
46404
46490
  ],
46405
46491
  "exports": [
@@ -54713,7 +54799,7 @@
54713
54799
  "type": {
54714
54800
  "text": "ButtonColor"
54715
54801
  },
54716
- "description": "There are 5 colors for button: positive, negative, accent, promotional, default.",
54802
+ "description": "The semantic color of the button.\n- `positive`: For success or confirmation actions\n- `negative`: For destructive or error actions\n- `accent`: For informational actions\n- `promotional`: For promotional actions\n- `default`: For standard actions\n\nNote: Tertiary buttons always use default color.",
54717
54803
  "default": "default",
54718
54804
  "attribute": "color"
54719
54805
  },
@@ -54735,7 +54821,7 @@
54735
54821
  "type": {
54736
54822
  "text": "IconNames | undefined"
54737
54823
  },
54738
- "description": "The name of the icon to display as a postfix.\nThe icon is displayed on the right side of the button.",
54824
+ "description": "The name of the icon to display after the button text (right side in LTR layouts).\nWhen set without text content, creates an icon-only button.\nIcons automatically change to their filled variant when the button is in active state.",
54739
54825
  "attribute": "postfix-icon",
54740
54826
  "reflects": true
54741
54827
  },
@@ -54745,7 +54831,7 @@
54745
54831
  "type": {
54746
54832
  "text": "IconNames | undefined"
54747
54833
  },
54748
- "description": "The name of the icon to display as a prefix.\nThe icon is displayed on the left side of the button.",
54834
+ "description": "The name of the icon to display before the button text (left side in LTR layouts).\nWhen set without text content, creates an icon-only button.\nIcons automatically change to their filled variant when the button is in active state.",
54749
54835
  "attribute": "prefix-icon",
54750
54836
  "reflects": true
54751
54837
  },
@@ -54800,7 +54886,7 @@
54800
54886
  "type": {
54801
54887
  "text": "ButtonVariant"
54802
54888
  },
54803
- "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.",
54889
+ "description": "The visual style variant of the button.\n- `primary`: Solid background color\n- `secondary`: Transparent background with solid border\n- `tertiary`: No background or border, text-only appearance",
54804
54890
  "default": "primary",
54805
54891
  "attribute": "variant"
54806
54892
  }
@@ -54811,7 +54897,7 @@
54811
54897
  "type": {
54812
54898
  "text": "IconNames | undefined"
54813
54899
  },
54814
- "description": "The name of the icon to display as a prefix.\nThe icon is displayed on the left side of the button.",
54900
+ "description": "The name of the icon to display before the button text (left side in LTR layouts).\nWhen set without text content, creates an icon-only button.\nIcons automatically change to their filled variant when the button is in active state.",
54815
54901
  "fieldName": "prefixIcon"
54816
54902
  },
54817
54903
  {
@@ -54819,7 +54905,7 @@
54819
54905
  "type": {
54820
54906
  "text": "IconNames | undefined"
54821
54907
  },
54822
- "description": "The name of the icon to display as a postfix.\nThe icon is displayed on the right side of the button.",
54908
+ "description": "The name of the icon to display after the button text (right side in LTR layouts).\nWhen set without text content, creates an icon-only button.\nIcons automatically change to their filled variant when the button is in active state.",
54823
54909
  "fieldName": "postfixIcon"
54824
54910
  },
54825
54911
  {
@@ -54827,7 +54913,7 @@
54827
54913
  "type": {
54828
54914
  "text": "ButtonVariant"
54829
54915
  },
54830
- "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.",
54916
+ "description": "The visual style variant of the button.\n- `primary`: Solid background color\n- `secondary`: Transparent background with solid border\n- `tertiary`: No background or border, text-only appearance",
54831
54917
  "default": "primary",
54832
54918
  "fieldName": "variant"
54833
54919
  },
@@ -54836,7 +54922,7 @@
54836
54922
  "type": {
54837
54923
  "text": "ButtonColor"
54838
54924
  },
54839
- "description": "There are 5 colors for button: positive, negative, accent, promotional, default.",
54925
+ "description": "The semantic color of the button.\n- `positive`: For success or confirmation actions\n- `negative`: For destructive or error actions\n- `accent`: For informational actions\n- `promotional`: For promotional actions\n- `default`: For standard actions\n\nNote: Tertiary buttons always use default color.",
54840
54926
  "default": "default",
54841
54927
  "fieldName": "color"
54842
54928
  }