UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

24 lines (23 loc) 741 B
"use strict"; // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. Object.defineProperty(exports, "__esModule", { value: true }); exports.FieldGroupLayout = void 0; /** * Defines the layout style for grouped fields. */ var FieldGroupLayout; (function (FieldGroupLayout) { /** * Fields are rendered in a horizontal flow, wrapping to new rows as needed. */ FieldGroupLayout["flow"] = "flow"; /** * Fields are rendered in a compact grid layout. */ FieldGroupLayout["grid"] = "grid"; /** * Fields are rendered vertically but with reduced spacing. */ FieldGroupLayout["compact"] = "compact"; })(FieldGroupLayout || (exports.FieldGroupLayout = FieldGroupLayout = {}));