@greghowe79/the-lib 0.3.8 → 0.3.9

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.
@@ -45,7 +45,8 @@ const NavigationMenu = qwik.component$(({ ariaLabel, logoComponent, listItems, a
45
45
  label: action.label ?? "",
46
46
  onClick$: action.onClick$,
47
47
  icon: action.icon,
48
- variant: action.variant
48
+ variant: action.variant,
49
+ ariaLabel: action.ariaLabel
49
50
  }, action.id);
50
51
  })
51
52
  })
@@ -43,7 +43,8 @@ const NavigationMenu = component$(({ ariaLabel, logoComponent, listItems, action
43
43
  label: action.label ?? "",
44
44
  onClick$: action.onClick$,
45
45
  icon: action.icon,
46
- variant: action.variant
46
+ variant: action.variant,
47
+ ariaLabel: action.ariaLabel
47
48
  }, action.id);
48
49
  })
49
50
  })
@@ -14,6 +14,7 @@ export interface NavigationMenuProps {
14
14
  onClick$?: QRL<() => void> | QRL<() => boolean> | QRL<() => Promise<void>>;
15
15
  icon?: JSXOutput | Component<unknown>;
16
16
  variant?: ButtonVariant;
17
+ ariaLabel?: string;
17
18
  }>;
18
19
  }
19
20
  export declare const NavigationMenu: Component<NavigationMenuProps>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@greghowe79/the-lib",
3
- "version": "0.3.8",
3
+ "version": "0.3.9",
4
4
  "description": "Collection of fast components for Qwik",
5
5
  "main": "./lib/index.qwik.mjs",
6
6
  "qwik": "./lib/index.qwik.mjs",