You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: frontend/packages/console-dynamic-plugin-sdk/docs/api.md
+160-8
Original file line number
Diff line number
Diff line change
@@ -128,10 +128,28 @@ React context
128
128
129
129
### Summary
130
130
131
-
[For more details please refer the implementation](https://github.com/openshift/console/tree/release-4.11/frontend/packages/console-dynamic-plugin-sdk/src/app/components/status/icons.tsx)
131
+
Component for displaying a green check mark circle icon
[For more details please refer the implementation](https://github.com/openshift/console/tree/release-4.11/frontend/packages/console-dynamic-plugin-sdk/src/app/components/status/icons.tsx)
162
+
Component for displaying a red exclamation mark circle icon
[For more details please refer the implementation](https://github.com/openshift/console/tree/release-4.11/frontend/packages/console-dynamic-plugin-sdk/src/app/components/status/icons.tsx)
193
+
Component for displaying a yellow triangle exclamation icon
[For more details please refer the implementation](https://github.com/openshift/console/tree/release-4.11/frontend/packages/console-dynamic-plugin-sdk/src/app/components/status/icons.tsx)
[For more details please refer the implementation](https://github.com/openshift/console/tree/release-4.11/frontend/packages/console-dynamic-plugin-sdk/src/app/components/status/statuses.tsx)
255
+
Component for displaying an error status popover
184
256
185
257
186
258
259
+
### Example
260
+
261
+
262
+
```tsx
263
+
<ErrorStatus />
264
+
```
265
+
266
+
267
+
268
+
269
+
270
+
### Parameters
271
+
272
+
| Parameter Name | Description |
273
+
| -------------- | ----------- |
274
+
|`title`| (optional) status text |
275
+
|`iconOnly`| (optional) if true, only displays icon |
276
+
|`noTooltip`| (optional) if true, does not display tooltip |
277
+
|`className`| (optional) class name for styling |
278
+
|`popoverTitle`| (optional) title for popover |
187
279
188
280
189
281
@@ -193,10 +285,30 @@ React context
193
285
194
286
### Summary
195
287
196
-
[For more details please refer the implementation](https://github.com/openshift/console/tree/release-4.11/frontend/packages/console-dynamic-plugin-sdk/src/app/components/status/statuses.tsx)
288
+
Component for displaying an information status popover
197
289
198
290
199
291
292
+
### Example
293
+
294
+
295
+
```tsx
296
+
<InfoStatus />
297
+
```
298
+
299
+
300
+
301
+
302
+
303
+
### Parameters
304
+
305
+
| Parameter Name | Description |
306
+
| -------------- | ----------- |
307
+
|`title`| (optional) status text |
308
+
|`iconOnly`| (optional) if true, only displays icon |
309
+
|`noTooltip`| (optional) if true, does not display tooltip |
310
+
|`className`| (optional) class name for styling |
311
+
|`popoverTitle`| (optional) title for popover |
200
312
201
313
202
314
@@ -206,10 +318,30 @@ React context
206
318
207
319
### Summary
208
320
209
-
[For more details please refer the implementation](https://github.com/openshift/console/tree/release-4.11/frontend/packages/console-dynamic-plugin-sdk/src/app/components/status/statuses.tsx)
321
+
Component for displaying a progressing status popover
210
322
211
323
212
324
325
+
### Example
326
+
327
+
328
+
```tsx
329
+
<ProgressStatus />
330
+
```
331
+
332
+
333
+
334
+
335
+
336
+
### Parameters
337
+
338
+
| Parameter Name | Description |
339
+
| -------------- | ----------- |
340
+
|`title`| (optional) status text |
341
+
|`iconOnly`| (optional) if true, only displays icon |
342
+
|`noTooltip`| (optional) if true, does not display tooltip |
343
+
|`className`| (optional) class name for styling |
344
+
|`popoverTitle`| (optional) title for popover |
213
345
214
346
215
347
@@ -219,10 +351,30 @@ React context
219
351
220
352
### Summary
221
353
222
-
[For more details please refer the implementation](https://github.com/openshift/console/tree/release-4.11/frontend/packages/console-dynamic-plugin-sdk/src/app/components/status/statuses.tsx)
354
+
Component for displaying a success status popover
223
355
224
356
225
357
358
+
### Example
359
+
360
+
361
+
```tsx
362
+
<SuccessStatus />
363
+
```
364
+
365
+
366
+
367
+
368
+
369
+
### Parameters
370
+
371
+
| Parameter Name | Description |
372
+
| -------------- | ----------- |
373
+
|`title`| (optional) status text |
374
+
|`iconOnly`| (optional) if true, only displays icon |
375
+
|`noTooltip`| (optional) if true, does not display tooltip |
0 commit comments