UNPKG

ui-framework-jps

Version:

A simple UI framework for state management and UI components

8 lines (7 loc) 443 B
import { FieldUIConfig } from "../../CommonTypes"; import { ItemViewUIDefinition } from "../view/item/ItemViewUITypeDefs"; export declare class FormConfigHelperFunctions { static makeFieldHidden(field: FieldUIConfig): void; static makeFieldHiddenInConfig(config: ItemViewUIDefinition, fieldId: string): void; static reconfigureTextAreaInConfig(config: ItemViewUIDefinition, fieldId: string, columns: number, rows: number): void; }