@portnet/ui 0.1.10 → 0.1.11
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.
|
@@ -145,16 +145,17 @@ const PuiSearchPage = _ref2 => {
|
|
|
145
145
|
loadingPosition: "start",
|
|
146
146
|
children: "Rechercher"
|
|
147
147
|
})
|
|
148
|
-
}), additionalActions.map((actionItem, index) =>
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
148
|
+
}), additionalActions.map((actionItem, index) => {
|
|
149
|
+
console.log('Rendering action:', actionItem);
|
|
150
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_PuiGrid.default, {
|
|
151
|
+
item: true,
|
|
152
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_PuiButton.default, {
|
|
153
|
+
startIcon: actionItem.icon,
|
|
154
|
+
onClick: actionItem.action,
|
|
155
|
+
children: actionItem.name
|
|
156
|
+
})
|
|
157
|
+
}, index);
|
|
158
|
+
})]
|
|
158
159
|
}),
|
|
159
160
|
children: _children
|
|
160
161
|
})
|