bfg-common 1.5.516 → 1.5.517

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.
@@ -50,6 +50,7 @@
50
50
  import type { UI_I_WizardStep } from '~/node_modules/bfg-uikit/components/ui/wizard/lib/models/interfaces'
51
51
  import Wizard from '~/node_modules/bfg-uikit/components/ui/wizard/lib/utils/utils'
52
52
  import type { UI_I_ValidationReturn } from '~/node_modules/bfg-uikit/components/ui/wizard/lib/models/interfaces'
53
+ import type {UI_I_Localization} from "~/lib/models/interfaces";
53
54
  import {
54
55
  stepsSchemeInitial,
55
56
  stepsFunc,
@@ -71,7 +72,6 @@ import {
71
72
  checkConfiguration
72
73
  } from '~/components/common/pages/backups/modals/createBackup/lib/validation/validations'
73
74
  import type {UI_I_NameCheck} from "~/components/common/pages/backups/modals/restore/name/lib/models/interfaces";
74
- import type {UI_I_Localization} from "~/lib/models/interfaces";
75
75
  import type {UI_I_SelectInputItem} from "~/components/common/select/input/lib/models/interfaces";
76
76
  import type {UI_I_TableInfoItem} from "~/components/atoms/table/info/lib/models/interfaces";
77
77
 
@@ -12,8 +12,8 @@
12
12
 
13
13
  <script lang="ts" setup>
14
14
  import type { UI_I_ErrorFields } from '~/node_modules/bfg-uikit/components/ui/wizard/lib/models/interfaces'
15
- import type { UI_I_CreateBackupForm } from '~/components/common/pages/backups/modals/lib/models/interfaces'
16
15
  import type { UI_I_ArbitraryObject } from '~/lib/models/interfaces'
16
+ import type { UI_I_CreateBackupForm } from '~/components/common/pages/backups/modals/lib/models/interfaces'
17
17
 
18
18
  const model = defineModel<UI_I_CreateBackupForm>({ required: true })
19
19
  const props = defineProps<{
@@ -48,12 +48,12 @@ import type {
48
48
  UI_I_DataTableHeader
49
49
  } from '~/node_modules/bfg-uikit/components/ui/dataTable/models/interfaces'
50
50
  import type { UI_I_DataTableSkeleton } from '~/node_modules/bfg-uikit/components/ui/dataTable/models/interfaces'
51
+ import type { UI_I_Localization } from '~/lib/models/interfaces'
51
52
  import {
52
53
  getBodyDataFunc,
53
54
  getHeaderDataFunc,
54
55
  options
55
56
  } from '~/components/common/pages/backups/modals/createBackup/datastores/tableView/new/lib/config/table'
56
- import type { UI_I_Localization } from '~/lib/models/interfaces'
57
57
  import type {
58
58
  UI_I_BackupDatastoreTable
59
59
  } from "~/components/common/pages/backups/modals/lib/models/interfaces";
@@ -30,16 +30,16 @@
30
30
  </template>
31
31
 
32
32
  <script lang="ts" setup>
33
+ import type { UI_I_Localization } from '~/lib/models/interfaces'
34
+ import type {UI_I_Pagination} from "~/lib/models/table/interfaces";
33
35
  import type {
34
36
  UI_I_HeadItem,
35
37
  UI_I_ColumnKey,
36
38
  UI_I_BodyItem,
37
39
  } from '~/components/atoms/table/dataGrid/lib/models/interfaces'
38
- import type { UI_I_Localization } from '~/lib/models/interfaces'
39
40
  import type { UI_I_BackupDatastore } from '~/components/common/pages/backups/modals/lib/models/interfaces'
40
41
  import { itemsPerPage } from '~/components/atoms/table/dataGrid/lib/config/itemsPerPage'
41
42
  import * as table from '~/components/common/pages/backups/modals/createBackup/datastores/tableView/old/lib/config/table'
42
- import type {UI_I_Pagination} from "~/lib/models/table/interfaces";
43
43
 
44
44
  const props = defineProps<{
45
45
  dataTable: UI_I_BackupDatastore[]
@@ -1,9 +1,9 @@
1
+ import type { UI_I_Localization } from '~/lib/models/interfaces'
1
2
  import type {
2
3
  UI_I_HeadItem,
3
4
  UI_I_ColumnKey,
4
5
  UI_I_BodyItem,
5
6
  } from '~/components/atoms/table/dataGrid/lib/models/interfaces'
6
- import type { UI_I_Localization } from '~/lib/models/interfaces'
7
7
  import type { UI_I_BackupDatastore } from '~/components/common/pages/backups/modals/lib/models/interfaces'
8
8
  import {
9
9
  constructHeadItem,
@@ -35,12 +35,12 @@ import type {
35
35
  } from '~/node_modules/bfg-uikit/components/ui/dataTable/models/interfaces'
36
36
  import type { UI_I_DataTableSkeleton } from '~/node_modules/bfg-uikit/components/ui/dataTable/models/interfaces'
37
37
  import type { UI_I_Pvm } from '~/lib/models/store/vm/interfaces'
38
+ import type { UI_I_Localization } from '~/lib/models/interfaces'
38
39
  import {
39
40
  getBodyDataFunc,
40
41
  getHeaderDataFunc,
41
42
  options
42
43
  } from '~/components/common/pages/backups/modals/createBackup/disks/tableView/new/lib/config/table'
43
- import type { UI_I_Localization } from '~/lib/models/interfaces'
44
44
  import type {
45
45
  UI_I_CreateBackupFormDiskDevice
46
46
  } from '~/components/common/pages/backups/modals/lib/models/interfaces'
@@ -102,7 +102,7 @@ watch(
102
102
  return
103
103
  }
104
104
 
105
- bodyItems.value = getBodyDataFunc(newValue, localization.value, model.value)
105
+ bodyItems.value = getBodyDataFunc(newValue, model.value)
106
106
  },
107
107
  { deep: true, immediate: true }
108
108
  )
@@ -23,6 +23,7 @@
23
23
  </template>
24
24
 
25
25
  <script lang="ts" setup>
26
+ import type {UI_I_Pagination} from "~/lib/models/table/interfaces";
26
27
  import type {
27
28
  UI_I_HeadItem,
28
29
  UI_I_ColumnKey,
@@ -35,7 +36,6 @@ import type {
35
36
  } from "~/components/common/pages/backups/modals/lib/models/interfaces";
36
37
  import { itemsPerPage } from '~/components/atoms/table/dataGrid/lib/config/itemsPerPage'
37
38
  import * as table from '~/components/common/pages/backups/modals/createBackup/disks/tableView/old/lib/config/table'
38
- import type {UI_I_Pagination} from "~/lib/models/table/interfaces";
39
39
 
40
40
  const props = defineProps<{
41
41
  dataTable: UI_I_Pvm['disk_devices']
@@ -14,8 +14,8 @@
14
14
 
15
15
  <script lang="ts" setup>
16
16
  import type { UI_I_ErrorFields } from '~/node_modules/bfg-uikit/components/ui/wizard/lib/models/interfaces'
17
- import type { UI_I_CreateBackupForm } from '~/components/common/pages/backups/modals/lib/models/interfaces'
18
17
  import type { UI_I_ArbitraryObject } from '~/lib/models/interfaces'
18
+ import type { UI_I_CreateBackupForm } from '~/components/common/pages/backups/modals/lib/models/interfaces'
19
19
 
20
20
  const model = defineModel<UI_I_CreateBackupForm>({ required: true })
21
21
 
@@ -39,9 +39,9 @@
39
39
  <script setup lang="ts">
40
40
 
41
41
  import type { UI_I_ErrorFields } from '~/node_modules/bfg-uikit/components/ui/wizard/lib/models/interfaces'
42
- import type { UI_I_CreateBackupForm } from '~/components/common/pages/backups/modals/lib/models/interfaces'
43
42
  import type { UI_I_Localization } from '~/lib/models/interfaces'
44
43
  import type { UI_I_ArbitraryObject } from '~/lib/models/interfaces'
44
+ import type { UI_I_CreateBackupForm } from '~/components/common/pages/backups/modals/lib/models/interfaces'
45
45
 
46
46
  const model = defineModel<UI_I_CreateBackupForm>({ required: true })
47
47
 
@@ -1,8 +1,8 @@
1
1
  import type { UI_I_WizardStep, UI_I_ValidationReturn } from '~/node_modules/bfg-uikit/components/ui/wizard/lib/models/interfaces'
2
2
  import type Wizard from '~/node_modules/bfg-uikit/components/ui/wizard/lib/utils/utils'
3
+ import type {UI_I_Localization} from "~/lib/models/interfaces";
3
4
  import type { UI_I_CreateBackupForm } from '~/components/common/pages/backups/modals/lib/models/interfaces'
4
5
  import { dynamicSteps } from '~/components/common/pages/backups/modals/createBackup/lib/config/steps'
5
- import type {UI_I_Localization} from "~/lib/models/interfaces";
6
6
  import type {UI_I_NameCheck} from "~/components/common/pages/backups/modals/restore/name/lib/models/interfaces";
7
7
 
8
8
  export const checkName = async (
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.5.516",
4
+ "version": "1.5.517",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",