Update Handsontable skill for v18.0#5
Open
GreenFlux wants to merge 1 commit into
Open
Conversation
Core skill updates (verified against v18 migration guide, changelog, and
release blog):
- Version: 17.1.0 -> 18.0.0 (June 2026); CDN pin @17.1 -> @18.0
- Angular support: 17-19 -> 16-22
- Cell types: legacy `date` and `time` replaced by `intl-date` and
`intl-time` (Intl.DateTimeFormat-shaped options, ISO 8601 source data)
- Numeric example: numbro `pattern`/`culture` removed; use
Intl.NumberFormat options with `locale`
- HyperFormula install note: future tense -> present (v18 ships with
empty `dependencies`, verified via npm registry)
- DataProvider: re-added `filters` to the fetchRows destructure — the
v18 docs explicitly document it, unlike v17.1 examples
- New "Layout & UI slots (v18+)" section documenting the `layout`
option ({ top?, bottom? } with element key arrays)
- Common Pitfalls refreshed for v18 removals: DOMPurify (custom
sanitizer required), legacy date/time cell types, numbro numeric
formatting, handsontable/common subpath, core hot.undo()/hot.redo(),
PersistentState plugin, wrapper CSS selectors, --ht-wrapper-*
CSS variable renames
- New "v18.0 Breaking Changes" block in Version Awareness
- docs-map.md: last-verified date + version, added 17.1->18.0
migration link, added `layout` deep-link, SSR pins + CDN pin
bumped to 18.0
Fixes to pre-existing broken links (not introduced by this bump):
- Vue 3 installation URL: /docs/react-data-grid/vue3-installation/
-> /docs/vue-data-grid/installation/ (Vue docs moved)
- Blog release-notes: /blog/categories/release-notes ->
/blog/?category=release-notes (URL structure changed)
check-links.sh: extended ALLOWLIST_403 from a single fixed string to
an alternation regex so it can cover multiple domains
(handsontable.com/blog rejects the bare UA the way npmjs.com does).
HyperFormula skill untouched — no HF release paired with HT v18.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Collaborator
Author
qunabu
approved these changes
Jul 2, 2026
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.
Summary
Bumps the Handsontable skill from 17.1 to 18.0 (released June 30, 2026 — TypeScript core rewrite, new layout system, several removals). HyperFormula skill is untouched — no paired HF release.
Every API detail below was cross-checked against an authoritative source (migration guide, changelog, blog, docs deep-link, or
handsontable@18.0.0on the npm registry). No fabricated shapes.v18 changes reflected in the skill
17.1.0→18.0.0, CDN pin@17.1→@18.0, Angular support17–19→16–22date/timeremoved →intl-date/intl-timewithIntl.DateTimeFormat-shaped options and ISO 8601 source datanumericFormat.pattern/culture(numbro) removed →Intl.NumberFormatoptions +localehandsontable@18.0.0ships withdependencies: {}per npm registry) — install separatelyfilterstofetchRowsdestructure — the v18 docs explicitly show it, unlike v17.1layoutoption ({ top?: string[], bottom?: string[] })sanitizer), legacy date/time cell types, numbro numeric format,handsontable/commonsubpath,hot.undo()/hot.redo(), PersistentState, DOM wrapper CSS changes,--ht-wrapper-*CSS variable renames17.1 → 18.0migration linkIncidental fixes
docs-map.mdandSKILL.md):/docs/react-data-grid/vue3-installation/→/docs/vue-data-grid/installation//blog/categories/release-notes→/blog/?category=release-notesscripts/check-links.sh:ALLOWLIST_403changed from single fixed string to alternation regex so it can cover bothnpmjs.comandhandsontable.com/blog(both real, both reject the bare UA)Test plan
./scripts/check-links.sh— all 234 links pass./scripts/build.sh --skip-links—dist/handsontable-rag.md(44K) rebuilt cleanly;dist/hyperformula-rag.mdunchangedintl-dateexample matches the migration guidefiltersre-add is worth doing (v17.1 review had opinions here)layoutoption code example is faithful to the v18 docshandsontable/v18.0.0to trigger the per-skill release workflow🤖 Generated with Claude Code
Note
Low Risk
Documentation-only changes to skill markdown and a link-checker allowlist; no application runtime code.
Overview
Bumps the Handsontable agent skill and mirrored
dist/handsontable-rag.mdfrom 17.1 to 18.0, so guidance matches the June 2026 release.Version & install references now point at
18.0.0, CDN pins@18.0, Angular 16–22, and the corrected Vue 3 docs URL.Breaking v18 behavior is documented throughout:
intl-date/intl-timeandIntl-based numeric columns (replacing legacydate/timeand numbropattern/culture), separate HyperFormula install, optionalsanitizerafter DOMPurify removal, UndoRedo instead ofhot.undo()/hot.redo(), removed PersistentState andhandsontable/common, and wrapper DOM/CSS token changes. New sections cover thelayoutslot ordering API and an expanded DataProviderfetchRowsexample that includesfilters.references/docs-map.mdis aligned to 18.0 (migration link,layoutAPI, intl cell-type notes, CodeSandbox version query params, blog URL fix).scripts/check-links.shtreatshandsontable.com/blog403s like npmjs when using the link checker regex allowlist.Reviewed by Cursor Bugbot for commit 98e6c01. Bugbot is set up for automated code reviews on this repo. Configure here.