@smilodon/core 1.3.11 → 1.3.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -3452,6 +3452,7 @@ class EnhancedSelect extends HTMLElement {
3452
3452
  const optionId = `${this._uniqueId}-option-${index}`;
3453
3453
  if (this._optionRenderer) {
3454
3454
  const rendered = this._optionRenderer(item, index, this._rendererHelpers);
3455
+ // Ensure the returned element has the correct classes and listeners
3455
3456
  const optionElement = this._normalizeCustomOptionElement(rendered, {
3456
3457
  index,
3457
3458
  value: getValue(item),