@patternfly/patternfly 4.203.4 → 4.204.2
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/components/Drawer/drawer.css +1 -1
- package/components/Drawer/drawer.scss +2 -2
- package/components/Menu/menu.css +1 -0
- package/components/Menu/menu.scss +1 -0
- package/components/NumberInput/number-input.css +11 -1
- package/components/NumberInput/number-input.scss +15 -1
- package/docs/components/DescriptionList/examples/DescriptionList.md +21 -21
- package/docs/components/LogViewer/examples/LogViewer.md +1 -0
- package/docs/components/ModalBox/examples/ModalBox.css +10 -0
- package/docs/components/ModalBox/examples/ModalBox.md +34 -17
- package/docs/components/NumberInput/examples/NumberInput.md +57 -6
- package/docs/components/Popover/examples/Popover.css +8 -8
- package/docs/components/Popover/examples/Popover.md +47 -20
- package/docs/components/Table/examples/Table.md +52 -52
- package/docs/demos/Card/examples/Card.md +1 -0
- package/docs/demos/Modal/examples/Modal.md +6 -0
- package/docs/demos/Table/examples/Table.md +73 -72
- package/docs/demos/Tabs/examples/Tabs.md +1 -0
- package/docs/demos/Wizard/examples/Wizard.md +5 -0
- package/package.json +1 -1
- package/patternfly-no-reset.css +13 -2
- package/patternfly.css +13 -2
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -8,9 +8,10 @@ cssPrefix: pf-c-popover
|
|
|
8
8
|
|
|
9
9
|
### Top
|
|
10
10
|
|
|
11
|
-
```html
|
|
11
|
+
```html isFullscreen
|
|
12
12
|
<div
|
|
13
13
|
class="pf-c-popover pf-m-top"
|
|
14
|
+
role="dialog"
|
|
14
15
|
aria-modal="true"
|
|
15
16
|
aria-labelledby="popover-top-header"
|
|
16
17
|
aria-describedby="popover-top-body"
|
|
@@ -33,9 +34,10 @@ cssPrefix: pf-c-popover
|
|
|
33
34
|
|
|
34
35
|
### Right
|
|
35
36
|
|
|
36
|
-
```html
|
|
37
|
+
```html isFullscreen
|
|
37
38
|
<div
|
|
38
39
|
class="pf-c-popover pf-m-right"
|
|
40
|
+
role="dialog"
|
|
39
41
|
aria-modal="true"
|
|
40
42
|
aria-labelledby="popover-right-header"
|
|
41
43
|
aria-describedby="popover-right-body"
|
|
@@ -58,9 +60,10 @@ cssPrefix: pf-c-popover
|
|
|
58
60
|
|
|
59
61
|
### Bottom
|
|
60
62
|
|
|
61
|
-
```html
|
|
63
|
+
```html isFullscreen
|
|
62
64
|
<div
|
|
63
65
|
class="pf-c-popover pf-m-bottom"
|
|
66
|
+
role="dialog"
|
|
64
67
|
aria-modal="true"
|
|
65
68
|
aria-labelledby="popover-bottom-header"
|
|
66
69
|
aria-describedby="popover-bottom-body"
|
|
@@ -83,9 +86,10 @@ cssPrefix: pf-c-popover
|
|
|
83
86
|
|
|
84
87
|
### Left
|
|
85
88
|
|
|
86
|
-
```html
|
|
89
|
+
```html isFullscreen
|
|
87
90
|
<div
|
|
88
91
|
class="pf-c-popover pf-m-left"
|
|
92
|
+
role="dialog"
|
|
89
93
|
aria-modal="true"
|
|
90
94
|
aria-labelledby="popover-left-header"
|
|
91
95
|
aria-describedby="popover-left-body"
|
|
@@ -106,11 +110,12 @@ cssPrefix: pf-c-popover
|
|
|
106
110
|
|
|
107
111
|
```
|
|
108
112
|
|
|
109
|
-
### Left
|
|
113
|
+
### Left top
|
|
110
114
|
|
|
111
|
-
```html
|
|
115
|
+
```html isFullscreen
|
|
112
116
|
<div
|
|
113
117
|
class="pf-c-popover pf-m-left-top"
|
|
118
|
+
role="dialog"
|
|
114
119
|
aria-modal="true"
|
|
115
120
|
aria-labelledby="popover-left-start-header"
|
|
116
121
|
aria-describedby="popover-left-start-body"
|
|
@@ -128,9 +133,15 @@ cssPrefix: pf-c-popover
|
|
|
128
133
|
<footer class="pf-c-popover__footer">Popover footer</footer>
|
|
129
134
|
</div>
|
|
130
135
|
</div>
|
|
131
|
-
|
|
136
|
+
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
### Left bottom
|
|
140
|
+
|
|
141
|
+
```html isFullscreen
|
|
132
142
|
<div
|
|
133
143
|
class="pf-c-popover pf-m-left-bottom"
|
|
144
|
+
role="dialog"
|
|
134
145
|
aria-modal="true"
|
|
135
146
|
aria-labelledby="popover-left-end-header"
|
|
136
147
|
aria-describedby="popover-left-end-body"
|
|
@@ -151,11 +162,12 @@ cssPrefix: pf-c-popover
|
|
|
151
162
|
|
|
152
163
|
```
|
|
153
164
|
|
|
154
|
-
### Bottom
|
|
165
|
+
### Bottom left
|
|
155
166
|
|
|
156
|
-
```html
|
|
167
|
+
```html isFullscreen
|
|
157
168
|
<div
|
|
158
169
|
class="pf-c-popover pf-m-bottom-left"
|
|
170
|
+
role="dialog"
|
|
159
171
|
aria-modal="true"
|
|
160
172
|
aria-labelledby="popover-bottom-start-header"
|
|
161
173
|
aria-describedby="popover-bottom-start-body"
|
|
@@ -176,9 +188,15 @@ cssPrefix: pf-c-popover
|
|
|
176
188
|
<footer class="pf-c-popover__footer">Popover footer</footer>
|
|
177
189
|
</div>
|
|
178
190
|
</div>
|
|
179
|
-
|
|
191
|
+
|
|
192
|
+
```
|
|
193
|
+
|
|
194
|
+
### Bottom right
|
|
195
|
+
|
|
196
|
+
```html isFullscreen
|
|
180
197
|
<div
|
|
181
198
|
class="pf-c-popover pf-m-bottom-right"
|
|
199
|
+
role="dialog"
|
|
182
200
|
aria-modal="true"
|
|
183
201
|
aria-labelledby="popover-bottom-end-header"
|
|
184
202
|
aria-describedby="popover-bottom-end-body"
|
|
@@ -201,9 +219,10 @@ cssPrefix: pf-c-popover
|
|
|
201
219
|
|
|
202
220
|
### Without header/footer
|
|
203
221
|
|
|
204
|
-
```html
|
|
222
|
+
```html isFullscreen
|
|
205
223
|
<div
|
|
206
224
|
class="pf-c-popover pf-m-right"
|
|
225
|
+
role="dialog"
|
|
207
226
|
aria-modal="true"
|
|
208
227
|
aria-label="Popover with no header example"
|
|
209
228
|
aria-describedby="popover-no-header-body"
|
|
@@ -224,9 +243,10 @@ cssPrefix: pf-c-popover
|
|
|
224
243
|
|
|
225
244
|
### No padding
|
|
226
245
|
|
|
227
|
-
```html
|
|
246
|
+
```html isFullscreen
|
|
228
247
|
<div
|
|
229
248
|
class="pf-c-popover pf-m-right pf-m-no-padding"
|
|
249
|
+
role="dialog"
|
|
230
250
|
aria-modal="true"
|
|
231
251
|
aria-label="Popover with no padding example"
|
|
232
252
|
aria-describedby="popover-no-padding-body"
|
|
@@ -244,9 +264,10 @@ cssPrefix: pf-c-popover
|
|
|
244
264
|
|
|
245
265
|
### Width auto
|
|
246
266
|
|
|
247
|
-
```html
|
|
267
|
+
```html isFullscreen
|
|
248
268
|
<div
|
|
249
269
|
class="pf-c-popover pf-m-right pf-m-width-auto"
|
|
270
|
+
role="dialog"
|
|
250
271
|
aria-modal="true"
|
|
251
272
|
aria-labelledby="popover-width-auto-header"
|
|
252
273
|
aria-describedby="popover-width-auto-body"
|
|
@@ -266,9 +287,10 @@ cssPrefix: pf-c-popover
|
|
|
266
287
|
|
|
267
288
|
### Popover with icon in the title
|
|
268
289
|
|
|
269
|
-
```html
|
|
290
|
+
```html isFullscreen
|
|
270
291
|
<div
|
|
271
292
|
class="pf-c-popover pf-m-left"
|
|
293
|
+
role="dialog"
|
|
272
294
|
aria-modal="true"
|
|
273
295
|
aria-labelledby="popover-top-header"
|
|
274
296
|
aria-describedby="popover-top-body"
|
|
@@ -298,9 +320,10 @@ cssPrefix: pf-c-popover
|
|
|
298
320
|
|
|
299
321
|
### Default alert popover
|
|
300
322
|
|
|
301
|
-
```html
|
|
323
|
+
```html isFullscreen
|
|
302
324
|
<div
|
|
303
325
|
class="pf-c-popover pf-m-default pf-m-left"
|
|
326
|
+
role="dialog"
|
|
304
327
|
aria-modal="true"
|
|
305
328
|
aria-labelledby="popover-top-header"
|
|
306
329
|
aria-describedby="popover-top-body"
|
|
@@ -334,9 +357,10 @@ cssPrefix: pf-c-popover
|
|
|
334
357
|
|
|
335
358
|
### Info alert popover
|
|
336
359
|
|
|
337
|
-
```html
|
|
360
|
+
```html isFullscreen
|
|
338
361
|
<div
|
|
339
362
|
class="pf-c-popover pf-m-info pf-m-top"
|
|
363
|
+
role="dialog"
|
|
340
364
|
aria-modal="true"
|
|
341
365
|
aria-labelledby="popover-top-header"
|
|
342
366
|
aria-describedby="popover-top-body"
|
|
@@ -370,9 +394,10 @@ cssPrefix: pf-c-popover
|
|
|
370
394
|
|
|
371
395
|
### Success alert popover
|
|
372
396
|
|
|
373
|
-
```html
|
|
397
|
+
```html isFullscreen
|
|
374
398
|
<div
|
|
375
399
|
class="pf-c-popover pf-m-success pf-m-top"
|
|
400
|
+
role="dialog"
|
|
376
401
|
aria-modal="true"
|
|
377
402
|
aria-labelledby="popover-top-header"
|
|
378
403
|
aria-describedby="popover-top-body"
|
|
@@ -406,9 +431,10 @@ cssPrefix: pf-c-popover
|
|
|
406
431
|
|
|
407
432
|
### Warning alert popover
|
|
408
433
|
|
|
409
|
-
```html
|
|
434
|
+
```html isFullscreen
|
|
410
435
|
<div
|
|
411
436
|
class="pf-c-popover pf-m-warning pf-m-top"
|
|
437
|
+
role="dialog"
|
|
412
438
|
aria-modal="true"
|
|
413
439
|
aria-labelledby="popover-top-header"
|
|
414
440
|
aria-describedby="popover-top-body"
|
|
@@ -442,9 +468,10 @@ cssPrefix: pf-c-popover
|
|
|
442
468
|
|
|
443
469
|
### Danger alert popover
|
|
444
470
|
|
|
445
|
-
```html
|
|
471
|
+
```html isFullscreen
|
|
446
472
|
<div
|
|
447
473
|
class="pf-c-popover pf-m-danger pf-m-top"
|
|
474
|
+
role="dialog"
|
|
448
475
|
aria-modal="true"
|
|
449
476
|
aria-labelledby="popover-top-header"
|
|
450
477
|
aria-describedby="popover-top-body"
|
|
@@ -486,7 +513,7 @@ A popover is used to provide contextual information for another component on cli
|
|
|
486
513
|
|
|
487
514
|
| Attribute | Applies to | Outcome |
|
|
488
515
|
| ----------------------------------------------------- | --------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
489
|
-
| `role="dialog"` | `.pf-c-popover` | Identifies the element that serves as the popover container. **
|
|
516
|
+
| `role="dialog"` | `.pf-c-popover` | Identifies the element that serves as the popover container. **Required** |
|
|
490
517
|
| `aria-labelledby="[id value of .pf-c-title]"` | `.pf-c-popover` | Gives the popover an accessible name by referring to the element that provides the dialog title. **Required when .pf-c-title is present** |
|
|
491
518
|
| `aria-label="[title of popover]"` | `.pf-c-popover` | Gives the popover an accessible name. **Required when .pf-c-title is _not_ present** |
|
|
492
519
|
| `aria-describedby="[id value of applicable content]"` | `.pf-c-popover` | Gives the popover an accessible description by referring to the popover content that describes the primary message or purpose of the dialog. Not used if there is no static text that describes the popover. |
|
|
@@ -20605,7 +20605,7 @@ There are a few ways this can be handled:
|
|
|
20605
20605
|
<thead>
|
|
20606
20606
|
<tr role="row">
|
|
20607
20607
|
<th
|
|
20608
|
-
class="pf-m-
|
|
20608
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sort pf-c-table__sticky-column"
|
|
20609
20609
|
role="columnheader"
|
|
20610
20610
|
aria-sort="none"
|
|
20611
20611
|
data-label="Example th"
|
|
@@ -20622,7 +20622,7 @@ There are a few ways this can be handled:
|
|
|
20622
20622
|
</button>
|
|
20623
20623
|
</th>
|
|
20624
20624
|
<th
|
|
20625
|
-
class="pf-
|
|
20625
|
+
class="pf-c-table__sort"
|
|
20626
20626
|
role="columnheader"
|
|
20627
20627
|
aria-sort="none"
|
|
20628
20628
|
data-label="Example th"
|
|
@@ -20638,43 +20638,43 @@ There are a few ways this can be handled:
|
|
|
20638
20638
|
</button>
|
|
20639
20639
|
</th>
|
|
20640
20640
|
<th
|
|
20641
|
-
class
|
|
20641
|
+
class
|
|
20642
20642
|
role="columnheader"
|
|
20643
20643
|
data-label="Example th"
|
|
20644
20644
|
scope="col"
|
|
20645
20645
|
>Header 3</th>
|
|
20646
20646
|
<th
|
|
20647
|
-
class
|
|
20647
|
+
class
|
|
20648
20648
|
role="columnheader"
|
|
20649
20649
|
data-label="Example th"
|
|
20650
20650
|
scope="col"
|
|
20651
20651
|
>Header 4</th>
|
|
20652
20652
|
<th
|
|
20653
|
-
class
|
|
20653
|
+
class
|
|
20654
20654
|
role="columnheader"
|
|
20655
20655
|
data-label="Example th"
|
|
20656
20656
|
scope="col"
|
|
20657
20657
|
>Header 5</th>
|
|
20658
20658
|
<th
|
|
20659
|
-
class
|
|
20659
|
+
class
|
|
20660
20660
|
role="columnheader"
|
|
20661
20661
|
data-label="Example th"
|
|
20662
20662
|
scope="col"
|
|
20663
20663
|
>Header 6</th>
|
|
20664
20664
|
<th
|
|
20665
|
-
class
|
|
20665
|
+
class
|
|
20666
20666
|
role="columnheader"
|
|
20667
20667
|
data-label="Example th"
|
|
20668
20668
|
scope="col"
|
|
20669
20669
|
>Header 7</th>
|
|
20670
20670
|
<th
|
|
20671
|
-
class
|
|
20671
|
+
class
|
|
20672
20672
|
role="columnheader"
|
|
20673
20673
|
data-label="Example th"
|
|
20674
20674
|
scope="col"
|
|
20675
20675
|
>Header 8</th>
|
|
20676
20676
|
<th
|
|
20677
|
-
class
|
|
20677
|
+
class
|
|
20678
20678
|
role="columnheader"
|
|
20679
20679
|
data-label="Example th"
|
|
20680
20680
|
scope="col"
|
|
@@ -20685,7 +20685,7 @@ There are a few ways this can be handled:
|
|
|
20685
20685
|
<tbody role="rowgroup">
|
|
20686
20686
|
<tr role="row">
|
|
20687
20687
|
<th
|
|
20688
|
-
class="pf-m-
|
|
20688
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
20689
20689
|
role="columnheader"
|
|
20690
20690
|
data-label="Example th"
|
|
20691
20691
|
scope="col"
|
|
@@ -20730,7 +20730,7 @@ There are a few ways this can be handled:
|
|
|
20730
20730
|
</tr>
|
|
20731
20731
|
<tr role="row">
|
|
20732
20732
|
<th
|
|
20733
|
-
class="pf-m-
|
|
20733
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
20734
20734
|
role="columnheader"
|
|
20735
20735
|
data-label="Example th"
|
|
20736
20736
|
scope="col"
|
|
@@ -20775,7 +20775,7 @@ There are a few ways this can be handled:
|
|
|
20775
20775
|
</tr>
|
|
20776
20776
|
<tr role="row">
|
|
20777
20777
|
<th
|
|
20778
|
-
class="pf-m-
|
|
20778
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
20779
20779
|
role="columnheader"
|
|
20780
20780
|
data-label="Example th"
|
|
20781
20781
|
scope="col"
|
|
@@ -20820,7 +20820,7 @@ There are a few ways this can be handled:
|
|
|
20820
20820
|
</tr>
|
|
20821
20821
|
<tr role="row">
|
|
20822
20822
|
<th
|
|
20823
|
-
class="pf-m-
|
|
20823
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
20824
20824
|
role="columnheader"
|
|
20825
20825
|
data-label="Example th"
|
|
20826
20826
|
scope="col"
|
|
@@ -20865,7 +20865,7 @@ There are a few ways this can be handled:
|
|
|
20865
20865
|
</tr>
|
|
20866
20866
|
<tr role="row">
|
|
20867
20867
|
<th
|
|
20868
|
-
class="pf-m-
|
|
20868
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
20869
20869
|
role="columnheader"
|
|
20870
20870
|
data-label="Example th"
|
|
20871
20871
|
scope="col"
|
|
@@ -20910,7 +20910,7 @@ There are a few ways this can be handled:
|
|
|
20910
20910
|
</tr>
|
|
20911
20911
|
<tr role="row">
|
|
20912
20912
|
<th
|
|
20913
|
-
class="pf-m-
|
|
20913
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
20914
20914
|
role="columnheader"
|
|
20915
20915
|
data-label="Example th"
|
|
20916
20916
|
scope="col"
|
|
@@ -20955,7 +20955,7 @@ There are a few ways this can be handled:
|
|
|
20955
20955
|
</tr>
|
|
20956
20956
|
<tr role="row">
|
|
20957
20957
|
<th
|
|
20958
|
-
class="pf-m-
|
|
20958
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
20959
20959
|
role="columnheader"
|
|
20960
20960
|
data-label="Example th"
|
|
20961
20961
|
scope="col"
|
|
@@ -21000,7 +21000,7 @@ There are a few ways this can be handled:
|
|
|
21000
21000
|
</tr>
|
|
21001
21001
|
<tr role="row">
|
|
21002
21002
|
<th
|
|
21003
|
-
class="pf-m-
|
|
21003
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
21004
21004
|
role="columnheader"
|
|
21005
21005
|
data-label="Example th"
|
|
21006
21006
|
scope="col"
|
|
@@ -21045,7 +21045,7 @@ There are a few ways this can be handled:
|
|
|
21045
21045
|
</tr>
|
|
21046
21046
|
<tr role="row">
|
|
21047
21047
|
<th
|
|
21048
|
-
class="pf-m-
|
|
21048
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
21049
21049
|
role="columnheader"
|
|
21050
21050
|
data-label="Example th"
|
|
21051
21051
|
scope="col"
|
|
@@ -21124,7 +21124,7 @@ There are a few ways this can be handled:
|
|
|
21124
21124
|
</button>
|
|
21125
21125
|
</th>
|
|
21126
21126
|
<th
|
|
21127
|
-
class="pf-m-
|
|
21127
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sort pf-c-table__sticky-column"
|
|
21128
21128
|
role="columnheader"
|
|
21129
21129
|
aria-sort="none"
|
|
21130
21130
|
data-label="Example th"
|
|
@@ -21141,43 +21141,43 @@ There are a few ways this can be handled:
|
|
|
21141
21141
|
</button>
|
|
21142
21142
|
</th>
|
|
21143
21143
|
<th
|
|
21144
|
-
class
|
|
21144
|
+
class
|
|
21145
21145
|
role="columnheader"
|
|
21146
21146
|
data-label="Example th"
|
|
21147
21147
|
scope="col"
|
|
21148
21148
|
>Header 3</th>
|
|
21149
21149
|
<th
|
|
21150
|
-
class
|
|
21150
|
+
class
|
|
21151
21151
|
role="columnheader"
|
|
21152
21152
|
data-label="Example th"
|
|
21153
21153
|
scope="col"
|
|
21154
21154
|
>Header 4</th>
|
|
21155
21155
|
<th
|
|
21156
|
-
class
|
|
21156
|
+
class
|
|
21157
21157
|
role="columnheader"
|
|
21158
21158
|
data-label="Example th"
|
|
21159
21159
|
scope="col"
|
|
21160
21160
|
>Header 5</th>
|
|
21161
21161
|
<th
|
|
21162
|
-
class
|
|
21162
|
+
class
|
|
21163
21163
|
role="columnheader"
|
|
21164
21164
|
data-label="Example th"
|
|
21165
21165
|
scope="col"
|
|
21166
21166
|
>Header 6</th>
|
|
21167
21167
|
<th
|
|
21168
|
-
class
|
|
21168
|
+
class
|
|
21169
21169
|
role="columnheader"
|
|
21170
21170
|
data-label="Example th"
|
|
21171
21171
|
scope="col"
|
|
21172
21172
|
>Header 7</th>
|
|
21173
21173
|
<th
|
|
21174
|
-
class
|
|
21174
|
+
class
|
|
21175
21175
|
role="columnheader"
|
|
21176
21176
|
data-label="Example th"
|
|
21177
21177
|
scope="col"
|
|
21178
21178
|
>Header 8</th>
|
|
21179
21179
|
<th
|
|
21180
|
-
class
|
|
21180
|
+
class
|
|
21181
21181
|
role="columnheader"
|
|
21182
21182
|
data-label="Example th"
|
|
21183
21183
|
scope="col"
|
|
@@ -21195,7 +21195,7 @@ There are a few ways this can be handled:
|
|
|
21195
21195
|
style="--pf-c-table__sticky-column--MinWidth: 100px;"
|
|
21196
21196
|
>Fact 1</th>
|
|
21197
21197
|
<th
|
|
21198
|
-
class="pf-m-
|
|
21198
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
21199
21199
|
role="columnheader"
|
|
21200
21200
|
data-label="Example th"
|
|
21201
21201
|
scope="col"
|
|
@@ -21246,7 +21246,7 @@ There are a few ways this can be handled:
|
|
|
21246
21246
|
style="--pf-c-table__sticky-column--MinWidth: 100px;"
|
|
21247
21247
|
>Fact 2</th>
|
|
21248
21248
|
<th
|
|
21249
|
-
class="pf-m-
|
|
21249
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
21250
21250
|
role="columnheader"
|
|
21251
21251
|
data-label="Example th"
|
|
21252
21252
|
scope="col"
|
|
@@ -21297,7 +21297,7 @@ There are a few ways this can be handled:
|
|
|
21297
21297
|
style="--pf-c-table__sticky-column--MinWidth: 100px;"
|
|
21298
21298
|
>Fact 3</th>
|
|
21299
21299
|
<th
|
|
21300
|
-
class="pf-m-
|
|
21300
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
21301
21301
|
role="columnheader"
|
|
21302
21302
|
data-label="Example th"
|
|
21303
21303
|
scope="col"
|
|
@@ -21348,7 +21348,7 @@ There are a few ways this can be handled:
|
|
|
21348
21348
|
style="--pf-c-table__sticky-column--MinWidth: 100px;"
|
|
21349
21349
|
>Fact 4</th>
|
|
21350
21350
|
<th
|
|
21351
|
-
class="pf-m-
|
|
21351
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
21352
21352
|
role="columnheader"
|
|
21353
21353
|
data-label="Example th"
|
|
21354
21354
|
scope="col"
|
|
@@ -21399,7 +21399,7 @@ There are a few ways this can be handled:
|
|
|
21399
21399
|
style="--pf-c-table__sticky-column--MinWidth: 100px;"
|
|
21400
21400
|
>Fact 5</th>
|
|
21401
21401
|
<th
|
|
21402
|
-
class="pf-m-
|
|
21402
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
21403
21403
|
role="columnheader"
|
|
21404
21404
|
data-label="Example th"
|
|
21405
21405
|
scope="col"
|
|
@@ -21450,7 +21450,7 @@ There are a few ways this can be handled:
|
|
|
21450
21450
|
style="--pf-c-table__sticky-column--MinWidth: 100px;"
|
|
21451
21451
|
>Fact 6</th>
|
|
21452
21452
|
<th
|
|
21453
|
-
class="pf-m-
|
|
21453
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
21454
21454
|
role="columnheader"
|
|
21455
21455
|
data-label="Example th"
|
|
21456
21456
|
scope="col"
|
|
@@ -21501,7 +21501,7 @@ There are a few ways this can be handled:
|
|
|
21501
21501
|
style="--pf-c-table__sticky-column--MinWidth: 100px;"
|
|
21502
21502
|
>Fact 7</th>
|
|
21503
21503
|
<th
|
|
21504
|
-
class="pf-m-
|
|
21504
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
21505
21505
|
role="columnheader"
|
|
21506
21506
|
data-label="Example th"
|
|
21507
21507
|
scope="col"
|
|
@@ -21552,7 +21552,7 @@ There are a few ways this can be handled:
|
|
|
21552
21552
|
style="--pf-c-table__sticky-column--MinWidth: 100px;"
|
|
21553
21553
|
>Fact 8</th>
|
|
21554
21554
|
<th
|
|
21555
|
-
class="pf-m-
|
|
21555
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
21556
21556
|
role="columnheader"
|
|
21557
21557
|
data-label="Example th"
|
|
21558
21558
|
scope="col"
|
|
@@ -21603,7 +21603,7 @@ There are a few ways this can be handled:
|
|
|
21603
21603
|
style="--pf-c-table__sticky-column--MinWidth: 100px;"
|
|
21604
21604
|
>Fact 9</th>
|
|
21605
21605
|
<th
|
|
21606
|
-
class="pf-m-
|
|
21606
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
21607
21607
|
role="columnheader"
|
|
21608
21608
|
data-label="Example th"
|
|
21609
21609
|
scope="col"
|
|
@@ -21682,7 +21682,7 @@ There are a few ways this can be handled:
|
|
|
21682
21682
|
</button>
|
|
21683
21683
|
</th>
|
|
21684
21684
|
<th
|
|
21685
|
-
class="pf-m-
|
|
21685
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sort pf-c-table__sticky-column"
|
|
21686
21686
|
role="columnheader"
|
|
21687
21687
|
aria-sort="none"
|
|
21688
21688
|
data-label="Example th"
|
|
@@ -21699,43 +21699,43 @@ There are a few ways this can be handled:
|
|
|
21699
21699
|
</button>
|
|
21700
21700
|
</th>
|
|
21701
21701
|
<th
|
|
21702
|
-
class
|
|
21702
|
+
class
|
|
21703
21703
|
role="columnheader"
|
|
21704
21704
|
data-label="Example th"
|
|
21705
21705
|
scope="col"
|
|
21706
21706
|
>Header 3</th>
|
|
21707
21707
|
<th
|
|
21708
|
-
class
|
|
21708
|
+
class
|
|
21709
21709
|
role="columnheader"
|
|
21710
21710
|
data-label="Example th"
|
|
21711
21711
|
scope="col"
|
|
21712
21712
|
>Header 4</th>
|
|
21713
21713
|
<th
|
|
21714
|
-
class
|
|
21714
|
+
class
|
|
21715
21715
|
role="columnheader"
|
|
21716
21716
|
data-label="Example th"
|
|
21717
21717
|
scope="col"
|
|
21718
21718
|
>Header 5</th>
|
|
21719
21719
|
<th
|
|
21720
|
-
class
|
|
21720
|
+
class
|
|
21721
21721
|
role="columnheader"
|
|
21722
21722
|
data-label="Example th"
|
|
21723
21723
|
scope="col"
|
|
21724
21724
|
>Header 6</th>
|
|
21725
21725
|
<th
|
|
21726
|
-
class
|
|
21726
|
+
class
|
|
21727
21727
|
role="columnheader"
|
|
21728
21728
|
data-label="Example th"
|
|
21729
21729
|
scope="col"
|
|
21730
21730
|
>Header 7</th>
|
|
21731
21731
|
<th
|
|
21732
|
-
class
|
|
21732
|
+
class
|
|
21733
21733
|
role="columnheader"
|
|
21734
21734
|
data-label="Example th"
|
|
21735
21735
|
scope="col"
|
|
21736
21736
|
>Header 8</th>
|
|
21737
21737
|
<th
|
|
21738
|
-
class
|
|
21738
|
+
class
|
|
21739
21739
|
role="columnheader"
|
|
21740
21740
|
data-label="Example th"
|
|
21741
21741
|
scope="col"
|
|
@@ -21753,7 +21753,7 @@ There are a few ways this can be handled:
|
|
|
21753
21753
|
style="--pf-c-table__sticky-column--MinWidth: 100px;"
|
|
21754
21754
|
>Fact 1</th>
|
|
21755
21755
|
<th
|
|
21756
|
-
class="pf-m-
|
|
21756
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
21757
21757
|
role="columnheader"
|
|
21758
21758
|
data-label="Example th"
|
|
21759
21759
|
scope="col"
|
|
@@ -21804,7 +21804,7 @@ There are a few ways this can be handled:
|
|
|
21804
21804
|
style="--pf-c-table__sticky-column--MinWidth: 100px;"
|
|
21805
21805
|
>Fact 2</th>
|
|
21806
21806
|
<th
|
|
21807
|
-
class="pf-m-
|
|
21807
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
21808
21808
|
role="columnheader"
|
|
21809
21809
|
data-label="Example th"
|
|
21810
21810
|
scope="col"
|
|
@@ -21855,7 +21855,7 @@ There are a few ways this can be handled:
|
|
|
21855
21855
|
style="--pf-c-table__sticky-column--MinWidth: 100px;"
|
|
21856
21856
|
>Fact 3</th>
|
|
21857
21857
|
<th
|
|
21858
|
-
class="pf-m-
|
|
21858
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
21859
21859
|
role="columnheader"
|
|
21860
21860
|
data-label="Example th"
|
|
21861
21861
|
scope="col"
|
|
@@ -21906,7 +21906,7 @@ There are a few ways this can be handled:
|
|
|
21906
21906
|
style="--pf-c-table__sticky-column--MinWidth: 100px;"
|
|
21907
21907
|
>Fact 4</th>
|
|
21908
21908
|
<th
|
|
21909
|
-
class="pf-m-
|
|
21909
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
21910
21910
|
role="columnheader"
|
|
21911
21911
|
data-label="Example th"
|
|
21912
21912
|
scope="col"
|
|
@@ -21957,7 +21957,7 @@ There are a few ways this can be handled:
|
|
|
21957
21957
|
style="--pf-c-table__sticky-column--MinWidth: 100px;"
|
|
21958
21958
|
>Fact 5</th>
|
|
21959
21959
|
<th
|
|
21960
|
-
class="pf-m-
|
|
21960
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
21961
21961
|
role="columnheader"
|
|
21962
21962
|
data-label="Example th"
|
|
21963
21963
|
scope="col"
|
|
@@ -22008,7 +22008,7 @@ There are a few ways this can be handled:
|
|
|
22008
22008
|
style="--pf-c-table__sticky-column--MinWidth: 100px;"
|
|
22009
22009
|
>Fact 6</th>
|
|
22010
22010
|
<th
|
|
22011
|
-
class="pf-m-
|
|
22011
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
22012
22012
|
role="columnheader"
|
|
22013
22013
|
data-label="Example th"
|
|
22014
22014
|
scope="col"
|
|
@@ -22059,7 +22059,7 @@ There are a few ways this can be handled:
|
|
|
22059
22059
|
style="--pf-c-table__sticky-column--MinWidth: 100px;"
|
|
22060
22060
|
>Fact 7</th>
|
|
22061
22061
|
<th
|
|
22062
|
-
class="pf-m-
|
|
22062
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
22063
22063
|
role="columnheader"
|
|
22064
22064
|
data-label="Example th"
|
|
22065
22065
|
scope="col"
|
|
@@ -22110,7 +22110,7 @@ There are a few ways this can be handled:
|
|
|
22110
22110
|
style="--pf-c-table__sticky-column--MinWidth: 100px;"
|
|
22111
22111
|
>Fact 8</th>
|
|
22112
22112
|
<th
|
|
22113
|
-
class="pf-m-
|
|
22113
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
22114
22114
|
role="columnheader"
|
|
22115
22115
|
data-label="Example th"
|
|
22116
22116
|
scope="col"
|
|
@@ -22161,7 +22161,7 @@ There are a few ways this can be handled:
|
|
|
22161
22161
|
style="--pf-c-table__sticky-column--MinWidth: 100px;"
|
|
22162
22162
|
>Fact 9</th>
|
|
22163
22163
|
<th
|
|
22164
|
-
class="pf-m-
|
|
22164
|
+
class="pf-m-truncate pf-m-border-right pf-c-table__sticky-column"
|
|
22165
22165
|
role="columnheader"
|
|
22166
22166
|
data-label="Example th"
|
|
22167
22167
|
scope="col"
|
|
@@ -1298,6 +1298,7 @@ wrapperTag: div
|
|
|
1298
1298
|
<a href="#">Control Panel</a>
|
|
1299
1299
|
<div
|
|
1300
1300
|
class="pf-c-popover pf-m-right"
|
|
1301
|
+
role="dialog"
|
|
1301
1302
|
aria-modal="true"
|
|
1302
1303
|
aria-labelledby="status-card-expanded-with-popover-example-popover-popover-right-header"
|
|
1303
1304
|
aria-describedby="status-card-expanded-with-popover-example-popover-popover-right-body"
|