Skip to content

Commit

Permalink
⬆️ Rollup v4.x (#3132)
Browse files Browse the repository at this point in the history
* ⬆️ rollup 4.1.4

* ⬆️ rollup patch

* core-react: fix build warning
  • Loading branch information
oddvernes authored Oct 30, 2023
1 parent f1a92d0 commit 365231d
Show file tree
Hide file tree
Showing 13 changed files with 870 additions and 196 deletions.
2 changes: 1 addition & 1 deletion packages/eds-core-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"react-hook-form": "^7.47.0",
"react-router-dom": "^6.17.0",
"remark-gfm": "^4.0.0",
"rollup": "^3.25.3",
"rollup": "^4.1.5",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "^7.5.1",
Expand Down
184 changes: 149 additions & 35 deletions packages/eds-core-react/pnpm-lock.yaml

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

Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,10 @@ export const Pagination = forwardRef<HTMLElement, PaginationProps>(
{items.length > 0
? items.map((page, index) =>
page !== 'ELLIPSIS' ? (
// eslint-disable-next-line react/no-array-index-key
<ListItem key={`list-item ${index}`}>
<ListItem
// eslint-disable-next-line react/no-array-index-key
key={`list-item ${index}`}
>
<PaginationItem
aria-label={getAriaLabel(page as number, activePage)}
aria-current={activePage}
Expand Down
2 changes: 1 addition & 1 deletion packages/eds-data-grid-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"react-dom": "^18.2.0",
"react-hook-form": "^7.47.0",
"remark-gfm": "^4.0.0",
"rollup": "^3.25.1",
"rollup": "^4.1.5",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "^7.5.1",
Expand Down
Loading

0 comments on commit 365231d

Please sign in to comment.