@inceptionbg/iui 2.0.65 → 2.0.67
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/dist/index.d.ts +2 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -333,6 +333,8 @@ type ITableDataIconAction = {
|
|
|
333
333
|
};
|
|
334
334
|
interface ITableDataActions<T = unknown> {
|
|
335
335
|
hasEditAccess?: boolean;
|
|
336
|
+
editTooltip?: string;
|
|
337
|
+
deleteTooltip?: string;
|
|
336
338
|
additionalIconActions?: (item: T) => ITableDataIconAction[];
|
|
337
339
|
actions?: (item: T) => ITableDataAction[];
|
|
338
340
|
}
|