@momentum-design/components 0.120.35 → 0.120.36
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.
- package/dist/browser/index.js +8 -8
- package/dist/browser/index.js.map +3 -3
- package/dist/components/input/input.component.d.ts +6 -0
- package/dist/components/input/input.component.js +12 -2
- package/dist/custom-elements.json +571 -495
- package/dist/react/index.d.ts +3 -3
- package/dist/react/index.js +3 -3
- package/package.json +1 -1
|
@@ -477,157 +477,6 @@
|
|
|
477
477
|
}
|
|
478
478
|
]
|
|
479
479
|
},
|
|
480
|
-
{
|
|
481
|
-
"kind": "javascript-module",
|
|
482
|
-
"path": "components/accordiongroup/accordiongroup.component.js",
|
|
483
|
-
"declarations": [
|
|
484
|
-
{
|
|
485
|
-
"kind": "class",
|
|
486
|
-
"description": "An accordion group is a vertically stacked set of interactive headings that each contain a header and body content.\nEach heading of the accordion acts as a control that enable users to expand or hide their associated body sections of content.\nAccordions are commonly used to reduce the need to scroll when presenting multiple sections of content on a single page.\n\n- Default Slot: The accordion group component only accepts, `accordion` and `accordionbutton` components as the children, rest are ignored.\n\nThere are three types of variants:\n- Stacked - Each accordion will have a gap of 1.5rem (24px).\n- Borderless - Each accordion will not have any border and the group will also not have any border.\n- Contained - Each accordion will have no gap in between them and the border of the entire accordiongroup will be continuous.\n\nThere are two types of sizes:\n- Small: Small size has a padding of 1rem (16px) for both heading and body sections.\n- Large: Large size has a padding of 1.5rem (24px) for both heading and body sections.\n\nThe variant and size will be applied to all accordions inside this accordion group.\nTo show/expand more than one accordion at any given time, then set `allow-multiple` to `true`. By default, it's `false`.\n\nIf you don't need any controls on your accordion heading, then it's advised to use `accordionbutton` component.\n\nIf the first accordion of the accordion group is expanded by default, then the screen reader might loose focus when toggling the visibilty of the first accordion.",
|
|
487
|
-
"name": "AccordionGroup",
|
|
488
|
-
"cssProperties": [
|
|
489
|
-
{
|
|
490
|
-
"description": "The border color of the entire accordiongroup",
|
|
491
|
-
"name": "--mdc-accordiongroup-border-color"
|
|
492
|
-
}
|
|
493
|
-
],
|
|
494
|
-
"slots": [
|
|
495
|
-
{
|
|
496
|
-
"description": "The default slot can contain the `accordion` or `accordionbutton` components.",
|
|
497
|
-
"name": "default"
|
|
498
|
-
}
|
|
499
|
-
],
|
|
500
|
-
"members": [
|
|
501
|
-
{
|
|
502
|
-
"kind": "field",
|
|
503
|
-
"name": "size",
|
|
504
|
-
"type": {
|
|
505
|
-
"text": "Size"
|
|
506
|
-
},
|
|
507
|
-
"description": "The size of the accordion item.",
|
|
508
|
-
"default": "'small'",
|
|
509
|
-
"attribute": "size",
|
|
510
|
-
"reflects": true
|
|
511
|
-
},
|
|
512
|
-
{
|
|
513
|
-
"kind": "field",
|
|
514
|
-
"name": "variant",
|
|
515
|
-
"type": {
|
|
516
|
-
"text": "Variant"
|
|
517
|
-
},
|
|
518
|
-
"description": "The variant of the accordion item. Based on the variant, the styling of the accordion gets changed.",
|
|
519
|
-
"default": "'stacked'",
|
|
520
|
-
"attribute": "variant",
|
|
521
|
-
"reflects": true
|
|
522
|
-
},
|
|
523
|
-
{
|
|
524
|
-
"kind": "field",
|
|
525
|
-
"name": "allowMultiple",
|
|
526
|
-
"type": {
|
|
527
|
-
"text": "boolean"
|
|
528
|
-
},
|
|
529
|
-
"default": "false",
|
|
530
|
-
"description": "If true, multiple accordion items can be visible at the same time.",
|
|
531
|
-
"attribute": "allow-multiple",
|
|
532
|
-
"reflects": true
|
|
533
|
-
},
|
|
534
|
-
{
|
|
535
|
-
"kind": "method",
|
|
536
|
-
"name": "handleAccordionExpanded",
|
|
537
|
-
"privacy": "private",
|
|
538
|
-
"return": {
|
|
539
|
-
"type": {
|
|
540
|
-
"text": "void"
|
|
541
|
-
}
|
|
542
|
-
},
|
|
543
|
-
"parameters": [
|
|
544
|
-
{
|
|
545
|
-
"name": "event",
|
|
546
|
-
"type": {
|
|
547
|
-
"text": "Event"
|
|
548
|
-
},
|
|
549
|
-
"description": "The event object from the 'shown' event."
|
|
550
|
-
}
|
|
551
|
-
],
|
|
552
|
-
"description": "Handles the 'shown' event for accordion items.\nIf `allowMultiple` is false, ensures that only one accordion item\nremains expanded by collapsing all other expanded items when a new item is expanded."
|
|
553
|
-
},
|
|
554
|
-
{
|
|
555
|
-
"kind": "method",
|
|
556
|
-
"name": "setChildrenAccordionAttributes",
|
|
557
|
-
"privacy": "private",
|
|
558
|
-
"return": {
|
|
559
|
-
"type": {
|
|
560
|
-
"text": "void"
|
|
561
|
-
}
|
|
562
|
-
},
|
|
563
|
-
"parameters": [
|
|
564
|
-
{
|
|
565
|
-
"name": "attributeName",
|
|
566
|
-
"type": {
|
|
567
|
-
"text": "string"
|
|
568
|
-
},
|
|
569
|
-
"description": "The name of the attribute to set."
|
|
570
|
-
},
|
|
571
|
-
{
|
|
572
|
-
"name": "attributeValue",
|
|
573
|
-
"type": {
|
|
574
|
-
"text": "string"
|
|
575
|
-
},
|
|
576
|
-
"description": "The value to set the attribute to."
|
|
577
|
-
}
|
|
578
|
-
],
|
|
579
|
-
"description": "Sets the given attribute on all child accordion or accordionbutton components."
|
|
580
|
-
}
|
|
581
|
-
],
|
|
582
|
-
"attributes": [
|
|
583
|
-
{
|
|
584
|
-
"name": "size",
|
|
585
|
-
"type": {
|
|
586
|
-
"text": "Size"
|
|
587
|
-
},
|
|
588
|
-
"description": "The size of the accordion item.",
|
|
589
|
-
"default": "'small'",
|
|
590
|
-
"fieldName": "size"
|
|
591
|
-
},
|
|
592
|
-
{
|
|
593
|
-
"name": "variant",
|
|
594
|
-
"type": {
|
|
595
|
-
"text": "Variant"
|
|
596
|
-
},
|
|
597
|
-
"description": "The variant of the accordion item. Based on the variant, the styling of the accordion gets changed.",
|
|
598
|
-
"default": "'stacked'",
|
|
599
|
-
"fieldName": "variant"
|
|
600
|
-
},
|
|
601
|
-
{
|
|
602
|
-
"name": "allow-multiple",
|
|
603
|
-
"type": {
|
|
604
|
-
"text": "boolean"
|
|
605
|
-
},
|
|
606
|
-
"default": "false",
|
|
607
|
-
"description": "If true, multiple accordion items can be visible at the same time.",
|
|
608
|
-
"fieldName": "allowMultiple"
|
|
609
|
-
}
|
|
610
|
-
],
|
|
611
|
-
"superclass": {
|
|
612
|
-
"name": "Component",
|
|
613
|
-
"module": "/src/models"
|
|
614
|
-
},
|
|
615
|
-
"tagName": "mdc-accordiongroup",
|
|
616
|
-
"jsDoc": "/**\n * An accordion group is a vertically stacked set of interactive headings that each contain a header and body content.\n * Each heading of the accordion acts as a control that enable users to expand or hide their associated body sections of content.\n * Accordions are commonly used to reduce the need to scroll when presenting multiple sections of content on a single page.\n *\n * - Default Slot: The accordion group component only accepts, `accordion` and `accordionbutton` components as the children, rest are ignored.\n *\n * There are three types of variants:\n * - Stacked - Each accordion will have a gap of 1.5rem (24px).\n * - Borderless - Each accordion will not have any border and the group will also not have any border.\n * - Contained - Each accordion will have no gap in between them and the border of the entire accordiongroup will be continuous.\n *\n * There are two types of sizes:\n * - Small: Small size has a padding of 1rem (16px) for both heading and body sections.\n * - Large: Large size has a padding of 1.5rem (24px) for both heading and body sections.\n *\n * The variant and size will be applied to all accordions inside this accordion group.\n * To show/expand more than one accordion at any given time, then set `allow-multiple` to `true`. By default, it's `false`.\n *\n * If you don't need any controls on your accordion heading, then it's advised to use `accordionbutton` component.\n *\n * If the first accordion of the accordion group is expanded by default, then the screen reader might loose focus when toggling the visibilty of the first accordion.\n *\n * @tagname mdc-accordiongroup\n *\n * @slot default - The default slot can contain the `accordion` or `accordionbutton` components.\n *\n * @cssproperty --mdc-accordiongroup-border-color - The border color of the entire accordiongroup\n */",
|
|
617
|
-
"customElement": true
|
|
618
|
-
}
|
|
619
|
-
],
|
|
620
|
-
"exports": [
|
|
621
|
-
{
|
|
622
|
-
"kind": "js",
|
|
623
|
-
"name": "default",
|
|
624
|
-
"declaration": {
|
|
625
|
-
"name": "AccordionGroup",
|
|
626
|
-
"module": "components/accordiongroup/accordiongroup.component.js"
|
|
627
|
-
}
|
|
628
|
-
}
|
|
629
|
-
]
|
|
630
|
-
},
|
|
631
480
|
{
|
|
632
481
|
"kind": "javascript-module",
|
|
633
482
|
"path": "components/accordionbutton/accordionbutton.component.js",
|
|
@@ -968,6 +817,157 @@
|
|
|
968
817
|
}
|
|
969
818
|
]
|
|
970
819
|
},
|
|
820
|
+
{
|
|
821
|
+
"kind": "javascript-module",
|
|
822
|
+
"path": "components/accordiongroup/accordiongroup.component.js",
|
|
823
|
+
"declarations": [
|
|
824
|
+
{
|
|
825
|
+
"kind": "class",
|
|
826
|
+
"description": "An accordion group is a vertically stacked set of interactive headings that each contain a header and body content.\nEach heading of the accordion acts as a control that enable users to expand or hide their associated body sections of content.\nAccordions are commonly used to reduce the need to scroll when presenting multiple sections of content on a single page.\n\n- Default Slot: The accordion group component only accepts, `accordion` and `accordionbutton` components as the children, rest are ignored.\n\nThere are three types of variants:\n- Stacked - Each accordion will have a gap of 1.5rem (24px).\n- Borderless - Each accordion will not have any border and the group will also not have any border.\n- Contained - Each accordion will have no gap in between them and the border of the entire accordiongroup will be continuous.\n\nThere are two types of sizes:\n- Small: Small size has a padding of 1rem (16px) for both heading and body sections.\n- Large: Large size has a padding of 1.5rem (24px) for both heading and body sections.\n\nThe variant and size will be applied to all accordions inside this accordion group.\nTo show/expand more than one accordion at any given time, then set `allow-multiple` to `true`. By default, it's `false`.\n\nIf you don't need any controls on your accordion heading, then it's advised to use `accordionbutton` component.\n\nIf the first accordion of the accordion group is expanded by default, then the screen reader might loose focus when toggling the visibilty of the first accordion.",
|
|
827
|
+
"name": "AccordionGroup",
|
|
828
|
+
"cssProperties": [
|
|
829
|
+
{
|
|
830
|
+
"description": "The border color of the entire accordiongroup",
|
|
831
|
+
"name": "--mdc-accordiongroup-border-color"
|
|
832
|
+
}
|
|
833
|
+
],
|
|
834
|
+
"slots": [
|
|
835
|
+
{
|
|
836
|
+
"description": "The default slot can contain the `accordion` or `accordionbutton` components.",
|
|
837
|
+
"name": "default"
|
|
838
|
+
}
|
|
839
|
+
],
|
|
840
|
+
"members": [
|
|
841
|
+
{
|
|
842
|
+
"kind": "field",
|
|
843
|
+
"name": "size",
|
|
844
|
+
"type": {
|
|
845
|
+
"text": "Size"
|
|
846
|
+
},
|
|
847
|
+
"description": "The size of the accordion item.",
|
|
848
|
+
"default": "'small'",
|
|
849
|
+
"attribute": "size",
|
|
850
|
+
"reflects": true
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"kind": "field",
|
|
854
|
+
"name": "variant",
|
|
855
|
+
"type": {
|
|
856
|
+
"text": "Variant"
|
|
857
|
+
},
|
|
858
|
+
"description": "The variant of the accordion item. Based on the variant, the styling of the accordion gets changed.",
|
|
859
|
+
"default": "'stacked'",
|
|
860
|
+
"attribute": "variant",
|
|
861
|
+
"reflects": true
|
|
862
|
+
},
|
|
863
|
+
{
|
|
864
|
+
"kind": "field",
|
|
865
|
+
"name": "allowMultiple",
|
|
866
|
+
"type": {
|
|
867
|
+
"text": "boolean"
|
|
868
|
+
},
|
|
869
|
+
"default": "false",
|
|
870
|
+
"description": "If true, multiple accordion items can be visible at the same time.",
|
|
871
|
+
"attribute": "allow-multiple",
|
|
872
|
+
"reflects": true
|
|
873
|
+
},
|
|
874
|
+
{
|
|
875
|
+
"kind": "method",
|
|
876
|
+
"name": "handleAccordionExpanded",
|
|
877
|
+
"privacy": "private",
|
|
878
|
+
"return": {
|
|
879
|
+
"type": {
|
|
880
|
+
"text": "void"
|
|
881
|
+
}
|
|
882
|
+
},
|
|
883
|
+
"parameters": [
|
|
884
|
+
{
|
|
885
|
+
"name": "event",
|
|
886
|
+
"type": {
|
|
887
|
+
"text": "Event"
|
|
888
|
+
},
|
|
889
|
+
"description": "The event object from the 'shown' event."
|
|
890
|
+
}
|
|
891
|
+
],
|
|
892
|
+
"description": "Handles the 'shown' event for accordion items.\nIf `allowMultiple` is false, ensures that only one accordion item\nremains expanded by collapsing all other expanded items when a new item is expanded."
|
|
893
|
+
},
|
|
894
|
+
{
|
|
895
|
+
"kind": "method",
|
|
896
|
+
"name": "setChildrenAccordionAttributes",
|
|
897
|
+
"privacy": "private",
|
|
898
|
+
"return": {
|
|
899
|
+
"type": {
|
|
900
|
+
"text": "void"
|
|
901
|
+
}
|
|
902
|
+
},
|
|
903
|
+
"parameters": [
|
|
904
|
+
{
|
|
905
|
+
"name": "attributeName",
|
|
906
|
+
"type": {
|
|
907
|
+
"text": "string"
|
|
908
|
+
},
|
|
909
|
+
"description": "The name of the attribute to set."
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
"name": "attributeValue",
|
|
913
|
+
"type": {
|
|
914
|
+
"text": "string"
|
|
915
|
+
},
|
|
916
|
+
"description": "The value to set the attribute to."
|
|
917
|
+
}
|
|
918
|
+
],
|
|
919
|
+
"description": "Sets the given attribute on all child accordion or accordionbutton components."
|
|
920
|
+
}
|
|
921
|
+
],
|
|
922
|
+
"attributes": [
|
|
923
|
+
{
|
|
924
|
+
"name": "size",
|
|
925
|
+
"type": {
|
|
926
|
+
"text": "Size"
|
|
927
|
+
},
|
|
928
|
+
"description": "The size of the accordion item.",
|
|
929
|
+
"default": "'small'",
|
|
930
|
+
"fieldName": "size"
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
"name": "variant",
|
|
934
|
+
"type": {
|
|
935
|
+
"text": "Variant"
|
|
936
|
+
},
|
|
937
|
+
"description": "The variant of the accordion item. Based on the variant, the styling of the accordion gets changed.",
|
|
938
|
+
"default": "'stacked'",
|
|
939
|
+
"fieldName": "variant"
|
|
940
|
+
},
|
|
941
|
+
{
|
|
942
|
+
"name": "allow-multiple",
|
|
943
|
+
"type": {
|
|
944
|
+
"text": "boolean"
|
|
945
|
+
},
|
|
946
|
+
"default": "false",
|
|
947
|
+
"description": "If true, multiple accordion items can be visible at the same time.",
|
|
948
|
+
"fieldName": "allowMultiple"
|
|
949
|
+
}
|
|
950
|
+
],
|
|
951
|
+
"superclass": {
|
|
952
|
+
"name": "Component",
|
|
953
|
+
"module": "/src/models"
|
|
954
|
+
},
|
|
955
|
+
"tagName": "mdc-accordiongroup",
|
|
956
|
+
"jsDoc": "/**\n * An accordion group is a vertically stacked set of interactive headings that each contain a header and body content.\n * Each heading of the accordion acts as a control that enable users to expand or hide their associated body sections of content.\n * Accordions are commonly used to reduce the need to scroll when presenting multiple sections of content on a single page.\n *\n * - Default Slot: The accordion group component only accepts, `accordion` and `accordionbutton` components as the children, rest are ignored.\n *\n * There are three types of variants:\n * - Stacked - Each accordion will have a gap of 1.5rem (24px).\n * - Borderless - Each accordion will not have any border and the group will also not have any border.\n * - Contained - Each accordion will have no gap in between them and the border of the entire accordiongroup will be continuous.\n *\n * There are two types of sizes:\n * - Small: Small size has a padding of 1rem (16px) for both heading and body sections.\n * - Large: Large size has a padding of 1.5rem (24px) for both heading and body sections.\n *\n * The variant and size will be applied to all accordions inside this accordion group.\n * To show/expand more than one accordion at any given time, then set `allow-multiple` to `true`. By default, it's `false`.\n *\n * If you don't need any controls on your accordion heading, then it's advised to use `accordionbutton` component.\n *\n * If the first accordion of the accordion group is expanded by default, then the screen reader might loose focus when toggling the visibilty of the first accordion.\n *\n * @tagname mdc-accordiongroup\n *\n * @slot default - The default slot can contain the `accordion` or `accordionbutton` components.\n *\n * @cssproperty --mdc-accordiongroup-border-color - The border color of the entire accordiongroup\n */",
|
|
957
|
+
"customElement": true
|
|
958
|
+
}
|
|
959
|
+
],
|
|
960
|
+
"exports": [
|
|
961
|
+
{
|
|
962
|
+
"kind": "js",
|
|
963
|
+
"name": "default",
|
|
964
|
+
"declaration": {
|
|
965
|
+
"name": "AccordionGroup",
|
|
966
|
+
"module": "components/accordiongroup/accordiongroup.component.js"
|
|
967
|
+
}
|
|
968
|
+
}
|
|
969
|
+
]
|
|
970
|
+
},
|
|
971
971
|
{
|
|
972
972
|
"kind": "javascript-module",
|
|
973
973
|
"path": "components/alertchip/alertchip.component.js",
|
|
@@ -19309,6 +19309,17 @@
|
|
|
19309
19309
|
"description": "Aria label for the trailing button. If trailing button is set to true, this label is used for the clear button.",
|
|
19310
19310
|
"attribute": "clear-aria-label"
|
|
19311
19311
|
},
|
|
19312
|
+
{
|
|
19313
|
+
"kind": "field",
|
|
19314
|
+
"name": "dataAriaDescribedby",
|
|
19315
|
+
"type": {
|
|
19316
|
+
"text": "string | null"
|
|
19317
|
+
},
|
|
19318
|
+
"default": "null",
|
|
19319
|
+
"description": "Defines a id pointing to the element which describes the input element.\nThe AriaDescribedby attribute to be set for accessibility.",
|
|
19320
|
+
"attribute": "data-aria-describedby",
|
|
19321
|
+
"reflects": true
|
|
19322
|
+
},
|
|
19312
19323
|
{
|
|
19313
19324
|
"kind": "method",
|
|
19314
19325
|
"name": "setInputValidity",
|
|
@@ -19933,6 +19944,15 @@
|
|
|
19933
19944
|
"description": "Aria label for the trailing button. If trailing button is set to true, this label is used for the clear button.",
|
|
19934
19945
|
"fieldName": "clearAriaLabel"
|
|
19935
19946
|
},
|
|
19947
|
+
{
|
|
19948
|
+
"name": "data-aria-describedby",
|
|
19949
|
+
"type": {
|
|
19950
|
+
"text": "string | null"
|
|
19951
|
+
},
|
|
19952
|
+
"default": "null",
|
|
19953
|
+
"description": "Defines a id pointing to the element which describes the input element.\nThe AriaDescribedby attribute to be set for accessibility.",
|
|
19954
|
+
"fieldName": "dataAriaDescribedby"
|
|
19955
|
+
},
|
|
19936
19956
|
{
|
|
19937
19957
|
"name": "auto-focus-on-mount",
|
|
19938
19958
|
"type": {
|
|
@@ -31915,6 +31935,21 @@
|
|
|
31915
31935
|
"module": "components/input/input.component.js"
|
|
31916
31936
|
}
|
|
31917
31937
|
},
|
|
31938
|
+
{
|
|
31939
|
+
"kind": "field",
|
|
31940
|
+
"name": "dataAriaDescribedby",
|
|
31941
|
+
"type": {
|
|
31942
|
+
"text": "string | null"
|
|
31943
|
+
},
|
|
31944
|
+
"default": "null",
|
|
31945
|
+
"description": "Defines a id pointing to the element which describes the input element.\nThe AriaDescribedby attribute to be set for accessibility.",
|
|
31946
|
+
"attribute": "data-aria-describedby",
|
|
31947
|
+
"reflects": true,
|
|
31948
|
+
"inheritedFrom": {
|
|
31949
|
+
"name": "Input",
|
|
31950
|
+
"module": "components/input/input.component.js"
|
|
31951
|
+
}
|
|
31952
|
+
},
|
|
31918
31953
|
{
|
|
31919
31954
|
"kind": "method",
|
|
31920
31955
|
"name": "setInputValidity",
|
|
@@ -32554,6 +32589,19 @@
|
|
|
32554
32589
|
"module": "src/components/input/input.component.ts"
|
|
32555
32590
|
}
|
|
32556
32591
|
},
|
|
32592
|
+
{
|
|
32593
|
+
"name": "data-aria-describedby",
|
|
32594
|
+
"type": {
|
|
32595
|
+
"text": "string | null"
|
|
32596
|
+
},
|
|
32597
|
+
"default": "null",
|
|
32598
|
+
"description": "Defines a id pointing to the element which describes the input element.\nThe AriaDescribedby attribute to be set for accessibility.",
|
|
32599
|
+
"fieldName": "dataAriaDescribedby",
|
|
32600
|
+
"inheritedFrom": {
|
|
32601
|
+
"name": "Input",
|
|
32602
|
+
"module": "src/components/input/input.component.ts"
|
|
32603
|
+
}
|
|
32604
|
+
},
|
|
32557
32605
|
{
|
|
32558
32606
|
"name": "disabled",
|
|
32559
32607
|
"type": {
|
|
@@ -37612,211 +37660,6 @@
|
|
|
37612
37660
|
}
|
|
37613
37661
|
]
|
|
37614
37662
|
},
|
|
37615
|
-
{
|
|
37616
|
-
"kind": "javascript-module",
|
|
37617
|
-
"path": "components/screenreaderannouncer/screenreaderannouncer.component.js",
|
|
37618
|
-
"declarations": [
|
|
37619
|
-
{
|
|
37620
|
-
"kind": "class",
|
|
37621
|
-
"description": "`mdc-screenreaderannouncer` can be used to announce messages with the screen reader.\n\nTo make an announcement set `announcement` attribute on the `mdc-screenreaderannouncer` element.\n\n**Internal logic**\n\nWhen the screenreader announcer is connected to the DOM, if the `identity` attribute is not\nprovided, it is set to `mdc-screenreaderannouncer-identity` and a `<div>` element with this id is created\nin the DOM. If the `identity` attribute is provided, the identity element is used and no new element\nis created in the DOM.\n\nWhen the `announcement` attribute is set, the screenreader announcer will create a `<div>` element with\n`aria-live` attribute set to the value of `data-aria-live` attribute and append it to the `identity` element.\nAfter delay of `delay` milliseconds, a <p> element with the announcement text is appended to the `<div>` element.\n\nThe announcement `<div>` element is removed from the DOM after `timeout` milliseconds.\n\nWhen the screen announcer component is disconnected from the DOM, all the timeouts are cleared and\nall the announcement elements added are removed from the DOM and timeouts cleared.\n\n**Note**\n1. The default delay of 150 miliseconds is used as we dynamically generate the\naria-live region in the DOM and add the announcement text to it.\n3. If no `identity` is provided, all the screen reader components will create and use only one\n`<div>` element with id `mdc-screenreaderannouncer-identity` in the DOM.\n\nReference: https://patrickhlauke.github.io/aria/tests/live-regions/",
|
|
37622
|
-
"name": "ScreenreaderAnnouncer",
|
|
37623
|
-
"members": [
|
|
37624
|
-
{
|
|
37625
|
-
"kind": "field",
|
|
37626
|
-
"name": "announcement",
|
|
37627
|
-
"type": {
|
|
37628
|
-
"text": "string"
|
|
37629
|
-
},
|
|
37630
|
-
"default": "''",
|
|
37631
|
-
"description": "The announcement attribute is a string that is used to announce messages to the screen reader.\nThe announcement is made when the announcement attribute is set to a non-empty string.",
|
|
37632
|
-
"attribute": "announcement",
|
|
37633
|
-
"reflects": true
|
|
37634
|
-
},
|
|
37635
|
-
{
|
|
37636
|
-
"kind": "field",
|
|
37637
|
-
"name": "identity",
|
|
37638
|
-
"type": {
|
|
37639
|
-
"text": "string"
|
|
37640
|
-
},
|
|
37641
|
-
"default": "''",
|
|
37642
|
-
"description": "The id of the element in the light dom, to which announcement elements will be appended.\n\nIf id is not provided, it will be set to `mdc-screenreaderannouncer-identity` and\na div element with this id will be created in the light dom.",
|
|
37643
|
-
"attribute": "identity",
|
|
37644
|
-
"reflects": true
|
|
37645
|
-
},
|
|
37646
|
-
{
|
|
37647
|
-
"kind": "field",
|
|
37648
|
-
"name": "dataAriaLive",
|
|
37649
|
-
"type": {
|
|
37650
|
-
"text": "AriaLive"
|
|
37651
|
-
},
|
|
37652
|
-
"description": "Aria live value for announcement.",
|
|
37653
|
-
"default": "'polite'",
|
|
37654
|
-
"attribute": "data-aria-live",
|
|
37655
|
-
"reflects": true
|
|
37656
|
-
},
|
|
37657
|
-
{
|
|
37658
|
-
"kind": "field",
|
|
37659
|
-
"name": "delay",
|
|
37660
|
-
"type": {
|
|
37661
|
-
"text": "number"
|
|
37662
|
-
},
|
|
37663
|
-
"description": "Milliseconds to wait before adding the announcement to the identiy region in\nDOM, which will announce the message to the screen reader.",
|
|
37664
|
-
"default": "150",
|
|
37665
|
-
"attribute": "delay",
|
|
37666
|
-
"reflects": true
|
|
37667
|
-
},
|
|
37668
|
-
{
|
|
37669
|
-
"kind": "field",
|
|
37670
|
-
"name": "timeout",
|
|
37671
|
-
"type": {
|
|
37672
|
-
"text": "number"
|
|
37673
|
-
},
|
|
37674
|
-
"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.",
|
|
37675
|
-
"default": "20_000",
|
|
37676
|
-
"attribute": "timeout",
|
|
37677
|
-
"reflects": true
|
|
37678
|
-
},
|
|
37679
|
-
{
|
|
37680
|
-
"kind": "field",
|
|
37681
|
-
"name": "debounceTime",
|
|
37682
|
-
"type": {
|
|
37683
|
-
"text": "number"
|
|
37684
|
-
},
|
|
37685
|
-
"description": "The debounce time delay in milliseconds for announcements.",
|
|
37686
|
-
"default": "500",
|
|
37687
|
-
"attribute": "debounce-time",
|
|
37688
|
-
"reflects": true
|
|
37689
|
-
},
|
|
37690
|
-
{
|
|
37691
|
-
"kind": "method",
|
|
37692
|
-
"name": "announce",
|
|
37693
|
-
"parameters": [
|
|
37694
|
-
{
|
|
37695
|
-
"name": "announcement",
|
|
37696
|
-
"type": {
|
|
37697
|
-
"text": "string"
|
|
37698
|
-
},
|
|
37699
|
-
"description": "The announcement to be made."
|
|
37700
|
-
},
|
|
37701
|
-
{
|
|
37702
|
-
"name": "delay",
|
|
37703
|
-
"type": {
|
|
37704
|
-
"text": "number"
|
|
37705
|
-
},
|
|
37706
|
-
"description": "The delay in milliseconds before announcing the message."
|
|
37707
|
-
},
|
|
37708
|
-
{
|
|
37709
|
-
"name": "timeout",
|
|
37710
|
-
"type": {
|
|
37711
|
-
"text": "number"
|
|
37712
|
-
},
|
|
37713
|
-
"description": "The timeout in milliseconds before removing the announcement."
|
|
37714
|
-
},
|
|
37715
|
-
{
|
|
37716
|
-
"name": "ariaLive",
|
|
37717
|
-
"type": {
|
|
37718
|
-
"text": "AriaLive"
|
|
37719
|
-
},
|
|
37720
|
-
"description": "The aria live value for the announcement."
|
|
37721
|
-
}
|
|
37722
|
-
],
|
|
37723
|
-
"description": "Announces the given announcement to the screen reader.\n\nA div element with aria-live attribute set to the given ariaLive value is created\nand a p element with the announcement text is appended to it.\n\nThe div element is appended to the element in the DOM identified with id as\nidentity attribute."
|
|
37724
|
-
},
|
|
37725
|
-
{
|
|
37726
|
-
"kind": "method",
|
|
37727
|
-
"name": "clearTimeOutsAndAnnouncements",
|
|
37728
|
-
"privacy": "private",
|
|
37729
|
-
"description": "Clears all timeouts and removes all announcements from the screen reader."
|
|
37730
|
-
},
|
|
37731
|
-
{
|
|
37732
|
-
"kind": "method",
|
|
37733
|
-
"name": "createAnnouncementAriaLiveRegion",
|
|
37734
|
-
"privacy": "private",
|
|
37735
|
-
"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`."
|
|
37736
|
-
},
|
|
37737
|
-
{
|
|
37738
|
-
"kind": "method",
|
|
37739
|
-
"name": "setupDebouncedAnnounce",
|
|
37740
|
-
"privacy": "private",
|
|
37741
|
-
"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."
|
|
37742
|
-
}
|
|
37743
|
-
],
|
|
37744
|
-
"attributes": [
|
|
37745
|
-
{
|
|
37746
|
-
"name": "announcement",
|
|
37747
|
-
"type": {
|
|
37748
|
-
"text": "string"
|
|
37749
|
-
},
|
|
37750
|
-
"default": "''",
|
|
37751
|
-
"description": "The announcement attribute is a string that is used to announce messages to the screen reader.\nThe announcement is made when the announcement attribute is set to a non-empty string.",
|
|
37752
|
-
"fieldName": "announcement"
|
|
37753
|
-
},
|
|
37754
|
-
{
|
|
37755
|
-
"name": "identity",
|
|
37756
|
-
"type": {
|
|
37757
|
-
"text": "string"
|
|
37758
|
-
},
|
|
37759
|
-
"default": "''",
|
|
37760
|
-
"description": "The id of the element in the light dom, to which announcement elements will be appended.\n\nIf id is not provided, it will be set to `mdc-screenreaderannouncer-identity` and\na div element with this id will be created in the light dom.",
|
|
37761
|
-
"fieldName": "identity"
|
|
37762
|
-
},
|
|
37763
|
-
{
|
|
37764
|
-
"name": "data-aria-live",
|
|
37765
|
-
"type": {
|
|
37766
|
-
"text": "AriaLive"
|
|
37767
|
-
},
|
|
37768
|
-
"description": "Aria live value for announcement.",
|
|
37769
|
-
"default": "'polite'",
|
|
37770
|
-
"fieldName": "dataAriaLive"
|
|
37771
|
-
},
|
|
37772
|
-
{
|
|
37773
|
-
"name": "delay",
|
|
37774
|
-
"type": {
|
|
37775
|
-
"text": "number"
|
|
37776
|
-
},
|
|
37777
|
-
"description": "Milliseconds to wait before adding the announcement to the identiy region in\nDOM, which will announce the message to the screen reader.",
|
|
37778
|
-
"default": "150",
|
|
37779
|
-
"fieldName": "delay"
|
|
37780
|
-
},
|
|
37781
|
-
{
|
|
37782
|
-
"name": "timeout",
|
|
37783
|
-
"type": {
|
|
37784
|
-
"text": "number"
|
|
37785
|
-
},
|
|
37786
|
-
"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.",
|
|
37787
|
-
"default": "20_000",
|
|
37788
|
-
"fieldName": "timeout"
|
|
37789
|
-
},
|
|
37790
|
-
{
|
|
37791
|
-
"name": "debounce-time",
|
|
37792
|
-
"type": {
|
|
37793
|
-
"text": "number"
|
|
37794
|
-
},
|
|
37795
|
-
"description": "The debounce time delay in milliseconds for announcements.",
|
|
37796
|
-
"default": "500",
|
|
37797
|
-
"fieldName": "debounceTime"
|
|
37798
|
-
}
|
|
37799
|
-
],
|
|
37800
|
-
"superclass": {
|
|
37801
|
-
"name": "Component",
|
|
37802
|
-
"module": "/src/models"
|
|
37803
|
-
},
|
|
37804
|
-
"tagName": "mdc-screenreaderannouncer",
|
|
37805
|
-
"jsDoc": "/**\n * `mdc-screenreaderannouncer` can be used to announce messages with the screen reader.\n *\n * To make an announcement set `announcement` attribute on the `mdc-screenreaderannouncer` element.\n *\n * **Internal logic**\n *\n * When the screenreader announcer is connected to the DOM, if the `identity` attribute is not\n * provided, it is set to `mdc-screenreaderannouncer-identity` and a `<div>` element with this id is created\n * in the DOM. If the `identity` attribute is provided, the identity element is used and no new element\n * is created in the DOM.\n *\n * When the `announcement` attribute is set, the screenreader announcer will create a `<div>` element with\n * `aria-live` attribute set to the value of `data-aria-live` attribute and append it to the `identity` element.\n * After delay of `delay` milliseconds, a <p> element with the announcement text is appended to the `<div>` element.\n *\n * The announcement `<div>` element is removed from the DOM after `timeout` milliseconds.\n *\n * When the screen announcer component is disconnected from the DOM, all the timeouts are cleared and\n * all the announcement elements added are removed from the DOM and timeouts cleared.\n *\n * **Note**\n * 1. The default delay of 150 miliseconds is used as we dynamically generate the\n * aria-live region in the DOM and add the announcement text to it.\n * 3. If no `identity` is provided, all the screen reader components will create and use only one\n * `<div>` element with id `mdc-screenreaderannouncer-identity` in the DOM.\n *\n * Reference: https://patrickhlauke.github.io/aria/tests/live-regions/\n *\n * @tagname mdc-screenreaderannouncer\n */",
|
|
37806
|
-
"customElement": true
|
|
37807
|
-
}
|
|
37808
|
-
],
|
|
37809
|
-
"exports": [
|
|
37810
|
-
{
|
|
37811
|
-
"kind": "js",
|
|
37812
|
-
"name": "default",
|
|
37813
|
-
"declaration": {
|
|
37814
|
-
"name": "ScreenreaderAnnouncer",
|
|
37815
|
-
"module": "components/screenreaderannouncer/screenreaderannouncer.component.js"
|
|
37816
|
-
}
|
|
37817
|
-
}
|
|
37818
|
-
]
|
|
37819
|
-
},
|
|
37820
37663
|
{
|
|
37821
37664
|
"kind": "javascript-module",
|
|
37822
37665
|
"path": "components/searchfield/searchfield.component.js",
|
|
@@ -38479,6 +38322,21 @@
|
|
|
38479
38322
|
"module": "components/input/input.component.js"
|
|
38480
38323
|
}
|
|
38481
38324
|
},
|
|
38325
|
+
{
|
|
38326
|
+
"kind": "field",
|
|
38327
|
+
"name": "dataAriaDescribedby",
|
|
38328
|
+
"type": {
|
|
38329
|
+
"text": "string | null"
|
|
38330
|
+
},
|
|
38331
|
+
"default": "null",
|
|
38332
|
+
"description": "Defines a id pointing to the element which describes the input element.\nThe AriaDescribedby attribute to be set for accessibility.",
|
|
38333
|
+
"attribute": "data-aria-describedby",
|
|
38334
|
+
"reflects": true,
|
|
38335
|
+
"inheritedFrom": {
|
|
38336
|
+
"name": "Input",
|
|
38337
|
+
"module": "components/input/input.component.js"
|
|
38338
|
+
}
|
|
38339
|
+
},
|
|
38482
38340
|
{
|
|
38483
38341
|
"kind": "method",
|
|
38484
38342
|
"name": "setInputValidity",
|
|
@@ -39131,6 +38989,19 @@
|
|
|
39131
38989
|
"module": "src/components/input/input.component.ts"
|
|
39132
38990
|
}
|
|
39133
38991
|
},
|
|
38992
|
+
{
|
|
38993
|
+
"name": "data-aria-describedby",
|
|
38994
|
+
"type": {
|
|
38995
|
+
"text": "string | null"
|
|
38996
|
+
},
|
|
38997
|
+
"default": "null",
|
|
38998
|
+
"description": "Defines a id pointing to the element which describes the input element.\nThe AriaDescribedby attribute to be set for accessibility.",
|
|
38999
|
+
"fieldName": "dataAriaDescribedby",
|
|
39000
|
+
"inheritedFrom": {
|
|
39001
|
+
"name": "Input",
|
|
39002
|
+
"module": "src/components/input/input.component.ts"
|
|
39003
|
+
}
|
|
39004
|
+
},
|
|
39134
39005
|
{
|
|
39135
39006
|
"name": "disabled",
|
|
39136
39007
|
"type": {
|
|
@@ -40552,213 +40423,195 @@
|
|
|
40552
40423
|
},
|
|
40553
40424
|
{
|
|
40554
40425
|
"kind": "javascript-module",
|
|
40555
|
-
"path": "components/
|
|
40426
|
+
"path": "components/screenreaderannouncer/screenreaderannouncer.component.js",
|
|
40556
40427
|
"declarations": [
|
|
40557
40428
|
{
|
|
40558
40429
|
"kind": "class",
|
|
40559
|
-
"description": "
|
|
40560
|
-
"name": "
|
|
40561
|
-
"cssProperties": [
|
|
40562
|
-
{
|
|
40563
|
-
"description": "width of the sideNavigation when expanded",
|
|
40564
|
-
"name": "--mdc-sidenavigation-expanded-width"
|
|
40565
|
-
},
|
|
40566
|
-
{
|
|
40567
|
-
"description": "width of the sideNavigation when collapsed",
|
|
40568
|
-
"name": "--mdc-sidenavigation-collapsed-width"
|
|
40569
|
-
},
|
|
40570
|
-
{
|
|
40571
|
-
"description": "z-index of the vertical divider button",
|
|
40572
|
-
"name": "--mdc-sidenavigation-vertical-divider-button-z-index"
|
|
40573
|
-
}
|
|
40574
|
-
],
|
|
40575
|
-
"cssParts": [
|
|
40576
|
-
{
|
|
40577
|
-
"description": "The main container wrapping the entire side navigation.",
|
|
40578
|
-
"name": "side-navigation-container"
|
|
40579
|
-
},
|
|
40580
|
-
{
|
|
40581
|
-
"description": "The scrollable section of the side navigation.",
|
|
40582
|
-
"name": "scrollable-section"
|
|
40583
|
-
},
|
|
40584
|
-
{
|
|
40585
|
-
"description": "The fixed section of the side navigation.",
|
|
40586
|
-
"name": "fixed-section"
|
|
40587
|
-
},
|
|
40588
|
-
{
|
|
40589
|
-
"description": "The divider between the scrollable and fixed sections.",
|
|
40590
|
-
"name": "separator"
|
|
40591
|
-
},
|
|
40592
|
-
{
|
|
40593
|
-
"description": "The container wrapping the brand logo and footer text.",
|
|
40594
|
-
"name": "brand-logo-container"
|
|
40595
|
-
},
|
|
40596
|
-
{
|
|
40597
|
-
"description": "The footer text label in the fixed section.",
|
|
40598
|
-
"name": "footer-text"
|
|
40599
|
-
},
|
|
40600
|
-
{
|
|
40601
|
-
"description": "The vertical divider between the scrollable and fixed sections.",
|
|
40602
|
-
"name": "vertical-divider"
|
|
40603
|
-
},
|
|
40604
|
-
{
|
|
40605
|
-
"description": "The button inside the vertical divider used to toggle expand/collapse.",
|
|
40606
|
-
"name": "vertical-divider-button"
|
|
40607
|
-
}
|
|
40608
|
-
],
|
|
40609
|
-
"slots": [
|
|
40610
|
-
{
|
|
40611
|
-
"description": "Slot for the scrollable content area of the side navigation.",
|
|
40612
|
-
"name": "scrollable-section"
|
|
40613
|
-
},
|
|
40614
|
-
{
|
|
40615
|
-
"description": "Slot for the fixed content area of the side navigation.",
|
|
40616
|
-
"name": "fixed-section"
|
|
40617
|
-
},
|
|
40618
|
-
{
|
|
40619
|
-
"description": "Slot for the brand logo (e.g., icon or img).",
|
|
40620
|
-
"name": "brand-logo"
|
|
40621
|
-
}
|
|
40622
|
-
],
|
|
40430
|
+
"description": "`mdc-screenreaderannouncer` can be used to announce messages with the screen reader.\n\nTo make an announcement set `announcement` attribute on the `mdc-screenreaderannouncer` element.\n\n**Internal logic**\n\nWhen the screenreader announcer is connected to the DOM, if the `identity` attribute is not\nprovided, it is set to `mdc-screenreaderannouncer-identity` and a `<div>` element with this id is created\nin the DOM. If the `identity` attribute is provided, the identity element is used and no new element\nis created in the DOM.\n\nWhen the `announcement` attribute is set, the screenreader announcer will create a `<div>` element with\n`aria-live` attribute set to the value of `data-aria-live` attribute and append it to the `identity` element.\nAfter delay of `delay` milliseconds, a <p> element with the announcement text is appended to the `<div>` element.\n\nThe announcement `<div>` element is removed from the DOM after `timeout` milliseconds.\n\nWhen the screen announcer component is disconnected from the DOM, all the timeouts are cleared and\nall the announcement elements added are removed from the DOM and timeouts cleared.\n\n**Note**\n1. The default delay of 150 miliseconds is used as we dynamically generate the\naria-live region in the DOM and add the announcement text to it.\n3. If no `identity` is provided, all the screen reader components will create and use only one\n`<div>` element with id `mdc-screenreaderannouncer-identity` in the DOM.\n\nReference: https://patrickhlauke.github.io/aria/tests/live-regions/",
|
|
40431
|
+
"name": "ScreenreaderAnnouncer",
|
|
40623
40432
|
"members": [
|
|
40624
40433
|
{
|
|
40625
40434
|
"kind": "field",
|
|
40626
|
-
"name": "
|
|
40435
|
+
"name": "announcement",
|
|
40627
40436
|
"type": {
|
|
40628
|
-
"text": "
|
|
40437
|
+
"text": "string"
|
|
40629
40438
|
},
|
|
40630
|
-
"
|
|
40631
|
-
"
|
|
40632
|
-
"attribute": "
|
|
40439
|
+
"default": "''",
|
|
40440
|
+
"description": "The announcement attribute is a string that is used to announce messages to the screen reader.\nThe announcement is made when the announcement attribute is set to a non-empty string.",
|
|
40441
|
+
"attribute": "announcement",
|
|
40633
40442
|
"reflects": true
|
|
40634
40443
|
},
|
|
40635
40444
|
{
|
|
40636
40445
|
"kind": "field",
|
|
40637
|
-
"name": "
|
|
40446
|
+
"name": "identity",
|
|
40638
40447
|
"type": {
|
|
40639
40448
|
"text": "string"
|
|
40640
40449
|
},
|
|
40641
40450
|
"default": "''",
|
|
40642
|
-
"description": "
|
|
40643
|
-
"attribute": "
|
|
40451
|
+
"description": "The id of the element in the light dom, to which announcement elements will be appended.\n\nIf id is not provided, it will be set to `mdc-screenreaderannouncer-identity` and\na div element with this id will be created in the light dom.",
|
|
40452
|
+
"attribute": "identity",
|
|
40644
40453
|
"reflects": true
|
|
40645
40454
|
},
|
|
40646
40455
|
{
|
|
40647
40456
|
"kind": "field",
|
|
40648
|
-
"name": "
|
|
40457
|
+
"name": "dataAriaLive",
|
|
40649
40458
|
"type": {
|
|
40650
|
-
"text": "
|
|
40459
|
+
"text": "AriaLive"
|
|
40651
40460
|
},
|
|
40652
|
-
"description": "
|
|
40653
|
-
"default": "''",
|
|
40654
|
-
"attribute": "
|
|
40461
|
+
"description": "Aria live value for announcement.",
|
|
40462
|
+
"default": "'polite'",
|
|
40463
|
+
"attribute": "data-aria-live",
|
|
40655
40464
|
"reflects": true
|
|
40656
40465
|
},
|
|
40657
40466
|
{
|
|
40658
40467
|
"kind": "field",
|
|
40659
|
-
"name": "
|
|
40468
|
+
"name": "delay",
|
|
40660
40469
|
"type": {
|
|
40661
|
-
"text": "
|
|
40470
|
+
"text": "number"
|
|
40662
40471
|
},
|
|
40663
|
-
"description": "
|
|
40664
|
-
"
|
|
40472
|
+
"description": "Milliseconds to wait before adding the announcement to the identiy region in\nDOM, which will announce the message to the screen reader.",
|
|
40473
|
+
"default": "150",
|
|
40474
|
+
"attribute": "delay",
|
|
40665
40475
|
"reflects": true
|
|
40666
40476
|
},
|
|
40667
40477
|
{
|
|
40668
40478
|
"kind": "field",
|
|
40669
|
-
"name": "
|
|
40670
|
-
"
|
|
40671
|
-
|
|
40672
|
-
|
|
40479
|
+
"name": "timeout",
|
|
40480
|
+
"type": {
|
|
40481
|
+
"text": "number"
|
|
40482
|
+
},
|
|
40483
|
+
"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.",
|
|
40484
|
+
"default": "20_000",
|
|
40485
|
+
"attribute": "timeout",
|
|
40486
|
+
"reflects": true
|
|
40673
40487
|
},
|
|
40674
40488
|
{
|
|
40675
|
-
"kind": "
|
|
40676
|
-
"name": "
|
|
40677
|
-
"
|
|
40678
|
-
|
|
40679
|
-
"type": {
|
|
40680
|
-
"text": "void"
|
|
40681
|
-
}
|
|
40489
|
+
"kind": "field",
|
|
40490
|
+
"name": "debounceTime",
|
|
40491
|
+
"type": {
|
|
40492
|
+
"text": "number"
|
|
40682
40493
|
},
|
|
40683
|
-
"description": "
|
|
40494
|
+
"description": "The debounce time delay in milliseconds for announcements.",
|
|
40495
|
+
"default": "500",
|
|
40496
|
+
"attribute": "debounce-time",
|
|
40497
|
+
"reflects": true
|
|
40684
40498
|
},
|
|
40685
40499
|
{
|
|
40686
40500
|
"kind": "method",
|
|
40687
|
-
"name": "
|
|
40688
|
-
"privacy": "private",
|
|
40689
|
-
"return": {
|
|
40690
|
-
"type": {
|
|
40691
|
-
"text": "void"
|
|
40692
|
-
}
|
|
40693
|
-
},
|
|
40501
|
+
"name": "announce",
|
|
40694
40502
|
"parameters": [
|
|
40695
40503
|
{
|
|
40696
|
-
"name": "
|
|
40504
|
+
"name": "announcement",
|
|
40697
40505
|
"type": {
|
|
40698
|
-
"text": "
|
|
40699
|
-
}
|
|
40506
|
+
"text": "string"
|
|
40507
|
+
},
|
|
40508
|
+
"description": "The announcement to be made."
|
|
40509
|
+
},
|
|
40510
|
+
{
|
|
40511
|
+
"name": "delay",
|
|
40512
|
+
"type": {
|
|
40513
|
+
"text": "number"
|
|
40514
|
+
},
|
|
40515
|
+
"description": "The delay in milliseconds before announcing the message."
|
|
40516
|
+
},
|
|
40517
|
+
{
|
|
40518
|
+
"name": "timeout",
|
|
40519
|
+
"type": {
|
|
40520
|
+
"text": "number"
|
|
40521
|
+
},
|
|
40522
|
+
"description": "The timeout in milliseconds before removing the announcement."
|
|
40523
|
+
},
|
|
40524
|
+
{
|
|
40525
|
+
"name": "ariaLive",
|
|
40526
|
+
"type": {
|
|
40527
|
+
"text": "AriaLive"
|
|
40528
|
+
},
|
|
40529
|
+
"description": "The aria live value for the announcement."
|
|
40700
40530
|
}
|
|
40701
|
-
]
|
|
40702
|
-
|
|
40703
|
-
|
|
40704
|
-
"events": [
|
|
40531
|
+
],
|
|
40532
|
+
"description": "Announces the given announcement to the screen reader.\n\nA div element with aria-live attribute set to the given ariaLive value is created\nand a p element with the announcement text is appended to it.\n\nThe div element is appended to the element in the DOM identified with id as\nidentity attribute."
|
|
40533
|
+
},
|
|
40705
40534
|
{
|
|
40706
|
-
"
|
|
40707
|
-
"
|
|
40708
|
-
|
|
40709
|
-
|
|
40710
|
-
"description": "(React: onToggle) Dispatched when the grabber button is clicked to expand/collapse the sidenavigation.",
|
|
40711
|
-
"reactName": "onToggle"
|
|
40535
|
+
"kind": "method",
|
|
40536
|
+
"name": "clearTimeOutsAndAnnouncements",
|
|
40537
|
+
"privacy": "private",
|
|
40538
|
+
"description": "Clears all timeouts and removes all announcements from the screen reader."
|
|
40712
40539
|
},
|
|
40713
40540
|
{
|
|
40714
|
-
"
|
|
40715
|
-
"name": "
|
|
40716
|
-
"
|
|
40541
|
+
"kind": "method",
|
|
40542
|
+
"name": "createAnnouncementAriaLiveRegion",
|
|
40543
|
+
"privacy": "private",
|
|
40544
|
+
"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`."
|
|
40545
|
+
},
|
|
40546
|
+
{
|
|
40547
|
+
"kind": "method",
|
|
40548
|
+
"name": "setupDebouncedAnnounce",
|
|
40549
|
+
"privacy": "private",
|
|
40550
|
+
"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."
|
|
40717
40551
|
}
|
|
40718
40552
|
],
|
|
40719
40553
|
"attributes": [
|
|
40720
40554
|
{
|
|
40721
|
-
"name": "
|
|
40555
|
+
"name": "announcement",
|
|
40722
40556
|
"type": {
|
|
40723
|
-
"text": "
|
|
40557
|
+
"text": "string"
|
|
40724
40558
|
},
|
|
40725
|
-
"
|
|
40726
|
-
"
|
|
40727
|
-
"fieldName": "
|
|
40559
|
+
"default": "''",
|
|
40560
|
+
"description": "The announcement attribute is a string that is used to announce messages to the screen reader.\nThe announcement is made when the announcement attribute is set to a non-empty string.",
|
|
40561
|
+
"fieldName": "announcement"
|
|
40728
40562
|
},
|
|
40729
40563
|
{
|
|
40730
|
-
"name": "
|
|
40564
|
+
"name": "identity",
|
|
40731
40565
|
"type": {
|
|
40732
40566
|
"text": "string"
|
|
40733
40567
|
},
|
|
40734
40568
|
"default": "''",
|
|
40735
|
-
"description": "
|
|
40736
|
-
"fieldName": "
|
|
40569
|
+
"description": "The id of the element in the light dom, to which announcement elements will be appended.\n\nIf id is not provided, it will be set to `mdc-screenreaderannouncer-identity` and\na div element with this id will be created in the light dom.",
|
|
40570
|
+
"fieldName": "identity"
|
|
40737
40571
|
},
|
|
40738
40572
|
{
|
|
40739
|
-
"name": "
|
|
40573
|
+
"name": "data-aria-live",
|
|
40740
40574
|
"type": {
|
|
40741
|
-
"text": "
|
|
40575
|
+
"text": "AriaLive"
|
|
40742
40576
|
},
|
|
40743
|
-
"description": "
|
|
40744
|
-
"default": "''",
|
|
40745
|
-
"fieldName": "
|
|
40577
|
+
"description": "Aria live value for announcement.",
|
|
40578
|
+
"default": "'polite'",
|
|
40579
|
+
"fieldName": "dataAriaLive"
|
|
40746
40580
|
},
|
|
40747
40581
|
{
|
|
40748
|
-
"name": "
|
|
40582
|
+
"name": "delay",
|
|
40749
40583
|
"type": {
|
|
40750
|
-
"text": "
|
|
40584
|
+
"text": "number"
|
|
40751
40585
|
},
|
|
40752
|
-
"description": "
|
|
40753
|
-
"
|
|
40586
|
+
"description": "Milliseconds to wait before adding the announcement to the identiy region in\nDOM, which will announce the message to the screen reader.",
|
|
40587
|
+
"default": "150",
|
|
40588
|
+
"fieldName": "delay"
|
|
40589
|
+
},
|
|
40590
|
+
{
|
|
40591
|
+
"name": "timeout",
|
|
40592
|
+
"type": {
|
|
40593
|
+
"text": "number"
|
|
40594
|
+
},
|
|
40595
|
+
"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.",
|
|
40596
|
+
"default": "20_000",
|
|
40597
|
+
"fieldName": "timeout"
|
|
40598
|
+
},
|
|
40599
|
+
{
|
|
40600
|
+
"name": "debounce-time",
|
|
40601
|
+
"type": {
|
|
40602
|
+
"text": "number"
|
|
40603
|
+
},
|
|
40604
|
+
"description": "The debounce time delay in milliseconds for announcements.",
|
|
40605
|
+
"default": "500",
|
|
40606
|
+
"fieldName": "debounceTime"
|
|
40754
40607
|
}
|
|
40755
40608
|
],
|
|
40756
40609
|
"superclass": {
|
|
40757
|
-
"name": "
|
|
40610
|
+
"name": "Component",
|
|
40758
40611
|
"module": "/src/models"
|
|
40759
40612
|
},
|
|
40760
|
-
"tagName": "mdc-
|
|
40761
|
-
"jsDoc": "/**\n *
|
|
40613
|
+
"tagName": "mdc-screenreaderannouncer",
|
|
40614
|
+
"jsDoc": "/**\n * `mdc-screenreaderannouncer` can be used to announce messages with the screen reader.\n *\n * To make an announcement set `announcement` attribute on the `mdc-screenreaderannouncer` element.\n *\n * **Internal logic**\n *\n * When the screenreader announcer is connected to the DOM, if the `identity` attribute is not\n * provided, it is set to `mdc-screenreaderannouncer-identity` and a `<div>` element with this id is created\n * in the DOM. If the `identity` attribute is provided, the identity element is used and no new element\n * is created in the DOM.\n *\n * When the `announcement` attribute is set, the screenreader announcer will create a `<div>` element with\n * `aria-live` attribute set to the value of `data-aria-live` attribute and append it to the `identity` element.\n * After delay of `delay` milliseconds, a <p> element with the announcement text is appended to the `<div>` element.\n *\n * The announcement `<div>` element is removed from the DOM after `timeout` milliseconds.\n *\n * When the screen announcer component is disconnected from the DOM, all the timeouts are cleared and\n * all the announcement elements added are removed from the DOM and timeouts cleared.\n *\n * **Note**\n * 1. The default delay of 150 miliseconds is used as we dynamically generate the\n * aria-live region in the DOM and add the announcement text to it.\n * 3. If no `identity` is provided, all the screen reader components will create and use only one\n * `<div>` element with id `mdc-screenreaderannouncer-identity` in the DOM.\n *\n * Reference: https://patrickhlauke.github.io/aria/tests/live-regions/\n *\n * @tagname mdc-screenreaderannouncer\n */",
|
|
40762
40615
|
"customElement": true
|
|
40763
40616
|
}
|
|
40764
40617
|
],
|
|
@@ -40767,8 +40620,8 @@
|
|
|
40767
40620
|
"kind": "js",
|
|
40768
40621
|
"name": "default",
|
|
40769
40622
|
"declaration": {
|
|
40770
|
-
"name": "
|
|
40771
|
-
"module": "components/
|
|
40623
|
+
"name": "ScreenreaderAnnouncer",
|
|
40624
|
+
"module": "components/screenreaderannouncer/screenreaderannouncer.component.js"
|
|
40772
40625
|
}
|
|
40773
40626
|
}
|
|
40774
40627
|
]
|
|
@@ -41775,6 +41628,229 @@
|
|
|
41775
41628
|
}
|
|
41776
41629
|
]
|
|
41777
41630
|
},
|
|
41631
|
+
{
|
|
41632
|
+
"kind": "javascript-module",
|
|
41633
|
+
"path": "components/sidenavigation/sidenavigation.component.js",
|
|
41634
|
+
"declarations": [
|
|
41635
|
+
{
|
|
41636
|
+
"kind": "class",
|
|
41637
|
+
"description": "The `mdc-sidenavigation` component provides a vertically stacked navigation experience,\ntypically used in layouts with persistent or collapsible sidebars.\n\n## Features:\n- Supports four layout variants: `fixed-collapsed`, `fixed-expanded`, `flexible`, and `hidden`\n- Toggleable expand/collapse behavior\n- Displays brand logo and customer name\n- Serves as a context provider for descendant components - `mdc-menubar` and `mdc-navmenuitem`\n\n### Usage:\nIn a sidenavigation, navmenuitems can be used in the following ways:\n\n1. **Simple navmenuitem** – No submenu or interaction beyond selection.\n\n2. **NavMenuItem with submenu**:\n - Provide an `id` on the `mdc-navmenuitem`\n - Set the `triggerId` on the corresponding `mdc-menupopover` to match the navmenuitem's `id`\n - Set `parent-nav-tooltip-text` with appropriate text that will display when a child menu item\n inside the nested menupopover is active, conveying which submenu item is currently selected\n\n3. **Actionable navmenuitem (no submenu)**:\n - Performs an action such as navigation or alert trigger\n - Set `disable-aria-current=\"true\"` to maintain visual active state without navigation behavior\n\n### Recommendations:\n- Use `mdc-text` for section headers\n- Use `mdc-divider` with the attribute `variant=\"gradient\"` for section dividers\n- For the brand logo, use an informative icon. Refer to `Momentum Informative Icons`\n\n#### Accessibility Notes:\n- Always provide meaningful `aria-label` attributes for both `mdc-navmenuitem` and `mdc-menubar`\nto ensure screen reader support\n- Set `grabber-btn-aria-label` to provide accessible labels for the expand/collapse grabber button",
|
|
41638
|
+
"name": "SideNavigation",
|
|
41639
|
+
"cssProperties": [
|
|
41640
|
+
{
|
|
41641
|
+
"description": "width of the sideNavigation when expanded",
|
|
41642
|
+
"name": "--mdc-sidenavigation-expanded-width"
|
|
41643
|
+
},
|
|
41644
|
+
{
|
|
41645
|
+
"description": "width of the sideNavigation when collapsed",
|
|
41646
|
+
"name": "--mdc-sidenavigation-collapsed-width"
|
|
41647
|
+
},
|
|
41648
|
+
{
|
|
41649
|
+
"description": "z-index of the vertical divider button",
|
|
41650
|
+
"name": "--mdc-sidenavigation-vertical-divider-button-z-index"
|
|
41651
|
+
}
|
|
41652
|
+
],
|
|
41653
|
+
"cssParts": [
|
|
41654
|
+
{
|
|
41655
|
+
"description": "The main container wrapping the entire side navigation.",
|
|
41656
|
+
"name": "side-navigation-container"
|
|
41657
|
+
},
|
|
41658
|
+
{
|
|
41659
|
+
"description": "The scrollable section of the side navigation.",
|
|
41660
|
+
"name": "scrollable-section"
|
|
41661
|
+
},
|
|
41662
|
+
{
|
|
41663
|
+
"description": "The fixed section of the side navigation.",
|
|
41664
|
+
"name": "fixed-section"
|
|
41665
|
+
},
|
|
41666
|
+
{
|
|
41667
|
+
"description": "The divider between the scrollable and fixed sections.",
|
|
41668
|
+
"name": "separator"
|
|
41669
|
+
},
|
|
41670
|
+
{
|
|
41671
|
+
"description": "The container wrapping the brand logo and footer text.",
|
|
41672
|
+
"name": "brand-logo-container"
|
|
41673
|
+
},
|
|
41674
|
+
{
|
|
41675
|
+
"description": "The footer text label in the fixed section.",
|
|
41676
|
+
"name": "footer-text"
|
|
41677
|
+
},
|
|
41678
|
+
{
|
|
41679
|
+
"description": "The vertical divider between the scrollable and fixed sections.",
|
|
41680
|
+
"name": "vertical-divider"
|
|
41681
|
+
},
|
|
41682
|
+
{
|
|
41683
|
+
"description": "The button inside the vertical divider used to toggle expand/collapse.",
|
|
41684
|
+
"name": "vertical-divider-button"
|
|
41685
|
+
}
|
|
41686
|
+
],
|
|
41687
|
+
"slots": [
|
|
41688
|
+
{
|
|
41689
|
+
"description": "Slot for the scrollable content area of the side navigation.",
|
|
41690
|
+
"name": "scrollable-section"
|
|
41691
|
+
},
|
|
41692
|
+
{
|
|
41693
|
+
"description": "Slot for the fixed content area of the side navigation.",
|
|
41694
|
+
"name": "fixed-section"
|
|
41695
|
+
},
|
|
41696
|
+
{
|
|
41697
|
+
"description": "Slot for the brand logo (e.g., icon or img).",
|
|
41698
|
+
"name": "brand-logo"
|
|
41699
|
+
}
|
|
41700
|
+
],
|
|
41701
|
+
"members": [
|
|
41702
|
+
{
|
|
41703
|
+
"kind": "field",
|
|
41704
|
+
"name": "variant",
|
|
41705
|
+
"type": {
|
|
41706
|
+
"text": "SideNavigationVariant"
|
|
41707
|
+
},
|
|
41708
|
+
"description": "Four variants of the sideNavigation\n- **fixed-collapsed**: Shows icons without labels and has fixed width, 4.5rem.\n- **fixed-expanded**: Shows icons with labels and has fixed width, 15rem.\n- **flexible**: Toggles between collapsed/expanded states.\n- **hidden**: Removes the sidenavigation from the DOM.",
|
|
41709
|
+
"default": "flexible",
|
|
41710
|
+
"attribute": "variant",
|
|
41711
|
+
"reflects": true
|
|
41712
|
+
},
|
|
41713
|
+
{
|
|
41714
|
+
"kind": "field",
|
|
41715
|
+
"name": "footerText",
|
|
41716
|
+
"type": {
|
|
41717
|
+
"text": "string"
|
|
41718
|
+
},
|
|
41719
|
+
"default": "''",
|
|
41720
|
+
"description": "Displays footer text in the bottom section of the sidenavigation.",
|
|
41721
|
+
"attribute": "footer-text",
|
|
41722
|
+
"reflects": true
|
|
41723
|
+
},
|
|
41724
|
+
{
|
|
41725
|
+
"kind": "field",
|
|
41726
|
+
"name": "grabberBtnAriaLabel",
|
|
41727
|
+
"type": {
|
|
41728
|
+
"text": "string | undefined"
|
|
41729
|
+
},
|
|
41730
|
+
"description": "Provides an accessible label for the grabber button.\nThis value is used to set the `aria-label` attribute for the button.",
|
|
41731
|
+
"default": "''",
|
|
41732
|
+
"attribute": "grabber-btn-aria-label",
|
|
41733
|
+
"reflects": true
|
|
41734
|
+
},
|
|
41735
|
+
{
|
|
41736
|
+
"kind": "field",
|
|
41737
|
+
"name": "parentNavTooltipText",
|
|
41738
|
+
"type": {
|
|
41739
|
+
"text": "string | undefined"
|
|
41740
|
+
},
|
|
41741
|
+
"description": "Tooltip text shown on parent nav items when a child is active.",
|
|
41742
|
+
"attribute": "parent-nav-tooltip-text",
|
|
41743
|
+
"reflects": true
|
|
41744
|
+
},
|
|
41745
|
+
{
|
|
41746
|
+
"kind": "field",
|
|
41747
|
+
"name": "Context",
|
|
41748
|
+
"privacy": "public",
|
|
41749
|
+
"static": true,
|
|
41750
|
+
"readonly": true
|
|
41751
|
+
},
|
|
41752
|
+
{
|
|
41753
|
+
"kind": "method",
|
|
41754
|
+
"name": "updateContext",
|
|
41755
|
+
"privacy": "protected",
|
|
41756
|
+
"return": {
|
|
41757
|
+
"type": {
|
|
41758
|
+
"text": "void"
|
|
41759
|
+
}
|
|
41760
|
+
},
|
|
41761
|
+
"description": "Update all observing components of this\nprovider to update the values\n\nIs called on every re-render, see Provider class"
|
|
41762
|
+
},
|
|
41763
|
+
{
|
|
41764
|
+
"kind": "method",
|
|
41765
|
+
"name": "preventScrollOnSpace",
|
|
41766
|
+
"privacy": "private",
|
|
41767
|
+
"return": {
|
|
41768
|
+
"type": {
|
|
41769
|
+
"text": "void"
|
|
41770
|
+
}
|
|
41771
|
+
},
|
|
41772
|
+
"parameters": [
|
|
41773
|
+
{
|
|
41774
|
+
"name": "event",
|
|
41775
|
+
"type": {
|
|
41776
|
+
"text": "KeyboardEvent"
|
|
41777
|
+
}
|
|
41778
|
+
}
|
|
41779
|
+
]
|
|
41780
|
+
}
|
|
41781
|
+
],
|
|
41782
|
+
"events": [
|
|
41783
|
+
{
|
|
41784
|
+
"name": "toggle",
|
|
41785
|
+
"type": {
|
|
41786
|
+
"text": "CustomEvent"
|
|
41787
|
+
},
|
|
41788
|
+
"description": "(React: onToggle) Dispatched when the grabber button is clicked to expand/collapse the sidenavigation.",
|
|
41789
|
+
"reactName": "onToggle"
|
|
41790
|
+
},
|
|
41791
|
+
{
|
|
41792
|
+
"description": "(React: onActiveChange) Dispatched when the active state of a nested navmenuitem changes.",
|
|
41793
|
+
"name": "activechange",
|
|
41794
|
+
"reactName": "onActiveChange"
|
|
41795
|
+
}
|
|
41796
|
+
],
|
|
41797
|
+
"attributes": [
|
|
41798
|
+
{
|
|
41799
|
+
"name": "variant",
|
|
41800
|
+
"type": {
|
|
41801
|
+
"text": "SideNavigationVariant"
|
|
41802
|
+
},
|
|
41803
|
+
"description": "Four variants of the sideNavigation\n- **fixed-collapsed**: Shows icons without labels and has fixed width, 4.5rem.\n- **fixed-expanded**: Shows icons with labels and has fixed width, 15rem.\n- **flexible**: Toggles between collapsed/expanded states.\n- **hidden**: Removes the sidenavigation from the DOM.",
|
|
41804
|
+
"default": "flexible",
|
|
41805
|
+
"fieldName": "variant"
|
|
41806
|
+
},
|
|
41807
|
+
{
|
|
41808
|
+
"name": "footer-text",
|
|
41809
|
+
"type": {
|
|
41810
|
+
"text": "string"
|
|
41811
|
+
},
|
|
41812
|
+
"default": "''",
|
|
41813
|
+
"description": "Displays footer text in the bottom section of the sidenavigation.",
|
|
41814
|
+
"fieldName": "footerText"
|
|
41815
|
+
},
|
|
41816
|
+
{
|
|
41817
|
+
"name": "grabber-btn-aria-label",
|
|
41818
|
+
"type": {
|
|
41819
|
+
"text": "string | undefined"
|
|
41820
|
+
},
|
|
41821
|
+
"description": "Provides an accessible label for the grabber button.\nThis value is used to set the `aria-label` attribute for the button.",
|
|
41822
|
+
"default": "''",
|
|
41823
|
+
"fieldName": "grabberBtnAriaLabel"
|
|
41824
|
+
},
|
|
41825
|
+
{
|
|
41826
|
+
"name": "parent-nav-tooltip-text",
|
|
41827
|
+
"type": {
|
|
41828
|
+
"text": "string | undefined"
|
|
41829
|
+
},
|
|
41830
|
+
"description": "Tooltip text shown on parent nav items when a child is active.",
|
|
41831
|
+
"fieldName": "parentNavTooltipText"
|
|
41832
|
+
}
|
|
41833
|
+
],
|
|
41834
|
+
"superclass": {
|
|
41835
|
+
"name": "Provider",
|
|
41836
|
+
"module": "/src/models"
|
|
41837
|
+
},
|
|
41838
|
+
"tagName": "mdc-sidenavigation",
|
|
41839
|
+
"jsDoc": "/**\n * The `mdc-sidenavigation` component provides a vertically stacked navigation experience,\n * typically used in layouts with persistent or collapsible sidebars.\n *\n * ## Features:\n * - Supports four layout variants: `fixed-collapsed`, `fixed-expanded`, `flexible`, and `hidden`\n * - Toggleable expand/collapse behavior\n * - Displays brand logo and customer name\n * - Serves as a context provider for descendant components - `mdc-menubar` and `mdc-navmenuitem`\n *\n * ### Usage:\n * In a sidenavigation, navmenuitems can be used in the following ways:\n *\n * 1. **Simple navmenuitem** – No submenu or interaction beyond selection.\n *\n * 2. **NavMenuItem with submenu**:\n * - Provide an `id` on the `mdc-navmenuitem`\n * - Set the `triggerId` on the corresponding `mdc-menupopover` to match the navmenuitem's `id`\n * - Set `parent-nav-tooltip-text` with appropriate text that will display when a child menu item\n * inside the nested menupopover is active, conveying which submenu item is currently selected\n *\n * 3. **Actionable navmenuitem (no submenu)**:\n * - Performs an action such as navigation or alert trigger\n * - Set `disable-aria-current=\"true\"` to maintain visual active state without navigation behavior\n *\n * ### Recommendations:\n * - Use `mdc-text` for section headers\n * - Use `mdc-divider` with the attribute `variant=\"gradient\"` for section dividers\n * - For the brand logo, use an informative icon. Refer to `Momentum Informative Icons`\n *\n * #### Accessibility Notes:\n * - Always provide meaningful `aria-label` attributes for both `mdc-navmenuitem` and `mdc-menubar`\n * to ensure screen reader support\n * - Set `grabber-btn-aria-label` to provide accessible labels for the expand/collapse grabber button\n *\n * @dependency mdc-text\n * @dependency mdc-button\n * @dependency mdc-divider\n * @dependency mdc-menubar\n *\n * @event activechange - (React: onActiveChange) Dispatched when the active state of the navmenuitem changes.\n *\n * @tagname mdc-sidenavigation\n *\n * @slot scrollable-section - Slot for the scrollable content area of the side navigation.\n * @slot fixed-section - Slot for the fixed content area of the side navigation.\n * @slot brand-logo - Slot for the brand logo (e.g., icon or img).\n *\n * @csspart side-navigation-container - The main container wrapping the entire side navigation.\n * @csspart scrollable-section - The scrollable section of the side navigation.\n * @csspart fixed-section - The fixed section of the side navigation.\n * @csspart separator - The divider between the scrollable and fixed sections.\n * @csspart brand-logo-container - The container wrapping the brand logo and footer text.\n * @csspart footer-text - The footer text label in the fixed section.\n * @csspart vertical-divider - The vertical divider between the scrollable and fixed sections.\n * @csspart vertical-divider-button - The button inside the vertical divider used to toggle expand/collapse.\n *\n * @event toggle - (React: onToggle) Dispatched when the grabber button is clicked to expand/collapse the sidenavigation.\n * @event activechange - (React: onActiveChange) Dispatched when the active state of a nested navmenuitem changes.\n *\n * @cssproperty --mdc-sidenavigation-expanded-width - width of the sideNavigation when expanded\n * @cssproperty --mdc-sidenavigation-collapsed-width - width of the sideNavigation when collapsed\n * @cssproperty --mdc-sidenavigation-vertical-divider-button-z-index - z-index of the vertical divider button\n */",
|
|
41840
|
+
"customElement": true
|
|
41841
|
+
}
|
|
41842
|
+
],
|
|
41843
|
+
"exports": [
|
|
41844
|
+
{
|
|
41845
|
+
"kind": "js",
|
|
41846
|
+
"name": "default",
|
|
41847
|
+
"declaration": {
|
|
41848
|
+
"name": "SideNavigation",
|
|
41849
|
+
"module": "components/sidenavigation/sidenavigation.component.js"
|
|
41850
|
+
}
|
|
41851
|
+
}
|
|
41852
|
+
]
|
|
41853
|
+
},
|
|
41778
41854
|
{
|
|
41779
41855
|
"kind": "javascript-module",
|
|
41780
41856
|
"path": "components/staticcheckbox/staticcheckbox.component.js",
|