@greghowe79/the-lib 2.5.0 → 2.5.1

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.
@@ -88,7 +88,7 @@ const NavigationMenu = qwik.component$(({ ariaLabel, logoComponent, listItems, a
88
88
  ariaLabel: ariaLabel2,
89
89
  customColors,
90
90
  isLoading: isLoading && !!label,
91
- disabled: isLoading && !!label
91
+ disabled: isLoading
92
92
  }, id);
93
93
  })
94
94
  })
@@ -108,7 +108,7 @@ const NavigationMenu = qwik.component$(({ ariaLabel, logoComponent, listItems, a
108
108
  ariaLabel: action.ariaLabel,
109
109
  customColors: action.customColors,
110
110
  isLoading: isLoading && !!action.label,
111
- disabled: isLoading && !!action.label
111
+ disabled: isLoading
112
112
  }, action.id);
113
113
  })
114
114
  })
@@ -86,7 +86,7 @@ const NavigationMenu = component$(({ ariaLabel, logoComponent, listItems, action
86
86
  ariaLabel: ariaLabel2,
87
87
  customColors,
88
88
  isLoading: isLoading && !!label,
89
- disabled: isLoading && !!label
89
+ disabled: isLoading
90
90
  }, id);
91
91
  })
92
92
  })
@@ -106,7 +106,7 @@ const NavigationMenu = component$(({ ariaLabel, logoComponent, listItems, action
106
106
  ariaLabel: action.ariaLabel,
107
107
  customColors: action.customColors,
108
108
  isLoading: isLoading && !!action.label,
109
- disabled: isLoading && !!action.label
109
+ disabled: isLoading
110
110
  }, action.id);
111
111
  })
112
112
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@greghowe79/the-lib",
3
- "version": "2.5.0",
3
+ "version": "2.5.1",
4
4
  "description": "Collection of fast components for Qwik",
5
5
  "main": "./lib/index.qwik.mjs",
6
6
  "qwik": "./lib/index.qwik.mjs",