UNPKG

md2

Version:

Angular2 based Material Design components, directives and services are Accordion, Autocomplete, Chips(Tags), Collapse, Colorpicker, Data Table, Datepicker, Dialog(Modal), Menu, Multiselect, Select, Tabs, Tags(Chips), Toast and Tooltip.

9 lines (8 loc) 419 B
import { InjectionToken } from '@angular/core'; /** InjectionToken that can be used to specify the global placeholder options. */ export declare const MD_PLACEHOLDER_GLOBAL_OPTIONS: InjectionToken<PlaceholderOptions>; /** Type for the available floatPlaceholder values. */ export declare type FloatPlaceholderType = 'always' | 'never' | 'auto'; export interface PlaceholderOptions { float?: FloatPlaceholderType; }