bromcom-ui 2.4.23 → 2.4.24

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.
@@ -706,7 +706,7 @@ const BcmListbox = class {
706
706
  event.target.addEventListener('bcm-on-search-value', async (e) => {
707
707
  searchValue = await e.detail;
708
708
  var inputText = item.shadowRoot.getElementById("text");
709
- inputText = inputText.textContent || inputText.innerText || "";
709
+ inputText = (inputText === null || inputText === void 0 ? void 0 : inputText.textContent) || (inputText === null || inputText === void 0 ? void 0 : inputText.innerText) || "";
710
710
  if (searchValue) {
711
711
  var cacheInputText = lowercase(inputText);
712
712
  var cacheSearchValue = lowercase(searchValue);
@@ -1,7 +1,7 @@
1
1
  import { r as registerInstance, e as createEvent, h, f as Host, g as getElement } from './index-c4bad8c7.js';
2
2
  import './types-911a8837.js';
3
3
  import { c as classnames } from './index-93682c12.js';
4
- import { G as Generate } from './generate-e5daf116.js';
4
+ import { G as Generate } from './generate-c1897e92.js';
5
5
  import './bcm-1571bb45.js';
6
6
  import { S as StringHelper } from './string-helper-5630fd9a.js';
7
7
  import { g as getPlacement, s as setPosition } from './popover-placement-b9199a13.js';