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-presets / dist / presets / B2B / SignInForm / Form / fixture.js
Size: Mime:
"use strict";

Object.defineProperty(exports, "__esModule", {
  value: true
});
const inputList = [{
  identity: 'email',
  type: 'text',
  value: '',
  className: 'signin-email',
  name: 'email',
  labelText: 'email*',
  maxLength: 254,
  wrapperClassName: 'input-form-wrapper signin-email-wrapper',
  validationType: 'email',
  errorMessageFor: 'email',
  dataQa: 'qa-signin-email',
  autocomplete: 'email',
  ariaLabel: 'email',
  animatePlaceholder: false
}, {
  identity: 'password',
  type: 'password',
  value: '',
  className: 'signin-password',
  name: 'password',
  labelText: 'password*',
  maxLength: 90,
  wrapperClassName: 'input-form-wrapper signin-password-wrapper',
  validationType: 'password',
  errorMessageFor: 'enterPassword',
  dataQa: 'qa-signin-password',
  autocomplete: '',
  ariaLabel: 'password',
  animatePlaceholder: false
}, {
  type: 'button',
  elementType: 'inputButton',
  value: 'forgot password?',
  className: 'signin-forgot-password',
  name: 'forgotpassword',
  text: 'forgot password',
  dataQa: 'qa-signin-forgot-password',
  ariaLabel: 'forgot-password',
  animatePlaceholder: false
}];
exports.inputList = inputList;
exports.default = inputList;