UNPKG

@nova-ui/bits

Version:

SolarWinds Nova Framework

79 lines (78 loc) 1.73 kB
export interface Schema { /** * Specifies the change detection strategy. */ changeDetection?: ChangeDetection; /** * Specifies if the component is an entry component of declaring module. */ entryComponent?: boolean; /** * Specifies if declaring module exports the component. */ export?: boolean; /** * Flag to indicate if a directory is created. */ flat?: boolean; /** * Specifies whether to apply lint fixes after generating the component. */ lintFix?: boolean; /** * Allows specification of the declaring module. */ module?: string; /** * The name of the component. */ name: string; /** * The path to create the component. */ path?: string; /** * The prefix to apply to generated selectors. */ prefix?: string; /** * The name of the project. */ project?: string; /** * The selector to use for the component. */ selector?: string; /** * Flag to skip the module import. */ skipImport?: boolean; /** * Specifies if a spec file is generated. */ spec?: boolean; /** * The file extension to be used for style files. */ styleext?: string; /** * Specifies the view encapsulation strategy. */ viewEncapsulation?: ViewEncapsulation; } /** * Specifies the change detection strategy. */ export declare enum ChangeDetection { Default = "Default", OnPush = "OnPush" } /** * Specifies the view encapsulation strategy. */ export declare enum ViewEncapsulation { Emulated = "Emulated", Native = "Native", None = "None", ShadowDOM = "ShadowDom" }