active-link.es6.js

ajax.es6.js

Source:
Provides Ajax page updating via jQuery $.ajax. Ajax is a method of making a request via JavaScript while viewing an HTML page. The request returns an array of commands encoded in JSON, which is then executed to make any changes that are necessary to the page. Drupal uses this file to enhance form elements with `#ajax['url']` and `#ajax['wrapper']` properties. If set, this file will automatically be included to provide Ajax capabilities.

announce.es6.js

Source:
Adds an HTML element and method to trigger audio UAs to read system messages. Use Drupal.announce to indicate to screen reader users that an element on the page has changed state. For instance, if clicking a link loads 10 more items into a list, one might announce the change like this.

Example

$('#search-list')
  .on('itemInsert', function (event, data) {
    // Insert the new items.
    $(data.container.el).append(data.items.el);
    // Announce the change to the page contents.
    Drupal.announce(Drupal.t('@count items added to @container',
      {'@count': data.items.length, '@container': data.container.title}
    ));
  });

autocomplete.es6.js

batch.es6.js

checkbox.es6.js

collapse.es6.js

date.es6.js

debounce.es6.js

details-aria.es6.js

details-summarized-content.es6.js

displace.es6.js

Source:
Manages elements that can offset the size of the viewport. Measures and reports viewport offset dimensions from elements like the toolbar that can potentially displace the positioning of other elements.

drupal.es6.js

drupalSettingsLoader.es6.js

entity-form.es6.js

form.es6.js

jquery.cookie.shim.es6.js

jquery.once.bc.es6.js

Source:
This file allows calls to `once()` and `once.remove()` to also populate the jQuery.once registry. It allows contributed code still using jQuery.once to behave as expected:

Example

once('core-once-call', 'body');

// The following will work in a contrib module still using jQuery.once:
$('body').once('core-once-call'); // => returns empty object

jquery.tabbable.shim.es6.js

machine-name.es6.js

message.es6.js

modernizr-additional-tests.es6.js

position.es6.js

Source:
See:
A modified version of jQuery UI position. Per jQuery UI's public domain license, it is permissible to run modified versions of their code. This file offers the same functionality as what is provided by jQuery UI position, but refactored to meet Drupal coding standards, and restructured so it extends jQuery core instead of jQuery UI. For most positioning needs, the core/popperjs library should be used instead of the functionality provided here. This is provided to support pre-existing code that expects the jQuery position API.

progress.es6.js

states.es6.js

tabbingmanager.es6.js

tabledrag.es6.js

tableheader.es6.js

tableresponsive.es6.js

tableselect.es6.js

timezone.es6.js

vertical-tabs.es6.js