@upstart.gg/sdk
Version:
You can test the CLI without recompiling by running:
12 lines (10 loc) • 355 B
text/typescript
import { Type, type SchemaOptions } from "@sinclair/typebox";
export function grow(options: SchemaOptions = {}) {
return Type.Boolean({
title: "Auto expand",
description: "If set, the brick will grow to fill the available space of its parent section or box.",
"ui:styleId": "styles:grow",
"ui:responsive": true,
...options,
});
}