@ukic/docs 2.5.0 → 2.6.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.
- package/docs.json +1754 -119
- package/package.json +2 -2
package/docs.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2023-
|
|
2
|
+
"timestamp": "2023-11-06T14:24:06",
|
|
3
3
|
"compiler": {
|
|
4
4
|
"name": "@stencil/core",
|
|
5
5
|
"version": "4.3.0",
|
|
@@ -691,6 +691,372 @@
|
|
|
691
691
|
]
|
|
692
692
|
}
|
|
693
693
|
},
|
|
694
|
+
{
|
|
695
|
+
"filePath": "src/components/ic-badge/ic-badge.tsx",
|
|
696
|
+
"encapsulation": "shadow",
|
|
697
|
+
"tag": "ic-badge",
|
|
698
|
+
"readme": "# ic-badge\n\n\n",
|
|
699
|
+
"docs": "",
|
|
700
|
+
"docsTags": [],
|
|
701
|
+
"usage": {},
|
|
702
|
+
"props": [
|
|
703
|
+
{
|
|
704
|
+
"name": "accessibleLabel",
|
|
705
|
+
"type": "string",
|
|
706
|
+
"complexType": {
|
|
707
|
+
"original": "string",
|
|
708
|
+
"resolved": "string",
|
|
709
|
+
"references": {}
|
|
710
|
+
},
|
|
711
|
+
"mutable": false,
|
|
712
|
+
"attr": "accessible-label",
|
|
713
|
+
"reflectToAttr": false,
|
|
714
|
+
"docs": "The accessible label of the badge component to provide context for screen reader users.",
|
|
715
|
+
"docsTags": [],
|
|
716
|
+
"values": [
|
|
717
|
+
{
|
|
718
|
+
"type": "string"
|
|
719
|
+
}
|
|
720
|
+
],
|
|
721
|
+
"optional": true,
|
|
722
|
+
"required": false
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
"name": "customColor",
|
|
726
|
+
"type": "`#${string}` | `rgb(${string})` | `rgba(${string})`",
|
|
727
|
+
"complexType": {
|
|
728
|
+
"original": "IcColor",
|
|
729
|
+
"resolved": "`#${string}` | `rgb(${string})` | `rgba(${string})`",
|
|
730
|
+
"references": {
|
|
731
|
+
"IcColor": {
|
|
732
|
+
"location": "import",
|
|
733
|
+
"path": "./ic-badge.types",
|
|
734
|
+
"id": "src/components/ic-badge/ic-badge.types.ts::IcColor"
|
|
735
|
+
}
|
|
736
|
+
}
|
|
737
|
+
},
|
|
738
|
+
"mutable": false,
|
|
739
|
+
"attr": "custom-color",
|
|
740
|
+
"reflectToAttr": false,
|
|
741
|
+
"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)\".",
|
|
742
|
+
"docsTags": [],
|
|
743
|
+
"default": "null",
|
|
744
|
+
"values": [
|
|
745
|
+
{
|
|
746
|
+
"type": "`#${string}`"
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
"type": "`rgb(${string})`"
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
"type": "`rgba(${string})`"
|
|
753
|
+
}
|
|
754
|
+
],
|
|
755
|
+
"optional": true,
|
|
756
|
+
"required": false
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
"name": "maxNumber",
|
|
760
|
+
"type": "number",
|
|
761
|
+
"complexType": {
|
|
762
|
+
"original": "number",
|
|
763
|
+
"resolved": "number",
|
|
764
|
+
"references": {}
|
|
765
|
+
},
|
|
766
|
+
"mutable": false,
|
|
767
|
+
"attr": "max-number",
|
|
768
|
+
"reflectToAttr": false,
|
|
769
|
+
"docs": "The maximum number shown on the badge appended with a +.\nThis will only be displayed if type=\"text\" and textLabel is not empty.",
|
|
770
|
+
"docsTags": [],
|
|
771
|
+
"values": [
|
|
772
|
+
{
|
|
773
|
+
"type": "number"
|
|
774
|
+
}
|
|
775
|
+
],
|
|
776
|
+
"optional": true,
|
|
777
|
+
"required": false
|
|
778
|
+
},
|
|
779
|
+
{
|
|
780
|
+
"name": "position",
|
|
781
|
+
"type": "\"far\" | \"inline\" | \"near\"",
|
|
782
|
+
"complexType": {
|
|
783
|
+
"original": "IcBadgePositions",
|
|
784
|
+
"resolved": "\"far\" | \"inline\" | \"near\"",
|
|
785
|
+
"references": {
|
|
786
|
+
"IcBadgePositions": {
|
|
787
|
+
"location": "import",
|
|
788
|
+
"path": "./ic-badge.types",
|
|
789
|
+
"id": "src/components/ic-badge/ic-badge.types.ts::IcBadgePositions"
|
|
790
|
+
}
|
|
791
|
+
}
|
|
792
|
+
},
|
|
793
|
+
"mutable": false,
|
|
794
|
+
"attr": "position",
|
|
795
|
+
"reflectToAttr": false,
|
|
796
|
+
"docs": "The positioning of the badge in reference to the parent element.",
|
|
797
|
+
"docsTags": [],
|
|
798
|
+
"default": "\"far\"",
|
|
799
|
+
"values": [
|
|
800
|
+
{
|
|
801
|
+
"value": "far",
|
|
802
|
+
"type": "string"
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
"value": "inline",
|
|
806
|
+
"type": "string"
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
"value": "near",
|
|
810
|
+
"type": "string"
|
|
811
|
+
}
|
|
812
|
+
],
|
|
813
|
+
"optional": true,
|
|
814
|
+
"required": false
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
"name": "size",
|
|
818
|
+
"type": "\"default\" | \"large\" | \"small\"",
|
|
819
|
+
"complexType": {
|
|
820
|
+
"original": "IcSizes",
|
|
821
|
+
"resolved": "\"default\" | \"large\" | \"small\"",
|
|
822
|
+
"references": {
|
|
823
|
+
"IcSizes": {
|
|
824
|
+
"location": "import",
|
|
825
|
+
"path": "../../utils/types",
|
|
826
|
+
"id": "src/utils/types.ts::IcSizes"
|
|
827
|
+
}
|
|
828
|
+
}
|
|
829
|
+
},
|
|
830
|
+
"mutable": false,
|
|
831
|
+
"attr": "size",
|
|
832
|
+
"reflectToAttr": false,
|
|
833
|
+
"docs": "The size of the badge to be displayed.",
|
|
834
|
+
"docsTags": [],
|
|
835
|
+
"default": "\"default\"",
|
|
836
|
+
"values": [
|
|
837
|
+
{
|
|
838
|
+
"value": "default",
|
|
839
|
+
"type": "string"
|
|
840
|
+
},
|
|
841
|
+
{
|
|
842
|
+
"value": "large",
|
|
843
|
+
"type": "string"
|
|
844
|
+
},
|
|
845
|
+
{
|
|
846
|
+
"value": "small",
|
|
847
|
+
"type": "string"
|
|
848
|
+
}
|
|
849
|
+
],
|
|
850
|
+
"optional": true,
|
|
851
|
+
"required": false
|
|
852
|
+
},
|
|
853
|
+
{
|
|
854
|
+
"name": "textLabel",
|
|
855
|
+
"type": "string",
|
|
856
|
+
"complexType": {
|
|
857
|
+
"original": "string",
|
|
858
|
+
"resolved": "string",
|
|
859
|
+
"references": {}
|
|
860
|
+
},
|
|
861
|
+
"mutable": false,
|
|
862
|
+
"attr": "text-label",
|
|
863
|
+
"reflectToAttr": false,
|
|
864
|
+
"docs": "The text displayed in the badge. This will only be displayed if type=\"text\".",
|
|
865
|
+
"docsTags": [],
|
|
866
|
+
"values": [
|
|
867
|
+
{
|
|
868
|
+
"type": "string"
|
|
869
|
+
}
|
|
870
|
+
],
|
|
871
|
+
"optional": true,
|
|
872
|
+
"required": false
|
|
873
|
+
},
|
|
874
|
+
{
|
|
875
|
+
"name": "type",
|
|
876
|
+
"type": "\"dot\" | \"icon\" | \"text\"",
|
|
877
|
+
"complexType": {
|
|
878
|
+
"original": "IcBadgeTypes",
|
|
879
|
+
"resolved": "\"dot\" | \"icon\" | \"text\"",
|
|
880
|
+
"references": {
|
|
881
|
+
"IcBadgeTypes": {
|
|
882
|
+
"location": "import",
|
|
883
|
+
"path": "./ic-badge.types",
|
|
884
|
+
"id": "src/components/ic-badge/ic-badge.types.ts::IcBadgeTypes"
|
|
885
|
+
}
|
|
886
|
+
}
|
|
887
|
+
},
|
|
888
|
+
"mutable": false,
|
|
889
|
+
"attr": "type",
|
|
890
|
+
"reflectToAttr": false,
|
|
891
|
+
"docs": "The type of badge to be displayed.",
|
|
892
|
+
"docsTags": [],
|
|
893
|
+
"default": "\"text\"",
|
|
894
|
+
"values": [
|
|
895
|
+
{
|
|
896
|
+
"value": "dot",
|
|
897
|
+
"type": "string"
|
|
898
|
+
},
|
|
899
|
+
{
|
|
900
|
+
"value": "icon",
|
|
901
|
+
"type": "string"
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
"value": "text",
|
|
905
|
+
"type": "string"
|
|
906
|
+
}
|
|
907
|
+
],
|
|
908
|
+
"optional": true,
|
|
909
|
+
"required": false
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
"name": "variant",
|
|
913
|
+
"type": "\"custom\" | \"error\" | \"info\" | \"light\" | \"neutral\" | \"success\" | \"warning\"",
|
|
914
|
+
"complexType": {
|
|
915
|
+
"original": "IcBadgeVariants",
|
|
916
|
+
"resolved": "\"custom\" | \"error\" | \"info\" | \"light\" | \"neutral\" | \"success\" | \"warning\"",
|
|
917
|
+
"references": {
|
|
918
|
+
"IcBadgeVariants": {
|
|
919
|
+
"location": "import",
|
|
920
|
+
"path": "./ic-badge.types",
|
|
921
|
+
"id": "src/components/ic-badge/ic-badge.types.ts::IcBadgeVariants"
|
|
922
|
+
}
|
|
923
|
+
}
|
|
924
|
+
},
|
|
925
|
+
"mutable": false,
|
|
926
|
+
"attr": "variant",
|
|
927
|
+
"reflectToAttr": false,
|
|
928
|
+
"docs": "The variant of the badge to be displayed.",
|
|
929
|
+
"docsTags": [],
|
|
930
|
+
"default": "\"neutral\"",
|
|
931
|
+
"values": [
|
|
932
|
+
{
|
|
933
|
+
"value": "custom",
|
|
934
|
+
"type": "string"
|
|
935
|
+
},
|
|
936
|
+
{
|
|
937
|
+
"value": "error",
|
|
938
|
+
"type": "string"
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
"value": "info",
|
|
942
|
+
"type": "string"
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
"value": "light",
|
|
946
|
+
"type": "string"
|
|
947
|
+
},
|
|
948
|
+
{
|
|
949
|
+
"value": "neutral",
|
|
950
|
+
"type": "string"
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"value": "success",
|
|
954
|
+
"type": "string"
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
"value": "warning",
|
|
958
|
+
"type": "string"
|
|
959
|
+
}
|
|
960
|
+
],
|
|
961
|
+
"optional": true,
|
|
962
|
+
"required": false
|
|
963
|
+
},
|
|
964
|
+
{
|
|
965
|
+
"name": "visible",
|
|
966
|
+
"type": "boolean",
|
|
967
|
+
"complexType": {
|
|
968
|
+
"original": "boolean",
|
|
969
|
+
"resolved": "boolean",
|
|
970
|
+
"references": {}
|
|
971
|
+
},
|
|
972
|
+
"mutable": false,
|
|
973
|
+
"attr": "visible",
|
|
974
|
+
"reflectToAttr": false,
|
|
975
|
+
"docs": "If `true`, the badge will be displayed.",
|
|
976
|
+
"docsTags": [],
|
|
977
|
+
"default": "true",
|
|
978
|
+
"values": [
|
|
979
|
+
{
|
|
980
|
+
"type": "boolean"
|
|
981
|
+
}
|
|
982
|
+
],
|
|
983
|
+
"optional": false,
|
|
984
|
+
"required": false
|
|
985
|
+
}
|
|
986
|
+
],
|
|
987
|
+
"methods": [
|
|
988
|
+
{
|
|
989
|
+
"name": "hideBadge",
|
|
990
|
+
"returns": {
|
|
991
|
+
"type": "Promise<void>",
|
|
992
|
+
"docs": ""
|
|
993
|
+
},
|
|
994
|
+
"complexType": {
|
|
995
|
+
"signature": "() => Promise<void>",
|
|
996
|
+
"parameters": [],
|
|
997
|
+
"references": {
|
|
998
|
+
"Promise": {
|
|
999
|
+
"location": "global",
|
|
1000
|
+
"id": "global::Promise"
|
|
1001
|
+
}
|
|
1002
|
+
},
|
|
1003
|
+
"return": "Promise<void>"
|
|
1004
|
+
},
|
|
1005
|
+
"signature": "hideBadge() => Promise<void>",
|
|
1006
|
+
"parameters": [],
|
|
1007
|
+
"docs": "",
|
|
1008
|
+
"docsTags": [
|
|
1009
|
+
{
|
|
1010
|
+
"name": "deprecated",
|
|
1011
|
+
"text": "This method should not be used anymore. Use visible prop to set badge visibility."
|
|
1012
|
+
}
|
|
1013
|
+
],
|
|
1014
|
+
"deprecation": "This method should not be used anymore. Use visible prop to set badge visibility."
|
|
1015
|
+
},
|
|
1016
|
+
{
|
|
1017
|
+
"name": "showBadge",
|
|
1018
|
+
"returns": {
|
|
1019
|
+
"type": "Promise<void>",
|
|
1020
|
+
"docs": ""
|
|
1021
|
+
},
|
|
1022
|
+
"complexType": {
|
|
1023
|
+
"signature": "() => Promise<void>",
|
|
1024
|
+
"parameters": [],
|
|
1025
|
+
"references": {
|
|
1026
|
+
"Promise": {
|
|
1027
|
+
"location": "global",
|
|
1028
|
+
"id": "global::Promise"
|
|
1029
|
+
}
|
|
1030
|
+
},
|
|
1031
|
+
"return": "Promise<void>"
|
|
1032
|
+
},
|
|
1033
|
+
"signature": "showBadge() => Promise<void>",
|
|
1034
|
+
"parameters": [],
|
|
1035
|
+
"docs": "",
|
|
1036
|
+
"docsTags": [
|
|
1037
|
+
{
|
|
1038
|
+
"name": "deprecated",
|
|
1039
|
+
"text": "This method should not be used anymore. Use visible prop to set badge visibility."
|
|
1040
|
+
}
|
|
1041
|
+
],
|
|
1042
|
+
"deprecation": "This method should not be used anymore. Use visible prop to set badge visibility."
|
|
1043
|
+
}
|
|
1044
|
+
],
|
|
1045
|
+
"events": [],
|
|
1046
|
+
"listeners": [],
|
|
1047
|
+
"styles": [],
|
|
1048
|
+
"slots": [],
|
|
1049
|
+
"parts": [],
|
|
1050
|
+
"dependents": [],
|
|
1051
|
+
"dependencies": [
|
|
1052
|
+
"ic-typography"
|
|
1053
|
+
],
|
|
1054
|
+
"dependencyGraph": {
|
|
1055
|
+
"ic-badge": [
|
|
1056
|
+
"ic-typography"
|
|
1057
|
+
]
|
|
1058
|
+
}
|
|
1059
|
+
},
|
|
694
1060
|
{
|
|
695
1061
|
"filePath": "src/components/ic-breadcrumb/ic-breadcrumb.tsx",
|
|
696
1062
|
"encapsulation": "shadow",
|
|
@@ -910,6 +1276,10 @@
|
|
|
910
1276
|
{
|
|
911
1277
|
"name": "slot",
|
|
912
1278
|
"text": "right-icon - Content will be placed to the right of the button label."
|
|
1279
|
+
},
|
|
1280
|
+
{
|
|
1281
|
+
"name": "slot",
|
|
1282
|
+
"text": "badge - Badge component overlaying the top right of the button."
|
|
913
1283
|
}
|
|
914
1284
|
],
|
|
915
1285
|
"usage": {},
|
|
@@ -1573,6 +1943,10 @@
|
|
|
1573
1943
|
}
|
|
1574
1944
|
],
|
|
1575
1945
|
"slots": [
|
|
1946
|
+
{
|
|
1947
|
+
"name": "badge",
|
|
1948
|
+
"docs": "Badge component overlaying the top right of the button."
|
|
1949
|
+
},
|
|
1576
1950
|
{
|
|
1577
1951
|
"name": "icon",
|
|
1578
1952
|
"docs": "Deprecated. This slot should not be used anymore. Use left-icon or right-icon slot instead."
|
|
@@ -1712,6 +2086,10 @@
|
|
|
1712
2086
|
{
|
|
1713
2087
|
"name": "slot",
|
|
1714
2088
|
"text": "expanded-content - Content will be placed below the interaction controls but will not initially be rendered."
|
|
2089
|
+
},
|
|
2090
|
+
{
|
|
2091
|
+
"name": "slot",
|
|
2092
|
+
"text": "badge - Badge component overlaying the top right of the card."
|
|
1715
2093
|
}
|
|
1716
2094
|
],
|
|
1717
2095
|
"usage": {},
|
|
@@ -2056,6 +2434,10 @@
|
|
|
2056
2434
|
"name": "adornment",
|
|
2057
2435
|
"docs": "Content will be placed below the card subheading."
|
|
2058
2436
|
},
|
|
2437
|
+
{
|
|
2438
|
+
"name": "badge",
|
|
2439
|
+
"docs": "Badge component overlaying the top right of the card."
|
|
2440
|
+
},
|
|
2059
2441
|
{
|
|
2060
2442
|
"name": "expanded-content",
|
|
2061
2443
|
"docs": "Content will be placed below the interaction controls but will not initially be rendered."
|
|
@@ -2122,7 +2504,12 @@
|
|
|
2122
2504
|
"tag": "ic-checkbox",
|
|
2123
2505
|
"readme": "# ic-checkbox\n\n\n",
|
|
2124
2506
|
"docs": "",
|
|
2125
|
-
"docsTags": [
|
|
2507
|
+
"docsTags": [
|
|
2508
|
+
{
|
|
2509
|
+
"name": "slot",
|
|
2510
|
+
"text": "additional-field - Content to be displayed alongside a checkbox."
|
|
2511
|
+
}
|
|
2512
|
+
],
|
|
2126
2513
|
"usage": {},
|
|
2127
2514
|
"props": [
|
|
2128
2515
|
{
|
|
@@ -2224,6 +2611,132 @@
|
|
|
2224
2611
|
"optional": false,
|
|
2225
2612
|
"required": false
|
|
2226
2613
|
},
|
|
2614
|
+
{
|
|
2615
|
+
"name": "form",
|
|
2616
|
+
"type": "string",
|
|
2617
|
+
"complexType": {
|
|
2618
|
+
"original": "string",
|
|
2619
|
+
"resolved": "string",
|
|
2620
|
+
"references": {}
|
|
2621
|
+
},
|
|
2622
|
+
"mutable": false,
|
|
2623
|
+
"attr": "form",
|
|
2624
|
+
"reflectToAttr": false,
|
|
2625
|
+
"docs": "The <form> element to associate the checkbox with.",
|
|
2626
|
+
"docsTags": [],
|
|
2627
|
+
"values": [
|
|
2628
|
+
{
|
|
2629
|
+
"type": "string"
|
|
2630
|
+
}
|
|
2631
|
+
],
|
|
2632
|
+
"optional": true,
|
|
2633
|
+
"required": false
|
|
2634
|
+
},
|
|
2635
|
+
{
|
|
2636
|
+
"name": "formaction",
|
|
2637
|
+
"type": "string",
|
|
2638
|
+
"complexType": {
|
|
2639
|
+
"original": "string",
|
|
2640
|
+
"resolved": "string",
|
|
2641
|
+
"references": {}
|
|
2642
|
+
},
|
|
2643
|
+
"mutable": false,
|
|
2644
|
+
"attr": "formaction",
|
|
2645
|
+
"reflectToAttr": false,
|
|
2646
|
+
"docs": "The URL that processes the information submitted by the checkbox. It overrides the action attribute of the checkbox's form owner. Does nothing if there is no form owner.",
|
|
2647
|
+
"docsTags": [],
|
|
2648
|
+
"values": [
|
|
2649
|
+
{
|
|
2650
|
+
"type": "string"
|
|
2651
|
+
}
|
|
2652
|
+
],
|
|
2653
|
+
"optional": true,
|
|
2654
|
+
"required": false
|
|
2655
|
+
},
|
|
2656
|
+
{
|
|
2657
|
+
"name": "formenctype",
|
|
2658
|
+
"type": "string",
|
|
2659
|
+
"complexType": {
|
|
2660
|
+
"original": "string",
|
|
2661
|
+
"resolved": "string",
|
|
2662
|
+
"references": {}
|
|
2663
|
+
},
|
|
2664
|
+
"mutable": false,
|
|
2665
|
+
"attr": "formenctype",
|
|
2666
|
+
"reflectToAttr": false,
|
|
2667
|
+
"docs": "The way the submitted form data is encoded.",
|
|
2668
|
+
"docsTags": [],
|
|
2669
|
+
"values": [
|
|
2670
|
+
{
|
|
2671
|
+
"type": "string"
|
|
2672
|
+
}
|
|
2673
|
+
],
|
|
2674
|
+
"optional": true,
|
|
2675
|
+
"required": false
|
|
2676
|
+
},
|
|
2677
|
+
{
|
|
2678
|
+
"name": "formmethod",
|
|
2679
|
+
"type": "string",
|
|
2680
|
+
"complexType": {
|
|
2681
|
+
"original": "string",
|
|
2682
|
+
"resolved": "string",
|
|
2683
|
+
"references": {}
|
|
2684
|
+
},
|
|
2685
|
+
"mutable": false,
|
|
2686
|
+
"attr": "formmethod",
|
|
2687
|
+
"reflectToAttr": false,
|
|
2688
|
+
"docs": "The HTTP method used to submit the form.",
|
|
2689
|
+
"docsTags": [],
|
|
2690
|
+
"values": [
|
|
2691
|
+
{
|
|
2692
|
+
"type": "string"
|
|
2693
|
+
}
|
|
2694
|
+
],
|
|
2695
|
+
"optional": true,
|
|
2696
|
+
"required": false
|
|
2697
|
+
},
|
|
2698
|
+
{
|
|
2699
|
+
"name": "formnovalidate",
|
|
2700
|
+
"type": "boolean",
|
|
2701
|
+
"complexType": {
|
|
2702
|
+
"original": "boolean",
|
|
2703
|
+
"resolved": "boolean",
|
|
2704
|
+
"references": {}
|
|
2705
|
+
},
|
|
2706
|
+
"mutable": false,
|
|
2707
|
+
"attr": "formnovalidate",
|
|
2708
|
+
"reflectToAttr": false,
|
|
2709
|
+
"docs": "If `true`, the form will not be validated when submitted.",
|
|
2710
|
+
"docsTags": [],
|
|
2711
|
+
"values": [
|
|
2712
|
+
{
|
|
2713
|
+
"type": "boolean"
|
|
2714
|
+
}
|
|
2715
|
+
],
|
|
2716
|
+
"optional": true,
|
|
2717
|
+
"required": false
|
|
2718
|
+
},
|
|
2719
|
+
{
|
|
2720
|
+
"name": "formtarget",
|
|
2721
|
+
"type": "string",
|
|
2722
|
+
"complexType": {
|
|
2723
|
+
"original": "string",
|
|
2724
|
+
"resolved": "string",
|
|
2725
|
+
"references": {}
|
|
2726
|
+
},
|
|
2727
|
+
"mutable": false,
|
|
2728
|
+
"attr": "formtarget",
|
|
2729
|
+
"reflectToAttr": false,
|
|
2730
|
+
"docs": "The place to display the response from submitting the form. It overrides the target attribute of the checkbox's form owner.",
|
|
2731
|
+
"docsTags": [],
|
|
2732
|
+
"values": [
|
|
2733
|
+
{
|
|
2734
|
+
"type": "string"
|
|
2735
|
+
}
|
|
2736
|
+
],
|
|
2737
|
+
"optional": true,
|
|
2738
|
+
"required": false
|
|
2739
|
+
},
|
|
2227
2740
|
{
|
|
2228
2741
|
"name": "groupLabel",
|
|
2229
2742
|
"type": "string",
|
|
@@ -2461,7 +2974,12 @@
|
|
|
2461
2974
|
],
|
|
2462
2975
|
"listeners": [],
|
|
2463
2976
|
"styles": [],
|
|
2464
|
-
"slots": [
|
|
2977
|
+
"slots": [
|
|
2978
|
+
{
|
|
2979
|
+
"name": "additional-field",
|
|
2980
|
+
"docs": "Content to be displayed alongside a checkbox."
|
|
2981
|
+
}
|
|
2982
|
+
],
|
|
2465
2983
|
"parts": [],
|
|
2466
2984
|
"dependents": [],
|
|
2467
2985
|
"dependencies": [
|
|
@@ -2801,6 +3319,10 @@
|
|
|
2801
3319
|
{
|
|
2802
3320
|
"name": "slot",
|
|
2803
3321
|
"text": "icon - Content will be rendered at the start of the chip."
|
|
3322
|
+
},
|
|
3323
|
+
{
|
|
3324
|
+
"name": "slot",
|
|
3325
|
+
"text": "badge - Badge component overlaying the top right of the chip."
|
|
2804
3326
|
}
|
|
2805
3327
|
],
|
|
2806
3328
|
"usage": {},
|
|
@@ -2822,9 +3344,14 @@
|
|
|
2822
3344
|
"mutable": false,
|
|
2823
3345
|
"attr": "appearance",
|
|
2824
3346
|
"reflectToAttr": false,
|
|
2825
|
-
"docs": "
|
|
2826
|
-
"docsTags": [
|
|
2827
|
-
|
|
3347
|
+
"docs": "",
|
|
3348
|
+
"docsTags": [
|
|
3349
|
+
{
|
|
3350
|
+
"name": "deprecated",
|
|
3351
|
+
"text": "This prop should not be used anymore. Use variant prop instead."
|
|
3352
|
+
}
|
|
3353
|
+
],
|
|
3354
|
+
"deprecation": "This prop should not be used anymore. Use variant prop instead.",
|
|
2828
3355
|
"values": [
|
|
2829
3356
|
{
|
|
2830
3357
|
"value": "filled",
|
|
@@ -2939,6 +3466,39 @@
|
|
|
2939
3466
|
],
|
|
2940
3467
|
"optional": true,
|
|
2941
3468
|
"required": false
|
|
3469
|
+
},
|
|
3470
|
+
{
|
|
3471
|
+
"name": "variant",
|
|
3472
|
+
"type": "\"filled\" | \"outlined\"",
|
|
3473
|
+
"complexType": {
|
|
3474
|
+
"original": "IcEmphasisType",
|
|
3475
|
+
"resolved": "\"filled\" | \"outlined\"",
|
|
3476
|
+
"references": {
|
|
3477
|
+
"IcEmphasisType": {
|
|
3478
|
+
"location": "import",
|
|
3479
|
+
"path": "../../utils/types",
|
|
3480
|
+
"id": "src/utils/types.ts::IcEmphasisType"
|
|
3481
|
+
}
|
|
3482
|
+
}
|
|
3483
|
+
},
|
|
3484
|
+
"mutable": false,
|
|
3485
|
+
"attr": "variant",
|
|
3486
|
+
"reflectToAttr": false,
|
|
3487
|
+
"docs": "The emphasis of the chip.",
|
|
3488
|
+
"docsTags": [],
|
|
3489
|
+
"default": "\"filled\"",
|
|
3490
|
+
"values": [
|
|
3491
|
+
{
|
|
3492
|
+
"value": "filled",
|
|
3493
|
+
"type": "string"
|
|
3494
|
+
},
|
|
3495
|
+
{
|
|
3496
|
+
"value": "outlined",
|
|
3497
|
+
"type": "string"
|
|
3498
|
+
}
|
|
3499
|
+
],
|
|
3500
|
+
"optional": true,
|
|
3501
|
+
"required": false
|
|
2942
3502
|
}
|
|
2943
3503
|
],
|
|
2944
3504
|
"methods": [
|
|
@@ -3010,6 +3570,10 @@
|
|
|
3010
3570
|
],
|
|
3011
3571
|
"styles": [],
|
|
3012
3572
|
"slots": [
|
|
3573
|
+
{
|
|
3574
|
+
"name": "badge",
|
|
3575
|
+
"docs": "Badge component overlaying the top right of the chip."
|
|
3576
|
+
},
|
|
3013
3577
|
{
|
|
3014
3578
|
"name": "icon",
|
|
3015
3579
|
"docs": "Content will be rendered at the start of the chip."
|
|
@@ -3202,7 +3766,12 @@
|
|
|
3202
3766
|
"tag": "ic-data-entity",
|
|
3203
3767
|
"readme": "# ic-data-entity\n\n\n",
|
|
3204
3768
|
"docs": "",
|
|
3205
|
-
"docsTags": [
|
|
3769
|
+
"docsTags": [
|
|
3770
|
+
{
|
|
3771
|
+
"name": "slot",
|
|
3772
|
+
"text": "heading - Content will be placed at the top of the data entity."
|
|
3773
|
+
}
|
|
3774
|
+
],
|
|
3206
3775
|
"usage": {},
|
|
3207
3776
|
"props": [
|
|
3208
3777
|
{
|
|
@@ -3226,6 +3795,39 @@
|
|
|
3226
3795
|
"optional": false,
|
|
3227
3796
|
"required": false
|
|
3228
3797
|
},
|
|
3798
|
+
{
|
|
3799
|
+
"name": "size",
|
|
3800
|
+
"type": "\"default\" | \"small\"",
|
|
3801
|
+
"complexType": {
|
|
3802
|
+
"original": "IcSizesNoLarge",
|
|
3803
|
+
"resolved": "\"default\" | \"small\"",
|
|
3804
|
+
"references": {
|
|
3805
|
+
"IcSizesNoLarge": {
|
|
3806
|
+
"location": "import",
|
|
3807
|
+
"path": "../../utils/types",
|
|
3808
|
+
"id": "src/utils/types.ts::IcSizesNoLarge"
|
|
3809
|
+
}
|
|
3810
|
+
}
|
|
3811
|
+
},
|
|
3812
|
+
"mutable": false,
|
|
3813
|
+
"attr": "size",
|
|
3814
|
+
"reflectToAttr": false,
|
|
3815
|
+
"docs": "The size of the data entity component.",
|
|
3816
|
+
"docsTags": [],
|
|
3817
|
+
"default": "\"default\"",
|
|
3818
|
+
"values": [
|
|
3819
|
+
{
|
|
3820
|
+
"value": "default",
|
|
3821
|
+
"type": "string"
|
|
3822
|
+
},
|
|
3823
|
+
{
|
|
3824
|
+
"value": "small",
|
|
3825
|
+
"type": "string"
|
|
3826
|
+
}
|
|
3827
|
+
],
|
|
3828
|
+
"optional": true,
|
|
3829
|
+
"required": false
|
|
3830
|
+
},
|
|
3229
3831
|
{
|
|
3230
3832
|
"name": "small",
|
|
3231
3833
|
"type": "boolean",
|
|
@@ -3237,15 +3839,21 @@
|
|
|
3237
3839
|
"mutable": false,
|
|
3238
3840
|
"attr": "small",
|
|
3239
3841
|
"reflectToAttr": false,
|
|
3240
|
-
"docs": "
|
|
3241
|
-
"docsTags": [
|
|
3842
|
+
"docs": "",
|
|
3843
|
+
"docsTags": [
|
|
3844
|
+
{
|
|
3845
|
+
"name": "deprecated",
|
|
3846
|
+
"text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
|
|
3847
|
+
}
|
|
3848
|
+
],
|
|
3242
3849
|
"default": "false",
|
|
3850
|
+
"deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
|
|
3243
3851
|
"values": [
|
|
3244
3852
|
{
|
|
3245
3853
|
"type": "boolean"
|
|
3246
3854
|
}
|
|
3247
3855
|
],
|
|
3248
|
-
"optional":
|
|
3856
|
+
"optional": true,
|
|
3249
3857
|
"required": false
|
|
3250
3858
|
}
|
|
3251
3859
|
],
|
|
@@ -3253,7 +3861,12 @@
|
|
|
3253
3861
|
"events": [],
|
|
3254
3862
|
"listeners": [],
|
|
3255
3863
|
"styles": [],
|
|
3256
|
-
"slots": [
|
|
3864
|
+
"slots": [
|
|
3865
|
+
{
|
|
3866
|
+
"name": "heading",
|
|
3867
|
+
"docs": "Content will be placed at the top of the data entity."
|
|
3868
|
+
}
|
|
3869
|
+
],
|
|
3257
3870
|
"parts": [],
|
|
3258
3871
|
"dependents": [],
|
|
3259
3872
|
"dependencies": [
|
|
@@ -3308,6 +3921,39 @@
|
|
|
3308
3921
|
"optional": false,
|
|
3309
3922
|
"required": false
|
|
3310
3923
|
},
|
|
3924
|
+
{
|
|
3925
|
+
"name": "size",
|
|
3926
|
+
"type": "\"default\" | \"small\"",
|
|
3927
|
+
"complexType": {
|
|
3928
|
+
"original": "IcSizesNoLarge",
|
|
3929
|
+
"resolved": "\"default\" | \"small\"",
|
|
3930
|
+
"references": {
|
|
3931
|
+
"IcSizesNoLarge": {
|
|
3932
|
+
"location": "import",
|
|
3933
|
+
"path": "../../utils/types",
|
|
3934
|
+
"id": "src/utils/types.ts::IcSizesNoLarge"
|
|
3935
|
+
}
|
|
3936
|
+
}
|
|
3937
|
+
},
|
|
3938
|
+
"mutable": false,
|
|
3939
|
+
"attr": "size",
|
|
3940
|
+
"reflectToAttr": false,
|
|
3941
|
+
"docs": "The size of the data row component.",
|
|
3942
|
+
"docsTags": [],
|
|
3943
|
+
"default": "\"default\"",
|
|
3944
|
+
"values": [
|
|
3945
|
+
{
|
|
3946
|
+
"value": "default",
|
|
3947
|
+
"type": "string"
|
|
3948
|
+
},
|
|
3949
|
+
{
|
|
3950
|
+
"value": "small",
|
|
3951
|
+
"type": "string"
|
|
3952
|
+
}
|
|
3953
|
+
],
|
|
3954
|
+
"optional": true,
|
|
3955
|
+
"required": false
|
|
3956
|
+
},
|
|
3311
3957
|
{
|
|
3312
3958
|
"name": "small",
|
|
3313
3959
|
"type": "boolean",
|
|
@@ -3319,15 +3965,21 @@
|
|
|
3319
3965
|
"mutable": false,
|
|
3320
3966
|
"attr": "small",
|
|
3321
3967
|
"reflectToAttr": false,
|
|
3322
|
-
"docs": "
|
|
3323
|
-
"docsTags": [
|
|
3968
|
+
"docs": "",
|
|
3969
|
+
"docsTags": [
|
|
3970
|
+
{
|
|
3971
|
+
"name": "deprecated",
|
|
3972
|
+
"text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
|
|
3973
|
+
}
|
|
3974
|
+
],
|
|
3324
3975
|
"default": "false",
|
|
3976
|
+
"deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
|
|
3325
3977
|
"values": [
|
|
3326
3978
|
{
|
|
3327
3979
|
"type": "boolean"
|
|
3328
3980
|
}
|
|
3329
3981
|
],
|
|
3330
|
-
"optional":
|
|
3982
|
+
"optional": true,
|
|
3331
3983
|
"required": false
|
|
3332
3984
|
},
|
|
3333
3985
|
{
|
|
@@ -3399,6 +4051,10 @@
|
|
|
3399
4051
|
{
|
|
3400
4052
|
"name": "slot",
|
|
3401
4053
|
"text": "label - Content will be placed above the dialog heading."
|
|
4054
|
+
},
|
|
4055
|
+
{
|
|
4056
|
+
"name": "slot",
|
|
4057
|
+
"text": "alert - Content will be placed at the top of the content area of the dialog."
|
|
3402
4058
|
}
|
|
3403
4059
|
],
|
|
3404
4060
|
"usage": {},
|
|
@@ -3414,8 +4070,14 @@
|
|
|
3414
4070
|
"mutable": false,
|
|
3415
4071
|
"attr": "alert-heading",
|
|
3416
4072
|
"reflectToAttr": false,
|
|
3417
|
-
"docs": "
|
|
3418
|
-
"docsTags": [
|
|
4073
|
+
"docs": "",
|
|
4074
|
+
"docsTags": [
|
|
4075
|
+
{
|
|
4076
|
+
"name": "deprecated",
|
|
4077
|
+
"text": "This prop should not be used anymore. Use an ic-alert/IcAlert component within an alert slot with a heading instead."
|
|
4078
|
+
}
|
|
4079
|
+
],
|
|
4080
|
+
"deprecation": "This prop should not be used anymore. Use an ic-alert/IcAlert component within an alert slot with a heading instead.",
|
|
3419
4081
|
"values": [
|
|
3420
4082
|
{
|
|
3421
4083
|
"type": "string"
|
|
@@ -3435,8 +4097,14 @@
|
|
|
3435
4097
|
"mutable": false,
|
|
3436
4098
|
"attr": "alert-message",
|
|
3437
4099
|
"reflectToAttr": false,
|
|
3438
|
-
"docs": "
|
|
3439
|
-
"docsTags": [
|
|
4100
|
+
"docs": "",
|
|
4101
|
+
"docsTags": [
|
|
4102
|
+
{
|
|
4103
|
+
"name": "deprecated",
|
|
4104
|
+
"text": "This prop should not be used anymore. Use an ic-alert/IcAlert component within an alert slot with a message instead."
|
|
4105
|
+
}
|
|
4106
|
+
],
|
|
4107
|
+
"deprecation": "This prop should not be used anymore. Use an ic-alert/IcAlert component within an alert slot with a message instead.",
|
|
3440
4108
|
"values": [
|
|
3441
4109
|
{
|
|
3442
4110
|
"type": "string"
|
|
@@ -3596,6 +4264,28 @@
|
|
|
3596
4264
|
"optional": true,
|
|
3597
4265
|
"required": false
|
|
3598
4266
|
},
|
|
4267
|
+
{
|
|
4268
|
+
"name": "open",
|
|
4269
|
+
"type": "boolean",
|
|
4270
|
+
"complexType": {
|
|
4271
|
+
"original": "boolean",
|
|
4272
|
+
"resolved": "boolean",
|
|
4273
|
+
"references": {}
|
|
4274
|
+
},
|
|
4275
|
+
"mutable": true,
|
|
4276
|
+
"attr": "open",
|
|
4277
|
+
"reflectToAttr": true,
|
|
4278
|
+
"docs": "If `true`, the dialog will be displayed.",
|
|
4279
|
+
"docsTags": [],
|
|
4280
|
+
"default": "undefined",
|
|
4281
|
+
"values": [
|
|
4282
|
+
{
|
|
4283
|
+
"type": "boolean"
|
|
4284
|
+
}
|
|
4285
|
+
],
|
|
4286
|
+
"optional": false,
|
|
4287
|
+
"required": false
|
|
4288
|
+
},
|
|
3599
4289
|
{
|
|
3600
4290
|
"name": "size",
|
|
3601
4291
|
"type": "\"large\" | \"medium\" | \"small\"",
|
|
@@ -3638,8 +4328,14 @@
|
|
|
3638
4328
|
"mutable": false,
|
|
3639
4329
|
"attr": "status",
|
|
3640
4330
|
"reflectToAttr": false,
|
|
3641
|
-
"docs": "
|
|
3642
|
-
"docsTags": [
|
|
4331
|
+
"docs": "",
|
|
4332
|
+
"docsTags": [
|
|
4333
|
+
{
|
|
4334
|
+
"name": "deprecated",
|
|
4335
|
+
"text": "This prop should not be used anymore. Use an ic-alert/IcAlert component within an alert slot with a variant instead."
|
|
4336
|
+
}
|
|
4337
|
+
],
|
|
4338
|
+
"deprecation": "This prop should not be used anymore. Use an ic-alert/IcAlert component within an alert slot with a variant instead.",
|
|
3643
4339
|
"values": [
|
|
3644
4340
|
{
|
|
3645
4341
|
"value": "error",
|
|
@@ -3730,8 +4426,14 @@
|
|
|
3730
4426
|
},
|
|
3731
4427
|
"signature": "hideDialog() => Promise<void>",
|
|
3732
4428
|
"parameters": [],
|
|
3733
|
-
"docs": "
|
|
3734
|
-
"docsTags": [
|
|
4429
|
+
"docs": "",
|
|
4430
|
+
"docsTags": [
|
|
4431
|
+
{
|
|
4432
|
+
"name": "deprecated",
|
|
4433
|
+
"text": "This method should not be used anymore. Use open prop to set dialog visibility."
|
|
4434
|
+
}
|
|
4435
|
+
],
|
|
4436
|
+
"deprecation": "This method should not be used anymore. Use open prop to set dialog visibility."
|
|
3735
4437
|
},
|
|
3736
4438
|
{
|
|
3737
4439
|
"name": "showDialog",
|
|
@@ -3752,8 +4454,14 @@
|
|
|
3752
4454
|
},
|
|
3753
4455
|
"signature": "showDialog() => Promise<void>",
|
|
3754
4456
|
"parameters": [],
|
|
3755
|
-
"docs": "
|
|
3756
|
-
"docsTags": [
|
|
4457
|
+
"docs": "",
|
|
4458
|
+
"docsTags": [
|
|
4459
|
+
{
|
|
4460
|
+
"name": "deprecated",
|
|
4461
|
+
"text": "This method should not be used anymore. Use open prop to set dialog visibility."
|
|
4462
|
+
}
|
|
4463
|
+
],
|
|
4464
|
+
"deprecation": "This method should not be used anymore. Use open prop to set dialog visibility."
|
|
3757
4465
|
}
|
|
3758
4466
|
],
|
|
3759
4467
|
"events": [
|
|
@@ -3835,6 +4543,10 @@
|
|
|
3835
4543
|
}
|
|
3836
4544
|
],
|
|
3837
4545
|
"slots": [
|
|
4546
|
+
{
|
|
4547
|
+
"name": "alert",
|
|
4548
|
+
"docs": "Content will be placed at the top of the content area of the dialog."
|
|
4549
|
+
},
|
|
3838
4550
|
{
|
|
3839
4551
|
"name": "dialog-controls",
|
|
3840
4552
|
"docs": "Content will be place at the bottom of the dialog."
|
|
@@ -3923,6 +4635,18 @@
|
|
|
3923
4635
|
{
|
|
3924
4636
|
"name": "slot",
|
|
3925
4637
|
"text": "actions - Content is placed at the bottom below all other content."
|
|
4638
|
+
},
|
|
4639
|
+
{
|
|
4640
|
+
"name": "slot",
|
|
4641
|
+
"text": "heading - Content will be rendered in place of the heading prop."
|
|
4642
|
+
},
|
|
4643
|
+
{
|
|
4644
|
+
"name": "slot",
|
|
4645
|
+
"text": "subheading - Content will be rendered in place of the subheading prop."
|
|
4646
|
+
},
|
|
4647
|
+
{
|
|
4648
|
+
"name": "slot",
|
|
4649
|
+
"text": "body - Content will be rendered in place of the body prop."
|
|
3926
4650
|
}
|
|
3927
4651
|
],
|
|
3928
4652
|
"usage": {},
|
|
@@ -4024,8 +4748,8 @@
|
|
|
4024
4748
|
"type": "string"
|
|
4025
4749
|
}
|
|
4026
4750
|
],
|
|
4027
|
-
"optional":
|
|
4028
|
-
"required":
|
|
4751
|
+
"optional": true,
|
|
4752
|
+
"required": false
|
|
4029
4753
|
},
|
|
4030
4754
|
{
|
|
4031
4755
|
"name": "imageSize",
|
|
@@ -4095,9 +4819,21 @@
|
|
|
4095
4819
|
"name": "actions",
|
|
4096
4820
|
"docs": "Content is placed at the bottom below all other content."
|
|
4097
4821
|
},
|
|
4822
|
+
{
|
|
4823
|
+
"name": "body",
|
|
4824
|
+
"docs": "Content will be rendered in place of the body prop."
|
|
4825
|
+
},
|
|
4826
|
+
{
|
|
4827
|
+
"name": "heading",
|
|
4828
|
+
"docs": "Content will be rendered in place of the heading prop."
|
|
4829
|
+
},
|
|
4098
4830
|
{
|
|
4099
4831
|
"name": "image",
|
|
4100
4832
|
"docs": "Content is placed at the top above all other content."
|
|
4833
|
+
},
|
|
4834
|
+
{
|
|
4835
|
+
"name": "subheading",
|
|
4836
|
+
"docs": "Content will be rendered in place of the subheading prop."
|
|
4101
4837
|
}
|
|
4102
4838
|
],
|
|
4103
4839
|
"parts": [],
|
|
@@ -4813,6 +5549,39 @@
|
|
|
4813
5549
|
"optional": true,
|
|
4814
5550
|
"required": false
|
|
4815
5551
|
},
|
|
5552
|
+
{
|
|
5553
|
+
"name": "size",
|
|
5554
|
+
"type": "\"default\" | \"small\"",
|
|
5555
|
+
"complexType": {
|
|
5556
|
+
"original": "IcSizesNoLarge",
|
|
5557
|
+
"resolved": "\"default\" | \"small\"",
|
|
5558
|
+
"references": {
|
|
5559
|
+
"IcSizesNoLarge": {
|
|
5560
|
+
"location": "import",
|
|
5561
|
+
"path": "../../utils/types",
|
|
5562
|
+
"id": "src/utils/types.ts::IcSizesNoLarge"
|
|
5563
|
+
}
|
|
5564
|
+
}
|
|
5565
|
+
},
|
|
5566
|
+
"mutable": false,
|
|
5567
|
+
"attr": "size",
|
|
5568
|
+
"reflectToAttr": false,
|
|
5569
|
+
"docs": "The size of the hero component.",
|
|
5570
|
+
"docsTags": [],
|
|
5571
|
+
"default": "\"default\"",
|
|
5572
|
+
"values": [
|
|
5573
|
+
{
|
|
5574
|
+
"value": "default",
|
|
5575
|
+
"type": "string"
|
|
5576
|
+
},
|
|
5577
|
+
{
|
|
5578
|
+
"value": "small",
|
|
5579
|
+
"type": "string"
|
|
5580
|
+
}
|
|
5581
|
+
],
|
|
5582
|
+
"optional": true,
|
|
5583
|
+
"required": false
|
|
5584
|
+
},
|
|
4816
5585
|
{
|
|
4817
5586
|
"name": "small",
|
|
4818
5587
|
"type": "boolean",
|
|
@@ -4824,15 +5593,21 @@
|
|
|
4824
5593
|
"mutable": false,
|
|
4825
5594
|
"attr": "small",
|
|
4826
5595
|
"reflectToAttr": false,
|
|
4827
|
-
"docs": "
|
|
4828
|
-
"docsTags": [
|
|
5596
|
+
"docs": "",
|
|
5597
|
+
"docsTags": [
|
|
5598
|
+
{
|
|
5599
|
+
"name": "deprecated",
|
|
5600
|
+
"text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
|
|
5601
|
+
}
|
|
5602
|
+
],
|
|
4829
5603
|
"default": "false",
|
|
5604
|
+
"deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
|
|
4830
5605
|
"values": [
|
|
4831
5606
|
{
|
|
4832
5607
|
"type": "boolean"
|
|
4833
5608
|
}
|
|
4834
5609
|
],
|
|
4835
|
-
"optional":
|
|
5610
|
+
"optional": true,
|
|
4836
5611
|
"required": false
|
|
4837
5612
|
},
|
|
4838
5613
|
{
|
|
@@ -5005,6 +5780,33 @@
|
|
|
5005
5780
|
],
|
|
5006
5781
|
"usage": {},
|
|
5007
5782
|
"props": [
|
|
5783
|
+
{
|
|
5784
|
+
"name": "appearance",
|
|
5785
|
+
"type": "\"dark\" | \"default\"",
|
|
5786
|
+
"complexType": {
|
|
5787
|
+
"original": "\"dark\" | \"default\"",
|
|
5788
|
+
"resolved": "\"dark\" | \"default\"",
|
|
5789
|
+
"references": {}
|
|
5790
|
+
},
|
|
5791
|
+
"mutable": false,
|
|
5792
|
+
"attr": "appearance",
|
|
5793
|
+
"reflectToAttr": false,
|
|
5794
|
+
"docs": "The appearance of the input component container.",
|
|
5795
|
+
"docsTags": [],
|
|
5796
|
+
"default": "\"default\"",
|
|
5797
|
+
"values": [
|
|
5798
|
+
{
|
|
5799
|
+
"value": "dark",
|
|
5800
|
+
"type": "string"
|
|
5801
|
+
},
|
|
5802
|
+
{
|
|
5803
|
+
"value": "default",
|
|
5804
|
+
"type": "string"
|
|
5805
|
+
}
|
|
5806
|
+
],
|
|
5807
|
+
"optional": true,
|
|
5808
|
+
"required": false
|
|
5809
|
+
},
|
|
5008
5810
|
{
|
|
5009
5811
|
"name": "dark",
|
|
5010
5812
|
"type": "boolean",
|
|
@@ -5016,9 +5818,15 @@
|
|
|
5016
5818
|
"mutable": false,
|
|
5017
5819
|
"attr": "dark",
|
|
5018
5820
|
"reflectToAttr": false,
|
|
5019
|
-
"docs": "
|
|
5020
|
-
"docsTags": [
|
|
5821
|
+
"docs": "",
|
|
5822
|
+
"docsTags": [
|
|
5823
|
+
{
|
|
5824
|
+
"name": "deprecated",
|
|
5825
|
+
"text": "This prop should not be used anymore. Set prop `appearance` to \"dark\" instead."
|
|
5826
|
+
}
|
|
5827
|
+
],
|
|
5021
5828
|
"default": "false",
|
|
5829
|
+
"deprecation": "This prop should not be used anymore. Set prop `appearance` to \"dark\" instead.",
|
|
5022
5830
|
"values": [
|
|
5023
5831
|
{
|
|
5024
5832
|
"type": "boolean"
|
|
@@ -5115,6 +5923,39 @@
|
|
|
5115
5923
|
"optional": false,
|
|
5116
5924
|
"required": false
|
|
5117
5925
|
},
|
|
5926
|
+
{
|
|
5927
|
+
"name": "size",
|
|
5928
|
+
"type": "\"default\" | \"small\"",
|
|
5929
|
+
"complexType": {
|
|
5930
|
+
"original": "IcSizesNoLarge",
|
|
5931
|
+
"resolved": "\"default\" | \"small\"",
|
|
5932
|
+
"references": {
|
|
5933
|
+
"IcSizesNoLarge": {
|
|
5934
|
+
"location": "import",
|
|
5935
|
+
"path": "../../utils/types",
|
|
5936
|
+
"id": "src/utils/types.ts::IcSizesNoLarge"
|
|
5937
|
+
}
|
|
5938
|
+
}
|
|
5939
|
+
},
|
|
5940
|
+
"mutable": false,
|
|
5941
|
+
"attr": "size",
|
|
5942
|
+
"reflectToAttr": false,
|
|
5943
|
+
"docs": "The size of the input component container component.",
|
|
5944
|
+
"docsTags": [],
|
|
5945
|
+
"default": "\"default\"",
|
|
5946
|
+
"values": [
|
|
5947
|
+
{
|
|
5948
|
+
"value": "default",
|
|
5949
|
+
"type": "string"
|
|
5950
|
+
},
|
|
5951
|
+
{
|
|
5952
|
+
"value": "small",
|
|
5953
|
+
"type": "string"
|
|
5954
|
+
}
|
|
5955
|
+
],
|
|
5956
|
+
"optional": true,
|
|
5957
|
+
"required": false
|
|
5958
|
+
},
|
|
5118
5959
|
{
|
|
5119
5960
|
"name": "small",
|
|
5120
5961
|
"type": "boolean",
|
|
@@ -5126,15 +5967,21 @@
|
|
|
5126
5967
|
"mutable": false,
|
|
5127
5968
|
"attr": "small",
|
|
5128
5969
|
"reflectToAttr": false,
|
|
5129
|
-
"docs": "
|
|
5130
|
-
"docsTags": [
|
|
5970
|
+
"docs": "",
|
|
5971
|
+
"docsTags": [
|
|
5972
|
+
{
|
|
5973
|
+
"name": "deprecated",
|
|
5974
|
+
"text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
|
|
5975
|
+
}
|
|
5976
|
+
],
|
|
5131
5977
|
"default": "false",
|
|
5978
|
+
"deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
|
|
5132
5979
|
"values": [
|
|
5133
5980
|
{
|
|
5134
5981
|
"type": "boolean"
|
|
5135
5982
|
}
|
|
5136
5983
|
],
|
|
5137
|
-
"optional":
|
|
5984
|
+
"optional": true,
|
|
5138
5985
|
"required": false
|
|
5139
5986
|
},
|
|
5140
5987
|
{
|
|
@@ -5314,6 +6161,33 @@
|
|
|
5314
6161
|
"docsTags": [],
|
|
5315
6162
|
"usage": {},
|
|
5316
6163
|
"props": [
|
|
6164
|
+
{
|
|
6165
|
+
"name": "appearance",
|
|
6166
|
+
"type": "\"dark\" | \"default\"",
|
|
6167
|
+
"complexType": {
|
|
6168
|
+
"original": "\"dark\" | \"default\"",
|
|
6169
|
+
"resolved": "\"dark\" | \"default\"",
|
|
6170
|
+
"references": {}
|
|
6171
|
+
},
|
|
6172
|
+
"mutable": false,
|
|
6173
|
+
"attr": "appearance",
|
|
6174
|
+
"reflectToAttr": false,
|
|
6175
|
+
"docs": "The appearance of the input label.",
|
|
6176
|
+
"docsTags": [],
|
|
6177
|
+
"default": "\"default\"",
|
|
6178
|
+
"values": [
|
|
6179
|
+
{
|
|
6180
|
+
"value": "dark",
|
|
6181
|
+
"type": "string"
|
|
6182
|
+
},
|
|
6183
|
+
{
|
|
6184
|
+
"value": "default",
|
|
6185
|
+
"type": "string"
|
|
6186
|
+
}
|
|
6187
|
+
],
|
|
6188
|
+
"optional": true,
|
|
6189
|
+
"required": false
|
|
6190
|
+
},
|
|
5317
6191
|
{
|
|
5318
6192
|
"name": "dark",
|
|
5319
6193
|
"type": "boolean",
|
|
@@ -5325,9 +6199,15 @@
|
|
|
5325
6199
|
"mutable": false,
|
|
5326
6200
|
"attr": "dark",
|
|
5327
6201
|
"reflectToAttr": false,
|
|
5328
|
-
"docs": "
|
|
5329
|
-
"docsTags": [
|
|
6202
|
+
"docs": "",
|
|
6203
|
+
"docsTags": [
|
|
6204
|
+
{
|
|
6205
|
+
"name": "deprecated",
|
|
6206
|
+
"text": "This prop should not be used anymore. Set prop `appearance` to \"dark\" instead."
|
|
6207
|
+
}
|
|
6208
|
+
],
|
|
5330
6209
|
"default": "false",
|
|
6210
|
+
"deprecation": "This prop should not be used anymore. Set prop `appearance` to \"dark\" instead.",
|
|
5331
6211
|
"values": [
|
|
5332
6212
|
{
|
|
5333
6213
|
"type": "boolean"
|
|
@@ -6541,39 +7421,72 @@
|
|
|
6541
7421
|
"docsTags": [],
|
|
6542
7422
|
"values": [
|
|
6543
7423
|
{
|
|
6544
|
-
"type": "IcMenuOption[]"
|
|
7424
|
+
"type": "IcMenuOption[]"
|
|
7425
|
+
}
|
|
7426
|
+
],
|
|
7427
|
+
"optional": false,
|
|
7428
|
+
"required": true
|
|
7429
|
+
},
|
|
7430
|
+
{
|
|
7431
|
+
"name": "searchMode",
|
|
7432
|
+
"type": "\"navigation\" | \"query\"",
|
|
7433
|
+
"complexType": {
|
|
7434
|
+
"original": "IcSearchBarSearchModes",
|
|
7435
|
+
"resolved": "\"navigation\" | \"query\"",
|
|
7436
|
+
"references": {
|
|
7437
|
+
"IcSearchBarSearchModes": {
|
|
7438
|
+
"location": "import",
|
|
7439
|
+
"path": "../ic-search-bar/ic-search-bar.types",
|
|
7440
|
+
"id": "src/components/ic-search-bar/ic-search-bar.types.ts::IcSearchBarSearchModes"
|
|
7441
|
+
}
|
|
7442
|
+
}
|
|
7443
|
+
},
|
|
7444
|
+
"mutable": false,
|
|
7445
|
+
"attr": "search-mode",
|
|
7446
|
+
"reflectToAttr": false,
|
|
7447
|
+
"docs": "Specify the mode search bar uses to search. `navigation` allows for quick lookups of a set of values, `query` allows for more general searches.",
|
|
7448
|
+
"docsTags": [],
|
|
7449
|
+
"default": "\"navigation\"",
|
|
7450
|
+
"values": [
|
|
7451
|
+
{
|
|
7452
|
+
"value": "navigation",
|
|
7453
|
+
"type": "string"
|
|
7454
|
+
},
|
|
7455
|
+
{
|
|
7456
|
+
"value": "query",
|
|
7457
|
+
"type": "string"
|
|
6545
7458
|
}
|
|
6546
7459
|
],
|
|
6547
|
-
"optional":
|
|
6548
|
-
"required":
|
|
7460
|
+
"optional": true,
|
|
7461
|
+
"required": false
|
|
6549
7462
|
},
|
|
6550
7463
|
{
|
|
6551
|
-
"name": "
|
|
6552
|
-
"type": "\"
|
|
7464
|
+
"name": "size",
|
|
7465
|
+
"type": "\"default\" | \"small\"",
|
|
6553
7466
|
"complexType": {
|
|
6554
|
-
"original": "
|
|
6555
|
-
"resolved": "\"
|
|
7467
|
+
"original": "IcSizesNoLarge",
|
|
7468
|
+
"resolved": "\"default\" | \"small\"",
|
|
6556
7469
|
"references": {
|
|
6557
|
-
"
|
|
7470
|
+
"IcSizesNoLarge": {
|
|
6558
7471
|
"location": "import",
|
|
6559
|
-
"path": "
|
|
6560
|
-
"id": "src/
|
|
7472
|
+
"path": "../../utils/types",
|
|
7473
|
+
"id": "src/utils/types.ts::IcSizesNoLarge"
|
|
6561
7474
|
}
|
|
6562
7475
|
}
|
|
6563
7476
|
},
|
|
6564
7477
|
"mutable": false,
|
|
6565
|
-
"attr": "
|
|
7478
|
+
"attr": "size",
|
|
6566
7479
|
"reflectToAttr": false,
|
|
6567
|
-
"docs": "
|
|
7480
|
+
"docs": "The size of the menu component.",
|
|
6568
7481
|
"docsTags": [],
|
|
6569
|
-
"default": "\"
|
|
7482
|
+
"default": "\"default\"",
|
|
6570
7483
|
"values": [
|
|
6571
7484
|
{
|
|
6572
|
-
"value": "
|
|
7485
|
+
"value": "default",
|
|
6573
7486
|
"type": "string"
|
|
6574
7487
|
},
|
|
6575
7488
|
{
|
|
6576
|
-
"value": "
|
|
7489
|
+
"value": "small",
|
|
6577
7490
|
"type": "string"
|
|
6578
7491
|
}
|
|
6579
7492
|
],
|
|
@@ -6590,10 +7503,16 @@
|
|
|
6590
7503
|
},
|
|
6591
7504
|
"mutable": false,
|
|
6592
7505
|
"attr": "small",
|
|
6593
|
-
"reflectToAttr":
|
|
6594
|
-
"docs": "
|
|
6595
|
-
"docsTags": [
|
|
7506
|
+
"reflectToAttr": false,
|
|
7507
|
+
"docs": "",
|
|
7508
|
+
"docsTags": [
|
|
7509
|
+
{
|
|
7510
|
+
"name": "deprecated",
|
|
7511
|
+
"text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
|
|
7512
|
+
}
|
|
7513
|
+
],
|
|
6596
7514
|
"default": "false",
|
|
7515
|
+
"deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
|
|
6597
7516
|
"values": [
|
|
6598
7517
|
{
|
|
6599
7518
|
"type": "boolean"
|
|
@@ -7134,6 +8053,10 @@
|
|
|
7134
8053
|
{
|
|
7135
8054
|
"name": "slot",
|
|
7136
8055
|
"text": "icon - Content will be placed to the left of the button label."
|
|
8056
|
+
},
|
|
8057
|
+
{
|
|
8058
|
+
"name": "slot",
|
|
8059
|
+
"text": "badge - Badge component overlaying the top right of the button."
|
|
7137
8060
|
}
|
|
7138
8061
|
],
|
|
7139
8062
|
"usage": {},
|
|
@@ -7374,6 +8297,10 @@
|
|
|
7374
8297
|
],
|
|
7375
8298
|
"styles": [],
|
|
7376
8299
|
"slots": [
|
|
8300
|
+
{
|
|
8301
|
+
"name": "badge",
|
|
8302
|
+
"docs": "Badge component overlaying the top right of the button."
|
|
8303
|
+
},
|
|
7377
8304
|
{
|
|
7378
8305
|
"name": "icon",
|
|
7379
8306
|
"docs": "Content will be placed to the left of the button label."
|
|
@@ -7525,6 +8452,10 @@
|
|
|
7525
8452
|
{
|
|
7526
8453
|
"name": "part",
|
|
7527
8454
|
"text": "link - The `<a>` within ic-navigation-item"
|
|
8455
|
+
},
|
|
8456
|
+
{
|
|
8457
|
+
"name": "slot",
|
|
8458
|
+
"text": "badge - Badge component overlaying the top right of the icon."
|
|
7528
8459
|
}
|
|
7529
8460
|
],
|
|
7530
8461
|
"usage": {},
|
|
@@ -7781,7 +8712,12 @@
|
|
|
7781
8712
|
"docs": "z-index of navigation item"
|
|
7782
8713
|
}
|
|
7783
8714
|
],
|
|
7784
|
-
"slots": [
|
|
8715
|
+
"slots": [
|
|
8716
|
+
{
|
|
8717
|
+
"name": "badge",
|
|
8718
|
+
"docs": "Badge component overlaying the top right of the icon."
|
|
8719
|
+
}
|
|
8720
|
+
],
|
|
7785
8721
|
"parts": [
|
|
7786
8722
|
{
|
|
7787
8723
|
"name": "link",
|
|
@@ -8070,6 +9006,39 @@
|
|
|
8070
9006
|
"optional": true,
|
|
8071
9007
|
"required": false
|
|
8072
9008
|
},
|
|
9009
|
+
{
|
|
9010
|
+
"name": "size",
|
|
9011
|
+
"type": "\"default\" | \"small\"",
|
|
9012
|
+
"complexType": {
|
|
9013
|
+
"original": "IcSizesNoLarge",
|
|
9014
|
+
"resolved": "\"default\" | \"small\"",
|
|
9015
|
+
"references": {
|
|
9016
|
+
"IcSizesNoLarge": {
|
|
9017
|
+
"location": "import",
|
|
9018
|
+
"path": "../../utils/types",
|
|
9019
|
+
"id": "src/utils/types.ts::IcSizesNoLarge"
|
|
9020
|
+
}
|
|
9021
|
+
}
|
|
9022
|
+
},
|
|
9023
|
+
"mutable": false,
|
|
9024
|
+
"attr": "size",
|
|
9025
|
+
"reflectToAttr": false,
|
|
9026
|
+
"docs": "The size of the page header component.",
|
|
9027
|
+
"docsTags": [],
|
|
9028
|
+
"default": "\"default\"",
|
|
9029
|
+
"values": [
|
|
9030
|
+
{
|
|
9031
|
+
"value": "default",
|
|
9032
|
+
"type": "string"
|
|
9033
|
+
},
|
|
9034
|
+
{
|
|
9035
|
+
"value": "small",
|
|
9036
|
+
"type": "string"
|
|
9037
|
+
}
|
|
9038
|
+
],
|
|
9039
|
+
"optional": true,
|
|
9040
|
+
"required": false
|
|
9041
|
+
},
|
|
8073
9042
|
{
|
|
8074
9043
|
"name": "small",
|
|
8075
9044
|
"type": "boolean",
|
|
@@ -8081,9 +9050,15 @@
|
|
|
8081
9050
|
"mutable": false,
|
|
8082
9051
|
"attr": "small",
|
|
8083
9052
|
"reflectToAttr": false,
|
|
8084
|
-
"docs": "
|
|
8085
|
-
"docsTags": [
|
|
9053
|
+
"docs": "",
|
|
9054
|
+
"docsTags": [
|
|
9055
|
+
{
|
|
9056
|
+
"name": "deprecated",
|
|
9057
|
+
"text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
|
|
9058
|
+
}
|
|
9059
|
+
],
|
|
8086
9060
|
"default": "false",
|
|
9061
|
+
"deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
|
|
8087
9062
|
"values": [
|
|
8088
9063
|
{
|
|
8089
9064
|
"type": "boolean"
|
|
@@ -9101,9 +10076,9 @@
|
|
|
9101
10076
|
}
|
|
9102
10077
|
}
|
|
9103
10078
|
},
|
|
9104
|
-
"mutable":
|
|
10079
|
+
"mutable": false,
|
|
9105
10080
|
"attr": "orientation",
|
|
9106
|
-
"reflectToAttr":
|
|
10081
|
+
"reflectToAttr": false,
|
|
9107
10082
|
"docs": "The orientation of the radio buttons in the radio group. If there are more than two radio buttons in a radio group or either of the radio buttons use the `additional-field` slot, then the orientation will always be vertical.",
|
|
9108
10083
|
"docsTags": [],
|
|
9109
10084
|
"default": "\"vertical\"",
|
|
@@ -9142,6 +10117,39 @@
|
|
|
9142
10117
|
"optional": false,
|
|
9143
10118
|
"required": false
|
|
9144
10119
|
},
|
|
10120
|
+
{
|
|
10121
|
+
"name": "size",
|
|
10122
|
+
"type": "\"default\" | \"small\"",
|
|
10123
|
+
"complexType": {
|
|
10124
|
+
"original": "IcSizesNoLarge",
|
|
10125
|
+
"resolved": "\"default\" | \"small\"",
|
|
10126
|
+
"references": {
|
|
10127
|
+
"IcSizesNoLarge": {
|
|
10128
|
+
"location": "import",
|
|
10129
|
+
"path": "../../utils/types",
|
|
10130
|
+
"id": "src/utils/types.ts::IcSizesNoLarge"
|
|
10131
|
+
}
|
|
10132
|
+
}
|
|
10133
|
+
},
|
|
10134
|
+
"mutable": false,
|
|
10135
|
+
"attr": "size",
|
|
10136
|
+
"reflectToAttr": false,
|
|
10137
|
+
"docs": "The size of the radio group component.",
|
|
10138
|
+
"docsTags": [],
|
|
10139
|
+
"default": "\"default\"",
|
|
10140
|
+
"values": [
|
|
10141
|
+
{
|
|
10142
|
+
"value": "default",
|
|
10143
|
+
"type": "string"
|
|
10144
|
+
},
|
|
10145
|
+
{
|
|
10146
|
+
"value": "small",
|
|
10147
|
+
"type": "string"
|
|
10148
|
+
}
|
|
10149
|
+
],
|
|
10150
|
+
"optional": true,
|
|
10151
|
+
"required": false
|
|
10152
|
+
},
|
|
9145
10153
|
{
|
|
9146
10154
|
"name": "small",
|
|
9147
10155
|
"type": "boolean",
|
|
@@ -9153,15 +10161,21 @@
|
|
|
9153
10161
|
"mutable": false,
|
|
9154
10162
|
"attr": "small",
|
|
9155
10163
|
"reflectToAttr": false,
|
|
9156
|
-
"docs": "
|
|
9157
|
-
"docsTags": [
|
|
10164
|
+
"docs": "",
|
|
10165
|
+
"docsTags": [
|
|
10166
|
+
{
|
|
10167
|
+
"name": "deprecated",
|
|
10168
|
+
"text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
|
|
10169
|
+
}
|
|
10170
|
+
],
|
|
9158
10171
|
"default": "false",
|
|
10172
|
+
"deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
|
|
9159
10173
|
"values": [
|
|
9160
10174
|
{
|
|
9161
10175
|
"type": "boolean"
|
|
9162
10176
|
}
|
|
9163
10177
|
],
|
|
9164
|
-
"optional":
|
|
10178
|
+
"optional": true,
|
|
9165
10179
|
"required": false
|
|
9166
10180
|
},
|
|
9167
10181
|
{
|
|
@@ -9289,7 +10303,12 @@
|
|
|
9289
10303
|
"tag": "ic-radio-option",
|
|
9290
10304
|
"readme": "# ic-radio-option\n\n\n",
|
|
9291
10305
|
"docs": "",
|
|
9292
|
-
"docsTags": [
|
|
10306
|
+
"docsTags": [
|
|
10307
|
+
{
|
|
10308
|
+
"name": "slot",
|
|
10309
|
+
"text": "additional-field - Content to displayed alongside a radio option."
|
|
10310
|
+
}
|
|
10311
|
+
],
|
|
9293
10312
|
"usage": {},
|
|
9294
10313
|
"props": [
|
|
9295
10314
|
{
|
|
@@ -9307,26 +10326,154 @@
|
|
|
9307
10326
|
}
|
|
9308
10327
|
},
|
|
9309
10328
|
"mutable": false,
|
|
9310
|
-
"attr": "additional-field-display",
|
|
9311
|
-
"reflectToAttr": true,
|
|
9312
|
-
"docs": "The style of additionalField that will be displayed if used.",
|
|
10329
|
+
"attr": "additional-field-display",
|
|
10330
|
+
"reflectToAttr": true,
|
|
10331
|
+
"docs": "The style of additionalField that will be displayed if used.",
|
|
10332
|
+
"docsTags": [],
|
|
10333
|
+
"default": "\"static\"",
|
|
10334
|
+
"values": [
|
|
10335
|
+
{
|
|
10336
|
+
"value": "dynamic",
|
|
10337
|
+
"type": "string"
|
|
10338
|
+
},
|
|
10339
|
+
{
|
|
10340
|
+
"value": "static",
|
|
10341
|
+
"type": "string"
|
|
10342
|
+
}
|
|
10343
|
+
],
|
|
10344
|
+
"optional": false,
|
|
10345
|
+
"required": false
|
|
10346
|
+
},
|
|
10347
|
+
{
|
|
10348
|
+
"name": "disabled",
|
|
10349
|
+
"type": "boolean",
|
|
10350
|
+
"complexType": {
|
|
10351
|
+
"original": "boolean",
|
|
10352
|
+
"resolved": "boolean",
|
|
10353
|
+
"references": {}
|
|
10354
|
+
},
|
|
10355
|
+
"mutable": false,
|
|
10356
|
+
"attr": "disabled",
|
|
10357
|
+
"reflectToAttr": false,
|
|
10358
|
+
"docs": "If `true`, the disabled state will be set.",
|
|
10359
|
+
"docsTags": [],
|
|
10360
|
+
"default": "false",
|
|
10361
|
+
"values": [
|
|
10362
|
+
{
|
|
10363
|
+
"type": "boolean"
|
|
10364
|
+
}
|
|
10365
|
+
],
|
|
10366
|
+
"optional": true,
|
|
10367
|
+
"required": false
|
|
10368
|
+
},
|
|
10369
|
+
{
|
|
10370
|
+
"name": "dynamicText",
|
|
10371
|
+
"type": "string",
|
|
10372
|
+
"complexType": {
|
|
10373
|
+
"original": "string",
|
|
10374
|
+
"resolved": "string",
|
|
10375
|
+
"references": {}
|
|
10376
|
+
},
|
|
10377
|
+
"mutable": false,
|
|
10378
|
+
"attr": "dynamic-text",
|
|
10379
|
+
"reflectToAttr": false,
|
|
10380
|
+
"docs": "The text to be displayed when dynamic.",
|
|
10381
|
+
"docsTags": [],
|
|
10382
|
+
"default": "\"This selection requires additional answers\"",
|
|
10383
|
+
"values": [
|
|
10384
|
+
{
|
|
10385
|
+
"type": "string"
|
|
10386
|
+
}
|
|
10387
|
+
],
|
|
10388
|
+
"optional": false,
|
|
10389
|
+
"required": false
|
|
10390
|
+
},
|
|
10391
|
+
{
|
|
10392
|
+
"name": "form",
|
|
10393
|
+
"type": "string",
|
|
10394
|
+
"complexType": {
|
|
10395
|
+
"original": "string",
|
|
10396
|
+
"resolved": "string",
|
|
10397
|
+
"references": {}
|
|
10398
|
+
},
|
|
10399
|
+
"mutable": false,
|
|
10400
|
+
"attr": "form",
|
|
10401
|
+
"reflectToAttr": false,
|
|
10402
|
+
"docs": "The <form> element to associate the radio with.",
|
|
10403
|
+
"docsTags": [],
|
|
10404
|
+
"values": [
|
|
10405
|
+
{
|
|
10406
|
+
"type": "string"
|
|
10407
|
+
}
|
|
10408
|
+
],
|
|
10409
|
+
"optional": true,
|
|
10410
|
+
"required": false
|
|
10411
|
+
},
|
|
10412
|
+
{
|
|
10413
|
+
"name": "formaction",
|
|
10414
|
+
"type": "string",
|
|
10415
|
+
"complexType": {
|
|
10416
|
+
"original": "string",
|
|
10417
|
+
"resolved": "string",
|
|
10418
|
+
"references": {}
|
|
10419
|
+
},
|
|
10420
|
+
"mutable": false,
|
|
10421
|
+
"attr": "formaction",
|
|
10422
|
+
"reflectToAttr": false,
|
|
10423
|
+
"docs": "The URL that processes the information submitted by the radio. It overrides the action attribute of the radio's form owner. Does nothing if there is no form owner.",
|
|
10424
|
+
"docsTags": [],
|
|
10425
|
+
"values": [
|
|
10426
|
+
{
|
|
10427
|
+
"type": "string"
|
|
10428
|
+
}
|
|
10429
|
+
],
|
|
10430
|
+
"optional": true,
|
|
10431
|
+
"required": false
|
|
10432
|
+
},
|
|
10433
|
+
{
|
|
10434
|
+
"name": "formenctype",
|
|
10435
|
+
"type": "string",
|
|
10436
|
+
"complexType": {
|
|
10437
|
+
"original": "string",
|
|
10438
|
+
"resolved": "string",
|
|
10439
|
+
"references": {}
|
|
10440
|
+
},
|
|
10441
|
+
"mutable": false,
|
|
10442
|
+
"attr": "formenctype",
|
|
10443
|
+
"reflectToAttr": false,
|
|
10444
|
+
"docs": "The way the submitted form data is encoded.",
|
|
10445
|
+
"docsTags": [],
|
|
10446
|
+
"values": [
|
|
10447
|
+
{
|
|
10448
|
+
"type": "string"
|
|
10449
|
+
}
|
|
10450
|
+
],
|
|
10451
|
+
"optional": true,
|
|
10452
|
+
"required": false
|
|
10453
|
+
},
|
|
10454
|
+
{
|
|
10455
|
+
"name": "formmethod",
|
|
10456
|
+
"type": "string",
|
|
10457
|
+
"complexType": {
|
|
10458
|
+
"original": "string",
|
|
10459
|
+
"resolved": "string",
|
|
10460
|
+
"references": {}
|
|
10461
|
+
},
|
|
10462
|
+
"mutable": false,
|
|
10463
|
+
"attr": "formmethod",
|
|
10464
|
+
"reflectToAttr": false,
|
|
10465
|
+
"docs": "The HTTP method used to submit the form.",
|
|
9313
10466
|
"docsTags": [],
|
|
9314
|
-
"default": "\"static\"",
|
|
9315
10467
|
"values": [
|
|
9316
10468
|
{
|
|
9317
|
-
"value": "dynamic",
|
|
9318
|
-
"type": "string"
|
|
9319
|
-
},
|
|
9320
|
-
{
|
|
9321
|
-
"value": "static",
|
|
9322
10469
|
"type": "string"
|
|
9323
10470
|
}
|
|
9324
10471
|
],
|
|
9325
|
-
"optional":
|
|
10472
|
+
"optional": true,
|
|
9326
10473
|
"required": false
|
|
9327
10474
|
},
|
|
9328
10475
|
{
|
|
9329
|
-
"name": "
|
|
10476
|
+
"name": "formnovalidate",
|
|
9330
10477
|
"type": "boolean",
|
|
9331
10478
|
"complexType": {
|
|
9332
10479
|
"original": "boolean",
|
|
@@ -9334,11 +10481,10 @@
|
|
|
9334
10481
|
"references": {}
|
|
9335
10482
|
},
|
|
9336
10483
|
"mutable": false,
|
|
9337
|
-
"attr": "
|
|
10484
|
+
"attr": "formnovalidate",
|
|
9338
10485
|
"reflectToAttr": false,
|
|
9339
|
-
"docs": "If `true`, the
|
|
10486
|
+
"docs": "If `true`, the form will not be validated when submitted.",
|
|
9340
10487
|
"docsTags": [],
|
|
9341
|
-
"default": "false",
|
|
9342
10488
|
"values": [
|
|
9343
10489
|
{
|
|
9344
10490
|
"type": "boolean"
|
|
@@ -9348,7 +10494,7 @@
|
|
|
9348
10494
|
"required": false
|
|
9349
10495
|
},
|
|
9350
10496
|
{
|
|
9351
|
-
"name": "
|
|
10497
|
+
"name": "formtarget",
|
|
9352
10498
|
"type": "string",
|
|
9353
10499
|
"complexType": {
|
|
9354
10500
|
"original": "string",
|
|
@@ -9356,17 +10502,16 @@
|
|
|
9356
10502
|
"references": {}
|
|
9357
10503
|
},
|
|
9358
10504
|
"mutable": false,
|
|
9359
|
-
"attr": "
|
|
10505
|
+
"attr": "formtarget",
|
|
9360
10506
|
"reflectToAttr": false,
|
|
9361
|
-
"docs": "The
|
|
10507
|
+
"docs": "The place to display the response from submitting the form. It overrides the target attribute of the radio's form owner.",
|
|
9362
10508
|
"docsTags": [],
|
|
9363
|
-
"default": "\"This selection requires additional answers\"",
|
|
9364
10509
|
"values": [
|
|
9365
10510
|
{
|
|
9366
10511
|
"type": "string"
|
|
9367
10512
|
}
|
|
9368
10513
|
],
|
|
9369
|
-
"optional":
|
|
10514
|
+
"optional": true,
|
|
9370
10515
|
"required": false
|
|
9371
10516
|
},
|
|
9372
10517
|
{
|
|
@@ -9570,7 +10715,12 @@
|
|
|
9570
10715
|
}
|
|
9571
10716
|
],
|
|
9572
10717
|
"styles": [],
|
|
9573
|
-
"slots": [
|
|
10718
|
+
"slots": [
|
|
10719
|
+
{
|
|
10720
|
+
"name": "additional-field",
|
|
10721
|
+
"docs": "Content to displayed alongside a radio option."
|
|
10722
|
+
}
|
|
10723
|
+
],
|
|
9574
10724
|
"parts": [],
|
|
9575
10725
|
"dependents": [],
|
|
9576
10726
|
"dependencies": [
|
|
@@ -10386,6 +11536,39 @@
|
|
|
10386
11536
|
"optional": true,
|
|
10387
11537
|
"required": false
|
|
10388
11538
|
},
|
|
11539
|
+
{
|
|
11540
|
+
"name": "size",
|
|
11541
|
+
"type": "\"default\" | \"small\"",
|
|
11542
|
+
"complexType": {
|
|
11543
|
+
"original": "IcSizesNoLarge",
|
|
11544
|
+
"resolved": "\"default\" | \"small\"",
|
|
11545
|
+
"references": {
|
|
11546
|
+
"IcSizesNoLarge": {
|
|
11547
|
+
"location": "import",
|
|
11548
|
+
"path": "../../utils/types",
|
|
11549
|
+
"id": "src/utils/types.ts::IcSizesNoLarge"
|
|
11550
|
+
}
|
|
11551
|
+
}
|
|
11552
|
+
},
|
|
11553
|
+
"mutable": false,
|
|
11554
|
+
"attr": "size",
|
|
11555
|
+
"reflectToAttr": false,
|
|
11556
|
+
"docs": "The size of the search bar component.",
|
|
11557
|
+
"docsTags": [],
|
|
11558
|
+
"default": "\"default\"",
|
|
11559
|
+
"values": [
|
|
11560
|
+
{
|
|
11561
|
+
"value": "default",
|
|
11562
|
+
"type": "string"
|
|
11563
|
+
},
|
|
11564
|
+
{
|
|
11565
|
+
"value": "small",
|
|
11566
|
+
"type": "string"
|
|
11567
|
+
}
|
|
11568
|
+
],
|
|
11569
|
+
"optional": true,
|
|
11570
|
+
"required": false
|
|
11571
|
+
},
|
|
10389
11572
|
{
|
|
10390
11573
|
"name": "small",
|
|
10391
11574
|
"type": "boolean",
|
|
@@ -10397,9 +11580,15 @@
|
|
|
10397
11580
|
"mutable": false,
|
|
10398
11581
|
"attr": "small",
|
|
10399
11582
|
"reflectToAttr": false,
|
|
10400
|
-
"docs": "
|
|
10401
|
-
"docsTags": [
|
|
11583
|
+
"docs": "",
|
|
11584
|
+
"docsTags": [
|
|
11585
|
+
{
|
|
11586
|
+
"name": "deprecated",
|
|
11587
|
+
"text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
|
|
11588
|
+
}
|
|
11589
|
+
],
|
|
10402
11590
|
"default": "false",
|
|
11591
|
+
"deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
|
|
10403
11592
|
"values": [
|
|
10404
11593
|
{
|
|
10405
11594
|
"type": "boolean"
|
|
@@ -11031,6 +12220,132 @@
|
|
|
11031
12220
|
"optional": false,
|
|
11032
12221
|
"required": false
|
|
11033
12222
|
},
|
|
12223
|
+
{
|
|
12224
|
+
"name": "form",
|
|
12225
|
+
"type": "string",
|
|
12226
|
+
"complexType": {
|
|
12227
|
+
"original": "string",
|
|
12228
|
+
"resolved": "string",
|
|
12229
|
+
"references": {}
|
|
12230
|
+
},
|
|
12231
|
+
"mutable": false,
|
|
12232
|
+
"attr": "form",
|
|
12233
|
+
"reflectToAttr": false,
|
|
12234
|
+
"docs": "The <form> element to associate the select with.",
|
|
12235
|
+
"docsTags": [],
|
|
12236
|
+
"values": [
|
|
12237
|
+
{
|
|
12238
|
+
"type": "string"
|
|
12239
|
+
}
|
|
12240
|
+
],
|
|
12241
|
+
"optional": true,
|
|
12242
|
+
"required": false
|
|
12243
|
+
},
|
|
12244
|
+
{
|
|
12245
|
+
"name": "formaction",
|
|
12246
|
+
"type": "string",
|
|
12247
|
+
"complexType": {
|
|
12248
|
+
"original": "string",
|
|
12249
|
+
"resolved": "string",
|
|
12250
|
+
"references": {}
|
|
12251
|
+
},
|
|
12252
|
+
"mutable": false,
|
|
12253
|
+
"attr": "formaction",
|
|
12254
|
+
"reflectToAttr": false,
|
|
12255
|
+
"docs": "The URL that processes the information submitted by the select. It overrides the action attribute of the select's form owner. Does nothing if there is no form owner.\nThis prop should only be used with searchable select and will only be applied if searchable is true.",
|
|
12256
|
+
"docsTags": [],
|
|
12257
|
+
"values": [
|
|
12258
|
+
{
|
|
12259
|
+
"type": "string"
|
|
12260
|
+
}
|
|
12261
|
+
],
|
|
12262
|
+
"optional": true,
|
|
12263
|
+
"required": false
|
|
12264
|
+
},
|
|
12265
|
+
{
|
|
12266
|
+
"name": "formenctype",
|
|
12267
|
+
"type": "string",
|
|
12268
|
+
"complexType": {
|
|
12269
|
+
"original": "string",
|
|
12270
|
+
"resolved": "string",
|
|
12271
|
+
"references": {}
|
|
12272
|
+
},
|
|
12273
|
+
"mutable": false,
|
|
12274
|
+
"attr": "formenctype",
|
|
12275
|
+
"reflectToAttr": false,
|
|
12276
|
+
"docs": "The way the submitted form data is encoded. This prop should only be used with searchable select and will only be applied if searchable is true.",
|
|
12277
|
+
"docsTags": [],
|
|
12278
|
+
"values": [
|
|
12279
|
+
{
|
|
12280
|
+
"type": "string"
|
|
12281
|
+
}
|
|
12282
|
+
],
|
|
12283
|
+
"optional": true,
|
|
12284
|
+
"required": false
|
|
12285
|
+
},
|
|
12286
|
+
{
|
|
12287
|
+
"name": "formmethod",
|
|
12288
|
+
"type": "string",
|
|
12289
|
+
"complexType": {
|
|
12290
|
+
"original": "string",
|
|
12291
|
+
"resolved": "string",
|
|
12292
|
+
"references": {}
|
|
12293
|
+
},
|
|
12294
|
+
"mutable": false,
|
|
12295
|
+
"attr": "formmethod",
|
|
12296
|
+
"reflectToAttr": false,
|
|
12297
|
+
"docs": "The HTTP method used to submit the form. This prop should only be used with searchable select and will only be applied if searchable is true.",
|
|
12298
|
+
"docsTags": [],
|
|
12299
|
+
"values": [
|
|
12300
|
+
{
|
|
12301
|
+
"type": "string"
|
|
12302
|
+
}
|
|
12303
|
+
],
|
|
12304
|
+
"optional": true,
|
|
12305
|
+
"required": false
|
|
12306
|
+
},
|
|
12307
|
+
{
|
|
12308
|
+
"name": "formnovalidate",
|
|
12309
|
+
"type": "boolean",
|
|
12310
|
+
"complexType": {
|
|
12311
|
+
"original": "boolean",
|
|
12312
|
+
"resolved": "boolean",
|
|
12313
|
+
"references": {}
|
|
12314
|
+
},
|
|
12315
|
+
"mutable": false,
|
|
12316
|
+
"attr": "formnovalidate",
|
|
12317
|
+
"reflectToAttr": false,
|
|
12318
|
+
"docs": "If `true`, the form will not be validated when submitted. This prop should only be used with searchable select and will only be applied if searchable is true.",
|
|
12319
|
+
"docsTags": [],
|
|
12320
|
+
"values": [
|
|
12321
|
+
{
|
|
12322
|
+
"type": "boolean"
|
|
12323
|
+
}
|
|
12324
|
+
],
|
|
12325
|
+
"optional": true,
|
|
12326
|
+
"required": false
|
|
12327
|
+
},
|
|
12328
|
+
{
|
|
12329
|
+
"name": "formtarget",
|
|
12330
|
+
"type": "string",
|
|
12331
|
+
"complexType": {
|
|
12332
|
+
"original": "string",
|
|
12333
|
+
"resolved": "string",
|
|
12334
|
+
"references": {}
|
|
12335
|
+
},
|
|
12336
|
+
"mutable": false,
|
|
12337
|
+
"attr": "formtarget",
|
|
12338
|
+
"reflectToAttr": false,
|
|
12339
|
+
"docs": "The place to display the response from submitting the form. It overrides the target attribute of the select's form owner.\nThis prop should only be used with searchable select and will only be applied if searchable is true.",
|
|
12340
|
+
"docsTags": [],
|
|
12341
|
+
"values": [
|
|
12342
|
+
{
|
|
12343
|
+
"type": "string"
|
|
12344
|
+
}
|
|
12345
|
+
],
|
|
12346
|
+
"optional": true,
|
|
12347
|
+
"required": false
|
|
12348
|
+
},
|
|
11034
12349
|
{
|
|
11035
12350
|
"name": "fullWidth",
|
|
11036
12351
|
"type": "boolean",
|
|
@@ -11042,7 +12357,7 @@
|
|
|
11042
12357
|
"mutable": false,
|
|
11043
12358
|
"attr": "full-width",
|
|
11044
12359
|
"reflectToAttr": false,
|
|
11045
|
-
"docs": "If `true`, the select element will fill the width of the container.",
|
|
12360
|
+
"docs": "If `true`, the select element will fill the width of the container. This prop should only be used with searchable select and will only be applied if searchable is true.",
|
|
11046
12361
|
"docsTags": [],
|
|
11047
12362
|
"default": "false",
|
|
11048
12363
|
"values": [
|
|
@@ -11420,6 +12735,39 @@
|
|
|
11420
12735
|
"optional": true,
|
|
11421
12736
|
"required": false
|
|
11422
12737
|
},
|
|
12738
|
+
{
|
|
12739
|
+
"name": "size",
|
|
12740
|
+
"type": "\"default\" | \"small\"",
|
|
12741
|
+
"complexType": {
|
|
12742
|
+
"original": "IcSizesNoLarge",
|
|
12743
|
+
"resolved": "\"default\" | \"small\"",
|
|
12744
|
+
"references": {
|
|
12745
|
+
"IcSizesNoLarge": {
|
|
12746
|
+
"location": "import",
|
|
12747
|
+
"path": "../../utils/types",
|
|
12748
|
+
"id": "src/utils/types.ts::IcSizesNoLarge"
|
|
12749
|
+
}
|
|
12750
|
+
}
|
|
12751
|
+
},
|
|
12752
|
+
"mutable": false,
|
|
12753
|
+
"attr": "size",
|
|
12754
|
+
"reflectToAttr": false,
|
|
12755
|
+
"docs": "The size of the select component.",
|
|
12756
|
+
"docsTags": [],
|
|
12757
|
+
"default": "\"default\"",
|
|
12758
|
+
"values": [
|
|
12759
|
+
{
|
|
12760
|
+
"value": "default",
|
|
12761
|
+
"type": "string"
|
|
12762
|
+
},
|
|
12763
|
+
{
|
|
12764
|
+
"value": "small",
|
|
12765
|
+
"type": "string"
|
|
12766
|
+
}
|
|
12767
|
+
],
|
|
12768
|
+
"optional": true,
|
|
12769
|
+
"required": false
|
|
12770
|
+
},
|
|
11423
12771
|
{
|
|
11424
12772
|
"name": "small",
|
|
11425
12773
|
"type": "boolean",
|
|
@@ -11431,9 +12779,15 @@
|
|
|
11431
12779
|
"mutable": false,
|
|
11432
12780
|
"attr": "small",
|
|
11433
12781
|
"reflectToAttr": false,
|
|
11434
|
-
"docs": "
|
|
11435
|
-
"docsTags": [
|
|
12782
|
+
"docs": "",
|
|
12783
|
+
"docsTags": [
|
|
12784
|
+
{
|
|
12785
|
+
"name": "deprecated",
|
|
12786
|
+
"text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
|
|
12787
|
+
}
|
|
12788
|
+
],
|
|
11436
12789
|
"default": "false",
|
|
12790
|
+
"deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
|
|
11437
12791
|
"values": [
|
|
11438
12792
|
{
|
|
11439
12793
|
"type": "boolean"
|
|
@@ -11844,6 +13198,28 @@
|
|
|
11844
13198
|
"optional": false,
|
|
11845
13199
|
"required": false
|
|
11846
13200
|
},
|
|
13201
|
+
{
|
|
13202
|
+
"name": "disableTopBarBehaviour",
|
|
13203
|
+
"type": "boolean",
|
|
13204
|
+
"complexType": {
|
|
13205
|
+
"original": "boolean",
|
|
13206
|
+
"resolved": "boolean",
|
|
13207
|
+
"references": {}
|
|
13208
|
+
},
|
|
13209
|
+
"mutable": false,
|
|
13210
|
+
"attr": "disable-top-bar-behaviour",
|
|
13211
|
+
"reflectToAttr": false,
|
|
13212
|
+
"docs": "If `true`, the side navigation will not display as a top bar on small devices.",
|
|
13213
|
+
"docsTags": [],
|
|
13214
|
+
"default": "false",
|
|
13215
|
+
"values": [
|
|
13216
|
+
{
|
|
13217
|
+
"type": "boolean"
|
|
13218
|
+
}
|
|
13219
|
+
],
|
|
13220
|
+
"optional": false,
|
|
13221
|
+
"required": false
|
|
13222
|
+
},
|
|
11847
13223
|
{
|
|
11848
13224
|
"name": "expanded",
|
|
11849
13225
|
"type": "boolean",
|
|
@@ -12044,6 +13420,33 @@
|
|
|
12044
13420
|
"docsTags": [],
|
|
12045
13421
|
"usage": {},
|
|
12046
13422
|
"props": [
|
|
13423
|
+
{
|
|
13424
|
+
"name": "appearance",
|
|
13425
|
+
"type": "\"default\" | \"light\"",
|
|
13426
|
+
"complexType": {
|
|
13427
|
+
"original": "\"light\" | \"default\"",
|
|
13428
|
+
"resolved": "\"default\" | \"light\"",
|
|
13429
|
+
"references": {}
|
|
13430
|
+
},
|
|
13431
|
+
"mutable": false,
|
|
13432
|
+
"attr": "appearance",
|
|
13433
|
+
"reflectToAttr": false,
|
|
13434
|
+
"docs": "The appearance of the skeleton.",
|
|
13435
|
+
"docsTags": [],
|
|
13436
|
+
"default": "\"default\"",
|
|
13437
|
+
"values": [
|
|
13438
|
+
{
|
|
13439
|
+
"value": "default",
|
|
13440
|
+
"type": "string"
|
|
13441
|
+
},
|
|
13442
|
+
{
|
|
13443
|
+
"value": "light",
|
|
13444
|
+
"type": "string"
|
|
13445
|
+
}
|
|
13446
|
+
],
|
|
13447
|
+
"optional": true,
|
|
13448
|
+
"required": false
|
|
13449
|
+
},
|
|
12047
13450
|
{
|
|
12048
13451
|
"name": "light",
|
|
12049
13452
|
"type": "boolean",
|
|
@@ -12055,9 +13458,15 @@
|
|
|
12055
13458
|
"mutable": false,
|
|
12056
13459
|
"attr": "light",
|
|
12057
13460
|
"reflectToAttr": false,
|
|
12058
|
-
"docs": "
|
|
12059
|
-
"docsTags": [
|
|
13461
|
+
"docs": "",
|
|
13462
|
+
"docsTags": [
|
|
13463
|
+
{
|
|
13464
|
+
"name": "deprecated",
|
|
13465
|
+
"text": "This prop should not be used anymore. Set prop `appearance` to \"light\" instead."
|
|
13466
|
+
}
|
|
13467
|
+
],
|
|
12060
13468
|
"default": "false",
|
|
13469
|
+
"deprecation": "This prop should not be used anymore. Set prop `appearance` to \"light\" instead.",
|
|
12061
13470
|
"values": [
|
|
12062
13471
|
{
|
|
12063
13472
|
"type": "boolean"
|
|
@@ -12162,9 +13571,14 @@
|
|
|
12162
13571
|
"mutable": false,
|
|
12163
13572
|
"attr": "appearance",
|
|
12164
13573
|
"reflectToAttr": false,
|
|
12165
|
-
"docs": "
|
|
12166
|
-
"docsTags": [
|
|
12167
|
-
|
|
13574
|
+
"docs": "",
|
|
13575
|
+
"docsTags": [
|
|
13576
|
+
{
|
|
13577
|
+
"name": "deprecated",
|
|
13578
|
+
"text": "This prop should not be used anymore. Use variant prop instead."
|
|
13579
|
+
}
|
|
13580
|
+
],
|
|
13581
|
+
"deprecation": "This prop should not be used anymore. Use variant prop instead.",
|
|
12168
13582
|
"values": [
|
|
12169
13583
|
{
|
|
12170
13584
|
"value": "filled",
|
|
@@ -12199,6 +13613,39 @@
|
|
|
12199
13613
|
"optional": false,
|
|
12200
13614
|
"required": true
|
|
12201
13615
|
},
|
|
13616
|
+
{
|
|
13617
|
+
"name": "size",
|
|
13618
|
+
"type": "\"default\" | \"small\"",
|
|
13619
|
+
"complexType": {
|
|
13620
|
+
"original": "IcSizesNoLarge",
|
|
13621
|
+
"resolved": "\"default\" | \"small\"",
|
|
13622
|
+
"references": {
|
|
13623
|
+
"IcSizesNoLarge": {
|
|
13624
|
+
"location": "import",
|
|
13625
|
+
"path": "../../utils/types",
|
|
13626
|
+
"id": "src/utils/types.ts::IcSizesNoLarge"
|
|
13627
|
+
}
|
|
13628
|
+
}
|
|
13629
|
+
},
|
|
13630
|
+
"mutable": false,
|
|
13631
|
+
"attr": "size",
|
|
13632
|
+
"reflectToAttr": false,
|
|
13633
|
+
"docs": "The size of the status tag component.",
|
|
13634
|
+
"docsTags": [],
|
|
13635
|
+
"default": "\"default\"",
|
|
13636
|
+
"values": [
|
|
13637
|
+
{
|
|
13638
|
+
"value": "default",
|
|
13639
|
+
"type": "string"
|
|
13640
|
+
},
|
|
13641
|
+
{
|
|
13642
|
+
"value": "small",
|
|
13643
|
+
"type": "string"
|
|
13644
|
+
}
|
|
13645
|
+
],
|
|
13646
|
+
"optional": true,
|
|
13647
|
+
"required": false
|
|
13648
|
+
},
|
|
12202
13649
|
{
|
|
12203
13650
|
"name": "small",
|
|
12204
13651
|
"type": "boolean",
|
|
@@ -12210,9 +13657,15 @@
|
|
|
12210
13657
|
"mutable": false,
|
|
12211
13658
|
"attr": "small",
|
|
12212
13659
|
"reflectToAttr": false,
|
|
12213
|
-
"docs": "
|
|
12214
|
-
"docsTags": [
|
|
13660
|
+
"docs": "",
|
|
13661
|
+
"docsTags": [
|
|
13662
|
+
{
|
|
13663
|
+
"name": "deprecated",
|
|
13664
|
+
"text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
|
|
13665
|
+
}
|
|
13666
|
+
],
|
|
12215
13667
|
"default": "false",
|
|
13668
|
+
"deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
|
|
12216
13669
|
"values": [
|
|
12217
13670
|
{
|
|
12218
13671
|
"type": "boolean"
|
|
@@ -12261,6 +13714,39 @@
|
|
|
12261
13714
|
],
|
|
12262
13715
|
"optional": true,
|
|
12263
13716
|
"required": false
|
|
13717
|
+
},
|
|
13718
|
+
{
|
|
13719
|
+
"name": "variant",
|
|
13720
|
+
"type": "\"filled\" | \"outlined\"",
|
|
13721
|
+
"complexType": {
|
|
13722
|
+
"original": "IcEmphasisType",
|
|
13723
|
+
"resolved": "\"filled\" | \"outlined\"",
|
|
13724
|
+
"references": {
|
|
13725
|
+
"IcEmphasisType": {
|
|
13726
|
+
"location": "import",
|
|
13727
|
+
"path": "../../utils/types",
|
|
13728
|
+
"id": "src/utils/types.ts::IcEmphasisType"
|
|
13729
|
+
}
|
|
13730
|
+
}
|
|
13731
|
+
},
|
|
13732
|
+
"mutable": false,
|
|
13733
|
+
"attr": "variant",
|
|
13734
|
+
"reflectToAttr": false,
|
|
13735
|
+
"docs": "The emphasis of the status tag.",
|
|
13736
|
+
"docsTags": [],
|
|
13737
|
+
"default": "\"filled\"",
|
|
13738
|
+
"values": [
|
|
13739
|
+
{
|
|
13740
|
+
"value": "filled",
|
|
13741
|
+
"type": "string"
|
|
13742
|
+
},
|
|
13743
|
+
{
|
|
13744
|
+
"value": "outlined",
|
|
13745
|
+
"type": "string"
|
|
13746
|
+
}
|
|
13747
|
+
],
|
|
13748
|
+
"optional": true,
|
|
13749
|
+
"required": false
|
|
12264
13750
|
}
|
|
12265
13751
|
],
|
|
12266
13752
|
"methods": [],
|
|
@@ -12722,6 +14208,39 @@
|
|
|
12722
14208
|
"optional": true,
|
|
12723
14209
|
"required": false
|
|
12724
14210
|
},
|
|
14211
|
+
{
|
|
14212
|
+
"name": "size",
|
|
14213
|
+
"type": "\"default\" | \"small\"",
|
|
14214
|
+
"complexType": {
|
|
14215
|
+
"original": "IcSizesNoLarge",
|
|
14216
|
+
"resolved": "\"default\" | \"small\"",
|
|
14217
|
+
"references": {
|
|
14218
|
+
"IcSizesNoLarge": {
|
|
14219
|
+
"location": "import",
|
|
14220
|
+
"path": "../../utils/types",
|
|
14221
|
+
"id": "src/utils/types.ts::IcSizesNoLarge"
|
|
14222
|
+
}
|
|
14223
|
+
}
|
|
14224
|
+
},
|
|
14225
|
+
"mutable": false,
|
|
14226
|
+
"attr": "size",
|
|
14227
|
+
"reflectToAttr": false,
|
|
14228
|
+
"docs": "The size of the switch component.",
|
|
14229
|
+
"docsTags": [],
|
|
14230
|
+
"default": "\"default\"",
|
|
14231
|
+
"values": [
|
|
14232
|
+
{
|
|
14233
|
+
"value": "default",
|
|
14234
|
+
"type": "string"
|
|
14235
|
+
},
|
|
14236
|
+
{
|
|
14237
|
+
"value": "small",
|
|
14238
|
+
"type": "string"
|
|
14239
|
+
}
|
|
14240
|
+
],
|
|
14241
|
+
"optional": true,
|
|
14242
|
+
"required": false
|
|
14243
|
+
},
|
|
12725
14244
|
{
|
|
12726
14245
|
"name": "small",
|
|
12727
14246
|
"type": "boolean",
|
|
@@ -12733,9 +14252,15 @@
|
|
|
12733
14252
|
"mutable": false,
|
|
12734
14253
|
"attr": "small",
|
|
12735
14254
|
"reflectToAttr": false,
|
|
12736
|
-
"docs": "
|
|
12737
|
-
"docsTags": [
|
|
14255
|
+
"docs": "",
|
|
14256
|
+
"docsTags": [
|
|
14257
|
+
{
|
|
14258
|
+
"name": "deprecated",
|
|
14259
|
+
"text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
|
|
14260
|
+
}
|
|
14261
|
+
],
|
|
12738
14262
|
"default": "false",
|
|
14263
|
+
"deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
|
|
12739
14264
|
"values": [
|
|
12740
14265
|
{
|
|
12741
14266
|
"type": "boolean"
|
|
@@ -12875,6 +14400,10 @@
|
|
|
12875
14400
|
{
|
|
12876
14401
|
"name": "slot",
|
|
12877
14402
|
"text": "icon - Content will be rendered next to the tab label."
|
|
14403
|
+
},
|
|
14404
|
+
{
|
|
14405
|
+
"name": "slot",
|
|
14406
|
+
"text": "badge - Badge component displayed inline with the tab."
|
|
12878
14407
|
}
|
|
12879
14408
|
],
|
|
12880
14409
|
"usage": {},
|
|
@@ -12930,6 +14459,10 @@
|
|
|
12930
14459
|
"listeners": [],
|
|
12931
14460
|
"styles": [],
|
|
12932
14461
|
"slots": [
|
|
14462
|
+
{
|
|
14463
|
+
"name": "badge",
|
|
14464
|
+
"docs": "Badge component displayed inline with the tab."
|
|
14465
|
+
},
|
|
12933
14466
|
{
|
|
12934
14467
|
"name": "icon",
|
|
12935
14468
|
"docs": "Content will be rendered next to the tab label."
|
|
@@ -14047,6 +15580,39 @@
|
|
|
14047
15580
|
"optional": false,
|
|
14048
15581
|
"required": false
|
|
14049
15582
|
},
|
|
15583
|
+
{
|
|
15584
|
+
"name": "size",
|
|
15585
|
+
"type": "\"default\" | \"small\"",
|
|
15586
|
+
"complexType": {
|
|
15587
|
+
"original": "IcSizesNoLarge",
|
|
15588
|
+
"resolved": "\"default\" | \"small\"",
|
|
15589
|
+
"references": {
|
|
15590
|
+
"IcSizesNoLarge": {
|
|
15591
|
+
"location": "import",
|
|
15592
|
+
"path": "../../utils/types",
|
|
15593
|
+
"id": "src/utils/types.ts::IcSizesNoLarge"
|
|
15594
|
+
}
|
|
15595
|
+
}
|
|
15596
|
+
},
|
|
15597
|
+
"mutable": false,
|
|
15598
|
+
"attr": "size",
|
|
15599
|
+
"reflectToAttr": false,
|
|
15600
|
+
"docs": "The size of the text field component.",
|
|
15601
|
+
"docsTags": [],
|
|
15602
|
+
"default": "\"default\"",
|
|
15603
|
+
"values": [
|
|
15604
|
+
{
|
|
15605
|
+
"value": "default",
|
|
15606
|
+
"type": "string"
|
|
15607
|
+
},
|
|
15608
|
+
{
|
|
15609
|
+
"value": "small",
|
|
15610
|
+
"type": "string"
|
|
15611
|
+
}
|
|
15612
|
+
],
|
|
15613
|
+
"optional": true,
|
|
15614
|
+
"required": false
|
|
15615
|
+
},
|
|
14050
15616
|
{
|
|
14051
15617
|
"name": "small",
|
|
14052
15618
|
"type": "boolean",
|
|
@@ -14057,16 +15623,22 @@
|
|
|
14057
15623
|
},
|
|
14058
15624
|
"mutable": false,
|
|
14059
15625
|
"attr": "small",
|
|
14060
|
-
"reflectToAttr":
|
|
14061
|
-
"docs": "
|
|
14062
|
-
"docsTags": [
|
|
15626
|
+
"reflectToAttr": false,
|
|
15627
|
+
"docs": "",
|
|
15628
|
+
"docsTags": [
|
|
15629
|
+
{
|
|
15630
|
+
"name": "deprecated",
|
|
15631
|
+
"text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
|
|
15632
|
+
}
|
|
15633
|
+
],
|
|
14063
15634
|
"default": "false",
|
|
15635
|
+
"deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
|
|
14064
15636
|
"values": [
|
|
14065
15637
|
{
|
|
14066
15638
|
"type": "boolean"
|
|
14067
15639
|
}
|
|
14068
15640
|
],
|
|
14069
|
-
"optional":
|
|
15641
|
+
"optional": true,
|
|
14070
15642
|
"required": false
|
|
14071
15643
|
},
|
|
14072
15644
|
{
|
|
@@ -14904,6 +16476,27 @@
|
|
|
14904
16476
|
"optional": false,
|
|
14905
16477
|
"required": true
|
|
14906
16478
|
},
|
|
16479
|
+
{
|
|
16480
|
+
"name": "maxLines",
|
|
16481
|
+
"type": "number",
|
|
16482
|
+
"complexType": {
|
|
16483
|
+
"original": "number",
|
|
16484
|
+
"resolved": "number",
|
|
16485
|
+
"references": {}
|
|
16486
|
+
},
|
|
16487
|
+
"mutable": false,
|
|
16488
|
+
"attr": "max-lines",
|
|
16489
|
+
"reflectToAttr": false,
|
|
16490
|
+
"docs": "The number of lines to display before truncating the text.",
|
|
16491
|
+
"docsTags": [],
|
|
16492
|
+
"values": [
|
|
16493
|
+
{
|
|
16494
|
+
"type": "number"
|
|
16495
|
+
}
|
|
16496
|
+
],
|
|
16497
|
+
"optional": true,
|
|
16498
|
+
"required": false
|
|
16499
|
+
},
|
|
14907
16500
|
{
|
|
14908
16501
|
"name": "placement",
|
|
14909
16502
|
"type": "\"bottom\" | \"bottom-end\" | \"bottom-start\" | \"left\" | \"left-end\" | \"left-start\" | \"right\" | \"right-end\" | \"right-start\" | \"top\" | \"top-end\" | \"top-start\"",
|
|
@@ -15518,10 +17111,10 @@
|
|
|
15518
17111
|
},
|
|
15519
17112
|
{
|
|
15520
17113
|
"name": "variant",
|
|
15521
|
-
"type": "\"body\" | \"caption\" | \"caption-uppercase\" | \"code-extra-small\" | \"code-large\" | \"code-small\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"label\" | \"label-uppercase\" | \"subtitle-large\" | \"subtitle-small\"",
|
|
17114
|
+
"type": "\"badge\" | \"badge-small\" | \"body\" | \"caption\" | \"caption-uppercase\" | \"code-extra-small\" | \"code-large\" | \"code-small\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"label\" | \"label-uppercase\" | \"subtitle-large\" | \"subtitle-small\"",
|
|
15522
17115
|
"complexType": {
|
|
15523
17116
|
"original": "IcTypographyVariants",
|
|
15524
|
-
"resolved": "\"body\" | \"caption\" | \"caption-uppercase\" | \"code-extra-small\" | \"code-large\" | \"code-small\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"label\" | \"label-uppercase\" | \"subtitle-large\" | \"subtitle-small\"",
|
|
17117
|
+
"resolved": "\"badge\" | \"badge-small\" | \"body\" | \"caption\" | \"caption-uppercase\" | \"code-extra-small\" | \"code-large\" | \"code-small\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"label\" | \"label-uppercase\" | \"subtitle-large\" | \"subtitle-small\"",
|
|
15525
17118
|
"references": {
|
|
15526
17119
|
"IcTypographyVariants": {
|
|
15527
17120
|
"location": "import",
|
|
@@ -15537,6 +17130,14 @@
|
|
|
15537
17130
|
"docsTags": [],
|
|
15538
17131
|
"default": "\"body\"",
|
|
15539
17132
|
"values": [
|
|
17133
|
+
{
|
|
17134
|
+
"value": "badge",
|
|
17135
|
+
"type": "string"
|
|
17136
|
+
},
|
|
17137
|
+
{
|
|
17138
|
+
"value": "badge-small",
|
|
17139
|
+
"type": "string"
|
|
17140
|
+
},
|
|
15540
17141
|
{
|
|
15541
17142
|
"value": "body",
|
|
15542
17143
|
"type": "string"
|
|
@@ -15609,6 +17210,7 @@
|
|
|
15609
17210
|
"ic-accordion-group",
|
|
15610
17211
|
"ic-alert",
|
|
15611
17212
|
"ic-back-to-top",
|
|
17213
|
+
"ic-badge",
|
|
15612
17214
|
"ic-card",
|
|
15613
17215
|
"ic-checkbox",
|
|
15614
17216
|
"ic-chip",
|
|
@@ -15658,6 +17260,9 @@
|
|
|
15658
17260
|
"ic-back-to-top": [
|
|
15659
17261
|
"ic-typography"
|
|
15660
17262
|
],
|
|
17263
|
+
"ic-badge": [
|
|
17264
|
+
"ic-typography"
|
|
17265
|
+
],
|
|
15661
17266
|
"ic-card": [
|
|
15662
17267
|
"ic-typography"
|
|
15663
17268
|
],
|
|
@@ -15794,6 +17399,26 @@
|
|
|
15794
17399
|
"docstring": "",
|
|
15795
17400
|
"path": "src/components/ic-footer/ic-footer.types.tsx"
|
|
15796
17401
|
},
|
|
17402
|
+
"src/components/ic-badge/ic-badge.types.ts::IcColor": {
|
|
17403
|
+
"declaration": "export type IcColor = RGB | RGBA | HEX;",
|
|
17404
|
+
"docstring": "",
|
|
17405
|
+
"path": "src/components/ic-badge/ic-badge.types.ts"
|
|
17406
|
+
},
|
|
17407
|
+
"src/components/ic-badge/ic-badge.types.ts::IcBadgePositions": {
|
|
17408
|
+
"declaration": "export type IcBadgePositions = \"far\" | \"near\" | \"inline\";",
|
|
17409
|
+
"docstring": "",
|
|
17410
|
+
"path": "src/components/ic-badge/ic-badge.types.ts"
|
|
17411
|
+
},
|
|
17412
|
+
"src/components/ic-badge/ic-badge.types.ts::IcBadgeTypes": {
|
|
17413
|
+
"declaration": "export type IcBadgeTypes = \"dot\" | \"text\" | \"icon\";",
|
|
17414
|
+
"docstring": "",
|
|
17415
|
+
"path": "src/components/ic-badge/ic-badge.types.ts"
|
|
17416
|
+
},
|
|
17417
|
+
"src/components/ic-badge/ic-badge.types.ts::IcBadgeVariants": {
|
|
17418
|
+
"declaration": "export type IcBadgeVariants = IcStatusVariants | \"light\" | \"custom\";",
|
|
17419
|
+
"docstring": "",
|
|
17420
|
+
"path": "src/components/ic-badge/ic-badge.types.ts"
|
|
17421
|
+
},
|
|
15797
17422
|
"src/components/ic-button/ic-button.types.ts::IcButtonTooltipPlacement": {
|
|
15798
17423
|
"declaration": "export type IcButtonTooltipPlacement = \"top\" | \"right\" | \"bottom\" | \"left\";",
|
|
15799
17424
|
"docstring": "",
|
|
@@ -15809,6 +17434,26 @@
|
|
|
15809
17434
|
"docstring": "",
|
|
15810
17435
|
"path": "src/components/ic-button/ic-button.types.ts"
|
|
15811
17436
|
},
|
|
17437
|
+
"src/components/ic-chip/ic-chip.types.ts::IcChipAppearance": {
|
|
17438
|
+
"declaration": "export type IcChipAppearance = \"filled\" | \"outline\";",
|
|
17439
|
+
"docstring": "",
|
|
17440
|
+
"path": "src/components/ic-chip/ic-chip.types.ts"
|
|
17441
|
+
},
|
|
17442
|
+
"src/utils/types.ts::IcEmphasisType": {
|
|
17443
|
+
"declaration": "export type IcEmphasisType = \"filled\" | \"outlined\";",
|
|
17444
|
+
"docstring": "",
|
|
17445
|
+
"path": "src/utils/types.ts"
|
|
17446
|
+
},
|
|
17447
|
+
"src/utils/types.ts::IcThemeForegroundNoDefault": {
|
|
17448
|
+
"declaration": "export type IcThemeForegroundNoDefault = \"dark\" | \"light\";",
|
|
17449
|
+
"docstring": "",
|
|
17450
|
+
"path": "src/utils/types.ts"
|
|
17451
|
+
},
|
|
17452
|
+
"src/components/ic-tab/ic-tab.types.ts::IcTabClickEventDetail": {
|
|
17453
|
+
"declaration": "export interface IcTabClickEventDetail {\n tabId: string;\n contextId: string;\n position: number;\n}",
|
|
17454
|
+
"docstring": "",
|
|
17455
|
+
"path": "src/components/ic-tab/ic-tab.types.ts"
|
|
17456
|
+
},
|
|
15812
17457
|
"src/utils/types.ts::IcAdditionalFieldTypes": {
|
|
15813
17458
|
"declaration": "export type IcAdditionalFieldTypes = \"static\" | \"dynamic\";",
|
|
15814
17459
|
"docstring": "",
|
|
@@ -15844,6 +17489,11 @@
|
|
|
15844
17489
|
"docstring": "",
|
|
15845
17490
|
"path": "src/components/ic-text-field/ic-text-field.types.ts"
|
|
15846
17491
|
},
|
|
17492
|
+
"src/utils/types.ts::IcSizesNoLarge": {
|
|
17493
|
+
"declaration": "export type IcSizesNoLarge = \"default\" | \"small\";",
|
|
17494
|
+
"docstring": "",
|
|
17495
|
+
"path": "src/utils/types.ts"
|
|
17496
|
+
},
|
|
15847
17497
|
"src/components/ic-text-field/ic-text-field.types.ts::IcTextFieldTypes": {
|
|
15848
17498
|
"declaration": "export type IcTextFieldTypes =\n | \"email\"\n | \"password\"\n | \"tel\"\n | \"text\"\n | \"url\"\n | \"number\"\n | \"search\";",
|
|
15849
17499
|
"docstring": "",
|
|
@@ -15854,18 +17504,13 @@
|
|
|
15854
17504
|
"docstring": "",
|
|
15855
17505
|
"path": "src/utils/types.ts"
|
|
15856
17506
|
},
|
|
15857
|
-
"src/components/ic-chip/ic-chip.types.ts::IcChipAppearance": {
|
|
15858
|
-
"declaration": "export type IcChipAppearance = \"filled\" | \"outline\";",
|
|
15859
|
-
"docstring": "",
|
|
15860
|
-
"path": "src/components/ic-chip/ic-chip.types.ts"
|
|
15861
|
-
},
|
|
15862
17507
|
"src/components/ic-empty-state/ic-empty-state.types.ts::IcEmptyStateAlignment": {
|
|
15863
17508
|
"declaration": "export type IcEmptyStateAlignment = \"left\" | \"center\" | \"right\";",
|
|
15864
17509
|
"docstring": "",
|
|
15865
17510
|
"path": "src/components/ic-empty-state/ic-empty-state.types.ts"
|
|
15866
17511
|
},
|
|
15867
17512
|
"src/utils/types.ts::IcTypographyVariants": {
|
|
15868
|
-
"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\";",
|
|
17513
|
+
"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\";",
|
|
15869
17514
|
"docstring": "",
|
|
15870
17515
|
"path": "src/utils/types.ts"
|
|
15871
17516
|
},
|
|
@@ -15879,11 +17524,6 @@
|
|
|
15879
17524
|
"docstring": "",
|
|
15880
17525
|
"path": "src/components/ic-input-validation/ic-input-validation.types.tsx"
|
|
15881
17526
|
},
|
|
15882
|
-
"src/utils/types.ts::IcThemeForegroundNoDefault": {
|
|
15883
|
-
"declaration": "export type IcThemeForegroundNoDefault = \"dark\" | \"light\";",
|
|
15884
|
-
"docstring": "",
|
|
15885
|
-
"path": "src/utils/types.ts"
|
|
15886
|
-
},
|
|
15887
17527
|
"src/components/ic-loading-indicator/ic-loading-indicator.types.tsx::IcLoadingSizes": {
|
|
15888
17528
|
"declaration": "export type IcLoadingSizes = \"default\" | \"small\" | \"large\" | \"icon\";",
|
|
15889
17529
|
"docstring": "",
|
|
@@ -16009,11 +17649,6 @@
|
|
|
16009
17649
|
"docstring": "",
|
|
16010
17650
|
"path": "src/components/ic-switch/ic-switch.types.ts"
|
|
16011
17651
|
},
|
|
16012
|
-
"src/components/ic-tab/ic-tab.types.ts::IcTabClickEventDetail": {
|
|
16013
|
-
"declaration": "export interface IcTabClickEventDetail {\n tabId: string;\n contextId: string;\n position: number;\n}",
|
|
16014
|
-
"docstring": "",
|
|
16015
|
-
"path": "src/components/ic-tab/ic-tab.types.ts"
|
|
16016
|
-
},
|
|
16017
17652
|
"src/components/ic-tab/ic-tab.types.ts::IcTabSelectEventDetail": {
|
|
16018
17653
|
"declaration": "export interface IcTabSelectEventDetail {\n tabIndex: number;\n}",
|
|
16019
17654
|
"docstring": "",
|