Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / src / forms / views / CommentBox / Form / fixture.ts
Size: Mime:
const wording = {
  submitLabel: 'submit',
  cancelLabel: 'cancel',
  placeholderText: 'Enter your text here',
}

const inputList = [
  {
    identity: 'textArea',
    type: 'textarea',
    name: 'commentBox',
    value: '',
    className: 'comment-box',
    wrapperClassName: 'comment-box-wrapper',
    validationType: 'none',
    maxLength: 5000,
  },
]

export { inputList, wording }
export default inputList