build(deps): bump mod-simple-datatables to v4.1.0#2020
Merged
Conversation
Activates the wrapped data table: the module applies the wrapped layout below the main breakpoint through simple-datatables' tableRender hook. Until this bump Hinode emitted the data-table-wrap markers but the vendored module ignored them, so a wrapped data table rendered unwrapped.
✅ Deploy Preview for gethinode-demo ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
markdumay
added a commit
that referenced
this pull request
Jul 14, 2026
The wrap argument now combines with sortable, paginate and searchable. Hinode renders a wrapped data table uniformly and marks it with data-table-wrap; mod-simple-datatables v4.1.0 applies the wrapped layout below the main breakpoint through simple-datatables' tableRender hook, so sorting, searching and paging keep operating on an unmodified row model. Plain wrapped tables are now rendered once rather than twice, which halves their markup, parses the Markdown once, and stops Flexsearch indexing them twice. The work shipped across v3.0.6 and this release; see #2018 and #2020. Recorded as a feature so the changelog reflects the new capability.
Collaborator
Author
|
🎉 This PR is included in version 3.1.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Activates the wrapped data table shipped in #2018.
#2018 taught Hinode to render a wrapped data table uniformly and mark it with
data-table-wrap/data-table-wrap-breakpoint, but the vendoredmod-simple-datatablesdid not yet know what those markers meant — so a wrapped data table simply rendered unwrapped. gethinode/mod-simple-datatables#277 released as v4.1.0 and consumes them, applying the wrapped layout below the main breakpoint through simple-datatables'tableRenderhook. This bump is the final link.One line in
go.mod;_vendor/is gitignored, so CI re-vendors from the released tag.Verification
Everything to date was verified against a local working-tree copy of the module. This is the first run against the published v4.1.0 artifact, resolved normally through
go.mod— no workspace orreplacementsoverride. All 11 acceptance checks pass in a real browser, with zero uncaught console exceptions:integration = "optional", so it only loads on pages listing it in frontmatter — a gate that silently made an earlier test vacuous).perPage=2, i.e. it counts records rather than the rendered rows.colspan="1"..d-md-table-celland.table-border-bottom-wrapsurvive PurgeCSS in the served stylesheet — they are safelisted precisely because nothing else in the theme emits them.🤖 Generated with Claude Code