Commit 01512edb authored by catch's avatar catch
Browse files

Issue #3280359 by bnjmnm: Make jQuery.form internal

parent 9af805fa
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
@@ -842,6 +842,20 @@ jquery.form:
    assets/vendor/jquery-form/jquery.form.min.js: { minified: true }
  dependencies:
    - core/jquery
  deprecated: The %library_id% asset library is deprecated in Drupal 9.4.0 and will be removed in Drupal 10.0.0.

internal.jquery.form:
  # Internal library. Do not depend on it outside core nor add new core usage.
  remote: https://github.com/jquery-form/form
  version: "4.3.0"
  license:
    name: GNU-GPL-2.0-or-later
    url: https://raw.githubusercontent.com/jquery-form/form/master/LICENSE
    gpl-compatible: true
  js:
    assets/vendor/jquery-form/jquery.form.min.js: { minified: true }
  dependencies:
    - core/jquery

jquery.joyride:
  remote: https://github.com/zurb/joyride
+1 −1
Original line number Diff line number Diff line
@@ -326,7 +326,7 @@ public static function preRenderAjaxForm($element) {

    // Attach JavaScript settings to the element.
    if (isset($element['#ajax']['event'])) {
      $element['#attached']['library'][] = 'core/jquery.form';
      $element['#attached']['library'][] = 'core/internal.jquery.form';
      $element['#attached']['library'][] = 'core/drupal.ajax';

      $settings = $element['#ajax'];
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ quickedit:
    - core/jquery.once.bc
    - core/internal.underscore
    - core/internal.backbone
    - core/jquery.form
    - core/internal.jquery.form
    - core/drupal
    - core/drupal.displace
    - core/drupal.form
+1 −1
Original line number Diff line number Diff line
@@ -174,7 +174,7 @@ function common_test_library_info_alter(&$libraries, $module) {
    // Change the version of Farbtastic to 0.0.
    $libraries['jquery.farbtastic']['version'] = '0.0';
    // Make Farbtastic depend on jQuery Form to test library dependencies.
    $libraries['jquery.farbtastic']['dependencies'][] = 'core/jquery.form';
    $libraries['jquery.farbtastic']['dependencies'][] = 'core/internal.jquery.form';
  }

  // Alter the dynamically registered library definition.
+1 −1
Original line number Diff line number Diff line
@@ -15,5 +15,5 @@ views.ajax:
    - core/drupalSettings
    - core/once
    - core/jquery.once.bc
    - core/jquery.form
    - core/internal.jquery.form
    - core/drupal.ajax
Loading