Skip to content

Commit

Permalink
Update Patternfly to allow access to slider component
Browse files Browse the repository at this point in the history
Update Patternfly to allow access to slider component

See: #7777
  • Loading branch information
nixocio authored and jakemcdermott committed Feb 16, 2021
1 parent 909c251 commit 02c8f4c
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 13 deletions.
40 changes: 31 additions & 9 deletions awx/ui_next/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions awx/ui_next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
},
"dependencies": {
"@lingui/react": "^2.9.1",
"@patternfly/patternfly": "4.70.2",
"@patternfly/react-core": "4.84.3",
"@patternfly/patternfly": "^4.80.3",
"@patternfly/react-core": "^4.90.2",
"@patternfly/react-icons": "4.7.22",
"@patternfly/react-table": "^4.19.15",
"ansi-to-html": "^0.6.11",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ import { Button } from '@patternfly/react-core';
import ButtonGroup from './ButtonGroup';

const SmallButton = styled(Button)`
padding: 3px 8px;
font-size: var(--pf-global--FontSize--xs);
&& {
padding: 3px 8px;
font-size: var(--pf-global--FontSize--xs);
}
`;

function MultiButtonToggle({ buttons, value, onChange }) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@ exports[`<DeleteRoleConfirmationModal /> should render initially 1`] = `
}
}
paused={false}
preventScrollOnDeactivate={false}
>
<div
className="pf-l-bullseye"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -840,6 +840,7 @@ exports[`<ResourceAccessListItem /> initially renders succesfully 1`] = `
isClosable={false}
numChips={5}
onClick={[Function]}
onOverflowChipClick={[Function]}
tooltipPosition="top"
>
<GenerateId
Expand Down

0 comments on commit 02c8f4c

Please sign in to comment.