@ukic/docs 3.2.4 → 3.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/docs.json +824 -108
  2. package/package.json +2 -2
package/docs.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "filePath": "src/components/ic-accordion/ic-accordion.tsx",
10
10
  "encapsulation": "shadow",
11
11
  "tag": "ic-accordion",
12
- "readme": "# ic-accordion\r\n\r\n\r\n\r",
12
+ "readme": "# ic-accordion\n\n\n",
13
13
  "docs": "",
14
14
  "docsTags": [
15
15
  {
@@ -268,7 +268,7 @@
268
268
  "filePath": "src/components/ic-accordion-group/ic-accordion-group.tsx",
269
269
  "encapsulation": "shadow",
270
270
  "tag": "ic-accordion-group",
271
- "readme": "# ic-accordion-title\r\n\r\n\r\n\r",
271
+ "readme": "# ic-accordion-title\n\n\n",
272
272
  "docs": "",
273
273
  "docsTags": [
274
274
  {
@@ -534,11 +534,675 @@
534
534
  ]
535
535
  }
536
536
  },
537
+ {
538
+ "filePath": "src/components/ic-action-chip/ic-action-chip.tsx",
539
+ "encapsulation": "shadow",
540
+ "tag": "ic-action-chip",
541
+ "readme": "# ic-action-chip\n\n\n",
542
+ "docs": "",
543
+ "docsTags": [
544
+ {
545
+ "name": "slot",
546
+ "text": "badge - Badge component overlaying the top right of the chip."
547
+ },
548
+ {
549
+ "name": "slot",
550
+ "text": "icon - Content will be rendered at the start of the chip."
551
+ }
552
+ ],
553
+ "usage": {},
554
+ "props": [
555
+ {
556
+ "name": "disabled",
557
+ "type": "boolean",
558
+ "complexType": {
559
+ "original": "boolean",
560
+ "resolved": "boolean",
561
+ "references": {}
562
+ },
563
+ "mutable": false,
564
+ "attr": "disabled",
565
+ "reflectToAttr": false,
566
+ "docs": "If `true`, the chip will appear disabled.",
567
+ "docsTags": [],
568
+ "default": "false",
569
+ "values": [
570
+ {
571
+ "type": "boolean"
572
+ }
573
+ ],
574
+ "optional": false,
575
+ "required": false,
576
+ "getter": false,
577
+ "setter": false
578
+ },
579
+ {
580
+ "name": "download",
581
+ "type": "boolean | string",
582
+ "complexType": {
583
+ "original": "string | boolean",
584
+ "resolved": "boolean | string",
585
+ "references": {}
586
+ },
587
+ "mutable": false,
588
+ "attr": "download",
589
+ "reflectToAttr": false,
590
+ "docs": "If `true`, the user can save the linked URL instead of navigating to it.",
591
+ "docsTags": [],
592
+ "default": "false",
593
+ "values": [
594
+ {
595
+ "type": "boolean"
596
+ },
597
+ {
598
+ "type": "string"
599
+ }
600
+ ],
601
+ "optional": false,
602
+ "required": false,
603
+ "getter": false,
604
+ "setter": false
605
+ },
606
+ {
607
+ "name": "form",
608
+ "type": "string | undefined",
609
+ "complexType": {
610
+ "original": "string",
611
+ "resolved": "string | undefined",
612
+ "references": {}
613
+ },
614
+ "mutable": false,
615
+ "attr": "form",
616
+ "reflectToAttr": false,
617
+ "docs": "The <form> element to associate the chip with.",
618
+ "docsTags": [],
619
+ "values": [
620
+ {
621
+ "type": "string"
622
+ },
623
+ {
624
+ "type": "undefined"
625
+ }
626
+ ],
627
+ "optional": true,
628
+ "required": false,
629
+ "getter": false,
630
+ "setter": false
631
+ },
632
+ {
633
+ "name": "formaction",
634
+ "type": "string | undefined",
635
+ "complexType": {
636
+ "original": "string",
637
+ "resolved": "string | undefined",
638
+ "references": {}
639
+ },
640
+ "mutable": false,
641
+ "attr": "formaction",
642
+ "reflectToAttr": false,
643
+ "docs": "The URL that processes the information submitted by the chip. It overrides the action attribute of the chip's form owner. Does nothing if there is no form owner.",
644
+ "docsTags": [],
645
+ "values": [
646
+ {
647
+ "type": "string"
648
+ },
649
+ {
650
+ "type": "undefined"
651
+ }
652
+ ],
653
+ "optional": true,
654
+ "required": false,
655
+ "getter": false,
656
+ "setter": false
657
+ },
658
+ {
659
+ "name": "formenctype",
660
+ "type": "string | undefined",
661
+ "complexType": {
662
+ "original": "string",
663
+ "resolved": "string | undefined",
664
+ "references": {}
665
+ },
666
+ "mutable": false,
667
+ "attr": "formenctype",
668
+ "reflectToAttr": false,
669
+ "docs": "The way the submitted form data is encoded.",
670
+ "docsTags": [],
671
+ "values": [
672
+ {
673
+ "type": "string"
674
+ },
675
+ {
676
+ "type": "undefined"
677
+ }
678
+ ],
679
+ "optional": true,
680
+ "required": false,
681
+ "getter": false,
682
+ "setter": false
683
+ },
684
+ {
685
+ "name": "formmethod",
686
+ "type": "string | undefined",
687
+ "complexType": {
688
+ "original": "string",
689
+ "resolved": "string | undefined",
690
+ "references": {}
691
+ },
692
+ "mutable": false,
693
+ "attr": "formmethod",
694
+ "reflectToAttr": false,
695
+ "docs": "The HTTP method used to submit the form.",
696
+ "docsTags": [],
697
+ "values": [
698
+ {
699
+ "type": "string"
700
+ },
701
+ {
702
+ "type": "undefined"
703
+ }
704
+ ],
705
+ "optional": true,
706
+ "required": false,
707
+ "getter": false,
708
+ "setter": false
709
+ },
710
+ {
711
+ "name": "formnovalidate",
712
+ "type": "boolean | undefined",
713
+ "complexType": {
714
+ "original": "boolean",
715
+ "resolved": "boolean | undefined",
716
+ "references": {}
717
+ },
718
+ "mutable": false,
719
+ "attr": "formnovalidate",
720
+ "reflectToAttr": false,
721
+ "docs": "If `true`, the form will not be validated when submitted.",
722
+ "docsTags": [],
723
+ "values": [
724
+ {
725
+ "type": "boolean"
726
+ },
727
+ {
728
+ "type": "undefined"
729
+ }
730
+ ],
731
+ "optional": true,
732
+ "required": false,
733
+ "getter": false,
734
+ "setter": false
735
+ },
736
+ {
737
+ "name": "formtarget",
738
+ "type": "string | undefined",
739
+ "complexType": {
740
+ "original": "string",
741
+ "resolved": "string | undefined",
742
+ "references": {}
743
+ },
744
+ "mutable": false,
745
+ "attr": "formtarget",
746
+ "reflectToAttr": false,
747
+ "docs": "The place to display the response from submitting the form. It overrides the target attribute of the chip's form owner.",
748
+ "docsTags": [],
749
+ "values": [
750
+ {
751
+ "type": "string"
752
+ },
753
+ {
754
+ "type": "undefined"
755
+ }
756
+ ],
757
+ "optional": true,
758
+ "required": false,
759
+ "getter": false,
760
+ "setter": false
761
+ },
762
+ {
763
+ "name": "href",
764
+ "type": "string | undefined",
765
+ "complexType": {
766
+ "original": "string",
767
+ "resolved": "string | undefined",
768
+ "references": {}
769
+ },
770
+ "mutable": false,
771
+ "attr": "href",
772
+ "reflectToAttr": false,
773
+ "docs": "The URL that the link points to. This will render the chip as an \"a\" tag.",
774
+ "docsTags": [],
775
+ "values": [
776
+ {
777
+ "type": "string"
778
+ },
779
+ {
780
+ "type": "undefined"
781
+ }
782
+ ],
783
+ "optional": true,
784
+ "required": false,
785
+ "getter": false,
786
+ "setter": false
787
+ },
788
+ {
789
+ "name": "hreflang",
790
+ "type": "string | undefined",
791
+ "complexType": {
792
+ "original": "string",
793
+ "resolved": "string | undefined",
794
+ "references": {}
795
+ },
796
+ "mutable": false,
797
+ "attr": "hreflang",
798
+ "reflectToAttr": false,
799
+ "docs": "The human language of the linked URL.",
800
+ "docsTags": [],
801
+ "values": [
802
+ {
803
+ "type": "string"
804
+ },
805
+ {
806
+ "type": "undefined"
807
+ }
808
+ ],
809
+ "optional": true,
810
+ "required": false,
811
+ "getter": false,
812
+ "setter": false
813
+ },
814
+ {
815
+ "name": "label",
816
+ "type": "string",
817
+ "complexType": {
818
+ "original": "string",
819
+ "resolved": "string",
820
+ "references": {}
821
+ },
822
+ "mutable": false,
823
+ "attr": "label",
824
+ "reflectToAttr": false,
825
+ "docs": "The text rendered within the chip.",
826
+ "docsTags": [],
827
+ "values": [
828
+ {
829
+ "type": "string"
830
+ }
831
+ ],
832
+ "optional": false,
833
+ "required": true,
834
+ "getter": false,
835
+ "setter": false
836
+ },
837
+ {
838
+ "name": "monochrome",
839
+ "type": "boolean",
840
+ "complexType": {
841
+ "original": "boolean",
842
+ "resolved": "boolean",
843
+ "references": {}
844
+ },
845
+ "mutable": false,
846
+ "attr": "monochrome",
847
+ "reflectToAttr": false,
848
+ "docs": "If `true`, the button will display as monochromatic in either `light` or `dark` theme.",
849
+ "docsTags": [],
850
+ "default": "false",
851
+ "values": [
852
+ {
853
+ "type": "boolean"
854
+ }
855
+ ],
856
+ "optional": false,
857
+ "required": false,
858
+ "getter": false,
859
+ "setter": false
860
+ },
861
+ {
862
+ "name": "referrerpolicy",
863
+ "type": "\"\" | \"no-referrer\" | \"no-referrer-when-downgrade\" | \"origin\" | \"origin-when-cross-origin\" | \"same-origin\" | \"strict-origin\" | \"strict-origin-when-cross-origin\" | \"unsafe-url\" | undefined",
864
+ "complexType": {
865
+ "original": "ReferrerPolicy",
866
+ "resolved": "\"\" | \"no-referrer\" | \"no-referrer-when-downgrade\" | \"origin\" | \"origin-when-cross-origin\" | \"same-origin\" | \"strict-origin\" | \"strict-origin-when-cross-origin\" | \"unsafe-url\" | undefined",
867
+ "references": {
868
+ "ReferrerPolicy": {
869
+ "location": "global",
870
+ "id": "global::ReferrerPolicy"
871
+ }
872
+ }
873
+ },
874
+ "mutable": false,
875
+ "attr": "referrerpolicy",
876
+ "reflectToAttr": false,
877
+ "docs": "How much of the referrer to send when following the link.",
878
+ "docsTags": [],
879
+ "values": [
880
+ {
881
+ "type": "\"\""
882
+ },
883
+ {
884
+ "value": "no-referrer",
885
+ "type": "string"
886
+ },
887
+ {
888
+ "value": "no-referrer-when-downgrade",
889
+ "type": "string"
890
+ },
891
+ {
892
+ "value": "origin",
893
+ "type": "string"
894
+ },
895
+ {
896
+ "value": "origin-when-cross-origin",
897
+ "type": "string"
898
+ },
899
+ {
900
+ "value": "same-origin",
901
+ "type": "string"
902
+ },
903
+ {
904
+ "value": "strict-origin",
905
+ "type": "string"
906
+ },
907
+ {
908
+ "value": "strict-origin-when-cross-origin",
909
+ "type": "string"
910
+ },
911
+ {
912
+ "value": "unsafe-url",
913
+ "type": "string"
914
+ },
915
+ {
916
+ "type": "undefined"
917
+ }
918
+ ],
919
+ "optional": true,
920
+ "required": false,
921
+ "getter": false,
922
+ "setter": false
923
+ },
924
+ {
925
+ "name": "rel",
926
+ "type": "string | undefined",
927
+ "complexType": {
928
+ "original": "string",
929
+ "resolved": "string | undefined",
930
+ "references": {}
931
+ },
932
+ "mutable": false,
933
+ "attr": "rel",
934
+ "reflectToAttr": false,
935
+ "docs": "The relationship of the linked URL as space-separated link types.",
936
+ "docsTags": [],
937
+ "values": [
938
+ {
939
+ "type": "string"
940
+ },
941
+ {
942
+ "type": "undefined"
943
+ }
944
+ ],
945
+ "optional": true,
946
+ "required": false,
947
+ "getter": false,
948
+ "setter": false
949
+ },
950
+ {
951
+ "name": "size",
952
+ "type": "\"large\" | \"medium\" | \"small\"",
953
+ "complexType": {
954
+ "original": "IcSizes",
955
+ "resolved": "\"large\" | \"medium\" | \"small\"",
956
+ "references": {
957
+ "IcSizes": {
958
+ "location": "import",
959
+ "path": "../../utils/types",
960
+ "id": "src/utils/types.ts::IcSizes"
961
+ }
962
+ }
963
+ },
964
+ "mutable": false,
965
+ "attr": "size",
966
+ "reflectToAttr": false,
967
+ "docs": "The size of the chip.",
968
+ "docsTags": [],
969
+ "default": "\"medium\"",
970
+ "values": [
971
+ {
972
+ "value": "large",
973
+ "type": "string"
974
+ },
975
+ {
976
+ "value": "medium",
977
+ "type": "string"
978
+ },
979
+ {
980
+ "value": "small",
981
+ "type": "string"
982
+ }
983
+ ],
984
+ "optional": false,
985
+ "required": false,
986
+ "getter": false,
987
+ "setter": false
988
+ },
989
+ {
990
+ "name": "target",
991
+ "type": "string | undefined",
992
+ "complexType": {
993
+ "original": "string",
994
+ "resolved": "string | undefined",
995
+ "references": {}
996
+ },
997
+ "mutable": false,
998
+ "attr": "target",
999
+ "reflectToAttr": false,
1000
+ "docs": "The place to display the linked URL, as the name for a browsing context (a tab, window, or iframe).",
1001
+ "docsTags": [],
1002
+ "values": [
1003
+ {
1004
+ "type": "string"
1005
+ },
1006
+ {
1007
+ "type": "undefined"
1008
+ }
1009
+ ],
1010
+ "optional": true,
1011
+ "required": false,
1012
+ "getter": false,
1013
+ "setter": false
1014
+ },
1015
+ {
1016
+ "name": "theme",
1017
+ "type": "\"dark\" | \"inherit\" | \"light\"",
1018
+ "complexType": {
1019
+ "original": "IcThemeMode",
1020
+ "resolved": "\"dark\" | \"inherit\" | \"light\"",
1021
+ "references": {
1022
+ "IcThemeMode": {
1023
+ "location": "import",
1024
+ "path": "../../utils/types",
1025
+ "id": "src/utils/types.ts::IcThemeMode"
1026
+ }
1027
+ }
1028
+ },
1029
+ "mutable": false,
1030
+ "attr": "theme",
1031
+ "reflectToAttr": false,
1032
+ "docs": "Sets the chip to the dark or light theme colors. \"inherit\" will set the color based on the system settings or ic-theme component.",
1033
+ "docsTags": [],
1034
+ "default": "\"inherit\"",
1035
+ "values": [
1036
+ {
1037
+ "value": "dark",
1038
+ "type": "string"
1039
+ },
1040
+ {
1041
+ "value": "inherit",
1042
+ "type": "string"
1043
+ },
1044
+ {
1045
+ "value": "light",
1046
+ "type": "string"
1047
+ }
1048
+ ],
1049
+ "optional": false,
1050
+ "required": false,
1051
+ "getter": false,
1052
+ "setter": false
1053
+ },
1054
+ {
1055
+ "name": "transparentBackground",
1056
+ "type": "boolean",
1057
+ "complexType": {
1058
+ "original": "boolean",
1059
+ "resolved": "boolean",
1060
+ "references": {}
1061
+ },
1062
+ "mutable": false,
1063
+ "attr": "transparent-background",
1064
+ "reflectToAttr": false,
1065
+ "docs": "If `true`, the outlined variant of chip will have a transparent background rather than the theme defined color.",
1066
+ "docsTags": [],
1067
+ "default": "true",
1068
+ "values": [
1069
+ {
1070
+ "type": "boolean"
1071
+ }
1072
+ ],
1073
+ "optional": false,
1074
+ "required": false,
1075
+ "getter": false,
1076
+ "setter": false
1077
+ },
1078
+ {
1079
+ "name": "type",
1080
+ "type": "\"button\" | \"reset\" | \"submit\"",
1081
+ "complexType": {
1082
+ "original": "IcButtonTypes",
1083
+ "resolved": "\"button\" | \"reset\" | \"submit\"",
1084
+ "references": {
1085
+ "IcButtonTypes": {
1086
+ "location": "import",
1087
+ "path": "../ic-button/ic-button.types",
1088
+ "id": "src/components/ic-button/ic-button.types.ts::IcButtonTypes"
1089
+ }
1090
+ }
1091
+ },
1092
+ "mutable": false,
1093
+ "attr": "type",
1094
+ "reflectToAttr": false,
1095
+ "docs": "The type of the chip.",
1096
+ "docsTags": [],
1097
+ "default": "\"button\"",
1098
+ "values": [
1099
+ {
1100
+ "value": "button",
1101
+ "type": "string"
1102
+ },
1103
+ {
1104
+ "value": "reset",
1105
+ "type": "string"
1106
+ },
1107
+ {
1108
+ "value": "submit",
1109
+ "type": "string"
1110
+ }
1111
+ ],
1112
+ "optional": false,
1113
+ "required": false,
1114
+ "getter": false,
1115
+ "setter": false
1116
+ },
1117
+ {
1118
+ "name": "variant",
1119
+ "type": "\"filled\" | \"outlined\"",
1120
+ "complexType": {
1121
+ "original": "IcEmphasisType",
1122
+ "resolved": "\"filled\" | \"outlined\"",
1123
+ "references": {
1124
+ "IcEmphasisType": {
1125
+ "location": "import",
1126
+ "path": "../../utils/types",
1127
+ "id": "src/utils/types.ts::IcEmphasisType"
1128
+ }
1129
+ }
1130
+ },
1131
+ "mutable": false,
1132
+ "attr": "variant",
1133
+ "reflectToAttr": false,
1134
+ "docs": "The emphasis of the chip.",
1135
+ "docsTags": [],
1136
+ "default": "\"filled\"",
1137
+ "values": [
1138
+ {
1139
+ "value": "filled",
1140
+ "type": "string"
1141
+ },
1142
+ {
1143
+ "value": "outlined",
1144
+ "type": "string"
1145
+ }
1146
+ ],
1147
+ "optional": false,
1148
+ "required": false,
1149
+ "getter": false,
1150
+ "setter": false
1151
+ }
1152
+ ],
1153
+ "methods": [
1154
+ {
1155
+ "name": "setFocus",
1156
+ "returns": {
1157
+ "type": "Promise<void>",
1158
+ "docs": ""
1159
+ },
1160
+ "complexType": {
1161
+ "signature": "() => Promise<void>",
1162
+ "parameters": [],
1163
+ "references": {
1164
+ "Promise": {
1165
+ "location": "global",
1166
+ "id": "global::Promise"
1167
+ }
1168
+ },
1169
+ "return": "Promise<void>"
1170
+ },
1171
+ "signature": "setFocus() => Promise<void>",
1172
+ "parameters": [],
1173
+ "docs": "Sets focus on the chip.",
1174
+ "docsTags": []
1175
+ }
1176
+ ],
1177
+ "events": [],
1178
+ "listeners": [],
1179
+ "styles": [],
1180
+ "slots": [
1181
+ {
1182
+ "name": "badge",
1183
+ "docs": "Badge component overlaying the top right of the chip."
1184
+ },
1185
+ {
1186
+ "name": "icon",
1187
+ "docs": "Content will be rendered at the start of the chip."
1188
+ }
1189
+ ],
1190
+ "parts": [],
1191
+ "dependents": [],
1192
+ "dependencies": [
1193
+ "ic-typography"
1194
+ ],
1195
+ "dependencyGraph": {
1196
+ "ic-action-chip": [
1197
+ "ic-typography"
1198
+ ]
1199
+ }
1200
+ },
537
1201
  {
538
1202
  "filePath": "src/components/ic-alert/ic-alert.tsx",
539
1203
  "encapsulation": "shadow",
540
1204
  "tag": "ic-alert",
541
- "readme": "# ic-alert\r\n\r\n\r\n\r",
1205
+ "readme": "# ic-alert\n\n\n",
542
1206
  "docs": "",
543
1207
  "docsTags": [
544
1208
  {
@@ -862,7 +1526,7 @@
862
1526
  "filePath": "src/components/ic-back-to-top/ic-back-to-top.tsx",
863
1527
  "encapsulation": "shadow",
864
1528
  "tag": "ic-back-to-top",
865
- "readme": "# ic-back-to-top\r\n\r\n\r\n\r",
1529
+ "readme": "# ic-back-to-top\n\n\n",
866
1530
  "docs": "",
867
1531
  "docsTags": [],
868
1532
  "usage": {},
@@ -1065,7 +1729,7 @@
1065
1729
  "filePath": "src/components/ic-badge/ic-badge.tsx",
1066
1730
  "encapsulation": "shadow",
1067
1731
  "tag": "ic-badge",
1068
- "readme": "# ic-badge\r\n\r\n\r\n\r",
1732
+ "readme": "# ic-badge\n\n\n",
1069
1733
  "docs": "",
1070
1734
  "docsTags": [
1071
1735
  {
@@ -1118,7 +1782,7 @@
1118
1782
  "mutable": false,
1119
1783
  "attr": "custom-color",
1120
1784
  "reflectToAttr": false,
1121
- "docs": "The custom badge colour. This will only style the badge component if variant=\"custom\".\r\nCan be a hex value e.g. \"#ff0000\", RGB e.g. \"rgb(255, 0, 0)\", or RGBA e.g. \"rgba(255, 0, 0, 1)\".",
1785
+ "docs": "The custom badge colour. This will only style the badge component if variant=\"custom\".\nCan be a hex value e.g. \"#ff0000\", RGB e.g. \"rgb(255, 0, 0)\", or RGBA e.g. \"rgba(255, 0, 0, 1)\".",
1122
1786
  "docsTags": [],
1123
1787
  "values": [
1124
1788
  {
@@ -1176,7 +1840,7 @@
1176
1840
  "mutable": false,
1177
1841
  "attr": "max-number",
1178
1842
  "reflectToAttr": false,
1179
- "docs": "The maximum number shown on the badge appended with a +.\r\nThis will only be displayed if type=\"text\" and label is not empty.",
1843
+ "docs": "The maximum number shown on the badge appended with a +.\nThis will only be displayed if type=\"text\" and label is not empty.",
1180
1844
  "docsTags": [],
1181
1845
  "values": [
1182
1846
  {
@@ -1483,7 +2147,7 @@
1483
2147
  "filePath": "src/components/ic-breadcrumb/ic-breadcrumb.tsx",
1484
2148
  "encapsulation": "shadow",
1485
2149
  "tag": "ic-breadcrumb",
1486
- "readme": "# ic-breadcrumb\r\n\r\n\r\n\r",
2150
+ "readme": "# ic-breadcrumb\n\n\n",
1487
2151
  "docs": "",
1488
2152
  "docsTags": [
1489
2153
  {
@@ -1620,7 +2284,7 @@
1620
2284
  "filePath": "src/components/ic-breadcrumb-group/ic-breadcrumb-group.tsx",
1621
2285
  "encapsulation": "shadow",
1622
2286
  "tag": "ic-breadcrumb-group",
1623
- "readme": "# ic-breadcrumb-group\r\n\r\n\r\n\r",
2287
+ "readme": "# ic-breadcrumb-group\n\n\n",
1624
2288
  "docs": "",
1625
2289
  "docsTags": [],
1626
2290
  "usage": {},
@@ -1760,7 +2424,7 @@
1760
2424
  "filePath": "src/components/ic-button/ic-button.tsx",
1761
2425
  "encapsulation": "shadow",
1762
2426
  "tag": "ic-button",
1763
- "readme": "# ic-button\r\n\r",
2427
+ "readme": "# ic-button\n",
1764
2428
  "docs": "",
1765
2429
  "docsTags": [
1766
2430
  {
@@ -2888,7 +3552,7 @@
2888
3552
  "filePath": "src/components/ic-card-vertical/ic-card-vertical.tsx",
2889
3553
  "encapsulation": "shadow",
2890
3554
  "tag": "ic-card-vertical",
2891
- "readme": "# ic-card-vertical\r\n\r\n\r\n\r",
3555
+ "readme": "# ic-card-vertical\n\n\n",
2892
3556
  "docs": "",
2893
3557
  "docsTags": [
2894
3558
  {
@@ -3441,7 +4105,7 @@
3441
4105
  "filePath": "src/components/ic-checkbox/ic-checkbox.tsx",
3442
4106
  "encapsulation": "shadow",
3443
4107
  "tag": "ic-checkbox",
3444
- "readme": "# ic-checkbox\r\n\r\n\r\n\r",
4108
+ "readme": "# ic-checkbox\n\n\n",
3445
4109
  "docs": "",
3446
4110
  "docsTags": [
3447
4111
  {
@@ -3899,7 +4563,7 @@
3899
4563
  "filePath": "src/components/ic-checkbox-group/ic-checkbox-group.tsx",
3900
4564
  "encapsulation": "shadow",
3901
4565
  "tag": "ic-checkbox-group",
3902
- "readme": "# ic-checkbox-group\r\n\r\n\r\n\r",
4566
+ "readme": "# ic-checkbox-group\n\n\n",
3903
4567
  "docs": "",
3904
4568
  "docsTags": [
3905
4569
  {
@@ -4261,7 +4925,7 @@
4261
4925
  "filePath": "src/components/ic-chip/ic-chip.tsx",
4262
4926
  "encapsulation": "shadow",
4263
4927
  "tag": "ic-chip",
4264
- "readme": "# ic-chip\r\n\r\n\r\n\r",
4928
+ "readme": "# ic-chip\n\n\n",
4265
4929
  "docs": "",
4266
4930
  "docsTags": [
4267
4931
  {
@@ -4292,7 +4956,7 @@
4292
4956
  "mutable": false,
4293
4957
  "attr": "custom-color",
4294
4958
  "reflectToAttr": false,
4295
- "docs": "The custom chip colour. This will override the theme colour.\r\nCan be a hex value e.g. \"#ff0000\", RGB e.g. \"rgb(255, 0, 0)\", or RGBA e.g. \"rgba(255, 0, 0, 1)\".",
4959
+ "docs": "The custom chip colour. This will override the theme colour.\nCan be a hex value e.g. \"#ff0000\", RGB e.g. \"rgb(255, 0, 0)\", or RGBA e.g. \"rgba(255, 0, 0, 1)\".",
4296
4960
  "docsTags": [],
4297
4961
  "values": [
4298
4962
  {
@@ -4464,7 +5128,7 @@
4464
5128
  "mutable": false,
4465
5129
  "attr": "theme",
4466
5130
  "reflectToAttr": false,
4467
- "docs": "Sets the chip to the dark or light theme colors. \"inherit\" will set the color based on the system settings or ic-theme component.\r\nSetting the \"customColor\" prop will override this.",
5131
+ "docs": "Sets the chip to the dark or light theme colors. \"inherit\" will set the color based on the system settings or ic-theme component.\nSetting the \"customColor\" prop will override this.",
4468
5132
  "docsTags": [],
4469
5133
  "default": "\"inherit\"",
4470
5134
  "values": [
@@ -4624,7 +5288,7 @@
4624
5288
  "filePath": "src/components/ic-classification-banner/ic-classification-banner.tsx",
4625
5289
  "encapsulation": "shadow",
4626
5290
  "tag": "ic-classification-banner",
4627
- "readme": "# ic-classification-banner\r\n\r\n\r\n\r",
5291
+ "readme": "# ic-classification-banner\n\n\n",
4628
5292
  "docs": "",
4629
5293
  "docsTags": [],
4630
5294
  "usage": {},
@@ -4814,7 +5478,7 @@
4814
5478
  "filePath": "src/components/ic-data-list/ic-data-list.tsx",
4815
5479
  "encapsulation": "shadow",
4816
5480
  "tag": "ic-data-list",
4817
- "readme": "# ic-data-list\r\n\r\n\r\n\r",
5481
+ "readme": "# ic-data-list\n\n\n",
4818
5482
  "docs": "",
4819
5483
  "docsTags": [
4820
5484
  {
@@ -4956,7 +5620,7 @@
4956
5620
  "filePath": "src/components/ic-data-row/ic-data-row.tsx",
4957
5621
  "encapsulation": "shadow",
4958
5622
  "tag": "ic-data-row",
4959
- "readme": "# ic-data-row\r\n\r\n\r\n\r",
5623
+ "readme": "# ic-data-row\n\n\n",
4960
5624
  "docs": "",
4961
5625
  "docsTags": [
4962
5626
  {
@@ -5140,7 +5804,7 @@
5140
5804
  "filePath": "src/components/ic-dialog/ic-dialog.tsx",
5141
5805
  "encapsulation": "shadow",
5142
5806
  "tag": "ic-dialog",
5143
- "readme": "# ic-dialog\r\n\r\n\r\n\r",
5807
+ "readme": "# ic-dialog\n\n\n",
5144
5808
  "docs": "",
5145
5809
  "docsTags": [
5146
5810
  {
@@ -5227,7 +5891,7 @@
5227
5891
  "mutable": false,
5228
5892
  "attr": "disable-height-constraint",
5229
5893
  "reflectToAttr": false,
5230
- "docs": "If set to `true`, the content area max height and overflow properties are removed allowing the dialog to stretch below the fold.\r\nThis prop also prevents popover elements from being cut off within the content area.",
5894
+ "docs": "If set to `true`, the content area max height and overflow properties are removed allowing the dialog to stretch below the fold.\nThis prop also prevents popover elements from being cut off within the content area.",
5231
5895
  "docsTags": [],
5232
5896
  "default": "false",
5233
5897
  "values": [
@@ -5676,7 +6340,7 @@
5676
6340
  "filePath": "src/components/ic-divider/ic-divider.tsx",
5677
6341
  "encapsulation": "scoped",
5678
6342
  "tag": "ic-divider",
5679
- "readme": "# ic-divider\r\n\r\n\r\n\r",
6343
+ "readme": "# ic-divider\n\n\n",
5680
6344
  "docs": "",
5681
6345
  "docsTags": [],
5682
6346
  "usage": {},
@@ -6026,7 +6690,7 @@
6026
6690
  "filePath": "src/components/ic-empty-state/ic-empty-state.tsx",
6027
6691
  "encapsulation": "shadow",
6028
6692
  "tag": "ic-empty-state",
6029
- "readme": "# ic-empty-state\r\n\r\n\r\n\r",
6693
+ "readme": "# ic-empty-state\n\n\n",
6030
6694
  "docs": "",
6031
6695
  "docsTags": [
6032
6696
  {
@@ -6324,7 +6988,7 @@
6324
6988
  "filePath": "src/components/ic-footer/ic-footer.tsx",
6325
6989
  "encapsulation": "shadow",
6326
6990
  "tag": "ic-footer",
6327
- "readme": "# ic-footer\r\n\r\n\r\n\r",
6991
+ "readme": "# ic-footer\n\n\n",
6328
6992
  "docs": "",
6329
6993
  "docsTags": [
6330
6994
  {
@@ -6591,7 +7255,7 @@
6591
7255
  "filePath": "src/components/ic-footer-link/ic-footer-link.tsx",
6592
7256
  "encapsulation": "shadow",
6593
7257
  "tag": "ic-footer-link",
6594
- "readme": "# ic-footer-link\r\n\r\n\r\n\r",
7258
+ "readme": "# ic-footer-link\n\n\n",
6595
7259
  "docs": "",
6596
7260
  "docsTags": [],
6597
7261
  "usage": {},
@@ -6827,7 +7491,7 @@
6827
7491
  "filePath": "src/components/ic-footer-link-group/ic-footer-link-group.tsx",
6828
7492
  "encapsulation": "shadow",
6829
7493
  "tag": "ic-footer-link-group",
6830
- "readme": "# ic-footer-link-group\r\n\r\n\r\n\r",
7494
+ "readme": "# ic-footer-link-group\n\n\n",
6831
7495
  "docs": "",
6832
7496
  "docsTags": [],
6833
7497
  "usage": {},
@@ -6891,7 +7555,7 @@
6891
7555
  "filePath": "src/components/ic-hero/ic-hero.tsx",
6892
7556
  "encapsulation": "shadow",
6893
7557
  "tag": "ic-hero",
6894
- "readme": "# ic-hero\r\n\r\n\r\n\r",
7558
+ "readme": "# ic-hero\n\n\n",
6895
7559
  "docs": "",
6896
7560
  "docsTags": [
6897
7561
  {
@@ -7241,7 +7905,7 @@
7241
7905
  "filePath": "src/components/ic-horizontal-scroll/ic-horizontal-scroll.tsx",
7242
7906
  "encapsulation": "shadow",
7243
7907
  "tag": "ic-horizontal-scroll",
7244
- "readme": "# ic-horizontal-scroll\r\n\r\n\r\n\r",
7908
+ "readme": "# ic-horizontal-scroll\n\n\n",
7245
7909
  "docs": "",
7246
7910
  "docsTags": [],
7247
7911
  "usage": {},
@@ -7333,7 +7997,7 @@
7333
7997
  "filePath": "src/components/ic-input-component-container/ic-input-component-container.tsx",
7334
7998
  "encapsulation": "none",
7335
7999
  "tag": "ic-input-component-container",
7336
- "readme": "# ic-input-container\r\n\r\n\r\n\r",
8000
+ "readme": "# ic-input-container\n\n\n",
7337
8001
  "docs": "",
7338
8002
  "docsTags": [
7339
8003
  {
@@ -7665,7 +8329,7 @@
7665
8329
  "filePath": "src/components/ic-input-container/ic-input-container.tsx",
7666
8330
  "encapsulation": "none",
7667
8331
  "tag": "ic-input-container",
7668
- "readme": "# ic-input-container\r\n\r\n\r\n\r",
8332
+ "readme": "# ic-input-container\n\n\n",
7669
8333
  "docs": "",
7670
8334
  "docsTags": [],
7671
8335
  "usage": {},
@@ -7753,7 +8417,7 @@
7753
8417
  "filePath": "src/components/ic-input-label/ic-input-label.tsx",
7754
8418
  "encapsulation": "none",
7755
8419
  "tag": "ic-input-label",
7756
- "readme": "# ic-input-label\r\n\r\n\r\n\r",
8420
+ "readme": "# ic-input-label\n\n\n",
7757
8421
  "docs": "",
7758
8422
  "docsTags": [],
7759
8423
  "usage": {},
@@ -8004,7 +8668,7 @@
8004
8668
  "filePath": "src/components/ic-input-validation/ic-input-validation.tsx",
8005
8669
  "encapsulation": "none",
8006
8670
  "tag": "ic-input-validation",
8007
- "readme": "# ic-input-validation\r\n\r\n\r\n\r",
8671
+ "readme": "# ic-input-validation\n\n\n",
8008
8672
  "docs": "",
8009
8673
  "docsTags": [
8010
8674
  {
@@ -8216,7 +8880,7 @@
8216
8880
  "filePath": "src/components/ic-link/ic-link.tsx",
8217
8881
  "encapsulation": "shadow",
8218
8882
  "tag": "ic-link",
8219
- "readme": "# ic-link\r\n\r\n\r\n\r",
8883
+ "readme": "# ic-link\n\n\n",
8220
8884
  "docs": "",
8221
8885
  "docsTags": [
8222
8886
  {
@@ -8556,7 +9220,7 @@
8556
9220
  "filePath": "src/components/ic-loading-indicator/ic-loading-indicator.tsx",
8557
9221
  "encapsulation": "shadow",
8558
9222
  "tag": "ic-loading-indicator",
8559
- "readme": "# ic-loading\r\n\r\n\r\n\r",
9223
+ "readme": "# ic-loading\n\n\n",
8560
9224
  "docs": "",
8561
9225
  "docsTags": [],
8562
9226
  "usage": {},
@@ -8620,7 +9284,7 @@
8620
9284
  "mutable": false,
8621
9285
  "attr": "label",
8622
9286
  "reflectToAttr": false,
8623
- "docs": "The label to be displayed beneath the loading indicator.\r\nDisplay a changing label by supplying an array of messages.",
9287
+ "docs": "The label to be displayed beneath the loading indicator.\nDisplay a changing label by supplying an array of messages.",
8624
9288
  "docsTags": [],
8625
9289
  "values": [
8626
9290
  {
@@ -8673,7 +9337,7 @@
8673
9337
  "mutable": false,
8674
9338
  "attr": "max",
8675
9339
  "reflectToAttr": false,
8676
- "docs": "The maximum value that the progress value can take.\r\nUsed to calculate the proportional width of the progress bar.",
9340
+ "docs": "The maximum value that the progress value can take.\nUsed to calculate the proportional width of the progress bar.",
8677
9341
  "docsTags": [],
8678
9342
  "default": "100",
8679
9343
  "values": [
@@ -8697,7 +9361,7 @@
8697
9361
  "mutable": false,
8698
9362
  "attr": "min",
8699
9363
  "reflectToAttr": false,
8700
- "docs": "The minimum value that the progress value can take.\r\nUsed to calculate the proportional width of the progress bar.",
9364
+ "docs": "The minimum value that the progress value can take.\nUsed to calculate the proportional width of the progress bar.",
8701
9365
  "docsTags": [],
8702
9366
  "default": "0",
8703
9367
  "values": [
@@ -8745,7 +9409,7 @@
8745
9409
  "mutable": false,
8746
9410
  "attr": "progress",
8747
9411
  "reflectToAttr": false,
8748
- "docs": "The current amount of progress made.\r\nIf not provided, component acts as an indeterminate loading indicator.",
9412
+ "docs": "The current amount of progress made.\nIf not provided, component acts as an indeterminate loading indicator.",
8749
9413
  "docsTags": [],
8750
9414
  "values": [
8751
9415
  {
@@ -8926,7 +9590,7 @@
8926
9590
  "filePath": "src/components/ic-menu/ic-menu.tsx",
8927
9591
  "encapsulation": "scoped",
8928
9592
  "tag": "ic-menu",
8929
- "readme": "# ic-menu\r\n\r\n\r\n\r",
9593
+ "readme": "# ic-menu\n\n\n",
8930
9594
  "docs": "",
8931
9595
  "docsTags": [],
8932
9596
  "usage": {},
@@ -9356,7 +10020,7 @@
9356
10020
  "docs": "The keyboard event which is available when handleKeyboardOpen is invoked."
9357
10021
  }
9358
10022
  ],
9359
- "docs": "Used alongside activationType\r\nIf menu is opened via keyboard navigation (i.e. Enter, ArrowUp or ArrowDown), emit optionSelect custom event.",
10023
+ "docs": "Used alongside activationType\nIf menu is opened via keyboard navigation (i.e. Enter, ArrowUp or ArrowDown), emit optionSelect custom event.",
9360
10024
  "docsTags": [
9361
10025
  {
9362
10026
  "name": "param",
@@ -9429,7 +10093,7 @@
9429
10093
  "filePath": "src/components/ic-menu-group/ic-menu-group.tsx",
9430
10094
  "encapsulation": "shadow",
9431
10095
  "tag": "ic-menu-group",
9432
- "readme": "# ic-menu-group\r\n\r\n\r\n\r",
10096
+ "readme": "# ic-menu-group\n\n\n",
9433
10097
  "docs": "",
9434
10098
  "docsTags": [],
9435
10099
  "usage": {},
@@ -9481,7 +10145,7 @@
9481
10145
  "filePath": "src/components/ic-menu-item/ic-menu-item.tsx",
9482
10146
  "encapsulation": "shadow",
9483
10147
  "tag": "ic-menu-item",
9484
- "readme": "# ic-menu-item\r\n\r\n\r\n\r",
10148
+ "readme": "# ic-menu-item\n\n\n",
9485
10149
  "docs": "",
9486
10150
  "docsTags": [
9487
10151
  {
@@ -9863,7 +10527,7 @@
9863
10527
  "detail": "{ checked: boolean; }",
9864
10528
  "bubbles": true,
9865
10529
  "complexType": {
9866
- "original": "{\r\n checked: boolean;\r\n }",
10530
+ "original": "{\n checked: boolean;\n }",
9867
10531
  "resolved": "{ checked: boolean; }",
9868
10532
  "references": {}
9869
10533
  },
@@ -9920,7 +10584,7 @@
9920
10584
  "filePath": "src/components/ic-navigation-button/ic-navigation-button.tsx",
9921
10585
  "encapsulation": "shadow",
9922
10586
  "tag": "ic-navigation-button",
9923
- "readme": "# ic-navigation-button\r\n\r\n\r\n\r",
10587
+ "readme": "# ic-navigation-button\n\n\n",
9924
10588
  "docs": "",
9925
10589
  "docsTags": [
9926
10590
  {
@@ -10279,7 +10943,7 @@
10279
10943
  "filePath": "src/components/ic-navigation-group/ic-navigation-group.tsx",
10280
10944
  "encapsulation": "shadow",
10281
10945
  "tag": "ic-navigation-group",
10282
- "readme": "# ic-navigation-group\r\n\r\n\r\n\r",
10946
+ "readme": "# ic-navigation-group\n\n\n",
10283
10947
  "docs": "",
10284
10948
  "docsTags": [],
10285
10949
  "usage": {},
@@ -10467,7 +11131,7 @@
10467
11131
  "filePath": "src/components/ic-navigation-item/ic-navigation-item.tsx",
10468
11132
  "encapsulation": "shadow",
10469
11133
  "tag": "ic-navigation-item",
10470
- "readme": "# ic-navigation-item\r\n\r\n\r\n\r",
11134
+ "readme": "# ic-navigation-item\n\n\n",
10471
11135
  "docs": "",
10472
11136
  "docsTags": [
10473
11137
  {
@@ -10842,7 +11506,7 @@
10842
11506
  "filePath": "src/components/ic-navigation-menu/ic-navigation-menu.tsx",
10843
11507
  "encapsulation": "shadow",
10844
11508
  "tag": "ic-navigation-menu",
10845
- "readme": "# ic-navigation-menu\r\n\r\n\r\n\r",
11509
+ "readme": "# ic-navigation-menu\n\n\n",
10846
11510
  "docs": "",
10847
11511
  "docsTags": [
10848
11512
  {
@@ -11018,7 +11682,7 @@
11018
11682
  "filePath": "src/components/ic-page-header/ic-page-header.tsx",
11019
11683
  "encapsulation": "shadow",
11020
11684
  "tag": "ic-page-header",
11021
- "readme": "# ic-page-header\r\n\r\n\r\n\r",
11685
+ "readme": "# ic-page-header\n\n\n",
11022
11686
  "docs": "",
11023
11687
  "docsTags": [
11024
11688
  {
@@ -11416,7 +12080,7 @@
11416
12080
  "filePath": "src/components/ic-pagination/ic-pagination.tsx",
11417
12081
  "encapsulation": "shadow",
11418
12082
  "tag": "ic-pagination",
11419
- "readme": "# ic-pagination\r\n\r\n\r\n\r",
12083
+ "readme": "# ic-pagination\n\n\n",
11420
12084
  "docs": "",
11421
12085
  "docsTags": [],
11422
12086
  "usage": {},
@@ -11871,7 +12535,7 @@
11871
12535
  "filePath": "src/components/ic-pagination-item/ic-pagination-item.tsx",
11872
12536
  "encapsulation": "shadow",
11873
12537
  "tag": "ic-pagination-item",
11874
- "readme": "# ic-pagination-item\r\n\r\n\r\n\r",
12538
+ "readme": "# ic-pagination-item\n\n\n",
11875
12539
  "docs": "",
11876
12540
  "docsTags": [],
11877
12541
  "usage": {},
@@ -12113,7 +12777,7 @@
12113
12777
  "filePath": "src/components/ic-popover-menu/ic-popover-menu.tsx",
12114
12778
  "encapsulation": "shadow",
12115
12779
  "tag": "ic-popover-menu",
12116
- "readme": "# ic-popover-menu\r\n\r\nThis is a wrapper component to be placed around one or more ic-menu-item components.\r\n\r",
12780
+ "readme": "# ic-popover-menu\n\nThis is a wrapper component to be placed around one or more ic-menu-item components.\n",
12117
12781
  "docs": "This is a wrapper component to be placed around one or more ic-menu-item components.",
12118
12782
  "docsTags": [],
12119
12783
  "usage": {},
@@ -12335,7 +12999,7 @@
12335
12999
  "filePath": "src/components/ic-radio-group/ic-radio-group.tsx",
12336
13000
  "encapsulation": "shadow",
12337
13001
  "tag": "ic-radio-group",
12338
- "readme": "# ic-radio-group\r\n\r\n\r\n\r",
13002
+ "readme": "# ic-radio-group\n\n\n",
12339
13003
  "docs": "",
12340
13004
  "docsTags": [
12341
13005
  {
@@ -12754,7 +13418,7 @@
12754
13418
  "filePath": "src/components/ic-radio-option/ic-radio-option.tsx",
12755
13419
  "encapsulation": "none",
12756
13420
  "tag": "ic-radio-option",
12757
- "readme": "# ic-radio-option\r\n\r\n\r\n\r",
13421
+ "readme": "# ic-radio-option\n\n\n",
12758
13422
  "docs": "",
12759
13423
  "docsTags": [
12760
13424
  {
@@ -13147,7 +13811,7 @@
13147
13811
  "filePath": "src/components/ic-search-bar/ic-search-bar.tsx",
13148
13812
  "encapsulation": "shadow",
13149
13813
  "tag": "ic-search-bar",
13150
- "readme": "# ic-search-bar\r\n\r\n\r\n\r",
13814
+ "readme": "# ic-search-bar\n\n\n",
13151
13815
  "docs": "",
13152
13816
  "docsTags": [
13153
13817
  {
@@ -13192,7 +13856,7 @@
13192
13856
  "mutable": false,
13193
13857
  "attr": "autocapitalize",
13194
13858
  "reflectToAttr": false,
13195
- "docs": "The automatic capitalisation of the text value as it is entered/edited by the user.\r\nAvailable options: \"off\", \"none\", \"on\", \"sentences\", \"words\", \"characters\".",
13859
+ "docs": "The automatic capitalisation of the text value as it is entered/edited by the user.\nAvailable options: \"off\", \"none\", \"on\", \"sentences\", \"words\", \"characters\".",
13196
13860
  "docsTags": [],
13197
13861
  "default": "\"off\"",
13198
13862
  "values": [
@@ -13566,7 +14230,7 @@
13566
14230
  "mutable": false,
13567
14231
  "attr": "disable-auto-filtering",
13568
14232
  "reflectToAttr": false,
13569
- "docs": "Specify whether to disable the built in filtering. For example, if options will already be filtered from external source.\r\nIf `true`, all options provided will be displayed.",
14233
+ "docs": "Specify whether to disable the built in filtering. For example, if options will already be filtered from external source.\nIf `true`, all options provided will be displayed.",
13570
14234
  "docsTags": [],
13571
14235
  "default": "false",
13572
14236
  "values": [
@@ -13662,7 +14326,7 @@
13662
14326
  "mutable": false,
13663
14327
  "attr": "full-width",
13664
14328
  "reflectToAttr": false,
13665
- "docs": "Specify whether the search bar fills the full width of the container.\r\nIf `true`, this overrides the --input-width CSS variable.",
14329
+ "docs": "Specify whether the search bar fills the full width of the container.\nIf `true`, this overrides the --input-width CSS variable.",
13666
14330
  "docsTags": [],
13667
14331
  "default": "false",
13668
14332
  "values": [
@@ -14485,7 +15149,7 @@
14485
15149
  "filePath": "src/components/ic-section-container/ic-section-container.tsx",
14486
15150
  "encapsulation": "shadow",
14487
15151
  "tag": "ic-section-container",
14488
- "readme": "# ic-section-container\r\n\r\n\r\n\r",
15152
+ "readme": "# ic-section-container\n\n\n",
14489
15153
  "docs": "",
14490
15154
  "docsTags": [],
14491
15155
  "usage": {},
@@ -14596,7 +15260,7 @@
14596
15260
  "filePath": "src/components/ic-select/ic-select.tsx",
14597
15261
  "encapsulation": "shadow",
14598
15262
  "tag": "ic-select",
14599
- "readme": "# ic-select\r\n\r\n\r\n\r",
15263
+ "readme": "# ic-select\n\n\n",
14600
15264
  "docs": "",
14601
15265
  "docsTags": [
14602
15266
  {
@@ -15384,7 +16048,7 @@
15384
16048
  "mutable": true,
15385
16049
  "attr": "value",
15386
16050
  "reflectToAttr": false,
15387
- "docs": "The value of the select, reflected by the value of the currently selected option.\r\nFor the searchable variant, the value is also reflected by the user input.\r\nFor the multi-select variant, the value must be an array of option values.",
16051
+ "docs": "The value of the select, reflected by the value of the currently selected option.\nFor the searchable variant, the value is also reflected by the user input.\nFor the multi-select variant, the value must be an array of option values.",
15388
16052
  "docsTags": [],
15389
16053
  "default": "null",
15390
16054
  "values": [
@@ -15576,7 +16240,7 @@
15576
16240
  },
15577
16241
  "cancelable": true,
15578
16242
  "composed": true,
15579
- "docs": "Emitted when an option is selected.\r\nSelecting an option will also trigger an `icChange/onIcChange` due to the value being updated.",
16243
+ "docs": "Emitted when an option is selected.\nSelecting an option will also trigger an `icChange/onIcChange` due to the value being updated.",
15580
16244
  "docsTags": []
15581
16245
  },
15582
16246
  {
@@ -15677,7 +16341,7 @@
15677
16341
  "filePath": "src/components/ic-side-navigation/ic-side-navigation.tsx",
15678
16342
  "encapsulation": "shadow",
15679
16343
  "tag": "ic-side-navigation",
15680
- "readme": "# ic-side-navigation\r\n\r\n\r\n\r",
16344
+ "readme": "# ic-side-navigation\n\n\n",
15681
16345
  "docs": "",
15682
16346
  "docsTags": [
15683
16347
  {
@@ -16083,8 +16747,8 @@
16083
16747
  "filePath": "src/components/ic-skeleton/ic-skeleton.tsx",
16084
16748
  "encapsulation": "shadow",
16085
16749
  "tag": "ic-skeleton",
16086
- "readme": "# ic-skeleton\r\n\r\nWhen using the skeleton component, an aria-live level should be applied to the parent element of the skeleton and the element that it is\r\nrepresenting so that any changes, such as the real element replacing the skeleton placeholder, are announced to assistive technology like screen readers. The recommendation is to use aria-live=\"polite\" over aria-live=\"recommended\" unless changes are critically important. \r\n\r",
16087
- "docs": "When using the skeleton component, an aria-live level should be applied to the parent element of the skeleton and the element that it is\r\nrepresenting so that any changes, such as the real element replacing the skeleton placeholder, are announced to assistive technology like screen readers. The recommendation is to use aria-live=\"polite\" over aria-live=\"recommended\" unless changes are critically important.",
16750
+ "readme": "# ic-skeleton\n\nWhen using the skeleton component, an aria-live level should be applied to the parent element of the skeleton and the element that it is\nrepresenting so that any changes, such as the real element replacing the skeleton placeholder, are announced to assistive technology like screen readers. The recommendation is to use aria-live=\"polite\" over aria-live=\"recommended\" unless changes are critically important. \n",
16751
+ "docs": "When using the skeleton component, an aria-live level should be applied to the parent element of the skeleton and the element that it is\nrepresenting so that any changes, such as the real element replacing the skeleton placeholder, are announced to assistive technology like screen readers. The recommendation is to use aria-live=\"polite\" over aria-live=\"recommended\" unless changes are critically important.",
16088
16752
  "docsTags": [],
16089
16753
  "usage": {},
16090
16754
  "props": [
@@ -16187,7 +16851,7 @@
16187
16851
  "filePath": "src/components/ic-skip-link/ic-skip-link.tsx",
16188
16852
  "encapsulation": "shadow",
16189
16853
  "tag": "ic-skip-link",
16190
- "readme": "# ic-skip-link\r\n\r\n\r\n\r",
16854
+ "readme": "# ic-skip-link\n\n\n",
16191
16855
  "docs": "",
16192
16856
  "docsTags": [],
16193
16857
  "usage": {},
@@ -16424,7 +17088,7 @@
16424
17088
  "filePath": "src/components/ic-status-tag/ic-status-tag.tsx",
16425
17089
  "encapsulation": "shadow",
16426
17090
  "tag": "ic-status-tag",
16427
- "readme": "# ic-status-tag\r\n\r\n\r\n\r",
17091
+ "readme": "# ic-status-tag\n\n\n",
16428
17092
  "docs": "",
16429
17093
  "docsTags": [],
16430
17094
  "usage": {},
@@ -16689,7 +17353,7 @@
16689
17353
  "filePath": "src/components/ic-step/ic-step.tsx",
16690
17354
  "encapsulation": "shadow",
16691
17355
  "tag": "ic-step",
16692
- "readme": "# ic-step\r\n\r\n\r\n\r",
17356
+ "readme": "# ic-step\n\n\n",
16693
17357
  "docs": "",
16694
17358
  "docsTags": [],
16695
17359
  "usage": {},
@@ -16855,7 +17519,7 @@
16855
17519
  "filePath": "src/components/ic-stepper/ic-stepper.tsx",
16856
17520
  "encapsulation": "shadow",
16857
17521
  "tag": "ic-stepper",
16858
- "readme": "# ic-stepper\r\n\r\nThis is a wrapper component to be placed around one or more ic-step components\r\n\r",
17522
+ "readme": "# ic-stepper\n\nThis is a wrapper component to be placed around one or more ic-step components\n",
16859
17523
  "docs": "This is a wrapper component to be placed around one or more ic-step components",
16860
17524
  "docsTags": [],
16861
17525
  "usage": {},
@@ -17047,7 +17711,7 @@
17047
17711
  "filePath": "src/components/ic-switch/ic-switch.tsx",
17048
17712
  "encapsulation": "shadow",
17049
17713
  "tag": "ic-switch",
17050
- "readme": "# ic-switch\r\n\r\n\r\n\r",
17714
+ "readme": "# ic-switch\n\n\n",
17051
17715
  "docs": "",
17052
17716
  "docsTags": [
17053
17717
  {
@@ -17310,7 +17974,7 @@
17310
17974
  "mutable": false,
17311
17975
  "attr": "value",
17312
17976
  "reflectToAttr": false,
17313
- "docs": "The value of the toggle does not mean if it's checked or not, use the `checked`\r\nproperty for that.\r\n\r\nThe value of a toggle is analogous to the value of a `<input type=\"checkbox\">`,\r\nit's only used when the toggle participates in a native `<form>`.",
17977
+ "docs": "The value of the toggle does not mean if it's checked or not, use the `checked`\nproperty for that.\n\nThe value of a toggle is analogous to the value of a `<input type=\"checkbox\">`,\nit's only used when the toggle participates in a native `<form>`.",
17314
17978
  "docsTags": [],
17315
17979
  "default": "\"on\"",
17316
17980
  "values": [
@@ -17434,7 +18098,7 @@
17434
18098
  "filePath": "src/components/ic-tab/ic-tab.tsx",
17435
18099
  "encapsulation": "shadow",
17436
18100
  "tag": "ic-tab",
17437
- "readme": "# ic-tab\r\n\r\n\r\n\r",
18101
+ "readme": "# ic-tab\n\n\n",
17438
18102
  "docs": "",
17439
18103
  "docsTags": [
17440
18104
  {
@@ -17528,7 +18192,7 @@
17528
18192
  "filePath": "src/components/ic-tab-context/ic-tab-context.tsx",
17529
18193
  "encapsulation": "none",
17530
18194
  "tag": "ic-tab-context",
17531
- "readme": "# ic-tab-context\r\n\r\n\r\n\r",
18195
+ "readme": "# ic-tab-context\n\n\n",
17532
18196
  "docs": "",
17533
18197
  "docsTags": [],
17534
18198
  "usage": {},
@@ -17750,7 +18414,7 @@
17750
18414
  "filePath": "src/components/ic-tab-group/ic-tab-group.tsx",
17751
18415
  "encapsulation": "shadow",
17752
18416
  "tag": "ic-tab-group",
17753
- "readme": "# ic-tab-group\r\n\r\n\r\n\r",
18417
+ "readme": "# ic-tab-group\n\n\n",
17754
18418
  "docs": "",
17755
18419
  "docsTags": [],
17756
18420
  "usage": {},
@@ -17840,7 +18504,7 @@
17840
18504
  "filePath": "src/components/ic-tab-panel/ic-tab-panel.tsx",
17841
18505
  "encapsulation": "shadow",
17842
18506
  "tag": "ic-tab-panel",
17843
- "readme": "# ic-tab-panel\r\n\r\n\r\n\r",
18507
+ "readme": "# ic-tab-panel\n\n\n",
17844
18508
  "docs": "",
17845
18509
  "docsTags": [],
17846
18510
  "usage": {},
@@ -17859,7 +18523,7 @@
17859
18523
  "filePath": "src/components/ic-text-field/ic-text-field.tsx",
17860
18524
  "encapsulation": "shadow",
17861
18525
  "tag": "ic-text-field",
17862
- "readme": "# ic-textfield\r\n\r\n\r\n\r",
18526
+ "readme": "# ic-textfield\n\n\n",
17863
18527
  "docs": "",
17864
18528
  "docsTags": [
17865
18529
  {
@@ -17884,7 +18548,7 @@
17884
18548
  "mutable": false,
17885
18549
  "attr": "autocapitalize",
17886
18550
  "reflectToAttr": false,
17887
- "docs": "The automatic capitalisation of the text value as it is entered/edited by the user.\r\nAvailable options: \"off\", \"none\", \"on\", \"sentences\", \"words\", \"characters\".",
18551
+ "docs": "The automatic capitalisation of the text value as it is entered/edited by the user.\nAvailable options: \"off\", \"none\", \"on\", \"sentences\", \"words\", \"characters\".",
17888
18552
  "docsTags": [],
17889
18553
  "default": "\"off\"",
17890
18554
  "values": [
@@ -18051,7 +18715,7 @@
18051
18715
  "mutable": false,
18052
18716
  "attr": "full-width",
18053
18717
  "reflectToAttr": false,
18054
- "docs": "Specify whether the text field fills the full width of the container.\r\nIf `true`, this overrides the --input-width CSS variable.",
18718
+ "docs": "Specify whether the text field fills the full width of the container.\nIf `true`, this overrides the --input-width CSS variable.",
18055
18719
  "docsTags": [],
18056
18720
  "default": "false",
18057
18721
  "values": [
@@ -18177,7 +18841,7 @@
18177
18841
  "mutable": false,
18178
18842
  "attr": "inputmode",
18179
18843
  "reflectToAttr": false,
18180
- "docs": "A hint to the browser for which keyboard to display.\r\nPossible values: `\"none\"`, `\"text\"`, `\"tel\"`, `\"url\"`,\r\n`\"email\"`, `\"numeric\"`, `\"decimal\"`, and `\"search\"`.",
18844
+ "docs": "A hint to the browser for which keyboard to display.\nPossible values: `\"none\"`, `\"text\"`, `\"tel\"`, `\"url\"`,\n`\"email\"`, `\"numeric\"`, `\"decimal\"`, and `\"search\"`.",
18181
18845
  "docsTags": [],
18182
18846
  "default": "\"text\"",
18183
18847
  "values": [
@@ -19048,7 +19712,7 @@
19048
19712
  "filePath": "src/components/ic-theme/ic-theme.tsx",
19049
19713
  "encapsulation": "none",
19050
19714
  "tag": "ic-theme",
19051
- "readme": "# ic-theme\r\n\r\n\r\n\r",
19715
+ "readme": "# ic-theme\n\n\n",
19052
19716
  "docs": "",
19053
19717
  "docsTags": [],
19054
19718
  "usage": {},
@@ -19173,7 +19837,7 @@
19173
19837
  "filePath": "src/components/ic-toast/ic-toast.tsx",
19174
19838
  "encapsulation": "shadow",
19175
19839
  "tag": "ic-toast",
19176
- "readme": "# ic-toast\r\n\r\n\r\n\r",
19840
+ "readme": "# ic-toast\n\n\n",
19177
19841
  "docs": "",
19178
19842
  "docsTags": [
19179
19843
  {
@@ -19491,7 +20155,7 @@
19491
20155
  "filePath": "src/components/ic-toast-region/ic-toast-region.tsx",
19492
20156
  "encapsulation": "none",
19493
20157
  "tag": "ic-toast-region",
19494
- "readme": "# ic-toast-region\r\n\r\n\r\n\r",
20158
+ "readme": "# ic-toast-region\n\n\n",
19495
20159
  "docs": "",
19496
20160
  "docsTags": [],
19497
20161
  "usage": {},
@@ -19547,7 +20211,7 @@
19547
20211
  "filePath": "src/components/ic-toggle-button/ic-toggle-button.tsx",
19548
20212
  "encapsulation": "shadow",
19549
20213
  "tag": "ic-toggle-button",
19550
- "readme": "# ic-toggle-button\r\n\r\n\r\n\r",
20214
+ "readme": "# ic-toggle-button\n\n\n",
19551
20215
  "docs": "",
19552
20216
  "docsTags": [
19553
20217
  {
@@ -19772,6 +20436,30 @@
19772
20436
  "getter": false,
19773
20437
  "setter": false
19774
20438
  },
20439
+ {
20440
+ "name": "outline",
20441
+ "type": "boolean",
20442
+ "complexType": {
20443
+ "original": "boolean",
20444
+ "resolved": "boolean",
20445
+ "references": {}
20446
+ },
20447
+ "mutable": true,
20448
+ "attr": "outline",
20449
+ "reflectToAttr": false,
20450
+ "docs": "If `true`, the toggle button will display with an outline.",
20451
+ "docsTags": [],
20452
+ "default": "true",
20453
+ "values": [
20454
+ {
20455
+ "type": "boolean"
20456
+ }
20457
+ ],
20458
+ "optional": false,
20459
+ "required": false,
20460
+ "getter": false,
20461
+ "setter": false
20462
+ },
19775
20463
  {
19776
20464
  "name": "size",
19777
20465
  "type": "\"large\" | \"medium\" | \"small\"",
@@ -19930,7 +20618,7 @@
19930
20618
  "detail": "{ checked: boolean; }",
19931
20619
  "bubbles": true,
19932
20620
  "complexType": {
19933
- "original": "{\r\n checked: boolean;\r\n }",
20621
+ "original": "{\n checked: boolean;\n }",
19934
20622
  "resolved": "{ checked: boolean; }",
19935
20623
  "references": {}
19936
20624
  },
@@ -19984,7 +20672,7 @@
19984
20672
  "filePath": "src/components/ic-toggle-button-group/ic-toggle-button-group.tsx",
19985
20673
  "encapsulation": "shadow",
19986
20674
  "tag": "ic-toggle-button-group",
19987
- "readme": "# ic-toggle-button-group\r\n\r\n\r\n\r",
20675
+ "readme": "# ic-toggle-button-group\n\n\n",
19988
20676
  "docs": "",
19989
20677
  "docsTags": [],
19990
20678
  "usage": {},
@@ -20150,6 +20838,30 @@
20150
20838
  "getter": false,
20151
20839
  "setter": false
20152
20840
  },
20841
+ {
20842
+ "name": "outline",
20843
+ "type": "boolean",
20844
+ "complexType": {
20845
+ "original": "boolean",
20846
+ "resolved": "boolean",
20847
+ "references": {}
20848
+ },
20849
+ "mutable": false,
20850
+ "attr": "outline",
20851
+ "reflectToAttr": false,
20852
+ "docs": "If `true`, the toggle button group will display with an outline.",
20853
+ "docsTags": [],
20854
+ "default": "true",
20855
+ "values": [
20856
+ {
20857
+ "type": "boolean"
20858
+ }
20859
+ ],
20860
+ "optional": false,
20861
+ "required": false,
20862
+ "getter": false,
20863
+ "setter": false
20864
+ },
20153
20865
  {
20154
20866
  "name": "selectMethod",
20155
20867
  "type": "\"auto\" | \"manual\"",
@@ -20412,7 +21124,7 @@
20412
21124
  "filePath": "src/components/ic-tooltip/ic-tooltip.tsx",
20413
21125
  "encapsulation": "shadow",
20414
21126
  "tag": "ic-tooltip",
20415
- "readme": "# ic-tooltip\r\n\r\n\r\n\r",
21127
+ "readme": "# ic-tooltip\n\n\n",
20416
21128
  "docs": "",
20417
21129
  "docsTags": [],
20418
21130
  "usage": {},
@@ -20534,7 +21246,7 @@
20534
21246
  }
20535
21247
  }
20536
21248
  },
20537
- "mutable": true,
21249
+ "mutable": false,
20538
21250
  "attr": "placement",
20539
21251
  "reflectToAttr": false,
20540
21252
  "docs": "The position of the tooltip in relation to the parent element.",
@@ -20764,7 +21476,7 @@
20764
21476
  "filePath": "src/components/ic-top-navigation/ic-top-navigation.tsx",
20765
21477
  "encapsulation": "shadow",
20766
21478
  "tag": "ic-top-navigation",
20767
- "readme": "# ic-top-navigation\r\n\r\n\r\n\r",
21479
+ "readme": "# ic-top-navigation\n\n\n",
20768
21480
  "docs": "",
20769
21481
  "docsTags": [
20770
21482
  {
@@ -20880,7 +21592,7 @@
20880
21592
  "mutable": false,
20881
21593
  "attr": "custom-mobile-breakpoint",
20882
21594
  "reflectToAttr": false,
20883
- "docs": "Can set a custom breakpoint for the top navigation to switch to mobile mode.\r\nMust be one of our specified breakpoints in px: `0`, `576`, `768`, `992`, `1200`.",
21595
+ "docs": "Can set a custom breakpoint for the top navigation to switch to mobile mode.\nMust be one of our specified breakpoints in px: `0`, `576`, `768`, `992`, `1200`.",
20884
21596
  "docsTags": [],
20885
21597
  "default": "DEVICE_SIZES.L",
20886
21598
  "values": [
@@ -21182,7 +21894,7 @@
21182
21894
  "filePath": "src/components/ic-typography/ic-typography.tsx",
21183
21895
  "encapsulation": "shadow",
21184
21896
  "tag": "ic-typography",
21185
- "readme": "# ic-typography\r\n\r\n\r\n\r",
21897
+ "readme": "# ic-typography\n\n\n",
21186
21898
  "docs": "",
21187
21899
  "docsTags": [],
21188
21900
  "usage": {},
@@ -21225,7 +21937,7 @@
21225
21937
  "mutable": false,
21226
21938
  "attr": "bold",
21227
21939
  "reflectToAttr": false,
21228
- "docs": "If `true`, the typography will have a bold font weight.\r\nNote: This will have no impact on variants that already use an equivalent or higher font weight (h1, h2, and subtitle-large).",
21940
+ "docs": "If `true`, the typography will have a bold font weight.\nNote: This will have no impact on variants that already use an equivalent or higher font weight (h1, h2, and subtitle-large).",
21229
21941
  "docsTags": [],
21230
21942
  "default": "false",
21231
21943
  "values": [
@@ -21494,6 +22206,7 @@
21494
22206
  "dependents": [
21495
22207
  "ic-accordion",
21496
22208
  "ic-accordion-group",
22209
+ "ic-action-chip",
21497
22210
  "ic-alert",
21498
22211
  "ic-badge",
21499
22212
  "ic-button",
@@ -21540,6 +22253,9 @@
21540
22253
  "ic-accordion-group": [
21541
22254
  "ic-typography"
21542
22255
  ],
22256
+ "ic-action-chip": [
22257
+ "ic-typography"
22258
+ ],
21543
22259
  "ic-alert": [
21544
22260
  "ic-typography"
21545
22261
  ],
@@ -21665,8 +22381,18 @@
21665
22381
  "docstring": "",
21666
22382
  "path": "src/utils/types.ts"
21667
22383
  },
22384
+ "src/components/ic-button/ic-button.types.ts::IcButtonTypes": {
22385
+ "declaration": "export type IcButtonTypes = \"reset\" | \"submit\" | \"button\";",
22386
+ "docstring": "",
22387
+ "path": "src/components/ic-button/ic-button.types.ts"
22388
+ },
22389
+ "src/utils/types.ts::IcEmphasisType": {
22390
+ "declaration": "export type IcEmphasisType = \"filled\" | \"outlined\";",
22391
+ "docstring": "",
22392
+ "path": "src/utils/types.ts"
22393
+ },
21668
22394
  "src/utils/types.ts::IcStatusVariants": {
21669
- "declaration": "export type IcStatusVariants =\r\n | \"neutral\"\r\n | \"info\"\r\n | \"warning\"\r\n | \"error\"\r\n | \"success\";",
22395
+ "declaration": "export type IcStatusVariants =\n | \"neutral\"\n | \"info\"\n | \"warning\"\n | \"error\"\n | \"success\";",
21670
22396
  "docstring": "",
21671
22397
  "path": "src/utils/types.ts"
21672
22398
  },
@@ -21700,11 +22426,6 @@
21700
22426
  "docstring": "",
21701
22427
  "path": "src/utils/types.ts"
21702
22428
  },
21703
- "src/components/ic-button/ic-button.types.ts::IcButtonTypes": {
21704
- "declaration": "export type IcButtonTypes = \"reset\" | \"submit\" | \"button\";",
21705
- "docstring": "",
21706
- "path": "src/components/ic-button/ic-button.types.ts"
21707
- },
21708
22429
  "src/components/ic-button/ic-button.types.ts::IcButtonVariants": {
21709
22430
  "declaration": "export type IcButtonVariants =\n | \"primary\"\n | \"secondary\"\n | \"tertiary\"\n | \"destructive\"\n | \"icon\"\n | \"icon-primary\"\n | \"icon-secondary\"\n | \"icon-tertiary\"\n | \"icon-destructive\";",
21710
22431
  "docstring": "",
@@ -21730,11 +22451,6 @@
21730
22451
  "docstring": "",
21731
22452
  "path": "src/components/ic-badge/ic-badge.types.ts"
21732
22453
  },
21733
- "src/utils/types.ts::IcEmphasisType": {
21734
- "declaration": "export type IcEmphasisType = \"filled\" | \"outlined\";",
21735
- "docstring": "",
21736
- "path": "src/utils/types.ts"
21737
- },
21738
22454
  "src/components/ic-tab/ic-tab.types.ts::IcTabClickEventDetail": {
21739
22455
  "declaration": "export interface IcTabClickEventDetail {\n tabId: string;\n contextId: string;\n position: number;\n}",
21740
22456
  "docstring": "",
@@ -21771,7 +22487,7 @@
21771
22487
  "path": "src/components/ic-text-field/ic-text-field.types.ts"
21772
22488
  },
21773
22489
  "src/utils/types.ts::IcAutocompleteTypes": {
21774
- "declaration": "export type IcAutocompleteTypes =\r\n | \"on\"\r\n | \"off\"\r\n | \"name\"\r\n | \"honorific-prefix\"\r\n | \"given-name\"\r\n | \"additional-name\"\r\n | \"family-name\"\r\n | \"honorific-suffix\"\r\n | \"nickname\"\r\n | \"email\"\r\n | \"username\"\r\n | \"new-password\"\r\n | \"current-password\"\r\n | \"one-time-code\"\r\n | \"organization-title\"\r\n | \"organization\"\r\n | \"street-address\"\r\n | \"address-line1\"\r\n | \"address-line2\"\r\n | \"address-line3\"\r\n | \"address-level4\"\r\n | \"address-level3\"\r\n | \"address-level2\"\r\n | \"address-level1\"\r\n | \"country\"\r\n | \"country-name\"\r\n | \"postal-code\"\r\n | \"cc-name\"\r\n | \"cc-given-name\"\r\n | \"cc-additional-name\"\r\n | \"cc-family-name\"\r\n | \"cc-family-name\"\r\n | \"cc-number\"\r\n | \"cc-exp\"\r\n | \"cc-exp-month\"\r\n | \"cc-exp-year\"\r\n | \"cc-csc\"\r\n | \"cc-type\"\r\n | \"transaction-currency\"\r\n | \"transaction-amount\"\r\n | \"language\"\r\n | \"bday\"\r\n | \"bday-day\"\r\n | \"bday-month\"\r\n | \"bday-year\"\r\n | \"sex\"\r\n | \"tel\"\r\n | \"tel-country-code\"\r\n | \"tel-national\"\r\n | \"tel-area-code\"\r\n | \"tel-local\"\r\n | \"tel-extension\"\r\n | \"impp\"\r\n | \"url\"\r\n | \"photo\";",
22490
+ "declaration": "export type IcAutocompleteTypes =\n | \"on\"\n | \"off\"\n | \"name\"\n | \"honorific-prefix\"\n | \"given-name\"\n | \"additional-name\"\n | \"family-name\"\n | \"honorific-suffix\"\n | \"nickname\"\n | \"email\"\n | \"username\"\n | \"new-password\"\n | \"current-password\"\n | \"one-time-code\"\n | \"organization-title\"\n | \"organization\"\n | \"street-address\"\n | \"address-line1\"\n | \"address-line2\"\n | \"address-line3\"\n | \"address-level4\"\n | \"address-level3\"\n | \"address-level2\"\n | \"address-level1\"\n | \"country\"\n | \"country-name\"\n | \"postal-code\"\n | \"cc-name\"\n | \"cc-given-name\"\n | \"cc-additional-name\"\n | \"cc-family-name\"\n | \"cc-family-name\"\n | \"cc-number\"\n | \"cc-exp\"\n | \"cc-exp-month\"\n | \"cc-exp-year\"\n | \"cc-csc\"\n | \"cc-type\"\n | \"transaction-currency\"\n | \"transaction-amount\"\n | \"language\"\n | \"bday\"\n | \"bday-day\"\n | \"bday-month\"\n | \"bday-year\"\n | \"sex\"\n | \"tel\"\n | \"tel-country-code\"\n | \"tel-national\"\n | \"tel-area-code\"\n | \"tel-local\"\n | \"tel-extension\"\n | \"impp\"\n | \"url\"\n | \"photo\";",
21775
22491
  "docstring": "",
21776
22492
  "path": "src/utils/types.ts"
21777
22493
  },
@@ -21796,7 +22512,7 @@
21796
22512
  "path": "src/components/ic-text-field/ic-text-field.types.ts"
21797
22513
  },
21798
22514
  "src/utils/types.ts::IcValueEventDetail": {
21799
- "declaration": "export interface IcValueEventDetail {\r\n value: string;\r\n keyPressed?: string;\r\n}",
22515
+ "declaration": "export interface IcValueEventDetail {\n value: string;\n keyPressed?: string;\n}",
21800
22516
  "docstring": "",
21801
22517
  "path": "src/utils/types.ts"
21802
22518
  },
@@ -21806,7 +22522,7 @@
21806
22522
  "path": "src/components/ic-search-bar/ic-search-bar.types.ts"
21807
22523
  },
21808
22524
  "src/utils/types.ts::IcMenuOption": {
21809
- "declaration": "export interface IcMenuOption {\r\n description?: string;\r\n disabled?: boolean;\r\n recommended?: boolean;\r\n children?: IcMenuOption[];\r\n loading?: boolean;\r\n timedOut?: boolean;\r\n [key: string]: any;\r\n element?: {\r\n component: any;\r\n ariaLabel: string;\r\n };\r\n icon?: any;\r\n}",
22525
+ "declaration": "export interface IcMenuOption {\n description?: string;\n disabled?: boolean;\n recommended?: boolean;\n children?: IcMenuOption[];\n loading?: boolean;\n timedOut?: boolean;\n [key: string]: any;\n element?: {\n component: any;\n ariaLabel: string;\n };\n icon?: any;\n}",
21810
22526
  "docstring": "",
21811
22527
  "path": "src/utils/types.ts"
21812
22528
  },
@@ -21821,12 +22537,12 @@
21821
22537
  "path": "src/components/ic-menu/ic-menu.types.ts"
21822
22538
  },
21823
22539
  "src/utils/types.ts::IcBlurEventDetail": {
21824
- "declaration": "export interface IcBlurEventDetail {\r\n relatedTarget: IcRelatedTarget | null;\r\n}",
22540
+ "declaration": "export interface IcBlurEventDetail {\n relatedTarget: IcRelatedTarget | null;\n}",
21825
22541
  "docstring": "",
21826
22542
  "path": "src/utils/types.ts"
21827
22543
  },
21828
22544
  "src/utils/types.ts::IcMultiValueEventDetail": {
21829
- "declaration": "export interface IcMultiValueEventDetail {\r\n value: string | string[] | null;\r\n keyPressed?: string;\r\n}",
22545
+ "declaration": "export interface IcMultiValueEventDetail {\n value: string | string[] | null;\n keyPressed?: string;\n}",
21830
22546
  "docstring": "",
21831
22547
  "path": "src/utils/types.ts"
21832
22548
  },
@@ -21866,7 +22582,7 @@
21866
22582
  "path": "src/components/ic-divider/ic-divider.types.tsx"
21867
22583
  },
21868
22584
  "src/utils/types.ts::IcTypographyVariants": {
21869
- "declaration": "export type IcTypographyVariants =\r\n | \"h1\"\r\n | \"h2\"\r\n | \"h3\"\r\n | \"h4\"\r\n | \"subtitle-large\"\r\n | \"subtitle-small\"\r\n | \"body\"\r\n | \"label\"\r\n | \"label-uppercase\"\r\n | \"caption\"\r\n | \"caption-uppercase\"\r\n | \"code-large\"\r\n | \"code-small\"\r\n | \"code-extra-small\"\r\n | \"badge\"\r\n | \"badge-small\";",
22585
+ "declaration": "export type IcTypographyVariants =\n | \"h1\"\n | \"h2\"\n | \"h3\"\n | \"h4\"\n | \"subtitle-large\"\n | \"subtitle-small\"\n | \"body\"\n | \"label\"\n | \"label-uppercase\"\n | \"caption\"\n | \"caption-uppercase\"\n | \"code-large\"\n | \"code-small\"\n | \"code-extra-small\"\n | \"badge\"\n | \"badge-small\";",
21870
22586
  "docstring": "",
21871
22587
  "path": "src/utils/types.ts"
21872
22588
  },
@@ -21991,7 +22707,7 @@
21991
22707
  "path": "src/utils/types.ts"
21992
22708
  },
21993
22709
  "src/utils/types.ts::IcBrand": {
21994
- "declaration": "{\r\n mode: IcBrandForeground;\r\n color: IcColorRGB;\r\n}",
22710
+ "declaration": "{\n mode: IcBrandForeground;\n color: IcColorRGB;\n}",
21995
22711
  "docstring": "",
21996
22712
  "path": "src/utils/types.ts"
21997
22713
  },