@budibase/bbui 3.35.1 → 3.35.3

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@budibase/bbui",
3
3
  "description": "A UI solution used in the different Budibase projects.",
4
- "version": "3.35.1",
4
+ "version": "3.35.3",
5
5
  "license": "MPL-2.0",
6
6
  "module": "dist/bbui.mjs",
7
7
  "exports": {
@@ -103,5 +103,5 @@
103
103
  }
104
104
  }
105
105
  },
106
- "gitHead": "456c750d6bbffa0660dbf58bfbfe3ee7b56b2184"
106
+ "gitHead": "d5b05b266b9b7726bdcd7a9e7affb3330129805c"
107
107
  }
@@ -370,7 +370,7 @@
370
370
  on:mouseenter={e => onOptionMouseenter(e, option)}
371
371
  on:mouseleave={e => onOptionMouseleave(e, option)}
372
372
  class:is-disabled={!isOptionEnabled(option)}
373
- title={optionTooltip ?? undefined}
373
+ title={optionTooltip ?? getOptionLabel(option, idx)}
374
374
  >
375
375
  {#if optionIcon}
376
376
  <span class="option-extra icon">
@@ -19,7 +19,7 @@
19
19
  export let allowDuplicates = false
20
20
  export let maxItems: number | undefined = undefined
21
21
 
22
- let inputValue = ""
22
+ export let inputValue = ""
23
23
  let focused = false
24
24
  let inputEl: HTMLInputElement | null = null
25
25