Skip to content

Commit

Permalink
Update package dependencies and remove unused modules
Browse files Browse the repository at this point in the history
- Upgraded `webpack-bundle-analyzer` from v3.8.0 to v4.10.2 in both `package.json` and `package-lock.json`.
- Updated various dependencies in `react-components` and `react-layouts` to their latest versions, including `@puppet/react-components` and `@puppet/sass-variables`.
- Removed unused imports and components from `react-components` and `react-layouts`, specifically `Filters`, `Columns`, and `PageContent`.
  • Loading branch information
sean-mckenna committed Dec 15, 2024
1 parent 193ff5b commit 135c57c
Show file tree
Hide file tree
Showing 10 changed files with 169 additions and 108 deletions.
219 changes: 138 additions & 81 deletions packages/design-system-website/package-lock.json

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

8 changes: 4 additions & 4 deletions packages/design-system-website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,16 @@
"sinon": "^7.5.0",
"sinon-chai": "^3.5.0",
"webpack": "^5.95.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^3.11.0",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@popperjs/core": "^2.9.2",
"@puppet/data-grid": "^0.2.7",
"@puppet/react-components": "^5.34.10",
"@puppet/react-layouts": "^2.0.0-alpha.4",
"@puppet/data-grid": "^1.0.0-alpha.5",
"@puppet/react-components": "^6.0.0-alpha.17",
"@puppet/react-layouts": "^2.0.0-alpha.6",
"brace": "^0.11.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"@puppet/sass-variables": "^1.4.4",
"@puppet/sass-variables": "^2.0.0-alpha.3",
"classnames": "^2.5.1",
"core-js": "^3.38.1",
"hoist-non-react-statics": "^3.3.2",
Expand Down
1 change: 0 additions & 1 deletion packages/react-components/source/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ export {
Copy,
Drawer,
Detail,
Filters,
Form,
Heading,
Icon,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const RadioButton = ({
className={classNames('rc-radiobutton', {
'rc-radiobutton-error': error,
})}
onChange={(e) => onChange(e.target.checked, e)}
onChange={(e) => onChange(value, e)}
{...otherProps}
/>
<Icon svg={radioDot.svg} viewBox={radioDot.viewBox} />
Expand Down
Loading

0 comments on commit 135c57c

Please sign in to comment.