@momentum-design/components 0.127.7 → 0.127.8

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.
@@ -1654,218 +1654,6 @@
1654
1654
  }
1655
1655
  ]
1656
1656
  },
1657
- {
1658
- "kind": "javascript-module",
1659
- "path": "components/animation/animation.component.js",
1660
- "declarations": [
1661
- {
1662
- "kind": "class",
1663
- "description": "The `mdc-animation` component is a wrapper around the Lottie animation library.\nIt fetches the animation data dynamically based on the provided name and renders it.\nThis is a display only component that does not have any interactive functionality.\nFrom accessibility perspective, (by default) it is a decorative image component.",
1664
- "name": "Animation",
1665
- "members": [
1666
- {
1667
- "kind": "field",
1668
- "name": "name",
1669
- "type": {
1670
- "text": "AnimationNames | undefined"
1671
- },
1672
- "description": "Name of the animation (= filename)",
1673
- "attribute": "name",
1674
- "reflects": true
1675
- },
1676
- {
1677
- "kind": "field",
1678
- "name": "loop",
1679
- "type": {
1680
- "text": "LoopType | undefined"
1681
- },
1682
- "description": "How many times to loop the animation\n- \"true\" - infinite\n- \"false\" - no loop\n- number - number of times to loop",
1683
- "attribute": "loop",
1684
- "reflects": true
1685
- },
1686
- {
1687
- "kind": "field",
1688
- "name": "autoplay",
1689
- "type": {
1690
- "text": "boolean | undefined"
1691
- },
1692
- "description": "Weather start the animation automatically",
1693
- "attribute": "autoplay",
1694
- "reflects": true
1695
- },
1696
- {
1697
- "kind": "field",
1698
- "name": "ariaLabel",
1699
- "type": {
1700
- "text": "string | null"
1701
- },
1702
- "default": "null",
1703
- "description": "Aria-label attribute to be set for accessibility",
1704
- "attribute": "aria-label"
1705
- },
1706
- {
1707
- "kind": "field",
1708
- "name": "ariaLabelledby",
1709
- "type": {
1710
- "text": "string | null"
1711
- },
1712
- "default": "null",
1713
- "description": "Aria-labelledby attribute to be set for accessibility",
1714
- "attribute": "aria-labelledby"
1715
- },
1716
- {
1717
- "kind": "field",
1718
- "name": "lottieInstance",
1719
- "type": {
1720
- "text": "AnimationItem | undefined"
1721
- },
1722
- "privacy": "private",
1723
- "description": "Lottie animation instance"
1724
- },
1725
- {
1726
- "kind": "field",
1727
- "name": "containerRef",
1728
- "type": {
1729
- "text": "Ref<HTMLDivElement>"
1730
- },
1731
- "privacy": "private",
1732
- "description": "Container for the animation"
1733
- },
1734
- {
1735
- "kind": "field",
1736
- "name": "animation",
1737
- "description": "Exposed API of the animation library (lottie)",
1738
- "readonly": true
1739
- },
1740
- {
1741
- "kind": "method",
1742
- "name": "getLoopValue",
1743
- "privacy": "private"
1744
- },
1745
- {
1746
- "kind": "method",
1747
- "name": "onLoadSuccessHandler",
1748
- "privacy": "private",
1749
- "parameters": [
1750
- {
1751
- "name": "animationData",
1752
- "type": {
1753
- "text": "any"
1754
- }
1755
- }
1756
- ],
1757
- "description": "Create new lotty instance for the loaded data"
1758
- },
1759
- {
1760
- "kind": "method",
1761
- "name": "onLoadFailHandler",
1762
- "privacy": "private",
1763
- "parameters": [
1764
- {
1765
- "name": "error",
1766
- "type": {
1767
- "text": "Error"
1768
- }
1769
- }
1770
- ],
1771
- "description": "Error handler for animation loading"
1772
- },
1773
- {
1774
- "kind": "method",
1775
- "name": "getAnimationData",
1776
- "privacy": "private",
1777
- "description": "Import animation data dynamically"
1778
- },
1779
- {
1780
- "kind": "field",
1781
- "name": "onCompleteHandler",
1782
- "description": "Re-dispatch the complete event from the animation library\n\nThis handler called with the animation instance instead of the component instance\nso we need to bind it to the component instance. The arrow function just does that."
1783
- }
1784
- ],
1785
- "events": [
1786
- {
1787
- "name": "load",
1788
- "type": {
1789
- "text": "CustomEvent"
1790
- },
1791
- "description": "(React: onLoad) This event is dispatched when the animation is loaded",
1792
- "reactName": "onLoad"
1793
- },
1794
- {
1795
- "description": "(React: onComplete) This event is dispatched when all animation loops completed",
1796
- "name": "complete",
1797
- "reactName": "onComplete"
1798
- },
1799
- {
1800
- "description": "(React: onError) This event is dispatched when animation loading failed",
1801
- "name": "error",
1802
- "reactName": "onError"
1803
- }
1804
- ],
1805
- "attributes": [
1806
- {
1807
- "name": "name",
1808
- "type": {
1809
- "text": "AnimationNames | undefined"
1810
- },
1811
- "description": "Name of the animation (= filename)",
1812
- "fieldName": "name"
1813
- },
1814
- {
1815
- "name": "loop",
1816
- "type": {
1817
- "text": "LoopType | undefined"
1818
- },
1819
- "description": "How many times to loop the animation\n- \"true\" - infinite\n- \"false\" - no loop\n- number - number of times to loop",
1820
- "fieldName": "loop"
1821
- },
1822
- {
1823
- "name": "autoplay",
1824
- "type": {
1825
- "text": "boolean | undefined"
1826
- },
1827
- "description": "Weather start the animation automatically",
1828
- "fieldName": "autoplay"
1829
- },
1830
- {
1831
- "name": "aria-label",
1832
- "type": {
1833
- "text": "string | null"
1834
- },
1835
- "default": "null",
1836
- "description": "Aria-label attribute to be set for accessibility",
1837
- "fieldName": "ariaLabel"
1838
- },
1839
- {
1840
- "name": "aria-labelledby",
1841
- "type": {
1842
- "text": "string | null"
1843
- },
1844
- "default": "null",
1845
- "description": "Aria-labelledby attribute to be set for accessibility",
1846
- "fieldName": "ariaLabelledby"
1847
- }
1848
- ],
1849
- "superclass": {
1850
- "name": "Component",
1851
- "module": "/src/models"
1852
- },
1853
- "tagName": "mdc-animation",
1854
- "jsDoc": "/**\n * The `mdc-animation` component is a wrapper around the Lottie animation library.\n * It fetches the animation data dynamically based on the provided name and renders it.\n * This is a display only component that does not have any interactive functionality.\n * From accessibility perspective, (by default) it is a decorative image component.\n *\n * @tagname mdc-animation\n *\n * @event load - (React: onLoad) This event is dispatched when the animation is loaded\n * @event complete - (React: onComplete) This event is dispatched when all animation loops completed\n * @event error - (React: onError) This event is dispatched when animation loading failed\n */",
1855
- "customElement": true
1856
- }
1857
- ],
1858
- "exports": [
1859
- {
1860
- "kind": "js",
1861
- "name": "default",
1862
- "declaration": {
1863
- "name": "Animation",
1864
- "module": "components/animation/animation.component.js"
1865
- }
1866
- }
1867
- ]
1868
- },
1869
1657
  {
1870
1658
  "kind": "javascript-module",
1871
1659
  "path": "components/announcementdialog/announcementdialog.component.js",
@@ -3296,32 +3084,244 @@
3296
3084
  },
3297
3085
  {
3298
3086
  "kind": "javascript-module",
3299
- "path": "components/avatar/avatar.component.js",
3087
+ "path": "components/animation/animation.component.js",
3300
3088
  "declarations": [
3301
3089
  {
3302
3090
  "kind": "class",
3303
- "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.",
3304
- "name": "Avatar",
3305
- "cssProperties": [
3306
- {
3307
- "description": "Allows customization of the default background color.",
3308
- "name": "--mdc-avatar-default-background-color"
3309
- },
3091
+ "description": "The `mdc-animation` component is a wrapper around the Lottie animation library.\nIt fetches the animation data dynamically based on the provided name and renders it.\nThis is a display only component that does not have any interactive functionality.\nFrom accessibility perspective, (by default) it is a decorative image component.",
3092
+ "name": "Animation",
3093
+ "members": [
3310
3094
  {
3311
- "description": "Allows customization of the default foreground color.",
3312
- "name": "--mdc-avatar-default-foreground-color"
3095
+ "kind": "field",
3096
+ "name": "name",
3097
+ "type": {
3098
+ "text": "AnimationNames | undefined"
3099
+ },
3100
+ "description": "Name of the animation (= filename)",
3101
+ "attribute": "name",
3102
+ "reflects": true
3313
3103
  },
3314
3104
  {
3315
- "description": "Allows customization of the loading indicator background color.",
3316
- "name": "--mdc-avatar-loading-indicator-background-color"
3105
+ "kind": "field",
3106
+ "name": "loop",
3107
+ "type": {
3108
+ "text": "LoopType | undefined"
3109
+ },
3110
+ "description": "How many times to loop the animation\n- \"true\" - infinite\n- \"false\" - no loop\n- number - number of times to loop",
3111
+ "attribute": "loop",
3112
+ "reflects": true
3317
3113
  },
3318
3114
  {
3319
- "description": "Allows customization of the loading indicator foreground color.",
3320
- "name": "--mdc-avatar-loading-indicator-foreground-color"
3115
+ "kind": "field",
3116
+ "name": "autoplay",
3117
+ "type": {
3118
+ "text": "boolean | undefined"
3119
+ },
3120
+ "description": "Weather start the animation automatically",
3121
+ "attribute": "autoplay",
3122
+ "reflects": true
3321
3123
  },
3322
3124
  {
3323
- "description": "Allows customization of the loading overlay background color.",
3324
- "name": "--mdc-avatar-loading-overlay-background-color"
3125
+ "kind": "field",
3126
+ "name": "ariaLabel",
3127
+ "type": {
3128
+ "text": "string | null"
3129
+ },
3130
+ "default": "null",
3131
+ "description": "Aria-label attribute to be set for accessibility",
3132
+ "attribute": "aria-label"
3133
+ },
3134
+ {
3135
+ "kind": "field",
3136
+ "name": "ariaLabelledby",
3137
+ "type": {
3138
+ "text": "string | null"
3139
+ },
3140
+ "default": "null",
3141
+ "description": "Aria-labelledby attribute to be set for accessibility",
3142
+ "attribute": "aria-labelledby"
3143
+ },
3144
+ {
3145
+ "kind": "field",
3146
+ "name": "lottieInstance",
3147
+ "type": {
3148
+ "text": "AnimationItem | undefined"
3149
+ },
3150
+ "privacy": "private",
3151
+ "description": "Lottie animation instance"
3152
+ },
3153
+ {
3154
+ "kind": "field",
3155
+ "name": "containerRef",
3156
+ "type": {
3157
+ "text": "Ref<HTMLDivElement>"
3158
+ },
3159
+ "privacy": "private",
3160
+ "description": "Container for the animation"
3161
+ },
3162
+ {
3163
+ "kind": "field",
3164
+ "name": "animation",
3165
+ "description": "Exposed API of the animation library (lottie)",
3166
+ "readonly": true
3167
+ },
3168
+ {
3169
+ "kind": "method",
3170
+ "name": "getLoopValue",
3171
+ "privacy": "private"
3172
+ },
3173
+ {
3174
+ "kind": "method",
3175
+ "name": "onLoadSuccessHandler",
3176
+ "privacy": "private",
3177
+ "parameters": [
3178
+ {
3179
+ "name": "animationData",
3180
+ "type": {
3181
+ "text": "any"
3182
+ }
3183
+ }
3184
+ ],
3185
+ "description": "Create new lotty instance for the loaded data"
3186
+ },
3187
+ {
3188
+ "kind": "method",
3189
+ "name": "onLoadFailHandler",
3190
+ "privacy": "private",
3191
+ "parameters": [
3192
+ {
3193
+ "name": "error",
3194
+ "type": {
3195
+ "text": "Error"
3196
+ }
3197
+ }
3198
+ ],
3199
+ "description": "Error handler for animation loading"
3200
+ },
3201
+ {
3202
+ "kind": "method",
3203
+ "name": "getAnimationData",
3204
+ "privacy": "private",
3205
+ "description": "Import animation data dynamically"
3206
+ },
3207
+ {
3208
+ "kind": "field",
3209
+ "name": "onCompleteHandler",
3210
+ "description": "Re-dispatch the complete event from the animation library\n\nThis handler called with the animation instance instead of the component instance\nso we need to bind it to the component instance. The arrow function just does that."
3211
+ }
3212
+ ],
3213
+ "events": [
3214
+ {
3215
+ "name": "load",
3216
+ "type": {
3217
+ "text": "CustomEvent"
3218
+ },
3219
+ "description": "(React: onLoad) This event is dispatched when the animation is loaded",
3220
+ "reactName": "onLoad"
3221
+ },
3222
+ {
3223
+ "description": "(React: onComplete) This event is dispatched when all animation loops completed",
3224
+ "name": "complete",
3225
+ "reactName": "onComplete"
3226
+ },
3227
+ {
3228
+ "description": "(React: onError) This event is dispatched when animation loading failed",
3229
+ "name": "error",
3230
+ "reactName": "onError"
3231
+ }
3232
+ ],
3233
+ "attributes": [
3234
+ {
3235
+ "name": "name",
3236
+ "type": {
3237
+ "text": "AnimationNames | undefined"
3238
+ },
3239
+ "description": "Name of the animation (= filename)",
3240
+ "fieldName": "name"
3241
+ },
3242
+ {
3243
+ "name": "loop",
3244
+ "type": {
3245
+ "text": "LoopType | undefined"
3246
+ },
3247
+ "description": "How many times to loop the animation\n- \"true\" - infinite\n- \"false\" - no loop\n- number - number of times to loop",
3248
+ "fieldName": "loop"
3249
+ },
3250
+ {
3251
+ "name": "autoplay",
3252
+ "type": {
3253
+ "text": "boolean | undefined"
3254
+ },
3255
+ "description": "Weather start the animation automatically",
3256
+ "fieldName": "autoplay"
3257
+ },
3258
+ {
3259
+ "name": "aria-label",
3260
+ "type": {
3261
+ "text": "string | null"
3262
+ },
3263
+ "default": "null",
3264
+ "description": "Aria-label attribute to be set for accessibility",
3265
+ "fieldName": "ariaLabel"
3266
+ },
3267
+ {
3268
+ "name": "aria-labelledby",
3269
+ "type": {
3270
+ "text": "string | null"
3271
+ },
3272
+ "default": "null",
3273
+ "description": "Aria-labelledby attribute to be set for accessibility",
3274
+ "fieldName": "ariaLabelledby"
3275
+ }
3276
+ ],
3277
+ "superclass": {
3278
+ "name": "Component",
3279
+ "module": "/src/models"
3280
+ },
3281
+ "tagName": "mdc-animation",
3282
+ "jsDoc": "/**\n * The `mdc-animation` component is a wrapper around the Lottie animation library.\n * It fetches the animation data dynamically based on the provided name and renders it.\n * This is a display only component that does not have any interactive functionality.\n * From accessibility perspective, (by default) it is a decorative image component.\n *\n * @tagname mdc-animation\n *\n * @event load - (React: onLoad) This event is dispatched when the animation is loaded\n * @event complete - (React: onComplete) This event is dispatched when all animation loops completed\n * @event error - (React: onError) This event is dispatched when animation loading failed\n */",
3283
+ "customElement": true
3284
+ }
3285
+ ],
3286
+ "exports": [
3287
+ {
3288
+ "kind": "js",
3289
+ "name": "default",
3290
+ "declaration": {
3291
+ "name": "Animation",
3292
+ "module": "components/animation/animation.component.js"
3293
+ }
3294
+ }
3295
+ ]
3296
+ },
3297
+ {
3298
+ "kind": "javascript-module",
3299
+ "path": "components/avatar/avatar.component.js",
3300
+ "declarations": [
3301
+ {
3302
+ "kind": "class",
3303
+ "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.",
3304
+ "name": "Avatar",
3305
+ "cssProperties": [
3306
+ {
3307
+ "description": "Allows customization of the default background color.",
3308
+ "name": "--mdc-avatar-default-background-color"
3309
+ },
3310
+ {
3311
+ "description": "Allows customization of the default foreground color.",
3312
+ "name": "--mdc-avatar-default-foreground-color"
3313
+ },
3314
+ {
3315
+ "description": "Allows customization of the loading indicator background color.",
3316
+ "name": "--mdc-avatar-loading-indicator-background-color"
3317
+ },
3318
+ {
3319
+ "description": "Allows customization of the loading indicator foreground color.",
3320
+ "name": "--mdc-avatar-loading-indicator-foreground-color"
3321
+ },
3322
+ {
3323
+ "description": "Allows customization of the loading overlay background color.",
3324
+ "name": "--mdc-avatar-loading-overlay-background-color"
3325
3325
  }
3326
3326
  ],
3327
3327
  "cssParts": [
@@ -4848,107 +4848,36 @@
4848
4848
  },
4849
4849
  {
4850
4850
  "kind": "javascript-module",
4851
- "path": "components/bullet/bullet.component.js",
4851
+ "path": "components/brandvisual/brandvisual.component.js",
4852
4852
  "declarations": [
4853
4853
  {
4854
4854
  "kind": "class",
4855
- "description": "Bullet component, which is a visual marker\nand be used to organize and present items in a list format.",
4856
- "name": "Bullet",
4857
- "cssProperties": [
4858
- {
4859
- "description": "background color of the bullet",
4860
- "name": "--mdc-bullet-background-color"
4861
- },
4862
- {
4863
- "description": "small size value of the bullet",
4864
- "name": "--mdc-bullet-size-small"
4865
- },
4855
+ "description": "The `mdc-brandvisual` component is responsible for rendering logos dynamically & ensures they are\ndisplayed correctly within applications.\n\nFeatures:\n- Dynamically loads brandvisuals based on the `name` attribute.\n- Emits a `load` event when the brandvisual is successfully fetched.\n- Emits an `error` event when the brandvisual import fails.\n- Supports accessibility best practices.\n- Used for brand representation within the design system.",
4856
+ "name": "Brandvisual",
4857
+ "members": [
4866
4858
  {
4867
- "description": "medium size value of the bullet",
4868
- "name": "--mdc-bullet-size-medium"
4859
+ "kind": "field",
4860
+ "name": "brandVisualData",
4861
+ "type": {
4862
+ "text": "Element | TemplateResult | undefined"
4863
+ },
4864
+ "privacy": "private"
4869
4865
  },
4870
- {
4871
- "description": "large size value of the bullet",
4872
- "name": "--mdc-bullet-size-large"
4873
- }
4874
- ],
4875
- "members": [
4876
4866
  {
4877
4867
  "kind": "field",
4878
- "name": "size",
4868
+ "name": "name",
4879
4869
  "type": {
4880
- "text": "Size"
4870
+ "text": "BrandVisualNames | undefined"
4881
4871
  },
4882
- "privacy": "public",
4883
- "description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
4884
- "default": "small",
4885
- "attribute": "size",
4872
+ "description": "Name of the brandVisual (= filename)",
4873
+ "attribute": "name",
4886
4874
  "reflects": true
4887
- }
4888
- ],
4889
- "attributes": [
4875
+ },
4890
4876
  {
4891
- "name": "size",
4877
+ "kind": "field",
4878
+ "name": "altText",
4892
4879
  "type": {
4893
- "text": "Size"
4894
- },
4895
- "description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
4896
- "default": "small",
4897
- "fieldName": "size"
4898
- }
4899
- ],
4900
- "superclass": {
4901
- "name": "Component",
4902
- "module": "/src/models"
4903
- },
4904
- "tagName": "mdc-bullet",
4905
- "jsDoc": "/**\n * Bullet component, which is a visual marker\n * and be used to organize and present items in a list format.\n *\n * @tagname mdc-bullet\n *\n * @cssproperty --mdc-bullet-background-color - background color of the bullet\n * @cssproperty --mdc-bullet-size-small - small size value of the bullet\n * @cssproperty --mdc-bullet-size-medium - medium size value of the bullet\n * @cssproperty --mdc-bullet-size-large - large size value of the bullet\n */",
4906
- "customElement": true
4907
- }
4908
- ],
4909
- "exports": [
4910
- {
4911
- "kind": "js",
4912
- "name": "default",
4913
- "declaration": {
4914
- "name": "Bullet",
4915
- "module": "components/bullet/bullet.component.js"
4916
- }
4917
- }
4918
- ]
4919
- },
4920
- {
4921
- "kind": "javascript-module",
4922
- "path": "components/brandvisual/brandvisual.component.js",
4923
- "declarations": [
4924
- {
4925
- "kind": "class",
4926
- "description": "The `mdc-brandvisual` component is responsible for rendering logos dynamically & ensures they are\ndisplayed correctly within applications.\n\nFeatures:\n- Dynamically loads brandvisuals based on the `name` attribute.\n- Emits a `load` event when the brandvisual is successfully fetched.\n- Emits an `error` event when the brandvisual import fails.\n- Supports accessibility best practices.\n- Used for brand representation within the design system.",
4927
- "name": "Brandvisual",
4928
- "members": [
4929
- {
4930
- "kind": "field",
4931
- "name": "brandVisualData",
4932
- "type": {
4933
- "text": "Element | TemplateResult | undefined"
4934
- },
4935
- "privacy": "private"
4936
- },
4937
- {
4938
- "kind": "field",
4939
- "name": "name",
4940
- "type": {
4941
- "text": "BrandVisualNames | undefined"
4942
- },
4943
- "description": "Name of the brandVisual (= filename)",
4944
- "attribute": "name",
4945
- "reflects": true
4946
- },
4947
- {
4948
- "kind": "field",
4949
- "name": "altText",
4950
- "type": {
4951
- "text": "string | undefined"
4880
+ "text": "string | undefined"
4952
4881
  },
4953
4882
  "description": "Alt text for the brandvisual image for accessibility.\nThis will only be set if the brandvisual is an image (png).",
4954
4883
  "attribute": "altText",
@@ -5093,6 +5022,77 @@
5093
5022
  }
5094
5023
  ]
5095
5024
  },
5025
+ {
5026
+ "kind": "javascript-module",
5027
+ "path": "components/bullet/bullet.component.js",
5028
+ "declarations": [
5029
+ {
5030
+ "kind": "class",
5031
+ "description": "Bullet component, which is a visual marker\nand be used to organize and present items in a list format.",
5032
+ "name": "Bullet",
5033
+ "cssProperties": [
5034
+ {
5035
+ "description": "background color of the bullet",
5036
+ "name": "--mdc-bullet-background-color"
5037
+ },
5038
+ {
5039
+ "description": "small size value of the bullet",
5040
+ "name": "--mdc-bullet-size-small"
5041
+ },
5042
+ {
5043
+ "description": "medium size value of the bullet",
5044
+ "name": "--mdc-bullet-size-medium"
5045
+ },
5046
+ {
5047
+ "description": "large size value of the bullet",
5048
+ "name": "--mdc-bullet-size-large"
5049
+ }
5050
+ ],
5051
+ "members": [
5052
+ {
5053
+ "kind": "field",
5054
+ "name": "size",
5055
+ "type": {
5056
+ "text": "Size"
5057
+ },
5058
+ "privacy": "public",
5059
+ "description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
5060
+ "default": "small",
5061
+ "attribute": "size",
5062
+ "reflects": true
5063
+ }
5064
+ ],
5065
+ "attributes": [
5066
+ {
5067
+ "name": "size",
5068
+ "type": {
5069
+ "text": "Size"
5070
+ },
5071
+ "description": "Size of the bullet\n\nPossible values: 'small', 'medium', 'large'",
5072
+ "default": "small",
5073
+ "fieldName": "size"
5074
+ }
5075
+ ],
5076
+ "superclass": {
5077
+ "name": "Component",
5078
+ "module": "/src/models"
5079
+ },
5080
+ "tagName": "mdc-bullet",
5081
+ "jsDoc": "/**\n * Bullet component, which is a visual marker\n * and be used to organize and present items in a list format.\n *\n * @tagname mdc-bullet\n *\n * @cssproperty --mdc-bullet-background-color - background color of the bullet\n * @cssproperty --mdc-bullet-size-small - small size value of the bullet\n * @cssproperty --mdc-bullet-size-medium - medium size value of the bullet\n * @cssproperty --mdc-bullet-size-large - large size value of the bullet\n */",
5082
+ "customElement": true
5083
+ }
5084
+ ],
5085
+ "exports": [
5086
+ {
5087
+ "kind": "js",
5088
+ "name": "default",
5089
+ "declaration": {
5090
+ "name": "Bullet",
5091
+ "module": "components/bullet/bullet.component.js"
5092
+ }
5093
+ }
5094
+ ]
5095
+ },
5096
5096
  {
5097
5097
  "kind": "javascript-module",
5098
5098
  "path": "components/button/button.component.js",
@@ -7298,16 +7298,48 @@
7298
7298
  },
7299
7299
  {
7300
7300
  "kind": "javascript-module",
7301
- "path": "components/card/card.component.js",
7301
+ "path": "components/cardbutton/cardbutton.component.js",
7302
7302
  "declarations": [
7303
7303
  {
7304
7304
  "kind": "class",
7305
- "description": "The card component allows users to organize information in a structured and tangible\nformat that is visually appealing. `mdc-card` is a static component that supports\nthe following features:\n- Image\n- Header\n - Icon\n - Title\n - Subtitle\n- Body\n\nThe card can either be vertically or horizontally oriented. The vertical card has a min-width of 20rem and the horizontal card has a min-width of 40rem.\n\nThere are 2 variants for the card that represent the border styling - 'border' and 'ghost'.\n\nTo make this card interactive, use the following slots:\n- `icon-button`: This slot supports action icon buttons in the header section (maximum of 3 buttons).\n- `footer-link`: This slot is for passing `mdc-link` component within the footer section.\n- `footer-button-primary`: This slot is for passing primary variant of `mdc-button` component within the footer section.\n- `footer-button-secondary`: This slot is for passing secondary variant of `mdc-button` component\nwithin the footer section.\n\nInteractive card additionally supports 'promotional' variant that represents the border styling - 'promotional'.",
7306
- "name": "Card",
7305
+ "description": "cardbutton component looks like a card and behaves as a button component.\n\n**Note**: This is a single selection card i.e. interacting anywhere on the card would trigger the click event.\nMake sure to pass only non-interactable elements within the slots.",
7306
+ "name": "CardButton",
7307
7307
  "cssProperties": [
7308
7308
  {
7309
7309
  "description": "The width of the card",
7310
7310
  "name": "--mdc-card-width"
7311
+ },
7312
+ {
7313
+ "description": "Height for button size",
7314
+ "name": "--mdc-button-height",
7315
+ "inheritedFrom": {
7316
+ "name": "Buttonsimple",
7317
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
7318
+ }
7319
+ },
7320
+ {
7321
+ "description": "Background color of the button",
7322
+ "name": "--mdc-button-background",
7323
+ "inheritedFrom": {
7324
+ "name": "Buttonsimple",
7325
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
7326
+ }
7327
+ },
7328
+ {
7329
+ "description": "Borer color of the button",
7330
+ "name": "--mdc-button-border-color",
7331
+ "inheritedFrom": {
7332
+ "name": "Buttonsimple",
7333
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
7334
+ }
7335
+ },
7336
+ {
7337
+ "description": "Text color of the button",
7338
+ "name": "--mdc-button-text-color",
7339
+ "inheritedFrom": {
7340
+ "name": "Buttonsimple",
7341
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
7342
+ }
7311
7343
  }
7312
7344
  ],
7313
7345
  "cssParts": [
@@ -7372,14 +7404,6 @@
7372
7404
  {
7373
7405
  "description": "This slot is for passing primary variant of `mdc-button` component within the footer section.",
7374
7406
  "name": "footer-button-primary"
7375
- },
7376
- {
7377
- "description": "This slot is for passing secondary variant of `mdc-button` component within the footer section.",
7378
- "name": "footer-button-secondary"
7379
- },
7380
- {
7381
- "description": " This slot is for passing custom footer content. Only use this if really needed, using the footer-link and footer-button slots is preferred.",
7382
- "name": "footer"
7383
7407
  }
7384
7408
  ],
7385
7409
  "members": [
@@ -7574,80 +7598,408 @@
7574
7598
  }
7575
7599
  },
7576
7600
  {
7577
- "kind": "method",
7578
- "name": "renderFooter",
7579
- "privacy": "protected",
7580
- "description": "Renders the footer of the card if footer-link,\nfooter-button-primary, or footer-button-secondary slots are provided",
7581
- "return": {
7582
- "type": {
7583
- "text": ""
7584
- }
7601
+ "kind": "field",
7602
+ "name": "autoFocusOnMount",
7603
+ "type": {
7604
+ "text": "boolean"
7585
7605
  },
7606
+ "default": "false",
7607
+ "description": "This property indicates whether the element should receive focus automatically when it is mounted.\n\nIt will not focus if the element is re-attached to the DOM after being removed.",
7608
+ "attribute": "auto-focus-on-mount",
7609
+ "reflects": true,
7586
7610
  "inheritedFrom": {
7587
- "name": "FooterMixin",
7588
- "module": "utils/mixins/FooterMixin.js"
7611
+ "name": "Buttonsimple",
7612
+ "module": "components/buttonsimple/buttonsimple.component.js"
7589
7613
  }
7590
- }
7591
- ],
7592
- "mixins": [
7593
- {
7594
- "name": "CardComponentMixin",
7595
- "module": "/src/utils/mixins/CardComponentMixin"
7596
7614
  },
7597
7615
  {
7598
- "name": "FooterMixin",
7599
- "module": "/src/utils/mixins/FooterMixin"
7600
- }
7601
- ],
7602
- "superclass": {
7603
- "name": "Component",
7604
- "module": "/src/models"
7605
- },
7606
- "tagName": "mdc-card",
7607
- "jsDoc": "/**\n * The card component allows users to organize information in a structured and tangible\n * format that is visually appealing. `mdc-card` is a static component that supports\n * the following features:\n * - Image\n * - Header\n * - Icon\n * - Title\n * - Subtitle\n * - Body\n *\n * The card can either be vertically or horizontally oriented. The vertical card has a min-width of 20rem and the horizontal card has a min-width of 40rem.\n *\n * There are 2 variants for the card that represent the border styling - 'border' and 'ghost'.\n *\n * To make this card interactive, use the following slots:\n * - `icon-button`: This slot supports action icon buttons in the header section (maximum of 3 buttons).\n * - `footer-link`: This slot is for passing `mdc-link` component within the footer section.\n * - `footer-button-primary`: This slot is for passing primary variant of `mdc-button` component within the footer section.\n * - `footer-button-secondary`: This slot is for passing secondary variant of `mdc-button` component\n * within the footer section.\n *\n * Interactive card additionally supports 'promotional' variant that represents the border styling - 'promotional'.\n *\n * @slot before-body - This slot is for passing the content before the body\n * @slot body - This slot is for passing the text content for the card\n * @slot after-body - This slot is for passing the content after the body\n * @slot footer-link - This slot is for passing `mdc-link` component within the footer section.\n * @slot footer-button-primary - This slot is for passing primary variant of\n * `mdc-button` component within the footer section.\n * @slot footer-button-secondary - This slot is for passing secondary variant of `mdc-button` component\n * within the footer section.\n * @slot footer - This slot is for passing custom footer content. Only use this if really needed,\n * using the footer-link and footer-button slots is preferred.\n *\n * @csspart header - The header part of the card\n * @csspart icon - The icon part of the card header\n * @csspart body - The body part of the card\n * @csspart image - The image part of the card\n * @csspart footer - The footer part of the card\n * @csspart footer-link - The link part of the card footer\n * @csspart footer-button-primary - The primary button part of the card footer\n * @csspart footer-button-secondary - The secondary button part of the card footer\n * @csspart icon-button - The icon button part of the card header\n * @csspart text - The text part of the card\n *\n * @tagname mdc-card\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @cssproperty --mdc-card-width - The width of the card\n *\n */",
7608
- "customElement": true,
7609
- "attributes": [
7610
- {
7611
- "name": "card-title",
7616
+ "kind": "field",
7617
+ "name": "tabIndex",
7612
7618
  "type": {
7613
- "text": "string"
7619
+ "text": "number"
7614
7620
  },
7615
- "default": "''",
7616
- "description": "The title of the card - part of header section",
7617
- "fieldName": "cardTitle",
7621
+ "default": "0",
7622
+ "description": "This property specifies the tab order of the element.",
7623
+ "attribute": "tabIndex",
7624
+ "reflects": true,
7618
7625
  "inheritedFrom": {
7619
- "name": "CardComponentMixin",
7620
- "module": "src/utils/mixins/CardComponentMixin.ts"
7626
+ "name": "Buttonsimple",
7627
+ "module": "components/buttonsimple/buttonsimple.component.js"
7621
7628
  }
7622
7629
  },
7623
7630
  {
7624
- "name": "subtitle",
7631
+ "kind": "field",
7632
+ "name": "disabled",
7625
7633
  "type": {
7626
- "text": "string"
7634
+ "text": "boolean | undefined"
7627
7635
  },
7628
- "default": "''",
7629
- "description": "The subtitle of the card - part of header section",
7630
- "fieldName": "subtitle",
7636
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
7637
+ "default": "undefined",
7638
+ "attribute": "disabled",
7639
+ "reflects": true,
7631
7640
  "inheritedFrom": {
7632
- "name": "CardComponentMixin",
7633
- "module": "src/utils/mixins/CardComponentMixin.ts"
7641
+ "name": "Buttonsimple",
7642
+ "module": "components/buttonsimple/buttonsimple.component.js"
7634
7643
  }
7635
7644
  },
7636
7645
  {
7637
- "name": "image-src",
7646
+ "kind": "field",
7647
+ "name": "active",
7638
7648
  "type": {
7639
- "text": "string"
7649
+ "text": "boolean | undefined"
7640
7650
  },
7641
- "default": "''",
7642
- "description": "The image source URL to render on the card",
7643
- "fieldName": "imageSrc",
7651
+ "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.\n\nThis attribute is used to set the provided `ariaStateKey` to true or false.",
7652
+ "default": "undefined",
7653
+ "attribute": "active",
7654
+ "reflects": true,
7644
7655
  "inheritedFrom": {
7645
- "name": "CardComponentMixin",
7646
- "module": "src/utils/mixins/CardComponentMixin.ts"
7656
+ "name": "Buttonsimple",
7657
+ "module": "components/buttonsimple/buttonsimple.component.js"
7647
7658
  }
7648
7659
  },
7649
7660
  {
7650
- "name": "image-alt",
7661
+ "kind": "field",
7662
+ "name": "softDisabled",
7663
+ "type": {
7664
+ "text": "boolean | undefined"
7665
+ },
7666
+ "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.",
7667
+ "default": "undefined",
7668
+ "attribute": "soft-disabled",
7669
+ "reflects": true,
7670
+ "inheritedFrom": {
7671
+ "name": "Buttonsimple",
7672
+ "module": "components/buttonsimple/buttonsimple.component.js"
7673
+ }
7674
+ },
7675
+ {
7676
+ "kind": "field",
7677
+ "name": "size",
7678
+ "type": {
7679
+ "text": "ButtonSize"
7680
+ },
7681
+ "description": "Simplebutton size is a super set of all the sizes supported by children components.",
7682
+ "default": "32",
7683
+ "attribute": "size",
7684
+ "reflects": true,
7685
+ "inheritedFrom": {
7686
+ "name": "Buttonsimple",
7687
+ "module": "components/buttonsimple/buttonsimple.component.js"
7688
+ }
7689
+ },
7690
+ {
7691
+ "kind": "field",
7692
+ "name": "role",
7693
+ "type": {
7694
+ "text": "RoleType"
7695
+ },
7696
+ "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.",
7697
+ "default": "button",
7698
+ "attribute": "role",
7699
+ "reflects": true,
7700
+ "inheritedFrom": {
7701
+ "name": "Buttonsimple",
7702
+ "module": "components/buttonsimple/buttonsimple.component.js"
7703
+ }
7704
+ },
7705
+ {
7706
+ "kind": "field",
7707
+ "name": "ariaStateKey",
7708
+ "type": {
7709
+ "text": "string | undefined"
7710
+ },
7711
+ "description": "This property defines the ARIA state key, which will be toggled when the\nButton is set to `active`.\nThe default value is 'aria-pressed', which is commonly used for toggle buttons.\n\nConsumers can override this property to use a different ARIA state key if needed.\nIn case multiple aria attributes should be toggled, they can be passed in as\na comma separated string.\nFor example: `aria-pressed,aria-expanded`",
7712
+ "default": "'aria-pressed' (when)",
7713
+ "attribute": "ariaStateKey",
7714
+ "reflects": true,
7715
+ "inheritedFrom": {
7716
+ "name": "Buttonsimple",
7717
+ "module": "components/buttonsimple/buttonsimple.component.js"
7718
+ }
7719
+ },
7720
+ {
7721
+ "kind": "field",
7722
+ "name": "type",
7723
+ "type": {
7724
+ "text": "ButtonType"
7725
+ },
7726
+ "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.",
7727
+ "default": "button",
7728
+ "attribute": "type",
7729
+ "reflects": true,
7730
+ "inheritedFrom": {
7731
+ "name": "Buttonsimple",
7732
+ "module": "components/buttonsimple/buttonsimple.component.js"
7733
+ }
7734
+ },
7735
+ {
7736
+ "kind": "field",
7737
+ "name": "name",
7738
+ "type": {
7739
+ "text": "string | undefined"
7740
+ },
7741
+ "description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
7742
+ "attribute": "name",
7743
+ "reflects": true,
7744
+ "inheritedFrom": {
7745
+ "name": "Buttonsimple",
7746
+ "module": "components/buttonsimple/buttonsimple.component.js"
7747
+ }
7748
+ },
7749
+ {
7750
+ "kind": "field",
7751
+ "name": "value",
7752
+ "type": {
7753
+ "text": "string | undefined"
7754
+ },
7755
+ "description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
7756
+ "attribute": "value",
7757
+ "reflects": true,
7758
+ "inheritedFrom": {
7759
+ "name": "Buttonsimple",
7760
+ "module": "components/buttonsimple/buttonsimple.component.js"
7761
+ }
7762
+ },
7763
+ {
7764
+ "kind": "method",
7765
+ "name": "executeAction",
7766
+ "privacy": "protected",
7767
+ "inheritedFrom": {
7768
+ "name": "Buttonsimple",
7769
+ "module": "components/buttonsimple/buttonsimple.component.js"
7770
+ }
7771
+ },
7772
+ {
7773
+ "kind": "method",
7774
+ "name": "setActive",
7775
+ "privacy": "protected",
7776
+ "parameters": [
7777
+ {
7778
+ "name": "element",
7779
+ "type": {
7780
+ "text": "HTMLElement"
7781
+ },
7782
+ "description": "The button element"
7783
+ },
7784
+ {
7785
+ "name": "active",
7786
+ "optional": true,
7787
+ "type": {
7788
+ "text": "boolean"
7789
+ },
7790
+ "description": "The active state of the element"
7791
+ }
7792
+ ],
7793
+ "description": "Sets the ariaStateKey attributes based on the active state of the button.",
7794
+ "inheritedFrom": {
7795
+ "name": "Buttonsimple",
7796
+ "module": "components/buttonsimple/buttonsimple.component.js"
7797
+ }
7798
+ },
7799
+ {
7800
+ "kind": "method",
7801
+ "name": "setSoftDisabled",
7802
+ "privacy": "private",
7803
+ "parameters": [
7804
+ {
7805
+ "name": "element",
7806
+ "type": {
7807
+ "text": "HTMLElement"
7808
+ },
7809
+ "description": "The button element."
7810
+ },
7811
+ {
7812
+ "name": "softDisabled",
7813
+ "optional": true,
7814
+ "type": {
7815
+ "text": "boolean"
7816
+ },
7817
+ "description": "The soft-disabled state."
7818
+ }
7819
+ ],
7820
+ "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.",
7821
+ "inheritedFrom": {
7822
+ "name": "Buttonsimple",
7823
+ "module": "components/buttonsimple/buttonsimple.component.js"
7824
+ }
7825
+ },
7826
+ {
7827
+ "kind": "method",
7828
+ "name": "setDisabled",
7829
+ "privacy": "private",
7830
+ "parameters": [
7831
+ {
7832
+ "name": "element",
7833
+ "type": {
7834
+ "text": "HTMLElement"
7835
+ },
7836
+ "description": "The button element."
7837
+ },
7838
+ {
7839
+ "name": "disabled",
7840
+ "type": {
7841
+ "text": "boolean"
7842
+ },
7843
+ "description": "The disabled state."
7844
+ }
7845
+ ],
7846
+ "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.",
7847
+ "inheritedFrom": {
7848
+ "name": "Buttonsimple",
7849
+ "module": "components/buttonsimple/buttonsimple.component.js"
7850
+ }
7851
+ },
7852
+ {
7853
+ "kind": "method",
7854
+ "name": "triggerClickEvent",
7855
+ "privacy": "private",
7856
+ "inheritedFrom": {
7857
+ "name": "Buttonsimple",
7858
+ "module": "components/buttonsimple/buttonsimple.component.js"
7859
+ }
7860
+ },
7861
+ {
7862
+ "kind": "method",
7863
+ "name": "handleBlur",
7864
+ "privacy": "private",
7865
+ "description": "In case the button is pressed and the focus is lost while pressing,\nthe pressed class is removed.",
7866
+ "inheritedFrom": {
7867
+ "name": "Buttonsimple",
7868
+ "module": "components/buttonsimple/buttonsimple.component.js"
7869
+ }
7870
+ },
7871
+ {
7872
+ "kind": "method",
7873
+ "name": "handleKeyDown",
7874
+ "privacy": "private",
7875
+ "parameters": [
7876
+ {
7877
+ "name": "event",
7878
+ "type": {
7879
+ "text": "KeyboardEvent"
7880
+ },
7881
+ "description": "The keyboard event."
7882
+ }
7883
+ ],
7884
+ "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.\nIf the key is 'Space', the button's default is prevent to avoid scrolling etc in the host application.",
7885
+ "inheritedFrom": {
7886
+ "name": "Buttonsimple",
7887
+ "module": "components/buttonsimple/buttonsimple.component.js"
7888
+ }
7889
+ },
7890
+ {
7891
+ "kind": "method",
7892
+ "name": "handleKeyUp",
7893
+ "privacy": "private",
7894
+ "parameters": [
7895
+ {
7896
+ "name": "event",
7897
+ "type": {
7898
+ "text": "KeyboardEvent"
7899
+ },
7900
+ "description": "The keyboard event."
7901
+ }
7902
+ ],
7903
+ "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.",
7904
+ "inheritedFrom": {
7905
+ "name": "Buttonsimple",
7906
+ "module": "components/buttonsimple/buttonsimple.component.js"
7907
+ }
7908
+ }
7909
+ ],
7910
+ "events": [
7911
+ {
7912
+ "description": "(React: onClick) Event that gets dispatched when the card is clicked.",
7913
+ "name": "click",
7914
+ "reactName": "onClick",
7915
+ "inheritedFrom": {
7916
+ "name": "Buttonsimple",
7917
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
7918
+ }
7919
+ },
7920
+ {
7921
+ "description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the card. It fires the click event when enter key is used.",
7922
+ "name": "keydown",
7923
+ "reactName": "onKeyDown",
7924
+ "inheritedFrom": {
7925
+ "name": "Buttonsimple",
7926
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
7927
+ }
7928
+ },
7929
+ {
7930
+ "description": "(React: onKeyUp) This event is dispatched when a key is released on the card. It fires the click event when space key is used.",
7931
+ "name": "keyup",
7932
+ "reactName": "onKeyUp",
7933
+ "inheritedFrom": {
7934
+ "name": "Buttonsimple",
7935
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
7936
+ }
7937
+ },
7938
+ {
7939
+ "description": "(React: onFocus) Event that gets dispatched when the card receives focus.",
7940
+ "name": "focus",
7941
+ "reactName": "onFocus",
7942
+ "inheritedFrom": {
7943
+ "name": "Buttonsimple",
7944
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
7945
+ }
7946
+ }
7947
+ ],
7948
+ "mixins": [
7949
+ {
7950
+ "name": "CardComponentMixin",
7951
+ "module": "/src/utils/mixins/CardComponentMixin"
7952
+ }
7953
+ ],
7954
+ "superclass": {
7955
+ "name": "Buttonsimple",
7956
+ "module": "/src/components/buttonsimple/buttonsimple.component"
7957
+ },
7958
+ "tagName": "mdc-cardbutton",
7959
+ "jsDoc": "/**\n * cardbutton component looks like a card and behaves as a button component.\n *\n * **Note**: This is a single selection card i.e. interacting anywhere on the card would trigger the click event.\n * Make sure to pass only non-interactable elements within the slots.\n *\n * @tagname mdc-cardbutton\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @event click - (React: onClick) Event that gets dispatched when the card is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the card.\n * It fires the click event when enter key is used.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the card.\n * It fires the click event when space key is used.\n * @event focus - (React: onFocus) Event that gets dispatched when the card receives focus.\n *\n * @slot before-body - This slot is for passing the content before the body\n * @slot body - This slot is for passing the text content for the card\n * @slot after-body - This slot is for passing the content after the body\n * @slot footer-link - This slot is for passing `mdc-link` component within the footer section.\n * @slot footer-button-primary - This slot is for passing primary variant of `mdc-button` component within the footer section.\n *\n * @csspart header - The header part of the card\n * @csspart icon - The icon part of the card header\n * @csspart body - The body part of the card\n * @csspart image - The image part of the card\n * @csspart footer - The footer part of the card\n * @csspart footer-link - The link part of the card footer\n * @csspart footer-button-primary - The primary button part of the card footer\n * @csspart footer-button-secondary - The secondary button part of the card footer\n * @csspart icon-button - The icon button part of the card header\n * @csspart text - The text part of the card\n *\n * @cssproperty --mdc-card-width - The width of the card\n */",
7960
+ "customElement": true,
7961
+ "attributes": [
7962
+ {
7963
+ "name": "card-title",
7964
+ "type": {
7965
+ "text": "string"
7966
+ },
7967
+ "default": "''",
7968
+ "description": "The title of the card - part of header section",
7969
+ "fieldName": "cardTitle",
7970
+ "inheritedFrom": {
7971
+ "name": "CardComponentMixin",
7972
+ "module": "src/utils/mixins/CardComponentMixin.ts"
7973
+ }
7974
+ },
7975
+ {
7976
+ "name": "subtitle",
7977
+ "type": {
7978
+ "text": "string"
7979
+ },
7980
+ "default": "''",
7981
+ "description": "The subtitle of the card - part of header section",
7982
+ "fieldName": "subtitle",
7983
+ "inheritedFrom": {
7984
+ "name": "CardComponentMixin",
7985
+ "module": "src/utils/mixins/CardComponentMixin.ts"
7986
+ }
7987
+ },
7988
+ {
7989
+ "name": "image-src",
7990
+ "type": {
7991
+ "text": "string"
7992
+ },
7993
+ "default": "''",
7994
+ "description": "The image source URL to render on the card",
7995
+ "fieldName": "imageSrc",
7996
+ "inheritedFrom": {
7997
+ "name": "CardComponentMixin",
7998
+ "module": "src/utils/mixins/CardComponentMixin.ts"
7999
+ }
8000
+ },
8001
+ {
8002
+ "name": "image-alt",
7651
8003
  "type": {
7652
8004
  "text": "string"
7653
8005
  },
@@ -7722,65 +8074,174 @@
7722
8074
  "name": "CardComponentMixin",
7723
8075
  "module": "src/utils/mixins/CardComponentMixin.ts"
7724
8076
  }
7725
- }
7726
- ]
7727
- }
7728
- ],
7729
- "exports": [
7730
- {
7731
- "kind": "js",
7732
- "name": "default",
7733
- "declaration": {
7734
- "name": "Card",
7735
- "module": "components/card/card.component.js"
7736
- }
7737
- }
7738
- ]
7739
- },
7740
- {
7741
- "kind": "javascript-module",
7742
- "path": "components/cardbutton/cardbutton.component.js",
7743
- "declarations": [
7744
- {
7745
- "kind": "class",
7746
- "description": "cardbutton component looks like a card and behaves as a button component.\n\n**Note**: This is a single selection card i.e. interacting anywhere on the card would trigger the click event.\nMake sure to pass only non-interactable elements within the slots.",
7747
- "name": "CardButton",
7748
- "cssProperties": [
8077
+ },
7749
8078
  {
7750
- "description": "The width of the card",
7751
- "name": "--mdc-card-width"
8079
+ "name": "auto-focus-on-mount",
8080
+ "type": {
8081
+ "text": "boolean"
8082
+ },
8083
+ "default": "false",
8084
+ "description": "This property indicates whether the element should receive focus automatically when it is mounted.\n\nIt will not focus if the element is re-attached to the DOM after being removed.",
8085
+ "fieldName": "autoFocusOnMount",
8086
+ "inheritedFrom": {
8087
+ "name": "Buttonsimple",
8088
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
8089
+ }
7752
8090
  },
7753
8091
  {
7754
- "description": "Height for button size",
7755
- "name": "--mdc-button-height",
8092
+ "name": "tabIndex",
8093
+ "type": {
8094
+ "text": "number"
8095
+ },
8096
+ "default": "0",
8097
+ "description": "This property specifies the tab order of the element.",
8098
+ "fieldName": "tabIndex",
7756
8099
  "inheritedFrom": {
7757
8100
  "name": "Buttonsimple",
7758
8101
  "module": "src/components/buttonsimple/buttonsimple.component.ts"
7759
8102
  }
7760
8103
  },
7761
8104
  {
7762
- "description": "Background color of the button",
7763
- "name": "--mdc-button-background",
8105
+ "name": "disabled",
8106
+ "type": {
8107
+ "text": "boolean | undefined"
8108
+ },
8109
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
8110
+ "default": "undefined",
8111
+ "fieldName": "disabled",
7764
8112
  "inheritedFrom": {
7765
8113
  "name": "Buttonsimple",
7766
8114
  "module": "src/components/buttonsimple/buttonsimple.component.ts"
7767
8115
  }
7768
8116
  },
7769
8117
  {
7770
- "description": "Borer color of the button",
7771
- "name": "--mdc-button-border-color",
8118
+ "name": "active",
8119
+ "type": {
8120
+ "text": "boolean | undefined"
8121
+ },
8122
+ "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.\n\nThis attribute is used to set the provided `ariaStateKey` to true or false.",
8123
+ "default": "undefined",
8124
+ "fieldName": "active",
8125
+ "inheritedFrom": {
8126
+ "name": "Buttonsimple",
8127
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
8128
+ }
8129
+ },
8130
+ {
8131
+ "name": "soft-disabled",
8132
+ "type": {
8133
+ "text": "boolean | undefined"
8134
+ },
8135
+ "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.",
8136
+ "default": "undefined",
8137
+ "fieldName": "softDisabled",
8138
+ "inheritedFrom": {
8139
+ "name": "Buttonsimple",
8140
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
8141
+ }
8142
+ },
8143
+ {
8144
+ "name": "size",
8145
+ "type": {
8146
+ "text": "ButtonSize"
8147
+ },
8148
+ "description": "Simplebutton size is a super set of all the sizes supported by children components.",
8149
+ "default": "32",
8150
+ "fieldName": "size",
8151
+ "inheritedFrom": {
8152
+ "name": "Buttonsimple",
8153
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
8154
+ }
8155
+ },
8156
+ {
8157
+ "name": "role",
8158
+ "type": {
8159
+ "text": "RoleType"
8160
+ },
8161
+ "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.",
8162
+ "default": "button",
8163
+ "fieldName": "role",
8164
+ "inheritedFrom": {
8165
+ "name": "Buttonsimple",
8166
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
8167
+ }
8168
+ },
8169
+ {
8170
+ "name": "ariaStateKey",
8171
+ "type": {
8172
+ "text": "string | undefined"
8173
+ },
8174
+ "description": "This property defines the ARIA state key, which will be toggled when the\nButton is set to `active`.\nThe default value is 'aria-pressed', which is commonly used for toggle buttons.\n\nConsumers can override this property to use a different ARIA state key if needed.\nIn case multiple aria attributes should be toggled, they can be passed in as\na comma separated string.\nFor example: `aria-pressed,aria-expanded`",
8175
+ "default": "'aria-pressed' (when)",
8176
+ "fieldName": "ariaStateKey",
8177
+ "inheritedFrom": {
8178
+ "name": "Buttonsimple",
8179
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
8180
+ }
8181
+ },
8182
+ {
8183
+ "name": "type",
8184
+ "type": {
8185
+ "text": "ButtonType"
8186
+ },
8187
+ "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.",
8188
+ "default": "button",
8189
+ "fieldName": "type",
8190
+ "inheritedFrom": {
8191
+ "name": "Buttonsimple",
8192
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
8193
+ }
8194
+ },
8195
+ {
8196
+ "name": "name",
8197
+ "type": {
8198
+ "text": "string | undefined"
8199
+ },
8200
+ "description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
8201
+ "fieldName": "name",
8202
+ "inheritedFrom": {
8203
+ "name": "Buttonsimple",
8204
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
8205
+ }
8206
+ },
8207
+ {
8208
+ "name": "value",
8209
+ "type": {
8210
+ "text": "string | undefined"
8211
+ },
8212
+ "description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
8213
+ "fieldName": "value",
7772
8214
  "inheritedFrom": {
7773
8215
  "name": "Buttonsimple",
7774
8216
  "module": "src/components/buttonsimple/buttonsimple.component.ts"
7775
8217
  }
7776
- },
8218
+ }
8219
+ ]
8220
+ }
8221
+ ],
8222
+ "exports": [
8223
+ {
8224
+ "kind": "js",
8225
+ "name": "default",
8226
+ "declaration": {
8227
+ "name": "CardButton",
8228
+ "module": "components/cardbutton/cardbutton.component.js"
8229
+ }
8230
+ }
8231
+ ]
8232
+ },
8233
+ {
8234
+ "kind": "javascript-module",
8235
+ "path": "components/card/card.component.js",
8236
+ "declarations": [
8237
+ {
8238
+ "kind": "class",
8239
+ "description": "The card component allows users to organize information in a structured and tangible\nformat that is visually appealing. `mdc-card` is a static component that supports\nthe following features:\n- Image\n- Header\n - Icon\n - Title\n - Subtitle\n- Body\n\nThe card can either be vertically or horizontally oriented. The vertical card has a min-width of 20rem and the horizontal card has a min-width of 40rem.\n\nThere are 2 variants for the card that represent the border styling - 'border' and 'ghost'.\n\nTo make this card interactive, use the following slots:\n- `icon-button`: This slot supports action icon buttons in the header section (maximum of 3 buttons).\n- `footer-link`: This slot is for passing `mdc-link` component within the footer section.\n- `footer-button-primary`: This slot is for passing primary variant of `mdc-button` component within the footer section.\n- `footer-button-secondary`: This slot is for passing secondary variant of `mdc-button` component\nwithin the footer section.\n\nInteractive card additionally supports 'promotional' variant that represents the border styling - 'promotional'.",
8240
+ "name": "Card",
8241
+ "cssProperties": [
7777
8242
  {
7778
- "description": "Text color of the button",
7779
- "name": "--mdc-button-text-color",
7780
- "inheritedFrom": {
7781
- "name": "Buttonsimple",
7782
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
7783
- }
8243
+ "description": "The width of the card",
8244
+ "name": "--mdc-card-width"
7784
8245
  }
7785
8246
  ],
7786
8247
  "cssParts": [
@@ -7845,544 +8306,220 @@
7845
8306
  {
7846
8307
  "description": "This slot is for passing primary variant of `mdc-button` component within the footer section.",
7847
8308
  "name": "footer-button-primary"
7848
- }
7849
- ],
7850
- "members": [
7851
- {
7852
- "kind": "method",
7853
- "name": "renderHeader",
7854
- "privacy": "protected",
7855
- "description": "Renders the header of the card if title is provided",
7856
- "return": {
7857
- "type": {
7858
- "text": ""
7859
- }
7860
- }
7861
- },
7862
- {
7863
- "kind": "field",
7864
- "name": "cardTitle",
7865
- "type": {
7866
- "text": "string"
7867
- },
7868
- "default": "''",
7869
- "description": "The title of the card - part of header section",
7870
- "attribute": "card-title",
7871
- "reflects": true,
7872
- "inheritedFrom": {
7873
- "name": "CardComponentMixin",
7874
- "module": "utils/mixins/CardComponentMixin.js"
7875
- }
7876
- },
7877
- {
7878
- "kind": "field",
7879
- "name": "subtitle",
7880
- "type": {
7881
- "text": "string"
7882
- },
7883
- "default": "''",
7884
- "description": "The subtitle of the card - part of header section",
7885
- "attribute": "subtitle",
7886
- "reflects": true,
7887
- "inheritedFrom": {
7888
- "name": "CardComponentMixin",
7889
- "module": "utils/mixins/CardComponentMixin.js"
7890
- }
7891
- },
7892
- {
7893
- "kind": "field",
7894
- "name": "imageSrc",
7895
- "type": {
7896
- "text": "string"
7897
- },
7898
- "default": "''",
7899
- "description": "The image source URL to render on the card",
7900
- "attribute": "image-src",
7901
- "reflects": true,
7902
- "inheritedFrom": {
7903
- "name": "CardComponentMixin",
7904
- "module": "utils/mixins/CardComponentMixin.js"
7905
- }
7906
- },
7907
- {
7908
- "kind": "field",
7909
- "name": "imageAlt",
7910
- "type": {
7911
- "text": "string"
7912
- },
7913
- "default": "''",
7914
- "description": "The image alt for accessibility support",
7915
- "attribute": "image-alt",
7916
- "reflects": true,
7917
- "inheritedFrom": {
7918
- "name": "CardComponentMixin",
7919
- "module": "utils/mixins/CardComponentMixin.js"
7920
- }
7921
- },
7922
- {
7923
- "kind": "field",
7924
- "name": "variant",
7925
- "type": {
7926
- "text": "CardVariant"
7927
- },
7928
- "description": "The variant of the card. It can either be set to 'border' or 'ghost'",
7929
- "default": "'border'",
7930
- "attribute": "variant",
7931
- "reflects": true,
7932
- "inheritedFrom": {
7933
- "name": "CardComponentMixin",
7934
- "module": "utils/mixins/CardComponentMixin.js"
7935
- }
7936
- },
7937
- {
7938
- "kind": "field",
7939
- "name": "orientation",
7940
- "type": {
7941
- "text": "CardOrientation"
7942
- },
7943
- "description": "The orientation of the card. It can either be set to 'vertical' or 'horizontal'",
7944
- "default": "'vertical'",
7945
- "attribute": "orientation",
7946
- "reflects": true,
7947
- "inheritedFrom": {
7948
- "name": "CardComponentMixin",
7949
- "module": "utils/mixins/CardComponentMixin.js"
7950
- }
7951
- },
7952
- {
7953
- "kind": "field",
7954
- "name": "titleTagName",
7955
- "type": {
7956
- "text": "TagNameType"
7957
- },
7958
- "description": "The tag name for the card title. It supports all the types that `mdc-text` supports",
7959
- "default": "'span'",
7960
- "attribute": "title-tag-name",
7961
- "reflects": true,
7962
- "inheritedFrom": {
7963
- "name": "CardComponentMixin",
7964
- "module": "utils/mixins/CardComponentMixin.js"
7965
- }
7966
- },
7967
- {
7968
- "kind": "field",
7969
- "name": "subtitleTagName",
7970
- "type": {
7971
- "text": "TagNameType"
7972
- },
7973
- "description": "The tag name for the subtitle. It supports all the types that `mdc-text` supports",
7974
- "default": "'span'",
7975
- "attribute": "subtitle-tag-name",
7976
- "reflects": true,
7977
- "inheritedFrom": {
7978
- "name": "CardComponentMixin",
7979
- "module": "utils/mixins/CardComponentMixin.js"
7980
- }
7981
- },
7982
- {
7983
- "kind": "field",
7984
- "name": "iconName",
7985
- "type": {
7986
- "text": "IconNames | undefined"
7987
- },
7988
- "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
7989
- "attribute": "icon-name",
7990
- "reflects": true,
7991
- "inheritedFrom": {
7992
- "name": "CardComponentMixin",
7993
- "module": "utils/mixins/CardComponentMixin.js"
7994
- }
7995
- },
7996
- {
7997
- "kind": "method",
7998
- "name": "renderImage",
7999
- "privacy": "protected",
8000
- "description": "Renders the image on the card if image source is provided",
8001
- "return": {
8002
- "type": {
8003
- "text": ""
8004
- }
8005
- },
8006
- "inheritedFrom": {
8007
- "name": "CardComponentMixin",
8008
- "module": "utils/mixins/CardComponentMixin.js"
8009
- }
8010
- },
8011
- {
8012
- "kind": "method",
8013
- "name": "renderIcon",
8014
- "privacy": "protected",
8015
- "description": "Renders the icon on the card if icon name is provided",
8016
- "return": {
8017
- "type": {
8018
- "text": ""
8019
- }
8020
- },
8021
- "inheritedFrom": {
8022
- "name": "CardComponentMixin",
8023
- "module": "utils/mixins/CardComponentMixin.js"
8024
- }
8025
- },
8026
- {
8027
- "kind": "method",
8028
- "name": "renderTitle",
8029
- "privacy": "protected",
8030
- "description": "Renders the title and subtitle on the card",
8031
- "return": {
8032
- "type": {
8033
- "text": ""
8034
- }
8035
- },
8036
- "inheritedFrom": {
8037
- "name": "CardComponentMixin",
8038
- "module": "utils/mixins/CardComponentMixin.js"
8039
- }
8040
8309
  },
8041
8310
  {
8042
- "kind": "field",
8043
- "name": "autoFocusOnMount",
8044
- "type": {
8045
- "text": "boolean"
8046
- },
8047
- "default": "false",
8048
- "description": "This property indicates whether the element should receive focus automatically when it is mounted.\n\nIt will not focus if the element is re-attached to the DOM after being removed.",
8049
- "attribute": "auto-focus-on-mount",
8050
- "reflects": true,
8051
- "inheritedFrom": {
8052
- "name": "Buttonsimple",
8053
- "module": "components/buttonsimple/buttonsimple.component.js"
8054
- }
8311
+ "description": "This slot is for passing secondary variant of `mdc-button` component within the footer section.",
8312
+ "name": "footer-button-secondary"
8055
8313
  },
8056
8314
  {
8057
- "kind": "field",
8058
- "name": "tabIndex",
8059
- "type": {
8060
- "text": "number"
8061
- },
8062
- "default": "0",
8063
- "description": "This property specifies the tab order of the element.",
8064
- "attribute": "tabIndex",
8065
- "reflects": true,
8066
- "inheritedFrom": {
8067
- "name": "Buttonsimple",
8068
- "module": "components/buttonsimple/buttonsimple.component.js"
8069
- }
8070
- },
8315
+ "description": " This slot is for passing custom footer content. Only use this if really needed, using the footer-link and footer-button slots is preferred.",
8316
+ "name": "footer"
8317
+ }
8318
+ ],
8319
+ "members": [
8071
8320
  {
8072
- "kind": "field",
8073
- "name": "disabled",
8074
- "type": {
8075
- "text": "boolean | undefined"
8076
- },
8077
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
8078
- "default": "undefined",
8079
- "attribute": "disabled",
8080
- "reflects": true,
8081
- "inheritedFrom": {
8082
- "name": "Buttonsimple",
8083
- "module": "components/buttonsimple/buttonsimple.component.js"
8321
+ "kind": "method",
8322
+ "name": "renderHeader",
8323
+ "privacy": "protected",
8324
+ "description": "Renders the header of the card if title is provided",
8325
+ "return": {
8326
+ "type": {
8327
+ "text": ""
8328
+ }
8084
8329
  }
8085
8330
  },
8086
8331
  {
8087
8332
  "kind": "field",
8088
- "name": "active",
8333
+ "name": "cardTitle",
8089
8334
  "type": {
8090
- "text": "boolean | undefined"
8335
+ "text": "string"
8091
8336
  },
8092
- "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.\n\nThis attribute is used to set the provided `ariaStateKey` to true or false.",
8093
- "default": "undefined",
8094
- "attribute": "active",
8337
+ "default": "''",
8338
+ "description": "The title of the card - part of header section",
8339
+ "attribute": "card-title",
8095
8340
  "reflects": true,
8096
8341
  "inheritedFrom": {
8097
- "name": "Buttonsimple",
8098
- "module": "components/buttonsimple/buttonsimple.component.js"
8342
+ "name": "CardComponentMixin",
8343
+ "module": "utils/mixins/CardComponentMixin.js"
8099
8344
  }
8100
8345
  },
8101
8346
  {
8102
8347
  "kind": "field",
8103
- "name": "softDisabled",
8348
+ "name": "subtitle",
8104
8349
  "type": {
8105
- "text": "boolean | undefined"
8350
+ "text": "string"
8106
8351
  },
8107
- "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.",
8108
- "default": "undefined",
8109
- "attribute": "soft-disabled",
8352
+ "default": "''",
8353
+ "description": "The subtitle of the card - part of header section",
8354
+ "attribute": "subtitle",
8110
8355
  "reflects": true,
8111
8356
  "inheritedFrom": {
8112
- "name": "Buttonsimple",
8113
- "module": "components/buttonsimple/buttonsimple.component.js"
8357
+ "name": "CardComponentMixin",
8358
+ "module": "utils/mixins/CardComponentMixin.js"
8114
8359
  }
8115
8360
  },
8116
8361
  {
8117
8362
  "kind": "field",
8118
- "name": "size",
8363
+ "name": "imageSrc",
8119
8364
  "type": {
8120
- "text": "ButtonSize"
8365
+ "text": "string"
8121
8366
  },
8122
- "description": "Simplebutton size is a super set of all the sizes supported by children components.",
8123
- "default": "32",
8124
- "attribute": "size",
8367
+ "default": "''",
8368
+ "description": "The image source URL to render on the card",
8369
+ "attribute": "image-src",
8125
8370
  "reflects": true,
8126
8371
  "inheritedFrom": {
8127
- "name": "Buttonsimple",
8128
- "module": "components/buttonsimple/buttonsimple.component.js"
8372
+ "name": "CardComponentMixin",
8373
+ "module": "utils/mixins/CardComponentMixin.js"
8129
8374
  }
8130
8375
  },
8131
8376
  {
8132
8377
  "kind": "field",
8133
- "name": "role",
8378
+ "name": "imageAlt",
8134
8379
  "type": {
8135
- "text": "RoleType"
8380
+ "text": "string"
8136
8381
  },
8137
- "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.",
8138
- "default": "button",
8139
- "attribute": "role",
8382
+ "default": "''",
8383
+ "description": "The image alt for accessibility support",
8384
+ "attribute": "image-alt",
8140
8385
  "reflects": true,
8141
8386
  "inheritedFrom": {
8142
- "name": "Buttonsimple",
8143
- "module": "components/buttonsimple/buttonsimple.component.js"
8387
+ "name": "CardComponentMixin",
8388
+ "module": "utils/mixins/CardComponentMixin.js"
8144
8389
  }
8145
8390
  },
8146
8391
  {
8147
8392
  "kind": "field",
8148
- "name": "ariaStateKey",
8393
+ "name": "variant",
8149
8394
  "type": {
8150
- "text": "string | undefined"
8395
+ "text": "CardVariant"
8151
8396
  },
8152
- "description": "This property defines the ARIA state key, which will be toggled when the\nButton is set to `active`.\nThe default value is 'aria-pressed', which is commonly used for toggle buttons.\n\nConsumers can override this property to use a different ARIA state key if needed.\nIn case multiple aria attributes should be toggled, they can be passed in as\na comma separated string.\nFor example: `aria-pressed,aria-expanded`",
8153
- "default": "'aria-pressed' (when)",
8154
- "attribute": "ariaStateKey",
8397
+ "description": "The variant of the card. It can either be set to 'border' or 'ghost'",
8398
+ "default": "'border'",
8399
+ "attribute": "variant",
8155
8400
  "reflects": true,
8156
8401
  "inheritedFrom": {
8157
- "name": "Buttonsimple",
8158
- "module": "components/buttonsimple/buttonsimple.component.js"
8402
+ "name": "CardComponentMixin",
8403
+ "module": "utils/mixins/CardComponentMixin.js"
8159
8404
  }
8160
8405
  },
8161
8406
  {
8162
8407
  "kind": "field",
8163
- "name": "type",
8408
+ "name": "orientation",
8164
8409
  "type": {
8165
- "text": "ButtonType"
8410
+ "text": "CardOrientation"
8166
8411
  },
8167
- "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.",
8168
- "default": "button",
8169
- "attribute": "type",
8412
+ "description": "The orientation of the card. It can either be set to 'vertical' or 'horizontal'",
8413
+ "default": "'vertical'",
8414
+ "attribute": "orientation",
8170
8415
  "reflects": true,
8171
8416
  "inheritedFrom": {
8172
- "name": "Buttonsimple",
8173
- "module": "components/buttonsimple/buttonsimple.component.js"
8417
+ "name": "CardComponentMixin",
8418
+ "module": "utils/mixins/CardComponentMixin.js"
8174
8419
  }
8175
8420
  },
8176
8421
  {
8177
8422
  "kind": "field",
8178
- "name": "name",
8423
+ "name": "titleTagName",
8179
8424
  "type": {
8180
- "text": "string | undefined"
8425
+ "text": "TagNameType"
8181
8426
  },
8182
- "description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
8183
- "attribute": "name",
8427
+ "description": "The tag name for the card title. It supports all the types that `mdc-text` supports",
8428
+ "default": "'span'",
8429
+ "attribute": "title-tag-name",
8184
8430
  "reflects": true,
8185
8431
  "inheritedFrom": {
8186
- "name": "Buttonsimple",
8187
- "module": "components/buttonsimple/buttonsimple.component.js"
8432
+ "name": "CardComponentMixin",
8433
+ "module": "utils/mixins/CardComponentMixin.js"
8188
8434
  }
8189
8435
  },
8190
8436
  {
8191
8437
  "kind": "field",
8192
- "name": "value",
8438
+ "name": "subtitleTagName",
8193
8439
  "type": {
8194
- "text": "string | undefined"
8440
+ "text": "TagNameType"
8195
8441
  },
8196
- "description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
8197
- "attribute": "value",
8198
- "reflects": true,
8199
- "inheritedFrom": {
8200
- "name": "Buttonsimple",
8201
- "module": "components/buttonsimple/buttonsimple.component.js"
8202
- }
8203
- },
8204
- {
8205
- "kind": "method",
8206
- "name": "executeAction",
8207
- "privacy": "protected",
8208
- "inheritedFrom": {
8209
- "name": "Buttonsimple",
8210
- "module": "components/buttonsimple/buttonsimple.component.js"
8211
- }
8212
- },
8213
- {
8214
- "kind": "method",
8215
- "name": "setActive",
8216
- "privacy": "protected",
8217
- "parameters": [
8218
- {
8219
- "name": "element",
8220
- "type": {
8221
- "text": "HTMLElement"
8222
- },
8223
- "description": "The button element"
8224
- },
8225
- {
8226
- "name": "active",
8227
- "optional": true,
8228
- "type": {
8229
- "text": "boolean"
8230
- },
8231
- "description": "The active state of the element"
8232
- }
8233
- ],
8234
- "description": "Sets the ariaStateKey attributes based on the active state of the button.",
8235
- "inheritedFrom": {
8236
- "name": "Buttonsimple",
8237
- "module": "components/buttonsimple/buttonsimple.component.js"
8238
- }
8239
- },
8240
- {
8241
- "kind": "method",
8242
- "name": "setSoftDisabled",
8243
- "privacy": "private",
8244
- "parameters": [
8245
- {
8246
- "name": "element",
8247
- "type": {
8248
- "text": "HTMLElement"
8249
- },
8250
- "description": "The button element."
8251
- },
8252
- {
8253
- "name": "softDisabled",
8254
- "optional": true,
8255
- "type": {
8256
- "text": "boolean"
8257
- },
8258
- "description": "The soft-disabled state."
8259
- }
8260
- ],
8261
- "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.",
8262
- "inheritedFrom": {
8263
- "name": "Buttonsimple",
8264
- "module": "components/buttonsimple/buttonsimple.component.js"
8265
- }
8266
- },
8267
- {
8268
- "kind": "method",
8269
- "name": "setDisabled",
8270
- "privacy": "private",
8271
- "parameters": [
8272
- {
8273
- "name": "element",
8274
- "type": {
8275
- "text": "HTMLElement"
8276
- },
8277
- "description": "The button element."
8278
- },
8279
- {
8280
- "name": "disabled",
8281
- "type": {
8282
- "text": "boolean"
8283
- },
8284
- "description": "The disabled state."
8285
- }
8286
- ],
8287
- "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.",
8288
- "inheritedFrom": {
8289
- "name": "Buttonsimple",
8290
- "module": "components/buttonsimple/buttonsimple.component.js"
8291
- }
8292
- },
8293
- {
8294
- "kind": "method",
8295
- "name": "triggerClickEvent",
8296
- "privacy": "private",
8297
- "inheritedFrom": {
8298
- "name": "Buttonsimple",
8299
- "module": "components/buttonsimple/buttonsimple.component.js"
8300
- }
8301
- },
8302
- {
8303
- "kind": "method",
8304
- "name": "handleBlur",
8305
- "privacy": "private",
8306
- "description": "In case the button is pressed and the focus is lost while pressing,\nthe pressed class is removed.",
8307
- "inheritedFrom": {
8308
- "name": "Buttonsimple",
8309
- "module": "components/buttonsimple/buttonsimple.component.js"
8310
- }
8311
- },
8312
- {
8313
- "kind": "method",
8314
- "name": "handleKeyDown",
8315
- "privacy": "private",
8316
- "parameters": [
8317
- {
8318
- "name": "event",
8319
- "type": {
8320
- "text": "KeyboardEvent"
8321
- },
8322
- "description": "The keyboard event."
8323
- }
8324
- ],
8325
- "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.\nIf the key is 'Space', the button's default is prevent to avoid scrolling etc in the host application.",
8442
+ "description": "The tag name for the subtitle. It supports all the types that `mdc-text` supports",
8443
+ "default": "'span'",
8444
+ "attribute": "subtitle-tag-name",
8445
+ "reflects": true,
8326
8446
  "inheritedFrom": {
8327
- "name": "Buttonsimple",
8328
- "module": "components/buttonsimple/buttonsimple.component.js"
8447
+ "name": "CardComponentMixin",
8448
+ "module": "utils/mixins/CardComponentMixin.js"
8329
8449
  }
8330
8450
  },
8331
8451
  {
8332
- "kind": "method",
8333
- "name": "handleKeyUp",
8334
- "privacy": "private",
8335
- "parameters": [
8336
- {
8337
- "name": "event",
8338
- "type": {
8339
- "text": "KeyboardEvent"
8340
- },
8341
- "description": "The keyboard event."
8342
- }
8343
- ],
8344
- "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.",
8452
+ "kind": "field",
8453
+ "name": "iconName",
8454
+ "type": {
8455
+ "text": "IconNames | undefined"
8456
+ },
8457
+ "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
8458
+ "attribute": "icon-name",
8459
+ "reflects": true,
8345
8460
  "inheritedFrom": {
8346
- "name": "Buttonsimple",
8347
- "module": "components/buttonsimple/buttonsimple.component.js"
8461
+ "name": "CardComponentMixin",
8462
+ "module": "utils/mixins/CardComponentMixin.js"
8348
8463
  }
8349
- }
8350
- ],
8351
- "events": [
8464
+ },
8352
8465
  {
8353
- "description": "(React: onClick) Event that gets dispatched when the card is clicked.",
8354
- "name": "click",
8355
- "reactName": "onClick",
8466
+ "kind": "method",
8467
+ "name": "renderImage",
8468
+ "privacy": "protected",
8469
+ "description": "Renders the image on the card if image source is provided",
8470
+ "return": {
8471
+ "type": {
8472
+ "text": ""
8473
+ }
8474
+ },
8356
8475
  "inheritedFrom": {
8357
- "name": "Buttonsimple",
8358
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
8476
+ "name": "CardComponentMixin",
8477
+ "module": "utils/mixins/CardComponentMixin.js"
8359
8478
  }
8360
8479
  },
8361
8480
  {
8362
- "description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the card. It fires the click event when enter key is used.",
8363
- "name": "keydown",
8364
- "reactName": "onKeyDown",
8481
+ "kind": "method",
8482
+ "name": "renderIcon",
8483
+ "privacy": "protected",
8484
+ "description": "Renders the icon on the card if icon name is provided",
8485
+ "return": {
8486
+ "type": {
8487
+ "text": ""
8488
+ }
8489
+ },
8365
8490
  "inheritedFrom": {
8366
- "name": "Buttonsimple",
8367
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
8491
+ "name": "CardComponentMixin",
8492
+ "module": "utils/mixins/CardComponentMixin.js"
8368
8493
  }
8369
8494
  },
8370
8495
  {
8371
- "description": "(React: onKeyUp) This event is dispatched when a key is released on the card. It fires the click event when space key is used.",
8372
- "name": "keyup",
8373
- "reactName": "onKeyUp",
8496
+ "kind": "method",
8497
+ "name": "renderTitle",
8498
+ "privacy": "protected",
8499
+ "description": "Renders the title and subtitle on the card",
8500
+ "return": {
8501
+ "type": {
8502
+ "text": ""
8503
+ }
8504
+ },
8374
8505
  "inheritedFrom": {
8375
- "name": "Buttonsimple",
8376
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
8506
+ "name": "CardComponentMixin",
8507
+ "module": "utils/mixins/CardComponentMixin.js"
8377
8508
  }
8378
8509
  },
8379
8510
  {
8380
- "description": "(React: onFocus) Event that gets dispatched when the card receives focus.",
8381
- "name": "focus",
8382
- "reactName": "onFocus",
8511
+ "kind": "method",
8512
+ "name": "renderFooter",
8513
+ "privacy": "protected",
8514
+ "description": "Renders the footer of the card if footer-link,\nfooter-button-primary, or footer-button-secondary slots are provided",
8515
+ "return": {
8516
+ "type": {
8517
+ "text": ""
8518
+ }
8519
+ },
8383
8520
  "inheritedFrom": {
8384
- "name": "Buttonsimple",
8385
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
8521
+ "name": "FooterMixin",
8522
+ "module": "utils/mixins/FooterMixin.js"
8386
8523
  }
8387
8524
  }
8388
8525
  ],
@@ -8390,14 +8527,18 @@
8390
8527
  {
8391
8528
  "name": "CardComponentMixin",
8392
8529
  "module": "/src/utils/mixins/CardComponentMixin"
8530
+ },
8531
+ {
8532
+ "name": "FooterMixin",
8533
+ "module": "/src/utils/mixins/FooterMixin"
8393
8534
  }
8394
8535
  ],
8395
8536
  "superclass": {
8396
- "name": "Buttonsimple",
8397
- "module": "/src/components/buttonsimple/buttonsimple.component"
8537
+ "name": "Component",
8538
+ "module": "/src/models"
8398
8539
  },
8399
- "tagName": "mdc-cardbutton",
8400
- "jsDoc": "/**\n * cardbutton component looks like a card and behaves as a button component.\n *\n * **Note**: This is a single selection card i.e. interacting anywhere on the card would trigger the click event.\n * Make sure to pass only non-interactable elements within the slots.\n *\n * @tagname mdc-cardbutton\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @event click - (React: onClick) Event that gets dispatched when the card is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the card.\n * It fires the click event when enter key is used.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the card.\n * It fires the click event when space key is used.\n * @event focus - (React: onFocus) Event that gets dispatched when the card receives focus.\n *\n * @slot before-body - This slot is for passing the content before the body\n * @slot body - This slot is for passing the text content for the card\n * @slot after-body - This slot is for passing the content after the body\n * @slot footer-link - This slot is for passing `mdc-link` component within the footer section.\n * @slot footer-button-primary - This slot is for passing primary variant of `mdc-button` component within the footer section.\n *\n * @csspart header - The header part of the card\n * @csspart icon - The icon part of the card header\n * @csspart body - The body part of the card\n * @csspart image - The image part of the card\n * @csspart footer - The footer part of the card\n * @csspart footer-link - The link part of the card footer\n * @csspart footer-button-primary - The primary button part of the card footer\n * @csspart footer-button-secondary - The secondary button part of the card footer\n * @csspart icon-button - The icon button part of the card header\n * @csspart text - The text part of the card\n *\n * @cssproperty --mdc-card-width - The width of the card\n */",
8540
+ "tagName": "mdc-card",
8541
+ "jsDoc": "/**\n * The card component allows users to organize information in a structured and tangible\n * format that is visually appealing. `mdc-card` is a static component that supports\n * the following features:\n * - Image\n * - Header\n * - Icon\n * - Title\n * - Subtitle\n * - Body\n *\n * The card can either be vertically or horizontally oriented. The vertical card has a min-width of 20rem and the horizontal card has a min-width of 40rem.\n *\n * There are 2 variants for the card that represent the border styling - 'border' and 'ghost'.\n *\n * To make this card interactive, use the following slots:\n * - `icon-button`: This slot supports action icon buttons in the header section (maximum of 3 buttons).\n * - `footer-link`: This slot is for passing `mdc-link` component within the footer section.\n * - `footer-button-primary`: This slot is for passing primary variant of `mdc-button` component within the footer section.\n * - `footer-button-secondary`: This slot is for passing secondary variant of `mdc-button` component\n * within the footer section.\n *\n * Interactive card additionally supports 'promotional' variant that represents the border styling - 'promotional'.\n *\n * @slot before-body - This slot is for passing the content before the body\n * @slot body - This slot is for passing the text content for the card\n * @slot after-body - This slot is for passing the content after the body\n * @slot footer-link - This slot is for passing `mdc-link` component within the footer section.\n * @slot footer-button-primary - This slot is for passing primary variant of\n * `mdc-button` component within the footer section.\n * @slot footer-button-secondary - This slot is for passing secondary variant of `mdc-button` component\n * within the footer section.\n * @slot footer - This slot is for passing custom footer content. Only use this if really needed,\n * using the footer-link and footer-button slots is preferred.\n *\n * @csspart header - The header part of the card\n * @csspart icon - The icon part of the card header\n * @csspart body - The body part of the card\n * @csspart image - The image part of the card\n * @csspart footer - The footer part of the card\n * @csspart footer-link - The link part of the card footer\n * @csspart footer-button-primary - The primary button part of the card footer\n * @csspart footer-button-secondary - The secondary button part of the card footer\n * @csspart icon-button - The icon button part of the card header\n * @csspart text - The text part of the card\n *\n * @tagname mdc-card\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @cssproperty --mdc-card-width - The width of the card\n *\n */",
8401
8542
  "customElement": true,
8402
8543
  "attributes": [
8403
8544
  {
@@ -8515,147 +8656,6 @@
8515
8656
  "name": "CardComponentMixin",
8516
8657
  "module": "src/utils/mixins/CardComponentMixin.ts"
8517
8658
  }
8518
- },
8519
- {
8520
- "name": "auto-focus-on-mount",
8521
- "type": {
8522
- "text": "boolean"
8523
- },
8524
- "default": "false",
8525
- "description": "This property indicates whether the element should receive focus automatically when it is mounted.\n\nIt will not focus if the element is re-attached to the DOM after being removed.",
8526
- "fieldName": "autoFocusOnMount",
8527
- "inheritedFrom": {
8528
- "name": "Buttonsimple",
8529
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
8530
- }
8531
- },
8532
- {
8533
- "name": "tabIndex",
8534
- "type": {
8535
- "text": "number"
8536
- },
8537
- "default": "0",
8538
- "description": "This property specifies the tab order of the element.",
8539
- "fieldName": "tabIndex",
8540
- "inheritedFrom": {
8541
- "name": "Buttonsimple",
8542
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
8543
- }
8544
- },
8545
- {
8546
- "name": "disabled",
8547
- "type": {
8548
- "text": "boolean | undefined"
8549
- },
8550
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
8551
- "default": "undefined",
8552
- "fieldName": "disabled",
8553
- "inheritedFrom": {
8554
- "name": "Buttonsimple",
8555
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
8556
- }
8557
- },
8558
- {
8559
- "name": "active",
8560
- "type": {
8561
- "text": "boolean | undefined"
8562
- },
8563
- "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.\n\nThis attribute is used to set the provided `ariaStateKey` to true or false.",
8564
- "default": "undefined",
8565
- "fieldName": "active",
8566
- "inheritedFrom": {
8567
- "name": "Buttonsimple",
8568
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
8569
- }
8570
- },
8571
- {
8572
- "name": "soft-disabled",
8573
- "type": {
8574
- "text": "boolean | undefined"
8575
- },
8576
- "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.",
8577
- "default": "undefined",
8578
- "fieldName": "softDisabled",
8579
- "inheritedFrom": {
8580
- "name": "Buttonsimple",
8581
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
8582
- }
8583
- },
8584
- {
8585
- "name": "size",
8586
- "type": {
8587
- "text": "ButtonSize"
8588
- },
8589
- "description": "Simplebutton size is a super set of all the sizes supported by children components.",
8590
- "default": "32",
8591
- "fieldName": "size",
8592
- "inheritedFrom": {
8593
- "name": "Buttonsimple",
8594
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
8595
- }
8596
- },
8597
- {
8598
- "name": "role",
8599
- "type": {
8600
- "text": "RoleType"
8601
- },
8602
- "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.",
8603
- "default": "button",
8604
- "fieldName": "role",
8605
- "inheritedFrom": {
8606
- "name": "Buttonsimple",
8607
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
8608
- }
8609
- },
8610
- {
8611
- "name": "ariaStateKey",
8612
- "type": {
8613
- "text": "string | undefined"
8614
- },
8615
- "description": "This property defines the ARIA state key, which will be toggled when the\nButton is set to `active`.\nThe default value is 'aria-pressed', which is commonly used for toggle buttons.\n\nConsumers can override this property to use a different ARIA state key if needed.\nIn case multiple aria attributes should be toggled, they can be passed in as\na comma separated string.\nFor example: `aria-pressed,aria-expanded`",
8616
- "default": "'aria-pressed' (when)",
8617
- "fieldName": "ariaStateKey",
8618
- "inheritedFrom": {
8619
- "name": "Buttonsimple",
8620
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
8621
- }
8622
- },
8623
- {
8624
- "name": "type",
8625
- "type": {
8626
- "text": "ButtonType"
8627
- },
8628
- "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.",
8629
- "default": "button",
8630
- "fieldName": "type",
8631
- "inheritedFrom": {
8632
- "name": "Buttonsimple",
8633
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
8634
- }
8635
- },
8636
- {
8637
- "name": "name",
8638
- "type": {
8639
- "text": "string | undefined"
8640
- },
8641
- "description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
8642
- "fieldName": "name",
8643
- "inheritedFrom": {
8644
- "name": "Buttonsimple",
8645
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
8646
- }
8647
- },
8648
- {
8649
- "name": "value",
8650
- "type": {
8651
- "text": "string | undefined"
8652
- },
8653
- "description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
8654
- "fieldName": "value",
8655
- "inheritedFrom": {
8656
- "name": "Buttonsimple",
8657
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
8658
- }
8659
8659
  }
8660
8660
  ]
8661
8661
  }
@@ -8665,8 +8665,8 @@
8665
8665
  "kind": "js",
8666
8666
  "name": "default",
8667
8667
  "declaration": {
8668
- "name": "CardButton",
8669
- "module": "components/cardbutton/cardbutton.component.js"
8668
+ "name": "Card",
8669
+ "module": "components/card/card.component.js"
8670
8670
  }
8671
8671
  }
8672
8672
  ]