@ukic/docs 2.5.0 → 2.5.1
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 +409 -21
- package/package.json +2 -2
package/docs.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2023-
|
|
2
|
+
"timestamp": "2023-10-10T14:14:57",
|
|
3
3
|
"compiler": {
|
|
4
4
|
"name": "@stencil/core",
|
|
5
5
|
"version": "4.3.0",
|
|
@@ -691,6 +691,338 @@
|
|
|
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
|
+
"methods": [
|
|
966
|
+
{
|
|
967
|
+
"name": "hideBadge",
|
|
968
|
+
"returns": {
|
|
969
|
+
"type": "Promise<void>",
|
|
970
|
+
"docs": ""
|
|
971
|
+
},
|
|
972
|
+
"complexType": {
|
|
973
|
+
"signature": "() => Promise<void>",
|
|
974
|
+
"parameters": [],
|
|
975
|
+
"references": {
|
|
976
|
+
"Promise": {
|
|
977
|
+
"location": "global",
|
|
978
|
+
"id": "global::Promise"
|
|
979
|
+
}
|
|
980
|
+
},
|
|
981
|
+
"return": "Promise<void>"
|
|
982
|
+
},
|
|
983
|
+
"signature": "hideBadge() => Promise<void>",
|
|
984
|
+
"parameters": [],
|
|
985
|
+
"docs": "Use to hide the badge.",
|
|
986
|
+
"docsTags": []
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
"name": "showBadge",
|
|
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": "showBadge() => Promise<void>",
|
|
1006
|
+
"parameters": [],
|
|
1007
|
+
"docs": "Use to show the badge.",
|
|
1008
|
+
"docsTags": []
|
|
1009
|
+
}
|
|
1010
|
+
],
|
|
1011
|
+
"events": [],
|
|
1012
|
+
"listeners": [],
|
|
1013
|
+
"styles": [],
|
|
1014
|
+
"slots": [],
|
|
1015
|
+
"parts": [],
|
|
1016
|
+
"dependents": [],
|
|
1017
|
+
"dependencies": [
|
|
1018
|
+
"ic-typography"
|
|
1019
|
+
],
|
|
1020
|
+
"dependencyGraph": {
|
|
1021
|
+
"ic-badge": [
|
|
1022
|
+
"ic-typography"
|
|
1023
|
+
]
|
|
1024
|
+
}
|
|
1025
|
+
},
|
|
694
1026
|
{
|
|
695
1027
|
"filePath": "src/components/ic-breadcrumb/ic-breadcrumb.tsx",
|
|
696
1028
|
"encapsulation": "shadow",
|
|
@@ -910,6 +1242,10 @@
|
|
|
910
1242
|
{
|
|
911
1243
|
"name": "slot",
|
|
912
1244
|
"text": "right-icon - Content will be placed to the right of the button label."
|
|
1245
|
+
},
|
|
1246
|
+
{
|
|
1247
|
+
"name": "slot",
|
|
1248
|
+
"text": "badge - Badge component overlaying the top right of the button."
|
|
913
1249
|
}
|
|
914
1250
|
],
|
|
915
1251
|
"usage": {},
|
|
@@ -1573,6 +1909,10 @@
|
|
|
1573
1909
|
}
|
|
1574
1910
|
],
|
|
1575
1911
|
"slots": [
|
|
1912
|
+
{
|
|
1913
|
+
"name": "badge",
|
|
1914
|
+
"docs": "Badge component overlaying the top right of the button."
|
|
1915
|
+
},
|
|
1576
1916
|
{
|
|
1577
1917
|
"name": "icon",
|
|
1578
1918
|
"docs": "Deprecated. This slot should not be used anymore. Use left-icon or right-icon slot instead."
|
|
@@ -2801,6 +3141,10 @@
|
|
|
2801
3141
|
{
|
|
2802
3142
|
"name": "slot",
|
|
2803
3143
|
"text": "icon - Content will be rendered at the start of the chip."
|
|
3144
|
+
},
|
|
3145
|
+
{
|
|
3146
|
+
"name": "slot",
|
|
3147
|
+
"text": "badge - Badge component overlaying the top right of the chip."
|
|
2804
3148
|
}
|
|
2805
3149
|
],
|
|
2806
3150
|
"usage": {},
|
|
@@ -3010,6 +3354,10 @@
|
|
|
3010
3354
|
],
|
|
3011
3355
|
"styles": [],
|
|
3012
3356
|
"slots": [
|
|
3357
|
+
{
|
|
3358
|
+
"name": "badge",
|
|
3359
|
+
"docs": "Badge component overlaying the top right of the chip."
|
|
3360
|
+
},
|
|
3013
3361
|
{
|
|
3014
3362
|
"name": "icon",
|
|
3015
3363
|
"docs": "Content will be rendered at the start of the chip."
|
|
@@ -9101,9 +9449,9 @@
|
|
|
9101
9449
|
}
|
|
9102
9450
|
}
|
|
9103
9451
|
},
|
|
9104
|
-
"mutable":
|
|
9452
|
+
"mutable": false,
|
|
9105
9453
|
"attr": "orientation",
|
|
9106
|
-
"reflectToAttr":
|
|
9454
|
+
"reflectToAttr": false,
|
|
9107
9455
|
"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
9456
|
"docsTags": [],
|
|
9109
9457
|
"default": "\"vertical\"",
|
|
@@ -12875,6 +13223,10 @@
|
|
|
12875
13223
|
{
|
|
12876
13224
|
"name": "slot",
|
|
12877
13225
|
"text": "icon - Content will be rendered next to the tab label."
|
|
13226
|
+
},
|
|
13227
|
+
{
|
|
13228
|
+
"name": "slot",
|
|
13229
|
+
"text": "badge - Badge component displayed inline with the tab."
|
|
12878
13230
|
}
|
|
12879
13231
|
],
|
|
12880
13232
|
"usage": {},
|
|
@@ -12930,6 +13282,10 @@
|
|
|
12930
13282
|
"listeners": [],
|
|
12931
13283
|
"styles": [],
|
|
12932
13284
|
"slots": [
|
|
13285
|
+
{
|
|
13286
|
+
"name": "badge",
|
|
13287
|
+
"docs": "Badge component displayed inline with the tab."
|
|
13288
|
+
},
|
|
12933
13289
|
{
|
|
12934
13290
|
"name": "icon",
|
|
12935
13291
|
"docs": "Content will be rendered next to the tab label."
|
|
@@ -15518,10 +15874,10 @@
|
|
|
15518
15874
|
},
|
|
15519
15875
|
{
|
|
15520
15876
|
"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\"",
|
|
15877
|
+
"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
15878
|
"complexType": {
|
|
15523
15879
|
"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\"",
|
|
15880
|
+
"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
15881
|
"references": {
|
|
15526
15882
|
"IcTypographyVariants": {
|
|
15527
15883
|
"location": "import",
|
|
@@ -15537,6 +15893,14 @@
|
|
|
15537
15893
|
"docsTags": [],
|
|
15538
15894
|
"default": "\"body\"",
|
|
15539
15895
|
"values": [
|
|
15896
|
+
{
|
|
15897
|
+
"value": "badge",
|
|
15898
|
+
"type": "string"
|
|
15899
|
+
},
|
|
15900
|
+
{
|
|
15901
|
+
"value": "badge-small",
|
|
15902
|
+
"type": "string"
|
|
15903
|
+
},
|
|
15540
15904
|
{
|
|
15541
15905
|
"value": "body",
|
|
15542
15906
|
"type": "string"
|
|
@@ -15609,6 +15973,7 @@
|
|
|
15609
15973
|
"ic-accordion-group",
|
|
15610
15974
|
"ic-alert",
|
|
15611
15975
|
"ic-back-to-top",
|
|
15976
|
+
"ic-badge",
|
|
15612
15977
|
"ic-card",
|
|
15613
15978
|
"ic-checkbox",
|
|
15614
15979
|
"ic-chip",
|
|
@@ -15658,6 +16023,9 @@
|
|
|
15658
16023
|
"ic-back-to-top": [
|
|
15659
16024
|
"ic-typography"
|
|
15660
16025
|
],
|
|
16026
|
+
"ic-badge": [
|
|
16027
|
+
"ic-typography"
|
|
16028
|
+
],
|
|
15661
16029
|
"ic-card": [
|
|
15662
16030
|
"ic-typography"
|
|
15663
16031
|
],
|
|
@@ -15794,6 +16162,26 @@
|
|
|
15794
16162
|
"docstring": "",
|
|
15795
16163
|
"path": "src/components/ic-footer/ic-footer.types.tsx"
|
|
15796
16164
|
},
|
|
16165
|
+
"src/components/ic-badge/ic-badge.types.ts::IcColor": {
|
|
16166
|
+
"declaration": "export type IcColor = RGB | RGBA | HEX;",
|
|
16167
|
+
"docstring": "",
|
|
16168
|
+
"path": "src/components/ic-badge/ic-badge.types.ts"
|
|
16169
|
+
},
|
|
16170
|
+
"src/components/ic-badge/ic-badge.types.ts::IcBadgePositions": {
|
|
16171
|
+
"declaration": "export type IcBadgePositions = \"far\" | \"near\" | \"inline\";",
|
|
16172
|
+
"docstring": "",
|
|
16173
|
+
"path": "src/components/ic-badge/ic-badge.types.ts"
|
|
16174
|
+
},
|
|
16175
|
+
"src/components/ic-badge/ic-badge.types.ts::IcBadgeTypes": {
|
|
16176
|
+
"declaration": "export type IcBadgeTypes = \"dot\" | \"text\" | \"icon\";",
|
|
16177
|
+
"docstring": "",
|
|
16178
|
+
"path": "src/components/ic-badge/ic-badge.types.ts"
|
|
16179
|
+
},
|
|
16180
|
+
"src/components/ic-badge/ic-badge.types.ts::IcBadgeVariants": {
|
|
16181
|
+
"declaration": "export type IcBadgeVariants = IcStatusVariants | \"light\" | \"custom\";",
|
|
16182
|
+
"docstring": "",
|
|
16183
|
+
"path": "src/components/ic-badge/ic-badge.types.ts"
|
|
16184
|
+
},
|
|
15797
16185
|
"src/components/ic-button/ic-button.types.ts::IcButtonTooltipPlacement": {
|
|
15798
16186
|
"declaration": "export type IcButtonTooltipPlacement = \"top\" | \"right\" | \"bottom\" | \"left\";",
|
|
15799
16187
|
"docstring": "",
|
|
@@ -15809,6 +16197,21 @@
|
|
|
15809
16197
|
"docstring": "",
|
|
15810
16198
|
"path": "src/components/ic-button/ic-button.types.ts"
|
|
15811
16199
|
},
|
|
16200
|
+
"src/components/ic-chip/ic-chip.types.ts::IcChipAppearance": {
|
|
16201
|
+
"declaration": "export type IcChipAppearance = \"filled\" | \"outline\";",
|
|
16202
|
+
"docstring": "",
|
|
16203
|
+
"path": "src/components/ic-chip/ic-chip.types.ts"
|
|
16204
|
+
},
|
|
16205
|
+
"src/utils/types.ts::IcThemeForegroundNoDefault": {
|
|
16206
|
+
"declaration": "export type IcThemeForegroundNoDefault = \"dark\" | \"light\";",
|
|
16207
|
+
"docstring": "",
|
|
16208
|
+
"path": "src/utils/types.ts"
|
|
16209
|
+
},
|
|
16210
|
+
"src/components/ic-tab/ic-tab.types.ts::IcTabClickEventDetail": {
|
|
16211
|
+
"declaration": "export interface IcTabClickEventDetail {\n tabId: string;\n contextId: string;\n position: number;\n}",
|
|
16212
|
+
"docstring": "",
|
|
16213
|
+
"path": "src/components/ic-tab/ic-tab.types.ts"
|
|
16214
|
+
},
|
|
15812
16215
|
"src/utils/types.ts::IcAdditionalFieldTypes": {
|
|
15813
16216
|
"declaration": "export type IcAdditionalFieldTypes = \"static\" | \"dynamic\";",
|
|
15814
16217
|
"docstring": "",
|
|
@@ -15854,18 +16257,13 @@
|
|
|
15854
16257
|
"docstring": "",
|
|
15855
16258
|
"path": "src/utils/types.ts"
|
|
15856
16259
|
},
|
|
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
16260
|
"src/components/ic-empty-state/ic-empty-state.types.ts::IcEmptyStateAlignment": {
|
|
15863
16261
|
"declaration": "export type IcEmptyStateAlignment = \"left\" | \"center\" | \"right\";",
|
|
15864
16262
|
"docstring": "",
|
|
15865
16263
|
"path": "src/components/ic-empty-state/ic-empty-state.types.ts"
|
|
15866
16264
|
},
|
|
15867
16265
|
"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\";",
|
|
16266
|
+
"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
16267
|
"docstring": "",
|
|
15870
16268
|
"path": "src/utils/types.ts"
|
|
15871
16269
|
},
|
|
@@ -15879,11 +16277,6 @@
|
|
|
15879
16277
|
"docstring": "",
|
|
15880
16278
|
"path": "src/components/ic-input-validation/ic-input-validation.types.tsx"
|
|
15881
16279
|
},
|
|
15882
|
-
"src/utils/types.ts::IcThemeForegroundNoDefault": {
|
|
15883
|
-
"declaration": "export type IcThemeForegroundNoDefault = \"dark\" | \"light\";",
|
|
15884
|
-
"docstring": "",
|
|
15885
|
-
"path": "src/utils/types.ts"
|
|
15886
|
-
},
|
|
15887
16280
|
"src/components/ic-loading-indicator/ic-loading-indicator.types.tsx::IcLoadingSizes": {
|
|
15888
16281
|
"declaration": "export type IcLoadingSizes = \"default\" | \"small\" | \"large\" | \"icon\";",
|
|
15889
16282
|
"docstring": "",
|
|
@@ -16009,11 +16402,6 @@
|
|
|
16009
16402
|
"docstring": "",
|
|
16010
16403
|
"path": "src/components/ic-switch/ic-switch.types.ts"
|
|
16011
16404
|
},
|
|
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
16405
|
"src/components/ic-tab/ic-tab.types.ts::IcTabSelectEventDetail": {
|
|
16018
16406
|
"declaration": "export interface IcTabSelectEventDetail {\n tabIndex: number;\n}",
|
|
16019
16407
|
"docstring": "",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"author": "mi6",
|
|
3
3
|
"name": "@ukic/docs",
|
|
4
|
-
"version": "2.5.
|
|
4
|
+
"version": "2.5.1",
|
|
5
5
|
"description": "API documentation for @ukic components",
|
|
6
6
|
"main": "docs.json",
|
|
7
7
|
"types": "docs.d.ts",
|
|
@@ -18,5 +18,5 @@
|
|
|
18
18
|
"email": "icds@gchq.gov.uk"
|
|
19
19
|
},
|
|
20
20
|
"license": "MIT",
|
|
21
|
-
"gitHead": "
|
|
21
|
+
"gitHead": "a5d1824f7769588f071731716859219a2b2d057a"
|
|
22
22
|
}
|