UNPKG

@nativescript-community/ui-material-textview

Version:

Material Design Text views allow users to input text into your app.

58 lines 1.66 kB
import { cssProperty } from '@nativescript-community/ui-material-core'; import { CSSType, TextView as NSTextView } from '@nativescript/core'; let TextViewBase = class TextViewBase extends NSTextView { constructor() { super(...arguments); this.variant = 'filled'; } }; __decorate([ cssProperty ], TextViewBase.prototype, "helper", void 0); __decorate([ cssProperty ], TextViewBase.prototype, "helperColor", void 0); __decorate([ cssProperty ], TextViewBase.prototype, "counterMaxLength", void 0); __decorate([ cssProperty ], TextViewBase.prototype, "errorColor", void 0); __decorate([ cssProperty ], TextViewBase.prototype, "floating", void 0); __decorate([ cssProperty ], TextViewBase.prototype, "placeholderColor", void 0); __decorate([ cssProperty ], TextViewBase.prototype, "variant", void 0); __decorate([ cssProperty ], TextViewBase.prototype, "error", void 0); __decorate([ cssProperty ], TextViewBase.prototype, "strokeColor", void 0); __decorate([ cssProperty ], TextViewBase.prototype, "strokeInactiveColor", void 0); __decorate([ cssProperty ], TextViewBase.prototype, "strokeDisabledColor", void 0); __decorate([ cssProperty ], TextViewBase.prototype, "floatingColor", void 0); __decorate([ cssProperty ], TextViewBase.prototype, "floatingInactiveColor", void 0); __decorate([ cssProperty ], TextViewBase.prototype, "buttonColor", void 0); __decorate([ cssProperty ], TextViewBase.prototype, "verticalTextAlignment", void 0); TextViewBase = __decorate([ CSSType('MDTextView') ], TextViewBase); export { TextViewBase }; //# sourceMappingURL=textview.common.js.map