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.
@@ -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='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'
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>
@@ -34,6 +34,7 @@ declare class __sveltets_Render<T extends TGenericMultiSelect> {
34
34
  bodyClass?: string;
35
35
  toggleClass?: string;
36
36
  controlClass?: string;
37
+ inputClass?: string;
37
38
  parentDivElement?: HTMLDivElement | null;
38
39
  form?: string | undefined;
39
40
  };
@@ -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
@@ -1,5 +1,6 @@
1
1
  import { type ActionArray } from './useActions';
2
- type $$ComponentProps = {
2
+ import type { HTMLInputAttributes } from 'svelte/elements';
3
+ type $$ComponentProps = HTMLInputAttributes & {
3
4
  id?: string | undefined;
4
5
  value?: string;
5
6
  use?: ActionArray;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "intelliwaketssveltekitv25",
3
- "version": "0.1.113",
3
+ "version": "0.1.114",
4
4
  "exports": {
5
5
  ".": {
6
6
  "types": "./dist/index.d.ts",