Package Exports
- @not-govuk/textarea
- @not-govuk/textarea/dist/Textarea.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@not-govuk/textarea) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
NotGovUK - Textarea
A component to allow users to enter multiple lines of text.
Using this package
First install the package into your project:
npm install -S @not-govuk/textareaThen use it in your code as follows:
import React, { createElement as h } from 'react';
import Textarea from '@not-govuk/textarea';
export const MyComponent = props => (
<Textarea
hint="Do not include personal or financial information, like your National Insurance number or credit card details."
label={<h1 className="govuk-heading-l">Can you provide more detail?</h1>}
name="more-detail"
/>
);
export default MyComponent;Working on this package
Before working on this package you must install its dependencies using the following command:
pnpm installTesting
Run the unit tests.
npm testBuilding
Build the package by compiling the TypeScript source code.
npm run buildClean-up
Remove any previously built files.
npm run clean