From 3ae26c1f539924c7f5a54dec880f419b68e81743 Mon Sep 17 00:00:00 2001 From: Liam Bigelow <40188355+bglw@users.noreply.github.com> Date: Tue, 12 Nov 2024 12:45:25 +1300 Subject: [PATCH] Add structure object config options --- src/configuration.d.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/configuration.d.ts b/src/configuration.d.ts index f7239b2..8d47681 100644 --- a/src/configuration.d.ts +++ b/src/configuration.d.ts @@ -1407,6 +1407,14 @@ export interface StructureValue extends Previewable, PickerPreviewable, Schemali * Allows you to group the inputs inside this object together without changing the data structure. */ groups?: ObjectInputGroup[]; + /** + * Controls which order input groups and ungrouped inputs appear in. + */ + place_groups_below?: boolean; + /** + * Show nested objects as tabs. Requires all top-level keys to be objects. + */ + tabbed?: boolean; /** * The actual value used when items are added after selection. */