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.
@@ -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 type='text'
306
+ <input {id}
307
+ type='text'
305
308
  use:useActions={use}
306
309
  tabindex={-1}
307
310
  {placeholder}
@@ -2,6 +2,7 @@ import { type TGenericMultiSelect } from './Definitions';
2
2
  import { type ActionArray } from './useActions';
3
3
  declare class __sveltets_Render<T extends TGenericMultiSelect> {
4
4
  props(): {
5
+ id?: string;
5
6
  show?: boolean;
6
7
  use?: ActionArray;
7
8
  possibles: T[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "intelliwaketssveltekitv25",
3
- "version": "0.1.63",
3
+ "version": "0.1.64",
4
4
  "exports": {
5
5
  ".": {
6
6
  "types": "./dist/index.d.ts",