bfg-common 1.4.495 → 1.4.497
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/StatusContent.vue +4 -2
- package/components/common/pages/home/headline/Headline.vue +1 -1
- package/components/common/pages/home/headline/lib/config/panelTabList.ts +1 -1
- package/components/common/pages/home/widgets/Widgets.vue +1 -1
- package/components/common/pages/home/widgets/WidgetsNew.vue +1 -1
- package/components/common/pages/home/widgets/WidgetsOld.vue +1 -1
- package/components/common/pages/home/widgets/hosts/Hosts.vue +1 -1
- package/components/common/pages/home/widgets/hosts/HostsOld.vue +1 -1
- package/components/common/pages/home/widgets/services/Services.vue +1 -1
- package/components/common/pages/home/widgets/services/ServicesNew.vue +1 -1
- package/components/common/pages/home/widgets/services/ServicesOld.vue +1 -1
- package/components/common/pages/home/widgets/services/lib/config/config.ts +1 -1
- package/components/common/pages/home/widgets/services/table/Table.vue +1 -1
- package/components/common/pages/home/widgets/services/table/lib/config/config.ts +1 -1
- package/components/common/pages/home/widgets/vms/Vms.vue +1 -1
- package/components/common/pages/home/widgets/vms/VmsOld.vue +1 -1
- package/components/common/pages/home/widgets/warnings/Warnings.vue +1 -1
- package/components/common/pages/home/widgets/warnings/WarningsNew.vue +1 -1
- package/components/common/pages/home/widgets/warnings/WarningsOld.vue +1 -1
- package/components/common/pages/home/widgets/warnings/lib/config/config.ts +1 -1
- package/components/common/pages/home/widgets/warnings/table/Table.vue +1 -1
- package/components/common/pages/home/widgets/warnings/table/lib/config/config.ts +1 -1
- package/package.json +1 -1
- /package/components/common/{home → pages/home}/lib/models/interfaces.ts +0 -0
|
@@ -4,14 +4,16 @@
|
|
|
4
4
|
<h3 class="entity-status-item-value">
|
|
5
5
|
{{ text }}
|
|
6
6
|
</h3>
|
|
7
|
-
<div class="entity-status-item-status">
|
|
7
|
+
<div class="entity-status-item-status">
|
|
8
|
+
{{ localization.common[value] }}
|
|
9
|
+
</div>
|
|
8
10
|
</div>
|
|
9
11
|
</div>
|
|
10
12
|
</template>
|
|
11
13
|
|
|
12
14
|
<script setup lang="ts">
|
|
13
15
|
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
14
|
-
import type { UI_I_Card } from '~/components/common/home/lib/models/interfaces'
|
|
16
|
+
import type { UI_I_Card } from '~/components/common/pages/home/lib/models/interfaces'
|
|
15
17
|
|
|
16
18
|
const props = defineProps<{
|
|
17
19
|
items: UI_I_Card
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
</template>
|
|
17
17
|
|
|
18
18
|
<script lang="ts" setup>
|
|
19
|
-
import type { UI_I_ZoneList } from '~/components/common/home/lib/models/interfaces'
|
|
19
|
+
import type { UI_I_ZoneList } from '~/components/common/pages/home/lib/models/interfaces'
|
|
20
20
|
import type { UI_I_Option } from '~/components/atoms/select/lib/models/interfaces'
|
|
21
21
|
import type { UI_T_Project } from '~/lib/models/types'
|
|
22
22
|
import { getZoneOptionItemsFunc } from '~/components/common/pages/home/headline/lib/config/panelTabList'
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { UI_I_ZoneList } from '~/components/common/home/lib/models/interfaces'
|
|
1
|
+
import type { UI_I_ZoneList } from '~/components/common/pages/home/lib/models/interfaces'
|
|
2
2
|
import type { UI_I_Option } from '~/components/atoms/select/lib/models/interfaces'
|
|
3
3
|
export const getZoneOptionItemsFunc = (list: UI_I_ZoneList[]): UI_I_Option[] => {
|
|
4
4
|
return list.map((zone: UI_I_ZoneList) => {
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
</template>
|
|
13
13
|
|
|
14
14
|
<script lang="ts" setup>
|
|
15
|
-
import type { UI_I_Hosts } from '~/components/common/home/lib/models/interfaces'
|
|
15
|
+
import type { UI_I_Hosts } from '~/components/common/pages/home/lib/models/interfaces'
|
|
16
16
|
|
|
17
17
|
const props = defineProps<{
|
|
18
18
|
hosts: UI_I_Hosts
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
<script lang="ts" setup>
|
|
16
16
|
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
17
|
-
import type { UI_I_Hosts } from '~/components/common/home/lib/models/interfaces'
|
|
17
|
+
import type { UI_I_Hosts } from '~/components/common/pages/home/lib/models/interfaces'
|
|
18
18
|
const props = defineProps<{
|
|
19
19
|
hosts: UI_I_Hosts
|
|
20
20
|
totalHosts: number
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
</template>
|
|
13
13
|
|
|
14
14
|
<script lang="ts" setup>
|
|
15
|
-
import type { UI_I_Service } from '~/components/common/home/lib/models/interfaces'
|
|
15
|
+
import type { UI_I_Service } from '~/components/common/pages/home/lib/models/interfaces'
|
|
16
16
|
|
|
17
17
|
const props = defineProps<{
|
|
18
18
|
services: UI_I_Service[]
|
|
@@ -41,7 +41,7 @@ import type {
|
|
|
41
41
|
UI_I_DataTableHeader,
|
|
42
42
|
UI_I_DataTableBody,
|
|
43
43
|
} from '~/node_modules/bfg-uikit/components/ui/dataTable/models/interfaces'
|
|
44
|
-
import type { UI_I_Service } from '~/components/common/home/lib/models/interfaces'
|
|
44
|
+
import type { UI_I_Service } from '~/components/common/pages/home/lib/models/interfaces'
|
|
45
45
|
import {
|
|
46
46
|
options,
|
|
47
47
|
getHeaderDataFunc,
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
<script lang="ts" setup>
|
|
17
17
|
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
18
|
-
import type { UI_I_Service } from '~/components/common/home/lib/models/interfaces'
|
|
18
|
+
import type { UI_I_Service } from '~/components/common/pages/home/lib/models/interfaces'
|
|
19
19
|
|
|
20
20
|
const props = defineProps<{
|
|
21
21
|
services: UI_I_Service[]
|
|
@@ -5,7 +5,7 @@ import type {
|
|
|
5
5
|
UI_I_DataTableHeader,
|
|
6
6
|
} from '~/node_modules/bfg-uikit/components/ui/dataTable/models/interfaces'
|
|
7
7
|
import { UI_E_RecentTaskStatus } from '~/lib/models/store/tasks/enums'
|
|
8
|
-
import type { UI_I_Service } from '~/components/common/home/lib/models/interfaces'
|
|
8
|
+
import type { UI_I_Service } from '~/components/common/pages/home/lib/models/interfaces'
|
|
9
9
|
import {
|
|
10
10
|
E_RTaskChipColor,
|
|
11
11
|
E_RTaskStatusIcon,
|
|
@@ -32,7 +32,7 @@ import type {
|
|
|
32
32
|
} from '~/components/atoms/table/dataGrid/lib/models/interfaces'
|
|
33
33
|
import type { UI_T_SelectedRow } from '~/components/atoms/table/dataGrid/lib/models/types'
|
|
34
34
|
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
35
|
-
import type { UI_I_Service } from '~/components/common/home/lib/models/interfaces'
|
|
35
|
+
import type { UI_I_Service } from '~/components/common/pages/home/lib/models/interfaces'
|
|
36
36
|
import * as table from '~/components/common/pages/home/widgets/services/table/lib/config/config'
|
|
37
37
|
|
|
38
38
|
const props = defineProps<{
|
|
@@ -5,7 +5,7 @@ import type {
|
|
|
5
5
|
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
6
6
|
import { constructHeadItem } from '~/components/atoms/table/dataGrid/lib/utils/constructDataTable'
|
|
7
7
|
import type { UI_T_ServiceTableKeysTuple } from '~/components/common/pages/home/widgets/services/table/lib/models/types'
|
|
8
|
-
import type { UI_I_Service } from '~/components/common/home/lib/models/interfaces'
|
|
8
|
+
import type { UI_I_Service } from '~/components/common/pages/home/lib/models/interfaces'
|
|
9
9
|
|
|
10
10
|
export const servicesTableKeys: UI_T_ServiceTableKeysTuple = [
|
|
11
11
|
'item',
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
</template>
|
|
13
13
|
|
|
14
14
|
<script lang="ts" setup>
|
|
15
|
-
import type { UI_I_Vms } from '~/components/common/home/lib/models/interfaces'
|
|
15
|
+
import type { UI_I_Vms } from '~/components/common/pages/home/lib/models/interfaces'
|
|
16
16
|
|
|
17
17
|
const props = defineProps<{
|
|
18
18
|
vms: UI_I_Vms
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
<script lang="ts" setup>
|
|
16
16
|
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
17
|
-
import type { UI_I_Vms } from '~/components/common/home/lib/models/interfaces'
|
|
17
|
+
import type { UI_I_Vms } from '~/components/common/pages/home/lib/models/interfaces'
|
|
18
18
|
const props = defineProps<{
|
|
19
19
|
vms: UI_I_Vms
|
|
20
20
|
totalVms: number
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
</template>
|
|
13
13
|
|
|
14
14
|
<script lang="ts" setup>
|
|
15
|
-
import type { UI_I_Alert } from '~/components/common/home/lib/models/interfaces'
|
|
15
|
+
import type { UI_I_Alert } from '~/components/common/pages/home/lib/models/interfaces'
|
|
16
16
|
|
|
17
17
|
const props = defineProps<{
|
|
18
18
|
alerts: UI_I_Alert[]
|
|
@@ -41,7 +41,7 @@ import type {
|
|
|
41
41
|
UI_I_DataTableHeader,
|
|
42
42
|
UI_I_DataTableBody,
|
|
43
43
|
} from '~/node_modules/bfg-uikit/components/ui/dataTable/models/interfaces'
|
|
44
|
-
import type { UI_I_Alert } from '~/components/common/home/lib/models/interfaces'
|
|
44
|
+
import type { UI_I_Alert } from '~/components/common/pages/home/lib/models/interfaces'
|
|
45
45
|
import {
|
|
46
46
|
options,
|
|
47
47
|
getHeaderDataFunc,
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
<script lang="ts" setup>
|
|
20
20
|
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
21
|
-
import type { UI_I_Alert } from '~/components/common/home/lib/models/interfaces'
|
|
21
|
+
import type { UI_I_Alert } from '~/components/common/pages/home/lib/models/interfaces'
|
|
22
22
|
|
|
23
23
|
const props = defineProps<{
|
|
24
24
|
alerts: UI_I_Alert[]
|
|
@@ -4,7 +4,7 @@ import type {
|
|
|
4
4
|
UI_I_DataTableOptions,
|
|
5
5
|
UI_I_DataTableHeader,
|
|
6
6
|
} from '~/node_modules/bfg-uikit/components/ui/dataTable/models/interfaces'
|
|
7
|
-
import type { UI_I_Alert } from '~/components/common/home/lib/models/interfaces'
|
|
7
|
+
import type { UI_I_Alert } from '~/components/common/pages/home/lib/models/interfaces'
|
|
8
8
|
import { UI_E_TabsByTypeEnum } from '~/components/common/pages/home/widgets/warnings/table/lib/models/enums'
|
|
9
9
|
import { E_NodeIconsByState } from '~/lib/models/enums'
|
|
10
10
|
|
|
@@ -50,7 +50,7 @@ import type {
|
|
|
50
50
|
} from '~/components/atoms/table/dataGrid/lib/models/interfaces'
|
|
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
|
-
import type { UI_I_Alert } from '~/components/common/home/lib/models/interfaces'
|
|
53
|
+
import type { UI_I_Alert } from '~/components/common/pages/home/lib/models/interfaces'
|
|
54
54
|
import type { UI_I_AlertData } from '~/components/common/pages/home/widgets/warnings/table/lib/models/interfaces'
|
|
55
55
|
import * as table from '~/components/common/pages/home/widgets//warnings/table/lib/config/config'
|
|
56
56
|
|
|
@@ -3,7 +3,7 @@ import type {
|
|
|
3
3
|
UI_I_BodyItem,
|
|
4
4
|
} from '~/components/atoms/table/dataGrid/lib/models/interfaces'
|
|
5
5
|
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
6
|
-
import type { UI_I_Alert } from '~/components/common/home/lib/models/interfaces'
|
|
6
|
+
import type { UI_I_Alert } from '~/components/common/pages/home/lib/models/interfaces'
|
|
7
7
|
import { UI_T_WarningsTableKeysTuple } from '~/components/common/pages/home/widgets/warnings/table/lib/models/types'
|
|
8
8
|
import type { UI_I_AlertData } from '~/components/common/pages/home/widgets/warnings/table/lib/models/interfaces'
|
|
9
9
|
import { UI_E_TabsByTypeEnum } from '~/components/common/pages/home/widgets/warnings/table/lib/models/enums'
|
package/package.json
CHANGED
|
File without changes
|