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    
Size: Mime:
"use strict";

Object.defineProperty(exports, "__esModule", {
  value: true
});

const words_1 = require("../../../../../../words");

exports.wordings = {
  assignTeamLabel: 'assign team',
  assignRoleLabel: 'assign role'
};
const optionsList = {
  teamOptions: [{
    label: 'Team A',
    value: 'Team A',
    isDisabled: false,
    isSelected: false
  }, {
    label: 'Team B',
    value: 'Team B',
    isDisabled: false,
    isSelected: false
  }, {
    label: 'Team C',
    value: 'Team C',
    isDisabled: false,
    isSelected: false
  }],
  roleOptions: [// SKB2B-1599

  /* {
    label: 'Manager',
    value: 'Manager',
    isDisabled: false,
    isSelected: false,
  },*/
  {
    label: 'User',
    value: 'User',
    isDisabled: false,
    isSelected: false
  }]
};
exports.inputList = [{
  type: 'groupElements',
  validationType: 'groupElements',
  className: 'invite-form-container',
  name: 'invite-form-container',
  elementList: [{
    identity: 'email-address',
    type: 'text',
    value: '',
    className: 'form-inputs',
    name: 'emailAddress',
    labelText: words_1.wording.emailAddressLabel,
    maxLength: '254',
    wrapperClassName: 'form-item-wrapper',
    validationType: 'email',
    errorMessageFor: 'email',
    autocomplete: 'email',
    ariaLabel: 'qa-email-textbox',
    animatePlaceholder: false,
    dataQa: 'qa-email-textbox',
    icon: {
      breedType: 'email',
      breed: 'filled',
      fill: '#CCC',
      stroke: 'none',
      width: '20px',
      height: '20px',
      className: 'email-icon',
      position: 'left'
    }
  }, {
    type: 'select',
    value: '',
    className: 'form-inputs',
    name: 'team',
    isFormView: true,
    labelText: words_1.wording.teamLabel,
    wrapperClassName: 'form-item-wrapper drop-down-container',
    options: optionsList.teamOptions,
    label: exports.wordings.assignTeamLabel,
    shouldBeAbsolute: true,
    validationType: 'selectOption',
    errorMessageFor: 'selectTeam',
    ariaLabel: 'select team',
    dataQa: 'qa-team-container'
  }, {
    type: 'select',
    value: '',
    className: 'form-inputs',
    name: 'role',
    isFormView: true,
    labelText: words_1.wording.roleLabel,
    wrapperClassName: 'form-item-wrapper drop-down-container',
    options: optionsList.roleOptions,
    label: exports.wordings.assignRoleLabel,
    shouldBeAbsolute: true,
    validationType: 'selectOption',
    errorMessageFor: 'selectRole',
    ariaLabel: 'select role',
    dataQa: 'qa-role-container'
  }]
}]; //# sourceMappingURL=fixture.js.map