@patternfly/patternfly 6.1.0-prerelease.1 → 6.1.0-prerelease.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/CodeEditor/code-editor.css +15 -0
- package/components/CodeEditor/code-editor.scss +16 -1
- package/components/Table/table-grid.css +12 -12
- package/components/Table/table-grid.scss +4 -4
- package/components/Table/table-tree-view.css +4 -4
- package/components/Table/table-tree-view.scss +4 -4
- package/components/_index.css +31 -16
- package/docs/components/CodeEditor/examples/CodeEditor.css +3 -0
- package/docs/components/CodeEditor/examples/CodeEditor.md +158 -7
- package/docs/components/InlineEdit/examples/InlineEdit.md +3 -18
- package/docs/components/MenuToggle/examples/MenuToggle.md +1193 -536
- package/docs/components/Table/examples/Table.md +466 -2524
- package/docs/demos/Card/examples/Card.css +4 -0
- package/docs/demos/Card/examples/Card.md +13 -21
- package/docs/demos/DataList/examples/DataList.md +5 -30
- package/docs/demos/DescriptionList/examples/DescriptionList.md +5 -30
- package/docs/demos/Table/examples/Table.md +161 -924
- package/docs/demos/Tabs/examples/Tabs.md +6 -36
- package/docs/demos/Toolbar/examples/Toolbar.md +12 -72
- package/package.json +3 -3
- package/patternfly-no-globals.css +31 -16
- package/patternfly.css +31 -16
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/sass-utilities/functions.scss +6 -0
|
@@ -470,12 +470,7 @@ Inline edit **action-group** contains save and cancel actions and is only visibl
|
|
|
470
470
|
<caption class="pf-v6-c-table__caption">This is the table caption</caption>
|
|
471
471
|
|
|
472
472
|
<thead class="pf-v6-c-table__thead">
|
|
473
|
-
<tr
|
|
474
|
-
class="pf-v6-c-table__tr"
|
|
475
|
-
role&#x3D;&quot;row&quot;
|
|
476
|
-
[object
|
|
477
|
-
Object]
|
|
478
|
-
>
|
|
473
|
+
<tr class="pf-v6-c-table__tr" role="row">
|
|
479
474
|
<th class="pf-v6-c-table__th" role="columnheader">Text input</th>
|
|
480
475
|
|
|
481
476
|
<th class="pf-v6-c-table__th" role="columnheader">Disabled text input</th>
|
|
@@ -505,12 +500,7 @@ Inline edit **action-group** contains save and cancel actions and is only visibl
|
|
|
505
500
|
</thead>
|
|
506
501
|
|
|
507
502
|
<tbody class="pf-v6-c-table__tbody" role="rowgroup">
|
|
508
|
-
<tr
|
|
509
|
-
class="pf-v6-c-table__tr pf-m-inline-editable"
|
|
510
|
-
role&#x3D;&quot;row&quot;
|
|
511
|
-
[object
|
|
512
|
-
Object]
|
|
513
|
-
>
|
|
503
|
+
<tr class="pf-v6-c-table__tr pf-m-inline-editable" role="row">
|
|
514
504
|
<th
|
|
515
505
|
class="pf-v6-c-table__th"
|
|
516
506
|
role="columnheader"
|
|
@@ -699,12 +689,7 @@ Inline edit **action-group** contains save and cancel actions and is only visibl
|
|
|
699
689
|
</td>
|
|
700
690
|
</tr>
|
|
701
691
|
|
|
702
|
-
<tr
|
|
703
|
-
class="pf-v6-c-table__tr"
|
|
704
|
-
role&#x3D;&quot;row&quot;
|
|
705
|
-
[object
|
|
706
|
-
Object]
|
|
707
|
-
>
|
|
692
|
+
<tr class="pf-v6-c-table__tr" role="row">
|
|
708
693
|
<th
|
|
709
694
|
class="pf-v6-c-table__th"
|
|
710
695
|
role="columnheader"
|