intelliwaketssveltekitv25 0.1.25 → 0.1.27
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/DropDown.svelte
CHANGED
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
hidden = false,
|
|
23
23
|
hideEmptyDDActions = false,
|
|
24
24
|
button = undefined,
|
|
25
|
+
verbose = false,
|
|
25
26
|
actions = undefined
|
|
26
27
|
}: {
|
|
27
28
|
show?: boolean
|
|
@@ -40,6 +41,7 @@
|
|
|
40
41
|
hidden?: boolean
|
|
41
42
|
hideEmptyDDActions?: boolean
|
|
42
43
|
button?: Snippet | undefined
|
|
44
|
+
verbose?: boolean
|
|
43
45
|
actions?: Snippet | undefined
|
|
44
46
|
} = $props()
|
|
45
47
|
|
|
@@ -71,7 +73,8 @@
|
|
|
71
73
|
}
|
|
72
74
|
|
|
73
75
|
$effect(() => {
|
|
74
|
-
if (show) {/*No Effect*/
|
|
76
|
+
if (show) {/*No Effect*/
|
|
77
|
+
}
|
|
75
78
|
setKeystrokeSelectIndex(null)
|
|
76
79
|
if (svgElement && windowH) {
|
|
77
80
|
const svgRect = svgElement?.getBoundingClientRect()
|
|
@@ -229,6 +232,7 @@
|
|
|
229
232
|
hidden={hidden || (hideEmptyDDActions && !visibleDDActions.length)}
|
|
230
233
|
toggleClass={controlClass}
|
|
231
234
|
onkeydown={keyDownMenu}
|
|
235
|
+
{verbose}
|
|
232
236
|
{disabled}>
|
|
233
237
|
{#snippet toggle()}
|
|
234
238
|
<button
|