This commit is contained in:
Tony Le 2026-06-25 02:10:44 +00:00 committed by GitHub
commit eb4ddc50db
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 2 deletions

View file

@ -740,6 +740,7 @@ function buildLayoutForEntries(
groupOptions?: PluginLayoutDeclaration["groupOptions"]
}[]
> = {
header: [],
left: [],
right: [],
beforeBody: [],

View file

@ -8,7 +8,7 @@ import { BuildCtx } from "../../util/ctx"
export type PluginCategory = "transformer" | "filter" | "emitter" | "pageType" | "component"
export type LayoutPosition = "left" | "right" | "beforeBody" | "afterBody"
export type LayoutPosition = "header" | "left" | "right" | "beforeBody" | "afterBody"
export type LayoutDisplay = "all" | "mobile-only" | "desktop-only"

View file

@ -238,7 +238,7 @@
"properties": {
"position": {
"type": "string",
"enum": ["left", "right", "beforeBody", "afterBody", "body"],
"enum": ["header", "left", "right", "beforeBody", "afterBody", "body"],
"description": "Layout position"
},
"priority": {