bfg-common 1.5.678 → 1.5.679
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.
|
@@ -13,7 +13,11 @@
|
|
|
13
13
|
@collapse-panel="onCollapseBottomPanel"
|
|
14
14
|
@sort-recent-task="emits('sort-recent-task', $event)"
|
|
15
15
|
@pagination-recent-task="emits('pagination-recent-task', $event)"
|
|
16
|
-
|
|
16
|
+
>
|
|
17
|
+
<template #alarms>
|
|
18
|
+
<slot name="alarms" />
|
|
19
|
+
</template>
|
|
20
|
+
</component>
|
|
17
21
|
</template>
|
|
18
22
|
|
|
19
23
|
<script setup lang="ts">
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import type { UI_T_NodeType } from '~/components/common/pages/home/lib/models/types'
|
|
2
|
-
import type { UI_T_NavNodes } from '~/lib/models/types'
|
|
3
|
-
|
|
4
|
-
interface UI_I_TargetData {
|
|
5
|
-
id: string
|
|
6
|
-
type: UI_T_NodeType
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
export interface UI_I_DataTargetForTable extends UI_I_TargetData {
|
|
10
|
-
nav: UI_T_NavNodes
|
|
11
|
-
isLink: boolean
|
|
12
|
-
iconClassName: string
|
|
13
|
-
testId?: string
|
|
14
|
-
}
|
|
1
|
+
import type { UI_T_NodeType } from '~/components/common/pages/home/lib/models/types'
|
|
2
|
+
import type { UI_T_NavNodes } from '~/lib/models/types'
|
|
3
|
+
|
|
4
|
+
interface UI_I_TargetData {
|
|
5
|
+
id: string
|
|
6
|
+
type: UI_T_NodeType
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export interface UI_I_DataTargetForTable extends UI_I_TargetData {
|
|
10
|
+
nav: UI_T_NavNodes
|
|
11
|
+
isLink: boolean
|
|
12
|
+
iconClassName: string
|
|
13
|
+
testId?: string
|
|
14
|
+
}
|