@ukic/docs 2.2.0 → 2.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/docs.json +626 -30
  2. package/package.json +2 -3
  3. package/LICENSE +0 -21
package/docs.json CHANGED
@@ -1,11 +1,278 @@
1
1
  {
2
- "timestamp": "2023-08-07T08:28:14",
2
+ "timestamp": "2023-09-04T16:59:11",
3
3
  "compiler": {
4
4
  "name": "@stencil/core",
5
5
  "version": "3.4.2",
6
6
  "typescriptVersion": "5.0.4"
7
7
  },
8
8
  "components": [
9
+ {
10
+ "filePath": "./src/components/ic-accordion/ic-accordion.tsx",
11
+ "encapsulation": "shadow",
12
+ "tag": "ic-accordion",
13
+ "readme": "# ic-accordion\n\n\n",
14
+ "docs": "",
15
+ "docsTags": [],
16
+ "usage": {},
17
+ "props": [
18
+ {
19
+ "name": "disabled",
20
+ "type": "boolean",
21
+ "mutable": false,
22
+ "attr": "disabled",
23
+ "reflectToAttr": false,
24
+ "docs": "If `true`, the accordion will be disabled.",
25
+ "docsTags": [],
26
+ "default": "false",
27
+ "values": [
28
+ {
29
+ "type": "boolean"
30
+ }
31
+ ],
32
+ "optional": true,
33
+ "required": false
34
+ },
35
+ {
36
+ "name": "expanded",
37
+ "type": "boolean",
38
+ "mutable": true,
39
+ "attr": "expanded",
40
+ "reflectToAttr": false,
41
+ "docs": "If `true`, the accordion appears expanded.",
42
+ "docsTags": [],
43
+ "default": "false",
44
+ "values": [
45
+ {
46
+ "type": "boolean"
47
+ }
48
+ ],
49
+ "optional": false,
50
+ "required": false
51
+ },
52
+ {
53
+ "name": "heading",
54
+ "type": "string",
55
+ "mutable": false,
56
+ "attr": "heading",
57
+ "reflectToAttr": false,
58
+ "docs": "The section header outlining section content.",
59
+ "docsTags": [],
60
+ "default": "\"\"",
61
+ "values": [
62
+ {
63
+ "type": "string"
64
+ }
65
+ ],
66
+ "optional": true,
67
+ "required": false
68
+ },
69
+ {
70
+ "name": "message",
71
+ "type": "string",
72
+ "mutable": false,
73
+ "attr": "message",
74
+ "reflectToAttr": false,
75
+ "docs": "The main body message of the accordion.",
76
+ "docsTags": [],
77
+ "default": "\"\"",
78
+ "values": [
79
+ {
80
+ "type": "string"
81
+ }
82
+ ],
83
+ "optional": true,
84
+ "required": false
85
+ },
86
+ {
87
+ "name": "size",
88
+ "type": "\"default\" | \"large\" | \"small\"",
89
+ "mutable": false,
90
+ "attr": "size",
91
+ "reflectToAttr": false,
92
+ "docs": "The size of the accordion.",
93
+ "docsTags": [],
94
+ "default": "\"default\"",
95
+ "values": [
96
+ {
97
+ "value": "default",
98
+ "type": "string"
99
+ },
100
+ {
101
+ "value": "large",
102
+ "type": "string"
103
+ },
104
+ {
105
+ "value": "small",
106
+ "type": "string"
107
+ }
108
+ ],
109
+ "optional": true,
110
+ "required": false
111
+ }
112
+ ],
113
+ "methods": [],
114
+ "events": [],
115
+ "listeners": [],
116
+ "styles": [],
117
+ "slots": [],
118
+ "parts": [],
119
+ "dependents": [],
120
+ "dependencies": [
121
+ "ic-typography"
122
+ ],
123
+ "dependencyGraph": {
124
+ "ic-accordion": [
125
+ "ic-typography"
126
+ ]
127
+ }
128
+ },
129
+ {
130
+ "filePath": "./src/components/ic-accordion-group/ic-accordion-group.tsx",
131
+ "encapsulation": "shadow",
132
+ "tag": "ic-accordion-group",
133
+ "readme": "# ic-accordion-title\n\n\n",
134
+ "docs": "",
135
+ "docsTags": [],
136
+ "usage": {},
137
+ "props": [
138
+ {
139
+ "name": "appearance",
140
+ "type": "\"dark\" | \"default\" | \"light\"",
141
+ "mutable": false,
142
+ "attr": "appearance",
143
+ "reflectToAttr": false,
144
+ "docs": "The appearance of the accordion group, e.g dark, or light.",
145
+ "docsTags": [],
146
+ "default": "\"default\"",
147
+ "values": [
148
+ {
149
+ "value": "dark",
150
+ "type": "string"
151
+ },
152
+ {
153
+ "value": "default",
154
+ "type": "string"
155
+ },
156
+ {
157
+ "value": "light",
158
+ "type": "string"
159
+ }
160
+ ],
161
+ "optional": false,
162
+ "required": false
163
+ },
164
+ {
165
+ "name": "expanded",
166
+ "type": "boolean",
167
+ "mutable": true,
168
+ "attr": "expanded",
169
+ "reflectToAttr": false,
170
+ "docs": "If `true`, the accordion will load in an expanded state.",
171
+ "docsTags": [],
172
+ "default": "false",
173
+ "values": [
174
+ {
175
+ "type": "boolean"
176
+ }
177
+ ],
178
+ "optional": false,
179
+ "required": false
180
+ },
181
+ {
182
+ "name": "groupTitle",
183
+ "type": "string",
184
+ "mutable": false,
185
+ "attr": "group-title",
186
+ "reflectToAttr": false,
187
+ "docs": "The header for the accordion group.",
188
+ "docsTags": [],
189
+ "default": "\"\"",
190
+ "values": [
191
+ {
192
+ "type": "string"
193
+ }
194
+ ],
195
+ "optional": false,
196
+ "required": false
197
+ },
198
+ {
199
+ "name": "singleExpansion",
200
+ "type": "boolean",
201
+ "mutable": false,
202
+ "attr": "single-expansion",
203
+ "reflectToAttr": false,
204
+ "docs": "If `true`, only one accordion will open at a time.",
205
+ "docsTags": [],
206
+ "default": "false",
207
+ "values": [
208
+ {
209
+ "type": "boolean"
210
+ }
211
+ ],
212
+ "optional": false,
213
+ "required": false
214
+ },
215
+ {
216
+ "name": "size",
217
+ "type": "\"default\" | \"large\" | \"small\"",
218
+ "mutable": false,
219
+ "attr": "size",
220
+ "reflectToAttr": false,
221
+ "docs": "The size of the accordion.",
222
+ "docsTags": [],
223
+ "default": "\"default\"",
224
+ "values": [
225
+ {
226
+ "value": "default",
227
+ "type": "string"
228
+ },
229
+ {
230
+ "value": "large",
231
+ "type": "string"
232
+ },
233
+ {
234
+ "value": "small",
235
+ "type": "string"
236
+ }
237
+ ],
238
+ "optional": true,
239
+ "required": false
240
+ }
241
+ ],
242
+ "methods": [],
243
+ "events": [],
244
+ "listeners": [
245
+ {
246
+ "event": "accordionClicked",
247
+ "capture": false,
248
+ "passive": false
249
+ }
250
+ ],
251
+ "styles": [],
252
+ "slots": [],
253
+ "parts": [],
254
+ "dependents": [],
255
+ "dependencies": [
256
+ "ic-typography",
257
+ "ic-button"
258
+ ],
259
+ "dependencyGraph": {
260
+ "ic-accordion-group": [
261
+ "ic-typography",
262
+ "ic-button"
263
+ ],
264
+ "ic-button": [
265
+ "ic-loading-indicator",
266
+ "ic-tooltip"
267
+ ],
268
+ "ic-loading-indicator": [
269
+ "ic-typography"
270
+ ],
271
+ "ic-tooltip": [
272
+ "ic-typography"
273
+ ]
274
+ }
275
+ },
9
276
  {
10
277
  "filePath": "./src/components/ic-alert/ic-alert.tsx",
11
278
  "encapsulation": "shadow",
@@ -97,7 +364,7 @@
97
364
  "mutable": false,
98
365
  "attr": "title-above",
99
366
  "reflectToAttr": false,
100
- "docs": "If `true`, the title and message will appear inline instead of above and below.",
367
+ "docs": "If `true`, the title and message will appear above and below instead of inline.",
101
368
  "docsTags": [],
102
369
  "default": "false",
103
370
  "values": [
@@ -428,7 +695,15 @@
428
695
  "docsTags": [
429
696
  {
430
697
  "name": "slot",
431
- "text": "icon - Content will be placed to the left of the button label."
698
+ "text": "icon - Deprecated. This slot should not be used anymore. Use left-icon or right-icon slot instead."
699
+ },
700
+ {
701
+ "name": "slot",
702
+ "text": "left-icon - Content will be placed to the left of the button label."
703
+ },
704
+ {
705
+ "name": "slot",
706
+ "text": "right-icon - Content will be placed to the right of the button label."
432
707
  }
433
708
  ],
434
709
  "usage": {},
@@ -933,11 +1208,20 @@
933
1208
  "slots": [
934
1209
  {
935
1210
  "name": "icon",
1211
+ "docs": "Deprecated. This slot should not be used anymore. Use left-icon or right-icon slot instead."
1212
+ },
1213
+ {
1214
+ "name": "left-icon",
936
1215
  "docs": "Content will be placed to the left of the button label."
1216
+ },
1217
+ {
1218
+ "name": "right-icon",
1219
+ "docs": "Content will be placed to the right of the button label."
937
1220
  }
938
1221
  ],
939
1222
  "parts": [],
940
1223
  "dependents": [
1224
+ "ic-accordion-group",
941
1225
  "ic-alert",
942
1226
  "ic-card",
943
1227
  "ic-dialog",
@@ -968,6 +1252,9 @@
968
1252
  "ic-tooltip": [
969
1253
  "ic-typography"
970
1254
  ],
1255
+ "ic-accordion-group": [
1256
+ "ic-button"
1257
+ ],
971
1258
  "ic-alert": [
972
1259
  "ic-button"
973
1260
  ],
@@ -1533,15 +1820,46 @@
1533
1820
  "optional": false,
1534
1821
  "required": false
1535
1822
  },
1823
+ {
1824
+ "name": "size",
1825
+ "type": "\"default\" | \"large\" | \"small\"",
1826
+ "mutable": false,
1827
+ "attr": "size",
1828
+ "reflectToAttr": false,
1829
+ "docs": "The size of the checkbox to be displayed. This does not affect the font size of the label. If a checkbox is contained in a checkbox group, this will override the size set on checkbox group.",
1830
+ "docsTags": [],
1831
+ "values": [
1832
+ {
1833
+ "value": "default",
1834
+ "type": "string"
1835
+ },
1836
+ {
1837
+ "value": "large",
1838
+ "type": "string"
1839
+ },
1840
+ {
1841
+ "value": "small",
1842
+ "type": "string"
1843
+ }
1844
+ ],
1845
+ "optional": true,
1846
+ "required": false
1847
+ },
1536
1848
  {
1537
1849
  "name": "small",
1538
1850
  "type": "boolean",
1539
1851
  "mutable": false,
1540
1852
  "attr": "small",
1541
1853
  "reflectToAttr": false,
1542
- "docs": "If true, the small styling will be applied to the checkbox.",
1543
- "docsTags": [],
1854
+ "docs": "",
1855
+ "docsTags": [
1856
+ {
1857
+ "name": "deprecated",
1858
+ "text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
1859
+ }
1860
+ ],
1544
1861
  "default": "false",
1862
+ "deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
1545
1863
  "values": [
1546
1864
  {
1547
1865
  "type": "boolean"
@@ -1729,15 +2047,47 @@
1729
2047
  "optional": false,
1730
2048
  "required": false
1731
2049
  },
2050
+ {
2051
+ "name": "size",
2052
+ "type": "\"default\" | \"large\" | \"small\"",
2053
+ "mutable": false,
2054
+ "attr": "size",
2055
+ "reflectToAttr": false,
2056
+ "docs": "The size of the checkboxes to be displayed. This does not affect the font size of the label.",
2057
+ "docsTags": [],
2058
+ "default": "\"default\"",
2059
+ "values": [
2060
+ {
2061
+ "value": "default",
2062
+ "type": "string"
2063
+ },
2064
+ {
2065
+ "value": "large",
2066
+ "type": "string"
2067
+ },
2068
+ {
2069
+ "value": "small",
2070
+ "type": "string"
2071
+ }
2072
+ ],
2073
+ "optional": true,
2074
+ "required": false
2075
+ },
1732
2076
  {
1733
2077
  "name": "small",
1734
2078
  "type": "boolean",
1735
2079
  "mutable": false,
1736
2080
  "attr": "small",
1737
2081
  "reflectToAttr": false,
1738
- "docs": "If `true`, the small styling will be applied to the checkbox group.",
1739
- "docsTags": [],
2082
+ "docs": "",
2083
+ "docsTags": [
2084
+ {
2085
+ "name": "deprecated",
2086
+ "text": "This prop should not be used anymore. Set prop `size` to \"small\" instead."
2087
+ }
2088
+ ],
1740
2089
  "default": "false",
2090
+ "deprecation": "This prop should not be used anymore. Set prop `size` to \"small\" instead.",
1741
2091
  "values": [
1742
2092
  {
1743
2093
  "type": "boolean"
@@ -2692,6 +3042,166 @@
2692
3042
  ]
2693
3043
  }
2694
3044
  },
3045
+ {
3046
+ "filePath": "./src/components/ic-empty-state/ic-empty-state.tsx",
3047
+ "encapsulation": "shadow",
3048
+ "tag": "ic-empty-state",
3049
+ "readme": "# ic-empty-state\n\n\n",
3050
+ "docs": "",
3051
+ "docsTags": [
3052
+ {
3053
+ "name": "slot",
3054
+ "text": "image - Content is placed at the top above all other content."
3055
+ },
3056
+ {
3057
+ "name": "slot",
3058
+ "text": "actions - Content is placed at the bottom below all other content."
3059
+ }
3060
+ ],
3061
+ "usage": {},
3062
+ "props": [
3063
+ {
3064
+ "name": "aligned",
3065
+ "type": "\"center\" | \"left\" | \"right\"",
3066
+ "mutable": false,
3067
+ "attr": "aligned",
3068
+ "reflectToAttr": false,
3069
+ "docs": "The alignment of the empty state container.",
3070
+ "docsTags": [],
3071
+ "default": "\"left\"",
3072
+ "values": [
3073
+ {
3074
+ "value": "center",
3075
+ "type": "string"
3076
+ },
3077
+ {
3078
+ "value": "left",
3079
+ "type": "string"
3080
+ },
3081
+ {
3082
+ "value": "right",
3083
+ "type": "string"
3084
+ }
3085
+ ],
3086
+ "optional": true,
3087
+ "required": false
3088
+ },
3089
+ {
3090
+ "name": "body",
3091
+ "type": "string",
3092
+ "mutable": false,
3093
+ "attr": "body",
3094
+ "reflectToAttr": false,
3095
+ "docs": "The body text rendered in the empty state container.",
3096
+ "docsTags": [],
3097
+ "values": [
3098
+ {
3099
+ "type": "string"
3100
+ }
3101
+ ],
3102
+ "optional": true,
3103
+ "required": false
3104
+ },
3105
+ {
3106
+ "name": "bodyMaxLines",
3107
+ "type": "number",
3108
+ "mutable": false,
3109
+ "attr": "body-max-lines",
3110
+ "reflectToAttr": false,
3111
+ "docs": "The number of lines of body text to display before truncating.",
3112
+ "docsTags": [],
3113
+ "values": [
3114
+ {
3115
+ "type": "number"
3116
+ }
3117
+ ],
3118
+ "optional": true,
3119
+ "required": false
3120
+ },
3121
+ {
3122
+ "name": "heading",
3123
+ "type": "string",
3124
+ "mutable": false,
3125
+ "attr": "heading",
3126
+ "reflectToAttr": false,
3127
+ "docs": "The title rendered in the empty state container.",
3128
+ "docsTags": [],
3129
+ "values": [
3130
+ {
3131
+ "type": "string"
3132
+ }
3133
+ ],
3134
+ "optional": false,
3135
+ "required": true
3136
+ },
3137
+ {
3138
+ "name": "imageSize",
3139
+ "type": "\"default\" | \"large\" | \"small\"",
3140
+ "mutable": false,
3141
+ "attr": "image-size",
3142
+ "reflectToAttr": false,
3143
+ "docs": "The size of the image or icon used in the image slot.",
3144
+ "docsTags": [],
3145
+ "default": "\"default\"",
3146
+ "values": [
3147
+ {
3148
+ "value": "default",
3149
+ "type": "string"
3150
+ },
3151
+ {
3152
+ "value": "large",
3153
+ "type": "string"
3154
+ },
3155
+ {
3156
+ "value": "small",
3157
+ "type": "string"
3158
+ }
3159
+ ],
3160
+ "optional": true,
3161
+ "required": false
3162
+ },
3163
+ {
3164
+ "name": "subheading",
3165
+ "type": "string",
3166
+ "mutable": false,
3167
+ "attr": "subheading",
3168
+ "reflectToAttr": false,
3169
+ "docs": "The subtitle rendered in the empty state container.",
3170
+ "docsTags": [],
3171
+ "values": [
3172
+ {
3173
+ "type": "string"
3174
+ }
3175
+ ],
3176
+ "optional": true,
3177
+ "required": false
3178
+ }
3179
+ ],
3180
+ "methods": [],
3181
+ "events": [],
3182
+ "listeners": [],
3183
+ "styles": [],
3184
+ "slots": [
3185
+ {
3186
+ "name": "actions",
3187
+ "docs": "Content is placed at the bottom below all other content."
3188
+ },
3189
+ {
3190
+ "name": "image",
3191
+ "docs": "Content is placed at the top above all other content."
3192
+ }
3193
+ ],
3194
+ "parts": [],
3195
+ "dependents": [],
3196
+ "dependencies": [
3197
+ "ic-typography"
3198
+ ],
3199
+ "dependencyGraph": {
3200
+ "ic-empty-state": [
3201
+ "ic-typography"
3202
+ ]
3203
+ }
3204
+ },
2695
3205
  {
2696
3206
  "filePath": "./src/components/ic-footer/ic-footer.tsx",
2697
3207
  "encapsulation": "shadow",
@@ -8572,57 +9082,46 @@
8572
9082
  }
8573
9083
  ],
8574
9084
  "listeners": [],
8575
- "styles": [
8576
- {
8577
- "name": "--ic-z-index-menu",
8578
- "annotation": "prop",
8579
- "docs": "z-index of select menu"
8580
- },
8581
- {
8582
- "name": "--input-width",
8583
- "annotation": "prop",
8584
- "docs": "Width of the input field"
8585
- }
8586
- ],
9085
+ "styles": [],
8587
9086
  "slots": [],
8588
9087
  "parts": [],
8589
9088
  "dependents": [],
8590
9089
  "dependencies": [
9090
+ "ic-menu",
8591
9091
  "ic-input-container",
8592
9092
  "ic-input-label",
8593
9093
  "ic-input-component-container",
8594
9094
  "ic-typography",
8595
9095
  "ic-button",
8596
- "ic-menu",
8597
9096
  "ic-input-validation"
8598
9097
  ],
8599
9098
  "dependencyGraph": {
8600
9099
  "ic-select": [
9100
+ "ic-menu",
8601
9101
  "ic-input-container",
8602
9102
  "ic-input-label",
8603
9103
  "ic-input-component-container",
8604
9104
  "ic-typography",
8605
9105
  "ic-button",
8606
- "ic-menu",
8607
9106
  "ic-input-validation"
8608
9107
  ],
8609
- "ic-input-label": [
9108
+ "ic-menu": [
9109
+ "ic-loading-indicator",
9110
+ "ic-typography",
9111
+ "ic-button"
9112
+ ],
9113
+ "ic-loading-indicator": [
8610
9114
  "ic-typography"
8611
9115
  ],
8612
9116
  "ic-button": [
8613
9117
  "ic-loading-indicator",
8614
9118
  "ic-tooltip"
8615
9119
  ],
8616
- "ic-loading-indicator": [
8617
- "ic-typography"
8618
- ],
8619
9120
  "ic-tooltip": [
8620
9121
  "ic-typography"
8621
9122
  ],
8622
- "ic-menu": [
8623
- "ic-loading-indicator",
8624
- "ic-typography",
8625
- "ic-button"
9123
+ "ic-input-label": [
9124
+ "ic-typography"
8626
9125
  ],
8627
9126
  "ic-input-validation": [
8628
9127
  "ic-typography"
@@ -8739,6 +9238,23 @@
8739
9238
  "optional": false,
8740
9239
  "required": false
8741
9240
  },
9241
+ {
9242
+ "name": "shortAppTitle",
9243
+ "type": "string",
9244
+ "mutable": false,
9245
+ "attr": "short-app-title",
9246
+ "reflectToAttr": false,
9247
+ "docs": "The short title of the app to be displayed at small screen sizes in place of the app title.",
9248
+ "docsTags": [],
9249
+ "default": "\"\"",
9250
+ "values": [
9251
+ {
9252
+ "type": "string"
9253
+ }
9254
+ ],
9255
+ "optional": false,
9256
+ "required": false
9257
+ },
8742
9258
  {
8743
9259
  "name": "static",
8744
9260
  "type": "boolean",
@@ -11095,7 +11611,7 @@
11095
11611
  {
11096
11612
  "name": "placement",
11097
11613
  "type": "\"bottom\" | \"bottom-end\" | \"bottom-start\" | \"left\" | \"left-end\" | \"left-start\" | \"right\" | \"right-end\" | \"right-start\" | \"top\" | \"top-end\" | \"top-start\"",
11098
- "mutable": false,
11614
+ "mutable": true,
11099
11615
  "attr": "placement",
11100
11616
  "reflectToAttr": false,
11101
11617
  "docs": "The position of the tool-tip in relation to the parent element.",
@@ -11503,6 +12019,40 @@
11503
12019
  "optional": true,
11504
12020
  "required": false
11505
12021
  },
12022
+ {
12023
+ "name": "bold",
12024
+ "type": "boolean",
12025
+ "mutable": false,
12026
+ "attr": "bold",
12027
+ "reflectToAttr": false,
12028
+ "docs": "If `true`, the typography will have a bold font weight.\nNote: This will have no impact on variants that already use an equivalent or higher font weight (h1, h2, and subtitle-large).",
12029
+ "docsTags": [],
12030
+ "default": "false",
12031
+ "values": [
12032
+ {
12033
+ "type": "boolean"
12034
+ }
12035
+ ],
12036
+ "optional": true,
12037
+ "required": false
12038
+ },
12039
+ {
12040
+ "name": "italic",
12041
+ "type": "boolean",
12042
+ "mutable": false,
12043
+ "attr": "italic",
12044
+ "reflectToAttr": false,
12045
+ "docs": "If `true`, the typography will have an italic font style.",
12046
+ "docsTags": [],
12047
+ "default": "false",
12048
+ "values": [
12049
+ {
12050
+ "type": "boolean"
12051
+ }
12052
+ ],
12053
+ "optional": true,
12054
+ "required": false
12055
+ },
11506
12056
  {
11507
12057
  "name": "maxLines",
11508
12058
  "type": "number",
@@ -11519,6 +12069,40 @@
11519
12069
  "optional": true,
11520
12070
  "required": false
11521
12071
  },
12072
+ {
12073
+ "name": "strikethrough",
12074
+ "type": "boolean",
12075
+ "mutable": false,
12076
+ "attr": "strikethrough",
12077
+ "reflectToAttr": false,
12078
+ "docs": "If `true`, the typography will have a line through it.",
12079
+ "docsTags": [],
12080
+ "default": "false",
12081
+ "values": [
12082
+ {
12083
+ "type": "boolean"
12084
+ }
12085
+ ],
12086
+ "optional": true,
12087
+ "required": false
12088
+ },
12089
+ {
12090
+ "name": "underline",
12091
+ "type": "boolean",
12092
+ "mutable": false,
12093
+ "attr": "underline",
12094
+ "reflectToAttr": false,
12095
+ "docs": "If `true`, the typography will have a line under it.",
12096
+ "docsTags": [],
12097
+ "default": "false",
12098
+ "values": [
12099
+ {
12100
+ "type": "boolean"
12101
+ }
12102
+ ],
12103
+ "optional": true,
12104
+ "required": false
12105
+ },
11522
12106
  {
11523
12107
  "name": "variant",
11524
12108
  "type": "\"body\" | \"caption\" | \"caption-uppercase\" | \"code-extra-small\" | \"code-large\" | \"code-small\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"label\" | \"label-uppercase\" | \"subtitle-large\" | \"subtitle-small\"",
@@ -11597,6 +12181,8 @@
11597
12181
  "slots": [],
11598
12182
  "parts": [],
11599
12183
  "dependents": [
12184
+ "ic-accordion",
12185
+ "ic-accordion-group",
11600
12186
  "ic-alert",
11601
12187
  "ic-back-to-top",
11602
12188
  "ic-card",
@@ -11606,6 +12192,7 @@
11606
12192
  "ic-data-entity",
11607
12193
  "ic-data-row",
11608
12194
  "ic-dialog",
12195
+ "ic-empty-state",
11609
12196
  "ic-footer",
11610
12197
  "ic-footer-link-group",
11611
12198
  "ic-hero",
@@ -11635,6 +12222,12 @@
11635
12222
  ],
11636
12223
  "dependencies": [],
11637
12224
  "dependencyGraph": {
12225
+ "ic-accordion": [
12226
+ "ic-typography"
12227
+ ],
12228
+ "ic-accordion-group": [
12229
+ "ic-typography"
12230
+ ],
11638
12231
  "ic-alert": [
11639
12232
  "ic-typography"
11640
12233
  ],
@@ -11662,6 +12255,9 @@
11662
12255
  "ic-dialog": [
11663
12256
  "ic-typography"
11664
12257
  ],
12258
+ "ic-empty-state": [
12259
+ "ic-typography"
12260
+ ],
11665
12261
  "ic-footer": [
11666
12262
  "ic-typography"
11667
12263
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ukic/docs",
3
- "version": "2.2.0",
3
+ "version": "2.3.0",
4
4
  "description": "API documentation for @ukic components",
5
5
  "main": "docs.json",
6
6
  "types": "docs.d.ts",
@@ -8,6 +8,5 @@
8
8
  "docs.json",
9
9
  "docs.d.ts"
10
10
  ],
11
- "license": "MIT",
12
- "gitHead": "c6d9d32d9d0dbdd8c263b06af05e1da6183c1efe"
11
+ "license": "MIT"
13
12
  }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2022 The Secret Intelligence Service (MI6)
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.