nlfurniss / ember-legacy-built-in-components

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

@ember/legacy-built-in-components

Provides the legacy implementation of the Checkbox, LinkComponent, TextArea and TextField component classes as specified in RFC #671.

Compatibility

  • Ember.js v3.20 or above
  • Ember CLI v3.20 or above
  • Node.js v12 or above

Installation

ember install @ember/legacy-built-in-components

Usage

import {
  Checkbox,
  LinkComponent,
  TextArea,
  TextField
} from '@ember/legacy-built-in-components';

export const MyCheckbox = Checkbox.extend({ ... });
export const MyLink = LinkComponent.extend({ ... });
export const MyTextArea = TextArea.extend({ ... });
export const MyTextField = TextField.extend({ ... });

Contributing

See the Contributing guide for details.

Releasing

yarn
yarn run test
npx np --no-tests

License

This project is licensed under the MIT License.

About

License:MIT License


Languages

Language:TypeScript 55.5%Language:JavaScript 41.5%Language:HTML 2.8%Language:Handlebars 0.2%