bfg-common 1.5.752 → 1.5.753

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.
Files changed (42) hide show
  1. package/assets/localization/local_be.json +19 -15
  2. package/assets/localization/local_en.json +19 -15
  3. package/assets/localization/local_hy.json +18 -14
  4. package/assets/localization/local_kk.json +18 -14
  5. package/assets/localization/local_ru.json +19 -15
  6. package/assets/localization/local_zh.json +19 -15
  7. package/components/atoms/table/dataGrid/DataGrid.vue +8 -8
  8. package/components/common/browse/blocks/lib/models/types.ts +1 -1
  9. package/components/common/browse/lib/models/interfaces.ts +5 -5
  10. package/components/common/diagramMain/Header.vue +4 -0
  11. package/components/common/diagramMain/modals/lib/config/vCenterModal.ts +48 -48
  12. package/components/common/diagramMain/network/Contents.vue +497 -497
  13. package/components/common/diagramMain/port/Port.vue +580 -580
  14. package/components/common/layout/theHeader/feedback/new/email/Email.vue +2 -2
  15. package/components/common/layout/theHeader/userMenu/modals/changePassword/lib/utils.ts +2 -2
  16. package/components/common/pages/backups/modals/createBackup/configuration/backupWindow/BackupWindow.vue +29 -29
  17. package/components/common/pages/backups/modals/createBackup/configuration/maxBandwidth/MaxBandwidth.vue +69 -69
  18. package/components/common/pages/backups/modals/createBackup/configuration/maxBandwidth/lib/config/options.ts +6 -6
  19. package/components/common/pages/backups/modals/createBackup/configuration/strategy/Strategy.vue +38 -38
  20. package/components/common/pages/backups/modals/createBackup/lib/models/interfaces.ts +8 -8
  21. package/components/common/vm/actions/common/customizeHardware/virtualHardware/New.vue +1 -1
  22. package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardware.vue +1 -0
  23. package/components/common/vm/actions/common/customizeHardware/vmoptions/New.vue +2 -2
  24. package/components/common/vm/snapshots/modals/confirm/New.vue +5 -0
  25. package/components/common/vm/snapshots/modals/confirm/lib/models/enums.ts +2 -2
  26. package/components/common/vm/snapshots/modals/takeOrEdit/new/New.vue +23 -7
  27. package/components/common/vm/snapshots/new/New.vue +96 -13
  28. package/components/common/vm/snapshots/new/Skeleton.vue +112 -0
  29. package/components/common/vm/snapshots/new/contextMenuView/ContextMenuView.vue +17 -10
  30. package/components/common/vm/snapshots/new/lib/utils/details.ts +1 -1
  31. package/components/common/wizards/network/add/Add.vue +25 -5
  32. package/components/common/wizards/network/add/lib/config/config.ts +1 -1
  33. package/components/common/wizards/network/add/lib/config/initialData.ts +5 -3
  34. package/components/common/wizards/network/add/lib/config/selectConnectionTypeStep.ts +1 -0
  35. package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDeviceNew.vue +2 -1
  36. package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDeviceOld.vue +18 -6
  37. package/components/common/wizards/vm/migrate/steps/computeResource/tableView/old/lib/config/hostTable.ts +1 -1
  38. package/components/common/wizards/vm/migrate/steps/selectStorage/configure/disk/table/old/lib/config/diskTable.ts +11 -1
  39. package/lib/config/regExp.ts +1 -1
  40. package/package.json +2 -2
  41. package/plugins/time.ts +58 -58
  42. package/plugins/validation.ts +6 -6
@@ -1,48 +1,48 @@
1
- import type { UI_I_Dropdown } from '~/node_modules/bfg-uikit/components/ui/dropdown/models/interfaces'
2
- import type { UI_I_Localization } from '~/lib/models/interfaces'
3
- import type { UI_I_ModalsInitialData } from '~/components/common/diagramMain/lib/models/interfaces'
4
- import type { UI_I_CollapseNavItem } from '~/components/atoms/collapse/lib/models/interfaces'
5
-
6
- export const vCenterViewSettingsFunc = (
7
- localization: UI_I_Localization,
8
- initialData: UI_I_ModalsInitialData
9
- ) => [
10
- {
11
- title: 'Network adapter 1',
12
- id: 1,
13
- type: 1,
14
- rows: [
15
- {
16
- name: localization.common.macAddress,
17
- value: initialData.macAddress,
18
- },
19
- {
20
- name: localization.common.adapterType,
21
- value: initialData.adapter,
22
- },
23
- ],
24
- },
25
- ]
26
-
27
- export const vCenterPopupFieldsFunc = (
28
- localization: UI_I_Localization,
29
- testId: string
30
- ): UI_I_CollapseNavItem[] => [
31
- {
32
- text: localization.common.viewSettings,
33
- value: 'v-center-view-settings',
34
- testId: `${testId}-view`,
35
- },
36
- ]
37
-
38
- export const vCenterPopupFieldsNewFunc = (
39
- localization: UI_I_Localization,
40
- testId: string
41
- ): UI_I_Dropdown[] => [
42
- {
43
- text: localization.common.viewSettings,
44
- value: 'v-center-view-settings',
45
- iconName: 'password-hide',
46
- testId: `${testId}-view`,
47
- },
48
- ]
1
+ import type { UI_I_Dropdown } from '~/node_modules/bfg-uikit/components/ui/dropdown/models/interfaces'
2
+ import type { UI_I_Localization } from '~/lib/models/interfaces'
3
+ import type { UI_I_ModalsInitialData } from '~/components/common/diagramMain/lib/models/interfaces'
4
+ import type { UI_I_CollapseNavItem } from '~/components/atoms/collapse/lib/models/interfaces'
5
+
6
+ export const vCenterViewSettingsFunc = (
7
+ localization: UI_I_Localization,
8
+ initialData: UI_I_ModalsInitialData
9
+ ) => [
10
+ {
11
+ title: 'Network adapter 1',
12
+ id: 1,
13
+ type: 1,
14
+ rows: [
15
+ {
16
+ name: localization.common.macAddress,
17
+ value: initialData.macAddress,
18
+ },
19
+ {
20
+ name: localization.common.adapterType,
21
+ value: initialData.adapter,
22
+ },
23
+ ],
24
+ },
25
+ ]
26
+
27
+ export const vCenterPopupFieldsFunc = (
28
+ localization: UI_I_Localization,
29
+ testId: string
30
+ ): UI_I_CollapseNavItem[] => [
31
+ {
32
+ text: localization.common.viewSettings,
33
+ value: 'v-center-view-settings',
34
+ testId: `${testId}-view`,
35
+ },
36
+ ]
37
+
38
+ export const vCenterPopupFieldsNewFunc = (
39
+ localization: UI_I_Localization,
40
+ testId: string
41
+ ): UI_I_Dropdown[] => [
42
+ {
43
+ text: localization.common.viewSettings,
44
+ value: 'v-center-view-settings',
45
+ iconName: 'password-hide',
46
+ testId: `${testId}-view`,
47
+ },
48
+ ]