From 8f8538524858a4360ff4ea7fc110bda096c6fe2f Mon Sep 17 00:00:00 2001 From: Meier Lukas Date: Sun, 17 Aug 2025 11:24:28 +0200 Subject: [PATCH] docs(app-widget): add layout option --- docs/widgets/app/index.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/widgets/app/index.ts b/docs/widgets/app/index.ts index 2d807322..1b462213 100644 --- a/docs/widgets/app/index.ts +++ b/docs/widgets/app/index.ts @@ -32,6 +32,15 @@ export const appWidget: WidgetDefinition = { values: { type: 'boolean' }, defaultValue: 'no', }, + { + name: 'Layout', + description: 'How to arrange the app widget.', + values: { + type: 'select', + options: ['Horizontal', 'Horizontal (reversed)', 'Vertical', 'Vertical (reversed)'], + }, + defaultValue: 'Vertical', + }, { name: 'Enable status check', description: 'Whether to enable the status check for the app.',