From 9927323a9d6dc28d35c07412df26202683efd036 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Fri, 22 Sep 2023 19:42:23 +0200 Subject: [PATCH] fix(core): update --- ts_web/00_commitinfo_data.ts | 2 +- ts_web/elements/dees-table.ts | 10 ++++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index aeb5465..30f5271 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@design.estate/dees-catalog', - version: '1.0.213', + version: '1.0.214', description: 'website for lossless.com' } diff --git a/ts_web/elements/dees-table.ts b/ts_web/elements/dees-table.ts index 0f8a2b1..69b8d76 100644 --- a/ts_web/elements/dees-table.ts +++ b/ts_web/elements/dees-table.ts @@ -57,10 +57,12 @@ export interface ITableAction { * @param itemArg * @returns */ - actionFunc: (optionsArg: { - item: T, - dataArray: T[], - }) => Promise; + actionFunc: (actionDataArg: ITableActionDataArg) => Promise; +} + +export interface ITableActionDataArg { + item: T, + dataArray: T[], } export type TDisplayFunction = (itemArg: T) => object;