intelliwaketssveltekitv25 0.1.63 → 0.1.64
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/MultiSelect.svelte
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
// eslint-disable-next-line no-undef
|
|
13
13
|
let {
|
|
14
|
+
id = undefined,
|
|
14
15
|
show = $bindable(false),
|
|
15
16
|
use = [],
|
|
16
17
|
possibles,
|
|
@@ -41,6 +42,7 @@
|
|
|
41
42
|
parentDivElement = null,
|
|
42
43
|
form = undefined
|
|
43
44
|
}: {
|
|
45
|
+
id?: string
|
|
44
46
|
show?: boolean
|
|
45
47
|
use?: ActionArray
|
|
46
48
|
possibles: T[]
|
|
@@ -301,7 +303,8 @@
|
|
|
301
303
|
</div>
|
|
302
304
|
{/each}
|
|
303
305
|
{#if !disable && (isMulti || !selected.length)}
|
|
304
|
-
<input
|
|
306
|
+
<input {id}
|
|
307
|
+
type='text'
|
|
305
308
|
use:useActions={use}
|
|
306
309
|
tabindex={-1}
|
|
307
310
|
{placeholder}
|