Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/react-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"tslib": "^2.5.0"
},
"devDependencies": {
"@patternfly/patternfly": "5.0.0-alpha.54",
"@patternfly/patternfly": "5.0.0-alpha.55",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-replace": "^5.0.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"test:a11y": "patternfly-a11y --config patternfly-a11y.config"
},
"dependencies": {
"@patternfly/patternfly": "5.0.0-alpha.54",
"@patternfly/patternfly": "5.0.0-alpha.55",
"@patternfly/react-charts": "^7.0.0-alpha.27",
"@patternfly/react-code-editor": "^5.0.0-alpha.110",
"@patternfly/react-core": "^5.0.0-alpha.109",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-icons/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-regular-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@patternfly/patternfly": "5.0.0-alpha.54",
"@patternfly/patternfly": "5.0.0-alpha.55",
"fs-extra": "^11.1.1",
"glob": "^7.1.2",
"rimraf": "^2.6.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-styles/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"clean": "rimraf dist css"
},
"devDependencies": {
"@patternfly/patternfly": "5.0.0-alpha.54",
"@patternfly/patternfly": "5.0.0-alpha.55",
"camel-case": "^3.0.0",
"css": "^2.2.3",
"fs-extra": "^11.1.1",
Expand Down
4 changes: 3 additions & 1 deletion packages/react-table/src/components/Table/Caption.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import * as React from 'react';
import styles from '@patternfly/react-styles/css/components/Table/table';
import { css } from '@patternfly/react-styles';

export interface CaptionProps {
/** Content rendered inside the caption */
Expand All @@ -8,7 +10,7 @@ export interface CaptionProps {
}

export const Caption: React.FunctionComponent<CaptionProps> = ({ children, className, ...props }: CaptionProps) => (
<caption className={className} {...props}>
<caption className={css(styles.tableCaption, className)} {...props}>
{children}
</caption>
);
Expand Down
1 change: 1 addition & 0 deletions packages/react-table/src/components/Table/Tbody.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ const TbodyBase: React.FunctionComponent<TbodyProps> = ({
<tbody
role="rowgroup"
className={css(
styles.tableTbody,
className,
isExpanded && styles.modifiers.expanded,
isOddStriped && styles.modifiers.striped,
Expand Down
1 change: 1 addition & 0 deletions packages/react-table/src/components/Table/Td.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,7 @@ const TdBase: React.FunctionComponent<TdProps> = ({
onBlur={() => setShowTooltip(false)}
onMouseEnter={tooltip !== null ? onMouseEnter : onMouseEnterProp}
className={css(
styles.tableTd,
className,
isActionCell && styles.tableAction,
textCenter && styles.modifiers.center,
Expand Down
1 change: 1 addition & 0 deletions packages/react-table/src/components/Table/Th.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ const ThBase: React.FunctionComponent<ThProps> = ({
scope={component === 'th' && children ? scope : null}
ref={cellRef}
className={css(
styles.tableTh,
className,
textCenter && styles.modifiers.center,
isSubheader && styles.tableSubhead,
Expand Down
1 change: 1 addition & 0 deletions packages/react-table/src/components/Table/Thead.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ const TheadBase: React.FunctionComponent<TheadProps> = ({
}: TheadProps) => (
<thead
className={css(
styles.tableThead,
className,
noWrap && styles.modifiers.nowrap,
hasNestedHeader && styles.modifiers.nestedColumnHeader
Expand Down
1 change: 1 addition & 0 deletions packages/react-table/src/components/Table/Tr.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ const TrBase: React.FunctionComponent<TrProps> = ({
{isSelectable && <output className="pf-v5-screen-reader">{ariaLabel}</output>}
<tr
className={css(
styles.tableTr,
className,
isExpanded !== undefined && styles.tableExpandableRow,
isExpanded && styles.modifiers.expanded,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ exports[`RowWrapper renders correctly 1`] = `
<table>
<tbody>
<tr
class=""
class="pf-v5-c-table__tr"
data-ouia-component-id="OUIA-Generated-TableRow-1"
data-ouia-component-type="PF4/TableRow"
data-ouia-safe="true"
Expand All @@ -20,7 +20,7 @@ exports[`RowWrapper renders expanded correctly 1`] = `
<table>
<tbody>
<tr
class="pf-v5-c-table__expandable-row pf-m-expanded"
class="pf-v5-c-table__tr pf-v5-c-table__expandable-row pf-m-expanded"
data-ouia-component-id="OUIA-Generated-TableRow-2"
data-ouia-component-type="PF4/TableRow"
data-ouia-safe="true"
Expand Down
Loading