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 type { I_TableRowDropDetails } from '~/components/templates/lib/models/interfaces'
2
- import type { I_InternalLaunchesTableItem } from '~/store/modules/inventory/modules/vm/modules/configure/lib/models/scheduledTasks/interfaces'
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 Omit<I_TableRowDropDetails, 'value'> {
6
- value: string | I_InternalLaunchesTableItem[]
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
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.5.432",
4
+ "version": "1.5.434",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",