@momentum-design/components 0.106.1 → 0.106.2

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.
@@ -4871,6 +4871,428 @@
4871
4871
  }
4872
4872
  ]
4873
4873
  },
4874
+ {
4875
+ "kind": "javascript-module",
4876
+ "path": "components/buttonsimple/buttonsimple.component.js",
4877
+ "declarations": [
4878
+ {
4879
+ "kind": "class",
4880
+ "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.",
4881
+ "name": "Buttonsimple",
4882
+ "members": [
4883
+ {
4884
+ "kind": "field",
4885
+ "name": "active",
4886
+ "type": {
4887
+ "text": "boolean | undefined"
4888
+ },
4889
+ "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.",
4890
+ "default": "undefined",
4891
+ "attribute": "active",
4892
+ "reflects": true
4893
+ },
4894
+ {
4895
+ "kind": "field",
4896
+ "name": "softDisabled",
4897
+ "type": {
4898
+ "text": "boolean | undefined"
4899
+ },
4900
+ "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.",
4901
+ "default": "undefined",
4902
+ "attribute": "soft-disabled",
4903
+ "reflects": true
4904
+ },
4905
+ {
4906
+ "kind": "field",
4907
+ "name": "size",
4908
+ "type": {
4909
+ "text": "ButtonSize"
4910
+ },
4911
+ "description": "Simplebutton size is a super set of all the sizes supported by children components.",
4912
+ "default": "32",
4913
+ "attribute": "size",
4914
+ "reflects": true
4915
+ },
4916
+ {
4917
+ "kind": "field",
4918
+ "name": "role",
4919
+ "type": {
4920
+ "text": "RoleType"
4921
+ },
4922
+ "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.",
4923
+ "default": "button",
4924
+ "attribute": "role",
4925
+ "reflects": true
4926
+ },
4927
+ {
4928
+ "kind": "field",
4929
+ "name": "ariaStateKey",
4930
+ "type": {
4931
+ "text": "string | undefined"
4932
+ },
4933
+ "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`",
4934
+ "default": "'aria-pressed' (when)",
4935
+ "attribute": "ariaStateKey",
4936
+ "reflects": true
4937
+ },
4938
+ {
4939
+ "kind": "field",
4940
+ "name": "type",
4941
+ "type": {
4942
+ "text": "ButtonType"
4943
+ },
4944
+ "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.",
4945
+ "default": "button",
4946
+ "attribute": "type",
4947
+ "reflects": true
4948
+ },
4949
+ {
4950
+ "kind": "field",
4951
+ "name": "name",
4952
+ "type": {
4953
+ "text": "string | undefined"
4954
+ },
4955
+ "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.",
4956
+ "attribute": "name",
4957
+ "reflects": true
4958
+ },
4959
+ {
4960
+ "kind": "field",
4961
+ "name": "value",
4962
+ "type": {
4963
+ "text": "string | undefined"
4964
+ },
4965
+ "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.",
4966
+ "attribute": "value",
4967
+ "reflects": true
4968
+ },
4969
+ {
4970
+ "kind": "method",
4971
+ "name": "executeAction",
4972
+ "privacy": "protected"
4973
+ },
4974
+ {
4975
+ "kind": "method",
4976
+ "name": "setActive",
4977
+ "privacy": "protected",
4978
+ "parameters": [
4979
+ {
4980
+ "name": "element",
4981
+ "type": {
4982
+ "text": "HTMLElement"
4983
+ },
4984
+ "description": "The button element"
4985
+ },
4986
+ {
4987
+ "name": "active",
4988
+ "optional": true,
4989
+ "type": {
4990
+ "text": "boolean"
4991
+ },
4992
+ "description": "The active state of the element"
4993
+ }
4994
+ ],
4995
+ "description": "Sets the ariaStateKey attributes based on the active state of the button."
4996
+ },
4997
+ {
4998
+ "kind": "method",
4999
+ "name": "setSoftDisabled",
5000
+ "privacy": "private",
5001
+ "parameters": [
5002
+ {
5003
+ "name": "element",
5004
+ "type": {
5005
+ "text": "HTMLElement"
5006
+ },
5007
+ "description": "The button element."
5008
+ },
5009
+ {
5010
+ "name": "softDisabled",
5011
+ "optional": true,
5012
+ "type": {
5013
+ "text": "boolean"
5014
+ },
5015
+ "description": "The soft-disabled state."
5016
+ }
5017
+ ],
5018
+ "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."
5019
+ },
5020
+ {
5021
+ "kind": "method",
5022
+ "name": "setDisabled",
5023
+ "privacy": "private",
5024
+ "parameters": [
5025
+ {
5026
+ "name": "element",
5027
+ "type": {
5028
+ "text": "HTMLElement"
5029
+ },
5030
+ "description": "The button element."
5031
+ },
5032
+ {
5033
+ "name": "disabled",
5034
+ "type": {
5035
+ "text": "boolean"
5036
+ },
5037
+ "description": "The disabled state."
5038
+ }
5039
+ ],
5040
+ "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."
5041
+ },
5042
+ {
5043
+ "kind": "method",
5044
+ "name": "triggerClickEvent",
5045
+ "privacy": "private"
5046
+ },
5047
+ {
5048
+ "kind": "method",
5049
+ "name": "handleBlur",
5050
+ "privacy": "private",
5051
+ "description": "In case the button is pressed and the focus is lost while pressing,\nthe pressed class is removed."
5052
+ },
5053
+ {
5054
+ "kind": "method",
5055
+ "name": "handleKeyDown",
5056
+ "privacy": "private",
5057
+ "parameters": [
5058
+ {
5059
+ "name": "event",
5060
+ "type": {
5061
+ "text": "KeyboardEvent"
5062
+ },
5063
+ "description": "The keyboard event."
5064
+ }
5065
+ ],
5066
+ "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."
5067
+ },
5068
+ {
5069
+ "kind": "method",
5070
+ "name": "handleKeyUp",
5071
+ "privacy": "private",
5072
+ "parameters": [
5073
+ {
5074
+ "name": "event",
5075
+ "type": {
5076
+ "text": "KeyboardEvent"
5077
+ },
5078
+ "description": "The keyboard event."
5079
+ }
5080
+ ],
5081
+ "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."
5082
+ },
5083
+ {
5084
+ "kind": "field",
5085
+ "name": "autoFocusOnMount",
5086
+ "type": {
5087
+ "text": "boolean"
5088
+ },
5089
+ "default": "false",
5090
+ "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.",
5091
+ "attribute": "auto-focus-on-mount",
5092
+ "reflects": true,
5093
+ "inheritedFrom": {
5094
+ "name": "AutoFocusOnMountMixin",
5095
+ "module": "utils/mixins/AutoFocusOnMountMixin.js"
5096
+ }
5097
+ },
5098
+ {
5099
+ "kind": "field",
5100
+ "name": "tabIndex",
5101
+ "type": {
5102
+ "text": "number"
5103
+ },
5104
+ "default": "0",
5105
+ "description": "This property specifies the tab order of the element.",
5106
+ "attribute": "tabIndex",
5107
+ "reflects": true,
5108
+ "inheritedFrom": {
5109
+ "name": "TabIndexMixin",
5110
+ "module": "utils/mixins/TabIndexMixin.js"
5111
+ }
5112
+ },
5113
+ {
5114
+ "kind": "field",
5115
+ "name": "disabled",
5116
+ "type": {
5117
+ "text": "boolean | undefined"
5118
+ },
5119
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
5120
+ "default": "undefined",
5121
+ "attribute": "disabled",
5122
+ "reflects": true,
5123
+ "inheritedFrom": {
5124
+ "name": "DisabledMixin",
5125
+ "module": "utils/mixins/DisabledMixin.js"
5126
+ }
5127
+ }
5128
+ ],
5129
+ "events": [
5130
+ {
5131
+ "description": "(React: onClick) This event is dispatched when the button is clicked.",
5132
+ "name": "click",
5133
+ "reactName": "onClick"
5134
+ },
5135
+ {
5136
+ "description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the button.",
5137
+ "name": "keydown",
5138
+ "reactName": "onKeyDown"
5139
+ },
5140
+ {
5141
+ "description": "(React: onKeyUp) This event is dispatched when a key is released on the button.",
5142
+ "name": "keyup",
5143
+ "reactName": "onKeyUp"
5144
+ },
5145
+ {
5146
+ "description": "(React: onFocus) This event is dispatched when the button receives focus.",
5147
+ "name": "focus",
5148
+ "reactName": "onFocus"
5149
+ }
5150
+ ],
5151
+ "attributes": [
5152
+ {
5153
+ "name": "active",
5154
+ "type": {
5155
+ "text": "boolean | undefined"
5156
+ },
5157
+ "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.",
5158
+ "default": "undefined",
5159
+ "fieldName": "active"
5160
+ },
5161
+ {
5162
+ "name": "soft-disabled",
5163
+ "type": {
5164
+ "text": "boolean | undefined"
5165
+ },
5166
+ "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.",
5167
+ "default": "undefined",
5168
+ "fieldName": "softDisabled"
5169
+ },
5170
+ {
5171
+ "name": "size",
5172
+ "type": {
5173
+ "text": "ButtonSize"
5174
+ },
5175
+ "description": "Simplebutton size is a super set of all the sizes supported by children components.",
5176
+ "default": "32",
5177
+ "fieldName": "size"
5178
+ },
5179
+ {
5180
+ "name": "role",
5181
+ "type": {
5182
+ "text": "RoleType"
5183
+ },
5184
+ "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.",
5185
+ "default": "button",
5186
+ "fieldName": "role"
5187
+ },
5188
+ {
5189
+ "name": "ariaStateKey",
5190
+ "type": {
5191
+ "text": "string | undefined"
5192
+ },
5193
+ "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`",
5194
+ "default": "'aria-pressed' (when)",
5195
+ "fieldName": "ariaStateKey"
5196
+ },
5197
+ {
5198
+ "name": "type",
5199
+ "type": {
5200
+ "text": "ButtonType"
5201
+ },
5202
+ "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.",
5203
+ "default": "button",
5204
+ "fieldName": "type"
5205
+ },
5206
+ {
5207
+ "name": "name",
5208
+ "type": {
5209
+ "text": "string | undefined"
5210
+ },
5211
+ "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.",
5212
+ "fieldName": "name"
5213
+ },
5214
+ {
5215
+ "name": "value",
5216
+ "type": {
5217
+ "text": "string | undefined"
5218
+ },
5219
+ "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.",
5220
+ "fieldName": "value"
5221
+ },
5222
+ {
5223
+ "name": "auto-focus-on-mount",
5224
+ "type": {
5225
+ "text": "boolean"
5226
+ },
5227
+ "default": "false",
5228
+ "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.",
5229
+ "fieldName": "autoFocusOnMount",
5230
+ "inheritedFrom": {
5231
+ "name": "AutoFocusOnMountMixin",
5232
+ "module": "src/utils/mixins/AutoFocusOnMountMixin.ts"
5233
+ }
5234
+ },
5235
+ {
5236
+ "name": "tabIndex",
5237
+ "type": {
5238
+ "text": "number"
5239
+ },
5240
+ "default": "0",
5241
+ "description": "This property specifies the tab order of the element.",
5242
+ "fieldName": "tabIndex",
5243
+ "inheritedFrom": {
5244
+ "name": "TabIndexMixin",
5245
+ "module": "src/utils/mixins/TabIndexMixin.ts"
5246
+ }
5247
+ },
5248
+ {
5249
+ "name": "disabled",
5250
+ "type": {
5251
+ "text": "boolean | undefined"
5252
+ },
5253
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
5254
+ "default": "undefined",
5255
+ "fieldName": "disabled",
5256
+ "inheritedFrom": {
5257
+ "name": "DisabledMixin",
5258
+ "module": "src/utils/mixins/DisabledMixin.ts"
5259
+ }
5260
+ }
5261
+ ],
5262
+ "mixins": [
5263
+ {
5264
+ "name": "AutoFocusOnMountMixin",
5265
+ "module": "/src/utils/mixins/AutoFocusOnMountMixin"
5266
+ },
5267
+ {
5268
+ "name": "TabIndexMixin",
5269
+ "module": "/src/utils/mixins/TabIndexMixin"
5270
+ },
5271
+ {
5272
+ "name": "DisabledMixin",
5273
+ "module": "/src/utils/mixins/DisabledMixin"
5274
+ }
5275
+ ],
5276
+ "superclass": {
5277
+ "name": "Component",
5278
+ "module": "/src/models"
5279
+ },
5280
+ "tagName": "mdc-buttonsimple",
5281
+ "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 */",
5282
+ "customElement": true
5283
+ }
5284
+ ],
5285
+ "exports": [
5286
+ {
5287
+ "kind": "js",
5288
+ "name": "default",
5289
+ "declaration": {
5290
+ "name": "Buttonsimple",
5291
+ "module": "components/buttonsimple/buttonsimple.component.js"
5292
+ }
5293
+ }
5294
+ ]
5295
+ },
4874
5296
  {
4875
5297
  "kind": "javascript-module",
4876
5298
  "path": "components/card/card.component.js",
@@ -5592,8 +6014,8 @@
5592
6014
  "attribute": "auto-focus-on-mount",
5593
6015
  "reflects": true,
5594
6016
  "inheritedFrom": {
5595
- "name": "AutoFocusOnMountMixin",
5596
- "module": "utils/mixins/AutoFocusOnMountMixin.js"
6017
+ "name": "Buttonsimple",
6018
+ "module": "components/buttonsimple/buttonsimple.component.js"
5597
6019
  }
5598
6020
  },
5599
6021
  {
@@ -5607,8 +6029,8 @@
5607
6029
  "attribute": "tabIndex",
5608
6030
  "reflects": true,
5609
6031
  "inheritedFrom": {
5610
- "name": "TabIndexMixin",
5611
- "module": "utils/mixins/TabIndexMixin.js"
6032
+ "name": "Buttonsimple",
6033
+ "module": "components/buttonsimple/buttonsimple.component.js"
5612
6034
  }
5613
6035
  },
5614
6036
  {
@@ -5622,8 +6044,8 @@
5622
6044
  "attribute": "disabled",
5623
6045
  "reflects": true,
5624
6046
  "inheritedFrom": {
5625
- "name": "DisabledMixin",
5626
- "module": "utils/mixins/DisabledMixin.js"
6047
+ "name": "Buttonsimple",
6048
+ "module": "components/buttonsimple/buttonsimple.component.js"
5627
6049
  }
5628
6050
  },
5629
6051
  {
@@ -6068,8 +6490,8 @@
6068
6490
  "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.",
6069
6491
  "fieldName": "autoFocusOnMount",
6070
6492
  "inheritedFrom": {
6071
- "name": "AutoFocusOnMountMixin",
6072
- "module": "src/utils/mixins/AutoFocusOnMountMixin.ts"
6493
+ "name": "Buttonsimple",
6494
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
6073
6495
  }
6074
6496
  },
6075
6497
  {
@@ -6081,8 +6503,8 @@
6081
6503
  "description": "This property specifies the tab order of the element.",
6082
6504
  "fieldName": "tabIndex",
6083
6505
  "inheritedFrom": {
6084
- "name": "TabIndexMixin",
6085
- "module": "src/utils/mixins/TabIndexMixin.ts"
6506
+ "name": "Buttonsimple",
6507
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
6086
6508
  }
6087
6509
  },
6088
6510
  {
@@ -6094,8 +6516,8 @@
6094
6516
  "default": "undefined",
6095
6517
  "fieldName": "disabled",
6096
6518
  "inheritedFrom": {
6097
- "name": "DisabledMixin",
6098
- "module": "src/utils/mixins/DisabledMixin.ts"
6519
+ "name": "Buttonsimple",
6520
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
6099
6521
  }
6100
6522
  },
6101
6523
  {
@@ -6214,428 +6636,6 @@
6214
6636
  }
6215
6637
  ]
6216
6638
  },
6217
- {
6218
- "kind": "javascript-module",
6219
- "path": "components/buttonsimple/buttonsimple.component.js",
6220
- "declarations": [
6221
- {
6222
- "kind": "class",
6223
- "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.",
6224
- "name": "Buttonsimple",
6225
- "members": [
6226
- {
6227
- "kind": "field",
6228
- "name": "active",
6229
- "type": {
6230
- "text": "boolean | undefined"
6231
- },
6232
- "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.",
6233
- "default": "undefined",
6234
- "attribute": "active",
6235
- "reflects": true
6236
- },
6237
- {
6238
- "kind": "field",
6239
- "name": "softDisabled",
6240
- "type": {
6241
- "text": "boolean | undefined"
6242
- },
6243
- "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.",
6244
- "default": "undefined",
6245
- "attribute": "soft-disabled",
6246
- "reflects": true
6247
- },
6248
- {
6249
- "kind": "field",
6250
- "name": "size",
6251
- "type": {
6252
- "text": "ButtonSize"
6253
- },
6254
- "description": "Simplebutton size is a super set of all the sizes supported by children components.",
6255
- "default": "32",
6256
- "attribute": "size",
6257
- "reflects": true
6258
- },
6259
- {
6260
- "kind": "field",
6261
- "name": "role",
6262
- "type": {
6263
- "text": "RoleType"
6264
- },
6265
- "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.",
6266
- "default": "button",
6267
- "attribute": "role",
6268
- "reflects": true
6269
- },
6270
- {
6271
- "kind": "field",
6272
- "name": "ariaStateKey",
6273
- "type": {
6274
- "text": "string | undefined"
6275
- },
6276
- "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`",
6277
- "default": "'aria-pressed' (when)",
6278
- "attribute": "ariaStateKey",
6279
- "reflects": true
6280
- },
6281
- {
6282
- "kind": "field",
6283
- "name": "type",
6284
- "type": {
6285
- "text": "ButtonType"
6286
- },
6287
- "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.",
6288
- "default": "button",
6289
- "attribute": "type",
6290
- "reflects": true
6291
- },
6292
- {
6293
- "kind": "field",
6294
- "name": "name",
6295
- "type": {
6296
- "text": "string | undefined"
6297
- },
6298
- "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.",
6299
- "attribute": "name",
6300
- "reflects": true
6301
- },
6302
- {
6303
- "kind": "field",
6304
- "name": "value",
6305
- "type": {
6306
- "text": "string | undefined"
6307
- },
6308
- "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.",
6309
- "attribute": "value",
6310
- "reflects": true
6311
- },
6312
- {
6313
- "kind": "method",
6314
- "name": "executeAction",
6315
- "privacy": "protected"
6316
- },
6317
- {
6318
- "kind": "method",
6319
- "name": "setActive",
6320
- "privacy": "protected",
6321
- "parameters": [
6322
- {
6323
- "name": "element",
6324
- "type": {
6325
- "text": "HTMLElement"
6326
- },
6327
- "description": "The button element"
6328
- },
6329
- {
6330
- "name": "active",
6331
- "optional": true,
6332
- "type": {
6333
- "text": "boolean"
6334
- },
6335
- "description": "The active state of the element"
6336
- }
6337
- ],
6338
- "description": "Sets the ariaStateKey attributes based on the active state of the button."
6339
- },
6340
- {
6341
- "kind": "method",
6342
- "name": "setSoftDisabled",
6343
- "privacy": "private",
6344
- "parameters": [
6345
- {
6346
- "name": "element",
6347
- "type": {
6348
- "text": "HTMLElement"
6349
- },
6350
- "description": "The button element."
6351
- },
6352
- {
6353
- "name": "softDisabled",
6354
- "optional": true,
6355
- "type": {
6356
- "text": "boolean"
6357
- },
6358
- "description": "The soft-disabled state."
6359
- }
6360
- ],
6361
- "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."
6362
- },
6363
- {
6364
- "kind": "method",
6365
- "name": "setDisabled",
6366
- "privacy": "private",
6367
- "parameters": [
6368
- {
6369
- "name": "element",
6370
- "type": {
6371
- "text": "HTMLElement"
6372
- },
6373
- "description": "The button element."
6374
- },
6375
- {
6376
- "name": "disabled",
6377
- "type": {
6378
- "text": "boolean"
6379
- },
6380
- "description": "The disabled state."
6381
- }
6382
- ],
6383
- "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."
6384
- },
6385
- {
6386
- "kind": "method",
6387
- "name": "triggerClickEvent",
6388
- "privacy": "private"
6389
- },
6390
- {
6391
- "kind": "method",
6392
- "name": "handleBlur",
6393
- "privacy": "private",
6394
- "description": "In case the button is pressed and the focus is lost while pressing,\nthe pressed class is removed."
6395
- },
6396
- {
6397
- "kind": "method",
6398
- "name": "handleKeyDown",
6399
- "privacy": "private",
6400
- "parameters": [
6401
- {
6402
- "name": "event",
6403
- "type": {
6404
- "text": "KeyboardEvent"
6405
- },
6406
- "description": "The keyboard event."
6407
- }
6408
- ],
6409
- "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."
6410
- },
6411
- {
6412
- "kind": "method",
6413
- "name": "handleKeyUp",
6414
- "privacy": "private",
6415
- "parameters": [
6416
- {
6417
- "name": "event",
6418
- "type": {
6419
- "text": "KeyboardEvent"
6420
- },
6421
- "description": "The keyboard event."
6422
- }
6423
- ],
6424
- "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."
6425
- },
6426
- {
6427
- "kind": "field",
6428
- "name": "autoFocusOnMount",
6429
- "type": {
6430
- "text": "boolean"
6431
- },
6432
- "default": "false",
6433
- "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.",
6434
- "attribute": "auto-focus-on-mount",
6435
- "reflects": true,
6436
- "inheritedFrom": {
6437
- "name": "AutoFocusOnMountMixin",
6438
- "module": "utils/mixins/AutoFocusOnMountMixin.js"
6439
- }
6440
- },
6441
- {
6442
- "kind": "field",
6443
- "name": "tabIndex",
6444
- "type": {
6445
- "text": "number"
6446
- },
6447
- "default": "0",
6448
- "description": "This property specifies the tab order of the element.",
6449
- "attribute": "tabIndex",
6450
- "reflects": true,
6451
- "inheritedFrom": {
6452
- "name": "TabIndexMixin",
6453
- "module": "utils/mixins/TabIndexMixin.js"
6454
- }
6455
- },
6456
- {
6457
- "kind": "field",
6458
- "name": "disabled",
6459
- "type": {
6460
- "text": "boolean | undefined"
6461
- },
6462
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
6463
- "default": "undefined",
6464
- "attribute": "disabled",
6465
- "reflects": true,
6466
- "inheritedFrom": {
6467
- "name": "DisabledMixin",
6468
- "module": "utils/mixins/DisabledMixin.js"
6469
- }
6470
- }
6471
- ],
6472
- "events": [
6473
- {
6474
- "description": "(React: onClick) This event is dispatched when the button is clicked.",
6475
- "name": "click",
6476
- "reactName": "onClick"
6477
- },
6478
- {
6479
- "description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the button.",
6480
- "name": "keydown",
6481
- "reactName": "onKeyDown"
6482
- },
6483
- {
6484
- "description": "(React: onKeyUp) This event is dispatched when a key is released on the button.",
6485
- "name": "keyup",
6486
- "reactName": "onKeyUp"
6487
- },
6488
- {
6489
- "description": "(React: onFocus) This event is dispatched when the button receives focus.",
6490
- "name": "focus",
6491
- "reactName": "onFocus"
6492
- }
6493
- ],
6494
- "attributes": [
6495
- {
6496
- "name": "active",
6497
- "type": {
6498
- "text": "boolean | undefined"
6499
- },
6500
- "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.",
6501
- "default": "undefined",
6502
- "fieldName": "active"
6503
- },
6504
- {
6505
- "name": "soft-disabled",
6506
- "type": {
6507
- "text": "boolean | undefined"
6508
- },
6509
- "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.",
6510
- "default": "undefined",
6511
- "fieldName": "softDisabled"
6512
- },
6513
- {
6514
- "name": "size",
6515
- "type": {
6516
- "text": "ButtonSize"
6517
- },
6518
- "description": "Simplebutton size is a super set of all the sizes supported by children components.",
6519
- "default": "32",
6520
- "fieldName": "size"
6521
- },
6522
- {
6523
- "name": "role",
6524
- "type": {
6525
- "text": "RoleType"
6526
- },
6527
- "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.",
6528
- "default": "button",
6529
- "fieldName": "role"
6530
- },
6531
- {
6532
- "name": "ariaStateKey",
6533
- "type": {
6534
- "text": "string | undefined"
6535
- },
6536
- "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`",
6537
- "default": "'aria-pressed' (when)",
6538
- "fieldName": "ariaStateKey"
6539
- },
6540
- {
6541
- "name": "type",
6542
- "type": {
6543
- "text": "ButtonType"
6544
- },
6545
- "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.",
6546
- "default": "button",
6547
- "fieldName": "type"
6548
- },
6549
- {
6550
- "name": "name",
6551
- "type": {
6552
- "text": "string | undefined"
6553
- },
6554
- "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.",
6555
- "fieldName": "name"
6556
- },
6557
- {
6558
- "name": "value",
6559
- "type": {
6560
- "text": "string | undefined"
6561
- },
6562
- "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.",
6563
- "fieldName": "value"
6564
- },
6565
- {
6566
- "name": "auto-focus-on-mount",
6567
- "type": {
6568
- "text": "boolean"
6569
- },
6570
- "default": "false",
6571
- "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.",
6572
- "fieldName": "autoFocusOnMount",
6573
- "inheritedFrom": {
6574
- "name": "AutoFocusOnMountMixin",
6575
- "module": "src/utils/mixins/AutoFocusOnMountMixin.ts"
6576
- }
6577
- },
6578
- {
6579
- "name": "tabIndex",
6580
- "type": {
6581
- "text": "number"
6582
- },
6583
- "default": "0",
6584
- "description": "This property specifies the tab order of the element.",
6585
- "fieldName": "tabIndex",
6586
- "inheritedFrom": {
6587
- "name": "TabIndexMixin",
6588
- "module": "src/utils/mixins/TabIndexMixin.ts"
6589
- }
6590
- },
6591
- {
6592
- "name": "disabled",
6593
- "type": {
6594
- "text": "boolean | undefined"
6595
- },
6596
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
6597
- "default": "undefined",
6598
- "fieldName": "disabled",
6599
- "inheritedFrom": {
6600
- "name": "DisabledMixin",
6601
- "module": "src/utils/mixins/DisabledMixin.ts"
6602
- }
6603
- }
6604
- ],
6605
- "mixins": [
6606
- {
6607
- "name": "AutoFocusOnMountMixin",
6608
- "module": "/src/utils/mixins/AutoFocusOnMountMixin"
6609
- },
6610
- {
6611
- "name": "TabIndexMixin",
6612
- "module": "/src/utils/mixins/TabIndexMixin"
6613
- },
6614
- {
6615
- "name": "DisabledMixin",
6616
- "module": "/src/utils/mixins/DisabledMixin"
6617
- }
6618
- ],
6619
- "superclass": {
6620
- "name": "Component",
6621
- "module": "/src/models"
6622
- },
6623
- "tagName": "mdc-buttonsimple",
6624
- "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 */",
6625
- "customElement": true
6626
- }
6627
- ],
6628
- "exports": [
6629
- {
6630
- "kind": "js",
6631
- "name": "default",
6632
- "declaration": {
6633
- "name": "Buttonsimple",
6634
- "module": "components/buttonsimple/buttonsimple.component.js"
6635
- }
6636
- }
6637
- ]
6638
- },
6639
6639
  {
6640
6640
  "kind": "javascript-module",
6641
6641
  "path": "components/cardcheckbox/cardcheckbox.component.js",
@@ -30168,6 +30168,390 @@
30168
30168
  }
30169
30169
  ]
30170
30170
  },
30171
+ {
30172
+ "kind": "javascript-module",
30173
+ "path": "components/radiogroup/radiogroup.component.js",
30174
+ "declarations": [
30175
+ {
30176
+ "kind": "class",
30177
+ "description": "`mdc-radiogroup` - This is the wrapper component for radio buttons which are grouped together.\nIt can have a header text and a description. It enables users to select a single option from a set of options.\nIt is often used in forms, settings, and selection in lists. It automatically group the radio buttons inside it.",
30178
+ "name": "RadioGroup",
30179
+ "cssProperties": [
30180
+ {
30181
+ "description": "color of the description text",
30182
+ "name": "--mdc-radiogroup-description-text-normal"
30183
+ }
30184
+ ],
30185
+ "members": [
30186
+ {
30187
+ "kind": "field",
30188
+ "name": "name",
30189
+ "type": {
30190
+ "text": "string"
30191
+ },
30192
+ "default": "''",
30193
+ "description": "Name of the radio group.\nThey are used to group elements in a form together.",
30194
+ "attribute": "name"
30195
+ },
30196
+ {
30197
+ "kind": "field",
30198
+ "name": "dataAriaLabel",
30199
+ "type": {
30200
+ "text": "string | null"
30201
+ },
30202
+ "default": "null",
30203
+ "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
30204
+ "attribute": "data-aria-label",
30205
+ "reflects": true,
30206
+ "inheritedFrom": {
30207
+ "name": "DataAriaLabelMixin",
30208
+ "module": "utils/mixins/DataAriaLabelMixin.js"
30209
+ }
30210
+ },
30211
+ {
30212
+ "kind": "field",
30213
+ "name": "disabled",
30214
+ "type": {
30215
+ "text": "boolean | undefined"
30216
+ },
30217
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
30218
+ "default": "undefined",
30219
+ "attribute": "disabled",
30220
+ "reflects": true,
30221
+ "inheritedFrom": {
30222
+ "name": "FormfieldWrapper",
30223
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
30224
+ }
30225
+ },
30226
+ {
30227
+ "kind": "field",
30228
+ "name": "label",
30229
+ "type": {
30230
+ "text": "string | undefined"
30231
+ },
30232
+ "description": "The label of the input field. It is linked to the input field using the `for` attribute.",
30233
+ "attribute": "label",
30234
+ "reflects": true,
30235
+ "inheritedFrom": {
30236
+ "name": "FormfieldWrapper",
30237
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
30238
+ }
30239
+ },
30240
+ {
30241
+ "kind": "field",
30242
+ "name": "required",
30243
+ "type": {
30244
+ "text": "boolean"
30245
+ },
30246
+ "default": "false",
30247
+ "description": "The required attribute to indicate that the input field is required.\nIt is used to append a required indicator (*) to the label.",
30248
+ "attribute": "required",
30249
+ "reflects": true,
30250
+ "inheritedFrom": {
30251
+ "name": "FormfieldWrapper",
30252
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
30253
+ }
30254
+ },
30255
+ {
30256
+ "kind": "field",
30257
+ "name": "helpTextType",
30258
+ "type": {
30259
+ "text": "ValidationType"
30260
+ },
30261
+ "description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
30262
+ "attribute": "help-text-type",
30263
+ "reflects": true,
30264
+ "inheritedFrom": {
30265
+ "name": "FormfieldWrapper",
30266
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
30267
+ }
30268
+ },
30269
+ {
30270
+ "kind": "field",
30271
+ "name": "helpText",
30272
+ "type": {
30273
+ "text": "string | undefined"
30274
+ },
30275
+ "description": "The help text that is displayed below the input field.",
30276
+ "attribute": "help-text",
30277
+ "reflects": true,
30278
+ "inheritedFrom": {
30279
+ "name": "FormfieldWrapper",
30280
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
30281
+ }
30282
+ },
30283
+ {
30284
+ "kind": "field",
30285
+ "name": "toggletipText",
30286
+ "type": {
30287
+ "text": "string | undefined"
30288
+ },
30289
+ "description": "The toggletip text that is displayed when the label is hovered.\nIt is used to provide additional information about the label.",
30290
+ "attribute": "toggletip-text",
30291
+ "reflects": true,
30292
+ "inheritedFrom": {
30293
+ "name": "FormfieldWrapper",
30294
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
30295
+ }
30296
+ },
30297
+ {
30298
+ "kind": "field",
30299
+ "name": "toggletipPlacement",
30300
+ "type": {
30301
+ "text": "PopoverPlacement"
30302
+ },
30303
+ "description": "The placement of the toggletip that is displayed when the info icon is hovered.",
30304
+ "default": "'top'",
30305
+ "attribute": "toggletip-placement",
30306
+ "reflects": true,
30307
+ "inheritedFrom": {
30308
+ "name": "FormfieldWrapper",
30309
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
30310
+ }
30311
+ },
30312
+ {
30313
+ "kind": "field",
30314
+ "name": "infoIconAriaLabel",
30315
+ "type": {
30316
+ "text": "string | undefined"
30317
+ },
30318
+ "description": "Aria label for the info icon that is displayed next to the label when `toggletipText` is set.\nThis is used for accessibility purposes to provide a description of the icon.",
30319
+ "attribute": "info-icon-aria-label",
30320
+ "reflects": true,
30321
+ "inheritedFrom": {
30322
+ "name": "FormfieldWrapper",
30323
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
30324
+ }
30325
+ },
30326
+ {
30327
+ "kind": "method",
30328
+ "name": "renderLabelElement",
30329
+ "privacy": "protected",
30330
+ "description": "creates the label element when the label property is set.\nid is used to link the label with the input field.",
30331
+ "return": {
30332
+ "type": {
30333
+ "text": ""
30334
+ }
30335
+ },
30336
+ "inheritedFrom": {
30337
+ "name": "FormfieldWrapper",
30338
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
30339
+ }
30340
+ },
30341
+ {
30342
+ "kind": "method",
30343
+ "name": "renderHelpTextIcon",
30344
+ "privacy": "protected",
30345
+ "description": "creates the helpertext icon based on the helpTextType for validation.\nIf the helpTextType is not set, it defaults to 'default' and it doesn't display any icon.",
30346
+ "return": {
30347
+ "type": {
30348
+ "text": ""
30349
+ }
30350
+ },
30351
+ "inheritedFrom": {
30352
+ "name": "FormfieldWrapper",
30353
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
30354
+ }
30355
+ },
30356
+ {
30357
+ "kind": "method",
30358
+ "name": "renderHelpText",
30359
+ "privacy": "protected",
30360
+ "description": "creates the helper text component when the helpertext value is set.\nIt is also used to display the validation message based on the helpTextType.",
30361
+ "return": {
30362
+ "type": {
30363
+ "text": ""
30364
+ }
30365
+ },
30366
+ "inheritedFrom": {
30367
+ "name": "FormfieldWrapper",
30368
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
30369
+ }
30370
+ },
30371
+ {
30372
+ "kind": "method",
30373
+ "name": "renderLabel",
30374
+ "privacy": "protected",
30375
+ "description": "renders the mdc-label-text container that contains the label and labelInfoToggleTip.",
30376
+ "return": {
30377
+ "type": {
30378
+ "text": ""
30379
+ }
30380
+ },
30381
+ "inheritedFrom": {
30382
+ "name": "FormfieldWrapper",
30383
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
30384
+ }
30385
+ },
30386
+ {
30387
+ "kind": "method",
30388
+ "name": "renderHelperText",
30389
+ "privacy": "protected",
30390
+ "description": "renders the mdc-help-text container that contains the helpertext icon and helpertext.",
30391
+ "return": {
30392
+ "type": {
30393
+ "text": ""
30394
+ }
30395
+ },
30396
+ "inheritedFrom": {
30397
+ "name": "FormfieldWrapper",
30398
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
30399
+ }
30400
+ }
30401
+ ],
30402
+ "attributes": [
30403
+ {
30404
+ "name": "name",
30405
+ "type": {
30406
+ "text": "string"
30407
+ },
30408
+ "default": "''",
30409
+ "description": "Name of the radio group.\nThey are used to group elements in a form together.",
30410
+ "fieldName": "name"
30411
+ },
30412
+ {
30413
+ "name": "data-aria-label",
30414
+ "type": {
30415
+ "text": "string | null"
30416
+ },
30417
+ "default": "null",
30418
+ "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
30419
+ "fieldName": "dataAriaLabel",
30420
+ "inheritedFrom": {
30421
+ "name": "DataAriaLabelMixin",
30422
+ "module": "src/utils/mixins/DataAriaLabelMixin.ts"
30423
+ }
30424
+ },
30425
+ {
30426
+ "name": "disabled",
30427
+ "type": {
30428
+ "text": "boolean | undefined"
30429
+ },
30430
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
30431
+ "default": "undefined",
30432
+ "fieldName": "disabled",
30433
+ "inheritedFrom": {
30434
+ "name": "FormfieldWrapper",
30435
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
30436
+ }
30437
+ },
30438
+ {
30439
+ "name": "label",
30440
+ "type": {
30441
+ "text": "string | undefined"
30442
+ },
30443
+ "description": "The label of the input field. It is linked to the input field using the `for` attribute.",
30444
+ "fieldName": "label",
30445
+ "inheritedFrom": {
30446
+ "name": "FormfieldWrapper",
30447
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
30448
+ }
30449
+ },
30450
+ {
30451
+ "name": "required",
30452
+ "type": {
30453
+ "text": "boolean"
30454
+ },
30455
+ "default": "false",
30456
+ "description": "The required attribute to indicate that the input field is required.\nIt is used to append a required indicator (*) to the label.",
30457
+ "fieldName": "required",
30458
+ "inheritedFrom": {
30459
+ "name": "FormfieldWrapper",
30460
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
30461
+ }
30462
+ },
30463
+ {
30464
+ "name": "help-text-type",
30465
+ "type": {
30466
+ "text": "ValidationType"
30467
+ },
30468
+ "description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
30469
+ "fieldName": "helpTextType",
30470
+ "inheritedFrom": {
30471
+ "name": "FormfieldWrapper",
30472
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
30473
+ }
30474
+ },
30475
+ {
30476
+ "name": "help-text",
30477
+ "type": {
30478
+ "text": "string | undefined"
30479
+ },
30480
+ "description": "The help text that is displayed below the input field.",
30481
+ "fieldName": "helpText",
30482
+ "inheritedFrom": {
30483
+ "name": "FormfieldWrapper",
30484
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
30485
+ }
30486
+ },
30487
+ {
30488
+ "name": "toggletip-text",
30489
+ "type": {
30490
+ "text": "string | undefined"
30491
+ },
30492
+ "description": "The toggletip text that is displayed when the label is hovered.\nIt is used to provide additional information about the label.",
30493
+ "fieldName": "toggletipText",
30494
+ "inheritedFrom": {
30495
+ "name": "FormfieldWrapper",
30496
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
30497
+ }
30498
+ },
30499
+ {
30500
+ "name": "toggletip-placement",
30501
+ "type": {
30502
+ "text": "PopoverPlacement"
30503
+ },
30504
+ "description": "The placement of the toggletip that is displayed when the info icon is hovered.",
30505
+ "default": "'top'",
30506
+ "fieldName": "toggletipPlacement",
30507
+ "inheritedFrom": {
30508
+ "name": "FormfieldWrapper",
30509
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
30510
+ }
30511
+ },
30512
+ {
30513
+ "name": "info-icon-aria-label",
30514
+ "type": {
30515
+ "text": "string | undefined"
30516
+ },
30517
+ "description": "Aria label for the info icon that is displayed next to the label when `toggletipText` is set.\nThis is used for accessibility purposes to provide a description of the icon.",
30518
+ "fieldName": "infoIconAriaLabel",
30519
+ "inheritedFrom": {
30520
+ "name": "FormfieldWrapper",
30521
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
30522
+ }
30523
+ }
30524
+ ],
30525
+ "superclass": {
30526
+ "name": "FormfieldGroup",
30527
+ "module": "/src/components/formfieldgroup"
30528
+ },
30529
+ "tagName": "mdc-radiogroup",
30530
+ "jsDoc": "/**\n * `mdc-radiogroup` - This is the wrapper component for radio buttons which are grouped together.\n * It can have a header text and a description. It enables users to select a single option from a set of options.\n * It is often used in forms, settings, and selection in lists. It automatically group the radio buttons inside it.\n *\n * @tagname mdc-radiogroup\n *\n * @cssproperty --mdc-radiogroup-description-text-normal - color of the description text\n *\n */",
30531
+ "customElement": true,
30532
+ "slots": [
30533
+ {
30534
+ "description": "This is a default slot for checkbox or toggle components.",
30535
+ "name": "default",
30536
+ "inheritedFrom": {
30537
+ "name": "FormfieldGroup",
30538
+ "module": "src/components/formfieldgroup/formfieldgroup.component.ts"
30539
+ }
30540
+ }
30541
+ ]
30542
+ }
30543
+ ],
30544
+ "exports": [
30545
+ {
30546
+ "kind": "js",
30547
+ "name": "default",
30548
+ "declaration": {
30549
+ "name": "RadioGroup",
30550
+ "module": "components/radiogroup/radiogroup.component.js"
30551
+ }
30552
+ }
30553
+ ]
30554
+ },
30171
30555
  {
30172
30556
  "kind": "javascript-module",
30173
30557
  "path": "components/radio/radio.component.js",
@@ -30895,486 +31279,102 @@
30895
31279
  },
30896
31280
  {
30897
31281
  "kind": "javascript-module",
30898
- "path": "components/radiogroup/radiogroup.component.js",
31282
+ "path": "components/screenreaderannouncer/screenreaderannouncer.component.js",
30899
31283
  "declarations": [
30900
31284
  {
30901
31285
  "kind": "class",
30902
- "description": "`mdc-radiogroup` - This is the wrapper component for radio buttons which are grouped together.\nIt can have a header text and a description. It enables users to select a single option from a set of options.\nIt is often used in forms, settings, and selection in lists. It automatically group the radio buttons inside it.",
30903
- "name": "RadioGroup",
30904
- "cssProperties": [
30905
- {
30906
- "description": "color of the description text",
30907
- "name": "--mdc-radiogroup-description-text-normal"
30908
- }
30909
- ],
31286
+ "description": "`mdc-screenreaderannouncer` can be used to announce messages with the screen reader.\n\nTo make an announcement set `announcement` attribute on the `mdc-screenreaderannouncer` element.\n\n**Internal logic**\n\nWhen the screenreader announcer is connected to the DOM, if the `identity` attribute is not\nprovided, it is set to `mdc-screenreaderannouncer-identity` and a `<div>` element with this id is created\nin the DOM. If the `identity` attribute is provided, the identity element is used and no new element\nis created in the DOM.\n\nWhen the `announcement` attribute is set, the screenreader announcer will create a `<div>` element with\n`aria-live` attribute set to the value of `data-aria-live` attribute and append it to the `identity` element.\nAfter delay of `delay` milliseconds, a <p> element with the announcement text is appended to the `<div>` element.\n\nThe announcement `<div>` element is removed from the DOM after `timeout` milliseconds.\n\nWhen the screen announcer component is disconnected from the DOM, all the timeouts are cleared and\nall the announcement elements added are removed from the DOM and timeouts cleared.\n\n**Note**\n1. The default delay of 150 miliseconds is used as we dynamically generate the\naria-live region in the DOM and add the announcement text to it.\n3. If no `identity` is provided, all the screen reader components will create and use only one\n`<div>` element with id `mdc-screenreaderannouncer-identity` in the DOM.\n\nReference: https://patrickhlauke.github.io/aria/tests/live-regions/",
31287
+ "name": "ScreenreaderAnnouncer",
30910
31288
  "members": [
30911
31289
  {
30912
31290
  "kind": "field",
30913
- "name": "name",
31291
+ "name": "announcement",
30914
31292
  "type": {
30915
31293
  "text": "string"
30916
31294
  },
30917
31295
  "default": "''",
30918
- "description": "Name of the radio group.\nThey are used to group elements in a form together.",
30919
- "attribute": "name"
31296
+ "description": "The announcement attribute is a string that is used to announce messages to the screen reader.\nThe announcement is made when the announcement attribute is set to a non-empty string.",
31297
+ "attribute": "announcement",
31298
+ "reflects": true
30920
31299
  },
30921
31300
  {
30922
31301
  "kind": "field",
30923
- "name": "dataAriaLabel",
31302
+ "name": "identity",
30924
31303
  "type": {
30925
- "text": "string | null"
31304
+ "text": "string"
30926
31305
  },
30927
- "default": "null",
30928
- "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
30929
- "attribute": "data-aria-label",
30930
- "reflects": true,
30931
- "inheritedFrom": {
30932
- "name": "DataAriaLabelMixin",
30933
- "module": "utils/mixins/DataAriaLabelMixin.js"
30934
- }
31306
+ "default": "''",
31307
+ "description": "The id of the element in the light dom, to which announcement elements will be appended.\n\nIf id is not provided, it will be set to `mdc-screenreaderannouncer-identity` and\na div element with this id will be created in the light dom.",
31308
+ "attribute": "identity",
31309
+ "reflects": true
30935
31310
  },
30936
31311
  {
30937
31312
  "kind": "field",
30938
- "name": "disabled",
31313
+ "name": "dataAriaLive",
30939
31314
  "type": {
30940
- "text": "boolean | undefined"
31315
+ "text": "AriaLive"
30941
31316
  },
30942
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
30943
- "default": "undefined",
30944
- "attribute": "disabled",
30945
- "reflects": true,
30946
- "inheritedFrom": {
30947
- "name": "FormfieldWrapper",
30948
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
30949
- }
31317
+ "description": "Aria live value for announcement.",
31318
+ "default": "'polite'",
31319
+ "attribute": "data-aria-live",
31320
+ "reflects": true
30950
31321
  },
30951
31322
  {
30952
31323
  "kind": "field",
30953
- "name": "label",
31324
+ "name": "delay",
30954
31325
  "type": {
30955
- "text": "string | undefined"
31326
+ "text": "number"
30956
31327
  },
30957
- "description": "The label of the input field. It is linked to the input field using the `for` attribute.",
30958
- "attribute": "label",
30959
- "reflects": true,
30960
- "inheritedFrom": {
30961
- "name": "FormfieldWrapper",
30962
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
30963
- }
31328
+ "description": "Milliseconds to wait before adding the announcement to the identiy region in\nDOM, which will announce the message to the screen reader.",
31329
+ "default": "150",
31330
+ "attribute": "delay",
31331
+ "reflects": true
30964
31332
  },
30965
31333
  {
30966
31334
  "kind": "field",
30967
- "name": "required",
31335
+ "name": "timeout",
30968
31336
  "type": {
30969
- "text": "boolean"
31337
+ "text": "number"
30970
31338
  },
30971
- "default": "false",
30972
- "description": "The required attribute to indicate that the input field is required.\nIt is used to append a required indicator (*) to the label.",
30973
- "attribute": "required",
30974
- "reflects": true,
30975
- "inheritedFrom": {
30976
- "name": "FormfieldWrapper",
30977
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
30978
- }
31339
+ "description": "Milliseconds to wait after which the announcement element will be removed from\nidentity region in DOM, causing the screen reader to not announcing the message.",
31340
+ "default": "20_000",
31341
+ "attribute": "timeout",
31342
+ "reflects": true
30979
31343
  },
30980
31344
  {
30981
- "kind": "field",
30982
- "name": "helpTextType",
30983
- "type": {
30984
- "text": "ValidationType"
30985
- },
30986
- "description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
30987
- "attribute": "help-text-type",
30988
- "reflects": true,
30989
- "inheritedFrom": {
30990
- "name": "FormfieldWrapper",
30991
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
30992
- }
30993
- },
30994
- {
30995
- "kind": "field",
30996
- "name": "helpText",
30997
- "type": {
30998
- "text": "string | undefined"
30999
- },
31000
- "description": "The help text that is displayed below the input field.",
31001
- "attribute": "help-text",
31002
- "reflects": true,
31003
- "inheritedFrom": {
31004
- "name": "FormfieldWrapper",
31005
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
31006
- }
31007
- },
31008
- {
31009
- "kind": "field",
31010
- "name": "toggletipText",
31011
- "type": {
31012
- "text": "string | undefined"
31013
- },
31014
- "description": "The toggletip text that is displayed when the label is hovered.\nIt is used to provide additional information about the label.",
31015
- "attribute": "toggletip-text",
31016
- "reflects": true,
31017
- "inheritedFrom": {
31018
- "name": "FormfieldWrapper",
31019
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
31020
- }
31021
- },
31022
- {
31023
- "kind": "field",
31024
- "name": "toggletipPlacement",
31025
- "type": {
31026
- "text": "PopoverPlacement"
31027
- },
31028
- "description": "The placement of the toggletip that is displayed when the info icon is hovered.",
31029
- "default": "'top'",
31030
- "attribute": "toggletip-placement",
31031
- "reflects": true,
31032
- "inheritedFrom": {
31033
- "name": "FormfieldWrapper",
31034
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
31035
- }
31036
- },
31037
- {
31038
- "kind": "field",
31039
- "name": "infoIconAriaLabel",
31040
- "type": {
31041
- "text": "string | undefined"
31042
- },
31043
- "description": "Aria label for the info icon that is displayed next to the label when `toggletipText` is set.\nThis is used for accessibility purposes to provide a description of the icon.",
31044
- "attribute": "info-icon-aria-label",
31045
- "reflects": true,
31046
- "inheritedFrom": {
31047
- "name": "FormfieldWrapper",
31048
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
31049
- }
31050
- },
31051
- {
31052
- "kind": "method",
31053
- "name": "renderLabelElement",
31054
- "privacy": "protected",
31055
- "description": "creates the label element when the label property is set.\nid is used to link the label with the input field.",
31056
- "return": {
31057
- "type": {
31058
- "text": ""
31059
- }
31060
- },
31061
- "inheritedFrom": {
31062
- "name": "FormfieldWrapper",
31063
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
31064
- }
31065
- },
31066
- {
31067
- "kind": "method",
31068
- "name": "renderHelpTextIcon",
31069
- "privacy": "protected",
31070
- "description": "creates the helpertext icon based on the helpTextType for validation.\nIf the helpTextType is not set, it defaults to 'default' and it doesn't display any icon.",
31071
- "return": {
31072
- "type": {
31073
- "text": ""
31074
- }
31075
- },
31076
- "inheritedFrom": {
31077
- "name": "FormfieldWrapper",
31078
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
31079
- }
31080
- },
31081
- {
31082
- "kind": "method",
31083
- "name": "renderHelpText",
31084
- "privacy": "protected",
31085
- "description": "creates the helper text component when the helpertext value is set.\nIt is also used to display the validation message based on the helpTextType.",
31086
- "return": {
31087
- "type": {
31088
- "text": ""
31089
- }
31090
- },
31091
- "inheritedFrom": {
31092
- "name": "FormfieldWrapper",
31093
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
31094
- }
31095
- },
31096
- {
31097
- "kind": "method",
31098
- "name": "renderLabel",
31099
- "privacy": "protected",
31100
- "description": "renders the mdc-label-text container that contains the label and labelInfoToggleTip.",
31101
- "return": {
31102
- "type": {
31103
- "text": ""
31104
- }
31105
- },
31106
- "inheritedFrom": {
31107
- "name": "FormfieldWrapper",
31108
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
31109
- }
31110
- },
31111
- {
31112
- "kind": "method",
31113
- "name": "renderHelperText",
31114
- "privacy": "protected",
31115
- "description": "renders the mdc-help-text container that contains the helpertext icon and helpertext.",
31116
- "return": {
31117
- "type": {
31118
- "text": ""
31119
- }
31120
- },
31121
- "inheritedFrom": {
31122
- "name": "FormfieldWrapper",
31123
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
31124
- }
31125
- }
31126
- ],
31127
- "attributes": [
31128
- {
31129
- "name": "name",
31130
- "type": {
31131
- "text": "string"
31132
- },
31133
- "default": "''",
31134
- "description": "Name of the radio group.\nThey are used to group elements in a form together.",
31135
- "fieldName": "name"
31136
- },
31137
- {
31138
- "name": "data-aria-label",
31139
- "type": {
31140
- "text": "string | null"
31141
- },
31142
- "default": "null",
31143
- "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
31144
- "fieldName": "dataAriaLabel",
31145
- "inheritedFrom": {
31146
- "name": "DataAriaLabelMixin",
31147
- "module": "src/utils/mixins/DataAriaLabelMixin.ts"
31148
- }
31149
- },
31150
- {
31151
- "name": "disabled",
31152
- "type": {
31153
- "text": "boolean | undefined"
31154
- },
31155
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
31156
- "default": "undefined",
31157
- "fieldName": "disabled",
31158
- "inheritedFrom": {
31159
- "name": "FormfieldWrapper",
31160
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
31161
- }
31162
- },
31163
- {
31164
- "name": "label",
31165
- "type": {
31166
- "text": "string | undefined"
31167
- },
31168
- "description": "The label of the input field. It is linked to the input field using the `for` attribute.",
31169
- "fieldName": "label",
31170
- "inheritedFrom": {
31171
- "name": "FormfieldWrapper",
31172
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
31173
- }
31174
- },
31175
- {
31176
- "name": "required",
31177
- "type": {
31178
- "text": "boolean"
31179
- },
31180
- "default": "false",
31181
- "description": "The required attribute to indicate that the input field is required.\nIt is used to append a required indicator (*) to the label.",
31182
- "fieldName": "required",
31183
- "inheritedFrom": {
31184
- "name": "FormfieldWrapper",
31185
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
31186
- }
31187
- },
31188
- {
31189
- "name": "help-text-type",
31190
- "type": {
31191
- "text": "ValidationType"
31192
- },
31193
- "description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
31194
- "fieldName": "helpTextType",
31195
- "inheritedFrom": {
31196
- "name": "FormfieldWrapper",
31197
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
31198
- }
31199
- },
31200
- {
31201
- "name": "help-text",
31202
- "type": {
31203
- "text": "string | undefined"
31204
- },
31205
- "description": "The help text that is displayed below the input field.",
31206
- "fieldName": "helpText",
31207
- "inheritedFrom": {
31208
- "name": "FormfieldWrapper",
31209
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
31210
- }
31211
- },
31212
- {
31213
- "name": "toggletip-text",
31214
- "type": {
31215
- "text": "string | undefined"
31216
- },
31217
- "description": "The toggletip text that is displayed when the label is hovered.\nIt is used to provide additional information about the label.",
31218
- "fieldName": "toggletipText",
31219
- "inheritedFrom": {
31220
- "name": "FormfieldWrapper",
31221
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
31222
- }
31223
- },
31224
- {
31225
- "name": "toggletip-placement",
31226
- "type": {
31227
- "text": "PopoverPlacement"
31228
- },
31229
- "description": "The placement of the toggletip that is displayed when the info icon is hovered.",
31230
- "default": "'top'",
31231
- "fieldName": "toggletipPlacement",
31232
- "inheritedFrom": {
31233
- "name": "FormfieldWrapper",
31234
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
31235
- }
31236
- },
31237
- {
31238
- "name": "info-icon-aria-label",
31239
- "type": {
31240
- "text": "string | undefined"
31241
- },
31242
- "description": "Aria label for the info icon that is displayed next to the label when `toggletipText` is set.\nThis is used for accessibility purposes to provide a description of the icon.",
31243
- "fieldName": "infoIconAriaLabel",
31244
- "inheritedFrom": {
31245
- "name": "FormfieldWrapper",
31246
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
31247
- }
31248
- }
31249
- ],
31250
- "superclass": {
31251
- "name": "FormfieldGroup",
31252
- "module": "/src/components/formfieldgroup"
31253
- },
31254
- "tagName": "mdc-radiogroup",
31255
- "jsDoc": "/**\n * `mdc-radiogroup` - This is the wrapper component for radio buttons which are grouped together.\n * It can have a header text and a description. It enables users to select a single option from a set of options.\n * It is often used in forms, settings, and selection in lists. It automatically group the radio buttons inside it.\n *\n * @tagname mdc-radiogroup\n *\n * @cssproperty --mdc-radiogroup-description-text-normal - color of the description text\n *\n */",
31256
- "customElement": true,
31257
- "slots": [
31258
- {
31259
- "description": "This is a default slot for checkbox or toggle components.",
31260
- "name": "default",
31261
- "inheritedFrom": {
31262
- "name": "FormfieldGroup",
31263
- "module": "src/components/formfieldgroup/formfieldgroup.component.ts"
31264
- }
31265
- }
31266
- ]
31267
- }
31268
- ],
31269
- "exports": [
31270
- {
31271
- "kind": "js",
31272
- "name": "default",
31273
- "declaration": {
31274
- "name": "RadioGroup",
31275
- "module": "components/radiogroup/radiogroup.component.js"
31276
- }
31277
- }
31278
- ]
31279
- },
31280
- {
31281
- "kind": "javascript-module",
31282
- "path": "components/screenreaderannouncer/screenreaderannouncer.component.js",
31283
- "declarations": [
31284
- {
31285
- "kind": "class",
31286
- "description": "`mdc-screenreaderannouncer` can be used to announce messages with the screen reader.\n\nTo make an announcement set `announcement` attribute on the `mdc-screenreaderannouncer` element.\n\n**Internal logic**\n\nWhen the screenreader announcer is connected to the DOM, if the `identity` attribute is not\nprovided, it is set to `mdc-screenreaderannouncer-identity` and a `<div>` element with this id is created\nin the DOM. If the `identity` attribute is provided, the identity element is used and no new element\nis created in the DOM.\n\nWhen the `announcement` attribute is set, the screenreader announcer will create a `<div>` element with\n`aria-live` attribute set to the value of `data-aria-live` attribute and append it to the `identity` element.\nAfter delay of `delay` milliseconds, a <p> element with the announcement text is appended to the `<div>` element.\n\nThe announcement `<div>` element is removed from the DOM after `timeout` milliseconds.\n\nWhen the screen announcer component is disconnected from the DOM, all the timeouts are cleared and\nall the announcement elements added are removed from the DOM and timeouts cleared.\n\n**Note**\n1. The default delay of 150 miliseconds is used as we dynamically generate the\naria-live region in the DOM and add the announcement text to it.\n3. If no `identity` is provided, all the screen reader components will create and use only one\n`<div>` element with id `mdc-screenreaderannouncer-identity` in the DOM.\n\nReference: https://patrickhlauke.github.io/aria/tests/live-regions/",
31287
- "name": "ScreenreaderAnnouncer",
31288
- "members": [
31289
- {
31290
- "kind": "field",
31291
- "name": "announcement",
31292
- "type": {
31293
- "text": "string"
31294
- },
31295
- "default": "''",
31296
- "description": "The announcement attribute is a string that is used to announce messages to the screen reader.\nThe announcement is made when the announcement attribute is set to a non-empty string.",
31297
- "attribute": "announcement",
31298
- "reflects": true
31299
- },
31300
- {
31301
- "kind": "field",
31302
- "name": "identity",
31303
- "type": {
31304
- "text": "string"
31305
- },
31306
- "default": "''",
31307
- "description": "The id of the element in the light dom, to which announcement elements will be appended.\n\nIf id is not provided, it will be set to `mdc-screenreaderannouncer-identity` and\na div element with this id will be created in the light dom.",
31308
- "attribute": "identity",
31309
- "reflects": true
31310
- },
31311
- {
31312
- "kind": "field",
31313
- "name": "dataAriaLive",
31314
- "type": {
31315
- "text": "AriaLive"
31316
- },
31317
- "description": "Aria live value for announcement.",
31318
- "default": "'polite'",
31319
- "attribute": "data-aria-live",
31320
- "reflects": true
31321
- },
31322
- {
31323
- "kind": "field",
31324
- "name": "delay",
31325
- "type": {
31326
- "text": "number"
31327
- },
31328
- "description": "Milliseconds to wait before adding the announcement to the identiy region in\nDOM, which will announce the message to the screen reader.",
31329
- "default": "150",
31330
- "attribute": "delay",
31331
- "reflects": true
31332
- },
31333
- {
31334
- "kind": "field",
31335
- "name": "timeout",
31336
- "type": {
31337
- "text": "number"
31338
- },
31339
- "description": "Milliseconds to wait after which the announcement element will be removed from\nidentity region in DOM, causing the screen reader to not announcing the message.",
31340
- "default": "20_000",
31341
- "attribute": "timeout",
31342
- "reflects": true
31343
- },
31344
- {
31345
- "kind": "method",
31346
- "name": "announce",
31347
- "parameters": [
31348
- {
31349
- "name": "announcement",
31350
- "type": {
31351
- "text": "string"
31352
- },
31353
- "description": "The announcement to be made."
31354
- },
31355
- {
31356
- "name": "delay",
31357
- "type": {
31358
- "text": "number"
31359
- },
31360
- "description": "The delay in milliseconds before announcing the message."
31361
- },
31362
- {
31363
- "name": "timeout",
31364
- "type": {
31365
- "text": "number"
31366
- },
31367
- "description": "The timeout in milliseconds before removing the announcement."
31368
- },
31369
- {
31370
- "name": "ariaLive",
31371
- "type": {
31372
- "text": "AriaLive"
31373
- },
31374
- "description": "The aria live value for the announcement."
31375
- }
31376
- ],
31377
- "description": "Announces the given announcement to the screen reader.\n\nA div element with aria-live attribute set to the given ariaLive value is created\nand a p element with the announcement text is appended to it.\n\nThe div element is appended to the element in the DOM identified with id as\nidentity attribute."
31345
+ "kind": "method",
31346
+ "name": "announce",
31347
+ "parameters": [
31348
+ {
31349
+ "name": "announcement",
31350
+ "type": {
31351
+ "text": "string"
31352
+ },
31353
+ "description": "The announcement to be made."
31354
+ },
31355
+ {
31356
+ "name": "delay",
31357
+ "type": {
31358
+ "text": "number"
31359
+ },
31360
+ "description": "The delay in milliseconds before announcing the message."
31361
+ },
31362
+ {
31363
+ "name": "timeout",
31364
+ "type": {
31365
+ "text": "number"
31366
+ },
31367
+ "description": "The timeout in milliseconds before removing the announcement."
31368
+ },
31369
+ {
31370
+ "name": "ariaLive",
31371
+ "type": {
31372
+ "text": "AriaLive"
31373
+ },
31374
+ "description": "The aria live value for the announcement."
31375
+ }
31376
+ ],
31377
+ "description": "Announces the given announcement to the screen reader.\n\nA div element with aria-live attribute set to the given ariaLive value is created\nand a p element with the announcement text is appended to it.\n\nThe div element is appended to the element in the DOM identified with id as\nidentity attribute."
31378
31378
  },
31379
31379
  {
31380
31380
  "kind": "method",
@@ -38830,24 +38830,511 @@
38830
38830
  },
38831
38831
  {
38832
38832
  "kind": "javascript-module",
38833
- "path": "components/toggletip/toggletip.component.js",
38833
+ "path": "components/typewriter/typewriter.component.js",
38834
38834
  "declarations": [
38835
38835
  {
38836
38836
  "kind": "class",
38837
- "description": "A toggletip is triggered by clicking a trigger element.\n\nIt can contain interactive content and can be closed by\nclicking outside the toggletip or pressing the escape key.\n\nIt can have optional close button to close the toggletip.\n\nToggletip component uses `mdc-screenreaderannouncer` internally to\nannounce the toggletip text content with screen readers when the toggletip is shown.\n\n`screenreader-announcer-identity` attribute can be used to provide ID of an element\nin DOM to which announcement elements are added. If not set, a visually hidden\ndiv element is created in DOM to which announcement elements are added.\n\nPlease refer to the `mdc-screenreaderannouncer` component for more details.",
38838
- "name": "ToggleTip",
38837
+ "description": "Typewriter component that creates a typewriter effect on text content.\nIt uses the Text component internally, adding a progressive typing effect.\n\nThe `type` attribute allows changing the text style (passed to the internal Text component).\nThe `tagname` attribute allows changing the tag name of the text element (passed to the internal Text component).\nThe default tag name is `p`.\n\nThe `speed` attribute controls typing speed in milliseconds per character:\n- 'very-slow' = 240ms per character\n- 'slow' = 120ms per character\n- 'normal' = 60ms per character (default)\n- 'fast' = 20ms per character\n- 'very-fast' = 1ms per character\n- Or any numeric string representing milliseconds\n\nAdvanced features:\n- Dynamic speed adjustment during typing\n- Chunked text addition via addTextChunk() method\n- Instant text addition via addInstantTextChunk() method or instant parameter\n- Mixed instant and animated chunks in queue\n- Continues typing in background tabs\n- Performance optimized for large text\n- maxQueueSize to limit memory usage from excessive queuing\n- event handling for typing completion and content changes\n\nThe component includes accessibility features:\n- Screen readers announce the complete text, not character by character\n- Uses aria-live=\"polite\" for dynamic content updates\n- Sets aria-busy during typing animation",
38838
+ "name": "Typewriter",
38839
+ "cssParts": [
38840
+ {
38841
+ "description": "Container for the text element",
38842
+ "name": "container"
38843
+ },
38844
+ {
38845
+ "description": "The text element (forwarded to mdc-text)",
38846
+ "name": "text"
38847
+ }
38848
+ ],
38849
+ "slots": [
38850
+ {
38851
+ "description": "Default slot for text content",
38852
+ "name": ""
38853
+ }
38854
+ ],
38855
+ "members": [
38856
+ {
38857
+ "kind": "field",
38858
+ "name": "type",
38859
+ "type": {
38860
+ "text": "TextType"
38861
+ },
38862
+ "privacy": "public",
38863
+ "description": "Specifies the text style to be applied to the internal text component.\nUses the same types as the Text component.",
38864
+ "default": "body-large-regular",
38865
+ "attribute": "type",
38866
+ "reflects": true
38867
+ },
38868
+ {
38869
+ "kind": "field",
38870
+ "name": "tagname",
38871
+ "type": {
38872
+ "text": "TagName | undefined"
38873
+ },
38874
+ "privacy": "public",
38875
+ "description": "Specifies the HTML tag name for the text element. The default tag name is `p`.\nThis attribute is optional. When set, it changes the tag name of the internal text element.\n\nAcceptable values include all valid tag names from the Text component.",
38876
+ "attribute": "tagname",
38877
+ "reflects": true
38878
+ },
38879
+ {
38880
+ "kind": "field",
38881
+ "name": "speed",
38882
+ "type": {
38883
+ "text": "TypewriterSpeed"
38884
+ },
38885
+ "privacy": "public",
38886
+ "description": "Speed of the typewriter effect in milliseconds per character.\nCan be a string preset or a numeric string in milliseconds.\n- 'very-slow' = 240ms per character\n- 'slow' = 120ms per character\n- 'normal' = 60ms per character (default)\n- 'fast' = 20ms per character\n- 'very-fast' = 1ms per character\n- Or any numeric string representing milliseconds (e.g., '100')",
38887
+ "default": "'normal' (60ms per character)",
38888
+ "attribute": "speed",
38889
+ "reflects": true
38890
+ },
38891
+ {
38892
+ "kind": "field",
38893
+ "name": "maxQueueSize",
38894
+ "type": {
38895
+ "text": "number"
38896
+ },
38897
+ "privacy": "public",
38898
+ "description": "Maximum number of text chunks that can be queued before oldest chunks are dropped.\nSet to prevent memory accumulation from excessive queuing.",
38899
+ "default": "Number.MAX_SAFE_INTEGER (effectively unlimited)",
38900
+ "attribute": "max-queue-size",
38901
+ "reflects": true
38902
+ },
38903
+ {
38904
+ "kind": "method",
38905
+ "name": "createTimeout",
38906
+ "privacy": "private",
38907
+ "return": {
38908
+ "type": {
38909
+ "text": "number"
38910
+ }
38911
+ },
38912
+ "parameters": [
38913
+ {
38914
+ "name": "callback",
38915
+ "type": {
38916
+ "text": "() => void"
38917
+ }
38918
+ },
38919
+ {
38920
+ "name": "delay",
38921
+ "type": {
38922
+ "text": "number"
38923
+ }
38924
+ }
38925
+ ],
38926
+ "description": "Helper to create tracked setTimeout that will be cleaned up on disconnect"
38927
+ },
38928
+ {
38929
+ "kind": "method",
38930
+ "name": "clearAllTimeouts",
38931
+ "privacy": "private",
38932
+ "return": {
38933
+ "type": {
38934
+ "text": "void"
38935
+ }
38936
+ },
38937
+ "description": "Clear all pending timeouts"
38938
+ },
38939
+ {
38940
+ "kind": "method",
38941
+ "name": "clearQueue",
38942
+ "privacy": "public",
38943
+ "return": {
38944
+ "type": {
38945
+ "text": "void"
38946
+ }
38947
+ },
38948
+ "description": "Clears the text chunk queue and stops processing\nUseful for resetting the component state"
38949
+ },
38950
+ {
38951
+ "kind": "method",
38952
+ "name": "addTextChunk",
38953
+ "privacy": "public",
38954
+ "return": {
38955
+ "type": {
38956
+ "text": "void"
38957
+ }
38958
+ },
38959
+ "parameters": [
38960
+ {
38961
+ "name": "text",
38962
+ "type": {
38963
+ "text": "string"
38964
+ },
38965
+ "description": "The text to add"
38966
+ },
38967
+ {
38968
+ "name": "speed",
38969
+ "optional": true,
38970
+ "type": {
38971
+ "text": "TypewriterSpeed"
38972
+ },
38973
+ "description": "Optional speed override for this chunk"
38974
+ },
38975
+ {
38976
+ "name": "instant",
38977
+ "optional": true,
38978
+ "type": {
38979
+ "text": "boolean"
38980
+ },
38981
+ "description": "If true, text appears instantly without animation"
38982
+ }
38983
+ ],
38984
+ "description": "Adds a chunk of text to be typed out, optionally with a different speed"
38985
+ },
38986
+ {
38987
+ "kind": "method",
38988
+ "name": "addInstantTextChunk",
38989
+ "privacy": "public",
38990
+ "return": {
38991
+ "type": {
38992
+ "text": "void"
38993
+ }
38994
+ },
38995
+ "parameters": [
38996
+ {
38997
+ "name": "text",
38998
+ "type": {
38999
+ "text": "string"
39000
+ },
39001
+ "description": "The text to add instantly"
39002
+ }
39003
+ ],
39004
+ "description": "Adds a chunk of text instantly without typing animation"
39005
+ },
39006
+ {
39007
+ "kind": "method",
39008
+ "name": "processChunkQueue",
39009
+ "privacy": "private",
39010
+ "return": {
39011
+ "type": {
39012
+ "text": "void"
39013
+ }
39014
+ },
39015
+ "description": "Processes all chunks in the queue"
39016
+ },
39017
+ {
39018
+ "kind": "method",
39019
+ "name": "processNextChunk",
39020
+ "privacy": "private",
39021
+ "return": {
39022
+ "type": {
39023
+ "text": "void"
39024
+ }
39025
+ },
39026
+ "description": "Processes the next chunk in the queue"
39027
+ },
39028
+ {
39029
+ "kind": "method",
39030
+ "name": "getTypingDelayMs",
39031
+ "privacy": "private",
39032
+ "return": {
39033
+ "type": {
39034
+ "text": "number"
39035
+ }
39036
+ },
39037
+ "description": "Gets the typing delay in milliseconds per character"
39038
+ },
39039
+ {
39040
+ "kind": "method",
39041
+ "name": "captureAndProcessContent",
39042
+ "privacy": "private",
39043
+ "return": {
39044
+ "type": {
39045
+ "text": "void"
39046
+ }
39047
+ },
39048
+ "description": "Captures slot content and starts typewriter animation"
39049
+ },
39050
+ {
39051
+ "kind": "method",
39052
+ "name": "startTypingAnimation",
39053
+ "privacy": "private",
39054
+ "return": {
39055
+ "type": {
39056
+ "text": "void"
39057
+ }
39058
+ },
39059
+ "parameters": [
39060
+ {
39061
+ "name": "onComplete",
39062
+ "optional": true,
39063
+ "type": {
39064
+ "text": "() => void"
39065
+ }
39066
+ }
39067
+ ],
39068
+ "description": "Starts the typewriter animation"
39069
+ },
39070
+ {
39071
+ "kind": "method",
39072
+ "name": "clearTypingAnimation",
39073
+ "privacy": "private",
39074
+ "return": {
39075
+ "type": {
39076
+ "text": "void"
39077
+ }
39078
+ },
39079
+ "description": "Clears the typing animation timeout"
39080
+ },
39081
+ {
39082
+ "kind": "method",
39083
+ "name": "handleSlotChange",
39084
+ "privacy": "private",
39085
+ "return": {
39086
+ "type": {
39087
+ "text": "void"
39088
+ }
39089
+ },
39090
+ "description": "Handler for slotchange event"
39091
+ }
39092
+ ],
39093
+ "events": [
39094
+ {
39095
+ "type": {
39096
+ "text": "CustomEvent"
39097
+ }
39098
+ },
39099
+ {
39100
+ "description": "(React: onTypingComplete) Fired when the typewriter finishes typing all content. Detail: \\{ finalContent: string \\}",
39101
+ "name": "typing-complete",
39102
+ "reactName": "onTypingComplete"
39103
+ },
39104
+ {
39105
+ "description": "(React: onChange) Fired when the content of the typewriter changes. Detail: \\{ content: string, isTyping: boolean \\}",
39106
+ "name": "change",
39107
+ "reactName": "onChange"
39108
+ }
39109
+ ],
39110
+ "attributes": [
39111
+ {
39112
+ "name": "type",
39113
+ "type": {
39114
+ "text": "TextType"
39115
+ },
39116
+ "description": "Specifies the text style to be applied to the internal text component.\nUses the same types as the Text component.",
39117
+ "default": "body-large-regular",
39118
+ "fieldName": "type"
39119
+ },
39120
+ {
39121
+ "name": "tagname",
39122
+ "type": {
39123
+ "text": "TagName | undefined"
39124
+ },
39125
+ "description": "Specifies the HTML tag name for the text element. The default tag name is `p`.\nThis attribute is optional. When set, it changes the tag name of the internal text element.\n\nAcceptable values include all valid tag names from the Text component.",
39126
+ "fieldName": "tagname"
39127
+ },
39128
+ {
39129
+ "name": "speed",
39130
+ "type": {
39131
+ "text": "TypewriterSpeed"
39132
+ },
39133
+ "description": "Speed of the typewriter effect in milliseconds per character.\nCan be a string preset or a numeric string in milliseconds.\n- 'very-slow' = 240ms per character\n- 'slow' = 120ms per character\n- 'normal' = 60ms per character (default)\n- 'fast' = 20ms per character\n- 'very-fast' = 1ms per character\n- Or any numeric string representing milliseconds (e.g., '100')",
39134
+ "default": "'normal' (60ms per character)",
39135
+ "fieldName": "speed"
39136
+ },
39137
+ {
39138
+ "name": "max-queue-size",
39139
+ "type": {
39140
+ "text": "number"
39141
+ },
39142
+ "description": "Maximum number of text chunks that can be queued before oldest chunks are dropped.\nSet to prevent memory accumulation from excessive queuing.",
39143
+ "default": "Number.MAX_SAFE_INTEGER (effectively unlimited)",
39144
+ "fieldName": "maxQueueSize"
39145
+ }
39146
+ ],
39147
+ "superclass": {
39148
+ "name": "Component",
39149
+ "module": "/src/models"
39150
+ },
39151
+ "tagName": "mdc-typewriter",
39152
+ "jsDoc": "/**\n * Typewriter component that creates a typewriter effect on text content.\n * It uses the Text component internally, adding a progressive typing effect.\n *\n * The `type` attribute allows changing the text style (passed to the internal Text component).\n * The `tagname` attribute allows changing the tag name of the text element (passed to the internal Text component).\n * The default tag name is `p`.\n *\n * The `speed` attribute controls typing speed in milliseconds per character:\n * - 'very-slow' = 240ms per character\n * - 'slow' = 120ms per character\n * - 'normal' = 60ms per character (default)\n * - 'fast' = 20ms per character\n * - 'very-fast' = 1ms per character\n * - Or any numeric string representing milliseconds\n *\n * Advanced features:\n * - Dynamic speed adjustment during typing\n * - Chunked text addition via addTextChunk() method\n * - Instant text addition via addInstantTextChunk() method or instant parameter\n * - Mixed instant and animated chunks in queue\n * - Continues typing in background tabs\n * - Performance optimized for large text\n * - maxQueueSize to limit memory usage from excessive queuing\n * - event handling for typing completion and content changes\n *\n * The component includes accessibility features:\n * - Screen readers announce the complete text, not character by character\n * - Uses aria-live=\"polite\" for dynamic content updates\n * - Sets aria-busy during typing animation\n *\n * @dependency mdc-text\n *\n * @tagname mdc-typewriter\n * @slot - Default slot for text content\n *\n * @csspart container - Container for the text element\n * @csspart text - The text element (forwarded to mdc-text)\n *\n * @event typing-complete - (React: onTypingComplete) Fired when the typewriter finishes typing all content.\n * Detail: \\{ finalContent: string \\}\n * @event change - (React: onChange) Fired when the content of the typewriter changes.\n * Detail: \\{ content: string, isTyping: boolean \\}\n */",
39153
+ "customElement": true
39154
+ }
39155
+ ],
39156
+ "exports": [
39157
+ {
39158
+ "kind": "js",
39159
+ "name": "default",
39160
+ "declaration": {
39161
+ "name": "Typewriter",
39162
+ "module": "components/typewriter/typewriter.component.js"
39163
+ }
39164
+ }
39165
+ ]
39166
+ },
39167
+ {
39168
+ "kind": "javascript-module",
39169
+ "path": "components/virtualizedlist/virtualizedlist.component.js",
39170
+ "declarations": [
39171
+ {
39172
+ "kind": "class",
39173
+ "description": "`mdc-virtualizedlist` component for creating custom virtualized lists.\nIMPORTANT: This component does not create it's own list/list items.\nUse the setlistdata callback prop to update client state in order to\nPass list/listitems as a child of this component, which this will virtuailze\nThis implementation handles dynamic lists as well as fixed sized lists.\nPlease refer to [Tanstack Virtual Docs](https://tanstack.com/virtual/latest) for more in depth documentation.",
39174
+ "name": "VirtualizedList",
39175
+ "slots": [
39176
+ {
39177
+ "description": "Client side List with nested list items.",
39178
+ "name": ""
39179
+ }
39180
+ ],
39181
+ "members": [
39182
+ {
39183
+ "kind": "field",
39184
+ "name": "virtualizerProps",
39185
+ "type": {
39186
+ "text": "VirtualizerProps"
39187
+ },
39188
+ "description": "Object that sets and updates the virtualizer with any relevant props.\nThere are two required object props in order to get virtualization to work properly.\ncount - The length of your list that you are virtualizing.\nAs your list grows/shrinks, this component must be updated with the appropriate value\n(Same with any other updated prop).\nestimateSize - A function that returns the estimated size of your items.\nIf your list is fixed, this will just be the size of your items.\nIf your list is dynamic, try to return approximate the size of each item.\n\nA full list of possible props can be in\n[Tanstack Virtualizer API Docs](https://tanstack.com/virtual/latest/docs/api/virtualizer)",
39189
+ "attribute": "virtualizerprops"
39190
+ },
39191
+ {
39192
+ "kind": "field",
39193
+ "name": "setlistdata",
39194
+ "type": {
39195
+ "text": "(({ virtualItems, measureElement, listStyle }: SetListDataProps) => void) | null"
39196
+ },
39197
+ "description": "Callback that gets envoked when updates to the virtualizer interally occur.\nThis must be implemented in such a way that this function will trigger update to parent.\n\nvirtualItems - Array that will be what the client displays on screen. Use this to render\na List of your choosing with these items nested inside as your ListItems.\nmeasureElement - Ref to pass to each ListItem rendered client side.\nEach ListItem should also be be passed key and a data-index (which can be found on the virtualItem).\nlistStyle - This should be passed as the style attribute to your List.",
39198
+ "default": "null",
39199
+ "attribute": "setlistdata"
39200
+ },
39201
+ {
39202
+ "kind": "field",
39203
+ "name": "scrollElementRef",
39204
+ "type": {
39205
+ "text": "Ref<HTMLDivElement>"
39206
+ },
39207
+ "privacy": "public"
39208
+ },
39209
+ {
39210
+ "kind": "field",
39211
+ "name": "virtualizer",
39212
+ "type": {
39213
+ "text": "Virtualizer<Element, Element> | null"
39214
+ },
39215
+ "privacy": "public",
39216
+ "default": "null"
39217
+ },
39218
+ {
39219
+ "kind": "field",
39220
+ "name": "virtualItems",
39221
+ "type": {
39222
+ "text": "Array<VirtualItem>"
39223
+ },
39224
+ "privacy": "public",
39225
+ "default": "[]"
39226
+ },
39227
+ {
39228
+ "kind": "method",
39229
+ "name": "handleScroll",
39230
+ "privacy": "private",
39231
+ "return": {
39232
+ "type": {
39233
+ "text": "void"
39234
+ }
39235
+ },
39236
+ "parameters": [
39237
+ {
39238
+ "name": "event",
39239
+ "type": {
39240
+ "text": "Event"
39241
+ }
39242
+ }
39243
+ ],
39244
+ "description": "Refires the scroll event from the internal scroll container to the host element"
39245
+ },
39246
+ {
39247
+ "kind": "field",
39248
+ "name": "virtualizerController",
39249
+ "type": {
39250
+ "text": "null"
39251
+ },
39252
+ "default": "null"
39253
+ },
39254
+ {
39255
+ "kind": "field",
39256
+ "name": "onscroll",
39257
+ "type": {
39258
+ "text": "null"
39259
+ },
39260
+ "default": "null"
39261
+ }
39262
+ ],
39263
+ "events": [
39264
+ {
39265
+ "type": {
39266
+ "text": "EventConstructor"
39267
+ }
39268
+ },
39269
+ {
39270
+ "description": "(React: onScroll) Event that gets called when user scrolls inside of list.",
39271
+ "name": "scroll",
39272
+ "reactName": "onScroll"
39273
+ }
39274
+ ],
39275
+ "attributes": [
39276
+ {
39277
+ "name": "virtualizerprops",
39278
+ "type": {
39279
+ "text": "VirtualizerProps"
39280
+ },
39281
+ "description": "Object that sets and updates the virtualizer with any relevant props.\nThere are two required object props in order to get virtualization to work properly.\ncount - The length of your list that you are virtualizing.\nAs your list grows/shrinks, this component must be updated with the appropriate value\n(Same with any other updated prop).\nestimateSize - A function that returns the estimated size of your items.\nIf your list is fixed, this will just be the size of your items.\nIf your list is dynamic, try to return approximate the size of each item.\n\nA full list of possible props can be in\n[Tanstack Virtualizer API Docs](https://tanstack.com/virtual/latest/docs/api/virtualizer)",
39282
+ "fieldName": "virtualizerProps"
39283
+ },
39284
+ {
39285
+ "name": "setlistdata",
39286
+ "type": {
39287
+ "text": "(({ virtualItems, measureElement, listStyle }: SetListDataProps) => void) | null"
39288
+ },
39289
+ "description": "Callback that gets envoked when updates to the virtualizer interally occur.\nThis must be implemented in such a way that this function will trigger update to parent.\n\nvirtualItems - Array that will be what the client displays on screen. Use this to render\na List of your choosing with these items nested inside as your ListItems.\nmeasureElement - Ref to pass to each ListItem rendered client side.\nEach ListItem should also be be passed key and a data-index (which can be found on the virtualItem).\nlistStyle - This should be passed as the style attribute to your List.",
39290
+ "default": "null",
39291
+ "fieldName": "setlistdata"
39292
+ }
39293
+ ],
39294
+ "superclass": {
39295
+ "name": "Component",
39296
+ "module": "/src/models"
39297
+ },
39298
+ "tagName": "mdc-virtualizedlist",
39299
+ "jsDoc": "/**\n * `mdc-virtualizedlist` component for creating custom virtualized lists.\n * IMPORTANT: This component does not create it's own list/list items.\n * Use the setlistdata callback prop to update client state in order to\n * Pass list/listitems as a child of this component, which this will virtuailze\n * This implementation handles dynamic lists as well as fixed sized lists.\n * Please refer to [Tanstack Virtual Docs](https://tanstack.com/virtual/latest) for more in depth documentation.\n *\n * @tagname mdc-virtualizedlist\n *\n * @event scroll - (React: onScroll) Event that gets called when user scrolls inside of list.\n *\n * @slot - Client side List with nested list items.\n */",
39300
+ "customElement": true
39301
+ }
39302
+ ],
39303
+ "exports": [
39304
+ {
39305
+ "kind": "js",
39306
+ "name": "default",
39307
+ "declaration": {
39308
+ "name": "VirtualizedList",
39309
+ "module": "components/virtualizedlist/virtualizedlist.component.js"
39310
+ }
39311
+ }
39312
+ ]
39313
+ },
39314
+ {
39315
+ "kind": "javascript-module",
39316
+ "path": "components/tooltip/tooltip.component.js",
39317
+ "declarations": [
39318
+ {
39319
+ "kind": "class",
39320
+ "description": "A tooltip is triggered by mouse hover or by keyboard focus\nand will disappear upon mouse exit or focus change.\n\nNote: Tooltips cannot contain content that can be focused or interacted with.",
39321
+ "name": "Tooltip",
38839
39322
  "cssProperties": [
38840
39323
  {
38841
- "description": "The maximum width of the toggletip.",
38842
- "name": "--mdc-toggletip-max-width"
39324
+ "description": "The maximum width of the tooltip.",
39325
+ "name": "--mdc-tooltip-max-width"
38843
39326
  },
38844
39327
  {
38845
- "description": "The text color of the toggletip.",
38846
- "name": "--mdc-toggletip-text-color"
39328
+ "description": "The padding of the tooltip.",
39329
+ "name": "--mdc-tooltip-padding"
38847
39330
  },
38848
39331
  {
38849
- "description": "The text color of the toggletip when the color is contrast.",
38850
- "name": "--mdc-toggletip-text-color-contrast"
39332
+ "description": "The text color of the tooltip.",
39333
+ "name": "--mdc-tooltip-text-color"
39334
+ },
39335
+ {
39336
+ "description": "The text color of the tooltip when the color is contrast.",
39337
+ "name": "--mdc-tooltip-text-color-contrast"
38851
39338
  },
38852
39339
  {
38853
39340
  "description": "radius of the arrow border",
@@ -38930,53 +39417,29 @@
38930
39417
  }
38931
39418
  }
38932
39419
  ],
38933
- "slots": [
38934
- {
38935
- "description": "Default slot for the toggletip content",
38936
- "name": "",
38937
- "inheritedFrom": {
38938
- "name": "Popover",
38939
- "module": "src/components/popover/popover.component.ts"
38940
- }
38941
- }
38942
- ],
38943
39420
  "members": [
38944
39421
  {
38945
39422
  "kind": "field",
38946
- "name": "defaultSlotNodes",
38947
- "type": {
38948
- "text": "Array<Node>"
38949
- },
38950
- "privacy": "private"
38951
- },
38952
- {
38953
- "kind": "field",
38954
- "name": "screenreaderAnnouncerIdentity",
39423
+ "name": "tooltipType",
38955
39424
  "type": {
38956
- "text": "string | undefined"
39425
+ "text": "TooltipType"
38957
39426
  },
38958
- "description": "Set this attribute with the id of the element in the DOM, to which announcement\nelements will be appended.\nIf an id is provided, the announcement elements will be appended to this element.\nIf id is not provided, a visually hidden div element will be created in the DOM.\n\nPlease refer to the `mdc-screenreaderannouncer` component for more details.",
38959
- "attribute": "screenreader-announcer-identity",
39427
+ "description": "The type of tooltip.\n- **description** sets aria-describedby on the trigger component which refers to the tooltip id.\n- **label** sets aria-labelledby on the trigger component which refers to the tooltip id.\n- **none** no aria props set on trigger component referring to the tooltip id.",
39428
+ "default": "'description'",
39429
+ "attribute": "tooltip-type",
38960
39430
  "reflects": true
38961
39431
  },
38962
39432
  {
38963
39433
  "kind": "field",
38964
- "name": "placement",
39434
+ "name": "defaultSlotNodes",
38965
39435
  "type": {
38966
- "text": "PopoverPlacement"
39436
+ "text": "Array<Node>"
38967
39437
  },
38968
- "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
38969
- "default": "bottom",
38970
- "attribute": "placement",
38971
- "reflects": true,
38972
- "inheritedFrom": {
38973
- "name": "Popover",
38974
- "module": "components/popover/popover.component.js"
38975
- }
39438
+ "privacy": "private"
38976
39439
  },
38977
39440
  {
38978
39441
  "kind": "method",
38979
- "name": "getToggleTipText",
39442
+ "name": "getTooltipText",
38980
39443
  "privacy": "private",
38981
39444
  "return": {
38982
39445
  "type": {
@@ -38984,6 +39447,37 @@
38984
39447
  }
38985
39448
  }
38986
39449
  },
39450
+ {
39451
+ "kind": "method",
39452
+ "name": "setTooltipType",
39453
+ "privacy": "private",
39454
+ "return": {
39455
+ "type": {
39456
+ "text": "void"
39457
+ }
39458
+ },
39459
+ "parameters": [
39460
+ {
39461
+ "name": "type",
39462
+ "type": {
39463
+ "text": "TooltipType"
39464
+ },
39465
+ "description": "The type to set."
39466
+ }
39467
+ ],
39468
+ "description": "Sets the type attribute for the tooltip component.\nIf the provided type is not included in the TOOLTIP_TYPES,\nit defaults to the value specified in DEFAULTS.TOOLTIP_TYPE."
39469
+ },
39470
+ {
39471
+ "kind": "method",
39472
+ "name": "onIdUpdated",
39473
+ "privacy": "private",
39474
+ "return": {
39475
+ "type": {
39476
+ "text": "Promise<void>"
39477
+ }
39478
+ },
39479
+ "description": "Updates the tooltip id if it is empty."
39480
+ },
38987
39481
  {
38988
39482
  "kind": "method",
38989
39483
  "name": "onPlacementUpdated",
@@ -38993,7 +39487,27 @@
38993
39487
  "text": "void"
38994
39488
  }
38995
39489
  },
38996
- "description": "Updates the placement attribute if it is not a valid placement.\nDefault placement for toggle tip is top."
39490
+ "description": "Updates the placement attribute if it is not a valid placement.\nOverriding the default from Popover"
39491
+ },
39492
+ {
39493
+ "kind": "method",
39494
+ "name": "onTooltipTypeUpdated",
39495
+ "privacy": "private",
39496
+ "return": {
39497
+ "type": {
39498
+ "text": "void"
39499
+ }
39500
+ },
39501
+ "parameters": [
39502
+ {
39503
+ "name": "changedProperties",
39504
+ "type": {
39505
+ "text": "PropertyValues"
39506
+ },
39507
+ "description": "The changed properties."
39508
+ }
39509
+ ],
39510
+ "description": "Updates the tooltip type attribute and sets the appropriate aria props on the trigger component."
38997
39511
  },
38998
39512
  {
38999
39513
  "kind": "field",
@@ -39601,6 +40115,21 @@
39601
40115
  "module": "components/popover/popover.component.js"
39602
40116
  }
39603
40117
  },
40118
+ {
40119
+ "kind": "field",
40120
+ "name": "placement",
40121
+ "type": {
40122
+ "text": "PopoverPlacement"
40123
+ },
40124
+ "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
40125
+ "default": "bottom",
40126
+ "attribute": "placement",
40127
+ "reflects": true,
40128
+ "inheritedFrom": {
40129
+ "name": "Popover",
40130
+ "module": "components/popover/popover.component.js"
40131
+ }
40132
+ },
39604
40133
  {
39605
40134
  "kind": "field",
39606
40135
  "name": "color",
@@ -40320,7 +40849,7 @@
40320
40849
  ],
40321
40850
  "events": [
40322
40851
  {
40323
- "description": "(React: onShown) This event is dispatched when the toggletip is shown",
40852
+ "description": "(React: onShown) This event is dispatched when the tooltip is shown",
40324
40853
  "name": "shown",
40325
40854
  "reactName": "onShown",
40326
40855
  "inheritedFrom": {
@@ -40329,7 +40858,7 @@
40329
40858
  }
40330
40859
  },
40331
40860
  {
40332
- "description": "(React: onHidden) This event is dispatched when the toggletip is hidden",
40861
+ "description": "(React: onHidden) This event is dispatched when the tooltip is hidden",
40333
40862
  "name": "hidden",
40334
40863
  "reactName": "onHidden",
40335
40864
  "inheritedFrom": {
@@ -40338,7 +40867,7 @@
40338
40867
  }
40339
40868
  },
40340
40869
  {
40341
- "description": "(React: onCreated) This event is dispatched when the toggletip is created (added to the DOM)",
40870
+ "description": "(React: onCreated) This event is dispatched when the tooltip is created (added to the DOM)",
40342
40871
  "name": "created",
40343
40872
  "reactName": "onCreated",
40344
40873
  "inheritedFrom": {
@@ -40347,7 +40876,7 @@
40347
40876
  }
40348
40877
  },
40349
40878
  {
40350
- "description": "(React: onDestroyed) This event is dispatched when the toggletip is destroyed (removed from the DOM)",
40879
+ "description": "(React: onDestroyed) This event is dispatched when the tooltip is destroyed (removed from the DOM)",
40351
40880
  "name": "destroyed",
40352
40881
  "reactName": "onDestroyed",
40353
40882
  "inheritedFrom": {
@@ -40358,25 +40887,13 @@
40358
40887
  ],
40359
40888
  "attributes": [
40360
40889
  {
40361
- "name": "screenreader-announcer-identity",
40362
- "type": {
40363
- "text": "string | undefined"
40364
- },
40365
- "description": "Set this attribute with the id of the element in the DOM, to which announcement\nelements will be appended.\nIf an id is provided, the announcement elements will be appended to this element.\nIf id is not provided, a visually hidden div element will be created in the DOM.\n\nPlease refer to the `mdc-screenreaderannouncer` component for more details.",
40366
- "fieldName": "screenreaderAnnouncerIdentity"
40367
- },
40368
- {
40369
- "name": "placement",
40890
+ "name": "tooltip-type",
40370
40891
  "type": {
40371
- "text": "PopoverPlacement"
40892
+ "text": "TooltipType"
40372
40893
  },
40373
- "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
40374
- "default": "bottom",
40375
- "fieldName": "placement",
40376
- "inheritedFrom": {
40377
- "name": "Popover",
40378
- "module": "src/components/popover/popover.component.ts"
40379
- }
40894
+ "description": "The type of tooltip.\n- **description** sets aria-describedby on the trigger component which refers to the tooltip id.\n- **label** sets aria-labelledby on the trigger component which refers to the tooltip id.\n- **none** no aria props set on trigger component referring to the tooltip id.",
40895
+ "default": "'description'",
40896
+ "fieldName": "tooltipType"
40380
40897
  },
40381
40898
  {
40382
40899
  "name": "should-focus-trap-wrap",
@@ -40430,6 +40947,19 @@
40430
40947
  "module": "src/components/popover/popover.component.ts"
40431
40948
  }
40432
40949
  },
40950
+ {
40951
+ "name": "placement",
40952
+ "type": {
40953
+ "text": "PopoverPlacement"
40954
+ },
40955
+ "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
40956
+ "default": "bottom",
40957
+ "fieldName": "placement",
40958
+ "inheritedFrom": {
40959
+ "name": "Popover",
40960
+ "module": "src/components/popover/popover.component.ts"
40961
+ }
40962
+ },
40433
40963
  {
40434
40964
  "name": "color",
40435
40965
  "type": {
@@ -40850,9 +41380,19 @@
40850
41380
  "name": "Popover",
40851
41381
  "module": "/src/components/popover/popover.component"
40852
41382
  },
40853
- "tagName": "mdc-toggletip",
40854
- "jsDoc": "/**\n * A toggletip is triggered by clicking a trigger element.\n *\n * It can contain interactive content and can be closed by\n * clicking outside the toggletip or pressing the escape key.\n *\n * It can have optional close button to close the toggletip.\n *\n * Toggletip component uses `mdc-screenreaderannouncer` internally to\n * announce the toggletip text content with screen readers when the toggletip is shown.\n *\n * `screenreader-announcer-identity` attribute can be used to provide ID of an element\n * in DOM to which announcement elements are added. If not set, a visually hidden\n * div element is created in DOM to which announcement elements are added.\n *\n * Please refer to the `mdc-screenreaderannouncer` component for more details.\n *\n * @dependency mdc-screenreaderannouncer\n * @dependency mdc-button\n *\n * @tagname mdc-toggletip\n *\n * @event shown - (React: onShown) This event is dispatched when the toggletip is shown\n * @event hidden - (React: onHidden) This event is dispatched when the toggletip is hidden\n * @event created - (React: onCreated) This event is dispatched when the toggletip is created (added to the DOM)\n * @event destroyed - (React: onDestroyed) This event is dispatched when the toggletip\n * is destroyed (removed from the DOM)\n *\n * @cssproperty --mdc-toggletip-max-width - The maximum width of the toggletip.\n * @cssproperty --mdc-toggletip-text-color - The text color of the toggletip.\n * @cssproperty --mdc-toggletip-text-color-contrast - The text color of the toggletip\n * when the color is contrast.\n *\n * @slot - Default slot for the toggletip content\n */",
40855
- "customElement": true
41383
+ "tagName": "mdc-tooltip",
41384
+ "jsDoc": "/**\n * A tooltip is triggered by mouse hover or by keyboard focus\n * and will disappear upon mouse exit or focus change.\n *\n * Note: Tooltips cannot contain content that can be focused or interacted with.\n *\n * @tagname mdc-tooltip\n *\n * @event shown - (React: onShown) This event is dispatched when the tooltip is shown\n * @event hidden - (React: onHidden) This event is dispatched when the tooltip is hidden\n * @event created - (React: onCreated) This event is dispatched when the tooltip is created (added to the DOM)\n * @event destroyed - (React: onDestroyed) This event is dispatched when the tooltip is destroyed (removed from the DOM)\n *\n * @cssproperty --mdc-tooltip-max-width - The maximum width of the tooltip.\n * @cssproperty --mdc-tooltip-padding - The padding of the tooltip.\n * @cssproperty --mdc-tooltip-text-color - The text color of the tooltip.\n * @cssproperty --mdc-tooltip-text-color-contrast - The text color of the tooltip when the color is contrast.\n *\n */",
41385
+ "customElement": true,
41386
+ "slots": [
41387
+ {
41388
+ "description": "Default slot for the popover content",
41389
+ "name": "",
41390
+ "inheritedFrom": {
41391
+ "name": "Popover",
41392
+ "module": "src/components/popover/popover.component.ts"
41393
+ }
41394
+ }
41395
+ ]
40856
41396
  }
40857
41397
  ],
40858
41398
  "exports": [
@@ -40860,36 +41400,32 @@
40860
41400
  "kind": "js",
40861
41401
  "name": "default",
40862
41402
  "declaration": {
40863
- "name": "ToggleTip",
40864
- "module": "components/toggletip/toggletip.component.js"
41403
+ "name": "Tooltip",
41404
+ "module": "components/tooltip/tooltip.component.js"
40865
41405
  }
40866
41406
  }
40867
41407
  ]
40868
41408
  },
40869
41409
  {
40870
41410
  "kind": "javascript-module",
40871
- "path": "components/tooltip/tooltip.component.js",
41411
+ "path": "components/toggletip/toggletip.component.js",
40872
41412
  "declarations": [
40873
41413
  {
40874
41414
  "kind": "class",
40875
- "description": "A tooltip is triggered by mouse hover or by keyboard focus\nand will disappear upon mouse exit or focus change.\n\nNote: Tooltips cannot contain content that can be focused or interacted with.",
40876
- "name": "Tooltip",
41415
+ "description": "A toggletip is triggered by clicking a trigger element.\n\nIt can contain interactive content and can be closed by\nclicking outside the toggletip or pressing the escape key.\n\nIt can have optional close button to close the toggletip.\n\nToggletip component uses `mdc-screenreaderannouncer` internally to\nannounce the toggletip text content with screen readers when the toggletip is shown.\n\n`screenreader-announcer-identity` attribute can be used to provide ID of an element\nin DOM to which announcement elements are added. If not set, a visually hidden\ndiv element is created in DOM to which announcement elements are added.\n\nPlease refer to the `mdc-screenreaderannouncer` component for more details.",
41416
+ "name": "ToggleTip",
40877
41417
  "cssProperties": [
40878
41418
  {
40879
- "description": "The maximum width of the tooltip.",
40880
- "name": "--mdc-tooltip-max-width"
40881
- },
40882
- {
40883
- "description": "The padding of the tooltip.",
40884
- "name": "--mdc-tooltip-padding"
41419
+ "description": "The maximum width of the toggletip.",
41420
+ "name": "--mdc-toggletip-max-width"
40885
41421
  },
40886
41422
  {
40887
- "description": "The text color of the tooltip.",
40888
- "name": "--mdc-tooltip-text-color"
41423
+ "description": "The text color of the toggletip.",
41424
+ "name": "--mdc-toggletip-text-color"
40889
41425
  },
40890
41426
  {
40891
- "description": "The text color of the tooltip when the color is contrast.",
40892
- "name": "--mdc-tooltip-text-color-contrast"
41427
+ "description": "The text color of the toggletip when the color is contrast.",
41428
+ "name": "--mdc-toggletip-text-color-contrast"
40893
41429
  },
40894
41430
  {
40895
41431
  "description": "radius of the arrow border",
@@ -40972,18 +41508,17 @@
40972
41508
  }
40973
41509
  }
40974
41510
  ],
40975
- "members": [
41511
+ "slots": [
40976
41512
  {
40977
- "kind": "field",
40978
- "name": "tooltipType",
40979
- "type": {
40980
- "text": "TooltipType"
40981
- },
40982
- "description": "The type of tooltip.\n- **description** sets aria-describedby on the trigger component which refers to the tooltip id.\n- **label** sets aria-labelledby on the trigger component which refers to the tooltip id.\n- **none** no aria props set on trigger component referring to the tooltip id.",
40983
- "default": "'description'",
40984
- "attribute": "tooltip-type",
40985
- "reflects": true
40986
- },
41513
+ "description": "Default slot for the toggletip content",
41514
+ "name": "",
41515
+ "inheritedFrom": {
41516
+ "name": "Popover",
41517
+ "module": "src/components/popover/popover.component.ts"
41518
+ }
41519
+ }
41520
+ ],
41521
+ "members": [
40987
41522
  {
40988
41523
  "kind": "field",
40989
41524
  "name": "defaultSlotNodes",
@@ -40993,76 +41528,50 @@
40993
41528
  "privacy": "private"
40994
41529
  },
40995
41530
  {
40996
- "kind": "method",
40997
- "name": "getTooltipText",
40998
- "privacy": "private",
40999
- "return": {
41000
- "type": {
41001
- "text": ""
41002
- }
41003
- }
41004
- },
41005
- {
41006
- "kind": "method",
41007
- "name": "setTooltipType",
41008
- "privacy": "private",
41009
- "return": {
41010
- "type": {
41011
- "text": "void"
41012
- }
41531
+ "kind": "field",
41532
+ "name": "screenreaderAnnouncerIdentity",
41533
+ "type": {
41534
+ "text": "string | undefined"
41013
41535
  },
41014
- "parameters": [
41015
- {
41016
- "name": "type",
41017
- "type": {
41018
- "text": "TooltipType"
41019
- },
41020
- "description": "The type to set."
41021
- }
41022
- ],
41023
- "description": "Sets the type attribute for the tooltip component.\nIf the provided type is not included in the TOOLTIP_TYPES,\nit defaults to the value specified in DEFAULTS.TOOLTIP_TYPE."
41536
+ "description": "Set this attribute with the id of the element in the DOM, to which announcement\nelements will be appended.\nIf an id is provided, the announcement elements will be appended to this element.\nIf id is not provided, a visually hidden div element will be created in the DOM.\n\nPlease refer to the `mdc-screenreaderannouncer` component for more details.",
41537
+ "attribute": "screenreader-announcer-identity",
41538
+ "reflects": true
41024
41539
  },
41025
41540
  {
41026
- "kind": "method",
41027
- "name": "onIdUpdated",
41028
- "privacy": "private",
41029
- "return": {
41030
- "type": {
41031
- "text": "Promise<void>"
41032
- }
41541
+ "kind": "field",
41542
+ "name": "placement",
41543
+ "type": {
41544
+ "text": "PopoverPlacement"
41033
41545
  },
41034
- "description": "Updates the tooltip id if it is empty."
41546
+ "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
41547
+ "default": "bottom",
41548
+ "attribute": "placement",
41549
+ "reflects": true,
41550
+ "inheritedFrom": {
41551
+ "name": "Popover",
41552
+ "module": "components/popover/popover.component.js"
41553
+ }
41035
41554
  },
41036
41555
  {
41037
41556
  "kind": "method",
41038
- "name": "onPlacementUpdated",
41557
+ "name": "getToggleTipText",
41039
41558
  "privacy": "private",
41040
41559
  "return": {
41041
41560
  "type": {
41042
- "text": "void"
41561
+ "text": ""
41043
41562
  }
41044
- },
41045
- "description": "Updates the placement attribute if it is not a valid placement.\nOverriding the default from Popover"
41563
+ }
41046
41564
  },
41047
41565
  {
41048
41566
  "kind": "method",
41049
- "name": "onTooltipTypeUpdated",
41567
+ "name": "onPlacementUpdated",
41050
41568
  "privacy": "private",
41051
41569
  "return": {
41052
41570
  "type": {
41053
41571
  "text": "void"
41054
41572
  }
41055
41573
  },
41056
- "parameters": [
41057
- {
41058
- "name": "changedProperties",
41059
- "type": {
41060
- "text": "PropertyValues"
41061
- },
41062
- "description": "The changed properties."
41063
- }
41064
- ],
41065
- "description": "Updates the tooltip type attribute and sets the appropriate aria props on the trigger component."
41574
+ "description": "Updates the placement attribute if it is not a valid placement.\nDefault placement for toggle tip is top."
41066
41575
  },
41067
41576
  {
41068
41577
  "kind": "field",
@@ -41670,21 +42179,6 @@
41670
42179
  "module": "components/popover/popover.component.js"
41671
42180
  }
41672
42181
  },
41673
- {
41674
- "kind": "field",
41675
- "name": "placement",
41676
- "type": {
41677
- "text": "PopoverPlacement"
41678
- },
41679
- "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
41680
- "default": "bottom",
41681
- "attribute": "placement",
41682
- "reflects": true,
41683
- "inheritedFrom": {
41684
- "name": "Popover",
41685
- "module": "components/popover/popover.component.js"
41686
- }
41687
- },
41688
42182
  {
41689
42183
  "kind": "field",
41690
42184
  "name": "color",
@@ -42404,7 +42898,7 @@
42404
42898
  ],
42405
42899
  "events": [
42406
42900
  {
42407
- "description": "(React: onShown) This event is dispatched when the tooltip is shown",
42901
+ "description": "(React: onShown) This event is dispatched when the toggletip is shown",
42408
42902
  "name": "shown",
42409
42903
  "reactName": "onShown",
42410
42904
  "inheritedFrom": {
@@ -42413,7 +42907,7 @@
42413
42907
  }
42414
42908
  },
42415
42909
  {
42416
- "description": "(React: onHidden) This event is dispatched when the tooltip is hidden",
42910
+ "description": "(React: onHidden) This event is dispatched when the toggletip is hidden",
42417
42911
  "name": "hidden",
42418
42912
  "reactName": "onHidden",
42419
42913
  "inheritedFrom": {
@@ -42422,7 +42916,7 @@
42422
42916
  }
42423
42917
  },
42424
42918
  {
42425
- "description": "(React: onCreated) This event is dispatched when the tooltip is created (added to the DOM)",
42919
+ "description": "(React: onCreated) This event is dispatched when the toggletip is created (added to the DOM)",
42426
42920
  "name": "created",
42427
42921
  "reactName": "onCreated",
42428
42922
  "inheritedFrom": {
@@ -42431,7 +42925,7 @@
42431
42925
  }
42432
42926
  },
42433
42927
  {
42434
- "description": "(React: onDestroyed) This event is dispatched when the tooltip is destroyed (removed from the DOM)",
42928
+ "description": "(React: onDestroyed) This event is dispatched when the toggletip is destroyed (removed from the DOM)",
42435
42929
  "name": "destroyed",
42436
42930
  "reactName": "onDestroyed",
42437
42931
  "inheritedFrom": {
@@ -42442,13 +42936,25 @@
42442
42936
  ],
42443
42937
  "attributes": [
42444
42938
  {
42445
- "name": "tooltip-type",
42939
+ "name": "screenreader-announcer-identity",
42446
42940
  "type": {
42447
- "text": "TooltipType"
42941
+ "text": "string | undefined"
42448
42942
  },
42449
- "description": "The type of tooltip.\n- **description** sets aria-describedby on the trigger component which refers to the tooltip id.\n- **label** sets aria-labelledby on the trigger component which refers to the tooltip id.\n- **none** no aria props set on trigger component referring to the tooltip id.",
42450
- "default": "'description'",
42451
- "fieldName": "tooltipType"
42943
+ "description": "Set this attribute with the id of the element in the DOM, to which announcement\nelements will be appended.\nIf an id is provided, the announcement elements will be appended to this element.\nIf id is not provided, a visually hidden div element will be created in the DOM.\n\nPlease refer to the `mdc-screenreaderannouncer` component for more details.",
42944
+ "fieldName": "screenreaderAnnouncerIdentity"
42945
+ },
42946
+ {
42947
+ "name": "placement",
42948
+ "type": {
42949
+ "text": "PopoverPlacement"
42950
+ },
42951
+ "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
42952
+ "default": "bottom",
42953
+ "fieldName": "placement",
42954
+ "inheritedFrom": {
42955
+ "name": "Popover",
42956
+ "module": "src/components/popover/popover.component.ts"
42957
+ }
42452
42958
  },
42453
42959
  {
42454
42960
  "name": "should-focus-trap-wrap",
@@ -42483,33 +42989,20 @@
42483
42989
  },
42484
42990
  "default": "''",
42485
42991
  "description": "The ID of the element that triggers the popover.\nThis attribute is required for the popover to work.",
42486
- "fieldName": "triggerID",
42487
- "inheritedFrom": {
42488
- "name": "Popover",
42489
- "module": "src/components/popover/popover.component.ts"
42490
- }
42491
- },
42492
- {
42493
- "name": "trigger",
42494
- "type": {
42495
- "text": "PopoverTrigger"
42496
- },
42497
- "description": "Determines the events that cause the Popover to show.\nMultiple event names should be separated by spaces.\nFor example to allow both click and hover, use 'click mouseenter' as the trigger.\n- **click**\n- **mouseenter**\n- **focusin**\n- **manual**",
42498
- "default": "click",
42499
- "fieldName": "trigger",
42992
+ "fieldName": "triggerID",
42500
42993
  "inheritedFrom": {
42501
42994
  "name": "Popover",
42502
42995
  "module": "src/components/popover/popover.component.ts"
42503
42996
  }
42504
42997
  },
42505
42998
  {
42506
- "name": "placement",
42999
+ "name": "trigger",
42507
43000
  "type": {
42508
- "text": "PopoverPlacement"
43001
+ "text": "PopoverTrigger"
42509
43002
  },
42510
- "description": "The placement of the popover.\n- **top**\n- **top-start**\n- **top-end**\n- **bottom**\n- **bottom-start**\n- **bottom-end**\n- **left**\n- **left-start**\n- **left-end**\n- **right**\n- **right-start**\n- **right-end**",
42511
- "default": "bottom",
42512
- "fieldName": "placement",
43003
+ "description": "Determines the events that cause the Popover to show.\nMultiple event names should be separated by spaces.\nFor example to allow both click and hover, use 'click mouseenter' as the trigger.\n- **click**\n- **mouseenter**\n- **focusin**\n- **manual**",
43004
+ "default": "click",
43005
+ "fieldName": "trigger",
42513
43006
  "inheritedFrom": {
42514
43007
  "name": "Popover",
42515
43008
  "module": "src/components/popover/popover.component.ts"
@@ -42935,501 +43428,8 @@
42935
43428
  "name": "Popover",
42936
43429
  "module": "/src/components/popover/popover.component"
42937
43430
  },
42938
- "tagName": "mdc-tooltip",
42939
- "jsDoc": "/**\n * A tooltip is triggered by mouse hover or by keyboard focus\n * and will disappear upon mouse exit or focus change.\n *\n * Note: Tooltips cannot contain content that can be focused or interacted with.\n *\n * @tagname mdc-tooltip\n *\n * @event shown - (React: onShown) This event is dispatched when the tooltip is shown\n * @event hidden - (React: onHidden) This event is dispatched when the tooltip is hidden\n * @event created - (React: onCreated) This event is dispatched when the tooltip is created (added to the DOM)\n * @event destroyed - (React: onDestroyed) This event is dispatched when the tooltip is destroyed (removed from the DOM)\n *\n * @cssproperty --mdc-tooltip-max-width - The maximum width of the tooltip.\n * @cssproperty --mdc-tooltip-padding - The padding of the tooltip.\n * @cssproperty --mdc-tooltip-text-color - The text color of the tooltip.\n * @cssproperty --mdc-tooltip-text-color-contrast - The text color of the tooltip when the color is contrast.\n *\n */",
42940
- "customElement": true,
42941
- "slots": [
42942
- {
42943
- "description": "Default slot for the popover content",
42944
- "name": "",
42945
- "inheritedFrom": {
42946
- "name": "Popover",
42947
- "module": "src/components/popover/popover.component.ts"
42948
- }
42949
- }
42950
- ]
42951
- }
42952
- ],
42953
- "exports": [
42954
- {
42955
- "kind": "js",
42956
- "name": "default",
42957
- "declaration": {
42958
- "name": "Tooltip",
42959
- "module": "components/tooltip/tooltip.component.js"
42960
- }
42961
- }
42962
- ]
42963
- },
42964
- {
42965
- "kind": "javascript-module",
42966
- "path": "components/typewriter/typewriter.component.js",
42967
- "declarations": [
42968
- {
42969
- "kind": "class",
42970
- "description": "Typewriter component that creates a typewriter effect on text content.\nIt uses the Text component internally, adding a progressive typing effect.\n\nThe `type` attribute allows changing the text style (passed to the internal Text component).\nThe `tagname` attribute allows changing the tag name of the text element (passed to the internal Text component).\nThe default tag name is `p`.\n\nThe `speed` attribute controls typing speed in milliseconds per character:\n- 'very-slow' = 240ms per character\n- 'slow' = 120ms per character\n- 'normal' = 60ms per character (default)\n- 'fast' = 20ms per character\n- 'very-fast' = 1ms per character\n- Or any numeric string representing milliseconds\n\nAdvanced features:\n- Dynamic speed adjustment during typing\n- Chunked text addition via addTextChunk() method\n- Instant text addition via addInstantTextChunk() method or instant parameter\n- Mixed instant and animated chunks in queue\n- Continues typing in background tabs\n- Performance optimized for large text\n- maxQueueSize to limit memory usage from excessive queuing\n- event handling for typing completion and content changes\n\nThe component includes accessibility features:\n- Screen readers announce the complete text, not character by character\n- Uses aria-live=\"polite\" for dynamic content updates\n- Sets aria-busy during typing animation",
42971
- "name": "Typewriter",
42972
- "cssParts": [
42973
- {
42974
- "description": "Container for the text element",
42975
- "name": "container"
42976
- },
42977
- {
42978
- "description": "The text element (forwarded to mdc-text)",
42979
- "name": "text"
42980
- }
42981
- ],
42982
- "slots": [
42983
- {
42984
- "description": "Default slot for text content",
42985
- "name": ""
42986
- }
42987
- ],
42988
- "members": [
42989
- {
42990
- "kind": "field",
42991
- "name": "type",
42992
- "type": {
42993
- "text": "TextType"
42994
- },
42995
- "privacy": "public",
42996
- "description": "Specifies the text style to be applied to the internal text component.\nUses the same types as the Text component.",
42997
- "default": "body-large-regular",
42998
- "attribute": "type",
42999
- "reflects": true
43000
- },
43001
- {
43002
- "kind": "field",
43003
- "name": "tagname",
43004
- "type": {
43005
- "text": "TagName | undefined"
43006
- },
43007
- "privacy": "public",
43008
- "description": "Specifies the HTML tag name for the text element. The default tag name is `p`.\nThis attribute is optional. When set, it changes the tag name of the internal text element.\n\nAcceptable values include all valid tag names from the Text component.",
43009
- "attribute": "tagname",
43010
- "reflects": true
43011
- },
43012
- {
43013
- "kind": "field",
43014
- "name": "speed",
43015
- "type": {
43016
- "text": "TypewriterSpeed"
43017
- },
43018
- "privacy": "public",
43019
- "description": "Speed of the typewriter effect in milliseconds per character.\nCan be a string preset or a numeric string in milliseconds.\n- 'very-slow' = 240ms per character\n- 'slow' = 120ms per character\n- 'normal' = 60ms per character (default)\n- 'fast' = 20ms per character\n- 'very-fast' = 1ms per character\n- Or any numeric string representing milliseconds (e.g., '100')",
43020
- "default": "'normal' (60ms per character)",
43021
- "attribute": "speed",
43022
- "reflects": true
43023
- },
43024
- {
43025
- "kind": "field",
43026
- "name": "maxQueueSize",
43027
- "type": {
43028
- "text": "number"
43029
- },
43030
- "privacy": "public",
43031
- "description": "Maximum number of text chunks that can be queued before oldest chunks are dropped.\nSet to prevent memory accumulation from excessive queuing.",
43032
- "default": "Number.MAX_SAFE_INTEGER (effectively unlimited)",
43033
- "attribute": "max-queue-size",
43034
- "reflects": true
43035
- },
43036
- {
43037
- "kind": "method",
43038
- "name": "createTimeout",
43039
- "privacy": "private",
43040
- "return": {
43041
- "type": {
43042
- "text": "number"
43043
- }
43044
- },
43045
- "parameters": [
43046
- {
43047
- "name": "callback",
43048
- "type": {
43049
- "text": "() => void"
43050
- }
43051
- },
43052
- {
43053
- "name": "delay",
43054
- "type": {
43055
- "text": "number"
43056
- }
43057
- }
43058
- ],
43059
- "description": "Helper to create tracked setTimeout that will be cleaned up on disconnect"
43060
- },
43061
- {
43062
- "kind": "method",
43063
- "name": "clearAllTimeouts",
43064
- "privacy": "private",
43065
- "return": {
43066
- "type": {
43067
- "text": "void"
43068
- }
43069
- },
43070
- "description": "Clear all pending timeouts"
43071
- },
43072
- {
43073
- "kind": "method",
43074
- "name": "clearQueue",
43075
- "privacy": "public",
43076
- "return": {
43077
- "type": {
43078
- "text": "void"
43079
- }
43080
- },
43081
- "description": "Clears the text chunk queue and stops processing\nUseful for resetting the component state"
43082
- },
43083
- {
43084
- "kind": "method",
43085
- "name": "addTextChunk",
43086
- "privacy": "public",
43087
- "return": {
43088
- "type": {
43089
- "text": "void"
43090
- }
43091
- },
43092
- "parameters": [
43093
- {
43094
- "name": "text",
43095
- "type": {
43096
- "text": "string"
43097
- },
43098
- "description": "The text to add"
43099
- },
43100
- {
43101
- "name": "speed",
43102
- "optional": true,
43103
- "type": {
43104
- "text": "TypewriterSpeed"
43105
- },
43106
- "description": "Optional speed override for this chunk"
43107
- },
43108
- {
43109
- "name": "instant",
43110
- "optional": true,
43111
- "type": {
43112
- "text": "boolean"
43113
- },
43114
- "description": "If true, text appears instantly without animation"
43115
- }
43116
- ],
43117
- "description": "Adds a chunk of text to be typed out, optionally with a different speed"
43118
- },
43119
- {
43120
- "kind": "method",
43121
- "name": "addInstantTextChunk",
43122
- "privacy": "public",
43123
- "return": {
43124
- "type": {
43125
- "text": "void"
43126
- }
43127
- },
43128
- "parameters": [
43129
- {
43130
- "name": "text",
43131
- "type": {
43132
- "text": "string"
43133
- },
43134
- "description": "The text to add instantly"
43135
- }
43136
- ],
43137
- "description": "Adds a chunk of text instantly without typing animation"
43138
- },
43139
- {
43140
- "kind": "method",
43141
- "name": "processChunkQueue",
43142
- "privacy": "private",
43143
- "return": {
43144
- "type": {
43145
- "text": "void"
43146
- }
43147
- },
43148
- "description": "Processes all chunks in the queue"
43149
- },
43150
- {
43151
- "kind": "method",
43152
- "name": "processNextChunk",
43153
- "privacy": "private",
43154
- "return": {
43155
- "type": {
43156
- "text": "void"
43157
- }
43158
- },
43159
- "description": "Processes the next chunk in the queue"
43160
- },
43161
- {
43162
- "kind": "method",
43163
- "name": "getTypingDelayMs",
43164
- "privacy": "private",
43165
- "return": {
43166
- "type": {
43167
- "text": "number"
43168
- }
43169
- },
43170
- "description": "Gets the typing delay in milliseconds per character"
43171
- },
43172
- {
43173
- "kind": "method",
43174
- "name": "captureAndProcessContent",
43175
- "privacy": "private",
43176
- "return": {
43177
- "type": {
43178
- "text": "void"
43179
- }
43180
- },
43181
- "description": "Captures slot content and starts typewriter animation"
43182
- },
43183
- {
43184
- "kind": "method",
43185
- "name": "startTypingAnimation",
43186
- "privacy": "private",
43187
- "return": {
43188
- "type": {
43189
- "text": "void"
43190
- }
43191
- },
43192
- "parameters": [
43193
- {
43194
- "name": "onComplete",
43195
- "optional": true,
43196
- "type": {
43197
- "text": "() => void"
43198
- }
43199
- }
43200
- ],
43201
- "description": "Starts the typewriter animation"
43202
- },
43203
- {
43204
- "kind": "method",
43205
- "name": "clearTypingAnimation",
43206
- "privacy": "private",
43207
- "return": {
43208
- "type": {
43209
- "text": "void"
43210
- }
43211
- },
43212
- "description": "Clears the typing animation timeout"
43213
- },
43214
- {
43215
- "kind": "method",
43216
- "name": "handleSlotChange",
43217
- "privacy": "private",
43218
- "return": {
43219
- "type": {
43220
- "text": "void"
43221
- }
43222
- },
43223
- "description": "Handler for slotchange event"
43224
- }
43225
- ],
43226
- "events": [
43227
- {
43228
- "type": {
43229
- "text": "CustomEvent"
43230
- }
43231
- },
43232
- {
43233
- "description": "(React: onTypingComplete) Fired when the typewriter finishes typing all content. Detail: \\{ finalContent: string \\}",
43234
- "name": "typing-complete",
43235
- "reactName": "onTypingComplete"
43236
- },
43237
- {
43238
- "description": "(React: onChange) Fired when the content of the typewriter changes. Detail: \\{ content: string, isTyping: boolean \\}",
43239
- "name": "change",
43240
- "reactName": "onChange"
43241
- }
43242
- ],
43243
- "attributes": [
43244
- {
43245
- "name": "type",
43246
- "type": {
43247
- "text": "TextType"
43248
- },
43249
- "description": "Specifies the text style to be applied to the internal text component.\nUses the same types as the Text component.",
43250
- "default": "body-large-regular",
43251
- "fieldName": "type"
43252
- },
43253
- {
43254
- "name": "tagname",
43255
- "type": {
43256
- "text": "TagName | undefined"
43257
- },
43258
- "description": "Specifies the HTML tag name for the text element. The default tag name is `p`.\nThis attribute is optional. When set, it changes the tag name of the internal text element.\n\nAcceptable values include all valid tag names from the Text component.",
43259
- "fieldName": "tagname"
43260
- },
43261
- {
43262
- "name": "speed",
43263
- "type": {
43264
- "text": "TypewriterSpeed"
43265
- },
43266
- "description": "Speed of the typewriter effect in milliseconds per character.\nCan be a string preset or a numeric string in milliseconds.\n- 'very-slow' = 240ms per character\n- 'slow' = 120ms per character\n- 'normal' = 60ms per character (default)\n- 'fast' = 20ms per character\n- 'very-fast' = 1ms per character\n- Or any numeric string representing milliseconds (e.g., '100')",
43267
- "default": "'normal' (60ms per character)",
43268
- "fieldName": "speed"
43269
- },
43270
- {
43271
- "name": "max-queue-size",
43272
- "type": {
43273
- "text": "number"
43274
- },
43275
- "description": "Maximum number of text chunks that can be queued before oldest chunks are dropped.\nSet to prevent memory accumulation from excessive queuing.",
43276
- "default": "Number.MAX_SAFE_INTEGER (effectively unlimited)",
43277
- "fieldName": "maxQueueSize"
43278
- }
43279
- ],
43280
- "superclass": {
43281
- "name": "Component",
43282
- "module": "/src/models"
43283
- },
43284
- "tagName": "mdc-typewriter",
43285
- "jsDoc": "/**\n * Typewriter component that creates a typewriter effect on text content.\n * It uses the Text component internally, adding a progressive typing effect.\n *\n * The `type` attribute allows changing the text style (passed to the internal Text component).\n * The `tagname` attribute allows changing the tag name of the text element (passed to the internal Text component).\n * The default tag name is `p`.\n *\n * The `speed` attribute controls typing speed in milliseconds per character:\n * - 'very-slow' = 240ms per character\n * - 'slow' = 120ms per character\n * - 'normal' = 60ms per character (default)\n * - 'fast' = 20ms per character\n * - 'very-fast' = 1ms per character\n * - Or any numeric string representing milliseconds\n *\n * Advanced features:\n * - Dynamic speed adjustment during typing\n * - Chunked text addition via addTextChunk() method\n * - Instant text addition via addInstantTextChunk() method or instant parameter\n * - Mixed instant and animated chunks in queue\n * - Continues typing in background tabs\n * - Performance optimized for large text\n * - maxQueueSize to limit memory usage from excessive queuing\n * - event handling for typing completion and content changes\n *\n * The component includes accessibility features:\n * - Screen readers announce the complete text, not character by character\n * - Uses aria-live=\"polite\" for dynamic content updates\n * - Sets aria-busy during typing animation\n *\n * @dependency mdc-text\n *\n * @tagname mdc-typewriter\n * @slot - Default slot for text content\n *\n * @csspart container - Container for the text element\n * @csspart text - The text element (forwarded to mdc-text)\n *\n * @event typing-complete - (React: onTypingComplete) Fired when the typewriter finishes typing all content.\n * Detail: \\{ finalContent: string \\}\n * @event change - (React: onChange) Fired when the content of the typewriter changes.\n * Detail: \\{ content: string, isTyping: boolean \\}\n */",
43286
- "customElement": true
43287
- }
43288
- ],
43289
- "exports": [
43290
- {
43291
- "kind": "js",
43292
- "name": "default",
43293
- "declaration": {
43294
- "name": "Typewriter",
43295
- "module": "components/typewriter/typewriter.component.js"
43296
- }
43297
- }
43298
- ]
43299
- },
43300
- {
43301
- "kind": "javascript-module",
43302
- "path": "components/virtualizedlist/virtualizedlist.component.js",
43303
- "declarations": [
43304
- {
43305
- "kind": "class",
43306
- "description": "`mdc-virtualizedlist` component for creating custom virtualized lists.\nIMPORTANT: This component does not create it's own list/list items.\nUse the setlistdata callback prop to update client state in order to\nPass list/listitems as a child of this component, which this will virtuailze\nThis implementation handles dynamic lists as well as fixed sized lists.\nPlease refer to [Tanstack Virtual Docs](https://tanstack.com/virtual/latest) for more in depth documentation.",
43307
- "name": "VirtualizedList",
43308
- "slots": [
43309
- {
43310
- "description": "Client side List with nested list items.",
43311
- "name": ""
43312
- }
43313
- ],
43314
- "members": [
43315
- {
43316
- "kind": "field",
43317
- "name": "virtualizerProps",
43318
- "type": {
43319
- "text": "VirtualizerProps"
43320
- },
43321
- "description": "Object that sets and updates the virtualizer with any relevant props.\nThere are two required object props in order to get virtualization to work properly.\ncount - The length of your list that you are virtualizing.\nAs your list grows/shrinks, this component must be updated with the appropriate value\n(Same with any other updated prop).\nestimateSize - A function that returns the estimated size of your items.\nIf your list is fixed, this will just be the size of your items.\nIf your list is dynamic, try to return approximate the size of each item.\n\nA full list of possible props can be in\n[Tanstack Virtualizer API Docs](https://tanstack.com/virtual/latest/docs/api/virtualizer)",
43322
- "attribute": "virtualizerprops"
43323
- },
43324
- {
43325
- "kind": "field",
43326
- "name": "setlistdata",
43327
- "type": {
43328
- "text": "(({ virtualItems, measureElement, listStyle }: SetListDataProps) => void) | null"
43329
- },
43330
- "description": "Callback that gets envoked when updates to the virtualizer interally occur.\nThis must be implemented in such a way that this function will trigger update to parent.\n\nvirtualItems - Array that will be what the client displays on screen. Use this to render\na List of your choosing with these items nested inside as your ListItems.\nmeasureElement - Ref to pass to each ListItem rendered client side.\nEach ListItem should also be be passed key and a data-index (which can be found on the virtualItem).\nlistStyle - This should be passed as the style attribute to your List.",
43331
- "default": "null",
43332
- "attribute": "setlistdata"
43333
- },
43334
- {
43335
- "kind": "field",
43336
- "name": "scrollElementRef",
43337
- "type": {
43338
- "text": "Ref<HTMLDivElement>"
43339
- },
43340
- "privacy": "public"
43341
- },
43342
- {
43343
- "kind": "field",
43344
- "name": "virtualizer",
43345
- "type": {
43346
- "text": "Virtualizer<Element, Element> | null"
43347
- },
43348
- "privacy": "public",
43349
- "default": "null"
43350
- },
43351
- {
43352
- "kind": "field",
43353
- "name": "virtualItems",
43354
- "type": {
43355
- "text": "Array<VirtualItem>"
43356
- },
43357
- "privacy": "public",
43358
- "default": "[]"
43359
- },
43360
- {
43361
- "kind": "method",
43362
- "name": "handleScroll",
43363
- "privacy": "private",
43364
- "return": {
43365
- "type": {
43366
- "text": "void"
43367
- }
43368
- },
43369
- "parameters": [
43370
- {
43371
- "name": "event",
43372
- "type": {
43373
- "text": "Event"
43374
- }
43375
- }
43376
- ],
43377
- "description": "Refires the scroll event from the internal scroll container to the host element"
43378
- },
43379
- {
43380
- "kind": "field",
43381
- "name": "virtualizerController",
43382
- "type": {
43383
- "text": "null"
43384
- },
43385
- "default": "null"
43386
- },
43387
- {
43388
- "kind": "field",
43389
- "name": "onscroll",
43390
- "type": {
43391
- "text": "null"
43392
- },
43393
- "default": "null"
43394
- }
43395
- ],
43396
- "events": [
43397
- {
43398
- "type": {
43399
- "text": "EventConstructor"
43400
- }
43401
- },
43402
- {
43403
- "description": "(React: onScroll) Event that gets called when user scrolls inside of list.",
43404
- "name": "scroll",
43405
- "reactName": "onScroll"
43406
- }
43407
- ],
43408
- "attributes": [
43409
- {
43410
- "name": "virtualizerprops",
43411
- "type": {
43412
- "text": "VirtualizerProps"
43413
- },
43414
- "description": "Object that sets and updates the virtualizer with any relevant props.\nThere are two required object props in order to get virtualization to work properly.\ncount - The length of your list that you are virtualizing.\nAs your list grows/shrinks, this component must be updated with the appropriate value\n(Same with any other updated prop).\nestimateSize - A function that returns the estimated size of your items.\nIf your list is fixed, this will just be the size of your items.\nIf your list is dynamic, try to return approximate the size of each item.\n\nA full list of possible props can be in\n[Tanstack Virtualizer API Docs](https://tanstack.com/virtual/latest/docs/api/virtualizer)",
43415
- "fieldName": "virtualizerProps"
43416
- },
43417
- {
43418
- "name": "setlistdata",
43419
- "type": {
43420
- "text": "(({ virtualItems, measureElement, listStyle }: SetListDataProps) => void) | null"
43421
- },
43422
- "description": "Callback that gets envoked when updates to the virtualizer interally occur.\nThis must be implemented in such a way that this function will trigger update to parent.\n\nvirtualItems - Array that will be what the client displays on screen. Use this to render\na List of your choosing with these items nested inside as your ListItems.\nmeasureElement - Ref to pass to each ListItem rendered client side.\nEach ListItem should also be be passed key and a data-index (which can be found on the virtualItem).\nlistStyle - This should be passed as the style attribute to your List.",
43423
- "default": "null",
43424
- "fieldName": "setlistdata"
43425
- }
43426
- ],
43427
- "superclass": {
43428
- "name": "Component",
43429
- "module": "/src/models"
43430
- },
43431
- "tagName": "mdc-virtualizedlist",
43432
- "jsDoc": "/**\n * `mdc-virtualizedlist` component for creating custom virtualized lists.\n * IMPORTANT: This component does not create it's own list/list items.\n * Use the setlistdata callback prop to update client state in order to\n * Pass list/listitems as a child of this component, which this will virtuailze\n * This implementation handles dynamic lists as well as fixed sized lists.\n * Please refer to [Tanstack Virtual Docs](https://tanstack.com/virtual/latest) for more in depth documentation.\n *\n * @tagname mdc-virtualizedlist\n *\n * @event scroll - (React: onScroll) Event that gets called when user scrolls inside of list.\n *\n * @slot - Client side List with nested list items.\n */",
43431
+ "tagName": "mdc-toggletip",
43432
+ "jsDoc": "/**\n * A toggletip is triggered by clicking a trigger element.\n *\n * It can contain interactive content and can be closed by\n * clicking outside the toggletip or pressing the escape key.\n *\n * It can have optional close button to close the toggletip.\n *\n * Toggletip component uses `mdc-screenreaderannouncer` internally to\n * announce the toggletip text content with screen readers when the toggletip is shown.\n *\n * `screenreader-announcer-identity` attribute can be used to provide ID of an element\n * in DOM to which announcement elements are added. If not set, a visually hidden\n * div element is created in DOM to which announcement elements are added.\n *\n * Please refer to the `mdc-screenreaderannouncer` component for more details.\n *\n * @dependency mdc-screenreaderannouncer\n * @dependency mdc-button\n *\n * @tagname mdc-toggletip\n *\n * @event shown - (React: onShown) This event is dispatched when the toggletip is shown\n * @event hidden - (React: onHidden) This event is dispatched when the toggletip is hidden\n * @event created - (React: onCreated) This event is dispatched when the toggletip is created (added to the DOM)\n * @event destroyed - (React: onDestroyed) This event is dispatched when the toggletip\n * is destroyed (removed from the DOM)\n *\n * @cssproperty --mdc-toggletip-max-width - The maximum width of the toggletip.\n * @cssproperty --mdc-toggletip-text-color - The text color of the toggletip.\n * @cssproperty --mdc-toggletip-text-color-contrast - The text color of the toggletip\n * when the color is contrast.\n *\n * @slot - Default slot for the toggletip content\n */",
43433
43433
  "customElement": true
43434
43434
  }
43435
43435
  ],
@@ -43438,8 +43438,8 @@
43438
43438
  "kind": "js",
43439
43439
  "name": "default",
43440
43440
  "declaration": {
43441
- "name": "VirtualizedList",
43442
- "module": "components/virtualizedlist/virtualizedlist.component.js"
43441
+ "name": "ToggleTip",
43442
+ "module": "components/toggletip/toggletip.component.js"
43443
43443
  }
43444
43444
  }
43445
43445
  ]