/** * DO NOT EDIT THIS FILE. * See the following change record for more information, * https://www.drupal.org/node/2815083 * @preserve **/ (Drupal => { Drupal.theme.passwordConfirmMessage = ({ confirmTitle }) => { const confirmTextWrapper = ''; return `
${confirmTitle} ${confirmTextWrapper}
`; }; Drupal.theme.passwordStrength = ({ strengthTitle }) => { const strengthIndicator = '
'; const strengthText = ''; return `
${strengthIndicator}
${strengthTitle} ${strengthText}
`; }; Drupal.theme.passwordSuggestions = ({ hasWeaknesses }, tips) => `
${tips.length ? `${hasWeaknesses}` : ''}
`; })(Drupal);