bfg-common 1.5.432 → 1.5.434
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.
@@ -39,3 +39,19 @@ export interface UI_I_ColumnKey {
|
|
39
39
|
|
40
40
|
export interface UI_ColumnSettingsStrategy
|
41
41
|
extends UI_I_ArbitraryObject<number[]> {}
|
42
|
+
|
43
|
+
|
44
|
+
export interface UI_I_TableRowDropDetails<T = string> {
|
45
|
+
id: number | string
|
46
|
+
text: string
|
47
|
+
value: T
|
48
|
+
iconClassName?: string
|
49
|
+
nav?: string
|
50
|
+
type?: string
|
51
|
+
isIconSvg?: boolean
|
52
|
+
lastChild?: boolean
|
53
|
+
isLink?: boolean
|
54
|
+
isRow?: boolean
|
55
|
+
isList?: boolean
|
56
|
+
testId?: string
|
57
|
+
}
|
@@ -1,10 +1,10 @@
|
|
1
|
-
import
|
2
|
-
import type {
|
1
|
+
import { UI_I_TableRowDropDetails } from '~/components/atoms/table/dataGrid/lib/models/interfaces'
|
2
|
+
import type { UI_I_ScheduledTasksTableItem } from '~/components/common/pages/scheduledTasks/lib/models/interfaces'
|
3
3
|
|
4
4
|
export interface UI_I_ScheduleTableRowDetails
|
5
|
-
extends
|
6
|
-
|
7
|
-
}
|
5
|
+
extends UI_I_TableRowDropDetails<
|
6
|
+
string | UI_I_ScheduledTasksTableItem['last_5_run']
|
7
|
+
> {}
|
8
8
|
|
9
9
|
// export interface I_ScheduledTaskTableItem extends API_I_ScheduledTaskTableItem {
|
10
10
|
// type: T_ScheduledTasksActionsType
|