UNPKG

@awsui/components-react

Version:

On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en

12 lines 502 B
import BaseInputWrapper from '../input/base-input'; export default class DateInputWrapper extends BaseInputWrapper { static rootSelector: string; /** * Sets the value of the component and calls the `onChange` handler. * The value needs to use the "YYYY/MM/DD" format, * but the subsequent `onChange` handler will contain the value in the "YYYY-MM-DD" format. * * @param value The value the input is set to, using the "YYYY/MM/DD" format. */ setInputValue(value: string): void; }