@greghowe79/the-lib 2.5.2 → 2.5.3

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