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.
@@ -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
@@ -17,6 +17,7 @@ type $$ComponentProps = {
17
17
  hidden?: boolean;
18
18
  hideEmptyDDActions?: boolean;
19
19
  button?: Snippet | undefined;
20
+ verbose?: boolean;
20
21
  actions?: Snippet | undefined;
21
22
  };
22
23
  declare const DropDown: import("svelte").Component<$$ComponentProps, {}, "show">;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "intelliwaketssveltekitv25",
3
- "version": "0.1.25",
3
+ "version": "0.1.27",
4
4
  "exports": {
5
5
  ".": {
6
6
  "types": "./dist/index.d.ts",