@momentum-design/components 0.102.8 → 0.102.9

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.
@@ -17787,15 +17787,15 @@
17787
17787
  },
17788
17788
  {
17789
17789
  "kind": "javascript-module",
17790
- "path": "components/menuitem/menuitem.component.js",
17790
+ "path": "components/menuitemcheckbox/menuitemcheckbox.component.js",
17791
17791
  "declarations": [
17792
17792
  {
17793
17793
  "kind": "class",
17794
- "description": "menuitem component is inherited by listitem component with the role set `menuitem`.<br/>\nA menu item can contain an icon on the leading or trailing side.\n\nThe leading and trailing slots can be used to display controls and text.<br/>\nBased on the leading/trailing slot, the position of the controls and text can be adjusted.\n\nPlease use element with role=menu as a parent element even when there is only menuitem for a11y purpose.\nFor example mdc-menupopover or mdc-menubar.\n\nMenu item has `name` and `value` attribute that can be used to identify the menu item when it is selected.",
17795
- "name": "MenuItem",
17794
+ "description": "A menuitemcheckbox component is a checkable menuitem.\nThere should be no focusable descendants inside this menuitemcheckbox component.\n\nThe `checked` attribute indicates whether the menuitemcheckbox is checked or not.\n\nMenu item checkbox has `name` and `value` attribute that can be used to identify the menu item when it is selected.\n\nThe `indicator` attribute is used to differentiate between <b>checkbox</b>, <b>checkmark</b>, <b>toggle</b> and <b>none</b>.\nBy default, the `indicator` is set to <b>checkbox</b>.<br/>\n\nThe checkbox will always be positioned on the leading side of the menuitem label and\nthe toggle and checkmark will always be positioned on the trailing side.\n\nThe checkbox will have the possible states of `true` or `false`.\nIf the indicator is set to <b>checkmark</b> and if the `checked` attribute is set to `true`,\nthen the checkmark will be displayed. if not, then no indicator will be displayed.\n\nThe forth options for the `indicator` is <b>none</b>, which will not display any indicator at all.\nIt is intended to be used for customised menu items where the indicator is implemented differently.\nFor example, you can use a custom icon or a different visual element to indicate the state of the menu item.\nMake sure the new indicator is accessible.\n\nIf you want only one item in a group to be checked, consider using menuitemradio component.",
17795
+ "name": "MenuItemCheckbox",
17796
17796
  "slots": [
17797
17797
  {
17798
- "description": "slot for menu item controls to appear of leading end.",
17798
+ "description": "slot for menu item checkbox controls to appear of leading end.",
17799
17799
  "name": "leading-controls",
17800
17800
  "inheritedFrom": {
17801
17801
  "name": "ListItem",
@@ -17803,7 +17803,7 @@
17803
17803
  }
17804
17804
  },
17805
17805
  {
17806
- "description": "slot for menu item primary label.",
17806
+ "description": "slot for menu item checkbox primary label.",
17807
17807
  "name": "leading-text-primary-label",
17808
17808
  "inheritedFrom": {
17809
17809
  "name": "ListItem",
@@ -17811,7 +17811,7 @@
17811
17811
  }
17812
17812
  },
17813
17813
  {
17814
- "description": "slot for menu item secondary label.",
17814
+ "description": "slot for menu item checkbox secondary label.",
17815
17815
  "name": "leading-text-secondary-label",
17816
17816
  "inheritedFrom": {
17817
17817
  "name": "ListItem",
@@ -17819,7 +17819,7 @@
17819
17819
  }
17820
17820
  },
17821
17821
  {
17822
- "description": "slot for menu item tertiary label.",
17822
+ "description": "slot for menu item checkbox tertiary label.",
17823
17823
  "name": "leading-text-tertiary-label",
17824
17824
  "inheritedFrom": {
17825
17825
  "name": "ListItem",
@@ -17827,7 +17827,7 @@
17827
17827
  }
17828
17828
  },
17829
17829
  {
17830
- "description": "slot for menu item side header text.",
17830
+ "description": "slot for menu item checkbox side header text.",
17831
17831
  "name": "trailing-text-side-header",
17832
17832
  "inheritedFrom": {
17833
17833
  "name": "ListItem",
@@ -17835,7 +17835,7 @@
17835
17835
  }
17836
17836
  },
17837
17837
  {
17838
- "description": "slot for menu item subline text.",
17838
+ "description": "slot for menu item checkbox subline text.",
17839
17839
  "name": "trailing-text-subline",
17840
17840
  "inheritedFrom": {
17841
17841
  "name": "ListItem",
@@ -17843,7 +17843,7 @@
17843
17843
  }
17844
17844
  },
17845
17845
  {
17846
- "description": "slot for menu item controls to appear of trailing end.",
17846
+ "description": "slot for menu item checkbox controls to appear of trailing end.",
17847
17847
  "name": "trailing-controls",
17848
17848
  "inheritedFrom": {
17849
17849
  "name": "ListItem",
@@ -17860,6 +17860,67 @@
17860
17860
  }
17861
17861
  ],
17862
17862
  "members": [
17863
+ {
17864
+ "kind": "field",
17865
+ "name": "checked",
17866
+ "type": {
17867
+ "text": "boolean"
17868
+ },
17869
+ "default": "false",
17870
+ "description": "The checked attribute is used to indicate that the menuitemcheckbox is checked or not.",
17871
+ "attribute": "checked",
17872
+ "reflects": true
17873
+ },
17874
+ {
17875
+ "kind": "field",
17876
+ "name": "indicator",
17877
+ "type": {
17878
+ "text": "Indicator"
17879
+ },
17880
+ "description": "The indicator attribute is used to differentiate between <b>checkbox</b> and <b>toggle</b>.",
17881
+ "default": "'checkbox'",
17882
+ "attribute": "indicator",
17883
+ "reflects": true
17884
+ },
17885
+ {
17886
+ "kind": "method",
17887
+ "name": "handleMouseClick",
17888
+ "privacy": "private",
17889
+ "description": "Handles click events to toggle checked state\nIf the menuitemcheckbox is disabled, it does nothing.\nIf the menuitemcheckbox is not disabled, it toggles the `checked` state between `true` and `false`."
17890
+ },
17891
+ {
17892
+ "kind": "method",
17893
+ "name": "staticCheckbox",
17894
+ "privacy": "private",
17895
+ "return": {
17896
+ "type": {
17897
+ "text": ""
17898
+ }
17899
+ },
17900
+ "description": "Returns a static checkbox element if the indicator is set to checkbox.\nIf the indicator is not set to checkbox, it returns nothing."
17901
+ },
17902
+ {
17903
+ "kind": "method",
17904
+ "name": "staticToggle",
17905
+ "privacy": "private",
17906
+ "return": {
17907
+ "type": {
17908
+ "text": ""
17909
+ }
17910
+ },
17911
+ "description": "Returns a static toggle element if the indicator is set to toggle.\nIf the indicator is not set to toggle, it returns nothing.\n\nThe toggle will always be positioned on the trailing side of the menuitem label."
17912
+ },
17913
+ {
17914
+ "kind": "method",
17915
+ "name": "getCheckmarkIcon",
17916
+ "privacy": "private",
17917
+ "return": {
17918
+ "type": {
17919
+ "text": ""
17920
+ }
17921
+ },
17922
+ "description": "Returns a checkmark icon if the indicator is set to checkmark and the checked state is true.\nIf the indicator is not set to checkmark or the checked state is false, it returns nothing.\n\nThe checkmark icon will always be positioned on the trailing side of the menuitem label."
17923
+ },
17863
17924
  {
17864
17925
  "kind": "field",
17865
17926
  "name": "arrowPosition",
@@ -17868,7 +17929,11 @@
17868
17929
  },
17869
17930
  "description": "Defines where the arrow icon will appear.\n- `'leading'`: Icon appears on the leading edge (start).\n- `'trailing'`: Icon appears on the trailing edge (end).\n\nIf not set, no arrow is displayed.",
17870
17931
  "attribute": "arrow-position",
17871
- "reflects": true
17932
+ "reflects": true,
17933
+ "inheritedFrom": {
17934
+ "name": "MenuItem",
17935
+ "module": "components/menuitem/menuitem.component.js"
17936
+ }
17872
17937
  },
17873
17938
  {
17874
17939
  "kind": "field",
@@ -17878,7 +17943,11 @@
17878
17943
  },
17879
17944
  "description": "Defines the direction the arrow icon points.\n- `'positive'`: Arrow points toward the trailing side.\n- `'negative'`: Arrow points toward the leading side.",
17880
17945
  "attribute": "arrow-direction",
17881
- "reflects": true
17946
+ "reflects": true,
17947
+ "inheritedFrom": {
17948
+ "name": "MenuItem",
17949
+ "module": "components/menuitem/menuitem.component.js"
17950
+ }
17882
17951
  },
17883
17952
  {
17884
17953
  "kind": "field",
@@ -17889,7 +17958,11 @@
17889
17958
  "default": "undefined",
17890
17959
  "description": "The name attribute is used to identify the menu item when it is selected.",
17891
17960
  "attribute": "name",
17892
- "reflects": true
17961
+ "reflects": true,
17962
+ "inheritedFrom": {
17963
+ "name": "MenuItem",
17964
+ "module": "components/menuitem/menuitem.component.js"
17965
+ }
17893
17966
  },
17894
17967
  {
17895
17968
  "kind": "field",
@@ -17900,7 +17973,11 @@
17900
17973
  "default": "undefined",
17901
17974
  "description": "The value attribute is used to represent a value when the menu item is selected.\nIt is typically used with checkbox and radio menu items, but can be handy for any menu item.",
17902
17975
  "attribute": "value",
17903
- "reflects": true
17976
+ "reflects": true,
17977
+ "inheritedFrom": {
17978
+ "name": "MenuItem",
17979
+ "module": "components/menuitem/menuitem.component.js"
17980
+ }
17904
17981
  },
17905
17982
  {
17906
17983
  "kind": "method",
@@ -17944,7 +18021,11 @@
17944
18021
  "description": "The keyboard event that triggered the action."
17945
18022
  }
17946
18023
  ],
17947
- "description": "Handles the keyup event for the menu item.\nIf the Space key is released, it triggers a click event on the menu item.\nThis allows keyboard users to activate the menu item using the Space key.\nIt also prevents the default action of the Space key to avoid scrolling the page.\n\nThis follows the native behaviour, actionable element can be triggered by Space\nkey on the keyup event.\n\nNote: Action triggered by Enter on the keydown event."
18024
+ "description": "Handles the keyup event for the menu item.\nIf the Space key is released, it triggers a click event on the menu item.\nThis allows keyboard users to activate the menu item using the Space key.\nIt also prevents the default action of the Space key to avoid scrolling the page.\n\nThis follows the native behaviour, actionable element can be triggered by Space\nkey on the keyup event.\n\nNote: Action triggered by Enter on the keydown event.",
18025
+ "inheritedFrom": {
18026
+ "name": "MenuItem",
18027
+ "module": "components/menuitem/menuitem.component.js"
18028
+ }
17948
18029
  },
17949
18030
  {
17950
18031
  "kind": "method",
@@ -18281,7 +18362,15 @@
18281
18362
  ],
18282
18363
  "events": [
18283
18364
  {
18284
- "description": "(React: onClick) This event is dispatched when the menuitem is clicked.",
18365
+ "name": "change",
18366
+ "type": {
18367
+ "text": "Event"
18368
+ },
18369
+ "description": "(React: onChange) This event is dispatched when the menuitemcheckbox changes.",
18370
+ "reactName": "onChange"
18371
+ },
18372
+ {
18373
+ "description": "(React: onClick) This event is dispatched when the menuitemcheckbox is clicked.",
18285
18374
  "name": "click",
18286
18375
  "reactName": "onClick",
18287
18376
  "inheritedFrom": {
@@ -18290,27 +18379,27 @@
18290
18379
  }
18291
18380
  },
18292
18381
  {
18293
- "description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the menuitem.",
18294
- "name": "keydown",
18295
- "reactName": "onKeyDown",
18382
+ "description": "(React: onFocus) This event is dispatched when the menuitemcheckbox receives focus.",
18383
+ "name": "focus",
18384
+ "reactName": "onFocus",
18296
18385
  "inheritedFrom": {
18297
18386
  "name": "ListItem",
18298
18387
  "module": "src/components/listitem/listitem.component.ts"
18299
18388
  }
18300
18389
  },
18301
18390
  {
18302
- "description": "(React: onKeyUp) This event is dispatched when a key is released on the menuitem.",
18303
- "name": "keyup",
18304
- "reactName": "onKeyUp",
18391
+ "description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the menuitem.",
18392
+ "name": "keydown",
18393
+ "reactName": "onKeyDown",
18305
18394
  "inheritedFrom": {
18306
18395
  "name": "ListItem",
18307
18396
  "module": "src/components/listitem/listitem.component.ts"
18308
18397
  }
18309
18398
  },
18310
18399
  {
18311
- "description": "(React: onFocus) This event is dispatched when the menuitem receives focus.",
18312
- "name": "focus",
18313
- "reactName": "onFocus",
18400
+ "description": "(React: onKeyUp) This event is dispatched when a key is released on the menuitem.",
18401
+ "name": "keyup",
18402
+ "reactName": "onKeyUp",
18314
18403
  "inheritedFrom": {
18315
18404
  "name": "ListItem",
18316
18405
  "module": "src/components/listitem/listitem.component.ts"
@@ -18354,13 +18443,35 @@
18354
18443
  }
18355
18444
  ],
18356
18445
  "attributes": [
18446
+ {
18447
+ "name": "checked",
18448
+ "type": {
18449
+ "text": "boolean"
18450
+ },
18451
+ "default": "false",
18452
+ "description": "The checked attribute is used to indicate that the menuitemcheckbox is checked or not.",
18453
+ "fieldName": "checked"
18454
+ },
18455
+ {
18456
+ "name": "indicator",
18457
+ "type": {
18458
+ "text": "Indicator"
18459
+ },
18460
+ "description": "The indicator attribute is used to differentiate between <b>checkbox</b> and <b>toggle</b>.",
18461
+ "default": "'checkbox'",
18462
+ "fieldName": "indicator"
18463
+ },
18357
18464
  {
18358
18465
  "name": "arrow-position",
18359
18466
  "type": {
18360
18467
  "text": "ArrowPositions | undefined"
18361
18468
  },
18362
18469
  "description": "Defines where the arrow icon will appear.\n- `'leading'`: Icon appears on the leading edge (start).\n- `'trailing'`: Icon appears on the trailing edge (end).\n\nIf not set, no arrow is displayed.",
18363
- "fieldName": "arrowPosition"
18470
+ "fieldName": "arrowPosition",
18471
+ "inheritedFrom": {
18472
+ "name": "MenuItem",
18473
+ "module": "src/components/menuitem/menuitem.component.ts"
18474
+ }
18364
18475
  },
18365
18476
  {
18366
18477
  "name": "arrow-direction",
@@ -18368,7 +18479,11 @@
18368
18479
  "text": "ArrowDirections | undefined"
18369
18480
  },
18370
18481
  "description": "Defines the direction the arrow icon points.\n- `'positive'`: Arrow points toward the trailing side.\n- `'negative'`: Arrow points toward the leading side.",
18371
- "fieldName": "arrowDirection"
18482
+ "fieldName": "arrowDirection",
18483
+ "inheritedFrom": {
18484
+ "name": "MenuItem",
18485
+ "module": "src/components/menuitem/menuitem.component.ts"
18486
+ }
18372
18487
  },
18373
18488
  {
18374
18489
  "name": "name",
@@ -18377,7 +18492,11 @@
18377
18492
  },
18378
18493
  "default": "undefined",
18379
18494
  "description": "The name attribute is used to identify the menu item when it is selected.",
18380
- "fieldName": "name"
18495
+ "fieldName": "name",
18496
+ "inheritedFrom": {
18497
+ "name": "MenuItem",
18498
+ "module": "src/components/menuitem/menuitem.component.ts"
18499
+ }
18381
18500
  },
18382
18501
  {
18383
18502
  "name": "value",
@@ -18386,7 +18505,11 @@
18386
18505
  },
18387
18506
  "default": "undefined",
18388
18507
  "description": "The value attribute is used to represent a value when the menu item is selected.\nIt is typically used with checkbox and radio menu items, but can be handy for any menu item.",
18389
- "fieldName": "value"
18508
+ "fieldName": "value",
18509
+ "inheritedFrom": {
18510
+ "name": "MenuItem",
18511
+ "module": "src/components/menuitem/menuitem.component.ts"
18512
+ }
18390
18513
  },
18391
18514
  {
18392
18515
  "name": "disabled",
@@ -18527,11 +18650,11 @@
18527
18650
  }
18528
18651
  ],
18529
18652
  "superclass": {
18530
- "name": "ListItem",
18531
- "module": "/src/components/listitem/listitem.component"
18653
+ "name": "MenuItem",
18654
+ "module": "/src/components/menuitem/menuitem.component"
18532
18655
  },
18533
- "tagName": "mdc-menuitem",
18534
- "jsDoc": "/**\n * menuitem component is inherited by listitem component with the role set `menuitem`.<br/>\n * A menu item can contain an icon on the leading or trailing side.\n *\n * The leading and trailing slots can be used to display controls and text.<br/>\n * Based on the leading/trailing slot, the position of the controls and text can be adjusted.\n *\n * Please use element with role=menu as a parent element even when there is only menuitem for a11y purpose.\n * For example mdc-menupopover or mdc-menubar.\n *\n * Menu item has `name` and `value` attribute that can be used to identify the menu item when it is selected.\n *\n * @dependency mdc-text\n * @dependency mdc-icon\n * @dependency mdc-tooltip\n *\n * @tagname mdc-menuitem\n *\n * @slot leading-controls - slot for menu item controls to appear of leading end.\n * @slot leading-text-primary-label - slot for menu item primary label.\n * @slot leading-text-secondary-label - slot for menu item secondary label.\n * @slot leading-text-tertiary-label - slot for menu item tertiary label.\n * @slot trailing-text-side-header - slot for menu item side header text.\n * @slot trailing-text-subline - slot for menu item subline text.\n * @slot trailing-controls - slot for menu item controls to appear of trailing end.\n *\n * @event click - (React: onClick) This event is dispatched when the menuitem is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the menuitem.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the menuitem.\n * @event focus - (React: onFocus) This event is dispatched when the menuitem receives focus.\n */",
18656
+ "tagName": "mdc-menuitemcheckbox",
18657
+ "jsDoc": "/**\n * A menuitemcheckbox component is a checkable menuitem.\n * There should be no focusable descendants inside this menuitemcheckbox component.\n *\n * The `checked` attribute indicates whether the menuitemcheckbox is checked or not.\n *\n * Menu item checkbox has `name` and `value` attribute that can be used to identify the menu item when it is selected.\n *\n * The `indicator` attribute is used to differentiate between <b>checkbox</b>, <b>checkmark</b>, <b>toggle</b> and <b>none</b>.\n * By default, the `indicator` is set to <b>checkbox</b>.<br/>\n *\n * The checkbox will always be positioned on the leading side of the menuitem label and\n * the toggle and checkmark will always be positioned on the trailing side.\n *\n * The checkbox will have the possible states of `true` or `false`.\n * If the indicator is set to <b>checkmark</b> and if the `checked` attribute is set to `true`,\n * then the checkmark will be displayed. if not, then no indicator will be displayed.\n *\n * The forth options for the `indicator` is <b>none</b>, which will not display any indicator at all.\n * It is intended to be used for customised menu items where the indicator is implemented differently.\n * For example, you can use a custom icon or a different visual element to indicate the state of the menu item.\n * Make sure the new indicator is accessible.\n *\n * If you want only one item in a group to be checked, consider using menuitemradio component.\n *\n * @dependency mdc-staticcheckbox\n * @dependency mdc-statictoggle\n * @dependency mdc-icon\n *\n * @tagname mdc-menuitemcheckbox\n *\n * @slot leading-controls - slot for menu item checkbox controls to appear of leading end.\n * @slot leading-text-primary-label - slot for menu item checkbox primary label.\n * @slot leading-text-secondary-label - slot for menu item checkbox secondary label.\n * @slot leading-text-tertiary-label - slot for menu item checkbox tertiary label.\n * @slot trailing-text-side-header - slot for menu item checkbox side header text.\n * @slot trailing-text-subline - slot for menu item checkbox subline text.\n * @slot trailing-controls - slot for menu item checkbox controls to appear of trailing end.\n *\n * @event change - (React: onChange) This event is dispatched when the menuitemcheckbox changes.\n * @event click - (React: onClick) This event is dispatched when the menuitemcheckbox is clicked.\n * @event focus - (React: onFocus) This event is dispatched when the menuitemcheckbox receives focus.\n */",
18535
18658
  "customElement": true,
18536
18659
  "cssProperties": [
18537
18660
  {
@@ -18638,23 +18761,23 @@
18638
18761
  "kind": "js",
18639
18762
  "name": "default",
18640
18763
  "declaration": {
18641
- "name": "MenuItem",
18642
- "module": "components/menuitem/menuitem.component.js"
18764
+ "name": "MenuItemCheckbox",
18765
+ "module": "components/menuitemcheckbox/menuitemcheckbox.component.js"
18643
18766
  }
18644
18767
  }
18645
18768
  ]
18646
18769
  },
18647
18770
  {
18648
18771
  "kind": "javascript-module",
18649
- "path": "components/menuitemcheckbox/menuitemcheckbox.component.js",
18772
+ "path": "components/menuitem/menuitem.component.js",
18650
18773
  "declarations": [
18651
18774
  {
18652
18775
  "kind": "class",
18653
- "description": "A menuitemcheckbox component is a checkable menuitem.\nThere should be no focusable descendants inside this menuitemcheckbox component.\n\nThe `checked` attribute indicates whether the menuitemcheckbox is checked or not.\n\nMenu item checkbox has `name` and `value` attribute that can be used to identify the menu item when it is selected.\n\nThe `indicator` attribute is used to differentiate between <b>checkbox</b>, <b>checkmark</b>, <b>toggle</b> and <b>none</b>.\nBy default, the `indicator` is set to <b>checkbox</b>.<br/>\n\nThe checkbox will always be positioned on the leading side of the menuitem label and\nthe toggle and checkmark will always be positioned on the trailing side.\n\nThe checkbox will have the possible states of `true` or `false`.\nIf the indicator is set to <b>checkmark</b> and if the `checked` attribute is set to `true`,\nthen the checkmark will be displayed. if not, then no indicator will be displayed.\n\nThe forth options for the `indicator` is <b>none</b>, which will not display any indicator at all.\nIt is intended to be used for customised menu items where the indicator is implemented differently.\nFor example, you can use a custom icon or a different visual element to indicate the state of the menu item.\nMake sure the new indicator is accessible.\n\nIf you want only one item in a group to be checked, consider using menuitemradio component.",
18654
- "name": "MenuItemCheckbox",
18776
+ "description": "menuitem component is inherited by listitem component with the role set `menuitem`.<br/>\nA menu item can contain an icon on the leading or trailing side.\n\nThe leading and trailing slots can be used to display controls and text.<br/>\nBased on the leading/trailing slot, the position of the controls and text can be adjusted.\n\nPlease use element with role=menu as a parent element even when there is only menuitem for a11y purpose.\nFor example mdc-menupopover or mdc-menubar.\n\nMenu item has `name` and `value` attribute that can be used to identify the menu item when it is selected.",
18777
+ "name": "MenuItem",
18655
18778
  "slots": [
18656
18779
  {
18657
- "description": "slot for menu item checkbox controls to appear of leading end.",
18780
+ "description": "slot for menu item controls to appear of leading end.",
18658
18781
  "name": "leading-controls",
18659
18782
  "inheritedFrom": {
18660
18783
  "name": "ListItem",
@@ -18662,7 +18785,7 @@
18662
18785
  }
18663
18786
  },
18664
18787
  {
18665
- "description": "slot for menu item checkbox primary label.",
18788
+ "description": "slot for menu item primary label.",
18666
18789
  "name": "leading-text-primary-label",
18667
18790
  "inheritedFrom": {
18668
18791
  "name": "ListItem",
@@ -18670,7 +18793,7 @@
18670
18793
  }
18671
18794
  },
18672
18795
  {
18673
- "description": "slot for menu item checkbox secondary label.",
18796
+ "description": "slot for menu item secondary label.",
18674
18797
  "name": "leading-text-secondary-label",
18675
18798
  "inheritedFrom": {
18676
18799
  "name": "ListItem",
@@ -18678,7 +18801,7 @@
18678
18801
  }
18679
18802
  },
18680
18803
  {
18681
- "description": "slot for menu item checkbox tertiary label.",
18804
+ "description": "slot for menu item tertiary label.",
18682
18805
  "name": "leading-text-tertiary-label",
18683
18806
  "inheritedFrom": {
18684
18807
  "name": "ListItem",
@@ -18686,7 +18809,7 @@
18686
18809
  }
18687
18810
  },
18688
18811
  {
18689
- "description": "slot for menu item checkbox side header text.",
18812
+ "description": "slot for menu item side header text.",
18690
18813
  "name": "trailing-text-side-header",
18691
18814
  "inheritedFrom": {
18692
18815
  "name": "ListItem",
@@ -18694,7 +18817,7 @@
18694
18817
  }
18695
18818
  },
18696
18819
  {
18697
- "description": "slot for menu item checkbox subline text.",
18820
+ "description": "slot for menu item subline text.",
18698
18821
  "name": "trailing-text-subline",
18699
18822
  "inheritedFrom": {
18700
18823
  "name": "ListItem",
@@ -18702,7 +18825,7 @@
18702
18825
  }
18703
18826
  },
18704
18827
  {
18705
- "description": "slot for menu item checkbox controls to appear of trailing end.",
18828
+ "description": "slot for menu item controls to appear of trailing end.",
18706
18829
  "name": "trailing-controls",
18707
18830
  "inheritedFrom": {
18708
18831
  "name": "ListItem",
@@ -18719,67 +18842,6 @@
18719
18842
  }
18720
18843
  ],
18721
18844
  "members": [
18722
- {
18723
- "kind": "field",
18724
- "name": "checked",
18725
- "type": {
18726
- "text": "boolean"
18727
- },
18728
- "default": "false",
18729
- "description": "The checked attribute is used to indicate that the menuitemcheckbox is checked or not.",
18730
- "attribute": "checked",
18731
- "reflects": true
18732
- },
18733
- {
18734
- "kind": "field",
18735
- "name": "indicator",
18736
- "type": {
18737
- "text": "Indicator"
18738
- },
18739
- "description": "The indicator attribute is used to differentiate between <b>checkbox</b> and <b>toggle</b>.",
18740
- "default": "'checkbox'",
18741
- "attribute": "indicator",
18742
- "reflects": true
18743
- },
18744
- {
18745
- "kind": "method",
18746
- "name": "handleMouseClick",
18747
- "privacy": "private",
18748
- "description": "Handles click events to toggle checked state\nIf the menuitemcheckbox is disabled, it does nothing.\nIf the menuitemcheckbox is not disabled, it toggles the `checked` state between `true` and `false`."
18749
- },
18750
- {
18751
- "kind": "method",
18752
- "name": "staticCheckbox",
18753
- "privacy": "private",
18754
- "return": {
18755
- "type": {
18756
- "text": ""
18757
- }
18758
- },
18759
- "description": "Returns a static checkbox element if the indicator is set to checkbox.\nIf the indicator is not set to checkbox, it returns nothing."
18760
- },
18761
- {
18762
- "kind": "method",
18763
- "name": "staticToggle",
18764
- "privacy": "private",
18765
- "return": {
18766
- "type": {
18767
- "text": ""
18768
- }
18769
- },
18770
- "description": "Returns a static toggle element if the indicator is set to toggle.\nIf the indicator is not set to toggle, it returns nothing.\n\nThe toggle will always be positioned on the trailing side of the menuitem label."
18771
- },
18772
- {
18773
- "kind": "method",
18774
- "name": "getCheckmarkIcon",
18775
- "privacy": "private",
18776
- "return": {
18777
- "type": {
18778
- "text": ""
18779
- }
18780
- },
18781
- "description": "Returns a checkmark icon if the indicator is set to checkmark and the checked state is true.\nIf the indicator is not set to checkmark or the checked state is false, it returns nothing.\n\nThe checkmark icon will always be positioned on the trailing side of the menuitem label."
18782
- },
18783
18845
  {
18784
18846
  "kind": "field",
18785
18847
  "name": "arrowPosition",
@@ -18788,11 +18850,7 @@
18788
18850
  },
18789
18851
  "description": "Defines where the arrow icon will appear.\n- `'leading'`: Icon appears on the leading edge (start).\n- `'trailing'`: Icon appears on the trailing edge (end).\n\nIf not set, no arrow is displayed.",
18790
18852
  "attribute": "arrow-position",
18791
- "reflects": true,
18792
- "inheritedFrom": {
18793
- "name": "MenuItem",
18794
- "module": "components/menuitem/menuitem.component.js"
18795
- }
18853
+ "reflects": true
18796
18854
  },
18797
18855
  {
18798
18856
  "kind": "field",
@@ -18802,11 +18860,7 @@
18802
18860
  },
18803
18861
  "description": "Defines the direction the arrow icon points.\n- `'positive'`: Arrow points toward the trailing side.\n- `'negative'`: Arrow points toward the leading side.",
18804
18862
  "attribute": "arrow-direction",
18805
- "reflects": true,
18806
- "inheritedFrom": {
18807
- "name": "MenuItem",
18808
- "module": "components/menuitem/menuitem.component.js"
18809
- }
18863
+ "reflects": true
18810
18864
  },
18811
18865
  {
18812
18866
  "kind": "field",
@@ -18817,11 +18871,7 @@
18817
18871
  "default": "undefined",
18818
18872
  "description": "The name attribute is used to identify the menu item when it is selected.",
18819
18873
  "attribute": "name",
18820
- "reflects": true,
18821
- "inheritedFrom": {
18822
- "name": "MenuItem",
18823
- "module": "components/menuitem/menuitem.component.js"
18824
- }
18874
+ "reflects": true
18825
18875
  },
18826
18876
  {
18827
18877
  "kind": "field",
@@ -18832,11 +18882,7 @@
18832
18882
  "default": "undefined",
18833
18883
  "description": "The value attribute is used to represent a value when the menu item is selected.\nIt is typically used with checkbox and radio menu items, but can be handy for any menu item.",
18834
18884
  "attribute": "value",
18835
- "reflects": true,
18836
- "inheritedFrom": {
18837
- "name": "MenuItem",
18838
- "module": "components/menuitem/menuitem.component.js"
18839
- }
18885
+ "reflects": true
18840
18886
  },
18841
18887
  {
18842
18888
  "kind": "method",
@@ -18880,11 +18926,7 @@
18880
18926
  "description": "The keyboard event that triggered the action."
18881
18927
  }
18882
18928
  ],
18883
- "description": "Handles the keyup event for the menu item.\nIf the Space key is released, it triggers a click event on the menu item.\nThis allows keyboard users to activate the menu item using the Space key.\nIt also prevents the default action of the Space key to avoid scrolling the page.\n\nThis follows the native behaviour, actionable element can be triggered by Space\nkey on the keyup event.\n\nNote: Action triggered by Enter on the keydown event.",
18884
- "inheritedFrom": {
18885
- "name": "MenuItem",
18886
- "module": "components/menuitem/menuitem.component.js"
18887
- }
18929
+ "description": "Handles the keyup event for the menu item.\nIf the Space key is released, it triggers a click event on the menu item.\nThis allows keyboard users to activate the menu item using the Space key.\nIt also prevents the default action of the Space key to avoid scrolling the page.\n\nThis follows the native behaviour, actionable element can be triggered by Space\nkey on the keyup event.\n\nNote: Action triggered by Enter on the keydown event."
18888
18930
  },
18889
18931
  {
18890
18932
  "kind": "method",
@@ -19221,15 +19263,7 @@
19221
19263
  ],
19222
19264
  "events": [
19223
19265
  {
19224
- "name": "change",
19225
- "type": {
19226
- "text": "Event"
19227
- },
19228
- "description": "(React: onChange) This event is dispatched when the menuitemcheckbox changes.",
19229
- "reactName": "onChange"
19230
- },
19231
- {
19232
- "description": "(React: onClick) This event is dispatched when the menuitemcheckbox is clicked.",
19266
+ "description": "(React: onClick) This event is dispatched when the menuitem is clicked.",
19233
19267
  "name": "click",
19234
19268
  "reactName": "onClick",
19235
19269
  "inheritedFrom": {
@@ -19237,15 +19271,6 @@
19237
19271
  "module": "src/components/listitem/listitem.component.ts"
19238
19272
  }
19239
19273
  },
19240
- {
19241
- "description": "(React: onFocus) This event is dispatched when the menuitemcheckbox receives focus.",
19242
- "name": "focus",
19243
- "reactName": "onFocus",
19244
- "inheritedFrom": {
19245
- "name": "ListItem",
19246
- "module": "src/components/listitem/listitem.component.ts"
19247
- }
19248
- },
19249
19274
  {
19250
19275
  "description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the menuitem.",
19251
19276
  "name": "keydown",
@@ -19264,6 +19289,15 @@
19264
19289
  "module": "src/components/listitem/listitem.component.ts"
19265
19290
  }
19266
19291
  },
19292
+ {
19293
+ "description": "(React: onFocus) This event is dispatched when the menuitem receives focus.",
19294
+ "name": "focus",
19295
+ "reactName": "onFocus",
19296
+ "inheritedFrom": {
19297
+ "name": "ListItem",
19298
+ "module": "src/components/listitem/listitem.component.ts"
19299
+ }
19300
+ },
19267
19301
  {
19268
19302
  "description": "(React: onEnabled) This event is dispatched after the listitem is enabled",
19269
19303
  "name": "enabled",
@@ -19302,35 +19336,13 @@
19302
19336
  }
19303
19337
  ],
19304
19338
  "attributes": [
19305
- {
19306
- "name": "checked",
19307
- "type": {
19308
- "text": "boolean"
19309
- },
19310
- "default": "false",
19311
- "description": "The checked attribute is used to indicate that the menuitemcheckbox is checked or not.",
19312
- "fieldName": "checked"
19313
- },
19314
- {
19315
- "name": "indicator",
19316
- "type": {
19317
- "text": "Indicator"
19318
- },
19319
- "description": "The indicator attribute is used to differentiate between <b>checkbox</b> and <b>toggle</b>.",
19320
- "default": "'checkbox'",
19321
- "fieldName": "indicator"
19322
- },
19323
19339
  {
19324
19340
  "name": "arrow-position",
19325
19341
  "type": {
19326
19342
  "text": "ArrowPositions | undefined"
19327
19343
  },
19328
19344
  "description": "Defines where the arrow icon will appear.\n- `'leading'`: Icon appears on the leading edge (start).\n- `'trailing'`: Icon appears on the trailing edge (end).\n\nIf not set, no arrow is displayed.",
19329
- "fieldName": "arrowPosition",
19330
- "inheritedFrom": {
19331
- "name": "MenuItem",
19332
- "module": "src/components/menuitem/menuitem.component.ts"
19333
- }
19345
+ "fieldName": "arrowPosition"
19334
19346
  },
19335
19347
  {
19336
19348
  "name": "arrow-direction",
@@ -19338,11 +19350,7 @@
19338
19350
  "text": "ArrowDirections | undefined"
19339
19351
  },
19340
19352
  "description": "Defines the direction the arrow icon points.\n- `'positive'`: Arrow points toward the trailing side.\n- `'negative'`: Arrow points toward the leading side.",
19341
- "fieldName": "arrowDirection",
19342
- "inheritedFrom": {
19343
- "name": "MenuItem",
19344
- "module": "src/components/menuitem/menuitem.component.ts"
19345
- }
19353
+ "fieldName": "arrowDirection"
19346
19354
  },
19347
19355
  {
19348
19356
  "name": "name",
@@ -19351,11 +19359,7 @@
19351
19359
  },
19352
19360
  "default": "undefined",
19353
19361
  "description": "The name attribute is used to identify the menu item when it is selected.",
19354
- "fieldName": "name",
19355
- "inheritedFrom": {
19356
- "name": "MenuItem",
19357
- "module": "src/components/menuitem/menuitem.component.ts"
19358
- }
19362
+ "fieldName": "name"
19359
19363
  },
19360
19364
  {
19361
19365
  "name": "value",
@@ -19364,11 +19368,7 @@
19364
19368
  },
19365
19369
  "default": "undefined",
19366
19370
  "description": "The value attribute is used to represent a value when the menu item is selected.\nIt is typically used with checkbox and radio menu items, but can be handy for any menu item.",
19367
- "fieldName": "value",
19368
- "inheritedFrom": {
19369
- "name": "MenuItem",
19370
- "module": "src/components/menuitem/menuitem.component.ts"
19371
- }
19371
+ "fieldName": "value"
19372
19372
  },
19373
19373
  {
19374
19374
  "name": "disabled",
@@ -19509,11 +19509,11 @@
19509
19509
  }
19510
19510
  ],
19511
19511
  "superclass": {
19512
- "name": "MenuItem",
19513
- "module": "/src/components/menuitem/menuitem.component"
19512
+ "name": "ListItem",
19513
+ "module": "/src/components/listitem/listitem.component"
19514
19514
  },
19515
- "tagName": "mdc-menuitemcheckbox",
19516
- "jsDoc": "/**\n * A menuitemcheckbox component is a checkable menuitem.\n * There should be no focusable descendants inside this menuitemcheckbox component.\n *\n * The `checked` attribute indicates whether the menuitemcheckbox is checked or not.\n *\n * Menu item checkbox has `name` and `value` attribute that can be used to identify the menu item when it is selected.\n *\n * The `indicator` attribute is used to differentiate between <b>checkbox</b>, <b>checkmark</b>, <b>toggle</b> and <b>none</b>.\n * By default, the `indicator` is set to <b>checkbox</b>.<br/>\n *\n * The checkbox will always be positioned on the leading side of the menuitem label and\n * the toggle and checkmark will always be positioned on the trailing side.\n *\n * The checkbox will have the possible states of `true` or `false`.\n * If the indicator is set to <b>checkmark</b> and if the `checked` attribute is set to `true`,\n * then the checkmark will be displayed. if not, then no indicator will be displayed.\n *\n * The forth options for the `indicator` is <b>none</b>, which will not display any indicator at all.\n * It is intended to be used for customised menu items where the indicator is implemented differently.\n * For example, you can use a custom icon or a different visual element to indicate the state of the menu item.\n * Make sure the new indicator is accessible.\n *\n * If you want only one item in a group to be checked, consider using menuitemradio component.\n *\n * @dependency mdc-staticcheckbox\n * @dependency mdc-statictoggle\n * @dependency mdc-icon\n *\n * @tagname mdc-menuitemcheckbox\n *\n * @slot leading-controls - slot for menu item checkbox controls to appear of leading end.\n * @slot leading-text-primary-label - slot for menu item checkbox primary label.\n * @slot leading-text-secondary-label - slot for menu item checkbox secondary label.\n * @slot leading-text-tertiary-label - slot for menu item checkbox tertiary label.\n * @slot trailing-text-side-header - slot for menu item checkbox side header text.\n * @slot trailing-text-subline - slot for menu item checkbox subline text.\n * @slot trailing-controls - slot for menu item checkbox controls to appear of trailing end.\n *\n * @event change - (React: onChange) This event is dispatched when the menuitemcheckbox changes.\n * @event click - (React: onClick) This event is dispatched when the menuitemcheckbox is clicked.\n * @event focus - (React: onFocus) This event is dispatched when the menuitemcheckbox receives focus.\n */",
19515
+ "tagName": "mdc-menuitem",
19516
+ "jsDoc": "/**\n * menuitem component is inherited by listitem component with the role set `menuitem`.<br/>\n * A menu item can contain an icon on the leading or trailing side.\n *\n * The leading and trailing slots can be used to display controls and text.<br/>\n * Based on the leading/trailing slot, the position of the controls and text can be adjusted.\n *\n * Please use element with role=menu as a parent element even when there is only menuitem for a11y purpose.\n * For example mdc-menupopover or mdc-menubar.\n *\n * Menu item has `name` and `value` attribute that can be used to identify the menu item when it is selected.\n *\n * @dependency mdc-text\n * @dependency mdc-icon\n * @dependency mdc-tooltip\n *\n * @tagname mdc-menuitem\n *\n * @slot leading-controls - slot for menu item controls to appear of leading end.\n * @slot leading-text-primary-label - slot for menu item primary label.\n * @slot leading-text-secondary-label - slot for menu item secondary label.\n * @slot leading-text-tertiary-label - slot for menu item tertiary label.\n * @slot trailing-text-side-header - slot for menu item side header text.\n * @slot trailing-text-subline - slot for menu item subline text.\n * @slot trailing-controls - slot for menu item controls to appear of trailing end.\n *\n * @event click - (React: onClick) This event is dispatched when the menuitem is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the menuitem.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the menuitem.\n * @event focus - (React: onFocus) This event is dispatched when the menuitem receives focus.\n */",
19517
19517
  "customElement": true,
19518
19518
  "cssProperties": [
19519
19519
  {
@@ -19620,8 +19620,8 @@
19620
19620
  "kind": "js",
19621
19621
  "name": "default",
19622
19622
  "declaration": {
19623
- "name": "MenuItemCheckbox",
19624
- "module": "components/menuitemcheckbox/menuitemcheckbox.component.js"
19623
+ "name": "MenuItem",
19624
+ "module": "components/menuitem/menuitem.component.js"
19625
19625
  }
19626
19626
  }
19627
19627
  ]
@@ -32759,8 +32759,90 @@
32759
32759
  "kind": "js",
32760
32760
  "name": "default",
32761
32761
  "declaration": {
32762
- "name": "Selectlistbox",
32763
- "module": "components/selectlistbox/selectlistbox.component.js"
32762
+ "name": "Selectlistbox",
32763
+ "module": "components/selectlistbox/selectlistbox.component.js"
32764
+ }
32765
+ }
32766
+ ]
32767
+ },
32768
+ {
32769
+ "kind": "javascript-module",
32770
+ "path": "components/skeleton/skeleton.component.js",
32771
+ "declarations": [
32772
+ {
32773
+ "kind": "class",
32774
+ "description": "`mdc-skeleton` is a component that shows a grey placeholder area.\nIt provides visual feedback to users that content is being loaded.\n\n**Skeleton Variants:**\n- **rectangular**: Default variant with 0.25rem border radius\n- **rounded**: Has 0.5rem border radius\n- **circular**: Has 50% border radius for circular shapes\n- **button**: Optimized for button placeholders with 1.25rem border radius\n\n**Sizing Behavior:**\n1. If wrapping content, takes dimensions of wrapped content\n2. Otherwise grows to fill parent container",
32775
+ "name": "Skeleton",
32776
+ "cssProperties": [
32777
+ {
32778
+ "description": "background color of the skeleton",
32779
+ "name": "--mdc-skeleton-background-color"
32780
+ },
32781
+ {
32782
+ "description": "height of the skeleton",
32783
+ "name": "--mdc-skeleton-height"
32784
+ },
32785
+ {
32786
+ "description": "width of the skeleton",
32787
+ "name": "--mdc-skeleton-width"
32788
+ }
32789
+ ],
32790
+ "slots": [
32791
+ {
32792
+ "description": "Content to wrap (optional). When provided, skeleton takes dimensions of this content.",
32793
+ "name": ""
32794
+ }
32795
+ ],
32796
+ "members": [
32797
+ {
32798
+ "kind": "field",
32799
+ "name": "variant",
32800
+ "type": {
32801
+ "text": "SkeletonVariant"
32802
+ },
32803
+ "description": "The variant of skeleton to display\n- **rectangular**: Default rectangular shape with 0.25rem border radius\n- **rounded**: Rounded rectangle with 0.5rem border radius\n- **circular**: Circular shape with 50% border radius\n- **button**: Button placeholder with 1.25rem border radius",
32804
+ "default": "rectangular",
32805
+ "attribute": "variant",
32806
+ "reflects": true
32807
+ },
32808
+ {
32809
+ "kind": "method",
32810
+ "name": "checkSlotContent",
32811
+ "privacy": "private",
32812
+ "return": {
32813
+ "type": {
32814
+ "text": "void"
32815
+ }
32816
+ }
32817
+ }
32818
+ ],
32819
+ "attributes": [
32820
+ {
32821
+ "name": "variant",
32822
+ "type": {
32823
+ "text": "SkeletonVariant"
32824
+ },
32825
+ "description": "The variant of skeleton to display\n- **rectangular**: Default rectangular shape with 0.25rem border radius\n- **rounded**: Rounded rectangle with 0.5rem border radius\n- **circular**: Circular shape with 50% border radius\n- **button**: Button placeholder with 1.25rem border radius",
32826
+ "default": "rectangular",
32827
+ "fieldName": "variant"
32828
+ }
32829
+ ],
32830
+ "superclass": {
32831
+ "name": "Component",
32832
+ "module": "/src/models"
32833
+ },
32834
+ "tagName": "mdc-skeleton",
32835
+ "jsDoc": "/**\n * `mdc-skeleton` is a component that shows a grey placeholder area.\n * It provides visual feedback to users that content is being loaded.\n *\n * **Skeleton Variants:**\n * - **rectangular**: Default variant with 0.25rem border radius\n * - **rounded**: Has 0.5rem border radius\n * - **circular**: Has 50% border radius for circular shapes\n * - **button**: Optimized for button placeholders with 1.25rem border radius\n *\n * **Sizing Behavior:**\n * 1. If wrapping content, takes dimensions of wrapped content\n * 2. Otherwise grows to fill parent container\n *\n * @tagname mdc-skeleton\n *\n * @slot - Content to wrap (optional). When provided, skeleton takes dimensions of this content.\n *\n * @cssproperty --mdc-skeleton-background-color - background color of the skeleton\n * @cssproperty --mdc-skeleton-height - height of the skeleton\n * @cssproperty --mdc-skeleton-width - width of the skeleton\n */",
32836
+ "customElement": true
32837
+ }
32838
+ ],
32839
+ "exports": [
32840
+ {
32841
+ "kind": "js",
32842
+ "name": "default",
32843
+ "declaration": {
32844
+ "name": "Skeleton",
32845
+ "module": "components/skeleton/skeleton.component.js"
32764
32846
  }
32765
32847
  }
32766
32848
  ]
@@ -32952,88 +33034,6 @@
32952
33034
  }
32953
33035
  ]
32954
33036
  },
32955
- {
32956
- "kind": "javascript-module",
32957
- "path": "components/skeleton/skeleton.component.js",
32958
- "declarations": [
32959
- {
32960
- "kind": "class",
32961
- "description": "`mdc-skeleton` is a component that shows a grey placeholder area.\nIt provides visual feedback to users that content is being loaded.\n\n**Skeleton Variants:**\n- **rectangular**: Default variant with 0.25rem border radius\n- **rounded**: Has 0.5rem border radius\n- **circular**: Has 50% border radius for circular shapes\n- **button**: Optimized for button placeholders with 1.25rem border radius\n\n**Sizing Behavior:**\n1. If wrapping content, takes dimensions of wrapped content\n2. Otherwise grows to fill parent container",
32962
- "name": "Skeleton",
32963
- "cssProperties": [
32964
- {
32965
- "description": "background color of the skeleton",
32966
- "name": "--mdc-skeleton-background-color"
32967
- },
32968
- {
32969
- "description": "height of the skeleton",
32970
- "name": "--mdc-skeleton-height"
32971
- },
32972
- {
32973
- "description": "width of the skeleton",
32974
- "name": "--mdc-skeleton-width"
32975
- }
32976
- ],
32977
- "slots": [
32978
- {
32979
- "description": "Content to wrap (optional). When provided, skeleton takes dimensions of this content.",
32980
- "name": ""
32981
- }
32982
- ],
32983
- "members": [
32984
- {
32985
- "kind": "field",
32986
- "name": "variant",
32987
- "type": {
32988
- "text": "SkeletonVariant"
32989
- },
32990
- "description": "The variant of skeleton to display\n- **rectangular**: Default rectangular shape with 0.25rem border radius\n- **rounded**: Rounded rectangle with 0.5rem border radius\n- **circular**: Circular shape with 50% border radius\n- **button**: Button placeholder with 1.25rem border radius",
32991
- "default": "rectangular",
32992
- "attribute": "variant",
32993
- "reflects": true
32994
- },
32995
- {
32996
- "kind": "method",
32997
- "name": "checkSlotContent",
32998
- "privacy": "private",
32999
- "return": {
33000
- "type": {
33001
- "text": "void"
33002
- }
33003
- }
33004
- }
33005
- ],
33006
- "attributes": [
33007
- {
33008
- "name": "variant",
33009
- "type": {
33010
- "text": "SkeletonVariant"
33011
- },
33012
- "description": "The variant of skeleton to display\n- **rectangular**: Default rectangular shape with 0.25rem border radius\n- **rounded**: Rounded rectangle with 0.5rem border radius\n- **circular**: Circular shape with 50% border radius\n- **button**: Button placeholder with 1.25rem border radius",
33013
- "default": "rectangular",
33014
- "fieldName": "variant"
33015
- }
33016
- ],
33017
- "superclass": {
33018
- "name": "Component",
33019
- "module": "/src/models"
33020
- },
33021
- "tagName": "mdc-skeleton",
33022
- "jsDoc": "/**\n * `mdc-skeleton` is a component that shows a grey placeholder area.\n * It provides visual feedback to users that content is being loaded.\n *\n * **Skeleton Variants:**\n * - **rectangular**: Default variant with 0.25rem border radius\n * - **rounded**: Has 0.5rem border radius\n * - **circular**: Has 50% border radius for circular shapes\n * - **button**: Optimized for button placeholders with 1.25rem border radius\n *\n * **Sizing Behavior:**\n * 1. If wrapping content, takes dimensions of wrapped content\n * 2. Otherwise grows to fill parent container\n *\n * @tagname mdc-skeleton\n *\n * @slot - Content to wrap (optional). When provided, skeleton takes dimensions of this content.\n *\n * @cssproperty --mdc-skeleton-background-color - background color of the skeleton\n * @cssproperty --mdc-skeleton-height - height of the skeleton\n * @cssproperty --mdc-skeleton-width - width of the skeleton\n */",
33023
- "customElement": true
33024
- }
33025
- ],
33026
- "exports": [
33027
- {
33028
- "kind": "js",
33029
- "name": "default",
33030
- "declaration": {
33031
- "name": "Skeleton",
33032
- "module": "components/skeleton/skeleton.component.js"
33033
- }
33034
- }
33035
- ]
33036
- },
33037
33037
  {
33038
33038
  "kind": "javascript-module",
33039
33039
  "path": "components/spinner/spinner.component.js",
@@ -35030,90 +35030,6 @@
35030
35030
  }
35031
35031
  ]
35032
35032
  },
35033
- {
35034
- "kind": "javascript-module",
35035
- "path": "components/text/text.component.js",
35036
- "declarations": [
35037
- {
35038
- "kind": "class",
35039
- "description": "Text component for creating styled text elements.\nIt has to be mounted within the ThemeProvider to access color and font tokens.\n\nThe `type` attribute allows changing the text style.\nThe `tagname` attribute allows changing the tag name of the text element.\nThe default tag name is `p`.\n\nThe `tagname` attribute should be a valid HTML tag name.\nIf the `tagname` attribute is not a valid HTML tag name, the default tag name will be used.\n\nThe styling is applied based on the `type` attribute.",
35040
- "name": "Text",
35041
- "cssParts": [
35042
- {
35043
- "description": "The text element",
35044
- "name": "text"
35045
- }
35046
- ],
35047
- "slots": [
35048
- {
35049
- "description": "Default slot for text content",
35050
- "name": ""
35051
- }
35052
- ],
35053
- "members": [
35054
- {
35055
- "kind": "field",
35056
- "name": "type",
35057
- "type": {
35058
- "text": "TextType"
35059
- },
35060
- "privacy": "public",
35061
- "description": "Specifies the text style to be applied.\n\nAcceptable values include:\n\n- 'body-small-regular'\n- 'body-small-medium'\n- 'body-small-bold'\n- 'body-midsize-regular'\n- 'body-midsize-medium'\n- 'body-midsize-bold'\n- 'body-large-regular'\n- 'body-large-medium'\n- 'body-large-bold'\n- 'body-small-regular-underline'\n- 'body-small-medium-underline'\n- 'body-midsize-regular-underline'\n- 'body-midsize-medium-underline'\n- 'body-large-regular-underline'\n- 'body-large-medium-underline'\n- 'heading-small-regular'\n- 'heading-small-medium'\n- 'heading-small-bold'\n- 'heading-midsize-regular'\n- 'heading-midsize-medium'\n- 'heading-midsize-bold'\n- 'heading-large-regular'\n- 'heading-large-medium'\n- 'heading-large-bold'\n- 'heading-xlarge-regular'\n- 'heading-xlarge-medium'\n- 'heading-xlarge-bold'\n- 'headline-small-light'\n- 'headline-small-regular'",
35062
- "default": "body-large-regular",
35063
- "attribute": "type",
35064
- "reflects": true
35065
- },
35066
- {
35067
- "kind": "field",
35068
- "name": "tagname",
35069
- "type": {
35070
- "text": "TagName | undefined"
35071
- },
35072
- "privacy": "public",
35073
- "description": "Specifies the HTML tag name for the text element. The default tag name is `p`.\nThis attribute is optional. When set, it changes the tag name of the text element.\n\nAcceptable values include:\n\n- 'h1'\n- 'h2'\n- 'h3'\n- 'h4'\n- 'h5'\n- 'h6'\n- 'p'\n- 'small'\n- 'span'\n- 'div'\n\nFor instance, setting this attribute to `h2` will render the text element as an `h2` element.\nNote that the styling is determined by the `type` attribute.",
35074
- "attribute": "tagname",
35075
- "reflects": true
35076
- }
35077
- ],
35078
- "attributes": [
35079
- {
35080
- "name": "type",
35081
- "type": {
35082
- "text": "TextType"
35083
- },
35084
- "description": "Specifies the text style to be applied.\n\nAcceptable values include:\n\n- 'body-small-regular'\n- 'body-small-medium'\n- 'body-small-bold'\n- 'body-midsize-regular'\n- 'body-midsize-medium'\n- 'body-midsize-bold'\n- 'body-large-regular'\n- 'body-large-medium'\n- 'body-large-bold'\n- 'body-small-regular-underline'\n- 'body-small-medium-underline'\n- 'body-midsize-regular-underline'\n- 'body-midsize-medium-underline'\n- 'body-large-regular-underline'\n- 'body-large-medium-underline'\n- 'heading-small-regular'\n- 'heading-small-medium'\n- 'heading-small-bold'\n- 'heading-midsize-regular'\n- 'heading-midsize-medium'\n- 'heading-midsize-bold'\n- 'heading-large-regular'\n- 'heading-large-medium'\n- 'heading-large-bold'\n- 'heading-xlarge-regular'\n- 'heading-xlarge-medium'\n- 'heading-xlarge-bold'\n- 'headline-small-light'\n- 'headline-small-regular'",
35085
- "default": "body-large-regular",
35086
- "fieldName": "type"
35087
- },
35088
- {
35089
- "name": "tagname",
35090
- "type": {
35091
- "text": "TagName | undefined"
35092
- },
35093
- "description": "Specifies the HTML tag name for the text element. The default tag name is `p`.\nThis attribute is optional. When set, it changes the tag name of the text element.\n\nAcceptable values include:\n\n- 'h1'\n- 'h2'\n- 'h3'\n- 'h4'\n- 'h5'\n- 'h6'\n- 'p'\n- 'small'\n- 'span'\n- 'div'\n\nFor instance, setting this attribute to `h2` will render the text element as an `h2` element.\nNote that the styling is determined by the `type` attribute.",
35094
- "fieldName": "tagname"
35095
- }
35096
- ],
35097
- "superclass": {
35098
- "name": "Component",
35099
- "module": "/src/models"
35100
- },
35101
- "tagName": "mdc-text",
35102
- "jsDoc": "/**\n * Text component for creating styled text elements.\n * It has to be mounted within the ThemeProvider to access color and font tokens.\n *\n * The `type` attribute allows changing the text style.\n * The `tagname` attribute allows changing the tag name of the text element.\n * The default tag name is `p`.\n *\n * The `tagname` attribute should be a valid HTML tag name.\n * If the `tagname` attribute is not a valid HTML tag name, the default tag name will be used.\n *\n * The styling is applied based on the `type` attribute.\n *\n * @tagname mdc-text\n * @slot - Default slot for text content\n *\n * @csspart text - The text element\n */",
35103
- "customElement": true
35104
- }
35105
- ],
35106
- "exports": [
35107
- {
35108
- "kind": "js",
35109
- "name": "default",
35110
- "declaration": {
35111
- "name": "Text",
35112
- "module": "components/text/text.component.js"
35113
- }
35114
- }
35115
- ]
35116
- },
35117
35033
  {
35118
35034
  "kind": "javascript-module",
35119
35035
  "path": "components/textarea/textarea.component.js",
@@ -36150,6 +36066,90 @@
36150
36066
  }
36151
36067
  ]
36152
36068
  },
36069
+ {
36070
+ "kind": "javascript-module",
36071
+ "path": "components/text/text.component.js",
36072
+ "declarations": [
36073
+ {
36074
+ "kind": "class",
36075
+ "description": "Text component for creating styled text elements.\nIt has to be mounted within the ThemeProvider to access color and font tokens.\n\nThe `type` attribute allows changing the text style.\nThe `tagname` attribute allows changing the tag name of the text element.\nThe default tag name is `p`.\n\nThe `tagname` attribute should be a valid HTML tag name.\nIf the `tagname` attribute is not a valid HTML tag name, the default tag name will be used.\n\nThe styling is applied based on the `type` attribute.",
36076
+ "name": "Text",
36077
+ "cssParts": [
36078
+ {
36079
+ "description": "The text element",
36080
+ "name": "text"
36081
+ }
36082
+ ],
36083
+ "slots": [
36084
+ {
36085
+ "description": "Default slot for text content",
36086
+ "name": ""
36087
+ }
36088
+ ],
36089
+ "members": [
36090
+ {
36091
+ "kind": "field",
36092
+ "name": "type",
36093
+ "type": {
36094
+ "text": "TextType"
36095
+ },
36096
+ "privacy": "public",
36097
+ "description": "Specifies the text style to be applied.\n\nAcceptable values include:\n\n- 'body-small-regular'\n- 'body-small-medium'\n- 'body-small-bold'\n- 'body-midsize-regular'\n- 'body-midsize-medium'\n- 'body-midsize-bold'\n- 'body-large-regular'\n- 'body-large-medium'\n- 'body-large-bold'\n- 'body-small-regular-underline'\n- 'body-small-medium-underline'\n- 'body-midsize-regular-underline'\n- 'body-midsize-medium-underline'\n- 'body-large-regular-underline'\n- 'body-large-medium-underline'\n- 'heading-small-regular'\n- 'heading-small-medium'\n- 'heading-small-bold'\n- 'heading-midsize-regular'\n- 'heading-midsize-medium'\n- 'heading-midsize-bold'\n- 'heading-large-regular'\n- 'heading-large-medium'\n- 'heading-large-bold'\n- 'heading-xlarge-regular'\n- 'heading-xlarge-medium'\n- 'heading-xlarge-bold'\n- 'headline-small-light'\n- 'headline-small-regular'",
36098
+ "default": "body-large-regular",
36099
+ "attribute": "type",
36100
+ "reflects": true
36101
+ },
36102
+ {
36103
+ "kind": "field",
36104
+ "name": "tagname",
36105
+ "type": {
36106
+ "text": "TagName | undefined"
36107
+ },
36108
+ "privacy": "public",
36109
+ "description": "Specifies the HTML tag name for the text element. The default tag name is `p`.\nThis attribute is optional. When set, it changes the tag name of the text element.\n\nAcceptable values include:\n\n- 'h1'\n- 'h2'\n- 'h3'\n- 'h4'\n- 'h5'\n- 'h6'\n- 'p'\n- 'small'\n- 'span'\n- 'div'\n\nFor instance, setting this attribute to `h2` will render the text element as an `h2` element.\nNote that the styling is determined by the `type` attribute.",
36110
+ "attribute": "tagname",
36111
+ "reflects": true
36112
+ }
36113
+ ],
36114
+ "attributes": [
36115
+ {
36116
+ "name": "type",
36117
+ "type": {
36118
+ "text": "TextType"
36119
+ },
36120
+ "description": "Specifies the text style to be applied.\n\nAcceptable values include:\n\n- 'body-small-regular'\n- 'body-small-medium'\n- 'body-small-bold'\n- 'body-midsize-regular'\n- 'body-midsize-medium'\n- 'body-midsize-bold'\n- 'body-large-regular'\n- 'body-large-medium'\n- 'body-large-bold'\n- 'body-small-regular-underline'\n- 'body-small-medium-underline'\n- 'body-midsize-regular-underline'\n- 'body-midsize-medium-underline'\n- 'body-large-regular-underline'\n- 'body-large-medium-underline'\n- 'heading-small-regular'\n- 'heading-small-medium'\n- 'heading-small-bold'\n- 'heading-midsize-regular'\n- 'heading-midsize-medium'\n- 'heading-midsize-bold'\n- 'heading-large-regular'\n- 'heading-large-medium'\n- 'heading-large-bold'\n- 'heading-xlarge-regular'\n- 'heading-xlarge-medium'\n- 'heading-xlarge-bold'\n- 'headline-small-light'\n- 'headline-small-regular'",
36121
+ "default": "body-large-regular",
36122
+ "fieldName": "type"
36123
+ },
36124
+ {
36125
+ "name": "tagname",
36126
+ "type": {
36127
+ "text": "TagName | undefined"
36128
+ },
36129
+ "description": "Specifies the HTML tag name for the text element. The default tag name is `p`.\nThis attribute is optional. When set, it changes the tag name of the text element.\n\nAcceptable values include:\n\n- 'h1'\n- 'h2'\n- 'h3'\n- 'h4'\n- 'h5'\n- 'h6'\n- 'p'\n- 'small'\n- 'span'\n- 'div'\n\nFor instance, setting this attribute to `h2` will render the text element as an `h2` element.\nNote that the styling is determined by the `type` attribute.",
36130
+ "fieldName": "tagname"
36131
+ }
36132
+ ],
36133
+ "superclass": {
36134
+ "name": "Component",
36135
+ "module": "/src/models"
36136
+ },
36137
+ "tagName": "mdc-text",
36138
+ "jsDoc": "/**\n * Text component for creating styled text elements.\n * It has to be mounted within the ThemeProvider to access color and font tokens.\n *\n * The `type` attribute allows changing the text style.\n * The `tagname` attribute allows changing the tag name of the text element.\n * The default tag name is `p`.\n *\n * The `tagname` attribute should be a valid HTML tag name.\n * If the `tagname` attribute is not a valid HTML tag name, the default tag name will be used.\n *\n * The styling is applied based on the `type` attribute.\n *\n * @tagname mdc-text\n * @slot - Default slot for text content\n *\n * @csspart text - The text element\n */",
36139
+ "customElement": true
36140
+ }
36141
+ ],
36142
+ "exports": [
36143
+ {
36144
+ "kind": "js",
36145
+ "name": "default",
36146
+ "declaration": {
36147
+ "name": "Text",
36148
+ "module": "components/text/text.component.js"
36149
+ }
36150
+ }
36151
+ ]
36152
+ },
36153
36153
  {
36154
36154
  "kind": "javascript-module",
36155
36155
  "path": "components/toast/toast.component.js",