@greghowe79/the-lib 2.4.8 → 2.4.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.
@@ -75,7 +75,7 @@ const NavigationMenu = qwik.component$(({ ariaLabel, logoComponent, listItems, a
75
75
  actions && actions.length > 0 && /* @__PURE__ */ jsxRuntime.jsx("li", {
76
76
  class: "mobile-only",
77
77
  children: actions.map((action) => {
78
- const { id, label, onClick$, variant, ariaLabel: ariaLabel2, icon, customColors, isLoading, disabled } = action;
78
+ const { id, label, onClick$, variant, ariaLabel: ariaLabel2, icon, customColors } = action;
79
79
  return /* @__PURE__ */ jsxRuntime.jsx(button.Button, {
80
80
  id,
81
81
  label: label ?? "",
@@ -86,9 +86,7 @@ const NavigationMenu = qwik.component$(({ ariaLabel, logoComponent, listItems, a
86
86
  icon,
87
87
  variant,
88
88
  ariaLabel: ariaLabel2,
89
- customColors,
90
- isLoading,
91
- disabled
89
+ customColors
92
90
  }, id);
93
91
  })
94
92
  })
@@ -106,9 +104,7 @@ const NavigationMenu = qwik.component$(({ ariaLabel, logoComponent, listItems, a
106
104
  icon: action.icon,
107
105
  variant: action.variant,
108
106
  ariaLabel: action.ariaLabel,
109
- customColors: action.customColors,
110
- isLoading: action.isLoading,
111
- disabled: action.disabled
107
+ customColors: action.customColors
112
108
  }, action.id);
113
109
  })
114
110
  })
@@ -73,7 +73,7 @@ const NavigationMenu = component$(({ ariaLabel, logoComponent, listItems, action
73
73
  actions && actions.length > 0 && /* @__PURE__ */ jsx("li", {
74
74
  class: "mobile-only",
75
75
  children: actions.map((action) => {
76
- const { id, label, onClick$, variant, ariaLabel: ariaLabel2, icon, customColors, isLoading, disabled } = action;
76
+ const { id, label, onClick$, variant, ariaLabel: ariaLabel2, icon, customColors } = action;
77
77
  return /* @__PURE__ */ jsx(Button, {
78
78
  id,
79
79
  label: label ?? "",
@@ -84,9 +84,7 @@ const NavigationMenu = component$(({ ariaLabel, logoComponent, listItems, action
84
84
  icon,
85
85
  variant,
86
86
  ariaLabel: ariaLabel2,
87
- customColors,
88
- isLoading,
89
- disabled
87
+ customColors
90
88
  }, id);
91
89
  })
92
90
  })
@@ -104,9 +102,7 @@ const NavigationMenu = component$(({ ariaLabel, logoComponent, listItems, action
104
102
  icon: action.icon,
105
103
  variant: action.variant,
106
104
  ariaLabel: action.ariaLabel,
107
- customColors: action.customColors,
108
- isLoading: action.isLoading,
109
- disabled: action.disabled
105
+ customColors: action.customColors
110
106
  }, action.id);
111
107
  })
112
108
  })
@@ -19,8 +19,6 @@ export interface NavigationMenuProps {
19
19
  variant?: ButtonVariant;
20
20
  ariaLabel?: string;
21
21
  customColors?: CustomColors;
22
- isLoading?: boolean;
23
- disabled?: boolean;
24
22
  }>;
25
23
  }
26
24
  export declare const NavigationMenu: Component<NavigationMenuProps>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@greghowe79/the-lib",
3
- "version": "2.4.8",
3
+ "version": "2.4.9",
4
4
  "description": "Collection of fast components for Qwik",
5
5
  "main": "./lib/index.qwik.mjs",
6
6
  "qwik": "./lib/index.qwik.mjs",