intelliwaketssveltekitv25 0.1.113 → 0.1.114
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
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
bodyClass = '',
|
|
43
43
|
toggleClass = '',
|
|
44
44
|
controlClass = '',
|
|
45
|
+
inputClass = '',
|
|
45
46
|
parentDivElement = null,
|
|
46
47
|
form = undefined
|
|
47
48
|
}: {
|
|
@@ -77,6 +78,7 @@
|
|
|
77
78
|
bodyClass?: string
|
|
78
79
|
toggleClass?: string
|
|
79
80
|
controlClass?: string
|
|
81
|
+
inputClass?: string
|
|
80
82
|
parentDivElement?: HTMLDivElement | null
|
|
81
83
|
form?: string | undefined
|
|
82
84
|
} = $props()
|
|
@@ -317,7 +319,7 @@
|
|
|
317
319
|
autocomplete="off"
|
|
318
320
|
bind:this={elInput}
|
|
319
321
|
bind:value={searchValue}
|
|
320
|
-
class=
|
|
322
|
+
class="noFormat flex grow-1 m-1 ring-0 focus:ring-0 outline-0 focus:outline-0 min-w-[3em] w-[3em] border-none p-0 {inputClass}"
|
|
321
323
|
onkeydown={onKeyPress} />
|
|
322
324
|
{/if}
|
|
323
325
|
</div>
|
package/dist/Search.svelte
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
<script lang='ts'>
|
|
2
2
|
import { selectOnFocus } from './Functions'
|
|
3
3
|
import { type ActionArray, useActions } from './useActions'
|
|
4
|
+
import type { HTMLInputAttributes } from 'svelte/elements'
|
|
4
5
|
|
|
5
6
|
let {
|
|
6
7
|
id = undefined,
|
|
@@ -15,7 +16,7 @@
|
|
|
15
16
|
onChange = () => {
|
|
16
17
|
},
|
|
17
18
|
...restProps
|
|
18
|
-
}: {
|
|
19
|
+
}: HTMLInputAttributes & {
|
|
19
20
|
id?: string | undefined
|
|
20
21
|
value?: string
|
|
21
22
|
use?: ActionArray
|
package/dist/Search.svelte.d.ts
CHANGED