/**
* DO NOT EDIT THIS FILE.
* See the following change record for more information,
* https://www.drupal.org/node/2815083
* @preserve
**/
(Drupal => {
Drupal.theme.ajaxProgressIndicatorFullscreen = () => '
';
Drupal.theme.ajaxProgressThrobber = message => {
const messageMarkup = typeof message === 'string' ? Drupal.theme('ajaxProgressMessage', message) : '';
const throbber = '
';
return `${throbber}${messageMarkup}
`;
};
Drupal.theme.ajaxProgressMessage = message => `${message}
`;
})(Drupal);