Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(pagination): add common test suite #5836

Merged
merged 12 commits into from
Sep 8, 2023
2 changes: 1 addition & 1 deletion bundlesize.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
},
{
"path": "packages/vue-instantsearch/vue3/umd/index.js",
"maxSize": "63.25 kB"
"maxSize": "63.5 kB"
},
{
"path": "packages/vue-instantsearch/vue2/cjs/index.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ function PaginationLink({
<li
className={cx(
cssClasses.item,
className,
Haroenv marked this conversation as resolved.
Show resolved Hide resolved
isDisabled && cssClasses.disabledItem,
className,
isSelected && cssClasses.selectedItem
)}
>
Expand All @@ -168,6 +168,7 @@ function PaginationLink({
rootTagName="span"
rootProps={{
className: cssClasses.link,
'aria-label': ariaLabel,
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is additive, so it shouldn't be considered breaking IMO.

Worst case, if users have snapshot tests they can break, but this won't break production.

}}
templateKey={templateKey}
templates={templates}
Expand Down

This file was deleted.

Loading