/** * VertiGIS Studio App Designer settings for a component's size. */ export interface ComponentSizingDesignerSettings { /** * Whether the component is growing. */ grow: boolean; /** * The ID of the component. */ id: string; /** * Whether the component is currently in the DOM. */ hidden: boolean; /** * The sizing value as either a percentage or as a pixel value. An undefined * value indicates the component is not able to be resized. */ scalar: string | undefined; /** * The title of the component. */ title: string; }