UNPKG

@zendeskgarden/react-forms

Version:

Components relating to form elements in the Garden Design System

35 lines (34 loc) 1.74 kB
/** * Copyright Zendesk, Inc. * * Use of this source code is governed under the Apache License, Version 2.0 * found at http://www.apache.org/licenses/LICENSE-2.0. */ /** Common */ export { Field } from './elements/common/Field'; export { Fieldset } from './elements/common/Fieldset'; export { Hint } from './elements/common/Hint'; export { Label } from './elements/common/Label'; export { Message } from './elements/common/Message'; /** Fields */ export { Checkbox } from './elements/Checkbox'; export { Input } from './elements/Input'; export { Radio } from './elements/Radio'; export { Range } from './elements/Range'; export { Textarea } from './elements/Textarea'; export { Toggle } from './elements/Toggle'; export { Select } from './elements/Select'; /** Tiles */ export { Tiles } from './elements/tiles/Tiles'; /** Input Group */ export { InputGroup } from './elements/input-group/InputGroup'; /** File Upload */ export { FileUpload } from './elements/FileUpload'; /** File List */ export { FileList } from './elements/file-list/FileList'; export { File } from './elements/file-list/components/File'; /** Other */ export { FauxInput } from './elements/faux-input/FauxInput'; export { MediaInput } from './elements/MediaInput'; /** types */ export { VALIDATION, type IFieldsetProps, type ILabelProps, type IMessageProps, type ICheckboxProps, type IRadioProps, type IToggleProps, type IInputProps, type ITextareaProps, type ISelectProps, type IFileUploadProps, type IFileProps, type IRangeProps, type IInputGroupProps, type ITilesProps, type ITilesTileProps, type IFauxInputProps, type IFauxInputIconProps as IFauxInputStartIconProps, type IFauxInputIconProps as IFauxInputEndIconProps, type IMediaInputProps } from './types';