@greghowe79/the-lib 2.4.7 → 2.4.8
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 } = action;
|
|
78
|
+
const { id, label, onClick$, variant, ariaLabel: ariaLabel2, icon, customColors, isLoading, disabled } = action;
|
|
79
79
|
return /* @__PURE__ */ jsxRuntime.jsx(button.Button, {
|
|
80
80
|
id,
|
|
81
81
|
label: label ?? "",
|
|
@@ -86,7 +86,9 @@ const NavigationMenu = qwik.component$(({ ariaLabel, logoComponent, listItems, a
|
|
|
86
86
|
icon,
|
|
87
87
|
variant,
|
|
88
88
|
ariaLabel: ariaLabel2,
|
|
89
|
-
customColors
|
|
89
|
+
customColors,
|
|
90
|
+
isLoading,
|
|
91
|
+
disabled
|
|
90
92
|
}, id);
|
|
91
93
|
})
|
|
92
94
|
})
|
|
@@ -104,7 +106,9 @@ const NavigationMenu = qwik.component$(({ ariaLabel, logoComponent, listItems, a
|
|
|
104
106
|
icon: action.icon,
|
|
105
107
|
variant: action.variant,
|
|
106
108
|
ariaLabel: action.ariaLabel,
|
|
107
|
-
customColors: action.customColors
|
|
109
|
+
customColors: action.customColors,
|
|
110
|
+
isLoading: action.isLoading,
|
|
111
|
+
disabled: action.disabled
|
|
108
112
|
}, action.id);
|
|
109
113
|
})
|
|
110
114
|
})
|
|
@@ -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 } = action;
|
|
76
|
+
const { id, label, onClick$, variant, ariaLabel: ariaLabel2, icon, customColors, isLoading, disabled } = action;
|
|
77
77
|
return /* @__PURE__ */ jsx(Button, {
|
|
78
78
|
id,
|
|
79
79
|
label: label ?? "",
|
|
@@ -84,7 +84,9 @@ const NavigationMenu = component$(({ ariaLabel, logoComponent, listItems, action
|
|
|
84
84
|
icon,
|
|
85
85
|
variant,
|
|
86
86
|
ariaLabel: ariaLabel2,
|
|
87
|
-
customColors
|
|
87
|
+
customColors,
|
|
88
|
+
isLoading,
|
|
89
|
+
disabled
|
|
88
90
|
}, id);
|
|
89
91
|
})
|
|
90
92
|
})
|
|
@@ -102,7 +104,9 @@ const NavigationMenu = component$(({ ariaLabel, logoComponent, listItems, action
|
|
|
102
104
|
icon: action.icon,
|
|
103
105
|
variant: action.variant,
|
|
104
106
|
ariaLabel: action.ariaLabel,
|
|
105
|
-
customColors: action.customColors
|
|
107
|
+
customColors: action.customColors,
|
|
108
|
+
isLoading: action.isLoading,
|
|
109
|
+
disabled: action.disabled
|
|
106
110
|
}, action.id);
|
|
107
111
|
})
|
|
108
112
|
})
|