@fto-consult/expo-ui 6.74.3 → 6.74.4
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.
package/package.json
CHANGED
@@ -186,7 +186,10 @@ export default class TableDataScreenComponent extends FormDataScreen{
|
|
186
186
|
return isObj(permsR) ? extendObj({},ePerms,permsR) : ePerms;
|
187
187
|
}
|
188
188
|
getRenderedActionPrefix (){}
|
189
|
-
renderActions(){
|
189
|
+
renderActions(args,...rest){
|
190
|
+
if(typeof this.props.renderActions =="function"){
|
191
|
+
return this.props.renderActions(args,...rest);
|
192
|
+
}
|
190
193
|
return null;
|
191
194
|
}
|
192
195
|
isLoading(){
|