From 0b417ca8fa4f7e04db8b08941a0f881428a043b9 Mon Sep 17 00:00:00 2001 From: Aki Hamano <54422211+t-hamano@users.noreply.github.com> Date: Sat, 2 Mar 2024 09:50:03 +0900 Subject: [PATCH] theme.json schema: Update `appearanceTools` description (#59499) * theme.json schema: Update `appearanceTools` description * Build docs Co-authored-by: t-hamano Co-authored-by: fabiankaegy --- .../reference-guides/theme-json-reference/theme-json-living.md | 3 ++- schemas/json/theme.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/reference-guides/theme-json-reference/theme-json-living.md b/docs/reference-guides/theme-json-reference/theme-json-living.md index cec4374388284..2c66b227acf04 100644 --- a/docs/reference-guides/theme-json-reference/theme-json-living.md +++ b/docs/reference-guides/theme-json-reference/theme-json-living.md @@ -33,11 +33,12 @@ Setting that enables the following UI tools: - background: backgroundImage, backgroundSize - border: color, radius, style, width -- color: link +- color: link, heading, button, caption - dimensions: aspectRatio, minHeight - position: sticky - spacing: blockGap, margin, padding - typography: lineHeight +- shadow: defaultPresets --- diff --git a/schemas/json/theme.json b/schemas/json/theme.json index 549cf5cd2207a..814e97ba80128 100644 --- a/schemas/json/theme.json +++ b/schemas/json/theme.json @@ -20,7 +20,7 @@ "type": "object", "properties": { "appearanceTools": { - "description": "Setting that enables the following UI tools:\n\n- background: backgroundImage, backgroundSize\n- border: color, radius, style, width\n- color: link\n- dimensions: aspectRatio, minHeight\n- position: sticky\n- spacing: blockGap, margin, padding\n- typography: lineHeight", + "description": "Setting that enables the following UI tools:\n\n- background: backgroundImage, backgroundSize\n- border: color, radius, style, width\n- color: link, heading, button, caption\n- dimensions: aspectRatio, minHeight\n- position: sticky\n- spacing: blockGap, margin, padding\n- typography: lineHeight\n- shadow: defaultPresets", "type": "boolean", "default": false }