@momentum-design/components 0.127.6 → 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",
@@ -3294,6 +3082,218 @@
3294
3082
  }
3295
3083
  ]
3296
3084
  },
3085
+ {
3086
+ "kind": "javascript-module",
3087
+ "path": "components/animation/animation.component.js",
3088
+ "declarations": [
3089
+ {
3090
+ "kind": "class",
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": [
3094
+ {
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
3103
+ },
3104
+ {
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
3113
+ },
3114
+ {
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
3123
+ },
3124
+ {
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
3297
  {
3298
3298
  "kind": "javascript-module",
3299
3299
  "path": "components/avatar/avatar.component.js",
@@ -6856,6 +6856,446 @@
6856
6856
  }
6857
6857
  ]
6858
6858
  },
6859
+ {
6860
+ "kind": "javascript-module",
6861
+ "path": "components/buttonsimple/buttonsimple.component.js",
6862
+ "declarations": [
6863
+ {
6864
+ "kind": "class",
6865
+ "description": "`mdc-buttonsimple` is a component that can be configured in various ways to suit different use cases.\nIt is used as an internal component and is not intended to be used directly by consumers.\nConsumers should use the `mdc-button` component instead.",
6866
+ "name": "Buttonsimple",
6867
+ "cssProperties": [
6868
+ {
6869
+ "description": "Height for button size",
6870
+ "name": "--mdc-button-height"
6871
+ },
6872
+ {
6873
+ "description": "Background color of the button",
6874
+ "name": "--mdc-button-background"
6875
+ },
6876
+ {
6877
+ "description": "Borer color of the button",
6878
+ "name": "--mdc-button-border-color"
6879
+ },
6880
+ {
6881
+ "description": "Text color of the button",
6882
+ "name": "--mdc-button-text-color"
6883
+ }
6884
+ ],
6885
+ "members": [
6886
+ {
6887
+ "kind": "field",
6888
+ "name": "active",
6889
+ "type": {
6890
+ "text": "boolean | undefined"
6891
+ },
6892
+ "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.",
6893
+ "default": "undefined",
6894
+ "attribute": "active",
6895
+ "reflects": true
6896
+ },
6897
+ {
6898
+ "kind": "field",
6899
+ "name": "softDisabled",
6900
+ "type": {
6901
+ "text": "boolean | undefined"
6902
+ },
6903
+ "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.",
6904
+ "default": "undefined",
6905
+ "attribute": "soft-disabled",
6906
+ "reflects": true
6907
+ },
6908
+ {
6909
+ "kind": "field",
6910
+ "name": "size",
6911
+ "type": {
6912
+ "text": "ButtonSize"
6913
+ },
6914
+ "description": "Simplebutton size is a super set of all the sizes supported by children components.",
6915
+ "default": "32",
6916
+ "attribute": "size",
6917
+ "reflects": true
6918
+ },
6919
+ {
6920
+ "kind": "field",
6921
+ "name": "role",
6922
+ "type": {
6923
+ "text": "RoleType"
6924
+ },
6925
+ "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.",
6926
+ "default": "button",
6927
+ "attribute": "role",
6928
+ "reflects": true
6929
+ },
6930
+ {
6931
+ "kind": "field",
6932
+ "name": "ariaStateKey",
6933
+ "type": {
6934
+ "text": "string | undefined"
6935
+ },
6936
+ "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`",
6937
+ "default": "'aria-pressed' (when)",
6938
+ "attribute": "ariaStateKey",
6939
+ "reflects": true
6940
+ },
6941
+ {
6942
+ "kind": "field",
6943
+ "name": "type",
6944
+ "type": {
6945
+ "text": "ButtonType"
6946
+ },
6947
+ "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.",
6948
+ "default": "button",
6949
+ "attribute": "type",
6950
+ "reflects": true
6951
+ },
6952
+ {
6953
+ "kind": "field",
6954
+ "name": "name",
6955
+ "type": {
6956
+ "text": "string | undefined"
6957
+ },
6958
+ "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.",
6959
+ "attribute": "name",
6960
+ "reflects": true
6961
+ },
6962
+ {
6963
+ "kind": "field",
6964
+ "name": "value",
6965
+ "type": {
6966
+ "text": "string | undefined"
6967
+ },
6968
+ "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.",
6969
+ "attribute": "value",
6970
+ "reflects": true
6971
+ },
6972
+ {
6973
+ "kind": "method",
6974
+ "name": "executeAction",
6975
+ "privacy": "protected"
6976
+ },
6977
+ {
6978
+ "kind": "method",
6979
+ "name": "setActive",
6980
+ "privacy": "protected",
6981
+ "parameters": [
6982
+ {
6983
+ "name": "element",
6984
+ "type": {
6985
+ "text": "HTMLElement"
6986
+ },
6987
+ "description": "The button element"
6988
+ },
6989
+ {
6990
+ "name": "active",
6991
+ "optional": true,
6992
+ "type": {
6993
+ "text": "boolean"
6994
+ },
6995
+ "description": "The active state of the element"
6996
+ }
6997
+ ],
6998
+ "description": "Sets the ariaStateKey attributes based on the active state of the button."
6999
+ },
7000
+ {
7001
+ "kind": "method",
7002
+ "name": "setSoftDisabled",
7003
+ "privacy": "private",
7004
+ "parameters": [
7005
+ {
7006
+ "name": "element",
7007
+ "type": {
7008
+ "text": "HTMLElement"
7009
+ },
7010
+ "description": "The button element."
7011
+ },
7012
+ {
7013
+ "name": "softDisabled",
7014
+ "optional": true,
7015
+ "type": {
7016
+ "text": "boolean"
7017
+ },
7018
+ "description": "The soft-disabled state."
7019
+ }
7020
+ ],
7021
+ "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."
7022
+ },
7023
+ {
7024
+ "kind": "method",
7025
+ "name": "setDisabled",
7026
+ "privacy": "private",
7027
+ "parameters": [
7028
+ {
7029
+ "name": "element",
7030
+ "type": {
7031
+ "text": "HTMLElement"
7032
+ },
7033
+ "description": "The button element."
7034
+ },
7035
+ {
7036
+ "name": "disabled",
7037
+ "type": {
7038
+ "text": "boolean"
7039
+ },
7040
+ "description": "The disabled state."
7041
+ }
7042
+ ],
7043
+ "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."
7044
+ },
7045
+ {
7046
+ "kind": "method",
7047
+ "name": "triggerClickEvent",
7048
+ "privacy": "private"
7049
+ },
7050
+ {
7051
+ "kind": "method",
7052
+ "name": "handleBlur",
7053
+ "privacy": "private",
7054
+ "description": "In case the button is pressed and the focus is lost while pressing,\nthe pressed class is removed."
7055
+ },
7056
+ {
7057
+ "kind": "method",
7058
+ "name": "handleKeyDown",
7059
+ "privacy": "private",
7060
+ "parameters": [
7061
+ {
7062
+ "name": "event",
7063
+ "type": {
7064
+ "text": "KeyboardEvent"
7065
+ },
7066
+ "description": "The keyboard event."
7067
+ }
7068
+ ],
7069
+ "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."
7070
+ },
7071
+ {
7072
+ "kind": "method",
7073
+ "name": "handleKeyUp",
7074
+ "privacy": "private",
7075
+ "parameters": [
7076
+ {
7077
+ "name": "event",
7078
+ "type": {
7079
+ "text": "KeyboardEvent"
7080
+ },
7081
+ "description": "The keyboard event."
7082
+ }
7083
+ ],
7084
+ "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."
7085
+ },
7086
+ {
7087
+ "kind": "field",
7088
+ "name": "autoFocusOnMount",
7089
+ "type": {
7090
+ "text": "boolean"
7091
+ },
7092
+ "default": "false",
7093
+ "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.",
7094
+ "attribute": "auto-focus-on-mount",
7095
+ "reflects": true,
7096
+ "inheritedFrom": {
7097
+ "name": "AutoFocusOnMountMixin",
7098
+ "module": "utils/mixins/AutoFocusOnMountMixin.js"
7099
+ }
7100
+ },
7101
+ {
7102
+ "kind": "field",
7103
+ "name": "tabIndex",
7104
+ "type": {
7105
+ "text": "number"
7106
+ },
7107
+ "default": "0",
7108
+ "description": "This property specifies the tab order of the element.",
7109
+ "attribute": "tabIndex",
7110
+ "reflects": true,
7111
+ "inheritedFrom": {
7112
+ "name": "TabIndexMixin",
7113
+ "module": "utils/mixins/TabIndexMixin.js"
7114
+ }
7115
+ },
7116
+ {
7117
+ "kind": "field",
7118
+ "name": "disabled",
7119
+ "type": {
7120
+ "text": "boolean | undefined"
7121
+ },
7122
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
7123
+ "default": "undefined",
7124
+ "attribute": "disabled",
7125
+ "reflects": true,
7126
+ "inheritedFrom": {
7127
+ "name": "DisabledMixin",
7128
+ "module": "utils/mixins/DisabledMixin.js"
7129
+ }
7130
+ }
7131
+ ],
7132
+ "events": [
7133
+ {
7134
+ "description": "(React: onClick) This event is dispatched when the button is clicked.",
7135
+ "name": "click",
7136
+ "reactName": "onClick"
7137
+ },
7138
+ {
7139
+ "description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the button.",
7140
+ "name": "keydown",
7141
+ "reactName": "onKeyDown"
7142
+ },
7143
+ {
7144
+ "description": "(React: onKeyUp) This event is dispatched when a key is released on the button.",
7145
+ "name": "keyup",
7146
+ "reactName": "onKeyUp"
7147
+ },
7148
+ {
7149
+ "description": "(React: onFocus) This event is dispatched when the button receives focus.",
7150
+ "name": "focus",
7151
+ "reactName": "onFocus"
7152
+ }
7153
+ ],
7154
+ "attributes": [
7155
+ {
7156
+ "name": "active",
7157
+ "type": {
7158
+ "text": "boolean | undefined"
7159
+ },
7160
+ "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.",
7161
+ "default": "undefined",
7162
+ "fieldName": "active"
7163
+ },
7164
+ {
7165
+ "name": "soft-disabled",
7166
+ "type": {
7167
+ "text": "boolean | undefined"
7168
+ },
7169
+ "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.",
7170
+ "default": "undefined",
7171
+ "fieldName": "softDisabled"
7172
+ },
7173
+ {
7174
+ "name": "size",
7175
+ "type": {
7176
+ "text": "ButtonSize"
7177
+ },
7178
+ "description": "Simplebutton size is a super set of all the sizes supported by children components.",
7179
+ "default": "32",
7180
+ "fieldName": "size"
7181
+ },
7182
+ {
7183
+ "name": "role",
7184
+ "type": {
7185
+ "text": "RoleType"
7186
+ },
7187
+ "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.",
7188
+ "default": "button",
7189
+ "fieldName": "role"
7190
+ },
7191
+ {
7192
+ "name": "ariaStateKey",
7193
+ "type": {
7194
+ "text": "string | undefined"
7195
+ },
7196
+ "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`",
7197
+ "default": "'aria-pressed' (when)",
7198
+ "fieldName": "ariaStateKey"
7199
+ },
7200
+ {
7201
+ "name": "type",
7202
+ "type": {
7203
+ "text": "ButtonType"
7204
+ },
7205
+ "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.",
7206
+ "default": "button",
7207
+ "fieldName": "type"
7208
+ },
7209
+ {
7210
+ "name": "name",
7211
+ "type": {
7212
+ "text": "string | undefined"
7213
+ },
7214
+ "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.",
7215
+ "fieldName": "name"
7216
+ },
7217
+ {
7218
+ "name": "value",
7219
+ "type": {
7220
+ "text": "string | undefined"
7221
+ },
7222
+ "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.",
7223
+ "fieldName": "value"
7224
+ },
7225
+ {
7226
+ "name": "auto-focus-on-mount",
7227
+ "type": {
7228
+ "text": "boolean"
7229
+ },
7230
+ "default": "false",
7231
+ "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.",
7232
+ "fieldName": "autoFocusOnMount",
7233
+ "inheritedFrom": {
7234
+ "name": "AutoFocusOnMountMixin",
7235
+ "module": "src/utils/mixins/AutoFocusOnMountMixin.ts"
7236
+ }
7237
+ },
7238
+ {
7239
+ "name": "tabIndex",
7240
+ "type": {
7241
+ "text": "number"
7242
+ },
7243
+ "default": "0",
7244
+ "description": "This property specifies the tab order of the element.",
7245
+ "fieldName": "tabIndex",
7246
+ "inheritedFrom": {
7247
+ "name": "TabIndexMixin",
7248
+ "module": "src/utils/mixins/TabIndexMixin.ts"
7249
+ }
7250
+ },
7251
+ {
7252
+ "name": "disabled",
7253
+ "type": {
7254
+ "text": "boolean | undefined"
7255
+ },
7256
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
7257
+ "default": "undefined",
7258
+ "fieldName": "disabled",
7259
+ "inheritedFrom": {
7260
+ "name": "DisabledMixin",
7261
+ "module": "src/utils/mixins/DisabledMixin.ts"
7262
+ }
7263
+ }
7264
+ ],
7265
+ "mixins": [
7266
+ {
7267
+ "name": "AutoFocusOnMountMixin",
7268
+ "module": "/src/utils/mixins/AutoFocusOnMountMixin"
7269
+ },
7270
+ {
7271
+ "name": "TabIndexMixin",
7272
+ "module": "/src/utils/mixins/TabIndexMixin"
7273
+ },
7274
+ {
7275
+ "name": "DisabledMixin",
7276
+ "module": "/src/utils/mixins/DisabledMixin"
7277
+ }
7278
+ ],
7279
+ "superclass": {
7280
+ "name": "Component",
7281
+ "module": "/src/models"
7282
+ },
7283
+ "tagName": "mdc-buttonsimple",
7284
+ "jsDoc": "/**\n * `mdc-buttonsimple` is a component that can be configured in various ways to suit different use cases.\n * It is used as an internal component and is not intended to be used directly by consumers.\n * Consumers should use the `mdc-button` component instead.\n *\n * @event click - (React: onClick) This event is dispatched when the button is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the button.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the button.\n * @event focus - (React: onFocus) This event is dispatched when the button receives focus.\n *\n * @tagname mdc-buttonsimple\n *\n * @cssproperty --mdc-button-height - Height for button size\n * @cssproperty --mdc-button-background - Background color of the button\n * @cssproperty --mdc-button-border-color - Borer color of the button\n * @cssproperty --mdc-button-text-color - Text color of the button\n */",
7285
+ "customElement": true
7286
+ }
7287
+ ],
7288
+ "exports": [
7289
+ {
7290
+ "kind": "js",
7291
+ "name": "default",
7292
+ "declaration": {
7293
+ "name": "Buttonsimple",
7294
+ "module": "components/buttonsimple/buttonsimple.component.js"
7295
+ }
7296
+ }
7297
+ ]
7298
+ },
6859
7299
  {
6860
7300
  "kind": "javascript-module",
6861
7301
  "path": "components/cardbutton/cardbutton.component.js",
@@ -7168,8 +7608,8 @@
7168
7608
  "attribute": "auto-focus-on-mount",
7169
7609
  "reflects": true,
7170
7610
  "inheritedFrom": {
7171
- "name": "AutoFocusOnMountMixin",
7172
- "module": "utils/mixins/AutoFocusOnMountMixin.js"
7611
+ "name": "Buttonsimple",
7612
+ "module": "components/buttonsimple/buttonsimple.component.js"
7173
7613
  }
7174
7614
  },
7175
7615
  {
@@ -7183,8 +7623,8 @@
7183
7623
  "attribute": "tabIndex",
7184
7624
  "reflects": true,
7185
7625
  "inheritedFrom": {
7186
- "name": "TabIndexMixin",
7187
- "module": "utils/mixins/TabIndexMixin.js"
7626
+ "name": "Buttonsimple",
7627
+ "module": "components/buttonsimple/buttonsimple.component.js"
7188
7628
  }
7189
7629
  },
7190
7630
  {
@@ -7198,8 +7638,8 @@
7198
7638
  "attribute": "disabled",
7199
7639
  "reflects": true,
7200
7640
  "inheritedFrom": {
7201
- "name": "DisabledMixin",
7202
- "module": "utils/mixins/DisabledMixin.js"
7641
+ "name": "Buttonsimple",
7642
+ "module": "components/buttonsimple/buttonsimple.component.js"
7203
7643
  }
7204
7644
  },
7205
7645
  {
@@ -7644,8 +8084,8 @@
7644
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.",
7645
8085
  "fieldName": "autoFocusOnMount",
7646
8086
  "inheritedFrom": {
7647
- "name": "AutoFocusOnMountMixin",
7648
- "module": "src/utils/mixins/AutoFocusOnMountMixin.ts"
8087
+ "name": "Buttonsimple",
8088
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
7649
8089
  }
7650
8090
  },
7651
8091
  {
@@ -7657,8 +8097,8 @@
7657
8097
  "description": "This property specifies the tab order of the element.",
7658
8098
  "fieldName": "tabIndex",
7659
8099
  "inheritedFrom": {
7660
- "name": "TabIndexMixin",
7661
- "module": "src/utils/mixins/TabIndexMixin.ts"
8100
+ "name": "Buttonsimple",
8101
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
7662
8102
  }
7663
8103
  },
7664
8104
  {
@@ -7670,8 +8110,8 @@
7670
8110
  "default": "undefined",
7671
8111
  "fieldName": "disabled",
7672
8112
  "inheritedFrom": {
7673
- "name": "DisabledMixin",
7674
- "module": "src/utils/mixins/DisabledMixin.ts"
8113
+ "name": "Buttonsimple",
8114
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
7675
8115
  }
7676
8116
  },
7677
8117
  {
@@ -8231,446 +8671,6 @@
8231
8671
  }
8232
8672
  ]
8233
8673
  },
8234
- {
8235
- "kind": "javascript-module",
8236
- "path": "components/buttonsimple/buttonsimple.component.js",
8237
- "declarations": [
8238
- {
8239
- "kind": "class",
8240
- "description": "`mdc-buttonsimple` is a component that can be configured in various ways to suit different use cases.\nIt is used as an internal component and is not intended to be used directly by consumers.\nConsumers should use the `mdc-button` component instead.",
8241
- "name": "Buttonsimple",
8242
- "cssProperties": [
8243
- {
8244
- "description": "Height for button size",
8245
- "name": "--mdc-button-height"
8246
- },
8247
- {
8248
- "description": "Background color of the button",
8249
- "name": "--mdc-button-background"
8250
- },
8251
- {
8252
- "description": "Borer color of the button",
8253
- "name": "--mdc-button-border-color"
8254
- },
8255
- {
8256
- "description": "Text color of the button",
8257
- "name": "--mdc-button-text-color"
8258
- }
8259
- ],
8260
- "members": [
8261
- {
8262
- "kind": "field",
8263
- "name": "active",
8264
- "type": {
8265
- "text": "boolean | undefined"
8266
- },
8267
- "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.",
8268
- "default": "undefined",
8269
- "attribute": "active",
8270
- "reflects": true
8271
- },
8272
- {
8273
- "kind": "field",
8274
- "name": "softDisabled",
8275
- "type": {
8276
- "text": "boolean | undefined"
8277
- },
8278
- "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.",
8279
- "default": "undefined",
8280
- "attribute": "soft-disabled",
8281
- "reflects": true
8282
- },
8283
- {
8284
- "kind": "field",
8285
- "name": "size",
8286
- "type": {
8287
- "text": "ButtonSize"
8288
- },
8289
- "description": "Simplebutton size is a super set of all the sizes supported by children components.",
8290
- "default": "32",
8291
- "attribute": "size",
8292
- "reflects": true
8293
- },
8294
- {
8295
- "kind": "field",
8296
- "name": "role",
8297
- "type": {
8298
- "text": "RoleType"
8299
- },
8300
- "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.",
8301
- "default": "button",
8302
- "attribute": "role",
8303
- "reflects": true
8304
- },
8305
- {
8306
- "kind": "field",
8307
- "name": "ariaStateKey",
8308
- "type": {
8309
- "text": "string | undefined"
8310
- },
8311
- "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`",
8312
- "default": "'aria-pressed' (when)",
8313
- "attribute": "ariaStateKey",
8314
- "reflects": true
8315
- },
8316
- {
8317
- "kind": "field",
8318
- "name": "type",
8319
- "type": {
8320
- "text": "ButtonType"
8321
- },
8322
- "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.",
8323
- "default": "button",
8324
- "attribute": "type",
8325
- "reflects": true
8326
- },
8327
- {
8328
- "kind": "field",
8329
- "name": "name",
8330
- "type": {
8331
- "text": "string | undefined"
8332
- },
8333
- "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.",
8334
- "attribute": "name",
8335
- "reflects": true
8336
- },
8337
- {
8338
- "kind": "field",
8339
- "name": "value",
8340
- "type": {
8341
- "text": "string | undefined"
8342
- },
8343
- "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.",
8344
- "attribute": "value",
8345
- "reflects": true
8346
- },
8347
- {
8348
- "kind": "method",
8349
- "name": "executeAction",
8350
- "privacy": "protected"
8351
- },
8352
- {
8353
- "kind": "method",
8354
- "name": "setActive",
8355
- "privacy": "protected",
8356
- "parameters": [
8357
- {
8358
- "name": "element",
8359
- "type": {
8360
- "text": "HTMLElement"
8361
- },
8362
- "description": "The button element"
8363
- },
8364
- {
8365
- "name": "active",
8366
- "optional": true,
8367
- "type": {
8368
- "text": "boolean"
8369
- },
8370
- "description": "The active state of the element"
8371
- }
8372
- ],
8373
- "description": "Sets the ariaStateKey attributes based on the active state of the button."
8374
- },
8375
- {
8376
- "kind": "method",
8377
- "name": "setSoftDisabled",
8378
- "privacy": "private",
8379
- "parameters": [
8380
- {
8381
- "name": "element",
8382
- "type": {
8383
- "text": "HTMLElement"
8384
- },
8385
- "description": "The button element."
8386
- },
8387
- {
8388
- "name": "softDisabled",
8389
- "optional": true,
8390
- "type": {
8391
- "text": "boolean"
8392
- },
8393
- "description": "The soft-disabled state."
8394
- }
8395
- ],
8396
- "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."
8397
- },
8398
- {
8399
- "kind": "method",
8400
- "name": "setDisabled",
8401
- "privacy": "private",
8402
- "parameters": [
8403
- {
8404
- "name": "element",
8405
- "type": {
8406
- "text": "HTMLElement"
8407
- },
8408
- "description": "The button element."
8409
- },
8410
- {
8411
- "name": "disabled",
8412
- "type": {
8413
- "text": "boolean"
8414
- },
8415
- "description": "The disabled state."
8416
- }
8417
- ],
8418
- "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."
8419
- },
8420
- {
8421
- "kind": "method",
8422
- "name": "triggerClickEvent",
8423
- "privacy": "private"
8424
- },
8425
- {
8426
- "kind": "method",
8427
- "name": "handleBlur",
8428
- "privacy": "private",
8429
- "description": "In case the button is pressed and the focus is lost while pressing,\nthe pressed class is removed."
8430
- },
8431
- {
8432
- "kind": "method",
8433
- "name": "handleKeyDown",
8434
- "privacy": "private",
8435
- "parameters": [
8436
- {
8437
- "name": "event",
8438
- "type": {
8439
- "text": "KeyboardEvent"
8440
- },
8441
- "description": "The keyboard event."
8442
- }
8443
- ],
8444
- "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."
8445
- },
8446
- {
8447
- "kind": "method",
8448
- "name": "handleKeyUp",
8449
- "privacy": "private",
8450
- "parameters": [
8451
- {
8452
- "name": "event",
8453
- "type": {
8454
- "text": "KeyboardEvent"
8455
- },
8456
- "description": "The keyboard event."
8457
- }
8458
- ],
8459
- "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."
8460
- },
8461
- {
8462
- "kind": "field",
8463
- "name": "autoFocusOnMount",
8464
- "type": {
8465
- "text": "boolean"
8466
- },
8467
- "default": "false",
8468
- "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.",
8469
- "attribute": "auto-focus-on-mount",
8470
- "reflects": true,
8471
- "inheritedFrom": {
8472
- "name": "AutoFocusOnMountMixin",
8473
- "module": "utils/mixins/AutoFocusOnMountMixin.js"
8474
- }
8475
- },
8476
- {
8477
- "kind": "field",
8478
- "name": "tabIndex",
8479
- "type": {
8480
- "text": "number"
8481
- },
8482
- "default": "0",
8483
- "description": "This property specifies the tab order of the element.",
8484
- "attribute": "tabIndex",
8485
- "reflects": true,
8486
- "inheritedFrom": {
8487
- "name": "TabIndexMixin",
8488
- "module": "utils/mixins/TabIndexMixin.js"
8489
- }
8490
- },
8491
- {
8492
- "kind": "field",
8493
- "name": "disabled",
8494
- "type": {
8495
- "text": "boolean | undefined"
8496
- },
8497
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
8498
- "default": "undefined",
8499
- "attribute": "disabled",
8500
- "reflects": true,
8501
- "inheritedFrom": {
8502
- "name": "DisabledMixin",
8503
- "module": "utils/mixins/DisabledMixin.js"
8504
- }
8505
- }
8506
- ],
8507
- "events": [
8508
- {
8509
- "description": "(React: onClick) This event is dispatched when the button is clicked.",
8510
- "name": "click",
8511
- "reactName": "onClick"
8512
- },
8513
- {
8514
- "description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the button.",
8515
- "name": "keydown",
8516
- "reactName": "onKeyDown"
8517
- },
8518
- {
8519
- "description": "(React: onKeyUp) This event is dispatched when a key is released on the button.",
8520
- "name": "keyup",
8521
- "reactName": "onKeyUp"
8522
- },
8523
- {
8524
- "description": "(React: onFocus) This event is dispatched when the button receives focus.",
8525
- "name": "focus",
8526
- "reactName": "onFocus"
8527
- }
8528
- ],
8529
- "attributes": [
8530
- {
8531
- "name": "active",
8532
- "type": {
8533
- "text": "boolean | undefined"
8534
- },
8535
- "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.",
8536
- "default": "undefined",
8537
- "fieldName": "active"
8538
- },
8539
- {
8540
- "name": "soft-disabled",
8541
- "type": {
8542
- "text": "boolean | undefined"
8543
- },
8544
- "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.",
8545
- "default": "undefined",
8546
- "fieldName": "softDisabled"
8547
- },
8548
- {
8549
- "name": "size",
8550
- "type": {
8551
- "text": "ButtonSize"
8552
- },
8553
- "description": "Simplebutton size is a super set of all the sizes supported by children components.",
8554
- "default": "32",
8555
- "fieldName": "size"
8556
- },
8557
- {
8558
- "name": "role",
8559
- "type": {
8560
- "text": "RoleType"
8561
- },
8562
- "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.",
8563
- "default": "button",
8564
- "fieldName": "role"
8565
- },
8566
- {
8567
- "name": "ariaStateKey",
8568
- "type": {
8569
- "text": "string | undefined"
8570
- },
8571
- "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`",
8572
- "default": "'aria-pressed' (when)",
8573
- "fieldName": "ariaStateKey"
8574
- },
8575
- {
8576
- "name": "type",
8577
- "type": {
8578
- "text": "ButtonType"
8579
- },
8580
- "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.",
8581
- "default": "button",
8582
- "fieldName": "type"
8583
- },
8584
- {
8585
- "name": "name",
8586
- "type": {
8587
- "text": "string | undefined"
8588
- },
8589
- "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.",
8590
- "fieldName": "name"
8591
- },
8592
- {
8593
- "name": "value",
8594
- "type": {
8595
- "text": "string | undefined"
8596
- },
8597
- "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.",
8598
- "fieldName": "value"
8599
- },
8600
- {
8601
- "name": "auto-focus-on-mount",
8602
- "type": {
8603
- "text": "boolean"
8604
- },
8605
- "default": "false",
8606
- "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.",
8607
- "fieldName": "autoFocusOnMount",
8608
- "inheritedFrom": {
8609
- "name": "AutoFocusOnMountMixin",
8610
- "module": "src/utils/mixins/AutoFocusOnMountMixin.ts"
8611
- }
8612
- },
8613
- {
8614
- "name": "tabIndex",
8615
- "type": {
8616
- "text": "number"
8617
- },
8618
- "default": "0",
8619
- "description": "This property specifies the tab order of the element.",
8620
- "fieldName": "tabIndex",
8621
- "inheritedFrom": {
8622
- "name": "TabIndexMixin",
8623
- "module": "src/utils/mixins/TabIndexMixin.ts"
8624
- }
8625
- },
8626
- {
8627
- "name": "disabled",
8628
- "type": {
8629
- "text": "boolean | undefined"
8630
- },
8631
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
8632
- "default": "undefined",
8633
- "fieldName": "disabled",
8634
- "inheritedFrom": {
8635
- "name": "DisabledMixin",
8636
- "module": "src/utils/mixins/DisabledMixin.ts"
8637
- }
8638
- }
8639
- ],
8640
- "mixins": [
8641
- {
8642
- "name": "AutoFocusOnMountMixin",
8643
- "module": "/src/utils/mixins/AutoFocusOnMountMixin"
8644
- },
8645
- {
8646
- "name": "TabIndexMixin",
8647
- "module": "/src/utils/mixins/TabIndexMixin"
8648
- },
8649
- {
8650
- "name": "DisabledMixin",
8651
- "module": "/src/utils/mixins/DisabledMixin"
8652
- }
8653
- ],
8654
- "superclass": {
8655
- "name": "Component",
8656
- "module": "/src/models"
8657
- },
8658
- "tagName": "mdc-buttonsimple",
8659
- "jsDoc": "/**\n * `mdc-buttonsimple` is a component that can be configured in various ways to suit different use cases.\n * It is used as an internal component and is not intended to be used directly by consumers.\n * Consumers should use the `mdc-button` component instead.\n *\n * @event click - (React: onClick) This event is dispatched when the button is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the button.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the button.\n * @event focus - (React: onFocus) This event is dispatched when the button receives focus.\n *\n * @tagname mdc-buttonsimple\n *\n * @cssproperty --mdc-button-height - Height for button size\n * @cssproperty --mdc-button-background - Background color of the button\n * @cssproperty --mdc-button-border-color - Borer color of the button\n * @cssproperty --mdc-button-text-color - Text color of the button\n */",
8660
- "customElement": true
8661
- }
8662
- ],
8663
- "exports": [
8664
- {
8665
- "kind": "js",
8666
- "name": "default",
8667
- "declaration": {
8668
- "name": "Buttonsimple",
8669
- "module": "components/buttonsimple/buttonsimple.component.js"
8670
- }
8671
- }
8672
- ]
8673
- },
8674
8674
  {
8675
8675
  "kind": "javascript-module",
8676
8676
  "path": "components/cardcheckbox/cardcheckbox.component.js",
@@ -46688,7 +46688,7 @@
46688
46688
  "declarations": [
46689
46689
  {
46690
46690
  "kind": "class",
46691
- "description": "mdc-textarea component, which is used to get the multi-line text input from the user.\nIt contains:\n- label: It is the title of the textarea field.\n- required: A boolean attribute depicting that the textarea field is required.\n- Textarea: It is the multi-line text input field.\n- helper-text: It is the text that provides additional information about the textarea field.\n- max-character-limit: It is the text that shows the character count of the textarea field.\n- Error, Warning, Success, Priority Help Text type: It is the text that provides additional information\n about the textarea field based on the validation state.\n- limitexceeded: It is the event that is dispatched when the character limit exceeds or restored.\n This event exposes 3 properties:\n - currentCharacterCount - the current number of characters in the textarea field,\n - maxCharacterLimit - the maximum number of characters allowed in the textarea field,\n - value - the current value of the textarea field,\n\n**Note**: Consumers must set the help-text-type with 'error' and\nhelp-text attribute with the error message using limitexceeded event.\nThe same help-text value will be used for the validation message to be displayed.\n\n### Accessibility \n\n#### Resize\n \nAccessible text area resizing can be turned on with the `resizable`. \nIt is strongly recommended to set the `resize-button-aria-label` attribute as well to describe what it is and what are the shortcuts (up/down arrows) of the button.\n\n#### Best practices\n\n- Always provide a `label` for screen readers to identify the textarea's purpose\n- Use `help-text` to provide additional context or instructions\n- When using `max-character-limit`, consider providing `character-limit-announcement` for screen reader updates\n- Use appropriate `help-text-type` (error, warning, success) to convey validation state\n- Ensure `validation-message` is set for form validation errors",
46691
+ "description": "mdc-textarea component, which is used to get the multi-line text input from the user.\nIt contains:\n- label: It is the title of the textarea field.\n- required: A boolean attribute depicting that the textarea field is required.\n- Textarea: It is the multi-line text input field.\n- helper-text: It is the text that provides additional information about the textarea field.\n- max-character-limit: It is the text that shows the character count of the textarea field.\n- Error, Warning, Success, Priority Help Text type: It is the text that provides additional information\n about the textarea field based on the validation state.\n- limitexceeded: It is the event that is dispatched when the character limit exceeds or restored.\n This event exposes 3 properties:\n - currentCharacterCount - the current number of characters in the textarea field,\n - maxCharacterLimit - the maximum number of characters allowed in the textarea field,\n - value - the current value of the textarea field,\n\n**Note**: Consumers must set the help-text-type with 'error' and\nhelp-text attribute with the error message using limitexceeded event.\nThe same help-text value will be used for the validation message to be displayed.\n\n### Accessibility\n\n#### Resize\n\nAccessible text area resizing can be turned on with the `resizable`.\nIt is strongly recommended to set the `resize-button-aria-label` attribute as well to describe what it is and what are the shortcuts (up/down arrows) of the button.\n\n#### Best practices\n\n- Always provide a `label` for screen readers to identify the textarea's purpose\n- Use `help-text` to provide additional context or instructions\n- When using `max-character-limit`, consider providing `character-limit-announcement` for screen reader updates\n- Use appropriate `help-text-type` (error, warning, success) to convey validation state\n- Ensure `validation-message` is set for form validation errors",
46692
46692
  "name": "Textarea",
46693
46693
  "cssProperties": [
46694
46694
  {
@@ -47909,7 +47909,7 @@
47909
47909
  "module": "/src/components/formfieldwrapper"
47910
47910
  },
47911
47911
  "tagName": "mdc-textarea",
47912
- "jsDoc": "/**\n * mdc-textarea component, which is used to get the multi-line text input from the user.\n * It contains:\n * - label: It is the title of the textarea field.\n * - required: A boolean attribute depicting that the textarea field is required.\n * - Textarea: It is the multi-line text input field.\n * - helper-text: It is the text that provides additional information about the textarea field.\n * - max-character-limit: It is the text that shows the character count of the textarea field.\n * - Error, Warning, Success, Priority Help Text type: It is the text that provides additional information\n * about the textarea field based on the validation state.\n * - limitexceeded: It is the event that is dispatched when the character limit exceeds or restored.\n * This event exposes 3 properties:\n * - currentCharacterCount - the current number of characters in the textarea field,\n * - maxCharacterLimit - the maximum number of characters allowed in the textarea field,\n * - value - the current value of the textarea field,\n *\n * **Note**: Consumers must set the help-text-type with 'error' and\n * help-text attribute with the error message using limitexceeded event.\n * The same help-text value will be used for the validation message to be displayed.\n *\n * ### Accessibility \n * \n * #### Resize\n * \n * Accessible text area resizing can be turned on with the `resizable`. \n * It is strongly recommended to set the `resize-button-aria-label` attribute as well to describe what it is and what are the shortcuts (up/down arrows) of the button.\n * \n * #### Best practices\n * \n * - Always provide a `label` for screen readers to identify the textarea's purpose\n * - Use `help-text` to provide additional context or instructions\n * - When using `max-character-limit`, consider providing `character-limit-announcement` for screen reader updates\n * - Use appropriate `help-text-type` (error, warning, success) to convey validation state\n * - Ensure `validation-message` is set for form validation errors\n *\n * @tagname mdc-textarea\n *\n * @event input - (React: onInput) This event is dispatched when the value of the textarea field changes (every press).\n * @event change - (React: onChange) This event is dispatched when the value of the textarea field changes (on blur).\n * @event focus - (React: onFocus) This event is dispatched when the textarea receives focus.\n * @event blur - (React: onBlur) This event is dispatched when the textarea loses focus.\n * @event limitexceeded - (React: onLimitExceeded) This event is dispatched once when the character limit\n * exceeds or restored.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.\n * @slot toggletip - Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.\n * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.\n * @slot help-text - Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.\n *\n * @csspart label - The label element.\n * @csspart label-text - The container for the label and required indicator elements.\n * @csspart required-indicator - The required indicator element that is displayed next to the label when the `required` property is set to true.\n * @csspart info-icon-btn - The info icon button element that is displayed next to the label when the `toggletip-text` property is set.\n * @csspart label-toggletip - The toggletip element that is displayed when the info icon button is clicked.\n * @csspart textarea - The textarea element.\n * @csspart textarea-container - The container element that wraps the textarea and resize button.\n * @csspart textarea-footer - The footer element that contains the character counter.\n * @csspart character-counter - The character counter element.\n * @csspart resize-button - The resize button element (shown when `resizable` is true).\n * @csspart help-text - The helper/validation text element.\n * @csspart helper-icon - The helper/validation icon element that is displayed next to the helper/validation text.\n * @csspart help-text-container - The container for the helper/validation icon and text elements.\n *\n * @cssproperty --mdc-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n * @cssproperty --mdc-required-indicator-color - Color for the required indicator text.\n * @cssproperty --mdc-textarea-text-color - Text color for the textarea field\n * @cssproperty --mdc-textarea-background-color - Background color for the textarea field\n * @cssproperty --mdc-textarea-border-color - Border color for the textarea field\n * @cssproperty --mdc-textarea-text-secondary-normal - Text color for the character counter\n * @cssproperty --mdc-textarea-text-font-size - Font size for the textarea field\n * @cssproperty --mdc-textarea-text-line-height - Line height for the textarea field\n * @cssproperty --mdc-textarea-container-background-color - Background color for the textarea container\n */",
47912
+ "jsDoc": "/**\n * mdc-textarea component, which is used to get the multi-line text input from the user.\n * It contains:\n * - label: It is the title of the textarea field.\n * - required: A boolean attribute depicting that the textarea field is required.\n * - Textarea: It is the multi-line text input field.\n * - helper-text: It is the text that provides additional information about the textarea field.\n * - max-character-limit: It is the text that shows the character count of the textarea field.\n * - Error, Warning, Success, Priority Help Text type: It is the text that provides additional information\n * about the textarea field based on the validation state.\n * - limitexceeded: It is the event that is dispatched when the character limit exceeds or restored.\n * This event exposes 3 properties:\n * - currentCharacterCount - the current number of characters in the textarea field,\n * - maxCharacterLimit - the maximum number of characters allowed in the textarea field,\n * - value - the current value of the textarea field,\n *\n * **Note**: Consumers must set the help-text-type with 'error' and\n * help-text attribute with the error message using limitexceeded event.\n * The same help-text value will be used for the validation message to be displayed.\n *\n * ### Accessibility\n *\n * #### Resize\n *\n * Accessible text area resizing can be turned on with the `resizable`.\n * It is strongly recommended to set the `resize-button-aria-label` attribute as well to describe what it is and what are the shortcuts (up/down arrows) of the button.\n *\n * #### Best practices\n *\n * - Always provide a `label` for screen readers to identify the textarea's purpose\n * - Use `help-text` to provide additional context or instructions\n * - When using `max-character-limit`, consider providing `character-limit-announcement` for screen reader updates\n * - Use appropriate `help-text-type` (error, warning, success) to convey validation state\n * - Ensure `validation-message` is set for form validation errors\n *\n * @tagname mdc-textarea\n *\n * @event input - (React: onInput) This event is dispatched when the value of the textarea field changes (every press).\n * @event change - (React: onChange) This event is dispatched when the value of the textarea field changes (on blur).\n * @event focus - (React: onFocus) This event is dispatched when the textarea receives focus.\n * @event blur - (React: onBlur) This event is dispatched when the textarea loses focus.\n * @event limitexceeded - (React: onLimitExceeded) This event is dispatched once when the character limit\n * exceeds or restored.\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @slot label - Slot for the label element. If not provided, the `label` property will be used to render the label.\n * @slot toggletip - Slot for the toggletip info icon button. If not provided, the `toggletip-text` property will be used to render the info icon button and toggletip.\n * @slot help-icon - Slot for the helper/validation icon. If not provided, the icon will be rendered based on the `helpTextType` property.\n * @slot help-text - Slot for the helper/validation text. If not provided, the `helpText` property will be used to render the helper/validation text.\n *\n * @csspart label - The label element.\n * @csspart label-text - The container for the label and required indicator elements.\n * @csspart required-indicator - The required indicator element that is displayed next to the label when the `required` property is set to true.\n * @csspart info-icon-btn - The info icon button element that is displayed next to the label when the `toggletip-text` property is set.\n * @csspart label-toggletip - The toggletip element that is displayed when the info icon button is clicked.\n * @csspart textarea - The textarea element.\n * @csspart textarea-container - The container element that wraps the textarea and resize button.\n * @csspart textarea-footer - The footer element that contains the character counter.\n * @csspart character-counter - The character counter element.\n * @csspart resize-button - The resize button element (shown when `resizable` is true).\n * @csspart help-text - The helper/validation text element.\n * @csspart helper-icon - The helper/validation icon element that is displayed next to the helper/validation text.\n * @csspart help-text-container - The container for the helper/validation icon and text elements.\n *\n * @cssproperty --mdc-label-font-size - Font size for the label text.\n * @cssproperty --mdc-label-font-weight - Font weight for the label text.\n * @cssproperty --mdc-label-line-height - Line height for the label text.\n * @cssproperty --mdc-label-color - Color for the label text.\n * @cssproperty --mdc-help-text-font-size - Font size for the help text.\n * @cssproperty --mdc-help-text-font-weight - Font weight for the help text.\n * @cssproperty --mdc-help-text-line-height - Line height for the help text.\n * @cssproperty --mdc-help-text-color - Color for the help text.\n * @cssproperty --mdc-required-indicator-color - Color for the required indicator text.\n * @cssproperty --mdc-textarea-text-color - Text color for the textarea field\n * @cssproperty --mdc-textarea-background-color - Background color for the textarea field\n * @cssproperty --mdc-textarea-border-color - Border color for the textarea field\n * @cssproperty --mdc-textarea-text-secondary-normal - Text color for the character counter\n * @cssproperty --mdc-textarea-text-font-size - Font size for the textarea field\n * @cssproperty --mdc-textarea-text-line-height - Line height for the textarea field\n * @cssproperty --mdc-textarea-container-background-color - Background color for the textarea container\n */",
47913
47913
  "customElement": true
47914
47914
  }
47915
47915
  ],
@@ -48034,6 +48034,396 @@
48034
48034
  }
48035
48035
  ]
48036
48036
  },
48037
+ {
48038
+ "kind": "javascript-module",
48039
+ "path": "components/toast/toast.component.js",
48040
+ "declarations": [
48041
+ {
48042
+ "kind": "class",
48043
+ "description": "`mdc-toast` is a lightweight, non-blocking alert used to inform users about application processes.\nIt supports success, warning, error, and custom messages, and is designed to be controlled externally.\n\n**Note**: When using `slot=\"toast-body-normal\"` and `slot=\"toast-body-detailed\"`, it's strongly recommended to wrap the content with `<mdc-text tagname=\"span\">`.\nIf not used, ensure your custom content is styled appropriately to match the design and alignment expectations of the toast component.",
48044
+ "name": "Toast",
48045
+ "cssProperties": [
48046
+ {
48047
+ "description": "Background color of the toast.",
48048
+ "name": "--mdc-toast-background-color"
48049
+ },
48050
+ {
48051
+ "description": "Border color of the toast.",
48052
+ "name": "--mdc-toast-border-color"
48053
+ },
48054
+ {
48055
+ "description": "Color of the header text in the toast.",
48056
+ "name": "--mdc-toast-header-text-color"
48057
+ },
48058
+ {
48059
+ "description": "Color of the icon in the toast.",
48060
+ "name": "--mdc-toast-icon-color"
48061
+ },
48062
+ {
48063
+ "description": "Elevation effect applied to the toast.",
48064
+ "name": "--mdc-toast-elevation-3"
48065
+ },
48066
+ {
48067
+ "description": "Width of the toast.",
48068
+ "name": "--mdc-toast-width"
48069
+ },
48070
+ {
48071
+ "description": "Padding inside the toast.",
48072
+ "name": "--mdc-toast-padding"
48073
+ }
48074
+ ],
48075
+ "cssParts": [
48076
+ {
48077
+ "description": "The container for the toast's main content, including icon, text, and close button.",
48078
+ "name": "content-container"
48079
+ },
48080
+ {
48081
+ "description": "The icon shown at the start of the toast, styled by variant.",
48082
+ "name": "toast-prefix-icon"
48083
+ },
48084
+ {
48085
+ "description": "The container for the header and body content of the toast.",
48086
+ "name": "toast-content"
48087
+ },
48088
+ {
48089
+ "description": "The header text of the toast.",
48090
+ "name": "toast-header"
48091
+ },
48092
+ {
48093
+ "description": "The container for the toast's footer, including toggle and action buttons.",
48094
+ "name": "footer"
48095
+ },
48096
+ {
48097
+ "description": "The toggle button for showing/hiding detailed content.",
48098
+ "name": "footer-button-toggle"
48099
+ },
48100
+ {
48101
+ "description": "The close button for the toast.",
48102
+ "name": "toast-close-btn"
48103
+ },
48104
+ {
48105
+ "description": "Applied to the footer when it contains buttons or a toggle button.",
48106
+ "name": "has-footer-buttons"
48107
+ }
48108
+ ],
48109
+ "slots": [
48110
+ {
48111
+ "description": "Slot for custom content before the icon (only for custom variant).",
48112
+ "name": "content-prefix"
48113
+ },
48114
+ {
48115
+ "description": "Slot for the main body content of the toast.",
48116
+ "name": "toast-body-normal"
48117
+ },
48118
+ {
48119
+ "description": "Slot for additional detailed content, shown when expanded.",
48120
+ "name": "toast-body-detailed"
48121
+ },
48122
+ {
48123
+ "description": "Slot for custom footer content. Prefer using footer-button-primary and footer-button-secondary slots.",
48124
+ "name": "footer"
48125
+ },
48126
+ {
48127
+ "description": "Slot for passing the primary variant of `mdc-button` in the footer.",
48128
+ "name": "footer-button-primary"
48129
+ },
48130
+ {
48131
+ "description": "Slot for passing the secondary variant of `mdc-button` in the footer.",
48132
+ "name": "footer-button-secondary"
48133
+ }
48134
+ ],
48135
+ "members": [
48136
+ {
48137
+ "kind": "field",
48138
+ "name": "variant",
48139
+ "type": {
48140
+ "text": "ToastVariant"
48141
+ },
48142
+ "description": "Type of toast\n- Can be `custom`, `success`, `warning` or `error`.\n\nNote: When using the `custom` variant, provide your own icon via the `content-prefix` slot; otherwise, no icon will be shown.",
48143
+ "default": "'custom'",
48144
+ "attribute": "variant",
48145
+ "reflects": true
48146
+ },
48147
+ {
48148
+ "kind": "field",
48149
+ "name": "closeButtonAriaLabel",
48150
+ "type": {
48151
+ "text": "string | undefined"
48152
+ },
48153
+ "description": "Defines aria-label attribute for close button accessibility",
48154
+ "attribute": "close-button-aria-label"
48155
+ },
48156
+ {
48157
+ "kind": "field",
48158
+ "name": "headerText",
48159
+ "type": {
48160
+ "text": "string | undefined"
48161
+ },
48162
+ "description": "Defines a string value to display as the title of the toast",
48163
+ "attribute": "header-text",
48164
+ "reflects": true
48165
+ },
48166
+ {
48167
+ "kind": "field",
48168
+ "name": "headerTagName",
48169
+ "type": {
48170
+ "text": "TagName"
48171
+ },
48172
+ "description": "The html tag to be used for the header text",
48173
+ "default": "'h2'",
48174
+ "attribute": "header-tag-name",
48175
+ "reflects": true
48176
+ },
48177
+ {
48178
+ "kind": "field",
48179
+ "name": "ariaLabel",
48180
+ "type": {
48181
+ "text": "string | null"
48182
+ },
48183
+ "default": "null",
48184
+ "description": "Defines aria-label attribute when header is not used",
48185
+ "attribute": "aria-label",
48186
+ "reflects": true
48187
+ },
48188
+ {
48189
+ "kind": "field",
48190
+ "name": "showMoreText",
48191
+ "type": {
48192
+ "text": "string | undefined"
48193
+ },
48194
+ "description": "Defines the text shown on the linkbutton when detailed content is hidden.",
48195
+ "attribute": "show-more-text",
48196
+ "reflects": true
48197
+ },
48198
+ {
48199
+ "kind": "field",
48200
+ "name": "showLessText",
48201
+ "type": {
48202
+ "text": "string | undefined"
48203
+ },
48204
+ "description": "Defines the text shown on the linkbutton when detailed content is visible.",
48205
+ "attribute": "show-less-text",
48206
+ "reflects": true
48207
+ },
48208
+ {
48209
+ "kind": "field",
48210
+ "name": "isDetailVisible",
48211
+ "type": {
48212
+ "text": "boolean"
48213
+ },
48214
+ "privacy": "private",
48215
+ "default": "false"
48216
+ },
48217
+ {
48218
+ "kind": "field",
48219
+ "name": "hasDetailedSlot",
48220
+ "type": {
48221
+ "text": "boolean"
48222
+ },
48223
+ "privacy": "private",
48224
+ "default": "false"
48225
+ },
48226
+ {
48227
+ "kind": "field",
48228
+ "name": "detailedElements",
48229
+ "type": {
48230
+ "text": "HTMLElement[]"
48231
+ },
48232
+ "privacy": "private"
48233
+ },
48234
+ {
48235
+ "kind": "field",
48236
+ "name": "hasFooterButtons",
48237
+ "type": {
48238
+ "text": "string"
48239
+ },
48240
+ "privacy": "private",
48241
+ "default": "''"
48242
+ },
48243
+ {
48244
+ "kind": "method",
48245
+ "name": "closeToast",
48246
+ "privacy": "private",
48247
+ "description": "Fired when Close Button is clicked using mouse or keyboard.\nThis method dispatches the close event.\nIt is used to notify that the toast should be closed."
48248
+ },
48249
+ {
48250
+ "kind": "method",
48251
+ "name": "toggleDetailVisibility",
48252
+ "privacy": "private"
48253
+ },
48254
+ {
48255
+ "kind": "method",
48256
+ "name": "updateDetailedSlotPresence",
48257
+ "privacy": "private"
48258
+ },
48259
+ {
48260
+ "kind": "method",
48261
+ "name": "updateFooterButtonsPresence",
48262
+ "privacy": "private"
48263
+ },
48264
+ {
48265
+ "kind": "method",
48266
+ "name": "renderIcon",
48267
+ "privacy": "protected",
48268
+ "parameters": [
48269
+ {
48270
+ "name": "iconName",
48271
+ "type": {
48272
+ "text": "string"
48273
+ }
48274
+ }
48275
+ ]
48276
+ },
48277
+ {
48278
+ "kind": "method",
48279
+ "name": "shouldRenderToggleButton",
48280
+ "privacy": "private"
48281
+ },
48282
+ {
48283
+ "kind": "method",
48284
+ "name": "renderToggleDetailButton",
48285
+ "privacy": "private"
48286
+ },
48287
+ {
48288
+ "kind": "method",
48289
+ "name": "renderHeader",
48290
+ "privacy": "protected"
48291
+ },
48292
+ {
48293
+ "kind": "method",
48294
+ "name": "handleFooterSlot",
48295
+ "privacy": "protected",
48296
+ "return": {
48297
+ "type": {
48298
+ "text": "void"
48299
+ }
48300
+ },
48301
+ "parameters": [
48302
+ {
48303
+ "name": "tagname",
48304
+ "type": {
48305
+ "text": "string"
48306
+ }
48307
+ },
48308
+ {
48309
+ "name": "variant",
48310
+ "optional": true,
48311
+ "type": {
48312
+ "text": "string | undefined"
48313
+ }
48314
+ }
48315
+ ]
48316
+ },
48317
+ {
48318
+ "kind": "method",
48319
+ "name": "renderFooter",
48320
+ "privacy": "protected",
48321
+ "description": "Renders the footer of the card if footer-link,\nfooter-button-primary, or footer-button-secondary slots are provided",
48322
+ "return": {
48323
+ "type": {
48324
+ "text": ""
48325
+ }
48326
+ },
48327
+ "inheritedFrom": {
48328
+ "name": "FooterMixin",
48329
+ "module": "utils/mixins/FooterMixin.js"
48330
+ }
48331
+ }
48332
+ ],
48333
+ "events": [
48334
+ {
48335
+ "description": "(React: onClose) Dispatched when the Close Button is clicked using mouse or keyboard.",
48336
+ "name": "close",
48337
+ "reactName": "onClose"
48338
+ }
48339
+ ],
48340
+ "attributes": [
48341
+ {
48342
+ "name": "variant",
48343
+ "type": {
48344
+ "text": "ToastVariant"
48345
+ },
48346
+ "description": "Type of toast\n- Can be `custom`, `success`, `warning` or `error`.\n\nNote: When using the `custom` variant, provide your own icon via the `content-prefix` slot; otherwise, no icon will be shown.",
48347
+ "default": "'custom'",
48348
+ "fieldName": "variant"
48349
+ },
48350
+ {
48351
+ "name": "close-button-aria-label",
48352
+ "type": {
48353
+ "text": "string | undefined"
48354
+ },
48355
+ "description": "Defines aria-label attribute for close button accessibility",
48356
+ "fieldName": "closeButtonAriaLabel"
48357
+ },
48358
+ {
48359
+ "name": "header-text",
48360
+ "type": {
48361
+ "text": "string | undefined"
48362
+ },
48363
+ "description": "Defines a string value to display as the title of the toast",
48364
+ "fieldName": "headerText"
48365
+ },
48366
+ {
48367
+ "name": "header-tag-name",
48368
+ "type": {
48369
+ "text": "TagName"
48370
+ },
48371
+ "description": "The html tag to be used for the header text",
48372
+ "default": "'h2'",
48373
+ "fieldName": "headerTagName"
48374
+ },
48375
+ {
48376
+ "name": "aria-label",
48377
+ "type": {
48378
+ "text": "string | null"
48379
+ },
48380
+ "default": "null",
48381
+ "description": "Defines aria-label attribute when header is not used",
48382
+ "fieldName": "ariaLabel"
48383
+ },
48384
+ {
48385
+ "name": "show-more-text",
48386
+ "type": {
48387
+ "text": "string | undefined"
48388
+ },
48389
+ "description": "Defines the text shown on the linkbutton when detailed content is hidden.",
48390
+ "fieldName": "showMoreText"
48391
+ },
48392
+ {
48393
+ "name": "show-less-text",
48394
+ "type": {
48395
+ "text": "string | undefined"
48396
+ },
48397
+ "description": "Defines the text shown on the linkbutton when detailed content is visible.",
48398
+ "fieldName": "showLessText"
48399
+ }
48400
+ ],
48401
+ "mixins": [
48402
+ {
48403
+ "name": "FooterMixin",
48404
+ "module": "/src/utils/mixins/FooterMixin"
48405
+ }
48406
+ ],
48407
+ "superclass": {
48408
+ "name": "Component",
48409
+ "module": "/src/models"
48410
+ },
48411
+ "tagName": "mdc-toast",
48412
+ "jsDoc": "/**\n * `mdc-toast` is a lightweight, non-blocking alert used to inform users about application processes.\n * It supports success, warning, error, and custom messages, and is designed to be controlled externally.\n *\n * **Note**: When using `slot=\"toast-body-normal\"` and `slot=\"toast-body-detailed\"`, it's strongly recommended to wrap the content with `<mdc-text tagname=\"span\">`.\n * If not used, ensure your custom content is styled appropriately to match the design and alignment expectations of the toast component.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-button\n *\n * @slot content-prefix - Slot for custom content before the icon (only for custom variant).\n * @slot toast-body-normal - Slot for the main body content of the toast.\n * @slot toast-body-detailed - Slot for additional detailed content, shown when expanded.\n * @slot footer - Slot for custom footer content. Prefer using footer-button-primary and footer-button-secondary slots.\n * @slot footer-button-primary - Slot for passing the primary variant of `mdc-button` in the footer.\n * @slot footer-button-secondary - Slot for passing the secondary variant of `mdc-button` in the footer.\n *\n * @tagname mdc-toast\n *\n * @event close - (React: onClose) Dispatched when the Close Button is clicked using mouse or keyboard.\n *\n * @csspart content-container - The container for the toast's main content, including icon, text, and close button.\n * @csspart toast-prefix-icon - The icon shown at the start of the toast, styled by variant.\n * @csspart toast-content - The container for the header and body content of the toast.\n * @csspart toast-header - The header text of the toast.\n * @csspart footer - The container for the toast's footer, including toggle and action buttons.\n * @csspart footer-button-toggle - The toggle button for showing/hiding detailed content.\n * @csspart toast-close-btn - The close button for the toast.\n * @csspart has-footer-buttons - Applied to the footer when it contains buttons or a toggle button.\n *\n * @cssproperty --mdc-toast-background-color - Background color of the toast.\n * @cssproperty --mdc-toast-border-color - Border color of the toast.\n * @cssproperty --mdc-toast-header-text-color - Color of the header text in the toast.\n * @cssproperty --mdc-toast-icon-color - Color of the icon in the toast.\n * @cssproperty --mdc-toast-elevation-3 - Elevation effect applied to the toast.\n * @cssproperty --mdc-toast-width - Width of the toast.\n * @cssproperty --mdc-toast-padding - Padding inside the toast.\n */",
48413
+ "customElement": true
48414
+ }
48415
+ ],
48416
+ "exports": [
48417
+ {
48418
+ "kind": "js",
48419
+ "name": "default",
48420
+ "declaration": {
48421
+ "name": "Toast",
48422
+ "module": "components/toast/toast.component.js"
48423
+ }
48424
+ }
48425
+ ]
48426
+ },
48037
48427
  {
48038
48428
  "kind": "javascript-module",
48039
48429
  "path": "components/toggle/toggle.component.js",
@@ -48982,396 +49372,6 @@
48982
49372
  }
48983
49373
  ]
48984
49374
  },
48985
- {
48986
- "kind": "javascript-module",
48987
- "path": "components/toast/toast.component.js",
48988
- "declarations": [
48989
- {
48990
- "kind": "class",
48991
- "description": "`mdc-toast` is a lightweight, non-blocking alert used to inform users about application processes.\nIt supports success, warning, error, and custom messages, and is designed to be controlled externally.\n\n**Note**: When using `slot=\"toast-body-normal\"` and `slot=\"toast-body-detailed\"`, it's strongly recommended to wrap the content with `<mdc-text tagname=\"span\">`.\nIf not used, ensure your custom content is styled appropriately to match the design and alignment expectations of the toast component.",
48992
- "name": "Toast",
48993
- "cssProperties": [
48994
- {
48995
- "description": "Background color of the toast.",
48996
- "name": "--mdc-toast-background-color"
48997
- },
48998
- {
48999
- "description": "Border color of the toast.",
49000
- "name": "--mdc-toast-border-color"
49001
- },
49002
- {
49003
- "description": "Color of the header text in the toast.",
49004
- "name": "--mdc-toast-header-text-color"
49005
- },
49006
- {
49007
- "description": "Color of the icon in the toast.",
49008
- "name": "--mdc-toast-icon-color"
49009
- },
49010
- {
49011
- "description": "Elevation effect applied to the toast.",
49012
- "name": "--mdc-toast-elevation-3"
49013
- },
49014
- {
49015
- "description": "Width of the toast.",
49016
- "name": "--mdc-toast-width"
49017
- },
49018
- {
49019
- "description": "Padding inside the toast.",
49020
- "name": "--mdc-toast-padding"
49021
- }
49022
- ],
49023
- "cssParts": [
49024
- {
49025
- "description": "The container for the toast's main content, including icon, text, and close button.",
49026
- "name": "content-container"
49027
- },
49028
- {
49029
- "description": "The icon shown at the start of the toast, styled by variant.",
49030
- "name": "toast-prefix-icon"
49031
- },
49032
- {
49033
- "description": "The container for the header and body content of the toast.",
49034
- "name": "toast-content"
49035
- },
49036
- {
49037
- "description": "The header text of the toast.",
49038
- "name": "toast-header"
49039
- },
49040
- {
49041
- "description": "The container for the toast's footer, including toggle and action buttons.",
49042
- "name": "footer"
49043
- },
49044
- {
49045
- "description": "The toggle button for showing/hiding detailed content.",
49046
- "name": "footer-button-toggle"
49047
- },
49048
- {
49049
- "description": "The close button for the toast.",
49050
- "name": "toast-close-btn"
49051
- },
49052
- {
49053
- "description": "Applied to the footer when it contains buttons or a toggle button.",
49054
- "name": "has-footer-buttons"
49055
- }
49056
- ],
49057
- "slots": [
49058
- {
49059
- "description": "Slot for custom content before the icon (only for custom variant).",
49060
- "name": "content-prefix"
49061
- },
49062
- {
49063
- "description": "Slot for the main body content of the toast.",
49064
- "name": "toast-body-normal"
49065
- },
49066
- {
49067
- "description": "Slot for additional detailed content, shown when expanded.",
49068
- "name": "toast-body-detailed"
49069
- },
49070
- {
49071
- "description": "Slot for custom footer content. Prefer using footer-button-primary and footer-button-secondary slots.",
49072
- "name": "footer"
49073
- },
49074
- {
49075
- "description": "Slot for passing the primary variant of `mdc-button` in the footer.",
49076
- "name": "footer-button-primary"
49077
- },
49078
- {
49079
- "description": "Slot for passing the secondary variant of `mdc-button` in the footer.",
49080
- "name": "footer-button-secondary"
49081
- }
49082
- ],
49083
- "members": [
49084
- {
49085
- "kind": "field",
49086
- "name": "variant",
49087
- "type": {
49088
- "text": "ToastVariant"
49089
- },
49090
- "description": "Type of toast\n- Can be `custom`, `success`, `warning` or `error`.\n\nNote: When using the `custom` variant, provide your own icon via the `content-prefix` slot; otherwise, no icon will be shown.",
49091
- "default": "'custom'",
49092
- "attribute": "variant",
49093
- "reflects": true
49094
- },
49095
- {
49096
- "kind": "field",
49097
- "name": "closeButtonAriaLabel",
49098
- "type": {
49099
- "text": "string | undefined"
49100
- },
49101
- "description": "Defines aria-label attribute for close button accessibility",
49102
- "attribute": "close-button-aria-label"
49103
- },
49104
- {
49105
- "kind": "field",
49106
- "name": "headerText",
49107
- "type": {
49108
- "text": "string | undefined"
49109
- },
49110
- "description": "Defines a string value to display as the title of the toast",
49111
- "attribute": "header-text",
49112
- "reflects": true
49113
- },
49114
- {
49115
- "kind": "field",
49116
- "name": "headerTagName",
49117
- "type": {
49118
- "text": "TagName"
49119
- },
49120
- "description": "The html tag to be used for the header text",
49121
- "default": "'h2'",
49122
- "attribute": "header-tag-name",
49123
- "reflects": true
49124
- },
49125
- {
49126
- "kind": "field",
49127
- "name": "ariaLabel",
49128
- "type": {
49129
- "text": "string | null"
49130
- },
49131
- "default": "null",
49132
- "description": "Defines aria-label attribute when header is not used",
49133
- "attribute": "aria-label",
49134
- "reflects": true
49135
- },
49136
- {
49137
- "kind": "field",
49138
- "name": "showMoreText",
49139
- "type": {
49140
- "text": "string | undefined"
49141
- },
49142
- "description": "Defines the text shown on the linkbutton when detailed content is hidden.",
49143
- "attribute": "show-more-text",
49144
- "reflects": true
49145
- },
49146
- {
49147
- "kind": "field",
49148
- "name": "showLessText",
49149
- "type": {
49150
- "text": "string | undefined"
49151
- },
49152
- "description": "Defines the text shown on the linkbutton when detailed content is visible.",
49153
- "attribute": "show-less-text",
49154
- "reflects": true
49155
- },
49156
- {
49157
- "kind": "field",
49158
- "name": "isDetailVisible",
49159
- "type": {
49160
- "text": "boolean"
49161
- },
49162
- "privacy": "private",
49163
- "default": "false"
49164
- },
49165
- {
49166
- "kind": "field",
49167
- "name": "hasDetailedSlot",
49168
- "type": {
49169
- "text": "boolean"
49170
- },
49171
- "privacy": "private",
49172
- "default": "false"
49173
- },
49174
- {
49175
- "kind": "field",
49176
- "name": "detailedElements",
49177
- "type": {
49178
- "text": "HTMLElement[]"
49179
- },
49180
- "privacy": "private"
49181
- },
49182
- {
49183
- "kind": "field",
49184
- "name": "hasFooterButtons",
49185
- "type": {
49186
- "text": "string"
49187
- },
49188
- "privacy": "private",
49189
- "default": "''"
49190
- },
49191
- {
49192
- "kind": "method",
49193
- "name": "closeToast",
49194
- "privacy": "private",
49195
- "description": "Fired when Close Button is clicked using mouse or keyboard.\nThis method dispatches the close event.\nIt is used to notify that the toast should be closed."
49196
- },
49197
- {
49198
- "kind": "method",
49199
- "name": "toggleDetailVisibility",
49200
- "privacy": "private"
49201
- },
49202
- {
49203
- "kind": "method",
49204
- "name": "updateDetailedSlotPresence",
49205
- "privacy": "private"
49206
- },
49207
- {
49208
- "kind": "method",
49209
- "name": "updateFooterButtonsPresence",
49210
- "privacy": "private"
49211
- },
49212
- {
49213
- "kind": "method",
49214
- "name": "renderIcon",
49215
- "privacy": "protected",
49216
- "parameters": [
49217
- {
49218
- "name": "iconName",
49219
- "type": {
49220
- "text": "string"
49221
- }
49222
- }
49223
- ]
49224
- },
49225
- {
49226
- "kind": "method",
49227
- "name": "shouldRenderToggleButton",
49228
- "privacy": "private"
49229
- },
49230
- {
49231
- "kind": "method",
49232
- "name": "renderToggleDetailButton",
49233
- "privacy": "private"
49234
- },
49235
- {
49236
- "kind": "method",
49237
- "name": "renderHeader",
49238
- "privacy": "protected"
49239
- },
49240
- {
49241
- "kind": "method",
49242
- "name": "handleFooterSlot",
49243
- "privacy": "protected",
49244
- "return": {
49245
- "type": {
49246
- "text": "void"
49247
- }
49248
- },
49249
- "parameters": [
49250
- {
49251
- "name": "tagname",
49252
- "type": {
49253
- "text": "string"
49254
- }
49255
- },
49256
- {
49257
- "name": "variant",
49258
- "optional": true,
49259
- "type": {
49260
- "text": "string | undefined"
49261
- }
49262
- }
49263
- ]
49264
- },
49265
- {
49266
- "kind": "method",
49267
- "name": "renderFooter",
49268
- "privacy": "protected",
49269
- "description": "Renders the footer of the card if footer-link,\nfooter-button-primary, or footer-button-secondary slots are provided",
49270
- "return": {
49271
- "type": {
49272
- "text": ""
49273
- }
49274
- },
49275
- "inheritedFrom": {
49276
- "name": "FooterMixin",
49277
- "module": "utils/mixins/FooterMixin.js"
49278
- }
49279
- }
49280
- ],
49281
- "events": [
49282
- {
49283
- "description": "(React: onClose) Dispatched when the Close Button is clicked using mouse or keyboard.",
49284
- "name": "close",
49285
- "reactName": "onClose"
49286
- }
49287
- ],
49288
- "attributes": [
49289
- {
49290
- "name": "variant",
49291
- "type": {
49292
- "text": "ToastVariant"
49293
- },
49294
- "description": "Type of toast\n- Can be `custom`, `success`, `warning` or `error`.\n\nNote: When using the `custom` variant, provide your own icon via the `content-prefix` slot; otherwise, no icon will be shown.",
49295
- "default": "'custom'",
49296
- "fieldName": "variant"
49297
- },
49298
- {
49299
- "name": "close-button-aria-label",
49300
- "type": {
49301
- "text": "string | undefined"
49302
- },
49303
- "description": "Defines aria-label attribute for close button accessibility",
49304
- "fieldName": "closeButtonAriaLabel"
49305
- },
49306
- {
49307
- "name": "header-text",
49308
- "type": {
49309
- "text": "string | undefined"
49310
- },
49311
- "description": "Defines a string value to display as the title of the toast",
49312
- "fieldName": "headerText"
49313
- },
49314
- {
49315
- "name": "header-tag-name",
49316
- "type": {
49317
- "text": "TagName"
49318
- },
49319
- "description": "The html tag to be used for the header text",
49320
- "default": "'h2'",
49321
- "fieldName": "headerTagName"
49322
- },
49323
- {
49324
- "name": "aria-label",
49325
- "type": {
49326
- "text": "string | null"
49327
- },
49328
- "default": "null",
49329
- "description": "Defines aria-label attribute when header is not used",
49330
- "fieldName": "ariaLabel"
49331
- },
49332
- {
49333
- "name": "show-more-text",
49334
- "type": {
49335
- "text": "string | undefined"
49336
- },
49337
- "description": "Defines the text shown on the linkbutton when detailed content is hidden.",
49338
- "fieldName": "showMoreText"
49339
- },
49340
- {
49341
- "name": "show-less-text",
49342
- "type": {
49343
- "text": "string | undefined"
49344
- },
49345
- "description": "Defines the text shown on the linkbutton when detailed content is visible.",
49346
- "fieldName": "showLessText"
49347
- }
49348
- ],
49349
- "mixins": [
49350
- {
49351
- "name": "FooterMixin",
49352
- "module": "/src/utils/mixins/FooterMixin"
49353
- }
49354
- ],
49355
- "superclass": {
49356
- "name": "Component",
49357
- "module": "/src/models"
49358
- },
49359
- "tagName": "mdc-toast",
49360
- "jsDoc": "/**\n * `mdc-toast` is a lightweight, non-blocking alert used to inform users about application processes.\n * It supports success, warning, error, and custom messages, and is designed to be controlled externally.\n *\n * **Note**: When using `slot=\"toast-body-normal\"` and `slot=\"toast-body-detailed\"`, it's strongly recommended to wrap the content with `<mdc-text tagname=\"span\">`.\n * If not used, ensure your custom content is styled appropriately to match the design and alignment expectations of the toast component.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-button\n *\n * @slot content-prefix - Slot for custom content before the icon (only for custom variant).\n * @slot toast-body-normal - Slot for the main body content of the toast.\n * @slot toast-body-detailed - Slot for additional detailed content, shown when expanded.\n * @slot footer - Slot for custom footer content. Prefer using footer-button-primary and footer-button-secondary slots.\n * @slot footer-button-primary - Slot for passing the primary variant of `mdc-button` in the footer.\n * @slot footer-button-secondary - Slot for passing the secondary variant of `mdc-button` in the footer.\n *\n * @tagname mdc-toast\n *\n * @event close - (React: onClose) Dispatched when the Close Button is clicked using mouse or keyboard.\n *\n * @csspart content-container - The container for the toast's main content, including icon, text, and close button.\n * @csspart toast-prefix-icon - The icon shown at the start of the toast, styled by variant.\n * @csspart toast-content - The container for the header and body content of the toast.\n * @csspart toast-header - The header text of the toast.\n * @csspart footer - The container for the toast's footer, including toggle and action buttons.\n * @csspart footer-button-toggle - The toggle button for showing/hiding detailed content.\n * @csspart toast-close-btn - The close button for the toast.\n * @csspart has-footer-buttons - Applied to the footer when it contains buttons or a toggle button.\n *\n * @cssproperty --mdc-toast-background-color - Background color of the toast.\n * @cssproperty --mdc-toast-border-color - Border color of the toast.\n * @cssproperty --mdc-toast-header-text-color - Color of the header text in the toast.\n * @cssproperty --mdc-toast-icon-color - Color of the icon in the toast.\n * @cssproperty --mdc-toast-elevation-3 - Elevation effect applied to the toast.\n * @cssproperty --mdc-toast-width - Width of the toast.\n * @cssproperty --mdc-toast-padding - Padding inside the toast.\n */",
49361
- "customElement": true
49362
- }
49363
- ],
49364
- "exports": [
49365
- {
49366
- "kind": "js",
49367
- "name": "default",
49368
- "declaration": {
49369
- "name": "Toast",
49370
- "module": "components/toast/toast.component.js"
49371
- }
49372
- }
49373
- ]
49374
- },
49375
49375
  {
49376
49376
  "kind": "javascript-module",
49377
49377
  "path": "components/toggletip/toggletip.component.js",