diff --git a/awx/ui_next/package-lock.json b/awx/ui_next/package-lock.json index 70e18e4165..d4ed859ea9 100644 --- a/awx/ui_next/package-lock.json +++ b/awx/ui_next/package-lock.json @@ -2121,22 +2121,39 @@ "dev": true }, "@patternfly/patternfly": { - "version": "4.70.2", - "resolved": "https://registry.npmjs.org/@patternfly/patternfly/-/patternfly-4.70.2.tgz", - "integrity": "sha512-XKCHnOjx1JThY3s98AJhsApSsGHPvEdlY7r+b18OecqUnmThVGw3nslzYYrwfCGlJ/xQtV5so29SduH2/uhHzA==" + "version": "4.80.3", + "resolved": "https://registry.npmjs.org/@patternfly/patternfly/-/patternfly-4.80.3.tgz", + "integrity": "sha512-YLUk4L6iCBXql92YP6zHg0FdlnEkd5/3V+uz/A3UoBuuDdEoyDpx4M/Tf56R7IXmYiRaHE1mToJHPDYypIlnmw==" }, "@patternfly/react-core": { - "version": "4.84.3", - "resolved": "https://registry.npmjs.org/@patternfly/react-core/-/react-core-4.84.3.tgz", - "integrity": "sha512-VeCv/r09ay6yIER7Eb8Dp5ZhbDu6SCW9smwgUTNp80kt83wIfKvGvQOKg+/7cev/GC6VzfgPHhiS04Jm/N5loA==", + "version": "4.90.2", + "resolved": "https://registry.npmjs.org/@patternfly/react-core/-/react-core-4.90.2.tgz", + "integrity": "sha512-Ld4HCXYrVZR+ycWKvygmOEDyyMpb/pfZFklJiT/9ktSSSU9SfKwH2XmXotgjwBy1lYUoRYJ58xTpV19duouEoA==", "requires": { - "@patternfly/react-icons": "^4.7.22", - "@patternfly/react-styles": "^4.7.22", - "@patternfly/react-tokens": "^4.9.22", + "@patternfly/react-icons": "^4.8.4", + "@patternfly/react-styles": "^4.7.29", + "@patternfly/react-tokens": "^4.9.26", "focus-trap": "6.2.2", "react-dropzone": "9.0.0", "tippy.js": "5.1.2", "tslib": "1.13.0" + }, + "dependencies": { + "@patternfly/react-icons": { + "version": "4.8.4", + "resolved": "https://registry.npmjs.org/@patternfly/react-icons/-/react-icons-4.8.4.tgz", + "integrity": "sha512-nGrZ6F57drim7t5FlFz7YusHVs8xngiayB20oSsJeewppOZ3vJDVhHaiJjsIRMB9PcVOY99QT2wnyiY1eYPVyA==" + }, + "@patternfly/react-styles": { + "version": "4.7.29", + "resolved": "https://registry.npmjs.org/@patternfly/react-styles/-/react-styles-4.7.29.tgz", + "integrity": "sha512-eAO9xh2+IQHIBCihmwNuDVCeAWhGXIhbUNJEwZzvevYuH4Pnl0X8YaWoYmM2ZfL8ZdagRTLvjGW+hoZGkUyCBQ==" + }, + "@patternfly/react-tokens": { + "version": "4.9.26", + "resolved": "https://registry.npmjs.org/@patternfly/react-tokens/-/react-tokens-4.9.26.tgz", + "integrity": "sha512-SSbY6BaUb7ycXhvdBNk2yzOlteRUHnchHSYPBFvhUk+SqpsjQ7j13/ZTok6pcHXrcj3FaL9f82/ep4eTXPzmWg==" + } } }, "@patternfly/react-icons": { @@ -2163,6 +2180,11 @@ "tslib": "1.13.0" }, "dependencies": { + "@patternfly/patternfly": { + "version": "4.70.2", + "resolved": "https://registry.npmjs.org/@patternfly/patternfly/-/patternfly-4.70.2.tgz", + "integrity": "sha512-XKCHnOjx1JThY3s98AJhsApSsGHPvEdlY7r+b18OecqUnmThVGw3nslzYYrwfCGlJ/xQtV5so29SduH2/uhHzA==" + }, "@patternfly/react-core": { "version": "4.84.4", "resolved": "https://registry.npmjs.org/@patternfly/react-core/-/react-core-4.84.4.tgz", diff --git a/awx/ui_next/package.json b/awx/ui_next/package.json index 7eb3759e74..2e791418db 100644 --- a/awx/ui_next/package.json +++ b/awx/ui_next/package.json @@ -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", diff --git a/awx/ui_next/src/components/MultiButtonToggle/MultiButtonToggle.jsx b/awx/ui_next/src/components/MultiButtonToggle/MultiButtonToggle.jsx index b76c4c6a61..efc1cb3d92 100644 --- a/awx/ui_next/src/components/MultiButtonToggle/MultiButtonToggle.jsx +++ b/awx/ui_next/src/components/MultiButtonToggle/MultiButtonToggle.jsx @@ -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 }) { diff --git a/awx/ui_next/src/components/ResourceAccessList/__snapshots__/DeleteRoleConfirmationModal.test.jsx.snap b/awx/ui_next/src/components/ResourceAccessList/__snapshots__/DeleteRoleConfirmationModal.test.jsx.snap index caeea4e351..820035723e 100644 --- a/awx/ui_next/src/components/ResourceAccessList/__snapshots__/DeleteRoleConfirmationModal.test.jsx.snap +++ b/awx/ui_next/src/components/ResourceAccessList/__snapshots__/DeleteRoleConfirmationModal.test.jsx.snap @@ -290,6 +290,7 @@ exports[` should render initially 1`] = ` } } paused={false} + preventScrollOnDeactivate={false} >
initially renders succesfully 1`] = ` isClosable={false} numChips={5} onClick={[Function]} + onOverflowChipClick={[Function]} tooltipPosition="top" >