@momentum-design/components 0.120.25 → 0.120.26

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.
@@ -37604,6 +37604,17 @@
37604
37604
  "attribute": "timeout",
37605
37605
  "reflects": true
37606
37606
  },
37607
+ {
37608
+ "kind": "field",
37609
+ "name": "debounceTime",
37610
+ "type": {
37611
+ "text": "number"
37612
+ },
37613
+ "description": "The debounce time delay in milliseconds for announcements.",
37614
+ "default": "500",
37615
+ "attribute": "debounce-time",
37616
+ "reflects": true
37617
+ },
37607
37618
  {
37608
37619
  "kind": "method",
37609
37620
  "name": "announce",
@@ -37650,6 +37661,12 @@
37650
37661
  "name": "createAnnouncementAriaLiveRegion",
37651
37662
  "privacy": "private",
37652
37663
  "description": "Creates a div element with id as identity attribute in the DOM.\n\nIf the identity attribute is not provided, it is set internally to\n`mdc-screenreaderannouncer-identity`."
37664
+ },
37665
+ {
37666
+ "kind": "method",
37667
+ "name": "setupDebouncedAnnounce",
37668
+ "privacy": "private",
37669
+ "description": "Creates a single debounced function that will read the latest this.announcement when executed.\n\nThis function is used to debounce the announcement so that it will only be made after\nthis.debounceTime milliseconds have passed since the last time this.announcement was updated."
37653
37670
  }
37654
37671
  ],
37655
37672
  "attributes": [
@@ -37697,6 +37714,15 @@
37697
37714
  "description": "Milliseconds to wait after which the announcement element will be removed from\nidentity region in DOM, causing the screen reader to not announcing the message.",
37698
37715
  "default": "20_000",
37699
37716
  "fieldName": "timeout"
37717
+ },
37718
+ {
37719
+ "name": "debounce-time",
37720
+ "type": {
37721
+ "text": "number"
37722
+ },
37723
+ "description": "The debounce time delay in milliseconds for announcements.",
37724
+ "default": "500",
37725
+ "fieldName": "debounceTime"
37700
37726
  }
37701
37727
  ],
37702
37728
  "superclass": {
@@ -42501,257 +42527,642 @@
42501
42527
  },
42502
42528
  {
42503
42529
  "kind": "javascript-module",
42504
- "path": "components/tab/tab.component.js",
42530
+ "path": "components/stepperconnector/stepperconnector.component.js",
42505
42531
  "declarations": [
42506
42532
  {
42507
42533
  "kind": "class",
42508
- "description": "`mdc-tab` is Tab component to be used within the Tabgroup.\n\nPassing in the attribute `text` to the tab component is changing the text displayed in the tab.\n\nPass attribute `tabid` when using inside of `tablist` component.\n\nThe `slot=\"badge\"` can be used to add a badge to the tab.\n\nThe `slot=\"chip\"` can be used to add a chip to the tab.\n\nFor `icon`, the `mdc-icon` component is used to render the icon.\n\nNote: Icons can be used in conjunction with badges or chips.\nBadges and chips should not be used at the same time.",
42509
- "name": "Tab",
42534
+ "description": "StepperConnector component visually represents the connection between two stepper items.\nIndicates whether the connection is complete or incomplete, and supports vertical or horizontal orientation.\nThey are used between 2 `mdc-stepperitem` components to visually connect them and wrapped in a `mdc-stepper` component.",
42535
+ "name": "StepperConnector",
42510
42536
  "cssProperties": [
42511
42537
  {
42512
- "description": "Height for button size",
42513
- "name": "--mdc-button-height",
42514
- "inheritedFrom": {
42515
- "name": "Buttonsimple",
42516
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
42517
- }
42538
+ "description": "Background color for the complete connector",
42539
+ "name": "--mdc-stepperconnector-complete-background"
42518
42540
  },
42519
42541
  {
42520
- "description": "Gap between the badge(if provided), icon and text.",
42521
- "name": "--mdc-tab-content-gap"
42522
- },
42542
+ "description": "Background color for the incomplete connector",
42543
+ "name": "--mdc-stepperconnector-incomplete-background"
42544
+ }
42545
+ ],
42546
+ "cssParts": [
42523
42547
  {
42524
- "description": "Height of the tab.",
42525
- "name": "--mdc-tab-height"
42526
- },
42548
+ "description": "The main connector line between steps",
42549
+ "name": "connector"
42550
+ }
42551
+ ],
42552
+ "members": [
42527
42553
  {
42528
- "description": "Background color for active glass tab in disabled state.",
42529
- "name": "--mdc-tab-glass-active-background-color-disabled"
42554
+ "kind": "field",
42555
+ "name": "status",
42556
+ "type": {
42557
+ "text": "StatusType"
42558
+ },
42559
+ "description": "The status of the connector (complete or incomplete)",
42560
+ "default": "\"incomplete\"",
42561
+ "attribute": "status",
42562
+ "reflects": true
42530
42563
  },
42531
42564
  {
42532
- "description": "Background color for active glass tab in hover state.",
42533
- "name": "--mdc-tab-glass-active-background-color-hover"
42534
- },
42565
+ "kind": "field",
42566
+ "name": "orientation",
42567
+ "type": {
42568
+ "text": "OrientationType"
42569
+ },
42570
+ "description": "The orientation of the connector (vertical or horizontal)",
42571
+ "default": "\"horizontal\"",
42572
+ "attribute": "orientation",
42573
+ "reflects": true
42574
+ }
42575
+ ],
42576
+ "attributes": [
42535
42577
  {
42536
- "description": "Background color for active glass tab in rest state.",
42537
- "name": "--mdc-tab-glass-active-background-color-normal"
42578
+ "name": "status",
42579
+ "type": {
42580
+ "text": "StatusType"
42581
+ },
42582
+ "description": "The status of the connector (complete or incomplete)",
42583
+ "default": "\"incomplete\"",
42584
+ "fieldName": "status"
42538
42585
  },
42539
42586
  {
42540
- "description": "Background color for active glass tab in pressed state.",
42541
- "name": "--mdc-tab-glass-active-background-color-pressed"
42542
- },
42587
+ "name": "orientation",
42588
+ "type": {
42589
+ "text": "OrientationType"
42590
+ },
42591
+ "description": "The orientation of the connector (vertical or horizontal)",
42592
+ "default": "\"horizontal\"",
42593
+ "fieldName": "orientation"
42594
+ }
42595
+ ],
42596
+ "superclass": {
42597
+ "name": "Component",
42598
+ "module": "/src/models"
42599
+ },
42600
+ "tagName": "mdc-stepperconnector",
42601
+ "jsDoc": "/**\n * StepperConnector component visually represents the connection between two stepper items.\n * Indicates whether the connection is complete or incomplete, and supports vertical or horizontal orientation.\n * They are used between 2 `mdc-stepperitem` components to visually connect them and wrapped in a `mdc-stepper` component.\n *\n * @tagname mdc-stepperconnector\n *\n * @csspart connector - The main connector line between steps\n *\n * @cssproperty --mdc-stepperconnector-complete-background - Background color for the complete connector\n * @cssproperty --mdc-stepperconnector-incomplete-background - Background color for the incomplete connector\n */",
42602
+ "customElement": true
42603
+ }
42604
+ ],
42605
+ "exports": [
42606
+ {
42607
+ "kind": "js",
42608
+ "name": "default",
42609
+ "declaration": {
42610
+ "name": "StepperConnector",
42611
+ "module": "components/stepperconnector/stepperconnector.component.js"
42612
+ }
42613
+ }
42614
+ ]
42615
+ },
42616
+ {
42617
+ "kind": "javascript-module",
42618
+ "path": "components/stepperitem/stepperitem.component.js",
42619
+ "declarations": [
42620
+ {
42621
+ "kind": "class",
42622
+ "description": "stepperitem component is used to represent a single step in a stepper component. It is used within a `mdc-stepper` component to indicate the current step in a process.\nIt can have different statuses such as `completed`, `current`, `incomplete`, `error-current`, and `error-incomplete`.\nThe component supports various visual styles and can be customized with labels, help text, and step numbers.\n\nThis is an uncontrolled component, meaning it does not manage its own state. Instead, it relies on the consumer's to manage the state of each step.\nMake sure to set `aria-current=\"step\"` on the current stepper item. It is applicable only when status is `current` or `error-current`. This ensures accessibility for the stepper component. Only one stepper item should have this attribute at a time.\n\nAdditionally, make use of `aria-label` to provide a descriptive detail about the stepper item, especially for screen readers. If this aria-label is not set, it would read out only the label text and doesn't provide enough context for the user.",
42623
+ "name": "StepperItem",
42624
+ "cssProperties": [
42543
42625
  {
42544
- "description": "Text and icon color for active glass tab.",
42545
- "name": "--mdc-tab-glass-active-color"
42626
+ "description": "The background color of the status container.",
42627
+ "name": "--mdc-stepperitem-status-container-background"
42546
42628
  },
42547
42629
  {
42548
- "description": "Text and icon color for active glass tab in disabled state.",
42549
- "name": "--mdc-tab-glass-active-color-disabled"
42630
+ "description": "The border color of the status container.",
42631
+ "name": "--mdc-stepperitem-status-container-border-color"
42550
42632
  },
42551
42633
  {
42552
- "description": "Border radius for glass tab.",
42553
- "name": "--mdc-tab-glass-border-radius"
42634
+ "description": "The color of the label text.",
42635
+ "name": "--mdc-stepperitem-label-color"
42554
42636
  },
42555
42637
  {
42556
- "description": "Background color for inactive glass tab in disabled state.",
42557
- "name": "--mdc-tab-glass-inactive-background-color-disabled"
42638
+ "description": "The color of the optional label text.",
42639
+ "name": "--mdc-stepperitem-help-text-color"
42558
42640
  },
42559
42641
  {
42560
- "description": "Background color for inactive glass tab in hover state.",
42561
- "name": "--mdc-tab-glass-inactive-background-color-hover"
42562
- },
42642
+ "description": "The background color of the label container.",
42643
+ "name": "--mdc-stepperitem-label-container-background"
42644
+ }
42645
+ ],
42646
+ "cssParts": [
42563
42647
  {
42564
- "description": "Background color for inactive glass tab in rest state.",
42565
- "name": "--mdc-tab-glass-inactive-background-color-normal"
42648
+ "description": "The container for the status icon or step number.",
42649
+ "name": "status-container"
42566
42650
  },
42567
42651
  {
42568
- "description": "Background color for inactive glass tab in pressed state.",
42569
- "name": "--mdc-tab-glass-inactive-background-color-pressed"
42652
+ "description": "The container for the label and help text.",
42653
+ "name": "label-container"
42570
42654
  },
42571
42655
  {
42572
- "description": "Text and icon color for inactive glass tab.",
42573
- "name": "--mdc-tab-glass-inactive-color"
42656
+ "description": "The container for the help text and error icon when applicable.",
42657
+ "name": "help-text-container"
42574
42658
  },
42575
42659
  {
42576
- "description": "Text and icon color for inactive glass tab in disabled state.",
42577
- "name": "--mdc-tab-glass-inactive-color-disabled"
42660
+ "description": "The icon representing the status of the stepper item.",
42661
+ "name": "status-icon"
42578
42662
  },
42579
42663
  {
42580
- "description": "Background color for active line tab in pressed state.",
42581
- "name": "--mdc-tab-line-active-background-color-pressed"
42664
+ "description": "The text representing the step number.",
42665
+ "name": "step-number"
42582
42666
  },
42583
42667
  {
42584
- "description": "Background color for active line tab in disabled state.",
42585
- "name": "--mdc-tab-line-active-background-color-disabled"
42668
+ "description": "The text representing the label of the stepper item.",
42669
+ "name": "label"
42586
42670
  },
42587
42671
  {
42588
- "description": "Background color for active line tab in hover state.",
42589
- "name": "--mdc-tab-line-active-background-color-hover"
42672
+ "description": "The text providing additional information about the stepper item.",
42673
+ "name": "help-text"
42590
42674
  },
42591
42675
  {
42592
- "description": "Background color for active line tab in rest state.",
42593
- "name": "--mdc-tab-line-active-background-color-normal"
42676
+ "description": "The icon representing an error in the stepper item.",
42677
+ "name": "help-icon"
42678
+ }
42679
+ ],
42680
+ "members": [
42681
+ {
42682
+ "kind": "field",
42683
+ "name": "variant",
42684
+ "type": {
42685
+ "text": "VariantType"
42686
+ },
42687
+ "description": "The variant of the stepper item, which can be `inline` or `stacked`.",
42688
+ "default": "'inline'",
42689
+ "attribute": "variant",
42690
+ "reflects": true
42594
42691
  },
42595
42692
  {
42596
- "description": "Text and icon color for active line tab.",
42597
- "name": "--mdc-tab-line-active-color"
42693
+ "kind": "field",
42694
+ "name": "status",
42695
+ "type": {
42696
+ "text": "StatusType"
42697
+ },
42698
+ "description": "The status of the stepper item, which can be `completed`, `current`, `not-started`, `error-current`, or `error-incomplete`.",
42699
+ "default": "'not-started'",
42700
+ "attribute": "status",
42701
+ "reflects": true
42598
42702
  },
42599
42703
  {
42600
- "description": "Text and icon color for active line tab in disabled state.",
42601
- "name": "--mdc-tab-line-active-color-disabled"
42704
+ "kind": "field",
42705
+ "name": "label",
42706
+ "type": {
42707
+ "text": "string"
42708
+ },
42709
+ "default": "''",
42710
+ "description": "The label for the stepper item, which is displayed as the main text of the step.\nThis label is typically used to describe the step or action that the step represents.",
42711
+ "attribute": "label",
42712
+ "reflects": true
42602
42713
  },
42603
42714
  {
42604
- "description": "color for indicator in active line tab.",
42605
- "name": "--mdc-tab-line-active-indicator-color"
42715
+ "kind": "field",
42716
+ "name": "helpText",
42717
+ "type": {
42718
+ "text": "string | undefined"
42719
+ },
42720
+ "description": "Additional informational text that appears below the label\nThis text is optional and can be used to provide more context or instructions for the step.",
42721
+ "default": "''",
42722
+ "attribute": "help-text",
42723
+ "reflects": true
42606
42724
  },
42607
42725
  {
42608
- "description": "Color for indicator in active line tab in disabled state.",
42609
- "name": "--mdc-tab-line-active-indicator-color-disabled"
42726
+ "kind": "field",
42727
+ "name": "stepNumber",
42728
+ "type": {
42729
+ "text": "number | undefined"
42730
+ },
42731
+ "description": "The step number for the stepper item, which is displayed as a numeric indicator of the step's position in the sequence.\nThis is useful for indicating the order of steps in a process.",
42732
+ "default": "''",
42733
+ "attribute": "step-number",
42734
+ "reflects": true
42610
42735
  },
42611
42736
  {
42612
- "description": "Height for indicator in active line tab.",
42613
- "name": "--mdc-tab-line-active-indicator-height"
42737
+ "kind": "method",
42738
+ "name": "handleKeyDown",
42739
+ "privacy": "private",
42740
+ "parameters": [
42741
+ {
42742
+ "name": "event",
42743
+ "type": {
42744
+ "text": "KeyboardEvent"
42745
+ },
42746
+ "description": "The keyboard event."
42747
+ }
42748
+ ],
42749
+ "description": "Handles the keydown event on the stepperitem.\nIf the key is 'Enter' or 'Space', the stepperitem is pressed.\nIf the key is 'Enter', the stepperitem is pressed. The native HTML button works in the same way.\nIf the key is 'Space', the stepperitem's default is prevent to avoid scrolling etc in the host application."
42614
42750
  },
42615
42751
  {
42616
- "description": "Width for indicator in active line tab.",
42617
- "name": "--mdc-tab-line-active-indicator-width"
42752
+ "kind": "method",
42753
+ "name": "triggerClickEvent",
42754
+ "privacy": "private",
42755
+ "description": "Triggers a click event on the stepper item."
42618
42756
  },
42619
42757
  {
42620
- "description": "Bottom left border radius for line tab.",
42621
- "name": "--mdc-tab-line-border-bottom-left-radius"
42758
+ "kind": "method",
42759
+ "name": "handleKeyUp",
42760
+ "privacy": "private",
42761
+ "parameters": [
42762
+ {
42763
+ "name": "event",
42764
+ "type": {
42765
+ "text": "KeyboardEvent"
42766
+ },
42767
+ "description": "The keyboard event."
42768
+ }
42769
+ ],
42770
+ "description": "Handles the keyup event on the stepperitem.\nIf the key is 'Enter' or 'Space', the stepperitem is clicked.\nIf the key is 'Space', the stepperitem is pressed. The native HTML button works in the same way."
42622
42771
  },
42623
42772
  {
42624
- "description": "Bottom right border radius for line tab.",
42625
- "name": "--mdc-tab-line-border-bottom-right-radius"
42773
+ "kind": "method",
42774
+ "name": "renderStatusIcon",
42775
+ "privacy": "private",
42776
+ "description": "Renders the status icon based on the current status of the stepper item.\n- If the status is `completed`, it renders a check icon.\n- If the status is `current` or `error-current`, it renders a pencil icon.\n- If the status is `not-started` or `error-incomplete`, it renders the step number.\n- If the status is anything else, it renders nothing.",
42777
+ "return": {
42778
+ "type": {
42779
+ "text": ""
42780
+ }
42781
+ }
42626
42782
  },
42627
42783
  {
42628
- "description": "Top left border radius for line tab.",
42629
- "name": "--mdc-tab-line-border-top-left-radius"
42784
+ "kind": "method",
42785
+ "name": "renderHelpText",
42786
+ "privacy": "private",
42787
+ "description": "Renders the help text for the stepper item.\nIf the `helpText` property is not set, it returns nothing.",
42788
+ "return": {
42789
+ "type": {
42790
+ "text": ""
42791
+ }
42792
+ }
42630
42793
  },
42631
42794
  {
42632
- "description": "Top right border radius for line tab.",
42633
- "name": "--mdc-tab-line-border-top-right-radius"
42634
- },
42795
+ "kind": "field",
42796
+ "name": "tabIndex",
42797
+ "type": {
42798
+ "text": "number"
42799
+ },
42800
+ "default": "0",
42801
+ "description": "This property specifies the tab order of the element.",
42802
+ "attribute": "tabIndex",
42803
+ "reflects": true,
42804
+ "inheritedFrom": {
42805
+ "name": "TabIndexMixin",
42806
+ "module": "utils/mixins/TabIndexMixin.js"
42807
+ }
42808
+ }
42809
+ ],
42810
+ "events": [
42635
42811
  {
42636
- "description": "Background color for inactive line tab in pressed state.",
42637
- "name": "--mdc-tab-line-inactive-background-color-pressed"
42812
+ "description": "(React: onClick) This event is dispatched when the stepperitem is clicked.",
42813
+ "name": "click",
42814
+ "reactName": "onClick"
42638
42815
  },
42639
42816
  {
42640
- "description": "Background color for inactive line tab in disabled state",
42641
- "name": "--mdc-tab-line-inactive-background-color-disabled"
42817
+ "description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the stepperitem.",
42818
+ "name": "keydown",
42819
+ "reactName": "onKeyDown"
42642
42820
  },
42643
42821
  {
42644
- "description": "Background color for inactive line tab in hover state.",
42645
- "name": "--mdc-tab-line-inactive-background-color-hover"
42646
- },
42822
+ "description": "(React: onKeyUp) This event is dispatched when a key is released on the stepperitem.",
42823
+ "name": "keyup",
42824
+ "reactName": "onKeyUp"
42825
+ }
42826
+ ],
42827
+ "attributes": [
42647
42828
  {
42648
- "description": "Background color for inactive line tab in rest state.",
42649
- "name": "--mdc-tab-line-inactive-background-color-normal"
42829
+ "name": "variant",
42830
+ "type": {
42831
+ "text": "VariantType"
42832
+ },
42833
+ "description": "The variant of the stepper item, which can be `inline` or `stacked`.",
42834
+ "default": "'inline'",
42835
+ "fieldName": "variant"
42650
42836
  },
42651
42837
  {
42652
- "description": "Text and icon color for inactive line tab.",
42653
- "name": "--mdc-tab-line-inactive-color"
42838
+ "name": "status",
42839
+ "type": {
42840
+ "text": "StatusType"
42841
+ },
42842
+ "description": "The status of the stepper item, which can be `completed`, `current`, `not-started`, `error-current`, or `error-incomplete`.",
42843
+ "default": "'not-started'",
42844
+ "fieldName": "status"
42654
42845
  },
42655
42846
  {
42656
- "description": "Text and icon color for inactive line tab in disabled state.",
42657
- "name": "--mdc-tab-line-inactive-color-disabled"
42847
+ "name": "label",
42848
+ "type": {
42849
+ "text": "string"
42850
+ },
42851
+ "default": "''",
42852
+ "description": "The label for the stepper item, which is displayed as the main text of the step.\nThis label is typically used to describe the step or action that the step represents.",
42853
+ "fieldName": "label"
42658
42854
  },
42659
42855
  {
42660
- "description": "Padding left for the tab.",
42661
- "name": "--mdc-tab-padding-left"
42856
+ "name": "help-text",
42857
+ "type": {
42858
+ "text": "string | undefined"
42859
+ },
42860
+ "description": "Additional informational text that appears below the label\nThis text is optional and can be used to provide more context or instructions for the step.",
42861
+ "default": "''",
42862
+ "fieldName": "helpText"
42662
42863
  },
42663
42864
  {
42664
- "description": "Padding right for the tab.",
42665
- "name": "--mdc-tab-padding-right"
42865
+ "name": "step-number",
42866
+ "type": {
42867
+ "text": "number | undefined"
42868
+ },
42869
+ "description": "The step number for the stepper item, which is displayed as a numeric indicator of the step's position in the sequence.\nThis is useful for indicating the order of steps in a process.",
42870
+ "default": "''",
42871
+ "fieldName": "stepNumber"
42666
42872
  },
42667
42873
  {
42668
- "description": "Background color for active pill tab in pressed state.",
42669
- "name": "--mdc-tab-pill-active-background-color-pressed"
42670
- },
42874
+ "name": "tabIndex",
42875
+ "type": {
42876
+ "text": "number"
42877
+ },
42878
+ "default": "0",
42879
+ "description": "This property specifies the tab order of the element.",
42880
+ "fieldName": "tabIndex",
42881
+ "inheritedFrom": {
42882
+ "name": "TabIndexMixin",
42883
+ "module": "src/utils/mixins/TabIndexMixin.ts"
42884
+ }
42885
+ }
42886
+ ],
42887
+ "mixins": [
42671
42888
  {
42672
- "description": "Background color for active pill tab in disabled state.",
42673
- "name": "--mdc-tab-pill-active-background-color-disabled"
42674
- },
42889
+ "name": "TabIndexMixin",
42890
+ "module": "/src/utils/mixins/TabIndexMixin"
42891
+ }
42892
+ ],
42893
+ "superclass": {
42894
+ "name": "Component",
42895
+ "module": "/src/models"
42896
+ },
42897
+ "tagName": "mdc-stepperitem",
42898
+ "jsDoc": "/**\n * stepperitem component is used to represent a single step in a stepper component. It is used within a `mdc-stepper` component to indicate the current step in a process.\n * It can have different statuses such as `completed`, `current`, `incomplete`, `error-current`, and `error-incomplete`.\n * The component supports various visual styles and can be customized with labels, help text, and step numbers.\n *\n * This is an uncontrolled component, meaning it does not manage its own state. Instead, it relies on the consumer's to manage the state of each step.\n * Make sure to set `aria-current=\"step\"` on the current stepper item. It is applicable only when status is `current` or `error-current`. This ensures accessibility for the stepper component. Only one stepper item should have this attribute at a time.\n *\n * Additionally, make use of `aria-label` to provide a descriptive detail about the stepper item, especially for screen readers. If this aria-label is not set, it would read out only the label text and doesn't provide enough context for the user.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @tagname mdc-stepperitem\n *\n * @event click - (React: onClick) This event is dispatched when the stepperitem is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the stepperitem.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the stepperitem.\n *\n * @csspart status-container - The container for the status icon or step number.\n * @csspart label-container - The container for the label and help text.\n * @csspart help-text-container - The container for the help text and error icon when applicable.\n * @csspart status-icon - The icon representing the status of the stepper item.\n * @csspart step-number - The text representing the step number.\n * @csspart label - The text representing the label of the stepper item.\n * @csspart help-text - The text providing additional information about the stepper item.\n * @csspart help-icon - The icon representing an error in the stepper item.\n *\n * @cssproperty --mdc-stepperitem-status-container-background - The background color of the status container.\n * @cssproperty --mdc-stepperitem-status-container-border-color - The border color of the status container.\n * @cssproperty --mdc-stepperitem-label-color - The color of the label text.\n * @cssproperty --mdc-stepperitem-help-text-color - The color of the optional label text.\n * @cssproperty --mdc-stepperitem-label-container-background - The background color of the label container.\n */",
42899
+ "customElement": true
42900
+ }
42901
+ ],
42902
+ "exports": [
42903
+ {
42904
+ "kind": "js",
42905
+ "name": "default",
42906
+ "declaration": {
42907
+ "name": "StepperItem",
42908
+ "module": "components/stepperitem/stepperitem.component.js"
42909
+ }
42910
+ }
42911
+ ]
42912
+ },
42913
+ {
42914
+ "kind": "javascript-module",
42915
+ "path": "components/tab/tab.component.js",
42916
+ "declarations": [
42917
+ {
42918
+ "kind": "class",
42919
+ "description": "`mdc-tab` is Tab component to be used within the Tabgroup.\n\nPassing in the attribute `text` to the tab component is changing the text displayed in the tab.\n\nPass attribute `tabid` when using inside of `tablist` component.\n\nThe `slot=\"badge\"` can be used to add a badge to the tab.\n\nThe `slot=\"chip\"` can be used to add a chip to the tab.\n\nFor `icon`, the `mdc-icon` component is used to render the icon.\n\nNote: Icons can be used in conjunction with badges or chips.\nBadges and chips should not be used at the same time.",
42920
+ "name": "Tab",
42921
+ "cssProperties": [
42675
42922
  {
42676
- "description": "Background color for active pill tab in hover state.",
42677
- "name": "--mdc-tab-pill-active-background-color-hover"
42923
+ "description": "Height for button size",
42924
+ "name": "--mdc-button-height",
42925
+ "inheritedFrom": {
42926
+ "name": "Buttonsimple",
42927
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
42928
+ }
42678
42929
  },
42679
42930
  {
42680
- "description": "Background color for active pill tab in rest state.",
42681
- "name": "--mdc-tab-pill-active-background-color-normal"
42931
+ "description": "Gap between the badge(if provided), icon and text.",
42932
+ "name": "--mdc-tab-content-gap"
42682
42933
  },
42683
42934
  {
42684
- "description": "Text and icon color for active pill tab.",
42685
- "name": "--mdc-tab-pill-active-color"
42935
+ "description": "Height of the tab.",
42936
+ "name": "--mdc-tab-height"
42686
42937
  },
42687
42938
  {
42688
- "description": "Text and icon color for active pill tab in disabled state.",
42689
- "name": "--mdc-tab-pill-active-color-disabled"
42939
+ "description": "Background color for active glass tab in disabled state.",
42940
+ "name": "--mdc-tab-glass-active-background-color-disabled"
42690
42941
  },
42691
42942
  {
42692
- "description": "Border radius for pill tab.",
42693
- "name": "--mdc-tab-pill-border-radius"
42943
+ "description": "Background color for active glass tab in hover state.",
42944
+ "name": "--mdc-tab-glass-active-background-color-hover"
42694
42945
  },
42695
42946
  {
42696
- "description": "Background color for inactive pill tab in pressed state.",
42697
- "name": "--mdc-tab-pill-inactive-background-color-pressed"
42947
+ "description": "Background color for active glass tab in rest state.",
42948
+ "name": "--mdc-tab-glass-active-background-color-normal"
42698
42949
  },
42699
42950
  {
42700
- "description": "Background color for inactive pill tab in disabled state.",
42701
- "name": "--mdc-tab-pill-inactive-background-color-disabled"
42951
+ "description": "Background color for active glass tab in pressed state.",
42952
+ "name": "--mdc-tab-glass-active-background-color-pressed"
42702
42953
  },
42703
42954
  {
42704
- "description": "Background color for inactive pill tab in hover state.",
42705
- "name": "--mdc-tab-pill-inactive-background-color-hover"
42955
+ "description": "Text and icon color for active glass tab.",
42956
+ "name": "--mdc-tab-glass-active-color"
42706
42957
  },
42707
42958
  {
42708
- "description": "Background color for inactive pill tab in rest state.",
42709
- "name": "--mdc-tab-pill-inactive-background-color-normal"
42959
+ "description": "Text and icon color for active glass tab in disabled state.",
42960
+ "name": "--mdc-tab-glass-active-color-disabled"
42710
42961
  },
42711
42962
  {
42712
- "description": "Text and icon color for inactive pill tab.",
42713
- "name": "--mdc-tab-pill-inactive-color"
42963
+ "description": "Border radius for glass tab.",
42964
+ "name": "--mdc-tab-glass-border-radius"
42714
42965
  },
42715
42966
  {
42716
- "description": "Text and icon color for inactive pill tab in disabled state.",
42717
- "name": "--mdc-tab-pill-inactive-color-disabled"
42967
+ "description": "Background color for inactive glass tab in disabled state.",
42968
+ "name": "--mdc-tab-glass-inactive-background-color-disabled"
42718
42969
  },
42719
42970
  {
42720
- "description": "Background color of the button",
42721
- "name": "--mdc-button-background",
42722
- "inheritedFrom": {
42723
- "name": "Buttonsimple",
42724
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
42725
- }
42971
+ "description": "Background color for inactive glass tab in hover state.",
42972
+ "name": "--mdc-tab-glass-inactive-background-color-hover"
42726
42973
  },
42727
42974
  {
42728
- "description": "Borer color of the button",
42729
- "name": "--mdc-button-border-color",
42730
- "inheritedFrom": {
42731
- "name": "Buttonsimple",
42732
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
42733
- }
42975
+ "description": "Background color for inactive glass tab in rest state.",
42976
+ "name": "--mdc-tab-glass-inactive-background-color-normal"
42734
42977
  },
42735
42978
  {
42736
- "description": "Text color of the button",
42737
- "name": "--mdc-button-text-color",
42738
- "inheritedFrom": {
42739
- "name": "Buttonsimple",
42740
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
42741
- }
42742
- }
42743
- ],
42744
- "cssParts": [
42745
- {
42746
- "description": "The container of the tab.",
42747
- "name": "container"
42979
+ "description": "Background color for inactive glass tab in pressed state.",
42980
+ "name": "--mdc-tab-glass-inactive-background-color-pressed"
42748
42981
  },
42749
42982
  {
42750
- "description": "The icon of the tab.",
42751
- "name": "icon"
42983
+ "description": "Text and icon color for inactive glass tab.",
42984
+ "name": "--mdc-tab-glass-inactive-color"
42752
42985
  },
42753
42986
  {
42754
- "description": "The indicator of the tab.",
42987
+ "description": "Text and icon color for inactive glass tab in disabled state.",
42988
+ "name": "--mdc-tab-glass-inactive-color-disabled"
42989
+ },
42990
+ {
42991
+ "description": "Background color for active line tab in pressed state.",
42992
+ "name": "--mdc-tab-line-active-background-color-pressed"
42993
+ },
42994
+ {
42995
+ "description": "Background color for active line tab in disabled state.",
42996
+ "name": "--mdc-tab-line-active-background-color-disabled"
42997
+ },
42998
+ {
42999
+ "description": "Background color for active line tab in hover state.",
43000
+ "name": "--mdc-tab-line-active-background-color-hover"
43001
+ },
43002
+ {
43003
+ "description": "Background color for active line tab in rest state.",
43004
+ "name": "--mdc-tab-line-active-background-color-normal"
43005
+ },
43006
+ {
43007
+ "description": "Text and icon color for active line tab.",
43008
+ "name": "--mdc-tab-line-active-color"
43009
+ },
43010
+ {
43011
+ "description": "Text and icon color for active line tab in disabled state.",
43012
+ "name": "--mdc-tab-line-active-color-disabled"
43013
+ },
43014
+ {
43015
+ "description": "color for indicator in active line tab.",
43016
+ "name": "--mdc-tab-line-active-indicator-color"
43017
+ },
43018
+ {
43019
+ "description": "Color for indicator in active line tab in disabled state.",
43020
+ "name": "--mdc-tab-line-active-indicator-color-disabled"
43021
+ },
43022
+ {
43023
+ "description": "Height for indicator in active line tab.",
43024
+ "name": "--mdc-tab-line-active-indicator-height"
43025
+ },
43026
+ {
43027
+ "description": "Width for indicator in active line tab.",
43028
+ "name": "--mdc-tab-line-active-indicator-width"
43029
+ },
43030
+ {
43031
+ "description": "Bottom left border radius for line tab.",
43032
+ "name": "--mdc-tab-line-border-bottom-left-radius"
43033
+ },
43034
+ {
43035
+ "description": "Bottom right border radius for line tab.",
43036
+ "name": "--mdc-tab-line-border-bottom-right-radius"
43037
+ },
43038
+ {
43039
+ "description": "Top left border radius for line tab.",
43040
+ "name": "--mdc-tab-line-border-top-left-radius"
43041
+ },
43042
+ {
43043
+ "description": "Top right border radius for line tab.",
43044
+ "name": "--mdc-tab-line-border-top-right-radius"
43045
+ },
43046
+ {
43047
+ "description": "Background color for inactive line tab in pressed state.",
43048
+ "name": "--mdc-tab-line-inactive-background-color-pressed"
43049
+ },
43050
+ {
43051
+ "description": "Background color for inactive line tab in disabled state",
43052
+ "name": "--mdc-tab-line-inactive-background-color-disabled"
43053
+ },
43054
+ {
43055
+ "description": "Background color for inactive line tab in hover state.",
43056
+ "name": "--mdc-tab-line-inactive-background-color-hover"
43057
+ },
43058
+ {
43059
+ "description": "Background color for inactive line tab in rest state.",
43060
+ "name": "--mdc-tab-line-inactive-background-color-normal"
43061
+ },
43062
+ {
43063
+ "description": "Text and icon color for inactive line tab.",
43064
+ "name": "--mdc-tab-line-inactive-color"
43065
+ },
43066
+ {
43067
+ "description": "Text and icon color for inactive line tab in disabled state.",
43068
+ "name": "--mdc-tab-line-inactive-color-disabled"
43069
+ },
43070
+ {
43071
+ "description": "Padding left for the tab.",
43072
+ "name": "--mdc-tab-padding-left"
43073
+ },
43074
+ {
43075
+ "description": "Padding right for the tab.",
43076
+ "name": "--mdc-tab-padding-right"
43077
+ },
43078
+ {
43079
+ "description": "Background color for active pill tab in pressed state.",
43080
+ "name": "--mdc-tab-pill-active-background-color-pressed"
43081
+ },
43082
+ {
43083
+ "description": "Background color for active pill tab in disabled state.",
43084
+ "name": "--mdc-tab-pill-active-background-color-disabled"
43085
+ },
43086
+ {
43087
+ "description": "Background color for active pill tab in hover state.",
43088
+ "name": "--mdc-tab-pill-active-background-color-hover"
43089
+ },
43090
+ {
43091
+ "description": "Background color for active pill tab in rest state.",
43092
+ "name": "--mdc-tab-pill-active-background-color-normal"
43093
+ },
43094
+ {
43095
+ "description": "Text and icon color for active pill tab.",
43096
+ "name": "--mdc-tab-pill-active-color"
43097
+ },
43098
+ {
43099
+ "description": "Text and icon color for active pill tab in disabled state.",
43100
+ "name": "--mdc-tab-pill-active-color-disabled"
43101
+ },
43102
+ {
43103
+ "description": "Border radius for pill tab.",
43104
+ "name": "--mdc-tab-pill-border-radius"
43105
+ },
43106
+ {
43107
+ "description": "Background color for inactive pill tab in pressed state.",
43108
+ "name": "--mdc-tab-pill-inactive-background-color-pressed"
43109
+ },
43110
+ {
43111
+ "description": "Background color for inactive pill tab in disabled state.",
43112
+ "name": "--mdc-tab-pill-inactive-background-color-disabled"
43113
+ },
43114
+ {
43115
+ "description": "Background color for inactive pill tab in hover state.",
43116
+ "name": "--mdc-tab-pill-inactive-background-color-hover"
43117
+ },
43118
+ {
43119
+ "description": "Background color for inactive pill tab in rest state.",
43120
+ "name": "--mdc-tab-pill-inactive-background-color-normal"
43121
+ },
43122
+ {
43123
+ "description": "Text and icon color for inactive pill tab.",
43124
+ "name": "--mdc-tab-pill-inactive-color"
43125
+ },
43126
+ {
43127
+ "description": "Text and icon color for inactive pill tab in disabled state.",
43128
+ "name": "--mdc-tab-pill-inactive-color-disabled"
43129
+ },
43130
+ {
43131
+ "description": "Background color of the button",
43132
+ "name": "--mdc-button-background",
43133
+ "inheritedFrom": {
43134
+ "name": "Buttonsimple",
43135
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
43136
+ }
43137
+ },
43138
+ {
43139
+ "description": "Borer color of the button",
43140
+ "name": "--mdc-button-border-color",
43141
+ "inheritedFrom": {
43142
+ "name": "Buttonsimple",
43143
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
43144
+ }
43145
+ },
43146
+ {
43147
+ "description": "Text color of the button",
43148
+ "name": "--mdc-button-text-color",
43149
+ "inheritedFrom": {
43150
+ "name": "Buttonsimple",
43151
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
43152
+ }
43153
+ }
43154
+ ],
43155
+ "cssParts": [
43156
+ {
43157
+ "description": "The container of the tab.",
43158
+ "name": "container"
43159
+ },
43160
+ {
43161
+ "description": "The icon of the tab.",
43162
+ "name": "icon"
43163
+ },
43164
+ {
43165
+ "description": "The indicator of the tab.",
42755
43166
  "name": "indicator"
42756
43167
  },
42757
43168
  {
@@ -42993,673 +43404,143 @@
42993
43404
  "attribute": "role",
42994
43405
  "reflects": true,
42995
43406
  "inheritedFrom": {
42996
- "name": "Buttonsimple",
42997
- "module": "components/buttonsimple/buttonsimple.component.js"
42998
- }
42999
- },
43000
- {
43001
- "kind": "field",
43002
- "name": "ariaStateKey",
43003
- "type": {
43004
- "text": "string | undefined"
43005
- },
43006
- "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`",
43007
- "default": "'aria-pressed' (when)",
43008
- "attribute": "ariaStateKey",
43009
- "reflects": true,
43010
- "inheritedFrom": {
43011
- "name": "Buttonsimple",
43012
- "module": "components/buttonsimple/buttonsimple.component.js"
43013
- }
43014
- },
43015
- {
43016
- "kind": "field",
43017
- "name": "type",
43018
- "type": {
43019
- "text": "ButtonType"
43020
- },
43021
- "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.",
43022
- "default": "button",
43023
- "attribute": "type",
43024
- "reflects": true,
43025
- "inheritedFrom": {
43026
- "name": "Buttonsimple",
43027
- "module": "components/buttonsimple/buttonsimple.component.js"
43028
- }
43029
- },
43030
- {
43031
- "kind": "field",
43032
- "name": "name",
43033
- "type": {
43034
- "text": "string | undefined"
43035
- },
43036
- "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.",
43037
- "attribute": "name",
43038
- "reflects": true,
43039
- "inheritedFrom": {
43040
- "name": "Buttonsimple",
43041
- "module": "components/buttonsimple/buttonsimple.component.js"
43042
- }
43043
- },
43044
- {
43045
- "kind": "field",
43046
- "name": "value",
43047
- "type": {
43048
- "text": "string | undefined"
43049
- },
43050
- "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.",
43051
- "attribute": "value",
43052
- "reflects": true,
43053
- "inheritedFrom": {
43054
- "name": "Buttonsimple",
43055
- "module": "components/buttonsimple/buttonsimple.component.js"
43056
- }
43057
- },
43058
- {
43059
- "kind": "method",
43060
- "name": "setSoftDisabled",
43061
- "privacy": "private",
43062
- "parameters": [
43063
- {
43064
- "name": "element",
43065
- "type": {
43066
- "text": "HTMLElement"
43067
- },
43068
- "description": "The button element."
43069
- },
43070
- {
43071
- "name": "softDisabled",
43072
- "optional": true,
43073
- "type": {
43074
- "text": "boolean"
43075
- },
43076
- "description": "The soft-disabled state."
43077
- }
43078
- ],
43079
- "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.",
43080
- "inheritedFrom": {
43081
- "name": "Buttonsimple",
43082
- "module": "components/buttonsimple/buttonsimple.component.js"
43083
- }
43084
- },
43085
- {
43086
- "kind": "method",
43087
- "name": "setDisabled",
43088
- "privacy": "private",
43089
- "parameters": [
43090
- {
43091
- "name": "element",
43092
- "type": {
43093
- "text": "HTMLElement"
43094
- },
43095
- "description": "The button element."
43096
- },
43097
- {
43098
- "name": "disabled",
43099
- "type": {
43100
- "text": "boolean"
43101
- },
43102
- "description": "The disabled state."
43103
- }
43104
- ],
43105
- "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.",
43106
- "inheritedFrom": {
43107
- "name": "Buttonsimple",
43108
- "module": "components/buttonsimple/buttonsimple.component.js"
43109
- }
43110
- },
43111
- {
43112
- "kind": "method",
43113
- "name": "triggerClickEvent",
43114
- "privacy": "private",
43115
- "inheritedFrom": {
43116
- "name": "Buttonsimple",
43117
- "module": "components/buttonsimple/buttonsimple.component.js"
43118
- }
43119
- },
43120
- {
43121
- "kind": "method",
43122
- "name": "handleBlur",
43123
- "privacy": "private",
43124
- "description": "In case the button is pressed and the focus is lost while pressing,\nthe pressed class is removed.",
43125
- "inheritedFrom": {
43126
- "name": "Buttonsimple",
43127
- "module": "components/buttonsimple/buttonsimple.component.js"
43128
- }
43129
- },
43130
- {
43131
- "kind": "method",
43132
- "name": "handleKeyDown",
43133
- "privacy": "private",
43134
- "parameters": [
43135
- {
43136
- "name": "event",
43137
- "type": {
43138
- "text": "KeyboardEvent"
43139
- },
43140
- "description": "The keyboard event."
43141
- }
43142
- ],
43143
- "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.",
43144
- "inheritedFrom": {
43145
- "name": "Buttonsimple",
43146
- "module": "components/buttonsimple/buttonsimple.component.js"
43147
- }
43148
- },
43149
- {
43150
- "kind": "method",
43151
- "name": "handleKeyUp",
43152
- "privacy": "private",
43153
- "parameters": [
43154
- {
43155
- "name": "event",
43156
- "type": {
43157
- "text": "KeyboardEvent"
43158
- },
43159
- "description": "The keyboard event."
43160
- }
43161
- ],
43162
- "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.",
43163
- "inheritedFrom": {
43164
- "name": "Buttonsimple",
43165
- "module": "components/buttonsimple/buttonsimple.component.js"
43166
- }
43167
- }
43168
- ],
43169
- "events": [
43170
- {
43171
- "description": "(React: onClick) This event is dispatched when the tab is clicked.",
43172
- "name": "click",
43173
- "reactName": "onClick",
43174
- "inheritedFrom": {
43175
- "name": "Buttonsimple",
43176
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
43177
- }
43178
- },
43179
- {
43180
- "description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the tab.",
43181
- "name": "keydown",
43182
- "reactName": "onKeyDown",
43183
- "inheritedFrom": {
43184
- "name": "Buttonsimple",
43185
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
43186
- }
43187
- },
43188
- {
43189
- "description": "(React: onKeyUp) This event is dispatched when a key is released on the tab.",
43190
- "name": "keyup",
43191
- "reactName": "onKeyUp",
43192
- "inheritedFrom": {
43193
- "name": "Buttonsimple",
43194
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
43195
- }
43196
- },
43197
- {
43198
- "description": "(React: onFocus) This event is dispatched when the tab receives focus.",
43199
- "name": "focus",
43200
- "reactName": "onFocus",
43201
- "inheritedFrom": {
43202
- "name": "Buttonsimple",
43203
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
43204
- }
43205
- },
43206
- {
43207
- "description": "(React: onActiveChange) This event is dispatched when the active state of the tab changes <br /> Event Data: `detail: { tabId: this.tabId, active }` <br /> Note: the activechange event is used by the tab list component to react to the change in state of the tab, so this event won't be needed if the tab list is used.",
43208
- "name": "activechange",
43209
- "reactName": "onActiveChange"
43210
- }
43211
- ],
43212
- "attributes": [
43213
- {
43214
- "name": "active",
43215
- "type": {
43216
- "text": "boolean | undefined"
43217
- },
43218
- "description": "The tab's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the tab is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the tab is in an inactive state, indicating it is toggled off.\n\nThis attribute also controls the \"aria-selected\" attribute of the tab.\nWhen the tab is active, \"aria-selected\" is set to true, indicating that the tab is selected.\nWhen the tab is inactive, \"aria-selected\" is set to false, indicating that the tab is not selected.",
43219
- "default": "false",
43220
- "fieldName": "active",
43221
- "inheritedFrom": {
43222
- "name": "Buttonsimple",
43223
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
43224
- }
43225
- },
43226
- {
43227
- "name": "text",
43228
- "type": {
43229
- "text": "string | undefined"
43230
- },
43231
- "description": "Text to be displayed in the tab.\nIf no `text` is provided, no text will be rendered,\n`aria-label` should be set on the tab.",
43232
- "fieldName": "text"
43233
- },
43234
- {
43235
- "name": "variant",
43236
- "type": {
43237
- "text": "Variant"
43238
- },
43239
- "description": "Tab can have three variants:\n- `glass`\n- `line`\n- `pill`\n\nIt defines the background and foreground color of the tab.",
43240
- "default": "pill",
43241
- "fieldName": "variant"
43242
- },
43243
- {
43244
- "name": "tab-id",
43245
- "type": {
43246
- "text": "string | undefined"
43247
- },
43248
- "description": "Id of the tab (used as a identificator when used in the tablist)\nNote: has to be unique!",
43249
- "default": "undefined",
43250
- "fieldName": "tabId"
43251
- },
43252
- {
43253
- "name": "icon-name",
43254
- "type": {
43255
- "text": "IconNames | undefined"
43256
- },
43257
- "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
43258
- "fieldName": "iconName",
43259
- "inheritedFrom": {
43260
- "name": "IconNameMixin",
43261
- "module": "src/utils/mixins/IconNameMixin.ts"
43262
- }
43263
- },
43264
- {
43265
- "name": "auto-focus-on-mount",
43266
- "type": {
43267
- "text": "boolean"
43268
- },
43269
- "default": "false",
43270
- "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.",
43271
- "fieldName": "autoFocusOnMount",
43272
- "inheritedFrom": {
43273
- "name": "Buttonsimple",
43274
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
43275
- }
43276
- },
43277
- {
43278
- "name": "tabIndex",
43279
- "type": {
43280
- "text": "number"
43281
- },
43282
- "default": "0",
43283
- "description": "This property specifies the tab order of the element.",
43284
- "fieldName": "tabIndex",
43285
- "inheritedFrom": {
43286
- "name": "Buttonsimple",
43287
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
43288
- }
43289
- },
43290
- {
43291
- "name": "disabled",
43292
- "type": {
43293
- "text": "boolean | undefined"
43294
- },
43295
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
43296
- "default": "undefined",
43297
- "fieldName": "disabled",
43298
- "inheritedFrom": {
43299
- "name": "Buttonsimple",
43300
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
43301
- }
43302
- },
43303
- {
43304
- "name": "soft-disabled",
43305
- "type": {
43306
- "text": "boolean | undefined"
43307
- },
43308
- "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.",
43309
- "default": "undefined",
43310
- "fieldName": "softDisabled",
43311
- "inheritedFrom": {
43312
- "name": "Buttonsimple",
43313
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
43314
- }
43315
- },
43316
- {
43317
- "name": "size",
43318
- "type": {
43319
- "text": "ButtonSize"
43320
- },
43321
- "description": "Simplebutton size is a super set of all the sizes supported by children components.",
43322
- "default": "32",
43323
- "fieldName": "size",
43324
- "inheritedFrom": {
43325
- "name": "Buttonsimple",
43326
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
43327
- }
43328
- },
43329
- {
43330
- "name": "role",
43331
- "type": {
43332
- "text": "RoleType"
43333
- },
43334
- "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.",
43335
- "default": "button",
43336
- "fieldName": "role",
43337
- "inheritedFrom": {
43338
- "name": "Buttonsimple",
43339
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
43340
- }
43341
- },
43342
- {
43343
- "name": "ariaStateKey",
43344
- "type": {
43345
- "text": "string | undefined"
43346
- },
43347
- "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`",
43348
- "default": "'aria-pressed' (when)",
43349
- "fieldName": "ariaStateKey",
43350
- "inheritedFrom": {
43351
- "name": "Buttonsimple",
43352
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
43353
- }
43354
- },
43355
- {
43356
- "name": "type",
43357
- "type": {
43358
- "text": "ButtonType"
43359
- },
43360
- "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.",
43361
- "default": "button",
43362
- "fieldName": "type",
43363
- "inheritedFrom": {
43364
- "name": "Buttonsimple",
43365
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
43366
- }
43367
- },
43368
- {
43369
- "name": "name",
43370
- "type": {
43371
- "text": "string | undefined"
43372
- },
43373
- "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.",
43374
- "fieldName": "name",
43375
- "inheritedFrom": {
43376
- "name": "Buttonsimple",
43377
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
43378
- }
43379
- },
43380
- {
43381
- "name": "value",
43382
- "type": {
43383
- "text": "string | undefined"
43384
- },
43385
- "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.",
43386
- "fieldName": "value",
43387
- "inheritedFrom": {
43388
- "name": "Buttonsimple",
43389
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
43390
- }
43391
- }
43392
- ],
43393
- "mixins": [
43394
- {
43395
- "name": "IconNameMixin",
43396
- "module": "/src/utils/mixins/IconNameMixin"
43397
- }
43398
- ],
43399
- "superclass": {
43400
- "name": "Buttonsimple",
43401
- "module": "/src/components/buttonsimple/buttonsimple.component"
43402
- },
43403
- "tagName": "mdc-tab",
43404
- "jsDoc": "/**\n * `mdc-tab` is Tab component to be used within the Tabgroup.\n *\n * Passing in the attribute `text` to the tab component is changing the text displayed in the tab.\n *\n * Pass attribute `tabid` when using inside of `tablist` component.\n *\n * The `slot=\"badge\"` can be used to add a badge to the tab.\n *\n * The `slot=\"chip\"` can be used to add a chip to the tab.\n *\n * For `icon`, the `mdc-icon` component is used to render the icon.\n *\n * Note: Icons can be used in conjunction with badges or chips.\n * Badges and chips should not be used at the same time.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @event click - (React: onClick) This event is dispatched when the tab is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the tab.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the tab.\n * @event focus - (React: onFocus) This event is dispatched when the tab receives focus.\n * @event activechange - (React: onActiveChange) This event is dispatched when the active state of the tab changes\n * <br />\n * Event Data: `detail: { tabId: this.tabId, active }`\n * <br />\n * Note: the activechange event is used by the tab list component to react to the change in state of the tab,\n * so this event won't be needed if the tab list is used.\n *\n * @tagname mdc-tab\n *\n * @cssproperty --mdc-button-height - Height for button size\n * @cssproperty --mdc-tab-content-gap - Gap between the badge(if provided), icon and text.\n * @cssproperty --mdc-tab-height - Height of the tab.\n * @cssproperty --mdc-tab-glass-active-background-color-disabled - Background color for active glass tab\n * in disabled state.\n * @cssproperty --mdc-tab-glass-active-background-color-hover - Background color for active glass tab in hover state.\n * @cssproperty --mdc-tab-glass-active-background-color-normal - Background color for active glass tab in rest state.\n * @cssproperty --mdc-tab-glass-active-background-color-pressed - Background color for active glass tab\n * in pressed state.\n * @cssproperty --mdc-tab-glass-active-color - Text and icon color for active glass tab.\n * @cssproperty --mdc-tab-glass-active-color-disabled - Text and icon color for active glass tab in disabled state.\n * @cssproperty --mdc-tab-glass-border-radius - Border radius for glass tab.\n * @cssproperty --mdc-tab-glass-inactive-background-color-disabled - Background color for inactive glass tab\n * in disabled state.\n * @cssproperty --mdc-tab-glass-inactive-background-color-hover - Background color for inactive glass tab\n * in hover state.\n * @cssproperty --mdc-tab-glass-inactive-background-color-normal - Background color for inactive glass tab\n * in rest state.\n * @cssproperty --mdc-tab-glass-inactive-background-color-pressed - Background color for inactive glass tab\n * in pressed state.\n * @cssproperty --mdc-tab-glass-inactive-color - Text and icon color for inactive glass tab.\n * @cssproperty --mdc-tab-glass-inactive-color-disabled - Text and icon color for inactive glass tab in disabled state.\n * @cssproperty --mdc-tab-line-active-background-color-pressed - Background color for active line tab in pressed state.\n * @cssproperty --mdc-tab-line-active-background-color-disabled - Background color for active line tab\n * in disabled state.\n * @cssproperty --mdc-tab-line-active-background-color-hover - Background color for active line tab in hover state.\n * @cssproperty --mdc-tab-line-active-background-color-normal - Background color for active line tab in rest state.\n * @cssproperty --mdc-tab-line-active-color - Text and icon color for active line tab.\n * @cssproperty --mdc-tab-line-active-color-disabled - Text and icon color for active line tab in disabled state.\n * @cssproperty --mdc-tab-line-active-indicator-color - color for indicator in active line tab.\n * @cssproperty --mdc-tab-line-active-indicator-color-disabled - Color for indicator in active line tab\n * in disabled state.\n * @cssproperty --mdc-tab-line-active-indicator-height - Height for indicator in active line tab.\n * @cssproperty --mdc-tab-line-active-indicator-width - Width for indicator in active line tab.\n * @cssproperty --mdc-tab-line-border-bottom-left-radius - Bottom left border radius for line tab.\n * @cssproperty --mdc-tab-line-border-bottom-right-radius - Bottom right border radius for line tab.\n * @cssproperty --mdc-tab-line-border-top-left-radius - Top left border radius for line tab.\n * @cssproperty --mdc-tab-line-border-top-right-radius - Top right border radius for line tab.\n * @cssproperty --mdc-tab-line-inactive-background-color-pressed - Background color for inactive line tab\n * in pressed state.\n * @cssproperty --mdc-tab-line-inactive-background-color-disabled - Background color for inactive line tab\n * in disabled state\n * @cssproperty --mdc-tab-line-inactive-background-color-hover - Background color for inactive line tab in hover state.\n * @cssproperty --mdc-tab-line-inactive-background-color-normal - Background color for inactive line tab\n * in rest state.\n * @cssproperty --mdc-tab-line-inactive-color - Text and icon color for inactive line tab.\n * @cssproperty --mdc-tab-line-inactive-color-disabled - Text and icon color for inactive line tab in disabled state.\n * @cssproperty --mdc-tab-padding-left - Padding left for the tab.\n * @cssproperty --mdc-tab-padding-right - Padding right for the tab.\n * @cssproperty --mdc-tab-pill-active-background-color-pressed - Background color for active pill tab in pressed state.\n * @cssproperty --mdc-tab-pill-active-background-color-disabled - Background color for active pill tab\n * in disabled state.\n * @cssproperty --mdc-tab-pill-active-background-color-hover - Background color for active pill tab in hover state.\n * @cssproperty --mdc-tab-pill-active-background-color-normal - Background color for active pill tab in rest state.\n * @cssproperty --mdc-tab-pill-active-color - Text and icon color for active pill tab.\n * @cssproperty --mdc-tab-pill-active-color-disabled - Text and icon color for active pill tab in disabled state.\n * @cssproperty --mdc-tab-pill-border-radius - Border radius for pill tab.\n * @cssproperty --mdc-tab-pill-inactive-background-color-pressed - Background color for inactive pill tab\n * in pressed state.\n * @cssproperty --mdc-tab-pill-inactive-background-color-disabled - Background color for inactive pill tab\n * in disabled state.\n * @cssproperty --mdc-tab-pill-inactive-background-color-hover - Background color for inactive pill tab in hover state.\n * @cssproperty --mdc-tab-pill-inactive-background-color-normal - Background color for inactive pill tab in rest state.\n * @cssproperty --mdc-tab-pill-inactive-color - Text and icon color for inactive pill tab.\n * @cssproperty --mdc-tab-pill-inactive-color-disabled - Text and icon color for inactive pill tab in disabled state.\n *\n * @csspart container - The container of the tab.\n * @csspart icon - The icon of the tab.\n * @csspart indicator - The indicator of the tab.\n * @csspart text - The text of the tab.\n */",
43405
- "customElement": true
43406
- }
43407
- ],
43408
- "exports": [
43409
- {
43410
- "kind": "js",
43411
- "name": "default",
43412
- "declaration": {
43413
- "name": "Tab",
43414
- "module": "components/tab/tab.component.js"
43415
- }
43416
- }
43417
- ]
43418
- },
43419
- {
43420
- "kind": "javascript-module",
43421
- "path": "components/tablist/tablist.component.js",
43422
- "declarations": [
43423
- {
43424
- "kind": "class",
43425
- "description": "Tab list organizes tabs into a container.\n\nChildren of the tab list are `mdc-tab` elements, sent to the default slot.\n\nThe tabs can be navigated using the left/right arrow keys, and selected by clicking,\n or pressing the Enter and Space keys.\n\n**Implicit accessibility rules**\n\n- The element that serves as the container for the set of tabs has role `tablist`.\n- Each element that serves as a tab has role `tab` and is contained within the element with role `tablist`.\n- The active tab element has the state `aria-selected` set to `true`\n and all other tab elements have it set to `false`.\n\n\n**Accessibility notes for consuming (have to be explicitly set when you consume the component)**\n\n- Each element that contains the `content panel` for a `tab` has role `tabpanel`.\n- The `tablist` element needs to have a label provided by `data-aria-label`.\n- Each element with role `tab` has the property `aria-controls`\n that should refer to its associated `tabpanel` element.\n- Each element with role `tabpanel` has the property `aria-labelledby` referring to its associated `tab` element.\n- If a `tab` element has a popup menu, it needs to have the property `aria-haspopup` set to either `menu` or `true`.",
43426
- "name": "TabList",
43427
- "cssProperties": [
43428
- {
43429
- "description": "Gap between tabs",
43430
- "name": "--mdc-tablist-gap"
43431
- },
43432
- {
43433
- "description": "Width of the tablist",
43434
- "name": "--mdc-tablist-width"
43435
- },
43436
- {
43437
- "description": "Margin value for the arrow button",
43438
- "name": "--mdc-tablist-arrow-button-margin"
43439
- }
43440
- ],
43441
- "cssParts": [
43442
- {
43443
- "description": "The tablist container.",
43444
- "name": "container"
43445
- }
43446
- ],
43447
- "slots": [
43448
- {
43449
- "description": "slot for mdc-tab elements.",
43450
- "name": "Default"
43451
- }
43452
- ],
43453
- "members": [
43454
- {
43455
- "kind": "field",
43456
- "name": "activeTabId",
43457
- "type": {
43458
- "text": "string | undefined"
43459
- },
43460
- "description": "ID of the active tab, defaults to the first tab if not provided",
43461
- "attribute": "active-tab-id",
43462
- "reflects": true
43463
- },
43464
- {
43465
- "kind": "field",
43466
- "name": "dataAriaLabel",
43467
- "type": {
43468
- "text": "string | undefined"
43469
- },
43470
- "description": "Label for the tablist.\nThis is used when the tablist does not have a visible label.",
43471
- "attribute": "data-aria-label"
43472
- }
43473
- ],
43474
- "events": [
43475
- {
43476
- "description": "(React: onChange) This event is dispatched when the tab is selected. Event that fires when user changes the active tab. The function sent as the argument will receive the fired event and the new tab id can be fetched from event.detail.tabId. `(event: CustomEvent) => handleTabChange(event.detail.tabId);`",
43477
- "name": "change",
43478
- "reactName": "onChange"
43479
- }
43480
- ],
43481
- "attributes": [
43482
- {
43483
- "name": "active-tab-id",
43484
- "type": {
43485
- "text": "string | undefined"
43486
- },
43487
- "description": "ID of the active tab, defaults to the first tab if not provided",
43488
- "fieldName": "activeTabId"
43489
- },
43490
- {
43491
- "name": "data-aria-label",
43492
- "type": {
43493
- "text": "string | undefined"
43494
- },
43495
- "description": "Label for the tablist.\nThis is used when the tablist does not have a visible label.",
43496
- "fieldName": "dataAriaLabel"
43497
- }
43498
- ],
43499
- "superclass": {
43500
- "name": "Component",
43501
- "module": "/src/models"
43502
- },
43503
- "tagName": "mdc-tablist",
43504
- "jsDoc": "/**\n * Tab list organizes tabs into a container.\n *\n * Children of the tab list are `mdc-tab` elements, sent to the default slot.\n *\n * The tabs can be navigated using the left/right arrow keys, and selected by clicking,\n * or pressing the Enter and Space keys.\n *\n * **Implicit accessibility rules**\n *\n * - The element that serves as the container for the set of tabs has role `tablist`.\n * - Each element that serves as a tab has role `tab` and is contained within the element with role `tablist`.\n * - The active tab element has the state `aria-selected` set to `true`\n * and all other tab elements have it set to `false`.\n *\n *\n * **Accessibility notes for consuming (have to be explicitly set when you consume the component)**\n *\n * - Each element that contains the `content panel` for a `tab` has role `tabpanel`.\n * - The `tablist` element needs to have a label provided by `data-aria-label`.\n * - Each element with role `tab` has the property `aria-controls`\n * that should refer to its associated `tabpanel` element.\n * - Each element with role `tabpanel` has the property `aria-labelledby` referring to its associated `tab` element.\n * - If a `tab` element has a popup menu, it needs to have the property `aria-haspopup` set to either `menu` or `true`.\n *\n * @tagname mdc-tablist\n *\n * @dependency mdc-tab\n * @dependency mdc-button\n *\n * @event change - (React: onChange) This event is dispatched when the tab is selected.\n * Event that fires when user changes the active tab.\n * The function sent as the argument will receive the fired event\n * and the new tab id can be fetched from event.detail.tabId.\n *\n * `(event: CustomEvent) => handleTabChange(event.detail.tabId);`\n *\n * @slot Default slot for mdc-tab elements.\n *\n * @cssproperty --mdc-tablist-gap - Gap between tabs\n * @cssproperty --mdc-tablist-width - Width of the tablist\n * @cssproperty --mdc-tablist-arrow-button-margin - Margin value for the arrow button\n *\n * @csspart container - The tablist container.\n */",
43505
- "customElement": true
43506
- }
43507
- ],
43508
- "exports": [
43509
- {
43510
- "kind": "js",
43511
- "name": "default",
43512
- "declaration": {
43513
- "name": "TabList",
43514
- "module": "components/tablist/tablist.component.js"
43515
- }
43516
- }
43517
- ]
43518
- },
43519
- {
43520
- "kind": "javascript-module",
43521
- "path": "components/stepperitem/stepperitem.component.js",
43522
- "declarations": [
43523
- {
43524
- "kind": "class",
43525
- "description": "stepperitem component is used to represent a single step in a stepper component. It is used within a `mdc-stepper` component to indicate the current step in a process.\nIt can have different statuses such as `completed`, `current`, `incomplete`, `error-current`, and `error-incomplete`.\nThe component supports various visual styles and can be customized with labels, help text, and step numbers.\n\nThis is an uncontrolled component, meaning it does not manage its own state. Instead, it relies on the consumer's to manage the state of each step.\nMake sure to set `aria-current=\"step\"` on the current stepper item. It is applicable only when status is `current` or `error-current`. This ensures accessibility for the stepper component. Only one stepper item should have this attribute at a time.\n\nAdditionally, make use of `aria-label` to provide a descriptive detail about the stepper item, especially for screen readers. If this aria-label is not set, it would read out only the label text and doesn't provide enough context for the user.",
43526
- "name": "StepperItem",
43527
- "cssProperties": [
43528
- {
43529
- "description": "The background color of the status container.",
43530
- "name": "--mdc-stepperitem-status-container-background"
43531
- },
43532
- {
43533
- "description": "The border color of the status container.",
43534
- "name": "--mdc-stepperitem-status-container-border-color"
43535
- },
43536
- {
43537
- "description": "The color of the label text.",
43538
- "name": "--mdc-stepperitem-label-color"
43539
- },
43540
- {
43541
- "description": "The color of the optional label text.",
43542
- "name": "--mdc-stepperitem-help-text-color"
43543
- },
43544
- {
43545
- "description": "The background color of the label container.",
43546
- "name": "--mdc-stepperitem-label-container-background"
43547
- }
43548
- ],
43549
- "cssParts": [
43550
- {
43551
- "description": "The container for the status icon or step number.",
43552
- "name": "status-container"
43553
- },
43554
- {
43555
- "description": "The container for the label and help text.",
43556
- "name": "label-container"
43557
- },
43558
- {
43559
- "description": "The container for the help text and error icon when applicable.",
43560
- "name": "help-text-container"
43561
- },
43562
- {
43563
- "description": "The icon representing the status of the stepper item.",
43564
- "name": "status-icon"
43565
- },
43566
- {
43567
- "description": "The text representing the step number.",
43568
- "name": "step-number"
43569
- },
43570
- {
43571
- "description": "The text representing the label of the stepper item.",
43572
- "name": "label"
43573
- },
43574
- {
43575
- "description": "The text providing additional information about the stepper item.",
43576
- "name": "help-text"
43577
- },
43578
- {
43579
- "description": "The icon representing an error in the stepper item.",
43580
- "name": "help-icon"
43581
- }
43582
- ],
43583
- "members": [
43407
+ "name": "Buttonsimple",
43408
+ "module": "components/buttonsimple/buttonsimple.component.js"
43409
+ }
43410
+ },
43584
43411
  {
43585
43412
  "kind": "field",
43586
- "name": "variant",
43413
+ "name": "ariaStateKey",
43587
43414
  "type": {
43588
- "text": "VariantType"
43415
+ "text": "string | undefined"
43589
43416
  },
43590
- "description": "The variant of the stepper item, which can be `inline` or `stacked`.",
43591
- "default": "'inline'",
43592
- "attribute": "variant",
43593
- "reflects": true
43417
+ "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`",
43418
+ "default": "'aria-pressed' (when)",
43419
+ "attribute": "ariaStateKey",
43420
+ "reflects": true,
43421
+ "inheritedFrom": {
43422
+ "name": "Buttonsimple",
43423
+ "module": "components/buttonsimple/buttonsimple.component.js"
43424
+ }
43594
43425
  },
43595
43426
  {
43596
43427
  "kind": "field",
43597
- "name": "status",
43428
+ "name": "type",
43598
43429
  "type": {
43599
- "text": "StatusType"
43430
+ "text": "ButtonType"
43600
43431
  },
43601
- "description": "The status of the stepper item, which can be `completed`, `current`, `not-started`, `error-current`, or `error-incomplete`.",
43602
- "default": "'not-started'",
43603
- "attribute": "status",
43604
- "reflects": true
43432
+ "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.",
43433
+ "default": "button",
43434
+ "attribute": "type",
43435
+ "reflects": true,
43436
+ "inheritedFrom": {
43437
+ "name": "Buttonsimple",
43438
+ "module": "components/buttonsimple/buttonsimple.component.js"
43439
+ }
43605
43440
  },
43606
43441
  {
43607
43442
  "kind": "field",
43608
- "name": "label",
43443
+ "name": "name",
43609
43444
  "type": {
43610
- "text": "string"
43445
+ "text": "string | undefined"
43611
43446
  },
43612
- "default": "''",
43613
- "description": "The label for the stepper item, which is displayed as the main text of the step.\nThis label is typically used to describe the step or action that the step represents.",
43614
- "attribute": "label",
43615
- "reflects": true
43447
+ "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.",
43448
+ "attribute": "name",
43449
+ "reflects": true,
43450
+ "inheritedFrom": {
43451
+ "name": "Buttonsimple",
43452
+ "module": "components/buttonsimple/buttonsimple.component.js"
43453
+ }
43616
43454
  },
43617
43455
  {
43618
43456
  "kind": "field",
43619
- "name": "helpText",
43457
+ "name": "value",
43620
43458
  "type": {
43621
43459
  "text": "string | undefined"
43622
43460
  },
43623
- "description": "Additional informational text that appears below the label\nThis text is optional and can be used to provide more context or instructions for the step.",
43624
- "default": "''",
43625
- "attribute": "help-text",
43626
- "reflects": true
43461
+ "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.",
43462
+ "attribute": "value",
43463
+ "reflects": true,
43464
+ "inheritedFrom": {
43465
+ "name": "Buttonsimple",
43466
+ "module": "components/buttonsimple/buttonsimple.component.js"
43467
+ }
43627
43468
  },
43628
43469
  {
43629
- "kind": "field",
43630
- "name": "stepNumber",
43631
- "type": {
43632
- "text": "number | undefined"
43633
- },
43634
- "description": "The step number for the stepper item, which is displayed as a numeric indicator of the step's position in the sequence.\nThis is useful for indicating the order of steps in a process.",
43635
- "default": "''",
43636
- "attribute": "step-number",
43637
- "reflects": true
43470
+ "kind": "method",
43471
+ "name": "setSoftDisabled",
43472
+ "privacy": "private",
43473
+ "parameters": [
43474
+ {
43475
+ "name": "element",
43476
+ "type": {
43477
+ "text": "HTMLElement"
43478
+ },
43479
+ "description": "The button element."
43480
+ },
43481
+ {
43482
+ "name": "softDisabled",
43483
+ "optional": true,
43484
+ "type": {
43485
+ "text": "boolean"
43486
+ },
43487
+ "description": "The soft-disabled state."
43488
+ }
43489
+ ],
43490
+ "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.",
43491
+ "inheritedFrom": {
43492
+ "name": "Buttonsimple",
43493
+ "module": "components/buttonsimple/buttonsimple.component.js"
43494
+ }
43638
43495
  },
43639
43496
  {
43640
43497
  "kind": "method",
43641
- "name": "handleKeyDown",
43498
+ "name": "setDisabled",
43642
43499
  "privacy": "private",
43643
43500
  "parameters": [
43644
43501
  {
43645
- "name": "event",
43502
+ "name": "element",
43646
43503
  "type": {
43647
- "text": "KeyboardEvent"
43504
+ "text": "HTMLElement"
43648
43505
  },
43649
- "description": "The keyboard event."
43506
+ "description": "The button element."
43507
+ },
43508
+ {
43509
+ "name": "disabled",
43510
+ "type": {
43511
+ "text": "boolean"
43512
+ },
43513
+ "description": "The disabled state."
43650
43514
  }
43651
43515
  ],
43652
- "description": "Handles the keydown event on the stepperitem.\nIf the key is 'Enter' or 'Space', the stepperitem is pressed.\nIf the key is 'Enter', the stepperitem is pressed. The native HTML button works in the same way.\nIf the key is 'Space', the stepperitem's default is prevent to avoid scrolling etc in the host application."
43516
+ "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.",
43517
+ "inheritedFrom": {
43518
+ "name": "Buttonsimple",
43519
+ "module": "components/buttonsimple/buttonsimple.component.js"
43520
+ }
43653
43521
  },
43654
43522
  {
43655
43523
  "kind": "method",
43656
43524
  "name": "triggerClickEvent",
43657
43525
  "privacy": "private",
43658
- "description": "Triggers a click event on the stepper item."
43526
+ "inheritedFrom": {
43527
+ "name": "Buttonsimple",
43528
+ "module": "components/buttonsimple/buttonsimple.component.js"
43529
+ }
43659
43530
  },
43660
43531
  {
43661
43532
  "kind": "method",
43662
- "name": "handleKeyUp",
43533
+ "name": "handleBlur",
43534
+ "privacy": "private",
43535
+ "description": "In case the button is pressed and the focus is lost while pressing,\nthe pressed class is removed.",
43536
+ "inheritedFrom": {
43537
+ "name": "Buttonsimple",
43538
+ "module": "components/buttonsimple/buttonsimple.component.js"
43539
+ }
43540
+ },
43541
+ {
43542
+ "kind": "method",
43543
+ "name": "handleKeyDown",
43663
43544
  "privacy": "private",
43664
43545
  "parameters": [
43665
43546
  {
@@ -43670,135 +43551,268 @@
43670
43551
  "description": "The keyboard event."
43671
43552
  }
43672
43553
  ],
43673
- "description": "Handles the keyup event on the stepperitem.\nIf the key is 'Enter' or 'Space', the stepperitem is clicked.\nIf the key is 'Space', the stepperitem is pressed. The native HTML button works in the same way."
43554
+ "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.",
43555
+ "inheritedFrom": {
43556
+ "name": "Buttonsimple",
43557
+ "module": "components/buttonsimple/buttonsimple.component.js"
43558
+ }
43674
43559
  },
43675
43560
  {
43676
43561
  "kind": "method",
43677
- "name": "renderStatusIcon",
43562
+ "name": "handleKeyUp",
43678
43563
  "privacy": "private",
43679
- "description": "Renders the status icon based on the current status of the stepper item.\n- If the status is `completed`, it renders a check icon.\n- If the status is `current` or `error-current`, it renders a pencil icon.\n- If the status is `not-started` or `error-incomplete`, it renders the step number.\n- If the status is anything else, it renders nothing.",
43680
- "return": {
43681
- "type": {
43682
- "text": ""
43564
+ "parameters": [
43565
+ {
43566
+ "name": "event",
43567
+ "type": {
43568
+ "text": "KeyboardEvent"
43569
+ },
43570
+ "description": "The keyboard event."
43683
43571
  }
43572
+ ],
43573
+ "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.",
43574
+ "inheritedFrom": {
43575
+ "name": "Buttonsimple",
43576
+ "module": "components/buttonsimple/buttonsimple.component.js"
43577
+ }
43578
+ }
43579
+ ],
43580
+ "events": [
43581
+ {
43582
+ "description": "(React: onClick) This event is dispatched when the tab is clicked.",
43583
+ "name": "click",
43584
+ "reactName": "onClick",
43585
+ "inheritedFrom": {
43586
+ "name": "Buttonsimple",
43587
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
43588
+ }
43589
+ },
43590
+ {
43591
+ "description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the tab.",
43592
+ "name": "keydown",
43593
+ "reactName": "onKeyDown",
43594
+ "inheritedFrom": {
43595
+ "name": "Buttonsimple",
43596
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
43597
+ }
43598
+ },
43599
+ {
43600
+ "description": "(React: onKeyUp) This event is dispatched when a key is released on the tab.",
43601
+ "name": "keyup",
43602
+ "reactName": "onKeyUp",
43603
+ "inheritedFrom": {
43604
+ "name": "Buttonsimple",
43605
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
43606
+ }
43607
+ },
43608
+ {
43609
+ "description": "(React: onFocus) This event is dispatched when the tab receives focus.",
43610
+ "name": "focus",
43611
+ "reactName": "onFocus",
43612
+ "inheritedFrom": {
43613
+ "name": "Buttonsimple",
43614
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
43615
+ }
43616
+ },
43617
+ {
43618
+ "description": "(React: onActiveChange) This event is dispatched when the active state of the tab changes <br /> Event Data: `detail: { tabId: this.tabId, active }` <br /> Note: the activechange event is used by the tab list component to react to the change in state of the tab, so this event won't be needed if the tab list is used.",
43619
+ "name": "activechange",
43620
+ "reactName": "onActiveChange"
43621
+ }
43622
+ ],
43623
+ "attributes": [
43624
+ {
43625
+ "name": "active",
43626
+ "type": {
43627
+ "text": "boolean | undefined"
43628
+ },
43629
+ "description": "The tab's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the tab is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the tab is in an inactive state, indicating it is toggled off.\n\nThis attribute also controls the \"aria-selected\" attribute of the tab.\nWhen the tab is active, \"aria-selected\" is set to true, indicating that the tab is selected.\nWhen the tab is inactive, \"aria-selected\" is set to false, indicating that the tab is not selected.",
43630
+ "default": "false",
43631
+ "fieldName": "active",
43632
+ "inheritedFrom": {
43633
+ "name": "Buttonsimple",
43634
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
43635
+ }
43636
+ },
43637
+ {
43638
+ "name": "text",
43639
+ "type": {
43640
+ "text": "string | undefined"
43641
+ },
43642
+ "description": "Text to be displayed in the tab.\nIf no `text` is provided, no text will be rendered,\n`aria-label` should be set on the tab.",
43643
+ "fieldName": "text"
43644
+ },
43645
+ {
43646
+ "name": "variant",
43647
+ "type": {
43648
+ "text": "Variant"
43649
+ },
43650
+ "description": "Tab can have three variants:\n- `glass`\n- `line`\n- `pill`\n\nIt defines the background and foreground color of the tab.",
43651
+ "default": "pill",
43652
+ "fieldName": "variant"
43653
+ },
43654
+ {
43655
+ "name": "tab-id",
43656
+ "type": {
43657
+ "text": "string | undefined"
43658
+ },
43659
+ "description": "Id of the tab (used as a identificator when used in the tablist)\nNote: has to be unique!",
43660
+ "default": "undefined",
43661
+ "fieldName": "tabId"
43662
+ },
43663
+ {
43664
+ "name": "icon-name",
43665
+ "type": {
43666
+ "text": "IconNames | undefined"
43667
+ },
43668
+ "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
43669
+ "fieldName": "iconName",
43670
+ "inheritedFrom": {
43671
+ "name": "IconNameMixin",
43672
+ "module": "src/utils/mixins/IconNameMixin.ts"
43684
43673
  }
43685
43674
  },
43686
43675
  {
43687
- "kind": "method",
43688
- "name": "renderHelpText",
43689
- "privacy": "private",
43690
- "description": "Renders the help text for the stepper item.\nIf the `helpText` property is not set, it returns nothing.",
43691
- "return": {
43692
- "type": {
43693
- "text": ""
43694
- }
43676
+ "name": "auto-focus-on-mount",
43677
+ "type": {
43678
+ "text": "boolean"
43679
+ },
43680
+ "default": "false",
43681
+ "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.",
43682
+ "fieldName": "autoFocusOnMount",
43683
+ "inheritedFrom": {
43684
+ "name": "Buttonsimple",
43685
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
43695
43686
  }
43696
43687
  },
43697
43688
  {
43698
- "kind": "field",
43699
43689
  "name": "tabIndex",
43700
43690
  "type": {
43701
43691
  "text": "number"
43702
43692
  },
43703
43693
  "default": "0",
43704
43694
  "description": "This property specifies the tab order of the element.",
43705
- "attribute": "tabIndex",
43706
- "reflects": true,
43695
+ "fieldName": "tabIndex",
43707
43696
  "inheritedFrom": {
43708
- "name": "TabIndexMixin",
43709
- "module": "utils/mixins/TabIndexMixin.js"
43697
+ "name": "Buttonsimple",
43698
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
43710
43699
  }
43711
- }
43712
- ],
43713
- "events": [
43714
- {
43715
- "description": "(React: onClick) This event is dispatched when the stepperitem is clicked.",
43716
- "name": "click",
43717
- "reactName": "onClick"
43718
43700
  },
43719
43701
  {
43720
- "description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the stepperitem.",
43721
- "name": "keydown",
43722
- "reactName": "onKeyDown"
43702
+ "name": "disabled",
43703
+ "type": {
43704
+ "text": "boolean | undefined"
43705
+ },
43706
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
43707
+ "default": "undefined",
43708
+ "fieldName": "disabled",
43709
+ "inheritedFrom": {
43710
+ "name": "Buttonsimple",
43711
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
43712
+ }
43723
43713
  },
43724
43714
  {
43725
- "description": "(React: onKeyUp) This event is dispatched when a key is released on the stepperitem.",
43726
- "name": "keyup",
43727
- "reactName": "onKeyUp"
43728
- }
43729
- ],
43730
- "attributes": [
43731
- {
43732
- "name": "variant",
43715
+ "name": "soft-disabled",
43733
43716
  "type": {
43734
- "text": "VariantType"
43717
+ "text": "boolean | undefined"
43735
43718
  },
43736
- "description": "The variant of the stepper item, which can be `inline` or `stacked`.",
43737
- "default": "'inline'",
43738
- "fieldName": "variant"
43719
+ "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.",
43720
+ "default": "undefined",
43721
+ "fieldName": "softDisabled",
43722
+ "inheritedFrom": {
43723
+ "name": "Buttonsimple",
43724
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
43725
+ }
43739
43726
  },
43740
43727
  {
43741
- "name": "status",
43728
+ "name": "size",
43742
43729
  "type": {
43743
- "text": "StatusType"
43730
+ "text": "ButtonSize"
43744
43731
  },
43745
- "description": "The status of the stepper item, which can be `completed`, `current`, `not-started`, `error-current`, or `error-incomplete`.",
43746
- "default": "'not-started'",
43747
- "fieldName": "status"
43732
+ "description": "Simplebutton size is a super set of all the sizes supported by children components.",
43733
+ "default": "32",
43734
+ "fieldName": "size",
43735
+ "inheritedFrom": {
43736
+ "name": "Buttonsimple",
43737
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
43738
+ }
43748
43739
  },
43749
43740
  {
43750
- "name": "label",
43741
+ "name": "role",
43751
43742
  "type": {
43752
- "text": "string"
43743
+ "text": "RoleType"
43753
43744
  },
43754
- "default": "''",
43755
- "description": "The label for the stepper item, which is displayed as the main text of the step.\nThis label is typically used to describe the step or action that the step represents.",
43756
- "fieldName": "label"
43745
+ "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.",
43746
+ "default": "button",
43747
+ "fieldName": "role",
43748
+ "inheritedFrom": {
43749
+ "name": "Buttonsimple",
43750
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
43751
+ }
43757
43752
  },
43758
43753
  {
43759
- "name": "help-text",
43754
+ "name": "ariaStateKey",
43760
43755
  "type": {
43761
43756
  "text": "string | undefined"
43762
43757
  },
43763
- "description": "Additional informational text that appears below the label\nThis text is optional and can be used to provide more context or instructions for the step.",
43764
- "default": "''",
43765
- "fieldName": "helpText"
43758
+ "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`",
43759
+ "default": "'aria-pressed' (when)",
43760
+ "fieldName": "ariaStateKey",
43761
+ "inheritedFrom": {
43762
+ "name": "Buttonsimple",
43763
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
43764
+ }
43766
43765
  },
43767
43766
  {
43768
- "name": "step-number",
43767
+ "name": "type",
43769
43768
  "type": {
43770
- "text": "number | undefined"
43769
+ "text": "ButtonType"
43771
43770
  },
43772
- "description": "The step number for the stepper item, which is displayed as a numeric indicator of the step's position in the sequence.\nThis is useful for indicating the order of steps in a process.",
43773
- "default": "''",
43774
- "fieldName": "stepNumber"
43771
+ "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.",
43772
+ "default": "button",
43773
+ "fieldName": "type",
43774
+ "inheritedFrom": {
43775
+ "name": "Buttonsimple",
43776
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
43777
+ }
43775
43778
  },
43776
43779
  {
43777
- "name": "tabIndex",
43780
+ "name": "name",
43778
43781
  "type": {
43779
- "text": "number"
43782
+ "text": "string | undefined"
43780
43783
  },
43781
- "default": "0",
43782
- "description": "This property specifies the tab order of the element.",
43783
- "fieldName": "tabIndex",
43784
+ "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.",
43785
+ "fieldName": "name",
43784
43786
  "inheritedFrom": {
43785
- "name": "TabIndexMixin",
43786
- "module": "src/utils/mixins/TabIndexMixin.ts"
43787
+ "name": "Buttonsimple",
43788
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
43789
+ }
43790
+ },
43791
+ {
43792
+ "name": "value",
43793
+ "type": {
43794
+ "text": "string | undefined"
43795
+ },
43796
+ "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.",
43797
+ "fieldName": "value",
43798
+ "inheritedFrom": {
43799
+ "name": "Buttonsimple",
43800
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
43787
43801
  }
43788
43802
  }
43789
43803
  ],
43790
43804
  "mixins": [
43791
43805
  {
43792
- "name": "TabIndexMixin",
43793
- "module": "/src/utils/mixins/TabIndexMixin"
43806
+ "name": "IconNameMixin",
43807
+ "module": "/src/utils/mixins/IconNameMixin"
43794
43808
  }
43795
43809
  ],
43796
43810
  "superclass": {
43797
- "name": "Component",
43798
- "module": "/src/models"
43811
+ "name": "Buttonsimple",
43812
+ "module": "/src/components/buttonsimple/buttonsimple.component"
43799
43813
  },
43800
- "tagName": "mdc-stepperitem",
43801
- "jsDoc": "/**\n * stepperitem component is used to represent a single step in a stepper component. It is used within a `mdc-stepper` component to indicate the current step in a process.\n * It can have different statuses such as `completed`, `current`, `incomplete`, `error-current`, and `error-incomplete`.\n * The component supports various visual styles and can be customized with labels, help text, and step numbers.\n *\n * This is an uncontrolled component, meaning it does not manage its own state. Instead, it relies on the consumer's to manage the state of each step.\n * Make sure to set `aria-current=\"step\"` on the current stepper item. It is applicable only when status is `current` or `error-current`. This ensures accessibility for the stepper component. Only one stepper item should have this attribute at a time.\n *\n * Additionally, make use of `aria-label` to provide a descriptive detail about the stepper item, especially for screen readers. If this aria-label is not set, it would read out only the label text and doesn't provide enough context for the user.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @tagname mdc-stepperitem\n *\n * @event click - (React: onClick) This event is dispatched when the stepperitem is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the stepperitem.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the stepperitem.\n *\n * @csspart status-container - The container for the status icon or step number.\n * @csspart label-container - The container for the label and help text.\n * @csspart help-text-container - The container for the help text and error icon when applicable.\n * @csspart status-icon - The icon representing the status of the stepper item.\n * @csspart step-number - The text representing the step number.\n * @csspart label - The text representing the label of the stepper item.\n * @csspart help-text - The text providing additional information about the stepper item.\n * @csspart help-icon - The icon representing an error in the stepper item.\n *\n * @cssproperty --mdc-stepperitem-status-container-background - The background color of the status container.\n * @cssproperty --mdc-stepperitem-status-container-border-color - The border color of the status container.\n * @cssproperty --mdc-stepperitem-label-color - The color of the label text.\n * @cssproperty --mdc-stepperitem-help-text-color - The color of the optional label text.\n * @cssproperty --mdc-stepperitem-label-container-background - The background color of the label container.\n */",
43814
+ "tagName": "mdc-tab",
43815
+ "jsDoc": "/**\n * `mdc-tab` is Tab component to be used within the Tabgroup.\n *\n * Passing in the attribute `text` to the tab component is changing the text displayed in the tab.\n *\n * Pass attribute `tabid` when using inside of `tablist` component.\n *\n * The `slot=\"badge\"` can be used to add a badge to the tab.\n *\n * The `slot=\"chip\"` can be used to add a chip to the tab.\n *\n * For `icon`, the `mdc-icon` component is used to render the icon.\n *\n * Note: Icons can be used in conjunction with badges or chips.\n * Badges and chips should not be used at the same time.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @event click - (React: onClick) This event is dispatched when the tab is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the tab.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the tab.\n * @event focus - (React: onFocus) This event is dispatched when the tab receives focus.\n * @event activechange - (React: onActiveChange) This event is dispatched when the active state of the tab changes\n * <br />\n * Event Data: `detail: { tabId: this.tabId, active }`\n * <br />\n * Note: the activechange event is used by the tab list component to react to the change in state of the tab,\n * so this event won't be needed if the tab list is used.\n *\n * @tagname mdc-tab\n *\n * @cssproperty --mdc-button-height - Height for button size\n * @cssproperty --mdc-tab-content-gap - Gap between the badge(if provided), icon and text.\n * @cssproperty --mdc-tab-height - Height of the tab.\n * @cssproperty --mdc-tab-glass-active-background-color-disabled - Background color for active glass tab\n * in disabled state.\n * @cssproperty --mdc-tab-glass-active-background-color-hover - Background color for active glass tab in hover state.\n * @cssproperty --mdc-tab-glass-active-background-color-normal - Background color for active glass tab in rest state.\n * @cssproperty --mdc-tab-glass-active-background-color-pressed - Background color for active glass tab\n * in pressed state.\n * @cssproperty --mdc-tab-glass-active-color - Text and icon color for active glass tab.\n * @cssproperty --mdc-tab-glass-active-color-disabled - Text and icon color for active glass tab in disabled state.\n * @cssproperty --mdc-tab-glass-border-radius - Border radius for glass tab.\n * @cssproperty --mdc-tab-glass-inactive-background-color-disabled - Background color for inactive glass tab\n * in disabled state.\n * @cssproperty --mdc-tab-glass-inactive-background-color-hover - Background color for inactive glass tab\n * in hover state.\n * @cssproperty --mdc-tab-glass-inactive-background-color-normal - Background color for inactive glass tab\n * in rest state.\n * @cssproperty --mdc-tab-glass-inactive-background-color-pressed - Background color for inactive glass tab\n * in pressed state.\n * @cssproperty --mdc-tab-glass-inactive-color - Text and icon color for inactive glass tab.\n * @cssproperty --mdc-tab-glass-inactive-color-disabled - Text and icon color for inactive glass tab in disabled state.\n * @cssproperty --mdc-tab-line-active-background-color-pressed - Background color for active line tab in pressed state.\n * @cssproperty --mdc-tab-line-active-background-color-disabled - Background color for active line tab\n * in disabled state.\n * @cssproperty --mdc-tab-line-active-background-color-hover - Background color for active line tab in hover state.\n * @cssproperty --mdc-tab-line-active-background-color-normal - Background color for active line tab in rest state.\n * @cssproperty --mdc-tab-line-active-color - Text and icon color for active line tab.\n * @cssproperty --mdc-tab-line-active-color-disabled - Text and icon color for active line tab in disabled state.\n * @cssproperty --mdc-tab-line-active-indicator-color - color for indicator in active line tab.\n * @cssproperty --mdc-tab-line-active-indicator-color-disabled - Color for indicator in active line tab\n * in disabled state.\n * @cssproperty --mdc-tab-line-active-indicator-height - Height for indicator in active line tab.\n * @cssproperty --mdc-tab-line-active-indicator-width - Width for indicator in active line tab.\n * @cssproperty --mdc-tab-line-border-bottom-left-radius - Bottom left border radius for line tab.\n * @cssproperty --mdc-tab-line-border-bottom-right-radius - Bottom right border radius for line tab.\n * @cssproperty --mdc-tab-line-border-top-left-radius - Top left border radius for line tab.\n * @cssproperty --mdc-tab-line-border-top-right-radius - Top right border radius for line tab.\n * @cssproperty --mdc-tab-line-inactive-background-color-pressed - Background color for inactive line tab\n * in pressed state.\n * @cssproperty --mdc-tab-line-inactive-background-color-disabled - Background color for inactive line tab\n * in disabled state\n * @cssproperty --mdc-tab-line-inactive-background-color-hover - Background color for inactive line tab in hover state.\n * @cssproperty --mdc-tab-line-inactive-background-color-normal - Background color for inactive line tab\n * in rest state.\n * @cssproperty --mdc-tab-line-inactive-color - Text and icon color for inactive line tab.\n * @cssproperty --mdc-tab-line-inactive-color-disabled - Text and icon color for inactive line tab in disabled state.\n * @cssproperty --mdc-tab-padding-left - Padding left for the tab.\n * @cssproperty --mdc-tab-padding-right - Padding right for the tab.\n * @cssproperty --mdc-tab-pill-active-background-color-pressed - Background color for active pill tab in pressed state.\n * @cssproperty --mdc-tab-pill-active-background-color-disabled - Background color for active pill tab\n * in disabled state.\n * @cssproperty --mdc-tab-pill-active-background-color-hover - Background color for active pill tab in hover state.\n * @cssproperty --mdc-tab-pill-active-background-color-normal - Background color for active pill tab in rest state.\n * @cssproperty --mdc-tab-pill-active-color - Text and icon color for active pill tab.\n * @cssproperty --mdc-tab-pill-active-color-disabled - Text and icon color for active pill tab in disabled state.\n * @cssproperty --mdc-tab-pill-border-radius - Border radius for pill tab.\n * @cssproperty --mdc-tab-pill-inactive-background-color-pressed - Background color for inactive pill tab\n * in pressed state.\n * @cssproperty --mdc-tab-pill-inactive-background-color-disabled - Background color for inactive pill tab\n * in disabled state.\n * @cssproperty --mdc-tab-pill-inactive-background-color-hover - Background color for inactive pill tab in hover state.\n * @cssproperty --mdc-tab-pill-inactive-background-color-normal - Background color for inactive pill tab in rest state.\n * @cssproperty --mdc-tab-pill-inactive-color - Text and icon color for inactive pill tab.\n * @cssproperty --mdc-tab-pill-inactive-color-disabled - Text and icon color for inactive pill tab in disabled state.\n *\n * @csspart container - The container of the tab.\n * @csspart icon - The icon of the tab.\n * @csspart indicator - The indicator of the tab.\n * @csspart text - The text of the tab.\n */",
43802
43816
  "customElement": true
43803
43817
  }
43804
43818
  ],
@@ -43807,86 +43821,98 @@
43807
43821
  "kind": "js",
43808
43822
  "name": "default",
43809
43823
  "declaration": {
43810
- "name": "StepperItem",
43811
- "module": "components/stepperitem/stepperitem.component.js"
43824
+ "name": "Tab",
43825
+ "module": "components/tab/tab.component.js"
43812
43826
  }
43813
43827
  }
43814
43828
  ]
43815
43829
  },
43816
43830
  {
43817
43831
  "kind": "javascript-module",
43818
- "path": "components/stepperconnector/stepperconnector.component.js",
43832
+ "path": "components/tablist/tablist.component.js",
43819
43833
  "declarations": [
43820
43834
  {
43821
43835
  "kind": "class",
43822
- "description": "StepperConnector component visually represents the connection between two stepper items.\nIndicates whether the connection is complete or incomplete, and supports vertical or horizontal orientation.\nThey are used between 2 `mdc-stepperitem` components to visually connect them and wrapped in a `mdc-stepper` component.",
43823
- "name": "StepperConnector",
43836
+ "description": "Tab list organizes tabs into a container.\n\nChildren of the tab list are `mdc-tab` elements, sent to the default slot.\n\nThe tabs can be navigated using the left/right arrow keys, and selected by clicking,\n or pressing the Enter and Space keys.\n\n**Implicit accessibility rules**\n\n- The element that serves as the container for the set of tabs has role `tablist`.\n- Each element that serves as a tab has role `tab` and is contained within the element with role `tablist`.\n- The active tab element has the state `aria-selected` set to `true`\n and all other tab elements have it set to `false`.\n\n\n**Accessibility notes for consuming (have to be explicitly set when you consume the component)**\n\n- Each element that contains the `content panel` for a `tab` has role `tabpanel`.\n- The `tablist` element needs to have a label provided by `data-aria-label`.\n- Each element with role `tab` has the property `aria-controls`\n that should refer to its associated `tabpanel` element.\n- Each element with role `tabpanel` has the property `aria-labelledby` referring to its associated `tab` element.\n- If a `tab` element has a popup menu, it needs to have the property `aria-haspopup` set to either `menu` or `true`.",
43837
+ "name": "TabList",
43824
43838
  "cssProperties": [
43825
43839
  {
43826
- "description": "Background color for the complete connector",
43827
- "name": "--mdc-stepperconnector-complete-background"
43840
+ "description": "Gap between tabs",
43841
+ "name": "--mdc-tablist-gap"
43828
43842
  },
43829
43843
  {
43830
- "description": "Background color for the incomplete connector",
43831
- "name": "--mdc-stepperconnector-incomplete-background"
43844
+ "description": "Width of the tablist",
43845
+ "name": "--mdc-tablist-width"
43846
+ },
43847
+ {
43848
+ "description": "Margin value for the arrow button",
43849
+ "name": "--mdc-tablist-arrow-button-margin"
43832
43850
  }
43833
43851
  ],
43834
43852
  "cssParts": [
43835
43853
  {
43836
- "description": "The main connector line between steps",
43837
- "name": "connector"
43854
+ "description": "The tablist container.",
43855
+ "name": "container"
43856
+ }
43857
+ ],
43858
+ "slots": [
43859
+ {
43860
+ "description": "slot for mdc-tab elements.",
43861
+ "name": "Default"
43838
43862
  }
43839
43863
  ],
43840
43864
  "members": [
43841
43865
  {
43842
43866
  "kind": "field",
43843
- "name": "status",
43867
+ "name": "activeTabId",
43844
43868
  "type": {
43845
- "text": "StatusType"
43869
+ "text": "string | undefined"
43846
43870
  },
43847
- "description": "The status of the connector (complete or incomplete)",
43848
- "default": "\"incomplete\"",
43849
- "attribute": "status",
43871
+ "description": "ID of the active tab, defaults to the first tab if not provided",
43872
+ "attribute": "active-tab-id",
43850
43873
  "reflects": true
43851
43874
  },
43852
43875
  {
43853
43876
  "kind": "field",
43854
- "name": "orientation",
43877
+ "name": "dataAriaLabel",
43855
43878
  "type": {
43856
- "text": "OrientationType"
43879
+ "text": "string | undefined"
43857
43880
  },
43858
- "description": "The orientation of the connector (vertical or horizontal)",
43859
- "default": "\"horizontal\"",
43860
- "attribute": "orientation",
43861
- "reflects": true
43881
+ "description": "Label for the tablist.\nThis is used when the tablist does not have a visible label.",
43882
+ "attribute": "data-aria-label"
43883
+ }
43884
+ ],
43885
+ "events": [
43886
+ {
43887
+ "description": "(React: onChange) This event is dispatched when the tab is selected. Event that fires when user changes the active tab. The function sent as the argument will receive the fired event and the new tab id can be fetched from event.detail.tabId. `(event: CustomEvent) => handleTabChange(event.detail.tabId);`",
43888
+ "name": "change",
43889
+ "reactName": "onChange"
43862
43890
  }
43863
43891
  ],
43864
43892
  "attributes": [
43865
43893
  {
43866
- "name": "status",
43894
+ "name": "active-tab-id",
43867
43895
  "type": {
43868
- "text": "StatusType"
43896
+ "text": "string | undefined"
43869
43897
  },
43870
- "description": "The status of the connector (complete or incomplete)",
43871
- "default": "\"incomplete\"",
43872
- "fieldName": "status"
43898
+ "description": "ID of the active tab, defaults to the first tab if not provided",
43899
+ "fieldName": "activeTabId"
43873
43900
  },
43874
43901
  {
43875
- "name": "orientation",
43902
+ "name": "data-aria-label",
43876
43903
  "type": {
43877
- "text": "OrientationType"
43904
+ "text": "string | undefined"
43878
43905
  },
43879
- "description": "The orientation of the connector (vertical or horizontal)",
43880
- "default": "\"horizontal\"",
43881
- "fieldName": "orientation"
43906
+ "description": "Label for the tablist.\nThis is used when the tablist does not have a visible label.",
43907
+ "fieldName": "dataAriaLabel"
43882
43908
  }
43883
43909
  ],
43884
43910
  "superclass": {
43885
43911
  "name": "Component",
43886
43912
  "module": "/src/models"
43887
43913
  },
43888
- "tagName": "mdc-stepperconnector",
43889
- "jsDoc": "/**\n * StepperConnector component visually represents the connection between two stepper items.\n * Indicates whether the connection is complete or incomplete, and supports vertical or horizontal orientation.\n * They are used between 2 `mdc-stepperitem` components to visually connect them and wrapped in a `mdc-stepper` component.\n *\n * @tagname mdc-stepperconnector\n *\n * @csspart connector - The main connector line between steps\n *\n * @cssproperty --mdc-stepperconnector-complete-background - Background color for the complete connector\n * @cssproperty --mdc-stepperconnector-incomplete-background - Background color for the incomplete connector\n */",
43914
+ "tagName": "mdc-tablist",
43915
+ "jsDoc": "/**\n * Tab list organizes tabs into a container.\n *\n * Children of the tab list are `mdc-tab` elements, sent to the default slot.\n *\n * The tabs can be navigated using the left/right arrow keys, and selected by clicking,\n * or pressing the Enter and Space keys.\n *\n * **Implicit accessibility rules**\n *\n * - The element that serves as the container for the set of tabs has role `tablist`.\n * - Each element that serves as a tab has role `tab` and is contained within the element with role `tablist`.\n * - The active tab element has the state `aria-selected` set to `true`\n * and all other tab elements have it set to `false`.\n *\n *\n * **Accessibility notes for consuming (have to be explicitly set when you consume the component)**\n *\n * - Each element that contains the `content panel` for a `tab` has role `tabpanel`.\n * - The `tablist` element needs to have a label provided by `data-aria-label`.\n * - Each element with role `tab` has the property `aria-controls`\n * that should refer to its associated `tabpanel` element.\n * - Each element with role `tabpanel` has the property `aria-labelledby` referring to its associated `tab` element.\n * - If a `tab` element has a popup menu, it needs to have the property `aria-haspopup` set to either `menu` or `true`.\n *\n * @tagname mdc-tablist\n *\n * @dependency mdc-tab\n * @dependency mdc-button\n *\n * @event change - (React: onChange) This event is dispatched when the tab is selected.\n * Event that fires when user changes the active tab.\n * The function sent as the argument will receive the fired event\n * and the new tab id can be fetched from event.detail.tabId.\n *\n * `(event: CustomEvent) => handleTabChange(event.detail.tabId);`\n *\n * @slot Default slot for mdc-tab elements.\n *\n * @cssproperty --mdc-tablist-gap - Gap between tabs\n * @cssproperty --mdc-tablist-width - Width of the tablist\n * @cssproperty --mdc-tablist-arrow-button-margin - Margin value for the arrow button\n *\n * @csspart container - The tablist container.\n */",
43890
43916
  "customElement": true
43891
43917
  }
43892
43918
  ],
@@ -43895,8 +43921,8 @@
43895
43921
  "kind": "js",
43896
43922
  "name": "default",
43897
43923
  "declaration": {
43898
- "name": "StepperConnector",
43899
- "module": "components/stepperconnector/stepperconnector.component.js"
43924
+ "name": "TabList",
43925
+ "module": "components/tablist/tablist.component.js"
43900
43926
  }
43901
43927
  }
43902
43928
  ]
@@ -44280,17 +44306,17 @@
44280
44306
  "type": {
44281
44307
  "text": "number | undefined"
44282
44308
  },
44283
- "description": "maximum character limit for the textarea field for character counter.",
44309
+ "description": "The maximum character limit for the textarea field for character counter.",
44284
44310
  "attribute": "max-character-limit"
44285
44311
  },
44286
44312
  {
44287
44313
  "kind": "field",
44288
- "name": "characterLimitExceedingFired",
44314
+ "name": "characterLimitAnnouncement",
44289
44315
  "type": {
44290
- "text": "boolean"
44316
+ "text": "string | undefined"
44291
44317
  },
44292
- "privacy": "private",
44293
- "default": "false"
44318
+ "description": "Template string for the announcement that will be read by screen readers when the max character limit is set.\nConsumers must use the placeholders `%{number-of-characters}` and `%{max-character-limit}` in the string,\nwhich will be dynamically replaced with the actual values at runtime.\nFor example: `%{number-of-characters} out of %{max-character-limit} characters are typed.`\nExample output: \"93 out of 140 characters are typed.\"",
44319
+ "attribute": "character-limit-announcement"
44294
44320
  },
44295
44321
  {
44296
44322
  "kind": "field",
@@ -44349,6 +44375,12 @@
44349
44375
  }
44350
44376
  }
44351
44377
  },
44378
+ {
44379
+ "kind": "method",
44380
+ "name": "announceMaxLengthWarning",
44381
+ "privacy": "private",
44382
+ "description": "Announces the character limit warning based on the current value length.\nIf the value length exceeds the max character limit, the help text is announced (if help text is present).\nIf the value length does not exceed the max character limit, then the character limit announcement is announced."
44383
+ },
44352
44384
  {
44353
44385
  "kind": "method",
44354
44386
  "name": "onChange",
@@ -44856,9 +44888,17 @@
44856
44888
  "type": {
44857
44889
  "text": "number | undefined"
44858
44890
  },
44859
- "description": "maximum character limit for the textarea field for character counter.",
44891
+ "description": "The maximum character limit for the textarea field for character counter.",
44860
44892
  "fieldName": "maxCharacterLimit"
44861
44893
  },
44894
+ {
44895
+ "name": "character-limit-announcement",
44896
+ "type": {
44897
+ "text": "string | undefined"
44898
+ },
44899
+ "description": "Template string for the announcement that will be read by screen readers when the max character limit is set.\nConsumers must use the placeholders `%{number-of-characters}` and `%{max-character-limit}` in the string,\nwhich will be dynamically replaced with the actual values at runtime.\nFor example: `%{number-of-characters} out of %{max-character-limit} characters are typed.`\nExample output: \"93 out of 140 characters are typed.\"",
44900
+ "fieldName": "characterLimitAnnouncement"
44901
+ },
44862
44902
  {
44863
44903
  "name": "auto-focus-on-mount",
44864
44904
  "type": {