@patternfly/patternfly 4.172.0 → 4.173.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.
- package/components/Table/table-tree-view.css +7 -0
- package/components/Table/table-tree-view.scss +8 -0
- package/docs/components/Table/examples/Table.md +241 -171
- package/package.json +1 -1
- package/patternfly-no-reset.css +7 -0
- package/patternfly.css +7 -0
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
package/package.json
CHANGED
package/patternfly-no-reset.css
CHANGED
|
@@ -25185,6 +25185,8 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
25185
25185
|
--pf-c-table__tree-view-main--nested-indent--base: calc(var(--pf-c-table__tree-view-main--indent--base) - var(--pf-global--spacer--md));
|
|
25186
25186
|
--pf-c-table__tree-view-main--PaddingLeft: var(--pf-c-table__tree-view-main--indent--base);
|
|
25187
25187
|
--pf-c-table__tree-view-main--MarginLeft: calc(var(--pf-c-table--cell--PaddingLeft) * -1);
|
|
25188
|
+
--pf-c-table__tree-view-main--c-table__check--PaddingRight: var(--pf-global--spacer--sm);
|
|
25189
|
+
--pf-c-table__tree-view-main--c-table__check--PaddingLeft: var(--pf-global--spacer--sm);
|
|
25188
25190
|
--pf-c-table__tree-view-main--c-table__check--MarginRight: var(--pf-global--spacer--sm);
|
|
25189
25191
|
--pf-c-table__tree-view-icon--MinWidth: var(--pf-global--FontSize--md);
|
|
25190
25192
|
--pf-c-table__tree-view-icon--MarginRight: var(--pf-global--spacer--sm);
|
|
@@ -25245,6 +25247,11 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
25245
25247
|
.pf-c-table__tree-view-main > .pf-c-table__check {
|
|
25246
25248
|
margin-right: var(--pf-c-table__tree-view-main--c-table__check--MarginRight);
|
|
25247
25249
|
}
|
|
25250
|
+
.pf-c-table__tree-view-main > .pf-c-table__check label {
|
|
25251
|
+
padding-right: var(--pf-c-table__tree-view-main--c-table__check--PaddingRight);
|
|
25252
|
+
padding-left: var(--pf-c-table__tree-view-main--c-table__check--PaddingLeft);
|
|
25253
|
+
margin: 0 calc(var(--pf-c-table__tree-view-main--c-table__check--MarginRight) * -1) 0 0;
|
|
25254
|
+
}
|
|
25248
25255
|
|
|
25249
25256
|
.pf-c-table__tree-view-text {
|
|
25250
25257
|
display: flex;
|
package/patternfly.css
CHANGED
|
@@ -25307,6 +25307,8 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
25307
25307
|
--pf-c-table__tree-view-main--nested-indent--base: calc(var(--pf-c-table__tree-view-main--indent--base) - var(--pf-global--spacer--md));
|
|
25308
25308
|
--pf-c-table__tree-view-main--PaddingLeft: var(--pf-c-table__tree-view-main--indent--base);
|
|
25309
25309
|
--pf-c-table__tree-view-main--MarginLeft: calc(var(--pf-c-table--cell--PaddingLeft) * -1);
|
|
25310
|
+
--pf-c-table__tree-view-main--c-table__check--PaddingRight: var(--pf-global--spacer--sm);
|
|
25311
|
+
--pf-c-table__tree-view-main--c-table__check--PaddingLeft: var(--pf-global--spacer--sm);
|
|
25310
25312
|
--pf-c-table__tree-view-main--c-table__check--MarginRight: var(--pf-global--spacer--sm);
|
|
25311
25313
|
--pf-c-table__tree-view-icon--MinWidth: var(--pf-global--FontSize--md);
|
|
25312
25314
|
--pf-c-table__tree-view-icon--MarginRight: var(--pf-global--spacer--sm);
|
|
@@ -25367,6 +25369,11 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
25367
25369
|
.pf-c-table__tree-view-main > .pf-c-table__check {
|
|
25368
25370
|
margin-right: var(--pf-c-table__tree-view-main--c-table__check--MarginRight);
|
|
25369
25371
|
}
|
|
25372
|
+
.pf-c-table__tree-view-main > .pf-c-table__check label {
|
|
25373
|
+
padding-right: var(--pf-c-table__tree-view-main--c-table__check--PaddingRight);
|
|
25374
|
+
padding-left: var(--pf-c-table__tree-view-main--c-table__check--PaddingLeft);
|
|
25375
|
+
margin: 0 calc(var(--pf-c-table__tree-view-main--c-table__check--MarginRight) * -1) 0 0;
|
|
25376
|
+
}
|
|
25370
25377
|
|
|
25371
25378
|
.pf-c-table__tree-view-text {
|
|
25372
25379
|
display: flex;
|