@patternfly/patternfly 5.0.0-alpha.54 → 5.0.0-alpha.55
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/Table/table-grid.css +380 -391
- package/components/Table/table-grid.scss +97 -92
- package/components/Table/table-tree-view.css +254 -254
- package/components/Table/table-tree-view.scss +30 -30
- package/components/Table/table.css +232 -232
- package/components/Table/table.scss +265 -255
- package/docs/components/InlineEdit/examples/InlineEdit.md +50 -28
- package/docs/components/Table/examples/Table.md +6839 -3703
- package/docs/demos/Card/examples/Card.md +73 -34
- package/docs/demos/DataList/examples/DataList.md +187 -52
- package/docs/demos/DescriptionList/examples/DescriptionList.md +63 -23
- package/docs/demos/Table/examples/Table.md +2673 -1316
- package/docs/demos/Tabs/examples/Tabs.md +203 -50
- package/docs/demos/Toolbar/examples/Toolbar.md +272 -112
- package/package.json +3 -3
- package/patternfly-no-globals.css +866 -877
- package/patternfly.css +866 -877
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -3427,28 +3427,44 @@ cssPrefix: pf-d-description-list
|
|
|
3427
3427
|
aria-label="Service address"
|
|
3428
3428
|
id="service-address"
|
|
3429
3429
|
>
|
|
3430
|
-
<thead>
|
|
3431
|
-
<tr role="row">
|
|
3432
|
-
<th
|
|
3433
|
-
|
|
3430
|
+
<thead class="pf-v5-c-table__thead">
|
|
3431
|
+
<tr class="pf-v5-c-table__tr" role="row">
|
|
3432
|
+
<th
|
|
3433
|
+
class="pf-v5-c-table__th"
|
|
3434
|
+
role="columnheader"
|
|
3435
|
+
scope="col"
|
|
3436
|
+
>Type</th>
|
|
3437
|
+
<th
|
|
3438
|
+
class="pf-v5-c-table__th"
|
|
3439
|
+
role="columnheader"
|
|
3440
|
+
scope="col"
|
|
3441
|
+
>Location</th>
|
|
3434
3442
|
</tr>
|
|
3435
3443
|
</thead>
|
|
3436
|
-
<tbody role="rowgroup">
|
|
3437
|
-
<tr role="row">
|
|
3438
|
-
<td
|
|
3444
|
+
<tbody class="pf-v5-c-table__tbody" role="rowgroup">
|
|
3445
|
+
<tr class="pf-v5-c-table__tr" role="row">
|
|
3446
|
+
<td
|
|
3447
|
+
class="pf-v5-c-table__td"
|
|
3448
|
+
role="cell"
|
|
3449
|
+
data-label="Type"
|
|
3450
|
+
>Cluster IP</td>
|
|
3439
3451
|
<td
|
|
3440
|
-
class
|
|
3452
|
+
class="pf-v5-c-table__td"
|
|
3441
3453
|
role="cell"
|
|
3442
3454
|
data-label="Location"
|
|
3443
3455
|
>172.30.126.106</td>
|
|
3444
3456
|
</tr>
|
|
3445
|
-
<tr role="row">
|
|
3457
|
+
<tr class="pf-v5-c-table__tr" role="row">
|
|
3446
3458
|
<td
|
|
3447
|
-
class
|
|
3459
|
+
class="pf-v5-c-table__td"
|
|
3448
3460
|
role="cell"
|
|
3449
3461
|
data-label="Type"
|
|
3450
3462
|
>Accessible within the cluster only</td>
|
|
3451
|
-
<td
|
|
3463
|
+
<td
|
|
3464
|
+
class="pf-v5-c-table__td"
|
|
3465
|
+
role="cell"
|
|
3466
|
+
data-label="Location"
|
|
3467
|
+
>n/a</td>
|
|
3452
3468
|
</tr>
|
|
3453
3469
|
</tbody>
|
|
3454
3470
|
</table>
|
|
@@ -3469,22 +3485,42 @@ cssPrefix: pf-d-description-list
|
|
|
3469
3485
|
aria-label="Service address"
|
|
3470
3486
|
id="service-port"
|
|
3471
3487
|
>
|
|
3472
|
-
<thead>
|
|
3473
|
-
<tr role="row">
|
|
3474
|
-
<th
|
|
3475
|
-
|
|
3476
|
-
|
|
3488
|
+
<thead class="pf-v5-c-table__thead">
|
|
3489
|
+
<tr class="pf-v5-c-table__tr" role="row">
|
|
3490
|
+
<th
|
|
3491
|
+
class="pf-v5-c-table__th"
|
|
3492
|
+
role="columnheader"
|
|
3493
|
+
scope="col"
|
|
3494
|
+
>Name</th>
|
|
3495
|
+
<th
|
|
3496
|
+
class="pf-v5-c-table__th"
|
|
3497
|
+
role="columnheader"
|
|
3498
|
+
scope="col"
|
|
3499
|
+
>Port</th>
|
|
3500
|
+
<th
|
|
3501
|
+
class="pf-v5-c-table__th"
|
|
3502
|
+
role="columnheader"
|
|
3503
|
+
scope="col"
|
|
3504
|
+
>Protocol</th>
|
|
3477
3505
|
<th
|
|
3478
|
-
class
|
|
3506
|
+
class="pf-v5-c-table__th"
|
|
3479
3507
|
role="columnheader"
|
|
3480
3508
|
scope="col"
|
|
3481
3509
|
>Pod port or name</th>
|
|
3482
3510
|
</tr>
|
|
3483
3511
|
</thead>
|
|
3484
|
-
<tbody role="rowgroup">
|
|
3485
|
-
<tr role="row">
|
|
3486
|
-
<td
|
|
3487
|
-
|
|
3512
|
+
<tbody class="pf-v5-c-table__tbody" role="rowgroup">
|
|
3513
|
+
<tr class="pf-v5-c-table__tr" role="row">
|
|
3514
|
+
<td
|
|
3515
|
+
class="pf-v5-c-table__td"
|
|
3516
|
+
role="cell"
|
|
3517
|
+
data-label="Name"
|
|
3518
|
+
>--</td>
|
|
3519
|
+
<td
|
|
3520
|
+
class="pf-v5-c-table__td"
|
|
3521
|
+
role="cell"
|
|
3522
|
+
data-label="Port"
|
|
3523
|
+
>
|
|
3488
3524
|
<div class="pf-v5-l-flex pf-m-space-items-sm">
|
|
3489
3525
|
<div class="pf-v5-l-flex__item">
|
|
3490
3526
|
<span
|
|
@@ -3498,9 +3534,13 @@ cssPrefix: pf-d-description-list
|
|
|
3498
3534
|
<div class="pf-v5-l-flex__item">80</div>
|
|
3499
3535
|
</div>
|
|
3500
3536
|
</td>
|
|
3501
|
-
<td role="cell" data-label="Protocol">TCP</td>
|
|
3502
3537
|
<td
|
|
3503
|
-
class
|
|
3538
|
+
class="pf-v5-c-table__td"
|
|
3539
|
+
role="cell"
|
|
3540
|
+
data-label="Protocol"
|
|
3541
|
+
>TCP</td>
|
|
3542
|
+
<td
|
|
3543
|
+
class="pf-v5-c-table__td"
|
|
3504
3544
|
role="cell"
|
|
3505
3545
|
data-label="Pod port or name"
|
|
3506
3546
|
>
|