docs(catalog): add missing flowchart-vertical and vfx-liquid-glass pages#1525
Open
Dashsoap wants to merge 1 commit into
Open
docs(catalog): add missing flowchart-vertical and vfx-liquid-glass pages#1525Dashsoap wants to merge 1 commit into
Dashsoap wants to merge 1 commit into
Conversation
Two installable blocks are registered in registry/registry.json with complete registry-item.json manifests (and preview assets), but their generated catalog docs were never produced: - flowchart-vertical - vfx-liquid-glass The catalog docs are generated from the registry by scripts/generate-catalog-pages.ts, which emits docs/catalog/<kind>/<name>.mdx, docs/public/catalog-index.json, and the Catalog nav in docs/docs.json. These two blocks were added to the registry without re-running it, so the docs site listed 95 of the 97 blocks — the two are installable via `hyperframes add` but invisible in the catalog and search index. This adds exactly the output the generator produces for these two items (the two .mdx pages are byte-identical to its output) plus their entries in catalog-index.json and the Catalog nav, leaving all other generated pages untouched.
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.
What
Adds the two missing catalog doc pages —
flowchart-verticalandvfx-liquid-glass— plus their entries indocs/public/catalog-index.jsonand the Catalog nav indocs/docs.json.Why
Both blocks are registered in
registry/registry.jsonwith completeregistry-item.jsonmanifests (and preview video/poster assets), so they're installable vianpx hyperframes add flowchart-vertical/vfx-liquid-glass. But their generated catalog docs were never produced — the docs site lists 95 of the 97 registered blocks, and these two are invisible in the catalog grid and search index.The catalog docs are generated from the registry by
scripts/generate-catalog-pages.ts, which emitsdocs/catalog/<kind>/<name>.mdx,docs/public/catalog-index.json, and the Catalog nav indocs/docs.json. These two blocks were added to the registry without re-running it.How
I ran
scripts/generate-catalog-pages.tsand took only the output for these two items — the two.mdxpages are byte-identical to what the generator produces — then added their corresponding entries tocatalog-index.json(alphabetical) and the Catalog nav groups (vfx-liquid-glass→ HTML-in-Canvas,flowchart-vertical→ Blocks). All other generated pages are left untouched, so the diff is just the two new pages + 28 added lines.Test plan
registry-item.json+ preview assets in the registry; verified the two new.mdxpages are byte-identical togenerate-catalog-pages.tsoutput; the added index/nav entries match the generator's output for these items exactly;JSON.parsesucceeds for both edited JSON files; no other catalog page is modified.