bfg-common 1.4.490 → 1.4.492
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/components/common/pages/home/widgets/hosts/HostsOld.vue +1 -1
- package/components/common/pages/home/widgets/services/ServicesNew.vue +1 -1
- package/components/common/pages/home/widgets/vms/VmsOld.vue +1 -1
- package/components/common/pages/home/widgets/warnings/WarningsNew.vue +1 -0
- package/components/common/pages/home/widgets/warnings/WarningsOld.vue +1 -1
- package/components/common/{home/alertsTable/AlertsTable.vue → pages/home/widgets/warnings/table/Table.vue} +2 -2
- package/components/common/{home/alertsTable → pages/home/widgets/warnings/table}/lib/config/config.ts +16 -4
- package/components/common/{home/alertsTable → pages/home/widgets/warnings/table}/lib/models/enums.ts +1 -1
- package/components/common/{home/alertsTable → pages/home/widgets/warnings/table}/lib/models/interfaces.ts +2 -2
- package/package.json +1 -1
- /package/components/common/{home → pages/home}/StatusContent.vue +0 -0
- /package/components/common/{home/alertsTable → pages/home/widgets/warnings/table}/lib/models/types.ts +0 -0
|
@@ -51,8 +51,8 @@ import type {
|
|
|
51
51
|
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
52
52
|
import type { UI_T_SelectedRow } from '~/components/atoms/table/dataGrid/lib/models/types'
|
|
53
53
|
import type { UI_I_Alert } from '~/components/common/home/lib/models/interfaces'
|
|
54
|
-
import type { UI_I_AlertData } from '~/components/common/home/
|
|
55
|
-
import * as table from '~/components/common/home/
|
|
54
|
+
import type { UI_I_AlertData } from '~/components/common/pages/home/widgets/warnings/table/lib/models/interfaces'
|
|
55
|
+
import * as table from '~/components/common/pages/home/widgets//warnings/table/lib/config/config'
|
|
56
56
|
|
|
57
57
|
const props = defineProps<{
|
|
58
58
|
dataTable: UI_I_Alert[]
|
|
@@ -5,8 +5,8 @@ import type {
|
|
|
5
5
|
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
6
6
|
import type { UI_T_AlertColumnKeys } from '~/components/common/home/lib/models/types'
|
|
7
7
|
import type { UI_I_Alert } from '~/components/common/home/lib/models/interfaces'
|
|
8
|
-
import type { UI_I_AlertData } from '~/components/common/home/
|
|
9
|
-
import { UI_E_TabsByTypeEnum } from '~/components/common/home/
|
|
8
|
+
import type { UI_I_AlertData } from '~/components/common/pages/home/widgets/warnings/table/lib/models/interfaces'
|
|
9
|
+
import { UI_E_TabsByTypeEnum } from '~/components/common/pages/home/widgets/warnings/table/lib/models/enums'
|
|
10
10
|
import { constructHeadItem } from '~/components/atoms/table/dataGrid/lib/utils/constructDataTable'
|
|
11
11
|
|
|
12
12
|
export const alertsTableKeys: UI_T_AlertColumnKeys[] = [
|
|
@@ -20,8 +20,20 @@ const getItems = (
|
|
|
20
20
|
): [string, boolean, string, string, string][] => {
|
|
21
21
|
return [
|
|
22
22
|
[localization.common.item, true, '34%', alertsTableKeys[0], ''],
|
|
23
|
-
[
|
|
24
|
-
|
|
23
|
+
[
|
|
24
|
+
localization.common.alerts,
|
|
25
|
+
true,
|
|
26
|
+
'33%',
|
|
27
|
+
alertsTableKeys[1],
|
|
28
|
+
'error-outline',
|
|
29
|
+
],
|
|
30
|
+
[
|
|
31
|
+
localization.common.warnings,
|
|
32
|
+
true,
|
|
33
|
+
'33%',
|
|
34
|
+
alertsTableKeys[2],
|
|
35
|
+
'warning-outline',
|
|
36
|
+
],
|
|
25
37
|
]
|
|
26
38
|
}
|
|
27
39
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { UI_T_NavNodes } from '~/components/common/home/
|
|
1
|
+
import type { UI_T_NavNodes } from '~/components/common/pages/home/widgets/warnings/table/lib/models/types'
|
|
2
2
|
import type { UI_I_TreeNode } from '~/components/common/recursionTree/lib/models/interfaces'
|
|
3
|
-
import type { UI_T_InventoryAllTreeName } from '~/components/common/home/
|
|
3
|
+
import type { UI_T_InventoryAllTreeName } from '~/components/common/pages/home/widgets/warnings/table/lib/models/types'
|
|
4
4
|
|
|
5
5
|
export interface UI_I_AlertData {
|
|
6
6
|
iconClassName: string
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|