- 🇬🇧United Kingdom the_g_bomb
This patch should still be merged, the 2.x branch moves the provision of the slider to the bundled jQuery UI library, which removes localisation.
The 2.x branch does not include a .module file and so causes errors, and so in my opinion is unuseable.
Same issue is in jquery_ui_datepicker.
https://www.drupal.org/project/jquery_ui_datepicker/issues/3327735#comme... 💬 Difference between 1.x and 2.x branches Active - 🇪🇸Spain rcodina Barcelona
I agree with #18. The Better Exposed Filters 6.0.2 (D9 and D10) still depends on jQuery UI Slider 1.x (D8 and D9). This blocks people from updating to D10.
- 🇺🇸United States hockey2112
Any workaround for the Better Exposed Filters issue?
- drupal/better_exposed_filters 6.0.2 requires drupal/jquery_ui_slider ^1.1 -> satisfiable by drupal/jquery_ui_slider[1.x-dev, 1.1.0] but these conflict with your requirements or minimum-stability. - drupal/better_exposed_filters 6.0.2 requires drupal/jquery_ui_slider ^1.1 -> satisfiable by drupal/jquery_ui_slider[1.x-dev, 1.1.0] but these conflict with your requirements or minimum-stability. - drupal/better_exposed_filters 6.0.2 requires drupal/jquery_ui_slider ^1.1 -> satisfiable by drupal/jquery_ui_slider[1.x-dev, 1.1.0] but these conflict with your requirements or minimum-stability. - Installation request for drupal/better_exposed_filters (locked at 6.0.2, required as ^6.0) -> satisfiable by drupal/better_exposed_filters[6.0.2].
- 🇮🇳India StanleyFernandes Goa
Facing the same issue as mentioned by @hockey2112, when I'm trying to update the jquery_ui_slider module to 2.0 version.
- 🇺🇸United States nicxvan
Update better exposed filters to 6.0.3 and it should update this one as well. 6.0.3 requires 2x for jquery submodules.
- 🇮🇳India StanleyFernandes Goa
Fixed the issue mentioned in #20 by @hockey2112
Initially, I was unable to update Better Exposed Filters to 6.0.3 from 6.0.2I used this command to update the Better Exposed Filter with dependencies
composer require 'drupal/better_exposed_filters:^6.0' -W
Which updated the Better Exposed Filter to 6.0.3 and updated the dependencies i.e
from"drupal/jquery_ui_slider": "^1.1",
to"drupal/jquery_ui_slider": "^2.0.0"
After which I was able to update the JQuery UI Slider using
composer require 'drupal/jquery_ui_slider:^2.0'
Reference : https://www.drupal.org/project/better_exposed_filters/issues/3328631 💬 Unable to update to 6.0.3 from 6.0.2 Active
- 🇺🇸United States shamilto2000
For some reason the fix suggested at #23 did not work for me. The following worked, however:
composer require 'drupal/better_exposed_filt ers:^6.0.3' 'drupal/jquery_ui_datepicker:^2.0' 'drupal/jquery_ui_slider:^2.0'