Here's the patch!
ralkeon → created an issue.
Updated icon-close interaction css. (The one on the #6 comment was a wrong one).
Updated icon-close interaction css.
Updated icon-close interaction css.
A little update to delete single values when the Mapbox input "icon-close" is clicked!
I realized that other fixes were needed. Here is the updated patch.
Here the patch!
Hi, I used the dev branch but there's still something to do for d10 support.
The hook hook_field_widget_WIDGET_TYPE_form_alter used in the module file is deprecated as stated here:
https://api.drupal.org/api/drupal/core%21modules%21field%21field.api.php...
The hook_field_widget_single_element_WIDGET_TYPE_form_alter hook should be used instead.
I provide a patch for this.
Thanks for the work. I need it for HierarchyProcessor too :D .
I add a usage example as reference:
/**
* Implements hook_facets_processor_info_alter().
*/
function custom_module_facets_processor_info_alter(array &$info) {
$info["hierarchy_processor"]["class"] = 'Drupal\custom_module\Plugin\facets\processor\HierarchyProcessor';
}
I'm sorry bring this up again, but It happened again on another website, and now on drupal 9. I prepared a patch for those who have my issue. This patch will revert this thread change, so be careful.
Just added aria-autocomplete attribute too.
I worked a bit on the patch to have a descriptive and more compliant aria-label.
I noticed that the patch add the attribute "arial-label" but the right one should be aria-label. Here's the rerolled patch.