@momentum-design/components 0.118.6 → 0.120.0

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.
@@ -19846,79 +19846,64 @@
19846
19846
  },
19847
19847
  {
19848
19848
  "kind": "javascript-module",
19849
- "path": "components/linkbutton/linkbutton.component.js",
19849
+ "path": "components/linksimple/linksimple.component.js",
19850
19850
  "declarations": [
19851
19851
  {
19852
19852
  "kind": "class",
19853
- "description": "`mdc-linkbutton` visually mimics a hyperlink while functioning as a button. It blends the appearance of `mdc-link` with the accessibility and interaction capabilities of `mdc-button`.\n\n### Features:\n- Looks like a link, behaves like a button.\n- Supports slots for a text label and an optional trailing icon.\n- Inherits accessibility and keyboard interaction behavior from `mdc-buttonsimple`.",
19854
- "name": "LinkButton",
19853
+ "description": "`mdc-linksimple` is a lightweight link component that can be used to navigate\nwithin the application or to an external URL. It does not have any predefined default size.\n\nThe `children` of the `mdc-linksimple` component can be customized to suit\ndifferent use cases, including text, icons, or other inline content. For the child to be an icon,\nthe `mdc-icon` component should be used to render.",
19854
+ "name": "Linksimple",
19855
19855
  "cssProperties": [
19856
19856
  {
19857
- "description": "Border radius of the linkbutton.",
19857
+ "description": "Border radius of the link.",
19858
19858
  "name": "--mdc-link-border-radius"
19859
19859
  },
19860
19860
  {
19861
- "description": "Color of the linkbutton’s child content in the active state.",
19861
+ "description": "Color of the link’s child content in the active state.",
19862
19862
  "name": "--mdc-link-color-active"
19863
19863
  },
19864
19864
  {
19865
- "description": "Color of the linkbutton’s child content in the disabled state.",
19865
+ "description": "Color of the link’s child content in the disabled state.",
19866
19866
  "name": "--mdc-link-color-disabled"
19867
19867
  },
19868
19868
  {
19869
- "description": "Color of the linkbutton’s child content in the hover state.",
19869
+ "description": "Color of the link’s child content in the hover state.",
19870
19870
  "name": "--mdc-link-color-hover"
19871
19871
  },
19872
19872
  {
19873
- "description": "Color of the linkbutton’s child content in the normal state.",
19873
+ "description": "Color of the link’s child content in the normal state.",
19874
19874
  "name": "--mdc-link-color-normal"
19875
19875
  },
19876
19876
  {
19877
- "description": "Color of the inverted linkbutton’s child content in the active state.",
19877
+ "description": "Color of the inverted link’s child content in the active state.",
19878
19878
  "name": "--mdc-link-inverted-color-active"
19879
19879
  },
19880
19880
  {
19881
- "description": "Color of the inverted linkbutton’s child content in the disabled state.",
19881
+ "description": "Color of the inverted link’s child content in the disabled state.",
19882
19882
  "name": "--mdc-link-inverted-color-disabled"
19883
19883
  },
19884
19884
  {
19885
- "description": "Color of the inverted linkbutton’s child content in the hover state.",
19885
+ "description": "Color of the inverted link’s child content in the hover state.",
19886
19886
  "name": "--mdc-link-inverted-color-hover"
19887
19887
  },
19888
19888
  {
19889
- "description": "Color of the inverted linkbutton’s child content in the normal state.",
19889
+ "description": "Color of the inverted link’s child content in the normal state.",
19890
19890
  "name": "--mdc-link-inverted-color-normal"
19891
19891
  }
19892
19892
  ],
19893
- "slots": [
19893
+ "cssParts": [
19894
19894
  {
19895
- "description": "Text label of the linkbutton.",
19896
- "name": ""
19895
+ "description": "The anchor element that wraps the linksimple content.",
19896
+ "name": "anchor"
19897
19897
  }
19898
19898
  ],
19899
19899
  "members": [
19900
- {
19901
- "kind": "field",
19902
- "name": "size",
19903
- "type": {
19904
- "text": "ButtonSize"
19905
- },
19906
- "description": "Sets the size of the linkbutton.\nAcceptable values: \n- 12\n- 14\n- 16",
19907
- "default": "16",
19908
- "attribute": "size",
19909
- "reflects": true,
19910
- "inheritedFrom": {
19911
- "name": "Buttonsimple",
19912
- "module": "components/buttonsimple/buttonsimple.component.js"
19913
- }
19914
- },
19915
19900
  {
19916
19901
  "kind": "field",
19917
19902
  "name": "inline",
19918
19903
  "type": {
19919
19904
  "text": "boolean"
19920
19905
  },
19921
- "description": "The linkbutton can be inline or standalone.",
19906
+ "description": "The link can be inline or standalone.",
19922
19907
  "default": "false",
19923
19908
  "attribute": "inline",
19924
19909
  "reflects": true
@@ -19929,440 +19914,273 @@
19929
19914
  "type": {
19930
19915
  "text": "boolean"
19931
19916
  },
19932
- "description": "The linkbutton color can be inverted by setting the inverted attribute to true.",
19917
+ "description": "The link color can be inverted by setting the inverted attribute to true.",
19933
19918
  "default": "false",
19934
19919
  "attribute": "inverted",
19935
19920
  "reflects": true
19936
19921
  },
19937
- {
19938
- "kind": "method",
19939
- "name": "setSize",
19940
- "privacy": "private",
19941
- "parameters": [
19942
- {
19943
- "name": "size",
19944
- "type": {
19945
- "text": "LinkButtonSize"
19946
- },
19947
- "description": "The desired link size."
19948
- }
19949
- ],
19950
- "description": "Sets the `size` attribute for the linkbutton, falling back to the default if the value is invalid."
19951
- },
19952
19922
  {
19953
19923
  "kind": "field",
19954
- "name": "iconName",
19924
+ "name": "href",
19955
19925
  "type": {
19956
- "text": "IconNames | undefined"
19926
+ "text": "string | undefined"
19957
19927
  },
19958
- "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
19959
- "attribute": "icon-name",
19960
- "inheritedFrom": {
19961
- "name": "IconNameMixin",
19962
- "module": "utils/mixins/IconNameMixin.js"
19963
- }
19928
+ "description": "Href for navigation. The URL that the hyperlink points to",
19929
+ "attribute": "href",
19930
+ "reflects": true
19964
19931
  },
19965
19932
  {
19966
19933
  "kind": "field",
19967
- "name": "autoFocusOnMount",
19934
+ "name": "target",
19968
19935
  "type": {
19969
- "text": "boolean"
19936
+ "text": "string"
19970
19937
  },
19971
- "default": "false",
19972
- "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.",
19973
- "attribute": "auto-focus-on-mount",
19974
- "reflects": true,
19975
- "inheritedFrom": {
19976
- "name": "Buttonsimple",
19977
- "module": "components/buttonsimple/buttonsimple.component.js"
19978
- }
19938
+ "default": "'_self'",
19939
+ "description": "Optional target: _blank, _self, _parent, _top and _unfencedTop",
19940
+ "attribute": "target",
19941
+ "reflects": true
19979
19942
  },
19980
19943
  {
19981
19944
  "kind": "field",
19982
- "name": "tabIndex",
19945
+ "name": "rel",
19983
19946
  "type": {
19984
- "text": "number"
19947
+ "text": "string | undefined"
19985
19948
  },
19986
- "default": "0",
19987
- "description": "This property specifies the tab order of the element.",
19988
- "attribute": "tabIndex",
19989
- "reflects": true,
19990
- "inheritedFrom": {
19991
- "name": "Buttonsimple",
19992
- "module": "components/buttonsimple/buttonsimple.component.js"
19993
- }
19949
+ "description": "Optional rel attribute that defines the relationship of the linked URL as space-separated link types.",
19950
+ "attribute": "rel",
19951
+ "reflects": true
19994
19952
  },
19995
19953
  {
19996
19954
  "kind": "field",
19997
- "name": "disabled",
19955
+ "name": "download",
19998
19956
  "type": {
19999
- "text": "boolean | undefined"
19957
+ "text": "string | undefined"
20000
19958
  },
20001
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
20002
- "default": "undefined",
20003
- "attribute": "disabled",
20004
- "reflects": true,
20005
- "inheritedFrom": {
20006
- "name": "Buttonsimple",
20007
- "module": "components/buttonsimple/buttonsimple.component.js"
20008
- }
19959
+ "description": "Optional download attribute to instruct browsers to download the linked resource.",
19960
+ "attribute": "download",
19961
+ "reflects": true
20009
19962
  },
20010
19963
  {
20011
19964
  "kind": "field",
20012
- "name": "active",
19965
+ "name": "ping",
20013
19966
  "type": {
20014
- "text": "boolean | undefined"
19967
+ "text": "string | undefined"
20015
19968
  },
20016
- "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.",
20017
- "default": "undefined",
20018
- "attribute": "active",
20019
- "reflects": true,
20020
- "inheritedFrom": {
20021
- "name": "Buttonsimple",
20022
- "module": "components/buttonsimple/buttonsimple.component.js"
20023
- }
19969
+ "description": "Optional ping attribute that defines a space-separated list of URLs to be notified if the link is followed.",
19970
+ "attribute": "ping",
19971
+ "reflects": true
20024
19972
  },
20025
19973
  {
20026
19974
  "kind": "field",
20027
- "name": "softDisabled",
19975
+ "name": "hreflang",
20028
19976
  "type": {
20029
- "text": "boolean | undefined"
19977
+ "text": "string | undefined"
20030
19978
  },
20031
- "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.",
20032
- "default": "undefined",
20033
- "attribute": "soft-disabled",
20034
- "reflects": true,
20035
- "inheritedFrom": {
20036
- "name": "Buttonsimple",
20037
- "module": "components/buttonsimple/buttonsimple.component.js"
20038
- }
19979
+ "description": "Optional hreflang attribute specifying the language of the linked resource.",
19980
+ "attribute": "hreflang",
19981
+ "reflects": true
20039
19982
  },
20040
19983
  {
20041
19984
  "kind": "field",
20042
- "name": "role",
19985
+ "name": "type",
20043
19986
  "type": {
20044
- "text": "RoleType"
19987
+ "text": "string | undefined"
20045
19988
  },
20046
- "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.",
20047
- "default": "button",
20048
- "attribute": "role",
20049
- "reflects": true,
20050
- "inheritedFrom": {
20051
- "name": "Buttonsimple",
20052
- "module": "components/buttonsimple/buttonsimple.component.js"
20053
- }
19989
+ "description": "Optional type attribute indicating the MIME type of the linked resource.",
19990
+ "attribute": "type",
19991
+ "reflects": true
20054
19992
  },
20055
19993
  {
20056
19994
  "kind": "field",
20057
- "name": "ariaStateKey",
19995
+ "name": "referrerpolicy",
20058
19996
  "type": {
20059
19997
  "text": "string | undefined"
20060
19998
  },
20061
- "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`",
20062
- "default": "'aria-pressed' (when)",
20063
- "attribute": "ariaStateKey",
20064
- "reflects": true,
20065
- "inheritedFrom": {
20066
- "name": "Buttonsimple",
20067
- "module": "components/buttonsimple/buttonsimple.component.js"
20068
- }
19999
+ "description": "Optional referrerpolicy attribute specifying how much referrer information to send.",
20000
+ "attribute": "referrerpolicy",
20001
+ "reflects": true
20069
20002
  },
20070
20003
  {
20071
- "kind": "field",
20072
- "name": "type",
20073
- "type": {
20074
- "text": "ButtonType"
20004
+ "kind": "method",
20005
+ "name": "handleNavigation",
20006
+ "privacy": "protected",
20007
+ "return": {
20008
+ "type": {
20009
+ "text": "void"
20010
+ }
20075
20011
  },
20076
- "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.",
20077
- "default": "button",
20078
- "attribute": "type",
20079
- "reflects": true,
20080
- "inheritedFrom": {
20081
- "name": "Buttonsimple",
20082
- "module": "components/buttonsimple/buttonsimple.component.js"
20083
- }
20012
+ "parameters": [
20013
+ {
20014
+ "name": "e",
20015
+ "type": {
20016
+ "text": "MouseEvent | KeyboardEvent"
20017
+ }
20018
+ }
20019
+ ]
20020
+ },
20021
+ {
20022
+ "kind": "method",
20023
+ "name": "setDisabled",
20024
+ "privacy": "private",
20025
+ "parameters": [
20026
+ {
20027
+ "name": "disabled",
20028
+ "type": {
20029
+ "text": "boolean"
20030
+ },
20031
+ "description": "Whether the element should be disabled"
20032
+ }
20033
+ ],
20034
+ "description": "Sets or removes `aria-disabled` and updates `tabIndex` to reflect\nthe disabled state. When disabled, the element becomes unfocusable;\nwhen enabled, the previous `tabIndex` is restored."
20084
20035
  },
20085
20036
  {
20086
20037
  "kind": "field",
20087
- "name": "name",
20038
+ "name": "dataAriaLabel",
20088
20039
  "type": {
20089
- "text": "string | undefined"
20040
+ "text": "string | null"
20090
20041
  },
20091
- "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.",
20092
- "attribute": "name",
20042
+ "default": "null",
20043
+ "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
20044
+ "attribute": "data-aria-label",
20093
20045
  "reflects": true,
20094
20046
  "inheritedFrom": {
20095
- "name": "Buttonsimple",
20096
- "module": "components/buttonsimple/buttonsimple.component.js"
20047
+ "name": "DataAriaLabelMixin",
20048
+ "module": "utils/mixins/DataAriaLabelMixin.js"
20097
20049
  }
20098
20050
  },
20099
20051
  {
20100
20052
  "kind": "field",
20101
- "name": "value",
20053
+ "name": "disabled",
20102
20054
  "type": {
20103
- "text": "string | undefined"
20055
+ "text": "boolean | undefined"
20104
20056
  },
20105
- "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.",
20106
- "attribute": "value",
20057
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
20058
+ "default": "undefined",
20059
+ "attribute": "disabled",
20107
20060
  "reflects": true,
20108
20061
  "inheritedFrom": {
20109
- "name": "Buttonsimple",
20110
- "module": "components/buttonsimple/buttonsimple.component.js"
20062
+ "name": "DisabledMixin",
20063
+ "module": "utils/mixins/DisabledMixin.js"
20111
20064
  }
20065
+ }
20066
+ ],
20067
+ "events": [
20068
+ {
20069
+ "description": "(React: onClick) Fired when the user activates the buttonLink using a mouse or assistive technology.",
20070
+ "name": "click",
20071
+ "reactName": "onClick"
20112
20072
  },
20113
20073
  {
20114
- "kind": "method",
20115
- "name": "executeAction",
20116
- "privacy": "protected",
20117
- "inheritedFrom": {
20118
- "name": "Buttonsimple",
20119
- "module": "components/buttonsimple/buttonsimple.component.js"
20120
- }
20121
- },
20122
- {
20123
- "kind": "method",
20124
- "name": "setActive",
20125
- "privacy": "protected",
20126
- "parameters": [
20127
- {
20128
- "name": "element",
20129
- "type": {
20130
- "text": "HTMLElement"
20131
- },
20132
- "description": "The button element"
20133
- },
20134
- {
20135
- "name": "active",
20136
- "optional": true,
20137
- "type": {
20138
- "text": "boolean"
20139
- },
20140
- "description": "The active state of the element"
20141
- }
20142
- ],
20143
- "description": "Sets the ariaStateKey attributes based on the active state of the button.",
20144
- "inheritedFrom": {
20145
- "name": "Buttonsimple",
20146
- "module": "components/buttonsimple/buttonsimple.component.js"
20147
- }
20148
- },
20149
- {
20150
- "kind": "method",
20151
- "name": "setSoftDisabled",
20152
- "privacy": "private",
20153
- "parameters": [
20154
- {
20155
- "name": "element",
20156
- "type": {
20157
- "text": "HTMLElement"
20158
- },
20159
- "description": "The button element."
20160
- },
20161
- {
20162
- "name": "softDisabled",
20163
- "optional": true,
20164
- "type": {
20165
- "text": "boolean"
20166
- },
20167
- "description": "The soft-disabled state."
20168
- }
20169
- ],
20170
- "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.",
20171
- "inheritedFrom": {
20172
- "name": "Buttonsimple",
20173
- "module": "components/buttonsimple/buttonsimple.component.js"
20174
- }
20074
+ "description": "(React: onKeyDown) Fired when the user presses a key while the buttonLink has focus.",
20075
+ "name": "keydown",
20076
+ "reactName": "onKeyDown"
20175
20077
  },
20176
20078
  {
20177
- "kind": "method",
20178
- "name": "setDisabled",
20179
- "privacy": "private",
20180
- "parameters": [
20181
- {
20182
- "name": "element",
20183
- "type": {
20184
- "text": "HTMLElement"
20185
- },
20186
- "description": "The button element."
20187
- },
20188
- {
20189
- "name": "disabled",
20190
- "type": {
20191
- "text": "boolean"
20192
- },
20193
- "description": "The disabled state."
20194
- }
20195
- ],
20196
- "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.",
20197
- "inheritedFrom": {
20198
- "name": "Buttonsimple",
20199
- "module": "components/buttonsimple/buttonsimple.component.js"
20200
- }
20079
+ "description": "(React: onFocus) Fired when the buttonLink receives keyboard or mouse focus.",
20080
+ "name": "focus",
20081
+ "reactName": "onFocus"
20201
20082
  },
20202
20083
  {
20203
- "kind": "method",
20204
- "name": "triggerClickEvent",
20205
- "privacy": "private",
20206
- "inheritedFrom": {
20207
- "name": "Buttonsimple",
20208
- "module": "components/buttonsimple/buttonsimple.component.js"
20209
- }
20210
- },
20084
+ "description": "(React: onBlur) Fired when the buttonLink loses keyboard or mouse focus.",
20085
+ "name": "blur",
20086
+ "reactName": "onBlur"
20087
+ }
20088
+ ],
20089
+ "attributes": [
20211
20090
  {
20212
- "kind": "method",
20213
- "name": "handleBlur",
20214
- "privacy": "private",
20215
- "description": "In case the button is pressed and the focus is lost while pressing,\nthe pressed class is removed.",
20216
- "inheritedFrom": {
20217
- "name": "Buttonsimple",
20218
- "module": "components/buttonsimple/buttonsimple.component.js"
20219
- }
20091
+ "name": "inline",
20092
+ "type": {
20093
+ "text": "boolean"
20094
+ },
20095
+ "description": "The link can be inline or standalone.",
20096
+ "default": "false",
20097
+ "fieldName": "inline"
20220
20098
  },
20221
20099
  {
20222
- "kind": "method",
20223
- "name": "handleKeyDown",
20224
- "privacy": "private",
20225
- "parameters": [
20226
- {
20227
- "name": "event",
20228
- "type": {
20229
- "text": "KeyboardEvent"
20230
- },
20231
- "description": "The keyboard event."
20232
- }
20233
- ],
20234
- "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.",
20235
- "inheritedFrom": {
20236
- "name": "Buttonsimple",
20237
- "module": "components/buttonsimple/buttonsimple.component.js"
20238
- }
20100
+ "name": "inverted",
20101
+ "type": {
20102
+ "text": "boolean"
20103
+ },
20104
+ "description": "The link color can be inverted by setting the inverted attribute to true.",
20105
+ "default": "false",
20106
+ "fieldName": "inverted"
20239
20107
  },
20240
20108
  {
20241
- "kind": "method",
20242
- "name": "handleKeyUp",
20243
- "privacy": "private",
20244
- "parameters": [
20245
- {
20246
- "name": "event",
20247
- "type": {
20248
- "text": "KeyboardEvent"
20249
- },
20250
- "description": "The keyboard event."
20251
- }
20252
- ],
20253
- "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.",
20254
- "inheritedFrom": {
20255
- "name": "Buttonsimple",
20256
- "module": "components/buttonsimple/buttonsimple.component.js"
20257
- }
20258
- }
20259
- ],
20260
- "events": [
20261
- {
20262
- "description": "(React: onClick) This event is dispatched when the linkbutton is clicked.",
20263
- "name": "click",
20264
- "reactName": "onClick",
20265
- "inheritedFrom": {
20266
- "name": "Buttonsimple",
20267
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
20268
- }
20109
+ "name": "href",
20110
+ "type": {
20111
+ "text": "string | undefined"
20112
+ },
20113
+ "description": "Href for navigation. The URL that the hyperlink points to",
20114
+ "fieldName": "href"
20269
20115
  },
20270
20116
  {
20271
- "description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the linkbutton.",
20272
- "name": "keydown",
20273
- "reactName": "onKeyDown",
20274
- "inheritedFrom": {
20275
- "name": "Buttonsimple",
20276
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
20277
- }
20117
+ "name": "target",
20118
+ "type": {
20119
+ "text": "string"
20120
+ },
20121
+ "default": "'_self'",
20122
+ "description": "Optional target: _blank, _self, _parent, _top and _unfencedTop",
20123
+ "fieldName": "target"
20278
20124
  },
20279
20125
  {
20280
- "description": "(React: onKeyUp) This event is dispatched when a key is released on the linkbutton.",
20281
- "name": "keyup",
20282
- "reactName": "onKeyUp",
20283
- "inheritedFrom": {
20284
- "name": "Buttonsimple",
20285
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
20286
- }
20126
+ "name": "rel",
20127
+ "type": {
20128
+ "text": "string | undefined"
20129
+ },
20130
+ "description": "Optional rel attribute that defines the relationship of the linked URL as space-separated link types.",
20131
+ "fieldName": "rel"
20287
20132
  },
20288
20133
  {
20289
- "description": "(React: onFocus) This event is dispatched when the linkbutton receives focus.",
20290
- "name": "focus",
20291
- "reactName": "onFocus",
20292
- "inheritedFrom": {
20293
- "name": "Buttonsimple",
20294
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
20295
- }
20296
- }
20297
- ],
20298
- "attributes": [
20299
- {
20300
- "name": "size",
20134
+ "name": "download",
20301
20135
  "type": {
20302
- "text": "ButtonSize"
20136
+ "text": "string | undefined"
20303
20137
  },
20304
- "description": "Sets the size of the linkbutton.\nAcceptable values: \n- 12\n- 14\n- 16",
20305
- "default": "16",
20306
- "fieldName": "size",
20307
- "inheritedFrom": {
20308
- "name": "Buttonsimple",
20309
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
20310
- }
20138
+ "description": "Optional download attribute to instruct browsers to download the linked resource.",
20139
+ "fieldName": "download"
20311
20140
  },
20312
20141
  {
20313
- "name": "inline",
20142
+ "name": "ping",
20314
20143
  "type": {
20315
- "text": "boolean"
20144
+ "text": "string | undefined"
20316
20145
  },
20317
- "description": "The linkbutton can be inline or standalone.",
20318
- "default": "false",
20319
- "fieldName": "inline"
20146
+ "description": "Optional ping attribute that defines a space-separated list of URLs to be notified if the link is followed.",
20147
+ "fieldName": "ping"
20320
20148
  },
20321
20149
  {
20322
- "name": "inverted",
20150
+ "name": "hreflang",
20323
20151
  "type": {
20324
- "text": "boolean"
20152
+ "text": "string | undefined"
20325
20153
  },
20326
- "description": "The linkbutton color can be inverted by setting the inverted attribute to true.",
20327
- "default": "false",
20328
- "fieldName": "inverted"
20154
+ "description": "Optional hreflang attribute specifying the language of the linked resource.",
20155
+ "fieldName": "hreflang"
20329
20156
  },
20330
20157
  {
20331
- "name": "icon-name",
20158
+ "name": "type",
20332
20159
  "type": {
20333
- "text": "IconNames | undefined"
20160
+ "text": "string | undefined"
20334
20161
  },
20335
- "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
20336
- "fieldName": "iconName",
20337
- "inheritedFrom": {
20338
- "name": "IconNameMixin",
20339
- "module": "src/utils/mixins/IconNameMixin.ts"
20340
- }
20162
+ "description": "Optional type attribute indicating the MIME type of the linked resource.",
20163
+ "fieldName": "type"
20341
20164
  },
20342
20165
  {
20343
- "name": "auto-focus-on-mount",
20166
+ "name": "referrerpolicy",
20344
20167
  "type": {
20345
- "text": "boolean"
20168
+ "text": "string | undefined"
20346
20169
  },
20347
- "default": "false",
20348
- "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.",
20349
- "fieldName": "autoFocusOnMount",
20350
- "inheritedFrom": {
20351
- "name": "Buttonsimple",
20352
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
20353
- }
20170
+ "description": "Optional referrerpolicy attribute specifying how much referrer information to send.",
20171
+ "fieldName": "referrerpolicy"
20354
20172
  },
20355
20173
  {
20356
- "name": "tabIndex",
20174
+ "name": "data-aria-label",
20357
20175
  "type": {
20358
- "text": "number"
20176
+ "text": "string | null"
20359
20177
  },
20360
- "default": "0",
20361
- "description": "This property specifies the tab order of the element.",
20362
- "fieldName": "tabIndex",
20178
+ "default": "null",
20179
+ "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
20180
+ "fieldName": "dataAriaLabel",
20363
20181
  "inheritedFrom": {
20364
- "name": "Buttonsimple",
20365
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
20182
+ "name": "DataAriaLabelMixin",
20183
+ "module": "src/utils/mixins/DataAriaLabelMixin.ts"
20366
20184
  }
20367
20185
  },
20368
20186
  {
@@ -20374,112 +20192,252 @@
20374
20192
  "default": "undefined",
20375
20193
  "fieldName": "disabled",
20376
20194
  "inheritedFrom": {
20377
- "name": "Buttonsimple",
20378
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
20195
+ "name": "DisabledMixin",
20196
+ "module": "src/utils/mixins/DisabledMixin.ts"
20379
20197
  }
20198
+ }
20199
+ ],
20200
+ "mixins": [
20201
+ {
20202
+ "name": "DataAriaLabelMixin",
20203
+ "module": "/src/utils/mixins/DataAriaLabelMixin"
20380
20204
  },
20381
20205
  {
20382
- "name": "active",
20206
+ "name": "DisabledMixin",
20207
+ "module": "/src/utils/mixins/DisabledMixin"
20208
+ }
20209
+ ],
20210
+ "superclass": {
20211
+ "name": "Component",
20212
+ "module": "/src/models"
20213
+ },
20214
+ "tagName": "mdc-linksimple",
20215
+ "jsDoc": "/**\n * `mdc-linksimple` is a lightweight link component that can be used to navigate\n * within the application or to an external URL. It does not have any predefined default size.\n *\n * The `children` of the `mdc-linksimple` component can be customized to suit\n * different use cases, including text, icons, or other inline content. For the child to be an icon,\n * the `mdc-icon` component should be used to render.\n *\n * @tagname mdc-linksimple\n *\n * @event click - (React: onClick) Fired when the user activates the buttonLink using a mouse or assistive technology.\n * @event keydown - (React: onKeyDown) Fired when the user presses a key while the buttonLink has focus.\n * @event focus - (React: onFocus) Fired when the buttonLink receives keyboard or mouse focus.\n * @event blur - (React: onBlur) Fired when the buttonLink loses keyboard or mouse focus.\n *\n * @cssproperty --mdc-link-border-radius - Border radius of the link.\n * @cssproperty --mdc-link-color-active - Color of the link’s child content in the active state.\n * @cssproperty --mdc-link-color-disabled - Color of the link’s child content in the disabled state.\n * @cssproperty --mdc-link-color-hover - Color of the link’s child content in the hover state.\n * @cssproperty --mdc-link-color-normal - Color of the link’s child content in the normal state.\n * @cssproperty --mdc-link-inverted-color-active - Color of the inverted link’s child content in the active state.\n * @cssproperty --mdc-link-inverted-color-disabled - Color of the inverted link’s child content in the disabled state.\n * @cssproperty --mdc-link-inverted-color-hover - Color of the inverted link’s child content in the hover state.\n * @cssproperty --mdc-link-inverted-color-normal - Color of the inverted link’s child content in the normal state.\n *\n * @csspart anchor - The anchor element that wraps the linksimple content.\n */",
20216
+ "customElement": true
20217
+ }
20218
+ ],
20219
+ "exports": [
20220
+ {
20221
+ "kind": "js",
20222
+ "name": "default",
20223
+ "declaration": {
20224
+ "name": "Linksimple",
20225
+ "module": "components/linksimple/linksimple.component.js"
20226
+ }
20227
+ }
20228
+ ]
20229
+ },
20230
+ {
20231
+ "kind": "javascript-module",
20232
+ "path": "components/list/list.component.js",
20233
+ "declarations": [
20234
+ {
20235
+ "kind": "class",
20236
+ "description": "mdc-list component is used to display a group of list items. It is used as a container to wrap other list items.\n\nTo add a header to the list, use the `mdc-listheader` component and place it in the `list-header` slot.\n`mdc-listitem` components can be placed in the default slot.",
20237
+ "name": "List",
20238
+ "cssParts": [
20239
+ {
20240
+ "description": "The container slot around the list items",
20241
+ "name": "container"
20242
+ }
20243
+ ],
20244
+ "slots": [
20245
+ {
20246
+ "description": "This is a default/unnamed slot, where listitems can be placed.",
20247
+ "name": "default"
20248
+ },
20249
+ {
20250
+ "description": "This slot is used to pass a header for the list, which can be a `mdc-listheader` component.",
20251
+ "name": "list-header"
20252
+ }
20253
+ ],
20254
+ "members": [
20255
+ {
20256
+ "kind": "field",
20257
+ "name": "loop",
20383
20258
  "type": {
20384
- "text": "boolean | undefined"
20259
+ "text": "'true' | 'false'"
20385
20260
  },
20386
- "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.",
20387
- "default": "undefined",
20388
- "fieldName": "active",
20261
+ "privacy": "public",
20262
+ "description": "Whether to loop navigation when reaching the end of the list.\nIf 'true', pressing the down arrow on the last item will focus the first item,\nand pressing the up arrow on the first item will focus the last item.\nIf 'false', navigation will stop at the first or last item.",
20263
+ "default": "''",
20264
+ "attribute": "loop",
20265
+ "reflects": true
20266
+ },
20267
+ {
20268
+ "kind": "field",
20269
+ "name": "initialFocus",
20270
+ "type": {
20271
+ "text": "number"
20272
+ },
20273
+ "privacy": "public",
20274
+ "description": "The index of the item that should receive focus when the list is first rendered.\nIf the index is out of bounds, the first item (index 0) will receive focus.",
20275
+ "default": "0",
20276
+ "attribute": "initial-focus",
20277
+ "reflects": true
20278
+ },
20279
+ {
20280
+ "kind": "field",
20281
+ "name": "itemsStore",
20282
+ "default": "new ElementStore<ListItem>(this, { isValidItem: this.isValidItem, })"
20283
+ },
20284
+ {
20285
+ "kind": "method",
20286
+ "name": "getCurrentIndex",
20287
+ "privacy": "private",
20288
+ "return": {
20289
+ "type": {
20290
+ "text": ""
20291
+ }
20292
+ },
20293
+ "parameters": [
20294
+ {
20295
+ "name": "target",
20296
+ "type": {
20297
+ "text": "EventTarget | null"
20298
+ },
20299
+ "description": "The target element that triggered the event."
20300
+ }
20301
+ ],
20302
+ "description": "Retrieves the current index of the item that triggered the event.",
20389
20303
  "inheritedFrom": {
20390
- "name": "Buttonsimple",
20391
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
20304
+ "name": "ListNavigationMixin",
20305
+ "module": "utils/mixins/ListNavigationMixin.js"
20392
20306
  }
20393
20307
  },
20394
20308
  {
20395
- "name": "soft-disabled",
20396
- "type": {
20397
- "text": "boolean | undefined"
20398
- },
20399
- "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.",
20400
- "default": "undefined",
20401
- "fieldName": "softDisabled",
20309
+ "kind": "method",
20310
+ "name": "resetTabIndexes",
20311
+ "privacy": "protected",
20312
+ "parameters": [
20313
+ {
20314
+ "name": "index",
20315
+ "type": {
20316
+ "text": "number"
20317
+ },
20318
+ "description": "The index of the currently focused item."
20319
+ }
20320
+ ],
20321
+ "description": "Reset all tabindex to -1 and set the tabindex of the current item to 0",
20402
20322
  "inheritedFrom": {
20403
- "name": "Buttonsimple",
20404
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
20323
+ "name": "ListNavigationMixin",
20324
+ "module": "utils/mixins/ListNavigationMixin.js"
20405
20325
  }
20406
20326
  },
20407
20327
  {
20408
- "name": "role",
20409
- "type": {
20410
- "text": "RoleType"
20328
+ "kind": "method",
20329
+ "name": "resetTabIndexAndSetFocus",
20330
+ "privacy": "protected",
20331
+ "parameters": [
20332
+ {
20333
+ "name": "newIndex",
20334
+ "type": {
20335
+ "text": "number"
20336
+ },
20337
+ "description": "The index of the new item to focus."
20338
+ },
20339
+ {
20340
+ "name": "oldIndex",
20341
+ "optional": true,
20342
+ "type": {
20343
+ "text": "number"
20344
+ },
20345
+ "description": "The index of the currently focused item."
20346
+ },
20347
+ {
20348
+ "name": "focusNewItem",
20349
+ "default": "true",
20350
+ "description": "Call focus() on the new item or not. It should be false during firstUpdate"
20351
+ }
20352
+ ],
20353
+ "description": "Resets the tabindex of the currently focused item and sets focus to a new item.",
20354
+ "return": {
20355
+ "type": {
20356
+ "text": ""
20357
+ }
20411
20358
  },
20412
- "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.",
20413
- "default": "button",
20414
- "fieldName": "role",
20415
20359
  "inheritedFrom": {
20416
- "name": "Buttonsimple",
20417
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
20360
+ "name": "ListNavigationMixin",
20361
+ "module": "utils/mixins/ListNavigationMixin.js"
20418
20362
  }
20419
20363
  },
20420
20364
  {
20421
- "name": "ariaStateKey",
20422
- "type": {
20423
- "text": "string | undefined"
20365
+ "kind": "method",
20366
+ "name": "resolveDirectionKey",
20367
+ "privacy": "private",
20368
+ "parameters": [
20369
+ {
20370
+ "name": "key",
20371
+ "type": {
20372
+ "text": "string"
20373
+ },
20374
+ "description": "The key pressed by the user."
20375
+ },
20376
+ {
20377
+ "name": "isRtl",
20378
+ "type": {
20379
+ "text": "boolean"
20380
+ },
20381
+ "description": "A boolean indicating if the layout is right-to-left (RTL)."
20382
+ }
20383
+ ],
20384
+ "description": "Resolves the key pressed by the user based on the direction of the layout.\nThis method is used to handle keyboard navigation in a right-to-left (RTL) layout.\nIt checks if the layout is RTL and adjusts the arrow keys accordingly.\nFor example, in RTL, the left arrow key behaves like the right arrow key and vice versa.",
20385
+ "return": {
20386
+ "type": {
20387
+ "text": ""
20388
+ }
20424
20389
  },
20425
- "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`",
20426
- "default": "'aria-pressed' (when)",
20427
- "fieldName": "ariaStateKey",
20428
20390
  "inheritedFrom": {
20429
- "name": "Buttonsimple",
20430
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
20391
+ "name": "ListNavigationMixin",
20392
+ "module": "utils/mixins/ListNavigationMixin.js"
20431
20393
  }
20432
20394
  },
20433
20395
  {
20434
- "name": "type",
20435
- "type": {
20436
- "text": "ButtonType"
20437
- },
20438
- "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.",
20439
- "default": "button",
20440
- "fieldName": "type",
20396
+ "kind": "method",
20397
+ "name": "shouldLoop",
20398
+ "privacy": "private",
20441
20399
  "inheritedFrom": {
20442
- "name": "Buttonsimple",
20443
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
20400
+ "name": "ListNavigationMixin",
20401
+ "module": "utils/mixins/ListNavigationMixin.js"
20444
20402
  }
20445
- },
20403
+ }
20404
+ ],
20405
+ "attributes": [
20446
20406
  {
20447
- "name": "name",
20407
+ "name": "loop",
20448
20408
  "type": {
20449
- "text": "string | undefined"
20409
+ "text": "'true' | 'false'"
20450
20410
  },
20451
- "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.",
20452
- "fieldName": "name",
20453
- "inheritedFrom": {
20454
- "name": "Buttonsimple",
20455
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
20456
- }
20411
+ "description": "Whether to loop navigation when reaching the end of the list.\nIf 'true', pressing the down arrow on the last item will focus the first item,\nand pressing the up arrow on the first item will focus the last item.\nIf 'false', navigation will stop at the first or last item.",
20412
+ "default": "''",
20413
+ "fieldName": "loop"
20457
20414
  },
20458
20415
  {
20459
- "name": "value",
20416
+ "name": "initial-focus",
20460
20417
  "type": {
20461
- "text": "string | undefined"
20418
+ "text": "number"
20462
20419
  },
20463
- "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.",
20464
- "fieldName": "value",
20465
- "inheritedFrom": {
20466
- "name": "Buttonsimple",
20467
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
20468
- }
20420
+ "description": "The index of the item that should receive focus when the list is first rendered.\nIf the index is out of bounds, the first item (index 0) will receive focus.",
20421
+ "default": "0",
20422
+ "fieldName": "initialFocus"
20469
20423
  }
20470
20424
  ],
20471
20425
  "mixins": [
20472
20426
  {
20473
- "name": "IconNameMixin",
20474
- "module": "/src/utils/mixins/IconNameMixin"
20427
+ "name": "ListNavigationMixin",
20428
+ "module": "/src/utils/mixins/ListNavigationMixin"
20429
+ },
20430
+ {
20431
+ "name": "CaptureDestroyEventForChildElement",
20432
+ "module": "/src/utils/mixins/lifecycle/CaptureDestroyEventForChildElement"
20475
20433
  }
20476
20434
  ],
20477
20435
  "superclass": {
20478
- "name": "Buttonsimple",
20479
- "module": "/src/components/buttonsimple/buttonsimple.component"
20436
+ "name": "Component",
20437
+ "module": "/src/models"
20480
20438
  },
20481
- "tagName": "mdc-linkbutton",
20482
- "jsDoc": "/**\n * `mdc-linkbutton` visually mimics a hyperlink while functioning as a button. It blends the appearance of `mdc-link` with the accessibility and interaction capabilities of `mdc-button`.\n *\n * ### Features:\n * - Looks like a link, behaves like a button.\n * - Supports slots for a text label and an optional trailing icon.\n * - Inherits accessibility and keyboard interaction behavior from `mdc-buttonsimple`.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-linkbutton\n *\n * @slot - Text label of the linkbutton.\n *\n * @event click - (React: onClick) This event is dispatched when the linkbutton is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the linkbutton.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the linkbutton.\n * @event focus - (React: onFocus) This event is dispatched when the linkbutton receives focus.\n *\n * @cssproperty --mdc-link-border-radius - Border radius of the linkbutton.\n * @cssproperty --mdc-link-color-active - Color of the linkbutton’s child content in the active state.\n * @cssproperty --mdc-link-color-disabled - Color of the linkbutton’s child content in the disabled state.\n * @cssproperty --mdc-link-color-hover - Color of the linkbutton’s child content in the hover state.\n * @cssproperty --mdc-link-color-normal - Color of the linkbutton’s child content in the normal state.\n * @cssproperty --mdc-link-inverted-color-active - Color of the inverted linkbutton’s child content in the active state.\n * @cssproperty --mdc-link-inverted-color-disabled - Color of the inverted linkbutton’s child content in the disabled state.\n * @cssproperty --mdc-link-inverted-color-hover - Color of the inverted linkbutton’s child content in the hover state.\n * @cssproperty --mdc-link-inverted-color-normal - Color of the inverted linkbutton’s child content in the normal state.\n */",
20439
+ "tagName": "mdc-list",
20440
+ "jsDoc": "/**\n * mdc-list component is used to display a group of list items. It is used as a container to wrap other list items.\n *\n * To add a header to the list, use the `mdc-listheader` component and place it in the `list-header` slot.\n * `mdc-listitem` components can be placed in the default slot.\n *\n * @tagname mdc-list\n *\n * @slot default - This is a default/unnamed slot, where listitems can be placed.\n * @slot list-header - This slot is used to pass a header for the list, which can be a `mdc-listheader` component.\n *\n * @csspart container - The container slot around the list items\n */",
20483
20441
  "customElement": true
20484
20442
  }
20485
20443
  ],
@@ -20488,606 +20446,648 @@
20488
20446
  "kind": "js",
20489
20447
  "name": "default",
20490
20448
  "declaration": {
20491
- "name": "LinkButton",
20492
- "module": "components/linkbutton/linkbutton.component.js"
20449
+ "name": "List",
20450
+ "module": "components/list/list.component.js"
20493
20451
  }
20494
20452
  }
20495
20453
  ]
20496
20454
  },
20497
20455
  {
20498
20456
  "kind": "javascript-module",
20499
- "path": "components/linksimple/linksimple.component.js",
20457
+ "path": "components/linkbutton/linkbutton.component.js",
20500
20458
  "declarations": [
20501
20459
  {
20502
20460
  "kind": "class",
20503
- "description": "`mdc-linksimple` is a lightweight link component that can be used to navigate\nwithin the application or to an external URL. It does not have any predefined default size.\n\nThe `children` of the `mdc-linksimple` component can be customized to suit\ndifferent use cases, including text, icons, or other inline content. For the child to be an icon,\nthe `mdc-icon` component should be used to render.",
20504
- "name": "Linksimple",
20461
+ "description": "`mdc-linkbutton` visually mimics a hyperlink while functioning as a button. It blends the appearance of `mdc-link` with the accessibility and interaction capabilities of `mdc-button`.\n\n### Features:\n- Looks like a link, behaves like a button.\n- Supports slots for a text label and an optional trailing icon.\n- Inherits accessibility and keyboard interaction behavior from `mdc-buttonsimple`.",
20462
+ "name": "LinkButton",
20505
20463
  "cssProperties": [
20506
20464
  {
20507
- "description": "Border radius of the link.",
20465
+ "description": "Border radius of the linkbutton.",
20508
20466
  "name": "--mdc-link-border-radius"
20509
20467
  },
20510
20468
  {
20511
- "description": "Color of the link’s child content in the active state.",
20469
+ "description": "Color of the linkbutton’s child content in the active state.",
20512
20470
  "name": "--mdc-link-color-active"
20513
20471
  },
20514
20472
  {
20515
- "description": "Color of the link’s child content in the disabled state.",
20473
+ "description": "Color of the linkbutton’s child content in the disabled state.",
20516
20474
  "name": "--mdc-link-color-disabled"
20517
20475
  },
20518
20476
  {
20519
- "description": "Color of the link’s child content in the hover state.",
20477
+ "description": "Color of the linkbutton’s child content in the hover state.",
20520
20478
  "name": "--mdc-link-color-hover"
20521
20479
  },
20522
20480
  {
20523
- "description": "Color of the link’s child content in the normal state.",
20481
+ "description": "Color of the linkbutton’s child content in the normal state.",
20524
20482
  "name": "--mdc-link-color-normal"
20525
20483
  },
20526
20484
  {
20527
- "description": "Color of the inverted link’s child content in the active state.",
20485
+ "description": "Color of the inverted linkbutton’s child content in the active state.",
20528
20486
  "name": "--mdc-link-inverted-color-active"
20529
20487
  },
20530
20488
  {
20531
- "description": "Color of the inverted link’s child content in the disabled state.",
20489
+ "description": "Color of the inverted linkbutton’s child content in the disabled state.",
20532
20490
  "name": "--mdc-link-inverted-color-disabled"
20533
20491
  },
20534
20492
  {
20535
- "description": "Color of the inverted link’s child content in the hover state.",
20493
+ "description": "Color of the inverted linkbutton’s child content in the hover state.",
20536
20494
  "name": "--mdc-link-inverted-color-hover"
20537
20495
  },
20538
20496
  {
20539
- "description": "Color of the inverted link’s child content in the normal state.",
20497
+ "description": "Color of the inverted linkbutton’s child content in the normal state.",
20540
20498
  "name": "--mdc-link-inverted-color-normal"
20541
20499
  }
20542
20500
  ],
20543
- "cssParts": [
20501
+ "slots": [
20544
20502
  {
20545
- "description": "The anchor element that wraps the linksimple content.",
20546
- "name": "anchor"
20503
+ "description": "Text label of the linkbutton.",
20504
+ "name": ""
20547
20505
  }
20548
20506
  ],
20549
20507
  "members": [
20550
20508
  {
20551
20509
  "kind": "field",
20552
- "name": "inline",
20510
+ "name": "size",
20511
+ "type": {
20512
+ "text": "ButtonSize"
20513
+ },
20514
+ "description": "Sets the size of the linkbutton.\nAcceptable values: \n- 12\n- 14\n- 16",
20515
+ "default": "16",
20516
+ "attribute": "size",
20517
+ "reflects": true,
20518
+ "inheritedFrom": {
20519
+ "name": "Buttonsimple",
20520
+ "module": "components/buttonsimple/buttonsimple.component.js"
20521
+ }
20522
+ },
20523
+ {
20524
+ "kind": "field",
20525
+ "name": "inline",
20526
+ "type": {
20527
+ "text": "boolean"
20528
+ },
20529
+ "description": "The linkbutton can be inline or standalone.",
20530
+ "default": "false",
20531
+ "attribute": "inline",
20532
+ "reflects": true
20533
+ },
20534
+ {
20535
+ "kind": "field",
20536
+ "name": "inverted",
20537
+ "type": {
20538
+ "text": "boolean"
20539
+ },
20540
+ "description": "The linkbutton color can be inverted by setting the inverted attribute to true.",
20541
+ "default": "false",
20542
+ "attribute": "inverted",
20543
+ "reflects": true
20544
+ },
20545
+ {
20546
+ "kind": "method",
20547
+ "name": "setSize",
20548
+ "privacy": "private",
20549
+ "parameters": [
20550
+ {
20551
+ "name": "size",
20552
+ "type": {
20553
+ "text": "LinkButtonSize"
20554
+ },
20555
+ "description": "The desired link size."
20556
+ }
20557
+ ],
20558
+ "description": "Sets the `size` attribute for the linkbutton, falling back to the default if the value is invalid."
20559
+ },
20560
+ {
20561
+ "kind": "field",
20562
+ "name": "iconName",
20563
+ "type": {
20564
+ "text": "IconNames | undefined"
20565
+ },
20566
+ "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
20567
+ "attribute": "icon-name",
20568
+ "inheritedFrom": {
20569
+ "name": "IconNameMixin",
20570
+ "module": "utils/mixins/IconNameMixin.js"
20571
+ }
20572
+ },
20573
+ {
20574
+ "kind": "field",
20575
+ "name": "autoFocusOnMount",
20553
20576
  "type": {
20554
20577
  "text": "boolean"
20555
20578
  },
20556
- "description": "The link can be inline or standalone.",
20557
20579
  "default": "false",
20558
- "attribute": "inline",
20559
- "reflects": true
20580
+ "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.",
20581
+ "attribute": "auto-focus-on-mount",
20582
+ "reflects": true,
20583
+ "inheritedFrom": {
20584
+ "name": "Buttonsimple",
20585
+ "module": "components/buttonsimple/buttonsimple.component.js"
20586
+ }
20560
20587
  },
20561
20588
  {
20562
20589
  "kind": "field",
20563
- "name": "inverted",
20590
+ "name": "tabIndex",
20564
20591
  "type": {
20565
- "text": "boolean"
20592
+ "text": "number"
20566
20593
  },
20567
- "description": "The link color can be inverted by setting the inverted attribute to true.",
20568
- "default": "false",
20569
- "attribute": "inverted",
20570
- "reflects": true
20594
+ "default": "0",
20595
+ "description": "This property specifies the tab order of the element.",
20596
+ "attribute": "tabIndex",
20597
+ "reflects": true,
20598
+ "inheritedFrom": {
20599
+ "name": "Buttonsimple",
20600
+ "module": "components/buttonsimple/buttonsimple.component.js"
20601
+ }
20571
20602
  },
20572
20603
  {
20573
20604
  "kind": "field",
20574
- "name": "href",
20605
+ "name": "disabled",
20575
20606
  "type": {
20576
- "text": "string | undefined"
20607
+ "text": "boolean | undefined"
20577
20608
  },
20578
- "description": "Href for navigation. The URL that the hyperlink points to",
20579
- "attribute": "href",
20580
- "reflects": true
20609
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
20610
+ "default": "undefined",
20611
+ "attribute": "disabled",
20612
+ "reflects": true,
20613
+ "inheritedFrom": {
20614
+ "name": "Buttonsimple",
20615
+ "module": "components/buttonsimple/buttonsimple.component.js"
20616
+ }
20581
20617
  },
20582
20618
  {
20583
20619
  "kind": "field",
20584
- "name": "target",
20620
+ "name": "active",
20585
20621
  "type": {
20586
- "text": "string"
20622
+ "text": "boolean | undefined"
20587
20623
  },
20588
- "default": "'_self'",
20589
- "description": "Optional target: _blank, _self, _parent, _top and _unfencedTop",
20590
- "attribute": "target",
20591
- "reflects": true
20624
+ "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.",
20625
+ "default": "undefined",
20626
+ "attribute": "active",
20627
+ "reflects": true,
20628
+ "inheritedFrom": {
20629
+ "name": "Buttonsimple",
20630
+ "module": "components/buttonsimple/buttonsimple.component.js"
20631
+ }
20592
20632
  },
20593
20633
  {
20594
20634
  "kind": "field",
20595
- "name": "rel",
20635
+ "name": "softDisabled",
20596
20636
  "type": {
20597
- "text": "string | undefined"
20637
+ "text": "boolean | undefined"
20598
20638
  },
20599
- "description": "Optional rel attribute that defines the relationship of the linked URL as space-separated link types.",
20600
- "attribute": "rel",
20601
- "reflects": true
20639
+ "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.",
20640
+ "default": "undefined",
20641
+ "attribute": "soft-disabled",
20642
+ "reflects": true,
20643
+ "inheritedFrom": {
20644
+ "name": "Buttonsimple",
20645
+ "module": "components/buttonsimple/buttonsimple.component.js"
20646
+ }
20602
20647
  },
20603
20648
  {
20604
20649
  "kind": "field",
20605
- "name": "download",
20650
+ "name": "role",
20606
20651
  "type": {
20607
- "text": "string | undefined"
20652
+ "text": "RoleType"
20608
20653
  },
20609
- "description": "Optional download attribute to instruct browsers to download the linked resource.",
20610
- "attribute": "download",
20611
- "reflects": true
20654
+ "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.",
20655
+ "default": "button",
20656
+ "attribute": "role",
20657
+ "reflects": true,
20658
+ "inheritedFrom": {
20659
+ "name": "Buttonsimple",
20660
+ "module": "components/buttonsimple/buttonsimple.component.js"
20661
+ }
20612
20662
  },
20613
20663
  {
20614
20664
  "kind": "field",
20615
- "name": "ping",
20665
+ "name": "ariaStateKey",
20616
20666
  "type": {
20617
20667
  "text": "string | undefined"
20618
20668
  },
20619
- "description": "Optional ping attribute that defines a space-separated list of URLs to be notified if the link is followed.",
20620
- "attribute": "ping",
20621
- "reflects": true
20669
+ "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`",
20670
+ "default": "'aria-pressed' (when)",
20671
+ "attribute": "ariaStateKey",
20672
+ "reflects": true,
20673
+ "inheritedFrom": {
20674
+ "name": "Buttonsimple",
20675
+ "module": "components/buttonsimple/buttonsimple.component.js"
20676
+ }
20622
20677
  },
20623
20678
  {
20624
20679
  "kind": "field",
20625
- "name": "hreflang",
20680
+ "name": "type",
20626
20681
  "type": {
20627
- "text": "string | undefined"
20682
+ "text": "ButtonType"
20628
20683
  },
20629
- "description": "Optional hreflang attribute specifying the language of the linked resource.",
20630
- "attribute": "hreflang",
20631
- "reflects": true
20684
+ "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.",
20685
+ "default": "button",
20686
+ "attribute": "type",
20687
+ "reflects": true,
20688
+ "inheritedFrom": {
20689
+ "name": "Buttonsimple",
20690
+ "module": "components/buttonsimple/buttonsimple.component.js"
20691
+ }
20632
20692
  },
20633
20693
  {
20634
20694
  "kind": "field",
20635
- "name": "type",
20695
+ "name": "name",
20636
20696
  "type": {
20637
20697
  "text": "string | undefined"
20638
20698
  },
20639
- "description": "Optional type attribute indicating the MIME type of the linked resource.",
20640
- "attribute": "type",
20641
- "reflects": true
20699
+ "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.",
20700
+ "attribute": "name",
20701
+ "reflects": true,
20702
+ "inheritedFrom": {
20703
+ "name": "Buttonsimple",
20704
+ "module": "components/buttonsimple/buttonsimple.component.js"
20705
+ }
20642
20706
  },
20643
20707
  {
20644
20708
  "kind": "field",
20645
- "name": "referrerpolicy",
20709
+ "name": "value",
20646
20710
  "type": {
20647
20711
  "text": "string | undefined"
20648
20712
  },
20649
- "description": "Optional referrerpolicy attribute specifying how much referrer information to send.",
20650
- "attribute": "referrerpolicy",
20651
- "reflects": true
20713
+ "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.",
20714
+ "attribute": "value",
20715
+ "reflects": true,
20716
+ "inheritedFrom": {
20717
+ "name": "Buttonsimple",
20718
+ "module": "components/buttonsimple/buttonsimple.component.js"
20719
+ }
20720
+ },
20721
+ {
20722
+ "kind": "method",
20723
+ "name": "executeAction",
20724
+ "privacy": "protected",
20725
+ "inheritedFrom": {
20726
+ "name": "Buttonsimple",
20727
+ "module": "components/buttonsimple/buttonsimple.component.js"
20728
+ }
20729
+ },
20730
+ {
20731
+ "kind": "method",
20732
+ "name": "setActive",
20733
+ "privacy": "protected",
20734
+ "parameters": [
20735
+ {
20736
+ "name": "element",
20737
+ "type": {
20738
+ "text": "HTMLElement"
20739
+ },
20740
+ "description": "The button element"
20741
+ },
20742
+ {
20743
+ "name": "active",
20744
+ "optional": true,
20745
+ "type": {
20746
+ "text": "boolean"
20747
+ },
20748
+ "description": "The active state of the element"
20749
+ }
20750
+ ],
20751
+ "description": "Sets the ariaStateKey attributes based on the active state of the button.",
20752
+ "inheritedFrom": {
20753
+ "name": "Buttonsimple",
20754
+ "module": "components/buttonsimple/buttonsimple.component.js"
20755
+ }
20756
+ },
20757
+ {
20758
+ "kind": "method",
20759
+ "name": "setSoftDisabled",
20760
+ "privacy": "private",
20761
+ "parameters": [
20762
+ {
20763
+ "name": "element",
20764
+ "type": {
20765
+ "text": "HTMLElement"
20766
+ },
20767
+ "description": "The button element."
20768
+ },
20769
+ {
20770
+ "name": "softDisabled",
20771
+ "optional": true,
20772
+ "type": {
20773
+ "text": "boolean"
20774
+ },
20775
+ "description": "The soft-disabled state."
20776
+ }
20777
+ ],
20778
+ "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.",
20779
+ "inheritedFrom": {
20780
+ "name": "Buttonsimple",
20781
+ "module": "components/buttonsimple/buttonsimple.component.js"
20782
+ }
20783
+ },
20784
+ {
20785
+ "kind": "method",
20786
+ "name": "setDisabled",
20787
+ "privacy": "private",
20788
+ "parameters": [
20789
+ {
20790
+ "name": "element",
20791
+ "type": {
20792
+ "text": "HTMLElement"
20793
+ },
20794
+ "description": "The button element."
20795
+ },
20796
+ {
20797
+ "name": "disabled",
20798
+ "type": {
20799
+ "text": "boolean"
20800
+ },
20801
+ "description": "The disabled state."
20802
+ }
20803
+ ],
20804
+ "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.",
20805
+ "inheritedFrom": {
20806
+ "name": "Buttonsimple",
20807
+ "module": "components/buttonsimple/buttonsimple.component.js"
20808
+ }
20809
+ },
20810
+ {
20811
+ "kind": "method",
20812
+ "name": "triggerClickEvent",
20813
+ "privacy": "private",
20814
+ "inheritedFrom": {
20815
+ "name": "Buttonsimple",
20816
+ "module": "components/buttonsimple/buttonsimple.component.js"
20817
+ }
20818
+ },
20819
+ {
20820
+ "kind": "method",
20821
+ "name": "handleBlur",
20822
+ "privacy": "private",
20823
+ "description": "In case the button is pressed and the focus is lost while pressing,\nthe pressed class is removed.",
20824
+ "inheritedFrom": {
20825
+ "name": "Buttonsimple",
20826
+ "module": "components/buttonsimple/buttonsimple.component.js"
20827
+ }
20652
20828
  },
20653
20829
  {
20654
20830
  "kind": "method",
20655
- "name": "handleNavigation",
20656
- "privacy": "protected",
20657
- "return": {
20658
- "type": {
20659
- "text": "void"
20660
- }
20661
- },
20831
+ "name": "handleKeyDown",
20832
+ "privacy": "private",
20662
20833
  "parameters": [
20663
20834
  {
20664
- "name": "e",
20835
+ "name": "event",
20665
20836
  "type": {
20666
- "text": "MouseEvent | KeyboardEvent"
20667
- }
20837
+ "text": "KeyboardEvent"
20838
+ },
20839
+ "description": "The keyboard event."
20668
20840
  }
20669
- ]
20841
+ ],
20842
+ "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.",
20843
+ "inheritedFrom": {
20844
+ "name": "Buttonsimple",
20845
+ "module": "components/buttonsimple/buttonsimple.component.js"
20846
+ }
20670
20847
  },
20671
20848
  {
20672
20849
  "kind": "method",
20673
- "name": "setDisabled",
20850
+ "name": "handleKeyUp",
20674
20851
  "privacy": "private",
20675
20852
  "parameters": [
20676
20853
  {
20677
- "name": "disabled",
20854
+ "name": "event",
20678
20855
  "type": {
20679
- "text": "boolean"
20856
+ "text": "KeyboardEvent"
20680
20857
  },
20681
- "description": "Whether the element should be disabled"
20858
+ "description": "The keyboard event."
20682
20859
  }
20683
20860
  ],
20684
- "description": "Sets or removes `aria-disabled` and updates `tabIndex` to reflect\nthe disabled state. When disabled, the element becomes unfocusable;\nwhen enabled, the previous `tabIndex` is restored."
20685
- },
20686
- {
20687
- "kind": "field",
20688
- "name": "dataAriaLabel",
20689
- "type": {
20690
- "text": "string | null"
20691
- },
20692
- "default": "null",
20693
- "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
20694
- "attribute": "data-aria-label",
20695
- "reflects": true,
20696
- "inheritedFrom": {
20697
- "name": "DataAriaLabelMixin",
20698
- "module": "utils/mixins/DataAriaLabelMixin.js"
20699
- }
20700
- },
20701
- {
20702
- "kind": "field",
20703
- "name": "disabled",
20704
- "type": {
20705
- "text": "boolean | undefined"
20706
- },
20707
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
20708
- "default": "undefined",
20709
- "attribute": "disabled",
20710
- "reflects": true,
20861
+ "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.",
20711
20862
  "inheritedFrom": {
20712
- "name": "DisabledMixin",
20713
- "module": "utils/mixins/DisabledMixin.js"
20863
+ "name": "Buttonsimple",
20864
+ "module": "components/buttonsimple/buttonsimple.component.js"
20714
20865
  }
20715
20866
  }
20716
20867
  ],
20717
20868
  "events": [
20718
20869
  {
20719
- "description": "(React: onClick) Fired when the user activates the buttonLink using a mouse or assistive technology.",
20870
+ "description": "(React: onClick) This event is dispatched when the linkbutton is clicked.",
20720
20871
  "name": "click",
20721
- "reactName": "onClick"
20872
+ "reactName": "onClick",
20873
+ "inheritedFrom": {
20874
+ "name": "Buttonsimple",
20875
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
20876
+ }
20722
20877
  },
20723
20878
  {
20724
- "description": "(React: onKeyDown) Fired when the user presses a key while the buttonLink has focus.",
20879
+ "description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the linkbutton.",
20725
20880
  "name": "keydown",
20726
- "reactName": "onKeyDown"
20881
+ "reactName": "onKeyDown",
20882
+ "inheritedFrom": {
20883
+ "name": "Buttonsimple",
20884
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
20885
+ }
20727
20886
  },
20728
20887
  {
20729
- "description": "(React: onFocus) Fired when the buttonLink receives keyboard or mouse focus.",
20730
- "name": "focus",
20731
- "reactName": "onFocus"
20888
+ "description": "(React: onKeyUp) This event is dispatched when a key is released on the linkbutton.",
20889
+ "name": "keyup",
20890
+ "reactName": "onKeyUp",
20891
+ "inheritedFrom": {
20892
+ "name": "Buttonsimple",
20893
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
20894
+ }
20732
20895
  },
20733
20896
  {
20734
- "description": "(React: onBlur) Fired when the buttonLink loses keyboard or mouse focus.",
20735
- "name": "blur",
20736
- "reactName": "onBlur"
20897
+ "description": "(React: onFocus) This event is dispatched when the linkbutton receives focus.",
20898
+ "name": "focus",
20899
+ "reactName": "onFocus",
20900
+ "inheritedFrom": {
20901
+ "name": "Buttonsimple",
20902
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
20903
+ }
20737
20904
  }
20738
20905
  ],
20739
20906
  "attributes": [
20740
20907
  {
20741
- "name": "inline",
20742
- "type": {
20743
- "text": "boolean"
20744
- },
20745
- "description": "The link can be inline or standalone.",
20746
- "default": "false",
20747
- "fieldName": "inline"
20748
- },
20749
- {
20750
- "name": "inverted",
20751
- "type": {
20752
- "text": "boolean"
20753
- },
20754
- "description": "The link color can be inverted by setting the inverted attribute to true.",
20755
- "default": "false",
20756
- "fieldName": "inverted"
20757
- },
20758
- {
20759
- "name": "href",
20760
- "type": {
20761
- "text": "string | undefined"
20762
- },
20763
- "description": "Href for navigation. The URL that the hyperlink points to",
20764
- "fieldName": "href"
20765
- },
20766
- {
20767
- "name": "target",
20768
- "type": {
20769
- "text": "string"
20770
- },
20771
- "default": "'_self'",
20772
- "description": "Optional target: _blank, _self, _parent, _top and _unfencedTop",
20773
- "fieldName": "target"
20774
- },
20775
- {
20776
- "name": "rel",
20777
- "type": {
20778
- "text": "string | undefined"
20779
- },
20780
- "description": "Optional rel attribute that defines the relationship of the linked URL as space-separated link types.",
20781
- "fieldName": "rel"
20782
- },
20783
- {
20784
- "name": "download",
20785
- "type": {
20786
- "text": "string | undefined"
20787
- },
20788
- "description": "Optional download attribute to instruct browsers to download the linked resource.",
20789
- "fieldName": "download"
20790
- },
20791
- {
20792
- "name": "ping",
20793
- "type": {
20794
- "text": "string | undefined"
20795
- },
20796
- "description": "Optional ping attribute that defines a space-separated list of URLs to be notified if the link is followed.",
20797
- "fieldName": "ping"
20798
- },
20799
- {
20800
- "name": "hreflang",
20801
- "type": {
20802
- "text": "string | undefined"
20803
- },
20804
- "description": "Optional hreflang attribute specifying the language of the linked resource.",
20805
- "fieldName": "hreflang"
20806
- },
20807
- {
20808
- "name": "type",
20809
- "type": {
20810
- "text": "string | undefined"
20811
- },
20812
- "description": "Optional type attribute indicating the MIME type of the linked resource.",
20813
- "fieldName": "type"
20814
- },
20815
- {
20816
- "name": "referrerpolicy",
20817
- "type": {
20818
- "text": "string | undefined"
20819
- },
20820
- "description": "Optional referrerpolicy attribute specifying how much referrer information to send.",
20821
- "fieldName": "referrerpolicy"
20822
- },
20823
- {
20824
- "name": "data-aria-label",
20908
+ "name": "size",
20825
20909
  "type": {
20826
- "text": "string | null"
20910
+ "text": "ButtonSize"
20827
20911
  },
20828
- "default": "null",
20829
- "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
20830
- "fieldName": "dataAriaLabel",
20912
+ "description": "Sets the size of the linkbutton.\nAcceptable values: \n- 12\n- 14\n- 16",
20913
+ "default": "16",
20914
+ "fieldName": "size",
20831
20915
  "inheritedFrom": {
20832
- "name": "DataAriaLabelMixin",
20833
- "module": "src/utils/mixins/DataAriaLabelMixin.ts"
20916
+ "name": "Buttonsimple",
20917
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
20834
20918
  }
20835
20919
  },
20836
20920
  {
20837
- "name": "disabled",
20921
+ "name": "inline",
20838
20922
  "type": {
20839
- "text": "boolean | undefined"
20923
+ "text": "boolean"
20840
20924
  },
20841
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
20842
- "default": "undefined",
20843
- "fieldName": "disabled",
20844
- "inheritedFrom": {
20845
- "name": "DisabledMixin",
20846
- "module": "src/utils/mixins/DisabledMixin.ts"
20847
- }
20848
- }
20849
- ],
20850
- "mixins": [
20851
- {
20852
- "name": "DataAriaLabelMixin",
20853
- "module": "/src/utils/mixins/DataAriaLabelMixin"
20854
- },
20855
- {
20856
- "name": "DisabledMixin",
20857
- "module": "/src/utils/mixins/DisabledMixin"
20858
- }
20859
- ],
20860
- "superclass": {
20861
- "name": "Component",
20862
- "module": "/src/models"
20863
- },
20864
- "tagName": "mdc-linksimple",
20865
- "jsDoc": "/**\n * `mdc-linksimple` is a lightweight link component that can be used to navigate\n * within the application or to an external URL. It does not have any predefined default size.\n *\n * The `children` of the `mdc-linksimple` component can be customized to suit\n * different use cases, including text, icons, or other inline content. For the child to be an icon,\n * the `mdc-icon` component should be used to render.\n *\n * @tagname mdc-linksimple\n *\n * @event click - (React: onClick) Fired when the user activates the buttonLink using a mouse or assistive technology.\n * @event keydown - (React: onKeyDown) Fired when the user presses a key while the buttonLink has focus.\n * @event focus - (React: onFocus) Fired when the buttonLink receives keyboard or mouse focus.\n * @event blur - (React: onBlur) Fired when the buttonLink loses keyboard or mouse focus.\n *\n * @cssproperty --mdc-link-border-radius - Border radius of the link.\n * @cssproperty --mdc-link-color-active - Color of the link’s child content in the active state.\n * @cssproperty --mdc-link-color-disabled - Color of the link’s child content in the disabled state.\n * @cssproperty --mdc-link-color-hover - Color of the link’s child content in the hover state.\n * @cssproperty --mdc-link-color-normal - Color of the link’s child content in the normal state.\n * @cssproperty --mdc-link-inverted-color-active - Color of the inverted link’s child content in the active state.\n * @cssproperty --mdc-link-inverted-color-disabled - Color of the inverted link’s child content in the disabled state.\n * @cssproperty --mdc-link-inverted-color-hover - Color of the inverted link’s child content in the hover state.\n * @cssproperty --mdc-link-inverted-color-normal - Color of the inverted link’s child content in the normal state.\n *\n * @csspart anchor - The anchor element that wraps the linksimple content.\n */",
20866
- "customElement": true
20867
- }
20868
- ],
20869
- "exports": [
20870
- {
20871
- "kind": "js",
20872
- "name": "default",
20873
- "declaration": {
20874
- "name": "Linksimple",
20875
- "module": "components/linksimple/linksimple.component.js"
20876
- }
20877
- }
20878
- ]
20879
- },
20880
- {
20881
- "kind": "javascript-module",
20882
- "path": "components/list/list.component.js",
20883
- "declarations": [
20884
- {
20885
- "kind": "class",
20886
- "description": "mdc-list component is used to display a group of list items. It is used as a container to wrap other list items.\n\nTo add a header to the list, use the `mdc-listheader` component and place it in the `list-header` slot.\n`mdc-listitem` components can be placed in the default slot.",
20887
- "name": "List",
20888
- "cssParts": [
20889
- {
20890
- "description": "The container slot around the list items",
20891
- "name": "container"
20892
- }
20893
- ],
20894
- "slots": [
20925
+ "description": "The linkbutton can be inline or standalone.",
20926
+ "default": "false",
20927
+ "fieldName": "inline"
20928
+ },
20895
20929
  {
20896
- "description": "This is a default/unnamed slot, where listitems can be placed.",
20897
- "name": "default"
20930
+ "name": "inverted",
20931
+ "type": {
20932
+ "text": "boolean"
20933
+ },
20934
+ "description": "The linkbutton color can be inverted by setting the inverted attribute to true.",
20935
+ "default": "false",
20936
+ "fieldName": "inverted"
20898
20937
  },
20899
20938
  {
20900
- "description": "This slot is used to pass a header for the list, which can be a `mdc-listheader` component.",
20901
- "name": "list-header"
20902
- }
20903
- ],
20904
- "members": [
20939
+ "name": "icon-name",
20940
+ "type": {
20941
+ "text": "IconNames | undefined"
20942
+ },
20943
+ "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
20944
+ "fieldName": "iconName",
20945
+ "inheritedFrom": {
20946
+ "name": "IconNameMixin",
20947
+ "module": "src/utils/mixins/IconNameMixin.ts"
20948
+ }
20949
+ },
20905
20950
  {
20906
- "kind": "field",
20907
- "name": "loop",
20951
+ "name": "auto-focus-on-mount",
20908
20952
  "type": {
20909
- "text": "'true' | 'false'"
20953
+ "text": "boolean"
20910
20954
  },
20911
- "privacy": "public",
20912
- "description": "Whether to loop navigation when reaching the end of the list.\nIf 'true', pressing the down arrow on the last item will focus the first item,\nand pressing the up arrow on the first item will focus the last item.\nIf 'false', navigation will stop at the first or last item.",
20913
- "default": "''",
20914
- "attribute": "loop",
20915
- "reflects": true
20955
+ "default": "false",
20956
+ "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.",
20957
+ "fieldName": "autoFocusOnMount",
20958
+ "inheritedFrom": {
20959
+ "name": "Buttonsimple",
20960
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
20961
+ }
20916
20962
  },
20917
20963
  {
20918
- "kind": "field",
20919
- "name": "initialFocus",
20964
+ "name": "tabIndex",
20920
20965
  "type": {
20921
20966
  "text": "number"
20922
20967
  },
20923
- "privacy": "public",
20924
- "description": "The index of the item that should receive focus when the list is first rendered.\nIf the index is out of bounds, the first item (index 0) will receive focus.",
20925
20968
  "default": "0",
20926
- "attribute": "initial-focus",
20927
- "reflects": true
20969
+ "description": "This property specifies the tab order of the element.",
20970
+ "fieldName": "tabIndex",
20971
+ "inheritedFrom": {
20972
+ "name": "Buttonsimple",
20973
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
20974
+ }
20928
20975
  },
20929
20976
  {
20930
- "kind": "field",
20931
- "name": "itemsStore",
20932
- "default": "new ElementStore<ListItem>(this, { isValidItem: this.isValidItem, })"
20977
+ "name": "disabled",
20978
+ "type": {
20979
+ "text": "boolean | undefined"
20980
+ },
20981
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
20982
+ "default": "undefined",
20983
+ "fieldName": "disabled",
20984
+ "inheritedFrom": {
20985
+ "name": "Buttonsimple",
20986
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
20987
+ }
20933
20988
  },
20934
20989
  {
20935
- "kind": "method",
20936
- "name": "getCurrentIndex",
20937
- "privacy": "private",
20938
- "return": {
20939
- "type": {
20940
- "text": ""
20941
- }
20990
+ "name": "active",
20991
+ "type": {
20992
+ "text": "boolean | undefined"
20942
20993
  },
20943
- "parameters": [
20944
- {
20945
- "name": "target",
20946
- "type": {
20947
- "text": "EventTarget | null"
20948
- },
20949
- "description": "The target element that triggered the event."
20950
- }
20951
- ],
20952
- "description": "Retrieves the current index of the item that triggered the event.",
20994
+ "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.",
20995
+ "default": "undefined",
20996
+ "fieldName": "active",
20953
20997
  "inheritedFrom": {
20954
- "name": "ListNavigationMixin",
20955
- "module": "utils/mixins/ListNavigationMixin.js"
20998
+ "name": "Buttonsimple",
20999
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
20956
21000
  }
20957
21001
  },
20958
21002
  {
20959
- "kind": "method",
20960
- "name": "resetTabIndexes",
20961
- "privacy": "protected",
20962
- "parameters": [
20963
- {
20964
- "name": "index",
20965
- "type": {
20966
- "text": "number"
20967
- },
20968
- "description": "The index of the currently focused item."
20969
- }
20970
- ],
20971
- "description": "Reset all tabindex to -1 and set the tabindex of the current item to 0",
21003
+ "name": "soft-disabled",
21004
+ "type": {
21005
+ "text": "boolean | undefined"
21006
+ },
21007
+ "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.",
21008
+ "default": "undefined",
21009
+ "fieldName": "softDisabled",
20972
21010
  "inheritedFrom": {
20973
- "name": "ListNavigationMixin",
20974
- "module": "utils/mixins/ListNavigationMixin.js"
21011
+ "name": "Buttonsimple",
21012
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
20975
21013
  }
20976
21014
  },
20977
21015
  {
20978
- "kind": "method",
20979
- "name": "resetTabIndexAndSetFocus",
20980
- "privacy": "protected",
20981
- "parameters": [
20982
- {
20983
- "name": "newIndex",
20984
- "type": {
20985
- "text": "number"
20986
- },
20987
- "description": "The index of the new item to focus."
20988
- },
20989
- {
20990
- "name": "oldIndex",
20991
- "optional": true,
20992
- "type": {
20993
- "text": "number"
20994
- },
20995
- "description": "The index of the currently focused item."
20996
- },
20997
- {
20998
- "name": "focusNewItem",
20999
- "default": "true",
21000
- "description": "Call focus() on the new item or not. It should be false during firstUpdate"
21001
- }
21002
- ],
21003
- "description": "Resets the tabindex of the currently focused item and sets focus to a new item.",
21004
- "return": {
21005
- "type": {
21006
- "text": ""
21007
- }
21016
+ "name": "role",
21017
+ "type": {
21018
+ "text": "RoleType"
21008
21019
  },
21020
+ "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.",
21021
+ "default": "button",
21022
+ "fieldName": "role",
21009
21023
  "inheritedFrom": {
21010
- "name": "ListNavigationMixin",
21011
- "module": "utils/mixins/ListNavigationMixin.js"
21024
+ "name": "Buttonsimple",
21025
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
21012
21026
  }
21013
21027
  },
21014
21028
  {
21015
- "kind": "method",
21016
- "name": "resolveDirectionKey",
21017
- "privacy": "private",
21018
- "parameters": [
21019
- {
21020
- "name": "key",
21021
- "type": {
21022
- "text": "string"
21023
- },
21024
- "description": "The key pressed by the user."
21025
- },
21026
- {
21027
- "name": "isRtl",
21028
- "type": {
21029
- "text": "boolean"
21030
- },
21031
- "description": "A boolean indicating if the layout is right-to-left (RTL)."
21032
- }
21033
- ],
21034
- "description": "Resolves the key pressed by the user based on the direction of the layout.\nThis method is used to handle keyboard navigation in a right-to-left (RTL) layout.\nIt checks if the layout is RTL and adjusts the arrow keys accordingly.\nFor example, in RTL, the left arrow key behaves like the right arrow key and vice versa.",
21035
- "return": {
21036
- "type": {
21037
- "text": ""
21038
- }
21029
+ "name": "ariaStateKey",
21030
+ "type": {
21031
+ "text": "string | undefined"
21039
21032
  },
21033
+ "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`",
21034
+ "default": "'aria-pressed' (when)",
21035
+ "fieldName": "ariaStateKey",
21040
21036
  "inheritedFrom": {
21041
- "name": "ListNavigationMixin",
21042
- "module": "utils/mixins/ListNavigationMixin.js"
21037
+ "name": "Buttonsimple",
21038
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
21043
21039
  }
21044
21040
  },
21045
21041
  {
21046
- "kind": "method",
21047
- "name": "shouldLoop",
21048
- "privacy": "private",
21042
+ "name": "type",
21043
+ "type": {
21044
+ "text": "ButtonType"
21045
+ },
21046
+ "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.",
21047
+ "default": "button",
21048
+ "fieldName": "type",
21049
21049
  "inheritedFrom": {
21050
- "name": "ListNavigationMixin",
21051
- "module": "utils/mixins/ListNavigationMixin.js"
21050
+ "name": "Buttonsimple",
21051
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
21052
21052
  }
21053
- }
21054
- ],
21055
- "attributes": [
21053
+ },
21056
21054
  {
21057
- "name": "loop",
21055
+ "name": "name",
21058
21056
  "type": {
21059
- "text": "'true' | 'false'"
21057
+ "text": "string | undefined"
21060
21058
  },
21061
- "description": "Whether to loop navigation when reaching the end of the list.\nIf 'true', pressing the down arrow on the last item will focus the first item,\nand pressing the up arrow on the first item will focus the last item.\nIf 'false', navigation will stop at the first or last item.",
21062
- "default": "''",
21063
- "fieldName": "loop"
21059
+ "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.",
21060
+ "fieldName": "name",
21061
+ "inheritedFrom": {
21062
+ "name": "Buttonsimple",
21063
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
21064
+ }
21064
21065
  },
21065
21066
  {
21066
- "name": "initial-focus",
21067
+ "name": "value",
21067
21068
  "type": {
21068
- "text": "number"
21069
+ "text": "string | undefined"
21069
21070
  },
21070
- "description": "The index of the item that should receive focus when the list is first rendered.\nIf the index is out of bounds, the first item (index 0) will receive focus.",
21071
- "default": "0",
21072
- "fieldName": "initialFocus"
21071
+ "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.",
21072
+ "fieldName": "value",
21073
+ "inheritedFrom": {
21074
+ "name": "Buttonsimple",
21075
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
21076
+ }
21073
21077
  }
21074
21078
  ],
21075
21079
  "mixins": [
21076
21080
  {
21077
- "name": "ListNavigationMixin",
21078
- "module": "/src/utils/mixins/ListNavigationMixin"
21079
- },
21080
- {
21081
- "name": "CaptureDestroyEventForChildElement",
21082
- "module": "/src/utils/mixins/lifecycle/CaptureDestroyEventForChildElement"
21081
+ "name": "IconNameMixin",
21082
+ "module": "/src/utils/mixins/IconNameMixin"
21083
21083
  }
21084
21084
  ],
21085
21085
  "superclass": {
21086
- "name": "Component",
21087
- "module": "/src/models"
21086
+ "name": "Buttonsimple",
21087
+ "module": "/src/components/buttonsimple/buttonsimple.component"
21088
21088
  },
21089
- "tagName": "mdc-list",
21090
- "jsDoc": "/**\n * mdc-list component is used to display a group of list items. It is used as a container to wrap other list items.\n *\n * To add a header to the list, use the `mdc-listheader` component and place it in the `list-header` slot.\n * `mdc-listitem` components can be placed in the default slot.\n *\n * @tagname mdc-list\n *\n * @slot default - This is a default/unnamed slot, where listitems can be placed.\n * @slot list-header - This slot is used to pass a header for the list, which can be a `mdc-listheader` component.\n *\n * @csspart container - The container slot around the list items\n */",
21089
+ "tagName": "mdc-linkbutton",
21090
+ "jsDoc": "/**\n * `mdc-linkbutton` visually mimics a hyperlink while functioning as a button. It blends the appearance of `mdc-link` with the accessibility and interaction capabilities of `mdc-button`.\n *\n * ### Features:\n * - Looks like a link, behaves like a button.\n * - Supports slots for a text label and an optional trailing icon.\n * - Inherits accessibility and keyboard interaction behavior from `mdc-buttonsimple`.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-linkbutton\n *\n * @slot - Text label of the linkbutton.\n *\n * @event click - (React: onClick) This event is dispatched when the linkbutton is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the linkbutton.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the linkbutton.\n * @event focus - (React: onFocus) This event is dispatched when the linkbutton receives focus.\n *\n * @cssproperty --mdc-link-border-radius - Border radius of the linkbutton.\n * @cssproperty --mdc-link-color-active - Color of the linkbutton’s child content in the active state.\n * @cssproperty --mdc-link-color-disabled - Color of the linkbutton’s child content in the disabled state.\n * @cssproperty --mdc-link-color-hover - Color of the linkbutton’s child content in the hover state.\n * @cssproperty --mdc-link-color-normal - Color of the linkbutton’s child content in the normal state.\n * @cssproperty --mdc-link-inverted-color-active - Color of the inverted linkbutton’s child content in the active state.\n * @cssproperty --mdc-link-inverted-color-disabled - Color of the inverted linkbutton’s child content in the disabled state.\n * @cssproperty --mdc-link-inverted-color-hover - Color of the inverted linkbutton’s child content in the hover state.\n * @cssproperty --mdc-link-inverted-color-normal - Color of the inverted linkbutton’s child content in the normal state.\n */",
21091
21091
  "customElement": true
21092
21092
  }
21093
21093
  ],
@@ -21096,8 +21096,8 @@
21096
21096
  "kind": "js",
21097
21097
  "name": "default",
21098
21098
  "declaration": {
21099
- "name": "List",
21100
- "module": "components/list/list.component.js"
21099
+ "name": "LinkButton",
21100
+ "module": "components/linkbutton/linkbutton.component.js"
21101
21101
  }
21102
21102
  }
21103
21103
  ]
@@ -31252,258 +31252,11 @@
31252
31252
  "description": "Slot for the trailing button to clear the input field. If not provided, the clear button will be rendered when `trailingButton` property is set to true.",
31253
31253
  "name": "trailing-button",
31254
31254
  "inheritedFrom": {
31255
- "name": "Input",
31256
- "module": "src/components/input/input.component.ts"
31257
- }
31258
- }
31259
- ]
31260
- }
31261
- ],
31262
- "exports": [
31263
- {
31264
- "kind": "js",
31265
- "name": "default",
31266
- "declaration": {
31267
- "name": "Password",
31268
- "module": "components/password/password.component.js"
31269
- }
31270
- }
31271
- ]
31272
- },
31273
- {
31274
- "kind": "javascript-module",
31275
- "path": "components/presence/presence.component.js",
31276
- "declarations": [
31277
- {
31278
- "kind": "class",
31279
- "description": "The `mdc-presence` component is a versatile UI element used to\ndisplay the presence status of a user or entity within an avatar component.\n\nThis component is ideal for use within avatar UIs where the presence status\nneeds to be visually represented.",
31280
- "name": "Presence",
31281
- "cssProperties": [
31282
- {
31283
- "description": "The background color of the presence type active.",
31284
- "name": "--mdc-presence-active-background-color"
31285
- },
31286
- {
31287
- "description": "The background color of the presence type away.",
31288
- "name": "--mdc-presence-away-background-color"
31289
- },
31290
- {
31291
- "description": "The background color of the presence type away-calling.",
31292
- "name": "--mdc-presence-away-calling-background-color"
31293
- },
31294
- {
31295
- "description": "The background color of the presence type busy.",
31296
- "name": "--mdc-presence-busy-background-color"
31297
- },
31298
- {
31299
- "description": "The background color of the presence type dnd.",
31300
- "name": "--mdc-presence-dnd-background-color"
31301
- },
31302
- {
31303
- "description": "The background color of the presence type meeting.",
31304
- "name": "--mdc-presence-meeting-background-color"
31305
- },
31306
- {
31307
- "description": "The background color of the presence type on-call.",
31308
- "name": "--mdc-presence-on-call-background-color"
31309
- },
31310
- {
31311
- "description": "The background color of the presence type on-device.",
31312
- "name": "--mdc-presence-on-device-background-color"
31313
- },
31314
- {
31315
- "description": "The background color of the presence type on-mobile.",
31316
- "name": "--mdc-presence-on-mobile-background-color"
31317
- },
31318
- {
31319
- "description": "The background color of the presence type pause.",
31320
- "name": "--mdc-presence-pause-background-color"
31321
- },
31322
- {
31323
- "description": "The background color of the presence type pto.",
31324
- "name": "--mdc-presence-pto-background-color"
31325
- },
31326
- {
31327
- "description": "The background color of the presence type presenting.",
31328
- "name": "--mdc-presence-presenting-background-color"
31329
- },
31330
- {
31331
- "description": "The background color of the presence type quiet.",
31332
- "name": "--mdc-presence-quiet-background-color"
31333
- },
31334
- {
31335
- "description": "The background color of the presence type scheduled.",
31336
- "name": "--mdc-presence-scheduled-background-color"
31337
- },
31338
- {
31339
- "description": "The background color of the presence type overlay.",
31340
- "name": "--mdc-presence-overlay-background-color"
31341
- }
31342
- ],
31343
- "cssParts": [
31344
- {
31345
- "description": "The presence content.",
31346
- "name": "presence-content"
31347
- },
31348
- {
31349
- "description": "The presence icon.",
31350
- "name": "mdc-presence-icon"
31351
- },
31352
- {
31353
- "description": "The presence icon for active.",
31354
- "name": "mdc-presence-icon__active"
31355
- },
31356
- {
31357
- "description": "The presence icon for away.",
31358
- "name": "mdc-presence-icon__away"
31359
- },
31360
- {
31361
- "description": "The presence icon for away-calling.",
31362
- "name": "mdc-presence-icon__away-calling"
31363
- },
31364
- {
31365
- "description": "The presence icon for busy.",
31366
- "name": "mdc-presence-icon__busy"
31367
- },
31368
- {
31369
- "description": "The presence icon for dnd.",
31370
- "name": "mdc-presence-icon__dnd"
31371
- },
31372
- {
31373
- "description": "The presence icon for meeting.",
31374
- "name": "mdc-presence-icon__meeting"
31375
- },
31376
- {
31377
- "description": "The presence icon for on-call.",
31378
- "name": "mdc-presence-icon__on-call"
31379
- },
31380
- {
31381
- "description": "The presence icon for on-device.",
31382
- "name": "mdc-presence-icon__on-device"
31383
- },
31384
- {
31385
- "description": "The presence icon for on-mobile.",
31386
- "name": "mdc-presence-icon__on-mobile"
31387
- },
31388
- {
31389
- "description": "The presence icon for pause.",
31390
- "name": "mdc-presence-icon__pause"
31391
- },
31392
- {
31393
- "description": "The presence icon for pto.",
31394
- "name": "mdc-presence-icon__pto"
31395
- },
31396
- {
31397
- "description": "The presence icon for presenting.",
31398
- "name": "mdc-presence-icon__presenting"
31399
- },
31400
- {
31401
- "description": "The presence icon for quiet.",
31402
- "name": "mdc-presence-icon__quiet"
31403
- },
31404
- {
31405
- "description": "The presence icon for scheduled.",
31406
- "name": "mdc-presence-icon__scheduled"
31407
- }
31408
- ],
31409
- "members": [
31410
- {
31411
- "kind": "field",
31412
- "name": "type",
31413
- "type": {
31414
- "text": "PresenceType"
31415
- },
31416
- "description": "Supported presence types:\n- `active`\n- `away`\n- `away-calling`\n- `busy`\n- `dnd`\n- `meeting`\n- `on-call`\n- `on-device`\n- `on-mobile`\n- `pause`\n- `pto`\n- `presenting`\n- `quiet`\n- `scheduled`",
31417
- "default": "active",
31418
- "attribute": "type",
31419
- "reflects": true
31420
- },
31421
- {
31422
- "kind": "field",
31423
- "name": "size",
31424
- "type": {
31425
- "text": "PresenceSize"
31426
- },
31427
- "description": "Acceptable numeric values include:\n- 24\n- 32\n- 48\n- 64\n- 72\n- 88\n- 124\n\nPresence icons are minimum 14px in size, meaning 24, 32, and 48 presence\nicons will be no smaller than 14px (for sizes 24, 32, 48).",
31428
- "default": "32",
31429
- "attribute": "size",
31430
- "reflects": true
31431
- },
31432
- {
31433
- "kind": "method",
31434
- "name": "setSize",
31435
- "privacy": "private",
31436
- "return": {
31437
- "type": {
31438
- "text": "void"
31439
- }
31440
- },
31441
- "parameters": [
31442
- {
31443
- "name": "size",
31444
- "type": {
31445
- "text": "PresenceSize"
31446
- }
31447
- }
31448
- ]
31449
- },
31450
- {
31451
- "kind": "field",
31452
- "name": "icon",
31453
- "privacy": "private",
31454
- "description": "Get the icon name based on the presence type",
31455
- "readonly": true
31456
- },
31457
- {
31458
- "kind": "method",
31459
- "name": "handleOnLoad",
31460
- "privacy": "private",
31461
- "return": {
31462
- "type": {
31463
- "text": "void"
31464
- }
31465
- },
31466
- "description": "Handles the successful load of an icon.\nSets the `currentIconType` property to match the `type` property."
31467
- },
31468
- {
31469
- "kind": "method",
31470
- "name": "handleOnError",
31471
- "privacy": "private",
31472
- "return": {
31473
- "type": {
31474
- "text": "void"
31475
- }
31476
- },
31477
- "description": "Handles an error that occurs when loading an icon."
31478
- }
31479
- ],
31480
- "attributes": [
31481
- {
31482
- "name": "type",
31483
- "type": {
31484
- "text": "PresenceType"
31485
- },
31486
- "description": "Supported presence types:\n- `active`\n- `away`\n- `away-calling`\n- `busy`\n- `dnd`\n- `meeting`\n- `on-call`\n- `on-device`\n- `on-mobile`\n- `pause`\n- `pto`\n- `presenting`\n- `quiet`\n- `scheduled`",
31487
- "default": "active",
31488
- "fieldName": "type"
31489
- },
31490
- {
31491
- "name": "size",
31492
- "type": {
31493
- "text": "PresenceSize"
31494
- },
31495
- "description": "Acceptable numeric values include:\n- 24\n- 32\n- 48\n- 64\n- 72\n- 88\n- 124\n\nPresence icons are minimum 14px in size, meaning 24, 32, and 48 presence\nicons will be no smaller than 14px (for sizes 24, 32, 48).",
31496
- "default": "32",
31497
- "fieldName": "size"
31498
- }
31499
- ],
31500
- "superclass": {
31501
- "name": "Component",
31502
- "module": "/src/models"
31503
- },
31504
- "tagName": "mdc-presence",
31505
- "jsDoc": "/**\n * The `mdc-presence` component is a versatile UI element used to\n * display the presence status of a user or entity within an avatar component.\n *\n * This component is ideal for use within avatar UIs where the presence status\n * needs to be visually represented.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-presence\n *\n * @cssproperty --mdc-presence-active-background-color - The background color of the presence type active.\n * @cssproperty --mdc-presence-away-background-color - The background color of the presence type away.\n * @cssproperty --mdc-presence-away-calling-background-color - The background color of the presence type away-calling.\n * @cssproperty --mdc-presence-busy-background-color - The background color of the presence type busy.\n * @cssproperty --mdc-presence-dnd-background-color - The background color of the presence type dnd.\n * @cssproperty --mdc-presence-meeting-background-color - The background color of the presence type meeting.\n * @cssproperty --mdc-presence-on-call-background-color - The background color of the presence type on-call.\n * @cssproperty --mdc-presence-on-device-background-color - The background color of the presence type on-device.\n * @cssproperty --mdc-presence-on-mobile-background-color - The background color of the presence type on-mobile.\n * @cssproperty --mdc-presence-pause-background-color - The background color of the presence type pause.\n * @cssproperty --mdc-presence-pto-background-color - The background color of the presence type pto.\n * @cssproperty --mdc-presence-presenting-background-color - The background color of the presence type presenting.\n * @cssproperty --mdc-presence-quiet-background-color - The background color of the presence type quiet.\n * @cssproperty --mdc-presence-scheduled-background-color - The background color of the presence type scheduled.\n * @cssproperty --mdc-presence-overlay-background-color - The background color of the presence type overlay.\n *\n * @csspart presence-content - The presence content.\n * @csspart mdc-presence-icon - The presence icon.\n * @csspart mdc-presence-icon__active - The presence icon for active.\n * @csspart mdc-presence-icon__away - The presence icon for away.\n * @csspart mdc-presence-icon__away-calling - The presence icon for away-calling.\n * @csspart mdc-presence-icon__busy - The presence icon for busy.\n * @csspart mdc-presence-icon__dnd - The presence icon for dnd.\n * @csspart mdc-presence-icon__meeting - The presence icon for meeting.\n * @csspart mdc-presence-icon__on-call - The presence icon for on-call.\n * @csspart mdc-presence-icon__on-device - The presence icon for on-device.\n * @csspart mdc-presence-icon__on-mobile - The presence icon for on-mobile.\n * @csspart mdc-presence-icon__pause - The presence icon for pause.\n * @csspart mdc-presence-icon__pto - The presence icon for pto.\n * @csspart mdc-presence-icon__presenting - The presence icon for presenting.\n * @csspart mdc-presence-icon__quiet - The presence icon for quiet.\n * @csspart mdc-presence-icon__scheduled - The presence icon for scheduled.\n */",
31506
- "customElement": true
31255
+ "name": "Input",
31256
+ "module": "src/components/input/input.component.ts"
31257
+ }
31258
+ }
31259
+ ]
31507
31260
  }
31508
31261
  ],
31509
31262
  "exports": [
@@ -31511,8 +31264,8 @@
31511
31264
  "kind": "js",
31512
31265
  "name": "default",
31513
31266
  "declaration": {
31514
- "name": "Presence",
31515
- "module": "components/presence/presence.component.js"
31267
+ "name": "Password",
31268
+ "module": "components/password/password.component.js"
31516
31269
  }
31517
31270
  }
31518
31271
  ]
@@ -33081,6 +32834,253 @@
33081
32834
  }
33082
32835
  ]
33083
32836
  },
32837
+ {
32838
+ "kind": "javascript-module",
32839
+ "path": "components/presence/presence.component.js",
32840
+ "declarations": [
32841
+ {
32842
+ "kind": "class",
32843
+ "description": "The `mdc-presence` component is a versatile UI element used to\ndisplay the presence status of a user or entity within an avatar component.\n\nThis component is ideal for use within avatar UIs where the presence status\nneeds to be visually represented.",
32844
+ "name": "Presence",
32845
+ "cssProperties": [
32846
+ {
32847
+ "description": "The background color of the presence type active.",
32848
+ "name": "--mdc-presence-active-background-color"
32849
+ },
32850
+ {
32851
+ "description": "The background color of the presence type away.",
32852
+ "name": "--mdc-presence-away-background-color"
32853
+ },
32854
+ {
32855
+ "description": "The background color of the presence type away-calling.",
32856
+ "name": "--mdc-presence-away-calling-background-color"
32857
+ },
32858
+ {
32859
+ "description": "The background color of the presence type busy.",
32860
+ "name": "--mdc-presence-busy-background-color"
32861
+ },
32862
+ {
32863
+ "description": "The background color of the presence type dnd.",
32864
+ "name": "--mdc-presence-dnd-background-color"
32865
+ },
32866
+ {
32867
+ "description": "The background color of the presence type meeting.",
32868
+ "name": "--mdc-presence-meeting-background-color"
32869
+ },
32870
+ {
32871
+ "description": "The background color of the presence type on-call.",
32872
+ "name": "--mdc-presence-on-call-background-color"
32873
+ },
32874
+ {
32875
+ "description": "The background color of the presence type on-device.",
32876
+ "name": "--mdc-presence-on-device-background-color"
32877
+ },
32878
+ {
32879
+ "description": "The background color of the presence type on-mobile.",
32880
+ "name": "--mdc-presence-on-mobile-background-color"
32881
+ },
32882
+ {
32883
+ "description": "The background color of the presence type pause.",
32884
+ "name": "--mdc-presence-pause-background-color"
32885
+ },
32886
+ {
32887
+ "description": "The background color of the presence type pto.",
32888
+ "name": "--mdc-presence-pto-background-color"
32889
+ },
32890
+ {
32891
+ "description": "The background color of the presence type presenting.",
32892
+ "name": "--mdc-presence-presenting-background-color"
32893
+ },
32894
+ {
32895
+ "description": "The background color of the presence type quiet.",
32896
+ "name": "--mdc-presence-quiet-background-color"
32897
+ },
32898
+ {
32899
+ "description": "The background color of the presence type scheduled.",
32900
+ "name": "--mdc-presence-scheduled-background-color"
32901
+ },
32902
+ {
32903
+ "description": "The background color of the presence type overlay.",
32904
+ "name": "--mdc-presence-overlay-background-color"
32905
+ }
32906
+ ],
32907
+ "cssParts": [
32908
+ {
32909
+ "description": "The presence content.",
32910
+ "name": "presence-content"
32911
+ },
32912
+ {
32913
+ "description": "The presence icon.",
32914
+ "name": "mdc-presence-icon"
32915
+ },
32916
+ {
32917
+ "description": "The presence icon for active.",
32918
+ "name": "mdc-presence-icon__active"
32919
+ },
32920
+ {
32921
+ "description": "The presence icon for away.",
32922
+ "name": "mdc-presence-icon__away"
32923
+ },
32924
+ {
32925
+ "description": "The presence icon for away-calling.",
32926
+ "name": "mdc-presence-icon__away-calling"
32927
+ },
32928
+ {
32929
+ "description": "The presence icon for busy.",
32930
+ "name": "mdc-presence-icon__busy"
32931
+ },
32932
+ {
32933
+ "description": "The presence icon for dnd.",
32934
+ "name": "mdc-presence-icon__dnd"
32935
+ },
32936
+ {
32937
+ "description": "The presence icon for meeting.",
32938
+ "name": "mdc-presence-icon__meeting"
32939
+ },
32940
+ {
32941
+ "description": "The presence icon for on-call.",
32942
+ "name": "mdc-presence-icon__on-call"
32943
+ },
32944
+ {
32945
+ "description": "The presence icon for on-device.",
32946
+ "name": "mdc-presence-icon__on-device"
32947
+ },
32948
+ {
32949
+ "description": "The presence icon for on-mobile.",
32950
+ "name": "mdc-presence-icon__on-mobile"
32951
+ },
32952
+ {
32953
+ "description": "The presence icon for pause.",
32954
+ "name": "mdc-presence-icon__pause"
32955
+ },
32956
+ {
32957
+ "description": "The presence icon for pto.",
32958
+ "name": "mdc-presence-icon__pto"
32959
+ },
32960
+ {
32961
+ "description": "The presence icon for presenting.",
32962
+ "name": "mdc-presence-icon__presenting"
32963
+ },
32964
+ {
32965
+ "description": "The presence icon for quiet.",
32966
+ "name": "mdc-presence-icon__quiet"
32967
+ },
32968
+ {
32969
+ "description": "The presence icon for scheduled.",
32970
+ "name": "mdc-presence-icon__scheduled"
32971
+ }
32972
+ ],
32973
+ "members": [
32974
+ {
32975
+ "kind": "field",
32976
+ "name": "type",
32977
+ "type": {
32978
+ "text": "PresenceType"
32979
+ },
32980
+ "description": "Supported presence types:\n- `active`\n- `away`\n- `away-calling`\n- `busy`\n- `dnd`\n- `meeting`\n- `on-call`\n- `on-device`\n- `on-mobile`\n- `pause`\n- `pto`\n- `presenting`\n- `quiet`\n- `scheduled`",
32981
+ "default": "active",
32982
+ "attribute": "type",
32983
+ "reflects": true
32984
+ },
32985
+ {
32986
+ "kind": "field",
32987
+ "name": "size",
32988
+ "type": {
32989
+ "text": "PresenceSize"
32990
+ },
32991
+ "description": "Acceptable numeric values include:\n- 24\n- 32\n- 48\n- 64\n- 72\n- 88\n- 124\n\nPresence icons are minimum 14px in size, meaning 24, 32, and 48 presence\nicons will be no smaller than 14px (for sizes 24, 32, 48).",
32992
+ "default": "32",
32993
+ "attribute": "size",
32994
+ "reflects": true
32995
+ },
32996
+ {
32997
+ "kind": "method",
32998
+ "name": "setSize",
32999
+ "privacy": "private",
33000
+ "return": {
33001
+ "type": {
33002
+ "text": "void"
33003
+ }
33004
+ },
33005
+ "parameters": [
33006
+ {
33007
+ "name": "size",
33008
+ "type": {
33009
+ "text": "PresenceSize"
33010
+ }
33011
+ }
33012
+ ]
33013
+ },
33014
+ {
33015
+ "kind": "field",
33016
+ "name": "icon",
33017
+ "privacy": "private",
33018
+ "description": "Get the icon name based on the presence type",
33019
+ "readonly": true
33020
+ },
33021
+ {
33022
+ "kind": "method",
33023
+ "name": "handleOnLoad",
33024
+ "privacy": "private",
33025
+ "return": {
33026
+ "type": {
33027
+ "text": "void"
33028
+ }
33029
+ },
33030
+ "description": "Handles the successful load of an icon.\nSets the `currentIconType` property to match the `type` property."
33031
+ },
33032
+ {
33033
+ "kind": "method",
33034
+ "name": "handleOnError",
33035
+ "privacy": "private",
33036
+ "return": {
33037
+ "type": {
33038
+ "text": "void"
33039
+ }
33040
+ },
33041
+ "description": "Handles an error that occurs when loading an icon."
33042
+ }
33043
+ ],
33044
+ "attributes": [
33045
+ {
33046
+ "name": "type",
33047
+ "type": {
33048
+ "text": "PresenceType"
33049
+ },
33050
+ "description": "Supported presence types:\n- `active`\n- `away`\n- `away-calling`\n- `busy`\n- `dnd`\n- `meeting`\n- `on-call`\n- `on-device`\n- `on-mobile`\n- `pause`\n- `pto`\n- `presenting`\n- `quiet`\n- `scheduled`",
33051
+ "default": "active",
33052
+ "fieldName": "type"
33053
+ },
33054
+ {
33055
+ "name": "size",
33056
+ "type": {
33057
+ "text": "PresenceSize"
33058
+ },
33059
+ "description": "Acceptable numeric values include:\n- 24\n- 32\n- 48\n- 64\n- 72\n- 88\n- 124\n\nPresence icons are minimum 14px in size, meaning 24, 32, and 48 presence\nicons will be no smaller than 14px (for sizes 24, 32, 48).",
33060
+ "default": "32",
33061
+ "fieldName": "size"
33062
+ }
33063
+ ],
33064
+ "superclass": {
33065
+ "name": "Component",
33066
+ "module": "/src/models"
33067
+ },
33068
+ "tagName": "mdc-presence",
33069
+ "jsDoc": "/**\n * The `mdc-presence` component is a versatile UI element used to\n * display the presence status of a user or entity within an avatar component.\n *\n * This component is ideal for use within avatar UIs where the presence status\n * needs to be visually represented.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-presence\n *\n * @cssproperty --mdc-presence-active-background-color - The background color of the presence type active.\n * @cssproperty --mdc-presence-away-background-color - The background color of the presence type away.\n * @cssproperty --mdc-presence-away-calling-background-color - The background color of the presence type away-calling.\n * @cssproperty --mdc-presence-busy-background-color - The background color of the presence type busy.\n * @cssproperty --mdc-presence-dnd-background-color - The background color of the presence type dnd.\n * @cssproperty --mdc-presence-meeting-background-color - The background color of the presence type meeting.\n * @cssproperty --mdc-presence-on-call-background-color - The background color of the presence type on-call.\n * @cssproperty --mdc-presence-on-device-background-color - The background color of the presence type on-device.\n * @cssproperty --mdc-presence-on-mobile-background-color - The background color of the presence type on-mobile.\n * @cssproperty --mdc-presence-pause-background-color - The background color of the presence type pause.\n * @cssproperty --mdc-presence-pto-background-color - The background color of the presence type pto.\n * @cssproperty --mdc-presence-presenting-background-color - The background color of the presence type presenting.\n * @cssproperty --mdc-presence-quiet-background-color - The background color of the presence type quiet.\n * @cssproperty --mdc-presence-scheduled-background-color - The background color of the presence type scheduled.\n * @cssproperty --mdc-presence-overlay-background-color - The background color of the presence type overlay.\n *\n * @csspart presence-content - The presence content.\n * @csspart mdc-presence-icon - The presence icon.\n * @csspart mdc-presence-icon__active - The presence icon for active.\n * @csspart mdc-presence-icon__away - The presence icon for away.\n * @csspart mdc-presence-icon__away-calling - The presence icon for away-calling.\n * @csspart mdc-presence-icon__busy - The presence icon for busy.\n * @csspart mdc-presence-icon__dnd - The presence icon for dnd.\n * @csspart mdc-presence-icon__meeting - The presence icon for meeting.\n * @csspart mdc-presence-icon__on-call - The presence icon for on-call.\n * @csspart mdc-presence-icon__on-device - The presence icon for on-device.\n * @csspart mdc-presence-icon__on-mobile - The presence icon for on-mobile.\n * @csspart mdc-presence-icon__pause - The presence icon for pause.\n * @csspart mdc-presence-icon__pto - The presence icon for pto.\n * @csspart mdc-presence-icon__presenting - The presence icon for presenting.\n * @csspart mdc-presence-icon__quiet - The presence icon for quiet.\n * @csspart mdc-presence-icon__scheduled - The presence icon for scheduled.\n */",
33070
+ "customElement": true
33071
+ }
33072
+ ],
33073
+ "exports": [
33074
+ {
33075
+ "kind": "js",
33076
+ "name": "default",
33077
+ "declaration": {
33078
+ "name": "Presence",
33079
+ "module": "components/presence/presence.component.js"
33080
+ }
33081
+ }
33082
+ ]
33083
+ },
33084
33084
  {
33085
33085
  "kind": "javascript-module",
33086
33086
  "path": "components/progressbar/progressbar.component.js",