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 / dist / forms / views / CommentBox / Form / fixture.js
Size: Mime:
"use strict";

Object.defineProperty(exports, "__esModule", {
  value: true
});
const wording = {
  submitLabel: 'submit',
  cancelLabel: 'cancel',
  placeholderText: 'Enter your text here'
};
exports.wording = wording;
const inputList = [{
  identity: 'textArea',
  type: 'textarea',
  name: 'commentBox',
  value: '',
  className: 'comment-box',
  wrapperClassName: 'comment-box-wrapper',
  validationType: 'none',
  maxLength: 5000
}];
exports.inputList = inputList;
exports.default = inputList; //# sourceMappingURL=fixture.js.map